@pitcher/js-api 1.26.0 → 1.27.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 +37 -34
- package/js-api.esm.d.ts +1 -2
- package/js-api.esm.js +149 -24
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +17 -10
- package/js-api.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/apps/browser/appTypes.d.ts +50 -0
- package/{lib → src/lib}/apps/browser/stores/api.d.ts +68 -128
- package/{lib → src/lib}/apps/browser/stores/app.d.ts +12 -28
- package/{lib → src/lib}/apps/browser/stores/fileSmartFolderStore.d.ts +0 -2
- package/{lib → src/lib}/apps/browser/stores/upload.d.ts +24 -4
- package/src/lib/apps/browser/stores/upload.types.d.ts +34 -0
- package/{lib → src/lib}/apps/browser/types/actionKeys.d.ts +0 -2
- package/src/lib/apps/browser/util/sortOrder.d.ts +36 -0
- package/src/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +21 -0
- package/src/lib/apps/canvas-builder/components/ui/ContentList/contentList.helpers.d.ts +28 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DataCharts/types.d.ts +7 -1
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.d.ts +14 -4
- package/src/lib/apps/canvas-builder/composables/canvasUpdateStrategy.d.ts +17 -0
- package/src/lib/apps/canvas-builder/composables/lazySections.d.ts +53 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvas.d.ts +169 -64
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasBlocks.d.ts +8 -4
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasDnd.d.ts +1 -1
- package/{lib → src/lib}/apps/canvas-builder/composables/useCrmShape.d.ts +1 -0
- package/src/lib/apps/canvas-builder/composables/useHtmlUserPropertyFields.d.ts +4 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useScribbleChild.d.ts +4 -2
- package/{lib → src/lib}/apps/canvas-builder/types/canvas.d.ts +78 -9
- package/{lib → src/lib}/apps/canvas-selector/stores/app.d.ts +14 -0
- package/{lib → src/lib}/apps/collection-player/stores/app.store.d.ts +1 -0
- package/{lib → src/lib}/apps/content-selector/appTypes.d.ts +1 -3
- package/{lib → src/lib}/apps/content-selector/stores/api.d.ts +2 -11
- package/{lib → src/lib}/apps/content-selector/stores/app.d.ts +4 -17
- package/{lib → src/lib}/apps/content-selector/util/file.d.ts +2 -2
- package/{lib → src/lib}/apps/ppt-conversion-selector/stores/app.store.d.ts +1 -1
- package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +8 -1
- package/{lib → src/lib}/components/CRichTextEditor/extensions/contentLink.d.ts +3 -1
- package/src/lib/components/CSideBar/index.d.ts +6 -0
- package/src/lib/components/CSideBar/types.d.ts +25 -0
- package/src/lib/components/HomeCustomizeCog/index.d.ts +1 -0
- package/src/lib/components/HomeCustomizeEmptyState/index.d.ts +1 -0
- package/src/lib/components/HomeCustomizePanel/index.d.ts +1 -0
- package/src/lib/components/HomeCustomizeRow/index.d.ts +1 -0
- package/{lib → src/lib}/components/savedCanvases/CSavedCanvasesManagement.use.d.ts +2 -0
- package/{lib → src/lib}/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +8 -0
- package/{lib → src/lib}/composables/bulkActions.use.d.ts +0 -1
- package/{lib → src/lib}/composables/presentationHistory.use.d.ts +2 -6
- package/src/lib/composables/useCanvasRendererExcludedTags.d.ts +15 -0
- package/src/lib/composables/useHomeCustomization.d.ts +32 -0
- package/{lib → src/lib}/composables/useMetadataFilters.d.ts +1 -1
- package/{lib → src/lib}/composables/useMetadataTemplates.d.ts +1 -1
- package/{lib → src/lib}/composables/useThemeVars.d.ts +2 -0
- package/{lib → src/lib}/composables/useWindowEvents.d.ts +1 -1
- package/{lib → src/lib}/constants/cdp.const.d.ts +1 -0
- package/{lib → src/lib}/main.lib.d.ts +18 -3
- package/{lib → src/lib}/sdk/api/HighLevelApi.d.ts +19 -8
- package/src/lib/sdk/api/modules/ai.d.ts +52 -0
- package/{lib → src/lib}/sdk/api/modules/canvas.d.ts +43 -2
- package/{lib → src/lib}/sdk/api/modules/files.d.ts +1 -2
- package/{lib → src/lib}/sdk/api/modules/index.d.ts +1 -1
- package/{lib → src/lib}/sdk/interfaces.d.ts +31 -7
- package/{lib → src/lib}/sdk/main.d.ts +42 -21
- package/{lib → src/lib}/sdk/payload.types.d.ts +121 -9
- package/src/lib/sdk/utils/assert.spec.d.ts +1 -0
- package/src/lib/sdk/utils/eventEmitter.spec.d.ts +1 -0
- package/src/lib/sdk/utils/isodate.spec.d.ts +1 -0
- package/src/lib/sdk/utils/object.spec.d.ts +1 -0
- package/{lib → src/lib}/theme/light.d.ts +2 -0
- package/{lib → src/lib}/theme/theme.types.d.ts +1 -0
- package/src/lib/types/ai-tasks.const.d.ts +80 -0
- package/{lib → src/lib}/types/files.d.ts +16 -8
- package/{lib → src/lib}/types/instanceSettings.types.d.ts +4 -2
- package/src/lib/types/launchDarkly.types.d.ts +69 -0
- package/{lib → src/lib}/types/organizationSettings.types.d.ts +20 -0
- package/{lib → src/lib}/util/array.d.ts +1 -1
- package/src/lib/util/array.spec.d.ts +1 -0
- package/src/lib/util/casing.spec.d.ts +1 -0
- package/src/lib/util/date.spec.d.ts +1 -0
- package/src/lib/util/font.spec.d.ts +1 -0
- package/{lib → src/lib}/util/fullscreen.util.d.ts +12 -1
- package/{lib → src/lib}/util/handlebars.d.ts +19 -0
- package/src/lib/util/location.spec.d.ts +1 -0
- package/src/lib/util/message-event.spec.d.ts +1 -0
- package/src/lib/util/network.d.ts +42 -0
- package/src/lib/util/network.spec.d.ts +1 -0
- package/src/lib/util/network.test.d.ts +1 -0
- package/src/lib/util/number.spec.d.ts +1 -0
- package/src/lib/util/object.spec.d.ts +1 -0
- package/src/lib/util/reactive.spec.d.ts +1 -0
- package/src/lib/util/sfdc.util.spec.d.ts +1 -0
- package/src/lib/util/smart-store.util.spec.d.ts +1 -0
- package/src/lib/util/soql.util.d.ts +48 -0
- package/src/lib/util/soql.util.spec.d.ts +1 -0
- package/src/lib/util/string.d.ts +18 -0
- package/src/lib/util/timer.spec.d.ts +1 -0
- package/src/lib/util/translations.spec.d.ts +1 -0
- package/src/lib/util/tree-transformation.util.spec.d.ts +1 -0
- package/src/lib/util/user.d.ts +54 -0
- package/{lib → src/lib}/utils/defaultThumbnail.util.d.ts +1 -0
- package/{types → src/types}/openapi/index.d.ts +1 -0
- package/{types → src/types}/openapi/models/Canvas.d.ts +2 -2
- package/{types → src/types}/openapi/models/CanvasCreate.d.ts +2 -2
- package/{types → src/types}/openapi/models/CanvasRetrieve.d.ts +10 -2
- package/{types → src/types}/openapi/models/CanvasUpdate.d.ts +2 -2
- package/{types → src/types}/openapi/models/DeletedCanvas.d.ts +2 -2
- package/{types → src/types}/openapi/models/FolderFolder.d.ts +4 -0
- package/{types → src/types}/openapi/models/FolderRetrieve.d.ts +1 -0
- package/{types → src/types}/openapi/models/MetadataTemplateFieldTypeEnum.d.ts +3 -1
- package/src/types/openapi/models/MiniCanvasWithTags.d.ts +5 -0
- package/lib/apps/agenda-selector/App.vue.d.ts +0 -9
- package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +0 -7
- package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +0 -24
- package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +0 -2
- package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +0 -8
- package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +0 -6
- package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +0 -1151
- package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +0 -13
- package/lib/apps/assets-manager/App.vue.d.ts +0 -75
- package/lib/apps/assets-manager/AssetsTab.vue.d.ts +0 -22
- package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +0 -16
- package/lib/apps/browser/App.vue.d.ts +0 -190
- package/lib/apps/browser/appTypes.d.ts +0 -26
- package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +0 -258
- package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +0 -15
- package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/AllContent/AllContent.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts +0 -96
- package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +0 -38
- package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +0 -41
- package/lib/apps/browser/components/Content/Content.vue.d.ts +0 -18
- package/lib/apps/browser/components/Content/Favorites/FavoritesTable.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/DetailsDrawer/DetailsDrawer.vue.d.ts +0 -18
- package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +0 -17
- package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +0 -24
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanel.vue.d.ts +0 -2
- package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +0 -10
- package/lib/apps/browser/components/Content/Recent/RecentTable.vue.d.ts +0 -2
- package/lib/apps/browser/components/ContextMenu/ContextMenu.vue.d.ts +0 -9
- package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +0 -14
- package/lib/apps/browser/components/ContextMenu/ConvertToSlidesButton.vue.d.ts +0 -6
- package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +0 -6
- package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +0 -6
- package/lib/apps/browser/components/FileSmartFolders.vue.d.ts +0 -209
- package/lib/apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts +0 -6
- package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +0 -6
- package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +0 -12
- package/lib/apps/browser/components/RepUploads.vue.d.ts +0 -206
- package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +0 -7
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +0 -398
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +0 -11
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +0 -12
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +0 -11
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +0 -18
- package/lib/apps/browser/components/UploadFilesWidget/UploadFilesWidget.vue.d.ts +0 -14
- package/lib/apps/browser/stores/upload.types.d.ts +0 -16
- package/lib/apps/canvas-builder/App.vue.d.ts +0 -1101
- package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +0 -1151
- package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +0 -60
- package/lib/apps/canvas-builder/components/container/BottomBar/BottomBar.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +0 -16
- package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.paginated.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.single.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +0 -469
- package/lib/apps/canvas-builder/components/container/CanvasContent/page.paginated.vue.d.ts +0 -13
- package/lib/apps/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +0 -46
- package/lib/apps/canvas-builder/components/container/CanvasDrawerTheme/CanvasDrawerTheme.vue.d.ts +0 -9
- package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/ComponentDrawerSettings/ComponentDrawerSettings.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/container/ControlBar/AppGrid.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/container/ControlBar/InstalledEmbeddableShortcuts.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderContent.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/DownloadButton/DownloadButton.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +0 -111
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +0 -112
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentContent.vue.d.ts +0 -124
- package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +0 -24
- package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +0 -35
- package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +0 -24
- package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -1355
- package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +0 -15
- package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +0 -17
- package/lib/apps/canvas-builder/components/container/PopupApps/PopupAppsButtons.vue.d.ts +0 -18
- package/lib/apps/canvas-builder/components/container/Search/Search.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/container/SectionInfoProvider/SectionInfoProvider.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +0 -304
- package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +0 -84
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +0 -10
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +0 -326
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +0 -15
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridList.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridListItem.vue.d.ts +0 -13
- package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +0 -14
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +0 -30
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +0 -77
- package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +0 -21
- package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +0 -19
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +0 -13
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +0 -10
- package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +0 -32
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +0 -5
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +0 -20
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +0 -31
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.raw.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.settings.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.vue.d.ts +0 -31
- package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContentList.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +0 -22
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +0 -27
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +0 -31
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +0 -22
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +0 -32
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +0 -650
- package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +0 -28
- package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +0 -34
- package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +0 -26
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +0 -22
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +0 -299
- package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +0 -8
- package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +0 -297
- package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +0 -24
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +0 -7
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +0 -20
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +0 -301
- package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +0 -29
- package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +0 -297
- package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +0 -40
- package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +0 -23
- package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +0 -358
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +0 -37
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +0 -37
- package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +0 -27
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +0 -10
- package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +0 -12
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +0 -41
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +0 -30
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +0 -72
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +0 -25
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCompact.vue.d.ts +0 -18
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListItem.vue.d.ts +0 -27
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +0 -21
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +0 -11
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +0 -19
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +0 -34
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +0 -16
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +0 -39
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +0 -202
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +0 -6
- package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +0 -28
- package/lib/apps/canvas-selector/App.vue.d.ts +0 -12
- package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +0 -19
- package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +0 -172
- package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +0 -4
- package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +0 -2
- package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +0 -4
- package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +0 -4
- package/lib/apps/canvas-selector/components/Sections.vue.d.ts +0 -163
- package/lib/apps/collection-player/App.vue.d.ts +0 -29
- package/lib/apps/collection-player/components/AppFooter.vue.d.ts +0 -57
- package/lib/apps/collection-player/components/AppHeader.vue.d.ts +0 -2
- package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +0 -18
- package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +0 -19
- package/lib/apps/collection-player/components/MainContent.vue.d.ts +0 -5
- package/lib/apps/collection-player/components/MainImage.vue.d.ts +0 -11
- package/lib/apps/collection-player/components/SlideContent.vue.d.ts +0 -8
- package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +0 -2
- package/lib/apps/collection-selector/App.vue.d.ts +0 -33
- package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +0 -8
- package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +0 -9
- package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +0 -7
- package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +0 -17
- package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +0 -5
- package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +0 -13
- package/lib/apps/content-selector/App.vue.d.ts +0 -20
- package/lib/apps/content-selector/components/AiImages.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +0 -8
- package/lib/apps/content-selector/components/Assets.vue.d.ts +0 -76
- package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content/AllContent/AllContent.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +0 -260
- package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +0 -43
- package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/Content.vue.d.ts +0 -75
- package/lib/apps/content-selector/components/ExternalLinks.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/MultimediaSelectorApp.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/Navbar.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +0 -12
- package/lib/apps/content-selector/components/ThemeImages.vue.d.ts +0 -2
- package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +0 -68
- package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +0 -11
- package/lib/apps/notes/NotesApp.vue.d.ts +0 -26
- package/lib/apps/notes/components/CustomerReaction.vue.d.ts +0 -2
- package/lib/apps/ppt-conversion-selector/App.vue.d.ts +0 -25
- package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +0 -11
- package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +0 -8
- package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +0 -6
- package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +0 -17
- package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +0 -2
- package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +0 -14
- package/lib/canvas-comments/components/CommentButton.vue.d.ts +0 -6
- package/lib/canvas-comments/components/CommentableComponent.vue.d.ts +0 -25
- package/lib/canvas-comments/components/SimpleComments.vue.d.ts +0 -14
- package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +0 -18
- package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +0 -13
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +0 -12
- package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +0 -17
- package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +0 -15
- package/lib/components/CAvatar/CAvatar.vue.d.ts +0 -15
- package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +0 -32
- package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +0 -31
- package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +0 -19
- package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +0 -13
- package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +0 -71
- package/lib/components/CButton/CButton.vue.d.ts +0 -23
- package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +0 -29
- package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +0 -24
- package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +0 -11
- package/lib/components/CCard/CCard.vue.d.ts +0 -15
- package/lib/components/CCarousel/CCarousel.vue.d.ts +0 -434
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcher.vue.d.ts +0 -5
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +0 -7
- package/lib/components/CCheckbox/CCheckbox.vue.d.ts +0 -15
- package/lib/components/CChip/CChip.vue.d.ts +0 -30
- package/lib/components/CCollapse/CCollapse.vue.d.ts +0 -26
- package/lib/components/CCollapse/CCollapseItem.vue.d.ts +0 -15
- package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +0 -17
- package/lib/components/CColorPicker/CColorPicker.vue.d.ts +0 -15
- package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +0 -45
- package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +0 -54
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +0 -322
- package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +0 -24
- package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +0 -17
- package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +0 -17
- package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +0 -40
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +0 -32
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +0 -56
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +0 -847
- package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +0 -21
- package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +0 -50
- package/lib/components/CContentError/CContentError.vue.d.ts +0 -11
- package/lib/components/CCreateCanvasModal/CCreateCanvasModal.vue.d.ts +0 -2
- package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +0 -23
- package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +0 -307
- package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +0 -19
- package/lib/components/CCreateThemeModal/steps/CThemeAssetsStep.vue.d.ts +0 -19
- package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +0 -10
- package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +0 -2579
- package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +0 -13
- package/lib/components/CDataTable/CDataTable.vue.d.ts +0 -8637
- package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +0 -19
- package/lib/components/CDivider/CDivider.vue.d.ts +0 -18
- package/lib/components/CDrawer/CDrawer.vue.d.ts +0 -15
- package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +0 -15
- package/lib/components/CDropdown/CDropdown.vue.d.ts +0 -15
- package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +0 -10
- package/lib/components/CEmpty/CEmpty.vue.d.ts +0 -15
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +0 -153
- package/lib/components/CError/CErrorFullScreen.vue.d.ts +0 -38
- package/lib/components/CFeedback/CFeedback.vue.d.ts +0 -30
- package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +0 -6
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +0 -46
- package/lib/components/CFilePanel/BasicInfo.vue.d.ts +0 -2
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +0 -11
- package/lib/components/CFilePanel/Details.vue.d.ts +0 -2
- package/lib/components/CFilePanel/Metadata.vue.d.ts +0 -2
- package/lib/components/CFilePanel/Tags.vue.d.ts +0 -9
- package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +0 -15
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +0 -431
- package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +0 -9
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -53
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +0 -63
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -69
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +0 -379
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +0 -10
- package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +0 -6
- package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +0 -23
- package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +0 -25
- package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +0 -35
- package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +0 -25
- package/lib/components/CFontSelect/CFontSelect.vue.d.ts +0 -12
- package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +0 -11
- package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +0 -5
- package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +0 -72
- package/lib/components/CGlobalSearch/CGlobalSearchResults.vue.d.ts +0 -20
- package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +0 -2
- package/lib/components/CGlobalSearch/CResult.vue.d.ts +0 -15
- package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +0 -23
- package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +0 -33
- package/lib/components/CHeightInput/CHeightInput.vue.d.ts +0 -10
- package/lib/components/CHelpText/CHelpText.vue.d.ts +0 -17
- package/lib/components/CIcon/CIcon.vue.d.ts +0 -13
- package/lib/components/CImage/CImage.vue.d.ts +0 -395
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +0 -23
- package/lib/components/CInput/CInput.vue.d.ts +0 -1157
- package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +0 -24
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +0 -14
- package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +0 -12
- package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +0 -20
- package/lib/components/CList/CList.vue.d.ts +0 -56
- package/lib/components/CList/CListItem.vue.d.ts +0 -79
- package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +0 -9
- package/lib/components/CModal/CModal.vue.d.ts +0 -15
- package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +0 -29
- package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +0 -28
- package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +0 -17
- package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +0 -22
- package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +0 -14
- package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +0 -19
- package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +0 -73
- package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +0 -27
- package/lib/components/CPillSelect/CPillSelect.vue.d.ts +0 -14
- package/lib/components/CPopover/CPopover.vue.d.ts +0 -15
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +0 -14
- package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +0 -10
- package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +0 -19
- package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +0 -18
- package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +0 -19
- package/lib/components/CRate/CRate.vue.d.ts +0 -15
- package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +0 -25
- package/lib/components/CRenameModal/CRenameModal.vue.d.ts +0 -28
- package/lib/components/CRichTextEditor/components/CAiRichTextActions.vue.d.ts +0 -17
- package/lib/components/CRichTextEditor/components/CAlignmentSelect.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +0 -18
- package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +0 -2671
- package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +0 -33
- package/lib/components/CRichTextEditor/components/CFontDropdown.vue.d.ts +0 -11
- package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +0 -52
- package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +0 -4870
- package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +0 -2661
- package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +0 -1155
- package/lib/components/CRichTextEditor/components/CInsertDropdown.vue.d.ts +0 -19
- package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CListSelect.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CSuggestionList.vue.d.ts +0 -9
- package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +0 -11
- package/lib/components/CRichTextEditor/components/CTextTypeSelect.vue.d.ts +0 -6
- package/lib/components/CSearch/CSearch.vue.d.ts +0 -25
- package/lib/components/CSearch/CSearchOnClick.vue.d.ts +0 -32
- package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +0 -23
- package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +0 -224
- package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +0 -39
- package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +0 -19
- package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +0 -135
- package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +0 -44
- package/lib/components/CSelect/CSelect.vue.d.ts +0 -20
- package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +0 -10
- package/lib/components/CShortcut/CShortcut.vue.d.ts +0 -17
- package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +0 -6
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +0 -26
- package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +0 -15
- package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +0 -18
- package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +0 -14
- package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +0 -12
- package/lib/components/CSlider/CSlider.vue.d.ts +0 -42
- package/lib/components/CSpin/CSpin.vue.d.ts +0 -15
- package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +0 -14
- package/lib/components/CSwitch/CSwitch.vue.d.ts +0 -29
- package/lib/components/CTable/CTable.vue.d.ts +0 -61
- package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +0 -35
- package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +0 -8
- package/lib/components/CTableInput/CTableInput.vue.d.ts +0 -2337
- package/lib/components/CTableMore/CTableMore.vue.d.ts +0 -24
- package/lib/components/CTableSelect/CTableSelect.vue.d.ts +0 -21
- package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -4940
- package/lib/components/CTag/CTag.vue.d.ts +0 -15
- package/lib/components/CTags/CTags.vue.d.ts +0 -4910
- package/lib/components/CTagsPlaceholder/CTagsPlaceholder.vue.d.ts +0 -6
- package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +0 -25
- package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +0 -26
- package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +0 -4
- package/lib/components/CThemePreview/CThemePreview.vue.d.ts +0 -20
- package/lib/components/CThumbnail/CThumbnail.vue.d.ts +0 -44
- package/lib/components/CTimeline/CTimeline.vue.d.ts +0 -15
- package/lib/components/CTimeline/CTimelineControl.vue.d.ts +0 -2
- package/lib/components/CTimeline/CTimelineModal.vue.d.ts +0 -12
- package/lib/components/CToastProvider/CToastProvider.vue.d.ts +0 -2
- package/lib/components/CToolbar/CToolbar.vue.d.ts +0 -18
- package/lib/components/CTooltip/CTooltip.vue.d.ts +0 -18
- package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +0 -22
- package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +0 -13
- package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +0 -13
- package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +0 -303
- package/lib/components/CUserAvatar/CUserAvatar.vue.d.ts +0 -13
- package/lib/components/CUserMenu/CUserMenu.vue.d.ts +0 -472
- package/lib/components/CUsersAccessInfo/CUsersAccessInfo.vue.d.ts +0 -13
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +0 -35
- package/lib/components/CVideo/CVideo.vue.d.ts +0 -48
- package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +0 -49
- package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +0 -40
- package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +0 -11
- package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +0 -456
- package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +0 -44
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +0 -463
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +0 -25
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +0 -47
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +0 -1352
- package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +0 -51
- package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +0 -10
- package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +0 -54
- package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +0 -348
- package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +0 -6
- package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +0 -20
- package/lib/components/filters/CCheckboxFilter.vue.d.ts +0 -11
- package/lib/components/filters/CDateRangeFilter.vue.d.ts +0 -26
- package/lib/components/filters/CSearchFilter.vue.d.ts +0 -1264
- package/lib/components/filters/CSelectFilter.vue.d.ts +0 -27
- package/lib/components/savedCanvases/CCanvasAccountModal.vue.d.ts +0 -23
- package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +0 -805
- package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +0 -67
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +0 -6
- package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +0 -1879
- package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +0 -50
- package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +0 -16
- package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +0 -9
- package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +0 -140
- package/lib/components/savedCanvases/smartFolders/SmartFoldersConfigurationModal.vue.d.ts +0 -6
- package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +0 -11
- package/lib/components/sections/CSectionManagement.vue.d.ts +0 -468
- package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +0 -30
- package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +0 -48
- package/lib/components/themes/CThemeManagement.vue.d.ts +0 -460
- package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +0 -27
- package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +0 -10
- package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +0 -47
- package/lib/composables/recentFiles.use.d.ts +0 -12
- package/lib/constants/recentFiles.const.d.ts +0 -4
- package/lib/sdk/api/modules/favorites.d.ts +0 -16
- package/lib/types/favorites.d.ts +0 -5
- package/lib/types/launchDarkly.types.d.ts +0 -53
- package/lib/types/recentFiles.types.d.ts +0 -8
- package/lib/util/network.d.ts +0 -21
- package/lib/util/soql.util.d.ts +0 -2
- package/lib/util/string.d.ts +0 -5
- package/lib/util/user.d.ts +0 -4
- package/{lib → src/lib}/api/apps/apps.queries.d.ts +0 -0
- package/{lib → src/lib}/api/canvases/canvases.queries.d.ts +0 -0
- package/{lib → src/lib}/api/events/events.helpers.d.ts +0 -0
- package/{lib → src/lib}/api/users/users.queries.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/content-warning.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/move-item-modal.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/composables/table-input.use.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/constants.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/export.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/stores/app.store.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/types/agenda.type.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/types/common.type.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/types/move-item-modal.type.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/utils/data.util.d.ts +0 -0
- package/{lib → src/lib}/apps/agenda-selector/utils/theme-overrides.util.d.ts +0 -0
- package/{lib/apps/browser/stores/api.test.d.ts → src/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/browser/composables/useAppEmit.d.ts +0 -0
- package/{lib/apps/browser/stores/app.test.d.ts → src/lib/apps/browser/stores/api.test.d.ts} +0 -0
- package/{lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.test.d.ts → src/lib/apps/browser/stores/app.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/browser/stores/repUploadsStore.d.ts +0 -0
- package/{lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts → src/lib/apps/browser/stores/upload.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/browser/util/file.d.ts +0 -0
- package/{lib/apps/canvas-builder/util/canvas.util.test.d.ts → src/lib/apps/browser/util/sortOrder.test.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/App.helpers.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/container/CanvasContent/canvas-component-map.const.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Block/Block.helpers.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Block/Block.types.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +0 -0
- package/{lib/apps/canvas-builder/util/tree.test.d.ts → src/lib/apps/canvas-builder/components/ui/DataCharts/types.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/dynamicContent.const.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/section-component-map.const.d.ts +0 -0
- package/{lib/apps/canvas-builder/util/url.test.d.ts → src/lib/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Link/Link.util.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/Scribble/scribble.helpers.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -0
- package/{lib/apps/ppt-conversion-selector/utils/data.util.test.d.ts → src/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.test.d.ts} +0 -0
- package/{lib/components/CMultiSelect/CMultiSelect.test.d.ts → src/lib/apps/canvas-builder/composables/canvasUpdateStrategy.spec.d.ts} +0 -0
- package/{lib/components/CSingleSelect/CSingleSelect.test.d.ts → src/lib/apps/canvas-builder/composables/lazySections.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useAiPrompt.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useAnnotation.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasExit.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasHistory.d.ts +4 -4
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasHooks.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasNodes.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasPages.d.ts +0 -0
- package/{lib/components/CVirtualTable/CVirtualTable.test.d.ts → src/lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasTheme.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasThemeAssets.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasVisibility.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCollapsibles.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCollectionSelector.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useComponentPermissions.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useComponentStyle.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useContentSelector.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useControlBarCollapse.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +0 -0
- package/{lib/components/CVirtualTable/CVirtualTableRow.test.d.ts → src/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.spec.d.ts} +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useDataTablePrint.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useEmbeddable.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useFetchMostPopularFiles.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/useNavigatorDrawer.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/usePopularity.d.ts +0 -0
- package/{lib → src/lib}/apps/canvas-builder/composables/usePopupApps.d.ts +4 -4
- /package/{lib → src/lib}/apps/canvas-builder/composables/usePrintMode.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useRecommendations.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useReorderComponent.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useScribbleToolbar.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useSectionNavigation.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useSectionPopularity.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/composables/useTemporaryContext.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/canvas.const.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/defaults.const.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/index.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/sizes.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/constants/theme.const.d.ts +0 -0
- /package/{lib/components/filters/CDateRangeFilter.test.d.ts → src/lib/apps/canvas-builder/courseMode.spec.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/types/font-awesome.types.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/types/recommendations.types.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/canvas.util.d.ts +0 -0
- /package/{lib/components/filters/CSelectFilter.test.d.ts → src/lib/apps/canvas-builder/util/canvas.util.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/clone.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/fetchAnalyticsPopularity.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/file.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/iframe.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/print.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/tiptap-table.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/tree.d.ts +0 -0
- /package/{lib/components/filters/filter.util.spec.d.ts → src/lib/apps/canvas-builder/util/tree.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-builder/util/url.d.ts +0 -0
- /package/{lib/components/savedCanvases/CSavedCanvasesManagement.use.spec.d.ts → src/lib/apps/canvas-builder/util/url.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/canvas-selector/appTypes.d.ts +0 -0
- /package/{lib → src/lib}/apps/canvas-selector/constants/index.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/annotation-layer.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/focus-trap.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/fullscreen.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/image-cache.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/keyboard-bindings.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/laser-pointer-marker.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/markerjs.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/moving-group-gestures.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/navigation-cache.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/new-zoom.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/slide-direction.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/tracking.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/composables/zoom.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/export.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/types/collection-player.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/utils/node.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-player/utils/slide-type.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/composables/content-warning.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/composables/move-slide-modal.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/composables/table-input.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/constants.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/export.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/stores/app.store.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/types/collection-selector.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/types/common.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/types/move-slide-modal.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/utils/content-selector-adapter.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/utils/data.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/collection-selector/utils/theme-overrides.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/content-selector/composables/useMultimediaSelectorApps.d.ts +0 -0
- /package/{lib → src/lib}/apps/content-selector/composables/useStore.d.ts +0 -0
- /package/{lib → src/lib}/apps/content-selector/util/media-type.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/notes/composables/useFullscreenNotesHeartbeat.d.ts +0 -0
- /package/{lib → src/lib}/apps/notes/composables/useNotesApp.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/canvas.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/table-input.use.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/constants.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/export.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/types/model.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/data.util.d.ts +0 -0
- /package/{lib/sdk/api/HighLevelApi.spec.d.ts → src/lib/apps/ppt-conversion-selector/utils/data.util.test.d.ts} +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +0 -0
- /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +0 -0
- /package/{lib/sdk/api/LowLevelApi.spec.d.ts → src/lib/components/CBatchMoveItemsModal/__tests__/copy-mode.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CCatalogIqSwitcher/CCatalogIqSwitcher.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CConfigEditor/CConfigEditor.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CConfigEditor/CConfigEditor.validators.d.ts +0 -0
- /package/{lib → src/lib}/components/CContactSelector/CContactSelector.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CDataTable/CDataTableEdit.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFilePanel/CFilePanel.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/CFileViewer.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.events.pdf.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pageThumbMetadata.pdf.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.annotations.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.link.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.overlayItems.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewerFullscreen.pdf.use.d.ts +0 -0
- /package/{lib/sdk/main.spec.d.ts → src/lib/components/CFolderTreeMultiPicker/__tests__/CFolderTreeMultiPicker.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CGlobalSearch/CGlobalSearch.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CGlobalSearch/GlobalSearch.use.d.ts +0 -0
- /package/{lib → src/lib}/components/CGlobalSearch/Shortcuts.use.d.ts +0 -0
- /package/{lib/sdk/utils/assert.spec.d.ts → src/lib/components/CMultiSelect/CMultiSelect.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CQuickFilters/CQuickFilters.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/constants.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/bulletListExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/headingExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/mentionSuggestions.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/paragraphExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CRichTextEditor/extensions/textStyleExtended.d.ts +0 -0
- /package/{lib → src/lib}/components/CSearchFilters/CSearchFilters.types.d.ts +0 -0
- /package/{lib/sdk/utils/eventEmitter.spec.d.ts → src/lib/components/CSideBar/CSideBar.spec.d.ts} +0 -0
- /package/{lib/sdk/utils/isodate.spec.d.ts → src/lib/components/CSideBar/CSideBarDivider.spec.d.ts} +0 -0
- /package/{lib/sdk/utils/object.spec.d.ts → src/lib/components/CSideBar/CSideBarItem.spec.d.ts} +0 -0
- /package/{lib/util/array.spec.d.ts → src/lib/components/CSideBar/CSideBarLabel.spec.d.ts} +0 -0
- /package/{lib/util/casing.spec.d.ts → src/lib/components/CSideBar/CSideBarToggle.spec.d.ts} +0 -0
- /package/{lib/util/date.spec.d.ts → src/lib/components/CSingleSelect/CSingleSelect.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.types.d.ts +0 -0
- /package/{lib → src/lib}/components/CVideo/CVideo.types.d.ts +0 -0
- /package/{lib/util/font.spec.d.ts → src/lib/components/CVirtualTable/CVirtualTable.test.d.ts} +0 -0
- /package/{lib/util/location.spec.d.ts → src/lib/components/CVirtualTable/CVirtualTableRow.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/canvases/CanvasesManagementBulk.use.d.ts +0 -0
- /package/{lib → src/lib}/components/canvases/CanvasesManagementFilters.use.d.ts +0 -0
- /package/{lib → src/lib}/components/canvases/CanvasesManagementToolbarFilters.use.d.ts +0 -0
- /package/{lib/util/message-event.spec.d.ts → src/lib/components/filters/CDateRangeFilter.test.d.ts} +0 -0
- /package/{lib/util/network.spec.d.ts → src/lib/components/filters/CSelectFilter.test.d.ts} +0 -0
- /package/{lib → src/lib}/components/filters/filter.const.d.ts +0 -0
- /package/{lib → src/lib}/components/filters/filter.util.d.ts +0 -0
- /package/{lib/util/number.spec.d.ts → src/lib/components/filters/filter.util.spec.d.ts} +0 -0
- /package/{lib/util/object.spec.d.ts → src/lib/components/savedCanvases/CSavedCanvasesManagement.use.spec.d.ts} +0 -0
- /package/{lib → src/lib}/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/appEmit.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/appsDb.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/fileViewerSettings.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/instanceTagsActions.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/openFileStack.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/suggestedTags.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/tableColumnsSettings.use.d.ts +0 -0
- /package/{lib → src/lib}/composables/useAdminAndDsrState.d.ts +0 -0
- /package/{lib → src/lib}/composables/useAssetUpload.d.ts +0 -0
- /package/{lib → src/lib}/composables/useBindValidation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useBroadcastRouteChange.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCanvasLocks.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCanvasOverlay.d.ts +0 -0
- /package/{lib/util/reactive.spec.d.ts → src/lib/composables/useCanvasRendererExcludedTags.spec.d.ts} +0 -0
- /package/{lib → src/lib}/composables/useCanvasStandardFilters.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCanvasTablesPagination.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCollectionPlayerOverlay.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCommentTracking.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCommentsStorage.d.ts +0 -0
- /package/{lib → src/lib}/composables/useConfirmation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useConnectUpload.d.ts +0 -0
- /package/{lib → src/lib}/composables/useCoreApi.d.ts +0 -0
- /package/{lib → src/lib}/composables/useDeleteUsedCanvasesConfirmation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useElementHeightResize.d.ts +0 -0
- /package/{lib → src/lib}/composables/useElementSizeAfterDom.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFetchUsers.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFileDisplayHelpers.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFileInfo.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFilterSuggestions.d.ts +0 -0
- /package/{lib → src/lib}/composables/useFolderNameDescription.d.ts +0 -0
- /package/{lib/util/sfdc.util.spec.d.ts → src/lib/composables/useHomeCustomization.spec.d.ts} +0 -0
- /package/{lib → src/lib}/composables/useImageAccessibility.d.ts +0 -0
- /package/{lib → src/lib}/composables/useInfiniteScroll.d.ts +0 -0
- /package/{lib → src/lib}/composables/useInstalledApps.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLegacyCollectionFileLoader.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocationAPI.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocationListeners.d.ts +0 -0
- /package/{lib → src/lib}/composables/useLocationManipulation.d.ts +0 -0
- /package/{lib → src/lib}/composables/useMetadataSearch.d.ts +0 -0
- /package/{lib → src/lib}/composables/usePdfInterpolation.d.ts +0 -0
- /package/{lib → src/lib}/composables/usePolling.d.ts +0 -0
- /package/{lib → src/lib}/composables/useSharedCommentsStorage.d.ts +0 -0
- /package/{lib → src/lib}/composables/useSharedTranslations.d.ts +0 -0
- /package/{lib → src/lib}/composables/useSmartStore.d.ts +0 -0
- /package/{lib → src/lib}/composables/useTheme.d.ts +0 -0
- /package/{lib → src/lib}/composables/useToast.d.ts +0 -0
- /package/{lib → src/lib}/constants/appsDb.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/color.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/config.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/conventions.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/dimensions.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/i18n.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/modal.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/more.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/pitcherSettings.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/query-builder.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/roles.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/tables.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/timers.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/uploads.const.d.ts +0 -0
- /package/{lib → src/lib}/constants/url.const.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/el.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/it.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/ja.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/nl.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/pt-br.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/pt.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/th.d.ts +0 -0
- /package/{lib → src/lib}/custom-naive-locales/zh.d.ts +0 -0
- /package/{lib → src/lib}/directives/autofocus.d.ts +0 -0
- /package/{lib → src/lib}/directives/clickOutside.d.ts +0 -0
- /package/{lib → src/lib}/directives/draggable.d.ts +0 -0
- /package/{lib → src/lib}/directives/element-mounted.d.ts +0 -0
- /package/{lib → src/lib}/directives/tap.d.ts +0 -0
- /package/{lib → src/lib}/directives/tooltip.d.ts +0 -0
- /package/{lib → src/lib}/directives/vTrustedHtml.d.ts +0 -0
- /package/{lib → src/lib}/plugins/vueQuery.d.ts +0 -0
- /package/{lib/util/smart-store.util.spec.d.ts → src/lib/sdk/api/HighLevelApi.spec.d.ts} +0 -0
- /package/{lib → src/lib}/sdk/api/LowLevelApi.d.ts +0 -0
- /package/{lib/util/timer.spec.d.ts → src/lib/sdk/api/LowLevelApi.spec.d.ts} +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/app-errors.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/canvas.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/content.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/env.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/files.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/metadataTemplates.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/types.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/admin/users.admin.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/env.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/files.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/loading.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/dsr/types.dsr.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/env.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/feedback.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/filesRevisions.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/folders.core.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/folders.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/languages.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/metadataTemplates.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/notifications.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/open.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/pspdfkit.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/query.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/search.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/share.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/sync.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/theme.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/toast.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/track.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/app-errors.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/canvas.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/content.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/loading.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/location.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/pia.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/post-call.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/sharing.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/ui/types.ui.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/users.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/modules/webView.d.ts +0 -0
- /package/{lib → src/lib}/sdk/api/onlineRestApiHandlers.d.ts +0 -0
- /package/{lib/util/translations.spec.d.ts → src/lib/sdk/main.spec.d.ts} +0 -0
- /package/{lib → src/lib}/sdk/main.umd-esm.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/index.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.constants.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.d.ts +0 -0
- /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.types.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/assert.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/cleanUrl.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/eventEmitter.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/httpFetch.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/isodate.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/object.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/postrobot.d.ts +0 -0
- /package/{lib → src/lib}/sdk/utils/window.d.ts +0 -0
- /package/{lib → src/lib}/stores/sectionSmartFolderStore.d.ts +0 -0
- /package/{lib → src/lib}/theme/canvasUiUnoPreset.d.ts +0 -0
- /package/{lib → src/lib}/theme/daisyUi.d.ts +0 -0
- /package/{lib → src/lib}/theme/light.const.d.ts +0 -0
- /package/{lib → src/lib}/theme/main.d.ts +0 -0
- /package/{lib → src/lib}/theme/theme-overrides.d.ts +0 -0
- /package/{lib → src/lib}/theme/theme.utils.d.ts +0 -0
- /package/{lib → src/lib}/types/app.d.ts +0 -0
- /package/{lib → src/lib}/types/background.d.ts +0 -0
- /package/{lib → src/lib}/types/call.d.ts +0 -0
- /package/{lib → src/lib}/types/canvasActions.d.ts +0 -0
- /package/{lib → src/lib}/types/canvasTheme.d.ts +0 -0
- /package/{lib → src/lib}/types/canvases.d.ts +0 -0
- /package/{lib → src/lib}/types/common.d.ts +0 -0
- /package/{lib → src/lib}/types/core/MetadataFilter.d.ts +0 -0
- /package/{lib → src/lib}/types/core/UpsertPptxSlideImages.d.ts +0 -0
- /package/{lib → src/lib}/types/core/index.d.ts +0 -0
- /package/{lib → src/lib}/types/dataTable.d.ts +0 -0
- /package/{lib → src/lib}/types/file.types.d.ts +0 -0
- /package/{lib → src/lib}/types/fileViewerSettings.types.d.ts +0 -0
- /package/{lib → src/lib}/types/filter.d.ts +0 -0
- /package/{lib → src/lib}/types/folder.d.ts +0 -0
- /package/{lib → src/lib}/types/i18n.types.d.ts +0 -0
- /package/{lib → src/lib}/types/iframes.d.ts +0 -0
- /package/{lib → src/lib}/types/instance.types.d.ts +0 -0
- /package/{lib → src/lib}/types/instanceTags.types.d.ts +0 -0
- /package/{lib → src/lib}/types/metadataHighlightProperty.d.ts +0 -0
- /package/{lib → src/lib}/types/organization.types.d.ts +0 -0
- /package/{lib → src/lib}/types/organizationMetadata.types.d.ts +0 -0
- /package/{lib → src/lib}/types/paginatedData.d.ts +0 -0
- /package/{lib → src/lib}/types/query-builder.types.d.ts +0 -0
- /package/{lib → src/lib}/types/search.d.ts +0 -0
- /package/{lib → src/lib}/types/sectionPopularity.d.ts +0 -0
- /package/{lib → src/lib}/types/selections.d.ts +0 -0
- /package/{lib → src/lib}/types/sfdc.d.ts +0 -0
- /package/{lib → src/lib}/types/toast.d.ts +0 -0
- /package/{lib → src/lib}/types/translations.d.ts +0 -0
- /package/{lib → src/lib}/types/ts.d.ts +0 -0
- /package/{lib → src/lib}/types/users.d.ts +0 -0
- /package/{lib → src/lib}/types/vueVirtualScroller.d.ts +0 -0
- /package/{lib → src/lib}/util/anchor.d.ts +0 -0
- /package/{lib → src/lib}/util/app.util.d.ts +0 -0
- /package/{lib → src/lib}/util/canvas-manager.util.d.ts +0 -0
- /package/{lib → src/lib}/util/casing.d.ts +0 -0
- /package/{lib → src/lib}/util/color.d.ts +0 -0
- /package/{lib → src/lib}/util/date.d.ts +0 -0
- /package/{lib → src/lib}/util/dev.util.d.ts +0 -0
- /package/{lib → src/lib}/util/dom.d.ts +0 -0
- /package/{lib → src/lib}/util/eval.d.ts +0 -0
- /package/{lib → src/lib}/util/file.util.d.ts +0 -0
- /package/{lib → src/lib}/util/font.util.d.ts +0 -0
- /package/{lib → src/lib}/util/image.d.ts +0 -0
- /package/{lib → src/lib}/util/jwt.d.ts +0 -0
- /package/{lib → src/lib}/util/location.util.d.ts +0 -0
- /package/{lib → src/lib}/util/message-event.d.ts +0 -0
- /package/{lib → src/lib}/util/navigation.util.d.ts +0 -0
- /package/{lib → src/lib}/util/number.d.ts +0 -0
- /package/{lib → src/lib}/util/object.d.ts +0 -0
- /package/{lib → src/lib}/util/pitcher-settings.util.d.ts +0 -0
- /package/{lib → src/lib}/util/query-builder.util.d.ts +0 -0
- /package/{lib → src/lib}/util/query.d.ts +0 -0
- /package/{lib → src/lib}/util/reactive.d.ts +0 -0
- /package/{lib → src/lib}/util/sfdc.util.d.ts +0 -0
- /package/{lib → src/lib}/util/smart-store.util.d.ts +0 -0
- /package/{lib → src/lib}/util/storage.util.d.ts +0 -0
- /package/{lib → src/lib}/util/style.util.d.ts +0 -0
- /package/{lib → src/lib}/util/timer.d.ts +0 -0
- /package/{lib → src/lib}/util/toCssClassKey.d.ts +0 -0
- /package/{lib → src/lib}/util/translations.d.ts +0 -0
- /package/{lib → src/lib}/util/tree-transformation.util.d.ts +0 -0
- /package/{lib → src/lib}/util/tsHelpers.d.ts +0 -0
- /package/{lib → src/lib}/util/url.d.ts +0 -0
- /package/{lib → src/lib}/util/userAgents.d.ts +0 -0
- /package/{lib → src/lib}/utils/iframeInitialize.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AccessTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Account.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AccountRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/App.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppInstallationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppOrganization.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppPublish.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppRelease.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppsDBEntry.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AppsDBEntryRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AuthToken.d.ts +0 -0
- /package/{types → src/types}/openapi/models/AuthTokenRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteErrorDetail.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteMixedObjectsRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkDeleteResponse.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadata.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadataOperationEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadataRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateMetadataResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTags.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTagsOperationEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTagsRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/BulkUpdateTagsResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasRecommendedFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasRecommendedFiles.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasSection.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CanvasUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Collaboration.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/CollaborationRoleEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ConnectedService.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupMembership.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupMembershipCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupMembershipCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/ContentDistributionGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DefaultExpiresAtEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedContentDistributionGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedEnvironment.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedFavorite.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedInstanceAssignmentGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedMetadataTemplate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DeletedRegion.d.ts +0 -0
- /package/{types → src/types}/openapi/models/DownloadTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Environment.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EnvironmentRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Event.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventAttendee.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventAttendeeRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventExternalObject.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventExternalObjectContentTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventExternalObjectRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/EventStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Favorite.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFileRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteFolderRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FavoriteUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/File.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileAnalytics.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileAnalyticsResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileContentTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FilePermission.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FilePermissionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileRetrieve.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileRevision.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileRevisionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileTypeEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FileVersion.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Folder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderRule.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderRuleRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/FolderUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Instance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalytics.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsChangePercentages.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsCurrentPeriod.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsFileActivity.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsFileRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsInactiveUsers.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsInactiveUsersRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAnalyticsLoginResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembership.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembershipCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembershipCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceAssignmentGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembership.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipRoleEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipUserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceMembershipUserStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InstanceUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Invitation.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InvitationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/InvitationStatusEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/LanguageEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateField.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateFieldRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateOption.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateOptionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateSection.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MetadataTemplateSectionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniCanvasRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniContentDistributionGroup.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniContentDistributionGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEnvironment.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEnvironmentRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEvent.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniEventRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFileRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniFolderRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniInstanceRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniPage.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniRegion.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniRegionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniSharedLink.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniSharedLinkRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MiniUserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/MostActiveUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OfflineSyncFolder.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OperatorEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Organization.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalytics.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsCurrentPeriod.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsInactiveUsers.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsInactiveUsersRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsLoginResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationBranding.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationBrandingColors.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationChangePercentages.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationUpdate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/OrganizationUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitAuthPayload.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitAuthPayloadRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitToken.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PSPDFKitTokenRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedAppList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedAuthTokenList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedCanvasList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedCollaborationList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedContentDistributionGroupList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedEnvironmentList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedEventList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFavoriteList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFileList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFileRevisionList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedFolderList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInstanceMembershipList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedInvitationList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedMetadataTemplateList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedOfflineSyncFolderList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedRegionList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedRevisionList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedSearchResultList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PaginatedUserList.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedCanvasIndicatorsRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedCanvasUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedCollaborationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedContentDistributionGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedEnvironmentRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedEventRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFavoriteUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFilePublishRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFileRevisionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFileUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedFolderUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedInstanceAssignmentGroupRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedInstanceMembershipRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedInstanceUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedMetadataTemplateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedOrganizationUpdateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedRegionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/PatchedUserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Region.d.ts +0 -0
- /package/{types → src/types}/openapi/models/RegionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Revision.d.ts +0 -0
- /package/{types → src/types}/openapi/models/RevisionRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchApp.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchFile.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchResult.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SearchUser.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLink.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCanvas.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCanvasRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkInstance.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkInstanceRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkOrganization.d.ts +0 -0
- /package/{types → src/types}/openapi/models/SharedLinkOrganizationRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/StorageRegionEnum.d.ts +0 -0
- /package/{types → src/types}/openapi/models/Tag.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UploadCreate.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UploadCreateRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/User.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UserRequest.d.ts +0 -0
- /package/{types → src/types}/openapi/models/UserRoleEnum.d.ts +0 -0
|
@@ -1,847 +0,0 @@
|
|
|
1
|
-
import { PropType, Ref } from 'vue';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
-
mutuallyExclusiveQuickFilters: {
|
|
4
|
-
type: PropType<boolean>;
|
|
5
|
-
default: boolean;
|
|
6
|
-
};
|
|
7
|
-
loading: {
|
|
8
|
-
type: PropType<boolean>;
|
|
9
|
-
default: boolean;
|
|
10
|
-
};
|
|
11
|
-
allowAccountChange: {
|
|
12
|
-
type: PropType<boolean>;
|
|
13
|
-
default: boolean;
|
|
14
|
-
};
|
|
15
|
-
allowContactsFromDifferentAccounts: {
|
|
16
|
-
type: PropType<boolean>;
|
|
17
|
-
default: boolean;
|
|
18
|
-
};
|
|
19
|
-
restrictToSingleContact: {
|
|
20
|
-
type: PropType<boolean>;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
search: {
|
|
24
|
-
type: PropType<string>;
|
|
25
|
-
required: true;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
selectedAccountIds: {
|
|
29
|
-
type: PropType<string[]>;
|
|
30
|
-
required: true;
|
|
31
|
-
default: () => never[];
|
|
32
|
-
};
|
|
33
|
-
selectedContactIds: {
|
|
34
|
-
type: PropType<string[]>;
|
|
35
|
-
required: true;
|
|
36
|
-
default: () => never[];
|
|
37
|
-
};
|
|
38
|
-
singleColumnView: {
|
|
39
|
-
type: PropType<boolean>;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
totalAccountsCount: {
|
|
43
|
-
type: PropType<number>;
|
|
44
|
-
required: true;
|
|
45
|
-
};
|
|
46
|
-
accounts: {
|
|
47
|
-
type: PropType<any[]>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
contacts: {
|
|
51
|
-
type: PropType<any[]>;
|
|
52
|
-
required: true;
|
|
53
|
-
};
|
|
54
|
-
customAccountDisplayField: {
|
|
55
|
-
type: PropType<string>;
|
|
56
|
-
default: undefined;
|
|
57
|
-
};
|
|
58
|
-
dateFormat: {
|
|
59
|
-
type: PropType<string>;
|
|
60
|
-
default: string;
|
|
61
|
-
};
|
|
62
|
-
getAccountSecondLine: {
|
|
63
|
-
type: PropType<(account: any) => string>;
|
|
64
|
-
default: (account: any) => any;
|
|
65
|
-
};
|
|
66
|
-
}>, {
|
|
67
|
-
accountsWithContacts: import('vue').ComputedRef<any[]>;
|
|
68
|
-
accountCollapsedState: import('vue').Reactive<Map<string, boolean>>;
|
|
69
|
-
dynamicMaxHeight: import('vue').ComputedRef<string>;
|
|
70
|
-
t: import('vue-i18n').ComposerTranslation<{
|
|
71
|
-
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
72
|
-
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
73
|
-
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
74
|
-
}>, never, never, never>;
|
|
75
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("remove-contact" | "remove-account" | "add-contact" | "add-account")[], "remove-contact" | "remove-account" | "add-contact" | "add-account", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
76
|
-
mutuallyExclusiveQuickFilters: {
|
|
77
|
-
type: PropType<boolean>;
|
|
78
|
-
default: boolean;
|
|
79
|
-
};
|
|
80
|
-
loading: {
|
|
81
|
-
type: PropType<boolean>;
|
|
82
|
-
default: boolean;
|
|
83
|
-
};
|
|
84
|
-
allowAccountChange: {
|
|
85
|
-
type: PropType<boolean>;
|
|
86
|
-
default: boolean;
|
|
87
|
-
};
|
|
88
|
-
allowContactsFromDifferentAccounts: {
|
|
89
|
-
type: PropType<boolean>;
|
|
90
|
-
default: boolean;
|
|
91
|
-
};
|
|
92
|
-
restrictToSingleContact: {
|
|
93
|
-
type: PropType<boolean>;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
search: {
|
|
97
|
-
type: PropType<string>;
|
|
98
|
-
required: true;
|
|
99
|
-
default: string;
|
|
100
|
-
};
|
|
101
|
-
selectedAccountIds: {
|
|
102
|
-
type: PropType<string[]>;
|
|
103
|
-
required: true;
|
|
104
|
-
default: () => never[];
|
|
105
|
-
};
|
|
106
|
-
selectedContactIds: {
|
|
107
|
-
type: PropType<string[]>;
|
|
108
|
-
required: true;
|
|
109
|
-
default: () => never[];
|
|
110
|
-
};
|
|
111
|
-
singleColumnView: {
|
|
112
|
-
type: PropType<boolean>;
|
|
113
|
-
default: boolean;
|
|
114
|
-
};
|
|
115
|
-
totalAccountsCount: {
|
|
116
|
-
type: PropType<number>;
|
|
117
|
-
required: true;
|
|
118
|
-
};
|
|
119
|
-
accounts: {
|
|
120
|
-
type: PropType<any[]>;
|
|
121
|
-
required: true;
|
|
122
|
-
};
|
|
123
|
-
contacts: {
|
|
124
|
-
type: PropType<any[]>;
|
|
125
|
-
required: true;
|
|
126
|
-
};
|
|
127
|
-
customAccountDisplayField: {
|
|
128
|
-
type: PropType<string>;
|
|
129
|
-
default: undefined;
|
|
130
|
-
};
|
|
131
|
-
dateFormat: {
|
|
132
|
-
type: PropType<string>;
|
|
133
|
-
default: string;
|
|
134
|
-
};
|
|
135
|
-
getAccountSecondLine: {
|
|
136
|
-
type: PropType<(account: any) => string>;
|
|
137
|
-
default: (account: any) => any;
|
|
138
|
-
};
|
|
139
|
-
}>> & Readonly<{
|
|
140
|
-
"onRemove-contact"?: ((...args: any[]) => any) | undefined;
|
|
141
|
-
"onRemove-account"?: ((...args: any[]) => any) | undefined;
|
|
142
|
-
"onAdd-contact"?: ((...args: any[]) => any) | undefined;
|
|
143
|
-
"onAdd-account"?: ((...args: any[]) => any) | undefined;
|
|
144
|
-
}>, {
|
|
145
|
-
search: string;
|
|
146
|
-
loading: boolean;
|
|
147
|
-
dateFormat: string;
|
|
148
|
-
selectedAccountIds: string[];
|
|
149
|
-
selectedContactIds: string[];
|
|
150
|
-
allowAccountChange: boolean;
|
|
151
|
-
allowContactsFromDifferentAccounts: boolean;
|
|
152
|
-
restrictToSingleContact: boolean;
|
|
153
|
-
mutuallyExclusiveQuickFilters: boolean;
|
|
154
|
-
singleColumnView: boolean;
|
|
155
|
-
customAccountDisplayField: string;
|
|
156
|
-
getAccountSecondLine: (account: any) => string;
|
|
157
|
-
}, {}, {
|
|
158
|
-
DynamicScroller: any;
|
|
159
|
-
DynamicScrollerItem: any;
|
|
160
|
-
NCollapse: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
161
|
-
readonly defaultExpandedNames: {
|
|
162
|
-
readonly type: PropType<string | number | Array<string | number> | null>;
|
|
163
|
-
readonly default: null;
|
|
164
|
-
};
|
|
165
|
-
readonly expandedNames: PropType<string | number | Array<string | number> | null>;
|
|
166
|
-
readonly arrowPlacement: {
|
|
167
|
-
readonly type: PropType<"left" | "right">;
|
|
168
|
-
readonly default: "left";
|
|
169
|
-
};
|
|
170
|
-
readonly accordion: {
|
|
171
|
-
readonly type: BooleanConstructor;
|
|
172
|
-
readonly default: false;
|
|
173
|
-
};
|
|
174
|
-
readonly displayDirective: {
|
|
175
|
-
readonly type: PropType<"if" | "show">;
|
|
176
|
-
readonly default: "if";
|
|
177
|
-
};
|
|
178
|
-
readonly triggerAreas: {
|
|
179
|
-
readonly type: PropType<Array<"main" | "extra" | "arrow">>;
|
|
180
|
-
readonly default: () => string[];
|
|
181
|
-
};
|
|
182
|
-
readonly onItemHeaderClick: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnItemHeaderClick>>;
|
|
183
|
-
readonly 'onUpdate:expandedNames': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames>>;
|
|
184
|
-
readonly onUpdateExpandedNames: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames>>;
|
|
185
|
-
readonly onExpandedNamesChange: {
|
|
186
|
-
readonly type: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames> | undefined>;
|
|
187
|
-
readonly validator: () => boolean;
|
|
188
|
-
readonly default: undefined;
|
|
189
|
-
};
|
|
190
|
-
readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Collapse", {
|
|
191
|
-
titleFontSize: string;
|
|
192
|
-
titleFontWeight: string;
|
|
193
|
-
dividerColor: string;
|
|
194
|
-
titleTextColor: string;
|
|
195
|
-
titleTextColorDisabled: string;
|
|
196
|
-
fontSize: string;
|
|
197
|
-
textColor: string;
|
|
198
|
-
arrowColor: string;
|
|
199
|
-
arrowColorDisabled: string;
|
|
200
|
-
itemMargin: string;
|
|
201
|
-
titlePadding: string;
|
|
202
|
-
}, any>>;
|
|
203
|
-
readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Collapse", {
|
|
204
|
-
titleFontSize: string;
|
|
205
|
-
titleFontWeight: string;
|
|
206
|
-
dividerColor: string;
|
|
207
|
-
titleTextColor: string;
|
|
208
|
-
titleTextColorDisabled: string;
|
|
209
|
-
fontSize: string;
|
|
210
|
-
textColor: string;
|
|
211
|
-
arrowColor: string;
|
|
212
|
-
arrowColorDisabled: string;
|
|
213
|
-
itemMargin: string;
|
|
214
|
-
titlePadding: string;
|
|
215
|
-
}, any>>>;
|
|
216
|
-
readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Collapse", {
|
|
217
|
-
titleFontSize: string;
|
|
218
|
-
titleFontWeight: string;
|
|
219
|
-
dividerColor: string;
|
|
220
|
-
titleTextColor: string;
|
|
221
|
-
titleTextColorDisabled: string;
|
|
222
|
-
fontSize: string;
|
|
223
|
-
textColor: string;
|
|
224
|
-
arrowColor: string;
|
|
225
|
-
arrowColorDisabled: string;
|
|
226
|
-
itemMargin: string;
|
|
227
|
-
titlePadding: string;
|
|
228
|
-
}, any>>>;
|
|
229
|
-
}>, {
|
|
230
|
-
rtlEnabled: Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
231
|
-
mergedTheme: import('vue').ComputedRef<{
|
|
232
|
-
common: import('naive-ui').ThemeCommonVars;
|
|
233
|
-
self: {
|
|
234
|
-
titleFontSize: string;
|
|
235
|
-
titleFontWeight: string;
|
|
236
|
-
dividerColor: string;
|
|
237
|
-
titleTextColor: string;
|
|
238
|
-
titleTextColorDisabled: string;
|
|
239
|
-
fontSize: string;
|
|
240
|
-
textColor: string;
|
|
241
|
-
arrowColor: string;
|
|
242
|
-
arrowColorDisabled: string;
|
|
243
|
-
itemMargin: string;
|
|
244
|
-
titlePadding: string;
|
|
245
|
-
};
|
|
246
|
-
peers: any;
|
|
247
|
-
peerOverrides: {
|
|
248
|
-
[x: string]: any;
|
|
249
|
-
};
|
|
250
|
-
}>;
|
|
251
|
-
mergedClsPrefix: Ref<string, string>;
|
|
252
|
-
cssVars: import('vue').ComputedRef<{
|
|
253
|
-
"--n-font-size": string;
|
|
254
|
-
"--n-bezier": string;
|
|
255
|
-
"--n-text-color": string;
|
|
256
|
-
"--n-divider-color": string;
|
|
257
|
-
"--n-title-padding": string;
|
|
258
|
-
"--n-title-font-size": string;
|
|
259
|
-
"--n-title-text-color": string;
|
|
260
|
-
"--n-title-text-color-disabled": string;
|
|
261
|
-
"--n-title-font-weight": string;
|
|
262
|
-
"--n-arrow-color": string;
|
|
263
|
-
"--n-arrow-color-disabled": string;
|
|
264
|
-
"--n-item-margin": string;
|
|
265
|
-
}> | undefined;
|
|
266
|
-
themeClass: Ref<string, string> | undefined;
|
|
267
|
-
onRender: (() => void) | undefined;
|
|
268
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
269
|
-
readonly defaultExpandedNames: {
|
|
270
|
-
readonly type: PropType<string | number | Array<string | number> | null>;
|
|
271
|
-
readonly default: null;
|
|
272
|
-
};
|
|
273
|
-
readonly expandedNames: PropType<string | number | Array<string | number> | null>;
|
|
274
|
-
readonly arrowPlacement: {
|
|
275
|
-
readonly type: PropType<"left" | "right">;
|
|
276
|
-
readonly default: "left";
|
|
277
|
-
};
|
|
278
|
-
readonly accordion: {
|
|
279
|
-
readonly type: BooleanConstructor;
|
|
280
|
-
readonly default: false;
|
|
281
|
-
};
|
|
282
|
-
readonly displayDirective: {
|
|
283
|
-
readonly type: PropType<"if" | "show">;
|
|
284
|
-
readonly default: "if";
|
|
285
|
-
};
|
|
286
|
-
readonly triggerAreas: {
|
|
287
|
-
readonly type: PropType<Array<"main" | "extra" | "arrow">>;
|
|
288
|
-
readonly default: () => string[];
|
|
289
|
-
};
|
|
290
|
-
readonly onItemHeaderClick: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnItemHeaderClick>>;
|
|
291
|
-
readonly 'onUpdate:expandedNames': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames>>;
|
|
292
|
-
readonly onUpdateExpandedNames: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames>>;
|
|
293
|
-
readonly onExpandedNamesChange: {
|
|
294
|
-
readonly type: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames> | undefined>;
|
|
295
|
-
readonly validator: () => boolean;
|
|
296
|
-
readonly default: undefined;
|
|
297
|
-
};
|
|
298
|
-
readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Collapse", {
|
|
299
|
-
titleFontSize: string;
|
|
300
|
-
titleFontWeight: string;
|
|
301
|
-
dividerColor: string;
|
|
302
|
-
titleTextColor: string;
|
|
303
|
-
titleTextColorDisabled: string;
|
|
304
|
-
fontSize: string;
|
|
305
|
-
textColor: string;
|
|
306
|
-
arrowColor: string;
|
|
307
|
-
arrowColorDisabled: string;
|
|
308
|
-
itemMargin: string;
|
|
309
|
-
titlePadding: string;
|
|
310
|
-
}, any>>;
|
|
311
|
-
readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Collapse", {
|
|
312
|
-
titleFontSize: string;
|
|
313
|
-
titleFontWeight: string;
|
|
314
|
-
dividerColor: string;
|
|
315
|
-
titleTextColor: string;
|
|
316
|
-
titleTextColorDisabled: string;
|
|
317
|
-
fontSize: string;
|
|
318
|
-
textColor: string;
|
|
319
|
-
arrowColor: string;
|
|
320
|
-
arrowColorDisabled: string;
|
|
321
|
-
itemMargin: string;
|
|
322
|
-
titlePadding: string;
|
|
323
|
-
}, any>>>;
|
|
324
|
-
readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Collapse", {
|
|
325
|
-
titleFontSize: string;
|
|
326
|
-
titleFontWeight: string;
|
|
327
|
-
dividerColor: string;
|
|
328
|
-
titleTextColor: string;
|
|
329
|
-
titleTextColorDisabled: string;
|
|
330
|
-
fontSize: string;
|
|
331
|
-
textColor: string;
|
|
332
|
-
arrowColor: string;
|
|
333
|
-
arrowColorDisabled: string;
|
|
334
|
-
itemMargin: string;
|
|
335
|
-
titlePadding: string;
|
|
336
|
-
}, any>>>;
|
|
337
|
-
}>> & Readonly<{}>, {
|
|
338
|
-
readonly displayDirective: "show" | "if";
|
|
339
|
-
readonly defaultExpandedNames: string | number | (string | number)[] | null;
|
|
340
|
-
readonly arrowPlacement: "left" | "right";
|
|
341
|
-
readonly accordion: boolean;
|
|
342
|
-
readonly triggerAreas: ("main" | "extra" | "arrow")[];
|
|
343
|
-
readonly onExpandedNamesChange: import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/collapse/src/interface').OnUpdateExpandedNames> | undefined;
|
|
344
|
-
}, import('vue').SlotsType<import('naive-ui').CollapseSlots>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
345
|
-
NCollapseItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
346
|
-
readonly title: StringConstructor;
|
|
347
|
-
readonly name: PropType<string | number>;
|
|
348
|
-
readonly disabled: BooleanConstructor;
|
|
349
|
-
readonly displayDirective: PropType<"if" | "show">;
|
|
350
|
-
}>, {
|
|
351
|
-
rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
|
|
352
|
-
collapseSlots: import('naive-ui').CollapseSlots;
|
|
353
|
-
randomName: string;
|
|
354
|
-
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
355
|
-
collapsed: import('vue').ComputedRef<boolean>;
|
|
356
|
-
triggerAreas: import('vue').Ref<("main" | "extra" | "arrow")[], ("main" | "extra" | "arrow")[]>;
|
|
357
|
-
mergedDisplayDirective: import('vue').ComputedRef<"show" | "if">;
|
|
358
|
-
arrowPlacement: import('vue').ComputedRef<"left" | "right">;
|
|
359
|
-
handleClick(e: MouseEvent): void;
|
|
360
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
361
|
-
readonly title: StringConstructor;
|
|
362
|
-
readonly name: PropType<string | number>;
|
|
363
|
-
readonly disabled: BooleanConstructor;
|
|
364
|
-
readonly displayDirective: PropType<"if" | "show">;
|
|
365
|
-
}>> & Readonly<{}>, {
|
|
366
|
-
readonly disabled: boolean;
|
|
367
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
368
|
-
NH6: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
369
|
-
readonly type: {
|
|
370
|
-
readonly type: import('vue').PropType<"info" | "success" | "warning" | "error" | "default">;
|
|
371
|
-
readonly default: "default";
|
|
372
|
-
};
|
|
373
|
-
readonly prefix: StringConstructor;
|
|
374
|
-
readonly alignText: BooleanConstructor;
|
|
375
|
-
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Typography", {
|
|
376
|
-
aTextColor: string;
|
|
377
|
-
blockquoteTextColor: string;
|
|
378
|
-
blockquotePrefixColor: string;
|
|
379
|
-
blockquoteLineHeight: string;
|
|
380
|
-
blockquoteFontSize: string;
|
|
381
|
-
codeBorderRadius: string;
|
|
382
|
-
liTextColor: string;
|
|
383
|
-
liLineHeight: string;
|
|
384
|
-
liFontSize: string;
|
|
385
|
-
hrColor: string;
|
|
386
|
-
headerFontWeight: string;
|
|
387
|
-
headerTextColor: string;
|
|
388
|
-
pTextColor: string;
|
|
389
|
-
pTextColor1Depth: string;
|
|
390
|
-
pTextColor2Depth: string;
|
|
391
|
-
pTextColor3Depth: string;
|
|
392
|
-
pLineHeight: string;
|
|
393
|
-
pFontSize: string;
|
|
394
|
-
headerBarColor: string;
|
|
395
|
-
headerBarColorPrimary: string;
|
|
396
|
-
headerBarColorInfo: string;
|
|
397
|
-
headerBarColorError: string;
|
|
398
|
-
headerBarColorWarning: string;
|
|
399
|
-
headerBarColorSuccess: string;
|
|
400
|
-
textColor: string;
|
|
401
|
-
textColor1Depth: string;
|
|
402
|
-
textColor2Depth: string;
|
|
403
|
-
textColor3Depth: string;
|
|
404
|
-
textColorPrimary: string;
|
|
405
|
-
textColorInfo: string;
|
|
406
|
-
textColorSuccess: string;
|
|
407
|
-
textColorWarning: string;
|
|
408
|
-
textColorError: string;
|
|
409
|
-
codeTextColor: string;
|
|
410
|
-
codeColor: string;
|
|
411
|
-
codeBorder: string;
|
|
412
|
-
headerFontSize1: string;
|
|
413
|
-
headerFontSize2: string;
|
|
414
|
-
headerFontSize3: string;
|
|
415
|
-
headerFontSize4: string;
|
|
416
|
-
headerFontSize5: string;
|
|
417
|
-
headerFontSize6: string;
|
|
418
|
-
headerMargin1: string;
|
|
419
|
-
headerMargin2: string;
|
|
420
|
-
headerMargin3: string;
|
|
421
|
-
headerMargin4: string;
|
|
422
|
-
headerMargin5: string;
|
|
423
|
-
headerMargin6: string;
|
|
424
|
-
headerPrefixWidth1: string;
|
|
425
|
-
headerPrefixWidth2: string;
|
|
426
|
-
headerPrefixWidth3: string;
|
|
427
|
-
headerPrefixWidth4: string;
|
|
428
|
-
headerPrefixWidth5: string;
|
|
429
|
-
headerPrefixWidth6: string;
|
|
430
|
-
headerBarWidth1: string;
|
|
431
|
-
headerBarWidth2: string;
|
|
432
|
-
headerBarWidth3: string;
|
|
433
|
-
headerBarWidth4: string;
|
|
434
|
-
headerBarWidth5: string;
|
|
435
|
-
headerBarWidth6: string;
|
|
436
|
-
pMargin: string;
|
|
437
|
-
liMargin: string;
|
|
438
|
-
olPadding: string;
|
|
439
|
-
ulPadding: string;
|
|
440
|
-
}, any>>;
|
|
441
|
-
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Typography", {
|
|
442
|
-
aTextColor: string;
|
|
443
|
-
blockquoteTextColor: string;
|
|
444
|
-
blockquotePrefixColor: string;
|
|
445
|
-
blockquoteLineHeight: string;
|
|
446
|
-
blockquoteFontSize: string;
|
|
447
|
-
codeBorderRadius: string;
|
|
448
|
-
liTextColor: string;
|
|
449
|
-
liLineHeight: string;
|
|
450
|
-
liFontSize: string;
|
|
451
|
-
hrColor: string;
|
|
452
|
-
headerFontWeight: string;
|
|
453
|
-
headerTextColor: string;
|
|
454
|
-
pTextColor: string;
|
|
455
|
-
pTextColor1Depth: string;
|
|
456
|
-
pTextColor2Depth: string;
|
|
457
|
-
pTextColor3Depth: string;
|
|
458
|
-
pLineHeight: string;
|
|
459
|
-
pFontSize: string;
|
|
460
|
-
headerBarColor: string;
|
|
461
|
-
headerBarColorPrimary: string;
|
|
462
|
-
headerBarColorInfo: string;
|
|
463
|
-
headerBarColorError: string;
|
|
464
|
-
headerBarColorWarning: string;
|
|
465
|
-
headerBarColorSuccess: string;
|
|
466
|
-
textColor: string;
|
|
467
|
-
textColor1Depth: string;
|
|
468
|
-
textColor2Depth: string;
|
|
469
|
-
textColor3Depth: string;
|
|
470
|
-
textColorPrimary: string;
|
|
471
|
-
textColorInfo: string;
|
|
472
|
-
textColorSuccess: string;
|
|
473
|
-
textColorWarning: string;
|
|
474
|
-
textColorError: string;
|
|
475
|
-
codeTextColor: string;
|
|
476
|
-
codeColor: string;
|
|
477
|
-
codeBorder: string;
|
|
478
|
-
headerFontSize1: string;
|
|
479
|
-
headerFontSize2: string;
|
|
480
|
-
headerFontSize3: string;
|
|
481
|
-
headerFontSize4: string;
|
|
482
|
-
headerFontSize5: string;
|
|
483
|
-
headerFontSize6: string;
|
|
484
|
-
headerMargin1: string;
|
|
485
|
-
headerMargin2: string;
|
|
486
|
-
headerMargin3: string;
|
|
487
|
-
headerMargin4: string;
|
|
488
|
-
headerMargin5: string;
|
|
489
|
-
headerMargin6: string;
|
|
490
|
-
headerPrefixWidth1: string;
|
|
491
|
-
headerPrefixWidth2: string;
|
|
492
|
-
headerPrefixWidth3: string;
|
|
493
|
-
headerPrefixWidth4: string;
|
|
494
|
-
headerPrefixWidth5: string;
|
|
495
|
-
headerPrefixWidth6: string;
|
|
496
|
-
headerBarWidth1: string;
|
|
497
|
-
headerBarWidth2: string;
|
|
498
|
-
headerBarWidth3: string;
|
|
499
|
-
headerBarWidth4: string;
|
|
500
|
-
headerBarWidth5: string;
|
|
501
|
-
headerBarWidth6: string;
|
|
502
|
-
pMargin: string;
|
|
503
|
-
liMargin: string;
|
|
504
|
-
olPadding: string;
|
|
505
|
-
ulPadding: string;
|
|
506
|
-
}, any>>>;
|
|
507
|
-
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Typography", {
|
|
508
|
-
aTextColor: string;
|
|
509
|
-
blockquoteTextColor: string;
|
|
510
|
-
blockquotePrefixColor: string;
|
|
511
|
-
blockquoteLineHeight: string;
|
|
512
|
-
blockquoteFontSize: string;
|
|
513
|
-
codeBorderRadius: string;
|
|
514
|
-
liTextColor: string;
|
|
515
|
-
liLineHeight: string;
|
|
516
|
-
liFontSize: string;
|
|
517
|
-
hrColor: string;
|
|
518
|
-
headerFontWeight: string;
|
|
519
|
-
headerTextColor: string;
|
|
520
|
-
pTextColor: string;
|
|
521
|
-
pTextColor1Depth: string;
|
|
522
|
-
pTextColor2Depth: string;
|
|
523
|
-
pTextColor3Depth: string;
|
|
524
|
-
pLineHeight: string;
|
|
525
|
-
pFontSize: string;
|
|
526
|
-
headerBarColor: string;
|
|
527
|
-
headerBarColorPrimary: string;
|
|
528
|
-
headerBarColorInfo: string;
|
|
529
|
-
headerBarColorError: string;
|
|
530
|
-
headerBarColorWarning: string;
|
|
531
|
-
headerBarColorSuccess: string;
|
|
532
|
-
textColor: string;
|
|
533
|
-
textColor1Depth: string;
|
|
534
|
-
textColor2Depth: string;
|
|
535
|
-
textColor3Depth: string;
|
|
536
|
-
textColorPrimary: string;
|
|
537
|
-
textColorInfo: string;
|
|
538
|
-
textColorSuccess: string;
|
|
539
|
-
textColorWarning: string;
|
|
540
|
-
textColorError: string;
|
|
541
|
-
codeTextColor: string;
|
|
542
|
-
codeColor: string;
|
|
543
|
-
codeBorder: string;
|
|
544
|
-
headerFontSize1: string;
|
|
545
|
-
headerFontSize2: string;
|
|
546
|
-
headerFontSize3: string;
|
|
547
|
-
headerFontSize4: string;
|
|
548
|
-
headerFontSize5: string;
|
|
549
|
-
headerFontSize6: string;
|
|
550
|
-
headerMargin1: string;
|
|
551
|
-
headerMargin2: string;
|
|
552
|
-
headerMargin3: string;
|
|
553
|
-
headerMargin4: string;
|
|
554
|
-
headerMargin5: string;
|
|
555
|
-
headerMargin6: string;
|
|
556
|
-
headerPrefixWidth1: string;
|
|
557
|
-
headerPrefixWidth2: string;
|
|
558
|
-
headerPrefixWidth3: string;
|
|
559
|
-
headerPrefixWidth4: string;
|
|
560
|
-
headerPrefixWidth5: string;
|
|
561
|
-
headerPrefixWidth6: string;
|
|
562
|
-
headerBarWidth1: string;
|
|
563
|
-
headerBarWidth2: string;
|
|
564
|
-
headerBarWidth3: string;
|
|
565
|
-
headerBarWidth4: string;
|
|
566
|
-
headerBarWidth5: string;
|
|
567
|
-
headerBarWidth6: string;
|
|
568
|
-
pMargin: string;
|
|
569
|
-
liMargin: string;
|
|
570
|
-
olPadding: string;
|
|
571
|
-
ulPadding: string;
|
|
572
|
-
}, any>>>;
|
|
573
|
-
}>, {
|
|
574
|
-
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
575
|
-
cssVars: import('vue').ComputedRef<{
|
|
576
|
-
"--n-bezier": string;
|
|
577
|
-
"--n-font-size": string;
|
|
578
|
-
"--n-margin": string;
|
|
579
|
-
"--n-bar-color": string;
|
|
580
|
-
"--n-bar-width": string;
|
|
581
|
-
"--n-font-weight": string;
|
|
582
|
-
"--n-text-color": string;
|
|
583
|
-
"--n-prefix-width": string;
|
|
584
|
-
}> | undefined;
|
|
585
|
-
themeClass: import('vue').Ref<string, string> | undefined;
|
|
586
|
-
onRender: (() => void) | undefined;
|
|
587
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
588
|
-
readonly type: {
|
|
589
|
-
readonly type: import('vue').PropType<"info" | "success" | "warning" | "error" | "default">;
|
|
590
|
-
readonly default: "default";
|
|
591
|
-
};
|
|
592
|
-
readonly prefix: StringConstructor;
|
|
593
|
-
readonly alignText: BooleanConstructor;
|
|
594
|
-
readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Typography", {
|
|
595
|
-
aTextColor: string;
|
|
596
|
-
blockquoteTextColor: string;
|
|
597
|
-
blockquotePrefixColor: string;
|
|
598
|
-
blockquoteLineHeight: string;
|
|
599
|
-
blockquoteFontSize: string;
|
|
600
|
-
codeBorderRadius: string;
|
|
601
|
-
liTextColor: string;
|
|
602
|
-
liLineHeight: string;
|
|
603
|
-
liFontSize: string;
|
|
604
|
-
hrColor: string;
|
|
605
|
-
headerFontWeight: string;
|
|
606
|
-
headerTextColor: string;
|
|
607
|
-
pTextColor: string;
|
|
608
|
-
pTextColor1Depth: string;
|
|
609
|
-
pTextColor2Depth: string;
|
|
610
|
-
pTextColor3Depth: string;
|
|
611
|
-
pLineHeight: string;
|
|
612
|
-
pFontSize: string;
|
|
613
|
-
headerBarColor: string;
|
|
614
|
-
headerBarColorPrimary: string;
|
|
615
|
-
headerBarColorInfo: string;
|
|
616
|
-
headerBarColorError: string;
|
|
617
|
-
headerBarColorWarning: string;
|
|
618
|
-
headerBarColorSuccess: string;
|
|
619
|
-
textColor: string;
|
|
620
|
-
textColor1Depth: string;
|
|
621
|
-
textColor2Depth: string;
|
|
622
|
-
textColor3Depth: string;
|
|
623
|
-
textColorPrimary: string;
|
|
624
|
-
textColorInfo: string;
|
|
625
|
-
textColorSuccess: string;
|
|
626
|
-
textColorWarning: string;
|
|
627
|
-
textColorError: string;
|
|
628
|
-
codeTextColor: string;
|
|
629
|
-
codeColor: string;
|
|
630
|
-
codeBorder: string;
|
|
631
|
-
headerFontSize1: string;
|
|
632
|
-
headerFontSize2: string;
|
|
633
|
-
headerFontSize3: string;
|
|
634
|
-
headerFontSize4: string;
|
|
635
|
-
headerFontSize5: string;
|
|
636
|
-
headerFontSize6: string;
|
|
637
|
-
headerMargin1: string;
|
|
638
|
-
headerMargin2: string;
|
|
639
|
-
headerMargin3: string;
|
|
640
|
-
headerMargin4: string;
|
|
641
|
-
headerMargin5: string;
|
|
642
|
-
headerMargin6: string;
|
|
643
|
-
headerPrefixWidth1: string;
|
|
644
|
-
headerPrefixWidth2: string;
|
|
645
|
-
headerPrefixWidth3: string;
|
|
646
|
-
headerPrefixWidth4: string;
|
|
647
|
-
headerPrefixWidth5: string;
|
|
648
|
-
headerPrefixWidth6: string;
|
|
649
|
-
headerBarWidth1: string;
|
|
650
|
-
headerBarWidth2: string;
|
|
651
|
-
headerBarWidth3: string;
|
|
652
|
-
headerBarWidth4: string;
|
|
653
|
-
headerBarWidth5: string;
|
|
654
|
-
headerBarWidth6: string;
|
|
655
|
-
pMargin: string;
|
|
656
|
-
liMargin: string;
|
|
657
|
-
olPadding: string;
|
|
658
|
-
ulPadding: string;
|
|
659
|
-
}, any>>;
|
|
660
|
-
readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Typography", {
|
|
661
|
-
aTextColor: string;
|
|
662
|
-
blockquoteTextColor: string;
|
|
663
|
-
blockquotePrefixColor: string;
|
|
664
|
-
blockquoteLineHeight: string;
|
|
665
|
-
blockquoteFontSize: string;
|
|
666
|
-
codeBorderRadius: string;
|
|
667
|
-
liTextColor: string;
|
|
668
|
-
liLineHeight: string;
|
|
669
|
-
liFontSize: string;
|
|
670
|
-
hrColor: string;
|
|
671
|
-
headerFontWeight: string;
|
|
672
|
-
headerTextColor: string;
|
|
673
|
-
pTextColor: string;
|
|
674
|
-
pTextColor1Depth: string;
|
|
675
|
-
pTextColor2Depth: string;
|
|
676
|
-
pTextColor3Depth: string;
|
|
677
|
-
pLineHeight: string;
|
|
678
|
-
pFontSize: string;
|
|
679
|
-
headerBarColor: string;
|
|
680
|
-
headerBarColorPrimary: string;
|
|
681
|
-
headerBarColorInfo: string;
|
|
682
|
-
headerBarColorError: string;
|
|
683
|
-
headerBarColorWarning: string;
|
|
684
|
-
headerBarColorSuccess: string;
|
|
685
|
-
textColor: string;
|
|
686
|
-
textColor1Depth: string;
|
|
687
|
-
textColor2Depth: string;
|
|
688
|
-
textColor3Depth: string;
|
|
689
|
-
textColorPrimary: string;
|
|
690
|
-
textColorInfo: string;
|
|
691
|
-
textColorSuccess: string;
|
|
692
|
-
textColorWarning: string;
|
|
693
|
-
textColorError: string;
|
|
694
|
-
codeTextColor: string;
|
|
695
|
-
codeColor: string;
|
|
696
|
-
codeBorder: string;
|
|
697
|
-
headerFontSize1: string;
|
|
698
|
-
headerFontSize2: string;
|
|
699
|
-
headerFontSize3: string;
|
|
700
|
-
headerFontSize4: string;
|
|
701
|
-
headerFontSize5: string;
|
|
702
|
-
headerFontSize6: string;
|
|
703
|
-
headerMargin1: string;
|
|
704
|
-
headerMargin2: string;
|
|
705
|
-
headerMargin3: string;
|
|
706
|
-
headerMargin4: string;
|
|
707
|
-
headerMargin5: string;
|
|
708
|
-
headerMargin6: string;
|
|
709
|
-
headerPrefixWidth1: string;
|
|
710
|
-
headerPrefixWidth2: string;
|
|
711
|
-
headerPrefixWidth3: string;
|
|
712
|
-
headerPrefixWidth4: string;
|
|
713
|
-
headerPrefixWidth5: string;
|
|
714
|
-
headerPrefixWidth6: string;
|
|
715
|
-
headerBarWidth1: string;
|
|
716
|
-
headerBarWidth2: string;
|
|
717
|
-
headerBarWidth3: string;
|
|
718
|
-
headerBarWidth4: string;
|
|
719
|
-
headerBarWidth5: string;
|
|
720
|
-
headerBarWidth6: string;
|
|
721
|
-
pMargin: string;
|
|
722
|
-
liMargin: string;
|
|
723
|
-
olPadding: string;
|
|
724
|
-
ulPadding: string;
|
|
725
|
-
}, any>>>;
|
|
726
|
-
readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Typography", {
|
|
727
|
-
aTextColor: string;
|
|
728
|
-
blockquoteTextColor: string;
|
|
729
|
-
blockquotePrefixColor: string;
|
|
730
|
-
blockquoteLineHeight: string;
|
|
731
|
-
blockquoteFontSize: string;
|
|
732
|
-
codeBorderRadius: string;
|
|
733
|
-
liTextColor: string;
|
|
734
|
-
liLineHeight: string;
|
|
735
|
-
liFontSize: string;
|
|
736
|
-
hrColor: string;
|
|
737
|
-
headerFontWeight: string;
|
|
738
|
-
headerTextColor: string;
|
|
739
|
-
pTextColor: string;
|
|
740
|
-
pTextColor1Depth: string;
|
|
741
|
-
pTextColor2Depth: string;
|
|
742
|
-
pTextColor3Depth: string;
|
|
743
|
-
pLineHeight: string;
|
|
744
|
-
pFontSize: string;
|
|
745
|
-
headerBarColor: string;
|
|
746
|
-
headerBarColorPrimary: string;
|
|
747
|
-
headerBarColorInfo: string;
|
|
748
|
-
headerBarColorError: string;
|
|
749
|
-
headerBarColorWarning: string;
|
|
750
|
-
headerBarColorSuccess: string;
|
|
751
|
-
textColor: string;
|
|
752
|
-
textColor1Depth: string;
|
|
753
|
-
textColor2Depth: string;
|
|
754
|
-
textColor3Depth: string;
|
|
755
|
-
textColorPrimary: string;
|
|
756
|
-
textColorInfo: string;
|
|
757
|
-
textColorSuccess: string;
|
|
758
|
-
textColorWarning: string;
|
|
759
|
-
textColorError: string;
|
|
760
|
-
codeTextColor: string;
|
|
761
|
-
codeColor: string;
|
|
762
|
-
codeBorder: string;
|
|
763
|
-
headerFontSize1: string;
|
|
764
|
-
headerFontSize2: string;
|
|
765
|
-
headerFontSize3: string;
|
|
766
|
-
headerFontSize4: string;
|
|
767
|
-
headerFontSize5: string;
|
|
768
|
-
headerFontSize6: string;
|
|
769
|
-
headerMargin1: string;
|
|
770
|
-
headerMargin2: string;
|
|
771
|
-
headerMargin3: string;
|
|
772
|
-
headerMargin4: string;
|
|
773
|
-
headerMargin5: string;
|
|
774
|
-
headerMargin6: string;
|
|
775
|
-
headerPrefixWidth1: string;
|
|
776
|
-
headerPrefixWidth2: string;
|
|
777
|
-
headerPrefixWidth3: string;
|
|
778
|
-
headerPrefixWidth4: string;
|
|
779
|
-
headerPrefixWidth5: string;
|
|
780
|
-
headerPrefixWidth6: string;
|
|
781
|
-
headerBarWidth1: string;
|
|
782
|
-
headerBarWidth2: string;
|
|
783
|
-
headerBarWidth3: string;
|
|
784
|
-
headerBarWidth4: string;
|
|
785
|
-
headerBarWidth5: string;
|
|
786
|
-
headerBarWidth6: string;
|
|
787
|
-
pMargin: string;
|
|
788
|
-
liMargin: string;
|
|
789
|
-
olPadding: string;
|
|
790
|
-
ulPadding: string;
|
|
791
|
-
}, any>>>;
|
|
792
|
-
}>> & Readonly<{}>, {
|
|
793
|
-
readonly type: "default" | "info" | "warning" | "error" | "success";
|
|
794
|
-
readonly alignText: boolean;
|
|
795
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
796
|
-
CContactAccountListItem: import('vue').DefineComponent<{
|
|
797
|
-
accountId: string;
|
|
798
|
-
name: string;
|
|
799
|
-
address?: string;
|
|
800
|
-
customFieldValue?: string | number | boolean | null;
|
|
801
|
-
collapsed?: boolean;
|
|
802
|
-
contacts?: any[];
|
|
803
|
-
search?: string;
|
|
804
|
-
cardIcon?: string;
|
|
805
|
-
selectedAccountIds?: string[];
|
|
806
|
-
selectedContactIds?: string[];
|
|
807
|
-
loading: boolean;
|
|
808
|
-
allowAccountChange?: boolean;
|
|
809
|
-
allowContactsFromDifferentAccounts?: boolean;
|
|
810
|
-
restrictToSingleContact?: boolean;
|
|
811
|
-
lastViewedDate?: string;
|
|
812
|
-
dateFormat?: string;
|
|
813
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
814
|
-
"remove-contact": (contactId: string) => any;
|
|
815
|
-
"remove-account": (accountId: string) => any;
|
|
816
|
-
"add-contact": (contactId: string) => any;
|
|
817
|
-
"add-account": (accountId: string) => any;
|
|
818
|
-
"update:collapsed": (collapsed: boolean) => any;
|
|
819
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
820
|
-
accountId: string;
|
|
821
|
-
name: string;
|
|
822
|
-
address?: string;
|
|
823
|
-
customFieldValue?: string | number | boolean | null;
|
|
824
|
-
collapsed?: boolean;
|
|
825
|
-
contacts?: any[];
|
|
826
|
-
search?: string;
|
|
827
|
-
cardIcon?: string;
|
|
828
|
-
selectedAccountIds?: string[];
|
|
829
|
-
selectedContactIds?: string[];
|
|
830
|
-
loading: boolean;
|
|
831
|
-
allowAccountChange?: boolean;
|
|
832
|
-
allowContactsFromDifferentAccounts?: boolean;
|
|
833
|
-
restrictToSingleContact?: boolean;
|
|
834
|
-
lastViewedDate?: string;
|
|
835
|
-
dateFormat?: string;
|
|
836
|
-
}> & Readonly<{
|
|
837
|
-
"onRemove-contact"?: ((contactId: string) => any) | undefined;
|
|
838
|
-
"onRemove-account"?: ((accountId: string) => any) | undefined;
|
|
839
|
-
"onAdd-contact"?: ((contactId: string) => any) | undefined;
|
|
840
|
-
"onAdd-account"?: ((accountId: string) => any) | undefined;
|
|
841
|
-
"onUpdate:collapsed"?: ((collapsed: boolean) => any) | undefined;
|
|
842
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
843
|
-
CIcon: import('vue').DefineComponent<import('../CIcon/CIcon.vue').Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../CIcon/CIcon.vue').Props> & Readonly<{}>, {
|
|
844
|
-
faType: import('../../main.lib').FontAwesomeType;
|
|
845
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
846
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
847
|
-
export default _default;
|