@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.
Files changed (1222) hide show
  1. package/impact-js-api.spec.json +37 -34
  2. package/js-api.esm.d.ts +1 -2
  3. package/js-api.esm.js +149 -24
  4. package/js-api.esm.js.map +1 -1
  5. package/js-api.umd.min.js +17 -10
  6. package/js-api.umd.min.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/lib/apps/browser/appTypes.d.ts +50 -0
  9. package/{lib → src/lib}/apps/browser/stores/api.d.ts +68 -128
  10. package/{lib → src/lib}/apps/browser/stores/app.d.ts +12 -28
  11. package/{lib → src/lib}/apps/browser/stores/fileSmartFolderStore.d.ts +0 -2
  12. package/{lib → src/lib}/apps/browser/stores/upload.d.ts +24 -4
  13. package/src/lib/apps/browser/stores/upload.types.d.ts +34 -0
  14. package/{lib → src/lib}/apps/browser/types/actionKeys.d.ts +0 -2
  15. package/src/lib/apps/browser/util/sortOrder.d.ts +36 -0
  16. package/src/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +21 -0
  17. package/src/lib/apps/canvas-builder/components/ui/ContentList/contentList.helpers.d.ts +28 -0
  18. package/{lib → src/lib}/apps/canvas-builder/components/ui/DataCharts/types.d.ts +7 -1
  19. package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.d.ts +14 -4
  20. package/src/lib/apps/canvas-builder/composables/canvasUpdateStrategy.d.ts +17 -0
  21. package/src/lib/apps/canvas-builder/composables/lazySections.d.ts +53 -0
  22. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvas.d.ts +169 -64
  23. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasBlocks.d.ts +8 -4
  24. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasDnd.d.ts +1 -1
  25. package/{lib → src/lib}/apps/canvas-builder/composables/useCrmShape.d.ts +1 -0
  26. package/src/lib/apps/canvas-builder/composables/useHtmlUserPropertyFields.d.ts +4 -0
  27. package/{lib → src/lib}/apps/canvas-builder/composables/useScribbleChild.d.ts +4 -2
  28. package/{lib → src/lib}/apps/canvas-builder/types/canvas.d.ts +78 -9
  29. package/{lib → src/lib}/apps/canvas-selector/stores/app.d.ts +14 -0
  30. package/{lib → src/lib}/apps/collection-player/stores/app.store.d.ts +1 -0
  31. package/{lib → src/lib}/apps/content-selector/appTypes.d.ts +1 -3
  32. package/{lib → src/lib}/apps/content-selector/stores/api.d.ts +2 -11
  33. package/{lib → src/lib}/apps/content-selector/stores/app.d.ts +4 -17
  34. package/{lib → src/lib}/apps/content-selector/util/file.d.ts +2 -2
  35. package/{lib → src/lib}/apps/ppt-conversion-selector/stores/app.store.d.ts +1 -1
  36. package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +8 -1
  37. package/{lib → src/lib}/components/CRichTextEditor/extensions/contentLink.d.ts +3 -1
  38. package/src/lib/components/CSideBar/index.d.ts +6 -0
  39. package/src/lib/components/CSideBar/types.d.ts +25 -0
  40. package/src/lib/components/HomeCustomizeCog/index.d.ts +1 -0
  41. package/src/lib/components/HomeCustomizeEmptyState/index.d.ts +1 -0
  42. package/src/lib/components/HomeCustomizePanel/index.d.ts +1 -0
  43. package/src/lib/components/HomeCustomizeRow/index.d.ts +1 -0
  44. package/{lib → src/lib}/components/savedCanvases/CSavedCanvasesManagement.use.d.ts +2 -0
  45. package/{lib → src/lib}/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +8 -0
  46. package/{lib → src/lib}/composables/bulkActions.use.d.ts +0 -1
  47. package/{lib → src/lib}/composables/presentationHistory.use.d.ts +2 -6
  48. package/src/lib/composables/useCanvasRendererExcludedTags.d.ts +15 -0
  49. package/src/lib/composables/useHomeCustomization.d.ts +32 -0
  50. package/{lib → src/lib}/composables/useMetadataFilters.d.ts +1 -1
  51. package/{lib → src/lib}/composables/useMetadataTemplates.d.ts +1 -1
  52. package/{lib → src/lib}/composables/useThemeVars.d.ts +2 -0
  53. package/{lib → src/lib}/composables/useWindowEvents.d.ts +1 -1
  54. package/{lib → src/lib}/constants/cdp.const.d.ts +1 -0
  55. package/{lib → src/lib}/main.lib.d.ts +18 -3
  56. package/{lib → src/lib}/sdk/api/HighLevelApi.d.ts +19 -8
  57. package/src/lib/sdk/api/modules/ai.d.ts +52 -0
  58. package/{lib → src/lib}/sdk/api/modules/canvas.d.ts +43 -2
  59. package/{lib → src/lib}/sdk/api/modules/files.d.ts +1 -2
  60. package/{lib → src/lib}/sdk/api/modules/index.d.ts +1 -1
  61. package/{lib → src/lib}/sdk/interfaces.d.ts +31 -7
  62. package/{lib → src/lib}/sdk/main.d.ts +42 -21
  63. package/{lib → src/lib}/sdk/payload.types.d.ts +121 -9
  64. package/src/lib/sdk/utils/assert.spec.d.ts +1 -0
  65. package/src/lib/sdk/utils/eventEmitter.spec.d.ts +1 -0
  66. package/src/lib/sdk/utils/isodate.spec.d.ts +1 -0
  67. package/src/lib/sdk/utils/object.spec.d.ts +1 -0
  68. package/{lib → src/lib}/theme/light.d.ts +2 -0
  69. package/{lib → src/lib}/theme/theme.types.d.ts +1 -0
  70. package/src/lib/types/ai-tasks.const.d.ts +80 -0
  71. package/{lib → src/lib}/types/files.d.ts +16 -8
  72. package/{lib → src/lib}/types/instanceSettings.types.d.ts +4 -2
  73. package/src/lib/types/launchDarkly.types.d.ts +69 -0
  74. package/{lib → src/lib}/types/organizationSettings.types.d.ts +20 -0
  75. package/{lib → src/lib}/util/array.d.ts +1 -1
  76. package/src/lib/util/array.spec.d.ts +1 -0
  77. package/src/lib/util/casing.spec.d.ts +1 -0
  78. package/src/lib/util/date.spec.d.ts +1 -0
  79. package/src/lib/util/font.spec.d.ts +1 -0
  80. package/{lib → src/lib}/util/fullscreen.util.d.ts +12 -1
  81. package/{lib → src/lib}/util/handlebars.d.ts +19 -0
  82. package/src/lib/util/location.spec.d.ts +1 -0
  83. package/src/lib/util/message-event.spec.d.ts +1 -0
  84. package/src/lib/util/network.d.ts +42 -0
  85. package/src/lib/util/network.spec.d.ts +1 -0
  86. package/src/lib/util/network.test.d.ts +1 -0
  87. package/src/lib/util/number.spec.d.ts +1 -0
  88. package/src/lib/util/object.spec.d.ts +1 -0
  89. package/src/lib/util/reactive.spec.d.ts +1 -0
  90. package/src/lib/util/sfdc.util.spec.d.ts +1 -0
  91. package/src/lib/util/smart-store.util.spec.d.ts +1 -0
  92. package/src/lib/util/soql.util.d.ts +48 -0
  93. package/src/lib/util/soql.util.spec.d.ts +1 -0
  94. package/src/lib/util/string.d.ts +18 -0
  95. package/src/lib/util/timer.spec.d.ts +1 -0
  96. package/src/lib/util/translations.spec.d.ts +1 -0
  97. package/src/lib/util/tree-transformation.util.spec.d.ts +1 -0
  98. package/src/lib/util/user.d.ts +54 -0
  99. package/{lib → src/lib}/utils/defaultThumbnail.util.d.ts +1 -0
  100. package/{types → src/types}/openapi/index.d.ts +1 -0
  101. package/{types → src/types}/openapi/models/Canvas.d.ts +2 -2
  102. package/{types → src/types}/openapi/models/CanvasCreate.d.ts +2 -2
  103. package/{types → src/types}/openapi/models/CanvasRetrieve.d.ts +10 -2
  104. package/{types → src/types}/openapi/models/CanvasUpdate.d.ts +2 -2
  105. package/{types → src/types}/openapi/models/DeletedCanvas.d.ts +2 -2
  106. package/{types → src/types}/openapi/models/FolderFolder.d.ts +4 -0
  107. package/{types → src/types}/openapi/models/FolderRetrieve.d.ts +1 -0
  108. package/{types → src/types}/openapi/models/MetadataTemplateFieldTypeEnum.d.ts +3 -1
  109. package/src/types/openapi/models/MiniCanvasWithTags.d.ts +5 -0
  110. package/lib/apps/agenda-selector/App.vue.d.ts +0 -9
  111. package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +0 -7
  112. package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +0 -24
  113. package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +0 -2
  114. package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +0 -8
  115. package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +0 -6
  116. package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +0 -1151
  117. package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +0 -13
  118. package/lib/apps/assets-manager/App.vue.d.ts +0 -75
  119. package/lib/apps/assets-manager/AssetsTab.vue.d.ts +0 -22
  120. package/lib/apps/assets-manager/components/AssetGridItem.vue.d.ts +0 -16
  121. package/lib/apps/browser/App.vue.d.ts +0 -190
  122. package/lib/apps/browser/appTypes.d.ts +0 -26
  123. package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +0 -258
  124. package/lib/apps/browser/components/Content/ActionsToolbar/BulkShareboxWarningModal.vue.d.ts +0 -15
  125. package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +0 -2
  126. package/lib/apps/browser/components/Content/AllContent/AllContent.vue.d.ts +0 -2
  127. package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +0 -2
  128. package/lib/apps/browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts +0 -96
  129. package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +0 -38
  130. package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +0 -41
  131. package/lib/apps/browser/components/Content/Content.vue.d.ts +0 -18
  132. package/lib/apps/browser/components/Content/Favorites/FavoritesTable.vue.d.ts +0 -2
  133. package/lib/apps/browser/components/Content/Panel/DetailsDrawer/DetailsDrawer.vue.d.ts +0 -18
  134. package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +0 -2
  135. package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +0 -2
  136. package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +0 -17
  137. package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +0 -2
  138. package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +0 -2
  139. package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +0 -24
  140. package/lib/apps/browser/components/Content/Panel/QuickAccessPanel.vue.d.ts +0 -2
  141. package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +0 -10
  142. package/lib/apps/browser/components/Content/Recent/RecentTable.vue.d.ts +0 -2
  143. package/lib/apps/browser/components/ContextMenu/ContextMenu.vue.d.ts +0 -9
  144. package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +0 -14
  145. package/lib/apps/browser/components/ContextMenu/ConvertToSlidesButton.vue.d.ts +0 -6
  146. package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +0 -6
  147. package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +0 -6
  148. package/lib/apps/browser/components/FileSmartFolders.vue.d.ts +0 -209
  149. package/lib/apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts +0 -6
  150. package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +0 -6
  151. package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +0 -12
  152. package/lib/apps/browser/components/RepUploads.vue.d.ts +0 -206
  153. package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +0 -7
  154. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +0 -398
  155. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +0 -11
  156. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +0 -12
  157. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +0 -11
  158. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +0 -18
  159. package/lib/apps/browser/components/UploadFilesWidget/UploadFilesWidget.vue.d.ts +0 -14
  160. package/lib/apps/browser/stores/upload.types.d.ts +0 -16
  161. package/lib/apps/canvas-builder/App.vue.d.ts +0 -1101
  162. package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +0 -1151
  163. package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +0 -11
  164. package/lib/apps/canvas-builder/components/container/AnnotationMenu/AnnotationMenu.vue.d.ts +0 -60
  165. package/lib/apps/canvas-builder/components/container/BottomBar/BottomBar.vue.d.ts +0 -2
  166. package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +0 -16
  167. package/lib/apps/canvas-builder/components/container/CanvasContent/AnnotationContent.vue.d.ts +0 -8
  168. package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.paginated.vue.d.ts +0 -5
  169. package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.single.vue.d.ts +0 -2
  170. package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +0 -469
  171. package/lib/apps/canvas-builder/components/container/CanvasContent/page.paginated.vue.d.ts +0 -13
  172. package/lib/apps/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +0 -46
  173. package/lib/apps/canvas-builder/components/container/CanvasDrawerTheme/CanvasDrawerTheme.vue.d.ts +0 -9
  174. package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +0 -29
  175. package/lib/apps/canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts +0 -2
  176. package/lib/apps/canvas-builder/components/container/ComponentDrawerSettings/ComponentDrawerSettings.vue.d.ts +0 -5
  177. package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +0 -7
  178. package/lib/apps/canvas-builder/components/container/ControlBar/AppGrid.vue.d.ts +0 -11
  179. package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +0 -5
  180. package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +0 -7
  181. package/lib/apps/canvas-builder/components/container/ControlBar/InstalledEmbeddableShortcuts.vue.d.ts +0 -2
  182. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +0 -5
  183. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderContent.vue.d.ts +0 -2
  184. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +0 -2
  185. package/lib/apps/canvas-builder/components/container/DownloadButton/DownloadButton.vue.d.ts +0 -6
  186. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +0 -111
  187. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +0 -112
  188. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentContent.vue.d.ts +0 -124
  189. package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +0 -24
  190. package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +0 -35
  191. package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +0 -2
  192. package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +0 -24
  193. package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -1355
  194. package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +0 -15
  195. package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +0 -5
  196. package/lib/apps/canvas-builder/components/container/PopupApps/AdaptivePopupAppsButtons.vue.d.ts +0 -17
  197. package/lib/apps/canvas-builder/components/container/PopupApps/PopupAppsButtons.vue.d.ts +0 -18
  198. package/lib/apps/canvas-builder/components/container/Search/Search.vue.d.ts +0 -11
  199. package/lib/apps/canvas-builder/components/container/SectionInfoProvider/SectionInfoProvider.vue.d.ts +0 -23
  200. package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +0 -8
  201. package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +0 -11
  202. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +0 -2
  203. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +0 -8
  204. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +0 -304
  205. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +0 -29
  206. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +0 -84
  207. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +0 -10
  208. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +0 -2
  209. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +0 -12
  210. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +0 -29
  211. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +0 -326
  212. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +0 -6
  213. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +0 -11
  214. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +0 -15
  215. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridList.vue.d.ts +0 -12
  216. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridListItem.vue.d.ts +0 -13
  217. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +0 -14
  218. package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.raw.vue.d.ts +0 -30
  219. package/lib/apps/canvas-builder/components/ui/ContentList/ContentList.vue.d.ts +0 -77
  220. package/lib/apps/canvas-builder/components/ui/ContentList/ContentListItems.vue.d.ts +0 -21
  221. package/lib/apps/canvas-builder/components/ui/ContentList/content.store.d.ts +0 -11
  222. package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.edit.vue.d.ts +0 -2
  223. package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.header.vue.d.ts +0 -19
  224. package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.raw.vue.d.ts +0 -13
  225. package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.settings.vue.d.ts +0 -10
  226. package/lib/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.vue.d.ts +0 -32
  227. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +0 -5
  228. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +0 -20
  229. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +0 -7
  230. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +0 -31
  231. package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.edit.vue.d.ts +0 -2
  232. package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.raw.vue.d.ts +0 -8
  233. package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.settings.vue.d.ts +0 -7
  234. package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContent.vue.d.ts +0 -31
  235. package/lib/apps/canvas-builder/components/ui/DynamicContent/DynamicContentList.vue.d.ts +0 -12
  236. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts +0 -2
  237. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +0 -22
  238. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +0 -27
  239. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +0 -31
  240. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +0 -22
  241. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +0 -8
  242. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +0 -32
  243. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +0 -6
  244. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +0 -23
  245. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +0 -650
  246. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +0 -28
  247. package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +0 -34
  248. package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +0 -6
  249. package/lib/apps/canvas-builder/components/ui/Html/CAiHtmlActions.vue.d.ts +0 -23
  250. package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +0 -26
  251. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +0 -6
  252. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +0 -22
  253. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +0 -299
  254. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +0 -29
  255. package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +0 -2
  256. package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +0 -8
  257. package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +0 -297
  258. package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +0 -24
  259. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +0 -7
  260. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +0 -20
  261. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +0 -301
  262. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +0 -29
  263. package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +0 -297
  264. package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +0 -40
  265. package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +0 -23
  266. package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +0 -358
  267. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.original.vue.d.ts +0 -37
  268. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.responsive.vue.d.ts +0 -37
  269. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +0 -27
  270. package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +0 -10
  271. package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +0 -12
  272. package/lib/apps/canvas-builder/components/ui/SectionList/SectionItemModal.vue.d.ts +0 -41
  273. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +0 -30
  274. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +0 -72
  275. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +0 -25
  276. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCompact.vue.d.ts +0 -18
  277. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListItem.vue.d.ts +0 -27
  278. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +0 -21
  279. package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +0 -11
  280. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +0 -19
  281. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +0 -34
  282. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +0 -16
  283. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +0 -39
  284. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +0 -202
  285. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +0 -6
  286. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +0 -28
  287. package/lib/apps/canvas-selector/App.vue.d.ts +0 -12
  288. package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +0 -19
  289. package/lib/apps/canvas-selector/components/CanvasSelectionArea.vue.d.ts +0 -172
  290. package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +0 -4
  291. package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +0 -2
  292. package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +0 -4
  293. package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +0 -4
  294. package/lib/apps/canvas-selector/components/Sections.vue.d.ts +0 -163
  295. package/lib/apps/collection-player/App.vue.d.ts +0 -29
  296. package/lib/apps/collection-player/components/AppFooter.vue.d.ts +0 -57
  297. package/lib/apps/collection-player/components/AppHeader.vue.d.ts +0 -2
  298. package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +0 -18
  299. package/lib/apps/collection-player/components/ImageWithAnnotations.vue.d.ts +0 -19
  300. package/lib/apps/collection-player/components/MainContent.vue.d.ts +0 -5
  301. package/lib/apps/collection-player/components/MainImage.vue.d.ts +0 -11
  302. package/lib/apps/collection-player/components/SlideContent.vue.d.ts +0 -8
  303. package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +0 -2
  304. package/lib/apps/collection-selector/App.vue.d.ts +0 -33
  305. package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +0 -8
  306. package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +0 -9
  307. package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +0 -7
  308. package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +0 -17
  309. package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +0 -5
  310. package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +0 -13
  311. package/lib/apps/content-selector/App.vue.d.ts +0 -20
  312. package/lib/apps/content-selector/components/AiImages.vue.d.ts +0 -12
  313. package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +0 -8
  314. package/lib/apps/content-selector/components/Assets.vue.d.ts +0 -76
  315. package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +0 -2
  316. package/lib/apps/content-selector/components/Content/AllContent/AllContent.vue.d.ts +0 -2
  317. package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +0 -2
  318. package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +0 -260
  319. package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +0 -43
  320. package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +0 -2
  321. package/lib/apps/content-selector/components/Content.vue.d.ts +0 -75
  322. package/lib/apps/content-selector/components/ExternalLinks.vue.d.ts +0 -12
  323. package/lib/apps/content-selector/components/MultimediaSelectorApp.vue.d.ts +0 -12
  324. package/lib/apps/content-selector/components/Navbar.vue.d.ts +0 -2
  325. package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +0 -12
  326. package/lib/apps/content-selector/components/ThemeImages.vue.d.ts +0 -2
  327. package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +0 -68
  328. package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +0 -11
  329. package/lib/apps/notes/NotesApp.vue.d.ts +0 -26
  330. package/lib/apps/notes/components/CustomerReaction.vue.d.ts +0 -2
  331. package/lib/apps/ppt-conversion-selector/App.vue.d.ts +0 -25
  332. package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +0 -11
  333. package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +0 -8
  334. package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +0 -6
  335. package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +0 -17
  336. package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +0 -2
  337. package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +0 -14
  338. package/lib/canvas-comments/components/CommentButton.vue.d.ts +0 -6
  339. package/lib/canvas-comments/components/CommentableComponent.vue.d.ts +0 -25
  340. package/lib/canvas-comments/components/SimpleComments.vue.d.ts +0 -14
  341. package/lib/components/CAlgoliaSearch/CAlgoliaSearch.vue.d.ts +0 -18
  342. package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +0 -13
  343. package/lib/components/CApexChart/CApexChartLine.vue.d.ts +0 -12
  344. package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +0 -17
  345. package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +0 -15
  346. package/lib/components/CAvatar/CAvatar.vue.d.ts +0 -15
  347. package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +0 -32
  348. package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +0 -31
  349. package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +0 -19
  350. package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +0 -13
  351. package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +0 -71
  352. package/lib/components/CButton/CButton.vue.d.ts +0 -23
  353. package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +0 -29
  354. package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +0 -24
  355. package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +0 -11
  356. package/lib/components/CCard/CCard.vue.d.ts +0 -15
  357. package/lib/components/CCarousel/CCarousel.vue.d.ts +0 -434
  358. package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcher.vue.d.ts +0 -5
  359. package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +0 -7
  360. package/lib/components/CCheckbox/CCheckbox.vue.d.ts +0 -15
  361. package/lib/components/CChip/CChip.vue.d.ts +0 -30
  362. package/lib/components/CCollapse/CCollapse.vue.d.ts +0 -26
  363. package/lib/components/CCollapse/CCollapseItem.vue.d.ts +0 -15
  364. package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +0 -17
  365. package/lib/components/CColorPicker/CColorPicker.vue.d.ts +0 -15
  366. package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +0 -45
  367. package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +0 -54
  368. package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +0 -322
  369. package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +0 -24
  370. package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +0 -17
  371. package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +0 -17
  372. package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +0 -40
  373. package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +0 -32
  374. package/lib/components/CContactSelector/CContactSelector.vue.d.ts +0 -56
  375. package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +0 -847
  376. package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +0 -21
  377. package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +0 -50
  378. package/lib/components/CContentError/CContentError.vue.d.ts +0 -11
  379. package/lib/components/CCreateCanvasModal/CCreateCanvasModal.vue.d.ts +0 -2
  380. package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +0 -23
  381. package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +0 -307
  382. package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +0 -19
  383. package/lib/components/CCreateThemeModal/steps/CThemeAssetsStep.vue.d.ts +0 -19
  384. package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +0 -10
  385. package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +0 -2579
  386. package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +0 -13
  387. package/lib/components/CDataTable/CDataTable.vue.d.ts +0 -8637
  388. package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +0 -19
  389. package/lib/components/CDivider/CDivider.vue.d.ts +0 -18
  390. package/lib/components/CDrawer/CDrawer.vue.d.ts +0 -15
  391. package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +0 -15
  392. package/lib/components/CDropdown/CDropdown.vue.d.ts +0 -15
  393. package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +0 -10
  394. package/lib/components/CEmpty/CEmpty.vue.d.ts +0 -15
  395. package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +0 -153
  396. package/lib/components/CError/CErrorFullScreen.vue.d.ts +0 -38
  397. package/lib/components/CFeedback/CFeedback.vue.d.ts +0 -30
  398. package/lib/components/CFileAccessManagement/CFileAccessManagement.vue.d.ts +0 -6
  399. package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +0 -46
  400. package/lib/components/CFilePanel/BasicInfo.vue.d.ts +0 -2
  401. package/lib/components/CFilePanel/CFilePanel.vue.d.ts +0 -11
  402. package/lib/components/CFilePanel/Details.vue.d.ts +0 -2
  403. package/lib/components/CFilePanel/Metadata.vue.d.ts +0 -2
  404. package/lib/components/CFilePanel/Tags.vue.d.ts +0 -9
  405. package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +0 -15
  406. package/lib/components/CFileViewer/CFileViewer.vue.d.ts +0 -431
  407. package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +0 -9
  408. package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +0 -53
  409. package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +0 -63
  410. package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -69
  411. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +0 -379
  412. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +0 -10
  413. package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +0 -6
  414. package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +0 -23
  415. package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +0 -25
  416. package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +0 -35
  417. package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +0 -25
  418. package/lib/components/CFontSelect/CFontSelect.vue.d.ts +0 -12
  419. package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +0 -11
  420. package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +0 -5
  421. package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +0 -72
  422. package/lib/components/CGlobalSearch/CGlobalSearchResults.vue.d.ts +0 -20
  423. package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +0 -2
  424. package/lib/components/CGlobalSearch/CResult.vue.d.ts +0 -15
  425. package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +0 -23
  426. package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +0 -33
  427. package/lib/components/CHeightInput/CHeightInput.vue.d.ts +0 -10
  428. package/lib/components/CHelpText/CHelpText.vue.d.ts +0 -17
  429. package/lib/components/CIcon/CIcon.vue.d.ts +0 -13
  430. package/lib/components/CImage/CImage.vue.d.ts +0 -395
  431. package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +0 -23
  432. package/lib/components/CInput/CInput.vue.d.ts +0 -1157
  433. package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +0 -24
  434. package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +0 -14
  435. package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +0 -12
  436. package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +0 -20
  437. package/lib/components/CList/CList.vue.d.ts +0 -56
  438. package/lib/components/CList/CListItem.vue.d.ts +0 -79
  439. package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +0 -9
  440. package/lib/components/CModal/CModal.vue.d.ts +0 -15
  441. package/lib/components/CMonacoEditor/CMonacoEditor.vue.d.ts +0 -29
  442. package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +0 -28
  443. package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +0 -17
  444. package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +0 -22
  445. package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +0 -14
  446. package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +0 -19
  447. package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +0 -73
  448. package/lib/components/CPdfDimensionsSelector/CPdfDimensionsSelector.vue.d.ts +0 -27
  449. package/lib/components/CPillSelect/CPillSelect.vue.d.ts +0 -14
  450. package/lib/components/CPopover/CPopover.vue.d.ts +0 -15
  451. package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +0 -14
  452. package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +0 -10
  453. package/lib/components/CProcessingOverlay/CProcessingOverlay.vue.d.ts +0 -19
  454. package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +0 -18
  455. package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +0 -19
  456. package/lib/components/CRate/CRate.vue.d.ts +0 -15
  457. package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +0 -25
  458. package/lib/components/CRenameModal/CRenameModal.vue.d.ts +0 -28
  459. package/lib/components/CRichTextEditor/components/CAiRichTextActions.vue.d.ts +0 -17
  460. package/lib/components/CRichTextEditor/components/CAlignmentSelect.vue.d.ts +0 -9
  461. package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +0 -18
  462. package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +0 -2671
  463. package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +0 -33
  464. package/lib/components/CRichTextEditor/components/CFontDropdown.vue.d.ts +0 -11
  465. package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +0 -52
  466. package/lib/components/CRichTextEditor/components/CFormatterWithFieldSelect.vue.d.ts +0 -4870
  467. package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +0 -2661
  468. package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +0 -1155
  469. package/lib/components/CRichTextEditor/components/CInsertDropdown.vue.d.ts +0 -19
  470. package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +0 -9
  471. package/lib/components/CRichTextEditor/components/CListSelect.vue.d.ts +0 -9
  472. package/lib/components/CRichTextEditor/components/CSuggestionList.vue.d.ts +0 -9
  473. package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +0 -11
  474. package/lib/components/CRichTextEditor/components/CTextTypeSelect.vue.d.ts +0 -6
  475. package/lib/components/CSearch/CSearch.vue.d.ts +0 -25
  476. package/lib/components/CSearch/CSearchOnClick.vue.d.ts +0 -32
  477. package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +0 -23
  478. package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +0 -224
  479. package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +0 -39
  480. package/lib/components/CSectionSelectionActions/CSectionSelectionActions.vue.d.ts +0 -19
  481. package/lib/components/CSectionSmartFolders/CSectionSmartFolders.vue.d.ts +0 -135
  482. package/lib/components/CSectionSmartFolders/CSectionSmartFoldersToolbar.vue.d.ts +0 -44
  483. package/lib/components/CSelect/CSelect.vue.d.ts +0 -20
  484. package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +0 -10
  485. package/lib/components/CShortcut/CShortcut.vue.d.ts +0 -17
  486. package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +0 -6
  487. package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +0 -26
  488. package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +0 -15
  489. package/lib/components/CSlideViewer/CSlideViewer.pdfjs.vue.d.ts +0 -18
  490. package/lib/components/CSlideViewer/CSlideViewer.pspdfkit.vue.d.ts +0 -14
  491. package/lib/components/CSlideViewer/CSlideViewer.vue.d.ts +0 -12
  492. package/lib/components/CSlider/CSlider.vue.d.ts +0 -42
  493. package/lib/components/CSpin/CSpin.vue.d.ts +0 -15
  494. package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +0 -14
  495. package/lib/components/CSwitch/CSwitch.vue.d.ts +0 -29
  496. package/lib/components/CTable/CTable.vue.d.ts +0 -61
  497. package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +0 -35
  498. package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +0 -8
  499. package/lib/components/CTableInput/CTableInput.vue.d.ts +0 -2337
  500. package/lib/components/CTableMore/CTableMore.vue.d.ts +0 -24
  501. package/lib/components/CTableSelect/CTableSelect.vue.d.ts +0 -21
  502. package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -4940
  503. package/lib/components/CTag/CTag.vue.d.ts +0 -15
  504. package/lib/components/CTags/CTags.vue.d.ts +0 -4910
  505. package/lib/components/CTagsPlaceholder/CTagsPlaceholder.vue.d.ts +0 -6
  506. package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +0 -25
  507. package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +0 -26
  508. package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +0 -4
  509. package/lib/components/CThemePreview/CThemePreview.vue.d.ts +0 -20
  510. package/lib/components/CThumbnail/CThumbnail.vue.d.ts +0 -44
  511. package/lib/components/CTimeline/CTimeline.vue.d.ts +0 -15
  512. package/lib/components/CTimeline/CTimelineControl.vue.d.ts +0 -2
  513. package/lib/components/CTimeline/CTimelineModal.vue.d.ts +0 -12
  514. package/lib/components/CToastProvider/CToastProvider.vue.d.ts +0 -2
  515. package/lib/components/CToolbar/CToolbar.vue.d.ts +0 -18
  516. package/lib/components/CTooltip/CTooltip.vue.d.ts +0 -18
  517. package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +0 -22
  518. package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +0 -13
  519. package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +0 -13
  520. package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +0 -303
  521. package/lib/components/CUserAvatar/CUserAvatar.vue.d.ts +0 -13
  522. package/lib/components/CUserMenu/CUserMenu.vue.d.ts +0 -472
  523. package/lib/components/CUsersAccessInfo/CUsersAccessInfo.vue.d.ts +0 -13
  524. package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +0 -35
  525. package/lib/components/CVideo/CVideo.vue.d.ts +0 -48
  526. package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +0 -49
  527. package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +0 -40
  528. package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +0 -11
  529. package/lib/components/assignedCanvases/CAssignedCanvasesManagement.vue.d.ts +0 -456
  530. package/lib/components/assignedCanvases/CAssignedCanvasesManagementToolbar.vue.d.ts +0 -44
  531. package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +0 -463
  532. package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +0 -25
  533. package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +0 -47
  534. package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +0 -1352
  535. package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +0 -51
  536. package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +0 -10
  537. package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +0 -54
  538. package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +0 -348
  539. package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +0 -6
  540. package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +0 -20
  541. package/lib/components/filters/CCheckboxFilter.vue.d.ts +0 -11
  542. package/lib/components/filters/CDateRangeFilter.vue.d.ts +0 -26
  543. package/lib/components/filters/CSearchFilter.vue.d.ts +0 -1264
  544. package/lib/components/filters/CSelectFilter.vue.d.ts +0 -27
  545. package/lib/components/savedCanvases/CCanvasAccountModal.vue.d.ts +0 -23
  546. package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +0 -805
  547. package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +0 -67
  548. package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +0 -6
  549. package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +0 -1879
  550. package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +0 -50
  551. package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +0 -16
  552. package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +0 -9
  553. package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +0 -140
  554. package/lib/components/savedCanvases/smartFolders/SmartFoldersConfigurationModal.vue.d.ts +0 -6
  555. package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +0 -11
  556. package/lib/components/sections/CSectionManagement.vue.d.ts +0 -468
  557. package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +0 -30
  558. package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +0 -48
  559. package/lib/components/themes/CThemeManagement.vue.d.ts +0 -460
  560. package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +0 -27
  561. package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +0 -10
  562. package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +0 -47
  563. package/lib/composables/recentFiles.use.d.ts +0 -12
  564. package/lib/constants/recentFiles.const.d.ts +0 -4
  565. package/lib/sdk/api/modules/favorites.d.ts +0 -16
  566. package/lib/types/favorites.d.ts +0 -5
  567. package/lib/types/launchDarkly.types.d.ts +0 -53
  568. package/lib/types/recentFiles.types.d.ts +0 -8
  569. package/lib/util/network.d.ts +0 -21
  570. package/lib/util/soql.util.d.ts +0 -2
  571. package/lib/util/string.d.ts +0 -5
  572. package/lib/util/user.d.ts +0 -4
  573. package/{lib → src/lib}/api/apps/apps.queries.d.ts +0 -0
  574. package/{lib → src/lib}/api/canvases/canvases.queries.d.ts +0 -0
  575. package/{lib → src/lib}/api/events/events.helpers.d.ts +0 -0
  576. package/{lib → src/lib}/api/users/users.queries.d.ts +0 -0
  577. package/{lib → src/lib}/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +0 -0
  578. package/{lib → src/lib}/apps/agenda-selector/composables/content-warning.use.d.ts +0 -0
  579. package/{lib → src/lib}/apps/agenda-selector/composables/move-item-modal.use.d.ts +0 -0
  580. package/{lib → src/lib}/apps/agenda-selector/composables/table-input.use.d.ts +0 -0
  581. package/{lib → src/lib}/apps/agenda-selector/constants.d.ts +0 -0
  582. package/{lib → src/lib}/apps/agenda-selector/export.d.ts +0 -0
  583. package/{lib → src/lib}/apps/agenda-selector/stores/app.store.d.ts +0 -0
  584. package/{lib → src/lib}/apps/agenda-selector/types/agenda.type.d.ts +0 -0
  585. package/{lib → src/lib}/apps/agenda-selector/types/common.type.d.ts +0 -0
  586. package/{lib → src/lib}/apps/agenda-selector/types/move-item-modal.type.d.ts +0 -0
  587. package/{lib → src/lib}/apps/agenda-selector/utils/data.util.d.ts +0 -0
  588. package/{lib → src/lib}/apps/agenda-selector/utils/theme-overrides.util.d.ts +0 -0
  589. package/{lib/apps/browser/stores/api.test.d.ts → src/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.test.d.ts} +0 -0
  590. package/{lib → src/lib}/apps/browser/composables/useAppEmit.d.ts +0 -0
  591. package/{lib/apps/browser/stores/app.test.d.ts → src/lib/apps/browser/stores/api.test.d.ts} +0 -0
  592. package/{lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.test.d.ts → src/lib/apps/browser/stores/app.test.d.ts} +0 -0
  593. package/{lib → src/lib}/apps/browser/stores/repUploadsStore.d.ts +0 -0
  594. package/{lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts → src/lib/apps/browser/stores/upload.test.d.ts} +0 -0
  595. package/{lib → src/lib}/apps/browser/util/file.d.ts +0 -0
  596. package/{lib/apps/canvas-builder/util/canvas.util.test.d.ts → src/lib/apps/browser/util/sortOrder.test.d.ts} +0 -0
  597. package/{lib → src/lib}/apps/canvas-builder/App.helpers.d.ts +0 -0
  598. package/{lib → src/lib}/apps/canvas-builder/components/container/CanvasContent/canvas-component-map.const.d.ts +0 -0
  599. package/{lib → src/lib}/apps/canvas-builder/components/ui/Block/Block.helpers.d.ts +0 -0
  600. package/{lib → src/lib}/apps/canvas-builder/components/ui/Block/Block.types.d.ts +0 -0
  601. package/{lib → src/lib}/apps/canvas-builder/components/ui/CustomDataTable/CustomDataTable.utils.d.ts +0 -0
  602. package/{lib/apps/canvas-builder/util/tree.test.d.ts → src/lib/apps/canvas-builder/components/ui/DataCharts/types.spec.d.ts} +0 -0
  603. package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/dynamicContent.const.d.ts +0 -0
  604. package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicContent/section-component-map.const.d.ts +0 -0
  605. package/{lib/apps/canvas-builder/util/url.test.d.ts → src/lib/apps/canvas-builder/components/ui/DynamicContent/useDynamicContent.spec.d.ts} +0 -0
  606. package/{lib → src/lib}/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.utils.d.ts +0 -0
  607. package/{lib → src/lib}/apps/canvas-builder/components/ui/Link/Link.util.d.ts +0 -0
  608. package/{lib → src/lib}/apps/canvas-builder/components/ui/Scribble/scribble.helpers.d.ts +0 -0
  609. package/{lib → src/lib}/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -0
  610. 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
  611. package/{lib/components/CMultiSelect/CMultiSelect.test.d.ts → src/lib/apps/canvas-builder/composables/canvasUpdateStrategy.spec.d.ts} +0 -0
  612. package/{lib/components/CSingleSelect/CSingleSelect.test.d.ts → src/lib/apps/canvas-builder/composables/lazySections.spec.d.ts} +0 -0
  613. package/{lib → src/lib}/apps/canvas-builder/composables/useAiPrompt.d.ts +0 -0
  614. package/{lib → src/lib}/apps/canvas-builder/composables/useAnnotation.d.ts +0 -0
  615. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasCompletionWizard.d.ts +0 -0
  616. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasExit.d.ts +0 -0
  617. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasHistory.d.ts +4 -4
  618. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasHooks.d.ts +0 -0
  619. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasNodes.d.ts +0 -0
  620. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasPages.d.ts +0 -0
  621. package/{lib/components/CVirtualTable/CVirtualTable.test.d.ts → src/lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts} +0 -0
  622. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +0 -0
  623. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasTheme.d.ts +0 -0
  624. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasThemeAssets.d.ts +0 -0
  625. package/{lib → src/lib}/apps/canvas-builder/composables/useCanvasVisibility.d.ts +0 -0
  626. package/{lib → src/lib}/apps/canvas-builder/composables/useCollapsibles.d.ts +0 -0
  627. package/{lib → src/lib}/apps/canvas-builder/composables/useCollectionSelector.d.ts +0 -0
  628. package/{lib → src/lib}/apps/canvas-builder/composables/useComponentPermissions.d.ts +0 -0
  629. package/{lib → src/lib}/apps/canvas-builder/composables/useComponentStyle.d.ts +0 -0
  630. package/{lib → src/lib}/apps/canvas-builder/composables/useContentSelector.d.ts +0 -0
  631. package/{lib → src/lib}/apps/canvas-builder/composables/useControlBarCollapse.d.ts +0 -0
  632. package/{lib → src/lib}/apps/canvas-builder/composables/useCrmShapeWithSectionContext.d.ts +0 -0
  633. package/{lib/components/CVirtualTable/CVirtualTableRow.test.d.ts → src/lib/apps/canvas-builder/composables/useCrmShapeWithSectionContext.spec.d.ts} +0 -0
  634. package/{lib → src/lib}/apps/canvas-builder/composables/useDataTablePrint.d.ts +0 -0
  635. package/{lib → src/lib}/apps/canvas-builder/composables/useEmbeddable.d.ts +0 -0
  636. package/{lib → src/lib}/apps/canvas-builder/composables/useFetchMostPopularFiles.d.ts +0 -0
  637. package/{lib → src/lib}/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +0 -0
  638. package/{lib → src/lib}/apps/canvas-builder/composables/useNavigatorDrawer.d.ts +0 -0
  639. package/{lib → src/lib}/apps/canvas-builder/composables/usePitcherEvents.d.ts +0 -0
  640. package/{lib → src/lib}/apps/canvas-builder/composables/usePopularity.d.ts +0 -0
  641. package/{lib → src/lib}/apps/canvas-builder/composables/usePopupApps.d.ts +4 -4
  642. /package/{lib → src/lib}/apps/canvas-builder/composables/usePrintMode.d.ts +0 -0
  643. /package/{lib → src/lib}/apps/canvas-builder/composables/useRecommendations.d.ts +0 -0
  644. /package/{lib → src/lib}/apps/canvas-builder/composables/useReorderComponent.d.ts +0 -0
  645. /package/{lib → src/lib}/apps/canvas-builder/composables/useScribbleToolbar.d.ts +0 -0
  646. /package/{lib → src/lib}/apps/canvas-builder/composables/useSectionNavigation.d.ts +0 -0
  647. /package/{lib → src/lib}/apps/canvas-builder/composables/useSectionPopularity.d.ts +0 -0
  648. /package/{lib → src/lib}/apps/canvas-builder/composables/useTemporaryContext.d.ts +0 -0
  649. /package/{lib → src/lib}/apps/canvas-builder/constants/canvas.const.d.ts +0 -0
  650. /package/{lib → src/lib}/apps/canvas-builder/constants/defaults.const.d.ts +0 -0
  651. /package/{lib → src/lib}/apps/canvas-builder/constants/index.d.ts +0 -0
  652. /package/{lib → src/lib}/apps/canvas-builder/constants/sizes.d.ts +0 -0
  653. /package/{lib → src/lib}/apps/canvas-builder/constants/theme.const.d.ts +0 -0
  654. /package/{lib/components/filters/CDateRangeFilter.test.d.ts → src/lib/apps/canvas-builder/courseMode.spec.d.ts} +0 -0
  655. /package/{lib → src/lib}/apps/canvas-builder/types/font-awesome.types.d.ts +0 -0
  656. /package/{lib → src/lib}/apps/canvas-builder/types/recommendations.types.d.ts +0 -0
  657. /package/{lib → src/lib}/apps/canvas-builder/util/canvas.util.d.ts +0 -0
  658. /package/{lib/components/filters/CSelectFilter.test.d.ts → src/lib/apps/canvas-builder/util/canvas.util.test.d.ts} +0 -0
  659. /package/{lib → src/lib}/apps/canvas-builder/util/clone.d.ts +0 -0
  660. /package/{lib → src/lib}/apps/canvas-builder/util/fetchAnalyticsPopularity.d.ts +0 -0
  661. /package/{lib → src/lib}/apps/canvas-builder/util/file.util.d.ts +0 -0
  662. /package/{lib → src/lib}/apps/canvas-builder/util/iframe.util.d.ts +0 -0
  663. /package/{lib → src/lib}/apps/canvas-builder/util/print.util.d.ts +0 -0
  664. /package/{lib → src/lib}/apps/canvas-builder/util/tiptap-table.util.d.ts +0 -0
  665. /package/{lib → src/lib}/apps/canvas-builder/util/tree.d.ts +0 -0
  666. /package/{lib/components/filters/filter.util.spec.d.ts → src/lib/apps/canvas-builder/util/tree.test.d.ts} +0 -0
  667. /package/{lib → src/lib}/apps/canvas-builder/util/url.d.ts +0 -0
  668. /package/{lib/components/savedCanvases/CSavedCanvasesManagement.use.spec.d.ts → src/lib/apps/canvas-builder/util/url.test.d.ts} +0 -0
  669. /package/{lib → src/lib}/apps/canvas-selector/appTypes.d.ts +0 -0
  670. /package/{lib → src/lib}/apps/canvas-selector/constants/index.d.ts +0 -0
  671. /package/{lib → src/lib}/apps/collection-player/composables/annotation-layer.use.d.ts +0 -0
  672. /package/{lib → src/lib}/apps/collection-player/composables/focus-trap.use.d.ts +0 -0
  673. /package/{lib → src/lib}/apps/collection-player/composables/fullscreen.use.d.ts +0 -0
  674. /package/{lib → src/lib}/apps/collection-player/composables/image-cache.use.d.ts +0 -0
  675. /package/{lib → src/lib}/apps/collection-player/composables/keyboard-bindings.use.d.ts +0 -0
  676. /package/{lib → src/lib}/apps/collection-player/composables/laser-pointer-marker.use.d.ts +0 -0
  677. /package/{lib → src/lib}/apps/collection-player/composables/markerjs.use.d.ts +0 -0
  678. /package/{lib → src/lib}/apps/collection-player/composables/moving-group-gestures.use.d.ts +0 -0
  679. /package/{lib → src/lib}/apps/collection-player/composables/navigation-cache.use.d.ts +0 -0
  680. /package/{lib → src/lib}/apps/collection-player/composables/new-zoom.use.d.ts +0 -0
  681. /package/{lib → src/lib}/apps/collection-player/composables/slide-direction.use.d.ts +0 -0
  682. /package/{lib → src/lib}/apps/collection-player/composables/tracking.use.d.ts +0 -0
  683. /package/{lib → src/lib}/apps/collection-player/composables/zoom.use.d.ts +0 -0
  684. /package/{lib → src/lib}/apps/collection-player/export.d.ts +0 -0
  685. /package/{lib → src/lib}/apps/collection-player/types/collection-player.type.d.ts +0 -0
  686. /package/{lib → src/lib}/apps/collection-player/utils/node.util.d.ts +0 -0
  687. /package/{lib → src/lib}/apps/collection-player/utils/slide-type.util.d.ts +0 -0
  688. /package/{lib → src/lib}/apps/collection-selector/composables/content-warning.use.d.ts +0 -0
  689. /package/{lib → src/lib}/apps/collection-selector/composables/move-slide-modal.use.d.ts +0 -0
  690. /package/{lib → src/lib}/apps/collection-selector/composables/table-input.use.d.ts +0 -0
  691. /package/{lib → src/lib}/apps/collection-selector/constants.d.ts +0 -0
  692. /package/{lib → src/lib}/apps/collection-selector/export.d.ts +0 -0
  693. /package/{lib → src/lib}/apps/collection-selector/stores/app.store.d.ts +0 -0
  694. /package/{lib → src/lib}/apps/collection-selector/types/collection-selector.type.d.ts +0 -0
  695. /package/{lib → src/lib}/apps/collection-selector/types/common.type.d.ts +0 -0
  696. /package/{lib → src/lib}/apps/collection-selector/types/move-slide-modal.type.d.ts +0 -0
  697. /package/{lib → src/lib}/apps/collection-selector/utils/content-selector-adapter.util.d.ts +0 -0
  698. /package/{lib → src/lib}/apps/collection-selector/utils/data.util.d.ts +0 -0
  699. /package/{lib → src/lib}/apps/collection-selector/utils/theme-overrides.util.d.ts +0 -0
  700. /package/{lib → src/lib}/apps/content-selector/composables/useMultimediaSelectorApps.d.ts +0 -0
  701. /package/{lib → src/lib}/apps/content-selector/composables/useStore.d.ts +0 -0
  702. /package/{lib → src/lib}/apps/content-selector/util/media-type.util.d.ts +0 -0
  703. /package/{lib → src/lib}/apps/notes/composables/useFullscreenNotesHeartbeat.d.ts +0 -0
  704. /package/{lib → src/lib}/apps/notes/composables/useNotesApp.d.ts +0 -0
  705. /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/canvas.use.d.ts +0 -0
  706. /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +0 -0
  707. /package/{lib → src/lib}/apps/ppt-conversion-selector/composables/table-input.use.d.ts +0 -0
  708. /package/{lib → src/lib}/apps/ppt-conversion-selector/constants.d.ts +0 -0
  709. /package/{lib → src/lib}/apps/ppt-conversion-selector/export.d.ts +0 -0
  710. /package/{lib → src/lib}/apps/ppt-conversion-selector/types/model.type.d.ts +0 -0
  711. /package/{lib → src/lib}/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +0 -0
  712. /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +0 -0
  713. /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/data.util.d.ts +0 -0
  714. /package/{lib/sdk/api/HighLevelApi.spec.d.ts → src/lib/apps/ppt-conversion-selector/utils/data.util.test.d.ts} +0 -0
  715. /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +0 -0
  716. /package/{lib → src/lib}/apps/ppt-conversion-selector/utils/thumbnail.util.d.ts +0 -0
  717. /package/{lib/sdk/api/LowLevelApi.spec.d.ts → src/lib/components/CBatchMoveItemsModal/__tests__/copy-mode.test.d.ts} +0 -0
  718. /package/{lib → src/lib}/components/CCatalogIqSwitcher/CCatalogIqSwitcher.types.d.ts +0 -0
  719. /package/{lib → src/lib}/components/CConfigEditor/CConfigEditor.types.d.ts +0 -0
  720. /package/{lib → src/lib}/components/CConfigEditor/CConfigEditor.validators.d.ts +0 -0
  721. /package/{lib → src/lib}/components/CContactSelector/CContactSelector.types.d.ts +0 -0
  722. /package/{lib → src/lib}/components/CDataTable/CDataTableEdit.use.d.ts +0 -0
  723. /package/{lib → src/lib}/components/CFilePanel/CFilePanel.use.d.ts +0 -0
  724. /package/{lib → src/lib}/components/CFileViewer/CFileViewer.types.d.ts +0 -0
  725. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.events.pdf.use.d.ts +0 -0
  726. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pageThumbMetadata.pdf.use.d.ts +0 -0
  727. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.annotations.use.d.ts +0 -0
  728. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.link.types.d.ts +0 -0
  729. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.link.use.d.ts +0 -0
  730. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewer.pdf.overlayItems.use.d.ts +0 -0
  731. /package/{lib → src/lib}/components/CFileViewer/pdf/CFileViewerFullscreen.pdf.use.d.ts +0 -0
  732. /package/{lib/sdk/main.spec.d.ts → src/lib/components/CFolderTreeMultiPicker/__tests__/CFolderTreeMultiPicker.test.d.ts} +0 -0
  733. /package/{lib → src/lib}/components/CGlobalSearch/CGlobalSearch.types.d.ts +0 -0
  734. /package/{lib → src/lib}/components/CGlobalSearch/GlobalSearch.use.d.ts +0 -0
  735. /package/{lib → src/lib}/components/CGlobalSearch/Shortcuts.use.d.ts +0 -0
  736. /package/{lib/sdk/utils/assert.spec.d.ts → src/lib/components/CMultiSelect/CMultiSelect.test.d.ts} +0 -0
  737. /package/{lib → src/lib}/components/CQuickFilters/CQuickFilters.types.d.ts +0 -0
  738. /package/{lib → src/lib}/components/CRichTextEditor/constants.d.ts +0 -0
  739. /package/{lib → src/lib}/components/CRichTextEditor/extensions/bulletListExtended.d.ts +0 -0
  740. /package/{lib → src/lib}/components/CRichTextEditor/extensions/headingExtended.d.ts +0 -0
  741. /package/{lib → src/lib}/components/CRichTextEditor/extensions/mentionSuggestions.d.ts +0 -0
  742. /package/{lib → src/lib}/components/CRichTextEditor/extensions/paragraphExtended.d.ts +0 -0
  743. /package/{lib → src/lib}/components/CRichTextEditor/extensions/textStyleExtended.d.ts +0 -0
  744. /package/{lib → src/lib}/components/CSearchFilters/CSearchFilters.types.d.ts +0 -0
  745. /package/{lib/sdk/utils/eventEmitter.spec.d.ts → src/lib/components/CSideBar/CSideBar.spec.d.ts} +0 -0
  746. /package/{lib/sdk/utils/isodate.spec.d.ts → src/lib/components/CSideBar/CSideBarDivider.spec.d.ts} +0 -0
  747. /package/{lib/sdk/utils/object.spec.d.ts → src/lib/components/CSideBar/CSideBarItem.spec.d.ts} +0 -0
  748. /package/{lib/util/array.spec.d.ts → src/lib/components/CSideBar/CSideBarLabel.spec.d.ts} +0 -0
  749. /package/{lib/util/casing.spec.d.ts → src/lib/components/CSideBar/CSideBarToggle.spec.d.ts} +0 -0
  750. /package/{lib/util/date.spec.d.ts → src/lib/components/CSingleSelect/CSingleSelect.test.d.ts} +0 -0
  751. /package/{lib → src/lib}/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.types.d.ts +0 -0
  752. /package/{lib → src/lib}/components/CVideo/CVideo.types.d.ts +0 -0
  753. /package/{lib/util/font.spec.d.ts → src/lib/components/CVirtualTable/CVirtualTable.test.d.ts} +0 -0
  754. /package/{lib/util/location.spec.d.ts → src/lib/components/CVirtualTable/CVirtualTableRow.test.d.ts} +0 -0
  755. /package/{lib → src/lib}/components/canvases/CanvasesManagementBulk.use.d.ts +0 -0
  756. /package/{lib → src/lib}/components/canvases/CanvasesManagementFilters.use.d.ts +0 -0
  757. /package/{lib → src/lib}/components/canvases/CanvasesManagementToolbarFilters.use.d.ts +0 -0
  758. /package/{lib/util/message-event.spec.d.ts → src/lib/components/filters/CDateRangeFilter.test.d.ts} +0 -0
  759. /package/{lib/util/network.spec.d.ts → src/lib/components/filters/CSelectFilter.test.d.ts} +0 -0
  760. /package/{lib → src/lib}/components/filters/filter.const.d.ts +0 -0
  761. /package/{lib → src/lib}/components/filters/filter.util.d.ts +0 -0
  762. /package/{lib/util/number.spec.d.ts → src/lib/components/filters/filter.util.spec.d.ts} +0 -0
  763. /package/{lib/util/object.spec.d.ts → src/lib/components/savedCanvases/CSavedCanvasesManagement.use.spec.d.ts} +0 -0
  764. /package/{lib → src/lib}/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +0 -0
  765. /package/{lib → src/lib}/composables/appEmit.use.d.ts +0 -0
  766. /package/{lib → src/lib}/composables/appsDb.use.d.ts +0 -0
  767. /package/{lib → src/lib}/composables/fileViewerSettings.use.d.ts +0 -0
  768. /package/{lib → src/lib}/composables/instanceTagsActions.use.d.ts +0 -0
  769. /package/{lib → src/lib}/composables/openFileStack.use.d.ts +0 -0
  770. /package/{lib → src/lib}/composables/suggestedTags.use.d.ts +0 -0
  771. /package/{lib → src/lib}/composables/tableColumnsSettings.use.d.ts +0 -0
  772. /package/{lib → src/lib}/composables/useAdminAndDsrState.d.ts +0 -0
  773. /package/{lib → src/lib}/composables/useAssetUpload.d.ts +0 -0
  774. /package/{lib → src/lib}/composables/useBindValidation.d.ts +0 -0
  775. /package/{lib → src/lib}/composables/useBroadcastRouteChange.d.ts +0 -0
  776. /package/{lib → src/lib}/composables/useCanvasLocks.d.ts +0 -0
  777. /package/{lib → src/lib}/composables/useCanvasOverlay.d.ts +0 -0
  778. /package/{lib/util/reactive.spec.d.ts → src/lib/composables/useCanvasRendererExcludedTags.spec.d.ts} +0 -0
  779. /package/{lib → src/lib}/composables/useCanvasStandardFilters.d.ts +0 -0
  780. /package/{lib → src/lib}/composables/useCanvasTablesPagination.d.ts +0 -0
  781. /package/{lib → src/lib}/composables/useCollectionPlayerOverlay.d.ts +0 -0
  782. /package/{lib → src/lib}/composables/useCommentTracking.d.ts +0 -0
  783. /package/{lib → src/lib}/composables/useCommentsStorage.d.ts +0 -0
  784. /package/{lib → src/lib}/composables/useConfirmation.d.ts +0 -0
  785. /package/{lib → src/lib}/composables/useConnectUpload.d.ts +0 -0
  786. /package/{lib → src/lib}/composables/useCoreApi.d.ts +0 -0
  787. /package/{lib → src/lib}/composables/useDeleteUsedCanvasesConfirmation.d.ts +0 -0
  788. /package/{lib → src/lib}/composables/useElementHeightResize.d.ts +0 -0
  789. /package/{lib → src/lib}/composables/useElementSizeAfterDom.d.ts +0 -0
  790. /package/{lib → src/lib}/composables/useFetchUsers.d.ts +0 -0
  791. /package/{lib → src/lib}/composables/useFileDisplayHelpers.d.ts +0 -0
  792. /package/{lib → src/lib}/composables/useFileInfo.d.ts +0 -0
  793. /package/{lib → src/lib}/composables/useFilterSuggestions.d.ts +0 -0
  794. /package/{lib → src/lib}/composables/useFolderNameDescription.d.ts +0 -0
  795. /package/{lib/util/sfdc.util.spec.d.ts → src/lib/composables/useHomeCustomization.spec.d.ts} +0 -0
  796. /package/{lib → src/lib}/composables/useImageAccessibility.d.ts +0 -0
  797. /package/{lib → src/lib}/composables/useInfiniteScroll.d.ts +0 -0
  798. /package/{lib → src/lib}/composables/useInstalledApps.d.ts +0 -0
  799. /package/{lib → src/lib}/composables/useLegacyCollectionFileLoader.d.ts +0 -0
  800. /package/{lib → src/lib}/composables/useLocation.d.ts +0 -0
  801. /package/{lib → src/lib}/composables/useLocationAPI.d.ts +0 -0
  802. /package/{lib → src/lib}/composables/useLocationListeners.d.ts +0 -0
  803. /package/{lib → src/lib}/composables/useLocationManipulation.d.ts +0 -0
  804. /package/{lib → src/lib}/composables/useMetadataSearch.d.ts +0 -0
  805. /package/{lib → src/lib}/composables/usePdfInterpolation.d.ts +0 -0
  806. /package/{lib → src/lib}/composables/usePolling.d.ts +0 -0
  807. /package/{lib → src/lib}/composables/useSharedCommentsStorage.d.ts +0 -0
  808. /package/{lib → src/lib}/composables/useSharedTranslations.d.ts +0 -0
  809. /package/{lib → src/lib}/composables/useSmartStore.d.ts +0 -0
  810. /package/{lib → src/lib}/composables/useTheme.d.ts +0 -0
  811. /package/{lib → src/lib}/composables/useToast.d.ts +0 -0
  812. /package/{lib → src/lib}/constants/appsDb.const.d.ts +0 -0
  813. /package/{lib → src/lib}/constants/color.const.d.ts +0 -0
  814. /package/{lib → src/lib}/constants/config.const.d.ts +0 -0
  815. /package/{lib → src/lib}/constants/conventions.const.d.ts +0 -0
  816. /package/{lib → src/lib}/constants/dimensions.const.d.ts +0 -0
  817. /package/{lib → src/lib}/constants/i18n.const.d.ts +0 -0
  818. /package/{lib → src/lib}/constants/modal.const.d.ts +0 -0
  819. /package/{lib → src/lib}/constants/more.const.d.ts +0 -0
  820. /package/{lib → src/lib}/constants/pitcherSettings.const.d.ts +0 -0
  821. /package/{lib → src/lib}/constants/query-builder.const.d.ts +0 -0
  822. /package/{lib → src/lib}/constants/roles.const.d.ts +0 -0
  823. /package/{lib → src/lib}/constants/tables.const.d.ts +0 -0
  824. /package/{lib → src/lib}/constants/timers.const.d.ts +0 -0
  825. /package/{lib → src/lib}/constants/uploads.const.d.ts +0 -0
  826. /package/{lib → src/lib}/constants/url.const.d.ts +0 -0
  827. /package/{lib → src/lib}/custom-naive-locales/el.d.ts +0 -0
  828. /package/{lib → src/lib}/custom-naive-locales/it.d.ts +0 -0
  829. /package/{lib → src/lib}/custom-naive-locales/ja.d.ts +0 -0
  830. /package/{lib → src/lib}/custom-naive-locales/nl.d.ts +0 -0
  831. /package/{lib → src/lib}/custom-naive-locales/pt-br.d.ts +0 -0
  832. /package/{lib → src/lib}/custom-naive-locales/pt.d.ts +0 -0
  833. /package/{lib → src/lib}/custom-naive-locales/th.d.ts +0 -0
  834. /package/{lib → src/lib}/custom-naive-locales/zh.d.ts +0 -0
  835. /package/{lib → src/lib}/directives/autofocus.d.ts +0 -0
  836. /package/{lib → src/lib}/directives/clickOutside.d.ts +0 -0
  837. /package/{lib → src/lib}/directives/draggable.d.ts +0 -0
  838. /package/{lib → src/lib}/directives/element-mounted.d.ts +0 -0
  839. /package/{lib → src/lib}/directives/tap.d.ts +0 -0
  840. /package/{lib → src/lib}/directives/tooltip.d.ts +0 -0
  841. /package/{lib → src/lib}/directives/vTrustedHtml.d.ts +0 -0
  842. /package/{lib → src/lib}/plugins/vueQuery.d.ts +0 -0
  843. /package/{lib/util/smart-store.util.spec.d.ts → src/lib/sdk/api/HighLevelApi.spec.d.ts} +0 -0
  844. /package/{lib → src/lib}/sdk/api/LowLevelApi.d.ts +0 -0
  845. /package/{lib/util/timer.spec.d.ts → src/lib/sdk/api/LowLevelApi.spec.d.ts} +0 -0
  846. /package/{lib → src/lib}/sdk/api/modules/admin/app-errors.admin.d.ts +0 -0
  847. /package/{lib → src/lib}/sdk/api/modules/admin/canvas.admin.d.ts +0 -0
  848. /package/{lib → src/lib}/sdk/api/modules/admin/content.admin.d.ts +0 -0
  849. /package/{lib → src/lib}/sdk/api/modules/admin/env.admin.d.ts +0 -0
  850. /package/{lib → src/lib}/sdk/api/modules/admin/files.admin.d.ts +0 -0
  851. /package/{lib → src/lib}/sdk/api/modules/admin/index.d.ts +0 -0
  852. /package/{lib → src/lib}/sdk/api/modules/admin/metadataTemplates.admin.d.ts +0 -0
  853. /package/{lib → src/lib}/sdk/api/modules/admin/types.admin.d.ts +0 -0
  854. /package/{lib → src/lib}/sdk/api/modules/admin/users.admin.d.ts +0 -0
  855. /package/{lib → src/lib}/sdk/api/modules/dsr/env.dsr.d.ts +0 -0
  856. /package/{lib → src/lib}/sdk/api/modules/dsr/files.dsr.d.ts +0 -0
  857. /package/{lib → src/lib}/sdk/api/modules/dsr/index.d.ts +0 -0
  858. /package/{lib → src/lib}/sdk/api/modules/dsr/loading.dsr.d.ts +0 -0
  859. /package/{lib → src/lib}/sdk/api/modules/dsr/types.dsr.d.ts +0 -0
  860. /package/{lib → src/lib}/sdk/api/modules/env.d.ts +0 -0
  861. /package/{lib → src/lib}/sdk/api/modules/feedback.d.ts +0 -0
  862. /package/{lib → src/lib}/sdk/api/modules/filesRevisions.d.ts +0 -0
  863. /package/{lib → src/lib}/sdk/api/modules/folders.core.d.ts +0 -0
  864. /package/{lib → src/lib}/sdk/api/modules/folders.d.ts +0 -0
  865. /package/{lib → src/lib}/sdk/api/modules/languages.d.ts +0 -0
  866. /package/{lib → src/lib}/sdk/api/modules/metadataTemplates.d.ts +0 -0
  867. /package/{lib → src/lib}/sdk/api/modules/notifications.d.ts +0 -0
  868. /package/{lib → src/lib}/sdk/api/modules/open.d.ts +0 -0
  869. /package/{lib → src/lib}/sdk/api/modules/pspdfkit.d.ts +0 -0
  870. /package/{lib → src/lib}/sdk/api/modules/query.d.ts +0 -0
  871. /package/{lib → src/lib}/sdk/api/modules/search.d.ts +0 -0
  872. /package/{lib → src/lib}/sdk/api/modules/share.d.ts +0 -0
  873. /package/{lib → src/lib}/sdk/api/modules/sync.d.ts +0 -0
  874. /package/{lib → src/lib}/sdk/api/modules/theme.d.ts +0 -0
  875. /package/{lib → src/lib}/sdk/api/modules/toast.d.ts +0 -0
  876. /package/{lib → src/lib}/sdk/api/modules/track.d.ts +0 -0
  877. /package/{lib → src/lib}/sdk/api/modules/ui/app-errors.ui.d.ts +0 -0
  878. /package/{lib → src/lib}/sdk/api/modules/ui/canvas.ui.d.ts +0 -0
  879. /package/{lib → src/lib}/sdk/api/modules/ui/content.ui.d.ts +0 -0
  880. /package/{lib → src/lib}/sdk/api/modules/ui/index.d.ts +0 -0
  881. /package/{lib → src/lib}/sdk/api/modules/ui/loading.ui.d.ts +0 -0
  882. /package/{lib → src/lib}/sdk/api/modules/ui/location.ui.d.ts +0 -0
  883. /package/{lib → src/lib}/sdk/api/modules/ui/pia.ui.d.ts +0 -0
  884. /package/{lib → src/lib}/sdk/api/modules/ui/post-call.ui.d.ts +0 -0
  885. /package/{lib → src/lib}/sdk/api/modules/ui/sharing.ui.d.ts +0 -0
  886. /package/{lib → src/lib}/sdk/api/modules/ui/types.ui.d.ts +0 -0
  887. /package/{lib → src/lib}/sdk/api/modules/users.d.ts +0 -0
  888. /package/{lib → src/lib}/sdk/api/modules/webView.d.ts +0 -0
  889. /package/{lib → src/lib}/sdk/api/onlineRestApiHandlers.d.ts +0 -0
  890. /package/{lib/util/translations.spec.d.ts → src/lib/sdk/main.spec.d.ts} +0 -0
  891. /package/{lib → src/lib}/sdk/main.umd-esm.d.ts +0 -0
  892. /package/{lib → src/lib}/sdk/peer-connectivity/index.d.ts +0 -0
  893. /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.constants.d.ts +0 -0
  894. /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.d.ts +0 -0
  895. /package/{lib → src/lib}/sdk/peer-connectivity/peerConnectivity.types.d.ts +0 -0
  896. /package/{lib → src/lib}/sdk/utils/assert.d.ts +0 -0
  897. /package/{lib → src/lib}/sdk/utils/cleanUrl.d.ts +0 -0
  898. /package/{lib → src/lib}/sdk/utils/eventEmitter.d.ts +0 -0
  899. /package/{lib → src/lib}/sdk/utils/httpFetch.d.ts +0 -0
  900. /package/{lib → src/lib}/sdk/utils/isodate.d.ts +0 -0
  901. /package/{lib → src/lib}/sdk/utils/object.d.ts +0 -0
  902. /package/{lib → src/lib}/sdk/utils/postrobot.d.ts +0 -0
  903. /package/{lib → src/lib}/sdk/utils/window.d.ts +0 -0
  904. /package/{lib → src/lib}/stores/sectionSmartFolderStore.d.ts +0 -0
  905. /package/{lib → src/lib}/theme/canvasUiUnoPreset.d.ts +0 -0
  906. /package/{lib → src/lib}/theme/daisyUi.d.ts +0 -0
  907. /package/{lib → src/lib}/theme/light.const.d.ts +0 -0
  908. /package/{lib → src/lib}/theme/main.d.ts +0 -0
  909. /package/{lib → src/lib}/theme/theme-overrides.d.ts +0 -0
  910. /package/{lib → src/lib}/theme/theme.utils.d.ts +0 -0
  911. /package/{lib → src/lib}/types/app.d.ts +0 -0
  912. /package/{lib → src/lib}/types/background.d.ts +0 -0
  913. /package/{lib → src/lib}/types/call.d.ts +0 -0
  914. /package/{lib → src/lib}/types/canvasActions.d.ts +0 -0
  915. /package/{lib → src/lib}/types/canvasTheme.d.ts +0 -0
  916. /package/{lib → src/lib}/types/canvases.d.ts +0 -0
  917. /package/{lib → src/lib}/types/common.d.ts +0 -0
  918. /package/{lib → src/lib}/types/core/MetadataFilter.d.ts +0 -0
  919. /package/{lib → src/lib}/types/core/UpsertPptxSlideImages.d.ts +0 -0
  920. /package/{lib → src/lib}/types/core/index.d.ts +0 -0
  921. /package/{lib → src/lib}/types/dataTable.d.ts +0 -0
  922. /package/{lib → src/lib}/types/file.types.d.ts +0 -0
  923. /package/{lib → src/lib}/types/fileViewerSettings.types.d.ts +0 -0
  924. /package/{lib → src/lib}/types/filter.d.ts +0 -0
  925. /package/{lib → src/lib}/types/folder.d.ts +0 -0
  926. /package/{lib → src/lib}/types/i18n.types.d.ts +0 -0
  927. /package/{lib → src/lib}/types/iframes.d.ts +0 -0
  928. /package/{lib → src/lib}/types/instance.types.d.ts +0 -0
  929. /package/{lib → src/lib}/types/instanceTags.types.d.ts +0 -0
  930. /package/{lib → src/lib}/types/metadataHighlightProperty.d.ts +0 -0
  931. /package/{lib → src/lib}/types/organization.types.d.ts +0 -0
  932. /package/{lib → src/lib}/types/organizationMetadata.types.d.ts +0 -0
  933. /package/{lib → src/lib}/types/paginatedData.d.ts +0 -0
  934. /package/{lib → src/lib}/types/query-builder.types.d.ts +0 -0
  935. /package/{lib → src/lib}/types/search.d.ts +0 -0
  936. /package/{lib → src/lib}/types/sectionPopularity.d.ts +0 -0
  937. /package/{lib → src/lib}/types/selections.d.ts +0 -0
  938. /package/{lib → src/lib}/types/sfdc.d.ts +0 -0
  939. /package/{lib → src/lib}/types/toast.d.ts +0 -0
  940. /package/{lib → src/lib}/types/translations.d.ts +0 -0
  941. /package/{lib → src/lib}/types/ts.d.ts +0 -0
  942. /package/{lib → src/lib}/types/users.d.ts +0 -0
  943. /package/{lib → src/lib}/types/vueVirtualScroller.d.ts +0 -0
  944. /package/{lib → src/lib}/util/anchor.d.ts +0 -0
  945. /package/{lib → src/lib}/util/app.util.d.ts +0 -0
  946. /package/{lib → src/lib}/util/canvas-manager.util.d.ts +0 -0
  947. /package/{lib → src/lib}/util/casing.d.ts +0 -0
  948. /package/{lib → src/lib}/util/color.d.ts +0 -0
  949. /package/{lib → src/lib}/util/date.d.ts +0 -0
  950. /package/{lib → src/lib}/util/dev.util.d.ts +0 -0
  951. /package/{lib → src/lib}/util/dom.d.ts +0 -0
  952. /package/{lib → src/lib}/util/eval.d.ts +0 -0
  953. /package/{lib → src/lib}/util/file.util.d.ts +0 -0
  954. /package/{lib → src/lib}/util/font.util.d.ts +0 -0
  955. /package/{lib → src/lib}/util/image.d.ts +0 -0
  956. /package/{lib → src/lib}/util/jwt.d.ts +0 -0
  957. /package/{lib → src/lib}/util/location.util.d.ts +0 -0
  958. /package/{lib → src/lib}/util/message-event.d.ts +0 -0
  959. /package/{lib → src/lib}/util/navigation.util.d.ts +0 -0
  960. /package/{lib → src/lib}/util/number.d.ts +0 -0
  961. /package/{lib → src/lib}/util/object.d.ts +0 -0
  962. /package/{lib → src/lib}/util/pitcher-settings.util.d.ts +0 -0
  963. /package/{lib → src/lib}/util/query-builder.util.d.ts +0 -0
  964. /package/{lib → src/lib}/util/query.d.ts +0 -0
  965. /package/{lib → src/lib}/util/reactive.d.ts +0 -0
  966. /package/{lib → src/lib}/util/sfdc.util.d.ts +0 -0
  967. /package/{lib → src/lib}/util/smart-store.util.d.ts +0 -0
  968. /package/{lib → src/lib}/util/storage.util.d.ts +0 -0
  969. /package/{lib → src/lib}/util/style.util.d.ts +0 -0
  970. /package/{lib → src/lib}/util/timer.d.ts +0 -0
  971. /package/{lib → src/lib}/util/toCssClassKey.d.ts +0 -0
  972. /package/{lib → src/lib}/util/translations.d.ts +0 -0
  973. /package/{lib → src/lib}/util/tree-transformation.util.d.ts +0 -0
  974. /package/{lib → src/lib}/util/tsHelpers.d.ts +0 -0
  975. /package/{lib → src/lib}/util/url.d.ts +0 -0
  976. /package/{lib → src/lib}/util/userAgents.d.ts +0 -0
  977. /package/{lib → src/lib}/utils/iframeInitialize.d.ts +0 -0
  978. /package/{types → src/types}/openapi/models/AccessTypeEnum.d.ts +0 -0
  979. /package/{types → src/types}/openapi/models/Account.d.ts +0 -0
  980. /package/{types → src/types}/openapi/models/AccountRequest.d.ts +0 -0
  981. /package/{types → src/types}/openapi/models/App.d.ts +0 -0
  982. /package/{types → src/types}/openapi/models/AppInstallationRequest.d.ts +0 -0
  983. /package/{types → src/types}/openapi/models/AppOrganization.d.ts +0 -0
  984. /package/{types → src/types}/openapi/models/AppPublish.d.ts +0 -0
  985. /package/{types → src/types}/openapi/models/AppRelease.d.ts +0 -0
  986. /package/{types → src/types}/openapi/models/AppTypeEnum.d.ts +0 -0
  987. /package/{types → src/types}/openapi/models/AppsDBEntry.d.ts +0 -0
  988. /package/{types → src/types}/openapi/models/AppsDBEntryRequest.d.ts +0 -0
  989. /package/{types → src/types}/openapi/models/AuthToken.d.ts +0 -0
  990. /package/{types → src/types}/openapi/models/AuthTokenRequest.d.ts +0 -0
  991. /package/{types → src/types}/openapi/models/BulkDeleteErrorDetail.d.ts +0 -0
  992. /package/{types → src/types}/openapi/models/BulkDeleteMixedObjectsRequest.d.ts +0 -0
  993. /package/{types → src/types}/openapi/models/BulkDeleteRequest.d.ts +0 -0
  994. /package/{types → src/types}/openapi/models/BulkDeleteResponse.d.ts +0 -0
  995. /package/{types → src/types}/openapi/models/BulkUpdateMetadata.d.ts +0 -0
  996. /package/{types → src/types}/openapi/models/BulkUpdateMetadataOperationEnum.d.ts +0 -0
  997. /package/{types → src/types}/openapi/models/BulkUpdateMetadataRequest.d.ts +0 -0
  998. /package/{types → src/types}/openapi/models/BulkUpdateMetadataResult.d.ts +0 -0
  999. /package/{types → src/types}/openapi/models/BulkUpdateTags.d.ts +0 -0
  1000. /package/{types → src/types}/openapi/models/BulkUpdateTagsOperationEnum.d.ts +0 -0
  1001. /package/{types → src/types}/openapi/models/BulkUpdateTagsRequest.d.ts +0 -0
  1002. /package/{types → src/types}/openapi/models/BulkUpdateTagsResult.d.ts +0 -0
  1003. /package/{types → src/types}/openapi/models/CanvasCreateRequest.d.ts +0 -0
  1004. /package/{types → src/types}/openapi/models/CanvasRecommendedFile.d.ts +0 -0
  1005. /package/{types → src/types}/openapi/models/CanvasRecommendedFiles.d.ts +0 -0
  1006. /package/{types → src/types}/openapi/models/CanvasSection.d.ts +0 -0
  1007. /package/{types → src/types}/openapi/models/CanvasUpdateRequest.d.ts +0 -0
  1008. /package/{types → src/types}/openapi/models/Collaboration.d.ts +0 -0
  1009. /package/{types → src/types}/openapi/models/CollaborationCreate.d.ts +0 -0
  1010. /package/{types → src/types}/openapi/models/CollaborationCreateRequest.d.ts +0 -0
  1011. /package/{types → src/types}/openapi/models/CollaborationRequest.d.ts +0 -0
  1012. /package/{types → src/types}/openapi/models/CollaborationRoleEnum.d.ts +0 -0
  1013. /package/{types → src/types}/openapi/models/ConnectedService.d.ts +0 -0
  1014. /package/{types → src/types}/openapi/models/ContentDistributionGroup.d.ts +0 -0
  1015. /package/{types → src/types}/openapi/models/ContentDistributionGroupCreate.d.ts +0 -0
  1016. /package/{types → src/types}/openapi/models/ContentDistributionGroupCreateRequest.d.ts +0 -0
  1017. /package/{types → src/types}/openapi/models/ContentDistributionGroupMembership.d.ts +0 -0
  1018. /package/{types → src/types}/openapi/models/ContentDistributionGroupMembershipCreate.d.ts +0 -0
  1019. /package/{types → src/types}/openapi/models/ContentDistributionGroupMembershipCreateRequest.d.ts +0 -0
  1020. /package/{types → src/types}/openapi/models/ContentDistributionGroupRequest.d.ts +0 -0
  1021. /package/{types → src/types}/openapi/models/DefaultExpiresAtEnum.d.ts +0 -0
  1022. /package/{types → src/types}/openapi/models/DeletedContentDistributionGroup.d.ts +0 -0
  1023. /package/{types → src/types}/openapi/models/DeletedEnvironment.d.ts +0 -0
  1024. /package/{types → src/types}/openapi/models/DeletedFavorite.d.ts +0 -0
  1025. /package/{types → src/types}/openapi/models/DeletedFile.d.ts +0 -0
  1026. /package/{types → src/types}/openapi/models/DeletedFolder.d.ts +0 -0
  1027. /package/{types → src/types}/openapi/models/DeletedInstance.d.ts +0 -0
  1028. /package/{types → src/types}/openapi/models/DeletedInstanceAssignmentGroup.d.ts +0 -0
  1029. /package/{types → src/types}/openapi/models/DeletedMetadataTemplate.d.ts +0 -0
  1030. /package/{types → src/types}/openapi/models/DeletedRegion.d.ts +0 -0
  1031. /package/{types → src/types}/openapi/models/DownloadTypeEnum.d.ts +0 -0
  1032. /package/{types → src/types}/openapi/models/Environment.d.ts +0 -0
  1033. /package/{types → src/types}/openapi/models/EnvironmentRequest.d.ts +0 -0
  1034. /package/{types → src/types}/openapi/models/Event.d.ts +0 -0
  1035. /package/{types → src/types}/openapi/models/EventAttendee.d.ts +0 -0
  1036. /package/{types → src/types}/openapi/models/EventAttendeeRequest.d.ts +0 -0
  1037. /package/{types → src/types}/openapi/models/EventExternalObject.d.ts +0 -0
  1038. /package/{types → src/types}/openapi/models/EventExternalObjectContentTypeEnum.d.ts +0 -0
  1039. /package/{types → src/types}/openapi/models/EventExternalObjectRequest.d.ts +0 -0
  1040. /package/{types → src/types}/openapi/models/EventRequest.d.ts +0 -0
  1041. /package/{types → src/types}/openapi/models/EventStatusEnum.d.ts +0 -0
  1042. /package/{types → src/types}/openapi/models/Favorite.d.ts +0 -0
  1043. /package/{types → src/types}/openapi/models/FavoriteCreate.d.ts +0 -0
  1044. /package/{types → src/types}/openapi/models/FavoriteCreateRequest.d.ts +0 -0
  1045. /package/{types → src/types}/openapi/models/FavoriteFile.d.ts +0 -0
  1046. /package/{types → src/types}/openapi/models/FavoriteFileRequest.d.ts +0 -0
  1047. /package/{types → src/types}/openapi/models/FavoriteFolder.d.ts +0 -0
  1048. /package/{types → src/types}/openapi/models/FavoriteFolderRequest.d.ts +0 -0
  1049. /package/{types → src/types}/openapi/models/FavoriteUpdate.d.ts +0 -0
  1050. /package/{types → src/types}/openapi/models/FavoriteUpdateRequest.d.ts +0 -0
  1051. /package/{types → src/types}/openapi/models/File.d.ts +0 -0
  1052. /package/{types → src/types}/openapi/models/FileAnalytics.d.ts +0 -0
  1053. /package/{types → src/types}/openapi/models/FileAnalyticsResult.d.ts +0 -0
  1054. /package/{types → src/types}/openapi/models/FileContentTypeEnum.d.ts +0 -0
  1055. /package/{types → src/types}/openapi/models/FileCreate.d.ts +0 -0
  1056. /package/{types → src/types}/openapi/models/FileCreateRequest.d.ts +0 -0
  1057. /package/{types → src/types}/openapi/models/FilePermission.d.ts +0 -0
  1058. /package/{types → src/types}/openapi/models/FilePermissionRequest.d.ts +0 -0
  1059. /package/{types → src/types}/openapi/models/FileRetrieve.d.ts +0 -0
  1060. /package/{types → src/types}/openapi/models/FileRevision.d.ts +0 -0
  1061. /package/{types → src/types}/openapi/models/FileRevisionRequest.d.ts +0 -0
  1062. /package/{types → src/types}/openapi/models/FileStatusEnum.d.ts +0 -0
  1063. /package/{types → src/types}/openapi/models/FileTypeEnum.d.ts +0 -0
  1064. /package/{types → src/types}/openapi/models/FileUpdate.d.ts +0 -0
  1065. /package/{types → src/types}/openapi/models/FileUpdateRequest.d.ts +0 -0
  1066. /package/{types → src/types}/openapi/models/FileVersion.d.ts +0 -0
  1067. /package/{types → src/types}/openapi/models/Folder.d.ts +0 -0
  1068. /package/{types → src/types}/openapi/models/FolderCanvas.d.ts +0 -0
  1069. /package/{types → src/types}/openapi/models/FolderCreate.d.ts +0 -0
  1070. /package/{types → src/types}/openapi/models/FolderCreateRequest.d.ts +0 -0
  1071. /package/{types → src/types}/openapi/models/FolderFile.d.ts +0 -0
  1072. /package/{types → src/types}/openapi/models/FolderRule.d.ts +0 -0
  1073. /package/{types → src/types}/openapi/models/FolderRuleRequest.d.ts +0 -0
  1074. /package/{types → src/types}/openapi/models/FolderUpdate.d.ts +0 -0
  1075. /package/{types → src/types}/openapi/models/FolderUpdateRequest.d.ts +0 -0
  1076. /package/{types → src/types}/openapi/models/Instance.d.ts +0 -0
  1077. /package/{types → src/types}/openapi/models/InstanceAnalytics.d.ts +0 -0
  1078. /package/{types → src/types}/openapi/models/InstanceAnalyticsChangePercentages.d.ts +0 -0
  1079. /package/{types → src/types}/openapi/models/InstanceAnalyticsCurrentPeriod.d.ts +0 -0
  1080. /package/{types → src/types}/openapi/models/InstanceAnalyticsFile.d.ts +0 -0
  1081. /package/{types → src/types}/openapi/models/InstanceAnalyticsFileActivity.d.ts +0 -0
  1082. /package/{types → src/types}/openapi/models/InstanceAnalyticsFileRequest.d.ts +0 -0
  1083. /package/{types → src/types}/openapi/models/InstanceAnalyticsInactiveUsers.d.ts +0 -0
  1084. /package/{types → src/types}/openapi/models/InstanceAnalyticsInactiveUsersRequest.d.ts +0 -0
  1085. /package/{types → src/types}/openapi/models/InstanceAnalyticsLoginResult.d.ts +0 -0
  1086. /package/{types → src/types}/openapi/models/InstanceAssignmentGroup.d.ts +0 -0
  1087. /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembership.d.ts +0 -0
  1088. /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembershipCreate.d.ts +0 -0
  1089. /package/{types → src/types}/openapi/models/InstanceAssignmentGroupMembershipCreateRequest.d.ts +0 -0
  1090. /package/{types → src/types}/openapi/models/InstanceAssignmentGroupRequest.d.ts +0 -0
  1091. /package/{types → src/types}/openapi/models/InstanceMembership.d.ts +0 -0
  1092. /package/{types → src/types}/openapi/models/InstanceMembershipCreate.d.ts +0 -0
  1093. /package/{types → src/types}/openapi/models/InstanceMembershipCreateRequest.d.ts +0 -0
  1094. /package/{types → src/types}/openapi/models/InstanceMembershipGroup.d.ts +0 -0
  1095. /package/{types → src/types}/openapi/models/InstanceMembershipGroupRequest.d.ts +0 -0
  1096. /package/{types → src/types}/openapi/models/InstanceMembershipRequest.d.ts +0 -0
  1097. /package/{types → src/types}/openapi/models/InstanceMembershipRoleEnum.d.ts +0 -0
  1098. /package/{types → src/types}/openapi/models/InstanceMembershipUser.d.ts +0 -0
  1099. /package/{types → src/types}/openapi/models/InstanceMembershipUserRequest.d.ts +0 -0
  1100. /package/{types → src/types}/openapi/models/InstanceMembershipUserStatusEnum.d.ts +0 -0
  1101. /package/{types → src/types}/openapi/models/InstanceRequest.d.ts +0 -0
  1102. /package/{types → src/types}/openapi/models/InstanceUpdate.d.ts +0 -0
  1103. /package/{types → src/types}/openapi/models/InstanceUpdateRequest.d.ts +0 -0
  1104. /package/{types → src/types}/openapi/models/Invitation.d.ts +0 -0
  1105. /package/{types → src/types}/openapi/models/InvitationRequest.d.ts +0 -0
  1106. /package/{types → src/types}/openapi/models/InvitationStatusEnum.d.ts +0 -0
  1107. /package/{types → src/types}/openapi/models/LanguageEnum.d.ts +0 -0
  1108. /package/{types → src/types}/openapi/models/MetadataTemplate.d.ts +0 -0
  1109. /package/{types → src/types}/openapi/models/MetadataTemplateField.d.ts +0 -0
  1110. /package/{types → src/types}/openapi/models/MetadataTemplateFieldRequest.d.ts +0 -0
  1111. /package/{types → src/types}/openapi/models/MetadataTemplateOption.d.ts +0 -0
  1112. /package/{types → src/types}/openapi/models/MetadataTemplateOptionRequest.d.ts +0 -0
  1113. /package/{types → src/types}/openapi/models/MetadataTemplateRequest.d.ts +0 -0
  1114. /package/{types → src/types}/openapi/models/MetadataTemplateSection.d.ts +0 -0
  1115. /package/{types → src/types}/openapi/models/MetadataTemplateSectionRequest.d.ts +0 -0
  1116. /package/{types → src/types}/openapi/models/MiniCanvas.d.ts +0 -0
  1117. /package/{types → src/types}/openapi/models/MiniCanvasRequest.d.ts +0 -0
  1118. /package/{types → src/types}/openapi/models/MiniContentDistributionGroup.d.ts +0 -0
  1119. /package/{types → src/types}/openapi/models/MiniContentDistributionGroupRequest.d.ts +0 -0
  1120. /package/{types → src/types}/openapi/models/MiniEnvironment.d.ts +0 -0
  1121. /package/{types → src/types}/openapi/models/MiniEnvironmentRequest.d.ts +0 -0
  1122. /package/{types → src/types}/openapi/models/MiniEvent.d.ts +0 -0
  1123. /package/{types → src/types}/openapi/models/MiniEventRequest.d.ts +0 -0
  1124. /package/{types → src/types}/openapi/models/MiniFile.d.ts +0 -0
  1125. /package/{types → src/types}/openapi/models/MiniFileRequest.d.ts +0 -0
  1126. /package/{types → src/types}/openapi/models/MiniFolder.d.ts +0 -0
  1127. /package/{types → src/types}/openapi/models/MiniFolderRequest.d.ts +0 -0
  1128. /package/{types → src/types}/openapi/models/MiniInstance.d.ts +0 -0
  1129. /package/{types → src/types}/openapi/models/MiniInstanceRequest.d.ts +0 -0
  1130. /package/{types → src/types}/openapi/models/MiniPage.d.ts +0 -0
  1131. /package/{types → src/types}/openapi/models/MiniRegion.d.ts +0 -0
  1132. /package/{types → src/types}/openapi/models/MiniRegionRequest.d.ts +0 -0
  1133. /package/{types → src/types}/openapi/models/MiniSharedLink.d.ts +0 -0
  1134. /package/{types → src/types}/openapi/models/MiniSharedLinkRequest.d.ts +0 -0
  1135. /package/{types → src/types}/openapi/models/MiniUser.d.ts +0 -0
  1136. /package/{types → src/types}/openapi/models/MiniUserRequest.d.ts +0 -0
  1137. /package/{types → src/types}/openapi/models/MostActiveUser.d.ts +0 -0
  1138. /package/{types → src/types}/openapi/models/OfflineSyncFolder.d.ts +0 -0
  1139. /package/{types → src/types}/openapi/models/OperatorEnum.d.ts +0 -0
  1140. /package/{types → src/types}/openapi/models/Organization.d.ts +0 -0
  1141. /package/{types → src/types}/openapi/models/OrganizationAnalytics.d.ts +0 -0
  1142. /package/{types → src/types}/openapi/models/OrganizationAnalyticsCurrentPeriod.d.ts +0 -0
  1143. /package/{types → src/types}/openapi/models/OrganizationAnalyticsInactiveUsers.d.ts +0 -0
  1144. /package/{types → src/types}/openapi/models/OrganizationAnalyticsInactiveUsersRequest.d.ts +0 -0
  1145. /package/{types → src/types}/openapi/models/OrganizationAnalyticsInstance.d.ts +0 -0
  1146. /package/{types → src/types}/openapi/models/OrganizationAnalyticsLoginResult.d.ts +0 -0
  1147. /package/{types → src/types}/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +0 -0
  1148. /package/{types → src/types}/openapi/models/OrganizationBranding.d.ts +0 -0
  1149. /package/{types → src/types}/openapi/models/OrganizationBrandingColors.d.ts +0 -0
  1150. /package/{types → src/types}/openapi/models/OrganizationChangePercentages.d.ts +0 -0
  1151. /package/{types → src/types}/openapi/models/OrganizationUpdate.d.ts +0 -0
  1152. /package/{types → src/types}/openapi/models/OrganizationUpdateRequest.d.ts +0 -0
  1153. /package/{types → src/types}/openapi/models/PSPDFKitAuthPayload.d.ts +0 -0
  1154. /package/{types → src/types}/openapi/models/PSPDFKitAuthPayloadRequest.d.ts +0 -0
  1155. /package/{types → src/types}/openapi/models/PSPDFKitToken.d.ts +0 -0
  1156. /package/{types → src/types}/openapi/models/PSPDFKitTokenRequest.d.ts +0 -0
  1157. /package/{types → src/types}/openapi/models/PaginatedAppList.d.ts +0 -0
  1158. /package/{types → src/types}/openapi/models/PaginatedAuthTokenList.d.ts +0 -0
  1159. /package/{types → src/types}/openapi/models/PaginatedCanvasList.d.ts +0 -0
  1160. /package/{types → src/types}/openapi/models/PaginatedCollaborationList.d.ts +0 -0
  1161. /package/{types → src/types}/openapi/models/PaginatedContentDistributionGroupList.d.ts +0 -0
  1162. /package/{types → src/types}/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +0 -0
  1163. /package/{types → src/types}/openapi/models/PaginatedEnvironmentList.d.ts +0 -0
  1164. /package/{types → src/types}/openapi/models/PaginatedEventList.d.ts +0 -0
  1165. /package/{types → src/types}/openapi/models/PaginatedFavoriteList.d.ts +0 -0
  1166. /package/{types → src/types}/openapi/models/PaginatedFileList.d.ts +0 -0
  1167. /package/{types → src/types}/openapi/models/PaginatedFileRevisionList.d.ts +0 -0
  1168. /package/{types → src/types}/openapi/models/PaginatedFolderList.d.ts +0 -0
  1169. /package/{types → src/types}/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +0 -0
  1170. /package/{types → src/types}/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +0 -0
  1171. /package/{types → src/types}/openapi/models/PaginatedInstanceList.d.ts +0 -0
  1172. /package/{types → src/types}/openapi/models/PaginatedInstanceMembershipList.d.ts +0 -0
  1173. /package/{types → src/types}/openapi/models/PaginatedInvitationList.d.ts +0 -0
  1174. /package/{types → src/types}/openapi/models/PaginatedMetadataTemplateList.d.ts +0 -0
  1175. /package/{types → src/types}/openapi/models/PaginatedOfflineSyncFolderList.d.ts +0 -0
  1176. /package/{types → src/types}/openapi/models/PaginatedRegionList.d.ts +0 -0
  1177. /package/{types → src/types}/openapi/models/PaginatedRevisionList.d.ts +0 -0
  1178. /package/{types → src/types}/openapi/models/PaginatedSearchResultList.d.ts +0 -0
  1179. /package/{types → src/types}/openapi/models/PaginatedUserList.d.ts +0 -0
  1180. /package/{types → src/types}/openapi/models/PatchedCanvasIndicatorsRequest.d.ts +0 -0
  1181. /package/{types → src/types}/openapi/models/PatchedCanvasUpdateRequest.d.ts +0 -0
  1182. /package/{types → src/types}/openapi/models/PatchedCollaborationRequest.d.ts +0 -0
  1183. /package/{types → src/types}/openapi/models/PatchedContentDistributionGroupRequest.d.ts +0 -0
  1184. /package/{types → src/types}/openapi/models/PatchedEnvironmentRequest.d.ts +0 -0
  1185. /package/{types → src/types}/openapi/models/PatchedEventRequest.d.ts +0 -0
  1186. /package/{types → src/types}/openapi/models/PatchedFavoriteUpdateRequest.d.ts +0 -0
  1187. /package/{types → src/types}/openapi/models/PatchedFilePublishRequest.d.ts +0 -0
  1188. /package/{types → src/types}/openapi/models/PatchedFileRevisionRequest.d.ts +0 -0
  1189. /package/{types → src/types}/openapi/models/PatchedFileUpdateRequest.d.ts +0 -0
  1190. /package/{types → src/types}/openapi/models/PatchedFolderUpdateRequest.d.ts +0 -0
  1191. /package/{types → src/types}/openapi/models/PatchedInstanceAssignmentGroupRequest.d.ts +0 -0
  1192. /package/{types → src/types}/openapi/models/PatchedInstanceMembershipRequest.d.ts +0 -0
  1193. /package/{types → src/types}/openapi/models/PatchedInstanceUpdateRequest.d.ts +0 -0
  1194. /package/{types → src/types}/openapi/models/PatchedMetadataTemplateRequest.d.ts +0 -0
  1195. /package/{types → src/types}/openapi/models/PatchedOrganizationUpdateRequest.d.ts +0 -0
  1196. /package/{types → src/types}/openapi/models/PatchedRegionRequest.d.ts +0 -0
  1197. /package/{types → src/types}/openapi/models/PatchedUserRequest.d.ts +0 -0
  1198. /package/{types → src/types}/openapi/models/Region.d.ts +0 -0
  1199. /package/{types → src/types}/openapi/models/RegionRequest.d.ts +0 -0
  1200. /package/{types → src/types}/openapi/models/Revision.d.ts +0 -0
  1201. /package/{types → src/types}/openapi/models/RevisionRequest.d.ts +0 -0
  1202. /package/{types → src/types}/openapi/models/SearchApp.d.ts +0 -0
  1203. /package/{types → src/types}/openapi/models/SearchCanvas.d.ts +0 -0
  1204. /package/{types → src/types}/openapi/models/SearchFile.d.ts +0 -0
  1205. /package/{types → src/types}/openapi/models/SearchResult.d.ts +0 -0
  1206. /package/{types → src/types}/openapi/models/SearchUser.d.ts +0 -0
  1207. /package/{types → src/types}/openapi/models/SharedLink.d.ts +0 -0
  1208. /package/{types → src/types}/openapi/models/SharedLinkCanvas.d.ts +0 -0
  1209. /package/{types → src/types}/openapi/models/SharedLinkCanvasRequest.d.ts +0 -0
  1210. /package/{types → src/types}/openapi/models/SharedLinkCreate.d.ts +0 -0
  1211. /package/{types → src/types}/openapi/models/SharedLinkCreateRequest.d.ts +0 -0
  1212. /package/{types → src/types}/openapi/models/SharedLinkInstance.d.ts +0 -0
  1213. /package/{types → src/types}/openapi/models/SharedLinkInstanceRequest.d.ts +0 -0
  1214. /package/{types → src/types}/openapi/models/SharedLinkOrganization.d.ts +0 -0
  1215. /package/{types → src/types}/openapi/models/SharedLinkOrganizationRequest.d.ts +0 -0
  1216. /package/{types → src/types}/openapi/models/StorageRegionEnum.d.ts +0 -0
  1217. /package/{types → src/types}/openapi/models/Tag.d.ts +0 -0
  1218. /package/{types → src/types}/openapi/models/UploadCreate.d.ts +0 -0
  1219. /package/{types → src/types}/openapi/models/UploadCreateRequest.d.ts +0 -0
  1220. /package/{types → src/types}/openapi/models/User.d.ts +0 -0
  1221. /package/{types → src/types}/openapi/models/UserRequest.d.ts +0 -0
  1222. /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;