@pitcher/js-api 1.24.0-beta.3 → 1.25.0-beta.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 (523) hide show
  1. package/README.md +3 -3
  2. package/impact-js-api.spec.json +212 -0
  3. package/js-api.esm.js +2431 -2360
  4. package/js-api.esm.js.map +1 -1
  5. package/js-api.umd.min.js +10 -10
  6. package/js-api.umd.min.js.map +1 -1
  7. package/lib/apps/agenda-selector/components/AgendaGroup.vue.d.ts +4 -4
  8. package/lib/apps/agenda-selector/components/AgendaItem.vue.d.ts +6 -11
  9. package/lib/apps/agenda-selector/components/AgendaToolbar.vue.d.ts +1 -1
  10. package/lib/apps/agenda-selector/components/AppFooter.vue.d.ts +1 -1
  11. package/lib/apps/agenda-selector/components/AppHeader.vue.d.ts +1 -1
  12. package/lib/apps/agenda-selector/components/modals/ApplicationBlockSelectorModal.vue.d.ts +1036 -5
  13. package/lib/apps/agenda-selector/components/modals/MoveItemModal.vue.d.ts +4 -6
  14. package/lib/apps/agenda-selector/composables/application-block-selector-modal.use.d.ts +1 -1
  15. package/lib/apps/agenda-selector/composables/content-warning.use.d.ts +7 -0
  16. package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +10 -2
  17. package/lib/apps/agenda-selector/constants.d.ts +10 -0
  18. package/lib/apps/agenda-selector/export.d.ts +2 -0
  19. package/lib/apps/agenda-selector/stores/app.store.d.ts +7 -3
  20. package/lib/apps/agenda-selector/types/agenda.type.d.ts +4 -5
  21. package/lib/apps/agenda-selector/types/common.type.d.ts +6 -2
  22. package/lib/apps/agenda-selector/utils/data.util.d.ts +7 -1
  23. package/lib/apps/browser/App.vue.d.ts +18 -155
  24. package/lib/apps/browser/appTypes.d.ts +22 -0
  25. package/lib/apps/browser/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +174 -1
  26. package/lib/apps/browser/components/Content/ActionsToolbar/SelectionActions.vue.d.ts +1 -1
  27. package/lib/apps/browser/components/Content/AllContent/Empty/FoldersFilesEmpty.vue.d.ts +1 -1
  28. package/lib/apps/browser/components/Content/Common/BrowserListItem.vue.d.ts +15 -22
  29. package/lib/apps/browser/components/Content/Common/SmartFolderListItem.vue.d.ts +37 -0
  30. package/lib/apps/browser/components/Content/Content.vue.d.ts +4 -3
  31. package/lib/apps/browser/components/Content/Panel/FolderPanel/BasicInfo.vue.d.ts +1 -1
  32. package/lib/apps/browser/components/Content/Panel/FolderPanel/Details.vue.d.ts +1 -1
  33. package/lib/apps/browser/components/Content/Panel/FolderPanel/FolderPanel.vue.d.ts +1 -1
  34. package/lib/apps/browser/components/Content/Panel/ItemsPanel/ItemsPanel.vue.d.ts +1 -1
  35. package/lib/apps/browser/components/Content/Panel/NoItemPanel/NoItemPanel.vue.d.ts +1 -1
  36. package/lib/apps/browser/components/Content/Panel/Panel.vue.d.ts +8 -8
  37. package/lib/apps/browser/components/Content/Panel/QuickAccessPanelItem.vue.d.ts +7 -6
  38. package/lib/apps/browser/components/ContextMenu/ContextMenuDropdown.vue.d.ts +4 -0
  39. package/lib/apps/browser/components/ContextMenu/FavoriteButton.vue.d.ts +3 -4
  40. package/lib/apps/browser/components/ContextMenu/FileDetailsPanelButton.vue.d.ts +3 -4
  41. package/lib/{components/CFileViewer/CFileViewerShare.vue.d.ts → apps/browser/components/FileSmartFoldersConfigurationModal.vue.d.ts} +2 -4
  42. package/lib/apps/browser/components/FileSmartFoldersMissingConfig.vue.d.ts +6 -0
  43. package/lib/apps/browser/components/FileSmartFoldersToolbar.vue.d.ts +12 -0
  44. package/lib/apps/browser/components/UploadFilesDropzone/UploadFilesDropzone.vue.d.ts +5 -4
  45. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +372 -1
  46. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalButtons.vue.d.ts +5 -6
  47. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalFileList.vue.d.ts +4 -5
  48. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalInput.vue.d.ts +3 -1
  49. package/lib/apps/browser/components/UploadFilesModal/UploadFilesModalProperties.vue.d.ts +4 -5
  50. package/lib/apps/browser/stores/api.d.ts +50 -18
  51. package/lib/apps/browser/stores/app.d.ts +11 -3
  52. package/lib/apps/browser/stores/fileSmartFolderStore.d.ts +95 -0
  53. package/lib/apps/browser/stores/upload.d.ts +24 -12
  54. package/lib/apps/browser/util/file.d.ts +1 -0
  55. package/lib/apps/canvas-builder/App.helpers.d.ts +6 -1
  56. package/lib/apps/canvas-builder/App.vue.d.ts +75 -32
  57. package/lib/apps/canvas-builder/components/container/AddComponentModal/AddComponentModal.vue.d.ts +1037 -4
  58. package/lib/apps/canvas-builder/components/container/AiPrompt/AiPromptModal.vue.d.ts +11 -0
  59. package/lib/apps/canvas-builder/components/container/CanvasCompletionWizard/CanvasCompletionWizard.vue.d.ts +4 -0
  60. package/lib/apps/canvas-builder/components/container/CanvasContent/CanvasContent.vue.d.ts +467 -1
  61. package/lib/apps/canvas-builder/components/container/ComponentDrawer/ComponentDrawer.vue.d.ts +2 -1
  62. package/lib/apps/{browser/components/BatchMoveItemsModal/BatchMoveItemsModal.vue.d.ts → canvas-builder/components/container/ComponentDrawerSettings/CanvasHomeSettings.vue.d.ts} +1 -1
  63. package/lib/apps/canvas-builder/components/container/ComponentEdit/ComponentEdit.vue.d.ts +3 -1
  64. package/lib/apps/canvas-builder/components/container/ControlBar/ControlBar.vue.d.ts +3 -4
  65. package/lib/apps/canvas-builder/components/container/ControlBar/ControlBarReorder.vue.d.ts +4 -5
  66. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderButton.vue.d.ts +3 -4
  67. package/lib/apps/canvas-builder/components/container/ControlBar/ReorderTitle.vue.d.ts +1 -1
  68. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +23 -51
  69. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +36 -44
  70. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentRevamp.vue.d.ts +30 -53
  71. package/lib/apps/canvas-builder/components/container/EditableComponent/ResizeHandles.vue.d.ts +5 -8
  72. package/lib/apps/canvas-builder/components/container/LinkableComponent/LinkableComponent.vue.d.ts +31 -0
  73. package/lib/apps/canvas-builder/components/container/Navbar/Navbar.vue.d.ts +1 -1
  74. package/lib/apps/canvas-builder/components/container/NavigationWrapper/NavigationWrapper.vue.d.ts +3 -2
  75. package/lib/apps/canvas-builder/components/container/Navigator/NavigatorPresentation.vue.d.ts +9 -10
  76. package/lib/apps/canvas-builder/components/container/PlaceholderComponent/PlaceholderComponent.vue.d.ts +1 -1
  77. package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +4 -7
  78. package/lib/apps/canvas-builder/components/ui/Block/BlockToolbar.vue.d.ts +5 -6
  79. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.edit.vue.d.ts +1 -1
  80. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.raw.vue.d.ts +3 -5
  81. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.settings.vue.d.ts +296 -9
  82. package/lib/apps/canvas-builder/components/ui/Carousel/Carousel.vue.d.ts +8 -15
  83. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayer.vue.d.ts +61 -16
  84. package/lib/apps/canvas-builder/components/ui/CollectionPlayer/CollectionPlayerEmpty.vue.d.ts +5 -6
  85. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.edit.vue.d.ts +1 -1
  86. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.raw.vue.d.ts +7 -6
  87. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGrid.vue.d.ts +7 -14
  88. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridCarousel.vue.d.ts +323 -4
  89. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridDeletedFileItem.vue.d.ts +1 -1
  90. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridFileItem.vue.d.ts +4 -6
  91. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridItem.vue.d.ts +7 -9
  92. package/lib/apps/canvas-builder/components/ui/ContentGrid/ContentGridToolbar.vue.d.ts +5 -9
  93. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.edit.vue.d.ts +5 -0
  94. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.raw.vue.d.ts +16 -0
  95. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.settings.vue.d.ts +7 -0
  96. package/lib/apps/canvas-builder/components/ui/DataCharts/DataCharts.vue.d.ts +26 -0
  97. package/lib/apps/canvas-builder/components/ui/DataCharts/types.d.ts +57 -0
  98. package/lib/apps/{browser/components/Content/AllContent/Table/FoldersFilesTable.vue.d.ts → canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.edit.vue.d.ts} +1 -1
  99. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.grouped.vue.d.ts +17 -0
  100. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.header.vue.d.ts +19 -0
  101. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.simple.vue.d.ts +27 -0
  102. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.raw.vue.d.ts +18 -0
  103. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.settings.vue.d.ts +8 -0
  104. package/lib/apps/canvas-builder/components/ui/DynamicDataTable/DynamicDataTable.vue.d.ts +26 -0
  105. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.edit.vue.d.ts +3 -4
  106. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.raw.vue.d.ts +9 -11
  107. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.settings.vue.d.ts +641 -6
  108. package/lib/apps/canvas-builder/components/ui/Embeddable/Embeddable.vue.d.ts +7 -13
  109. package/lib/apps/canvas-builder/components/ui/Grid/Grid.vue.d.ts +13 -19
  110. package/lib/apps/canvas-builder/components/ui/Grid/GridItemTooltip.vue.d.ts +3 -4
  111. package/lib/apps/canvas-builder/components/ui/Html/Html.vue.d.ts +6 -12
  112. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.edit.vue.d.ts +3 -4
  113. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.raw.vue.d.ts +8 -10
  114. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.settings.vue.d.ts +294 -6
  115. package/lib/apps/canvas-builder/components/ui/IFrame/IFrame.vue.d.ts +8 -15
  116. package/lib/apps/canvas-builder/components/ui/Link/Link.edit.vue.d.ts +1 -1
  117. package/lib/apps/canvas-builder/components/ui/Link/Link.raw.vue.d.ts +5 -6
  118. package/lib/apps/canvas-builder/components/ui/Link/Link.settings.vue.d.ts +293 -5
  119. package/lib/apps/canvas-builder/components/ui/Link/Link.vue.d.ts +8 -13
  120. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.edit.vue.d.ts +1 -1
  121. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.raw.vue.d.ts +14 -10
  122. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.settings.vue.d.ts +295 -8
  123. package/lib/apps/canvas-builder/components/ui/Multimedia/Multimedia.vue.d.ts +10 -16
  124. package/lib/apps/canvas-builder/components/ui/Page/Page.settings.vue.d.ts +293 -5
  125. package/lib/apps/canvas-builder/components/ui/Page/Page.vue.d.ts +12 -18
  126. package/lib/apps/canvas-builder/components/ui/PageBreak/PageBreak.vue.d.ts +5 -9
  127. package/lib/apps/canvas-builder/components/ui/Root/Root.settings.vue.d.ts +350 -1
  128. package/lib/apps/canvas-builder/components/ui/Scribble/Scribble.vue.d.ts +13 -16
  129. package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +5 -5
  130. package/lib/apps/canvas-builder/components/ui/SectionList/RestrictedSectionSelector.vue.d.ts +12 -0
  131. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.raw.vue.d.ts +18 -11
  132. package/lib/apps/canvas-builder/components/ui/SectionList/SectionList.vue.d.ts +50 -13
  133. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListCollapsibles.vue.d.ts +13 -12
  134. package/lib/apps/canvas-builder/components/ui/SectionList/SectionListStrategySelector.vue.d.ts +21 -0
  135. package/lib/apps/canvas-builder/components/ui/SectionList/SectionRecommendationTile.vue.d.ts +5 -7
  136. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.helpers.d.ts +0 -1
  137. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelector.vue.d.ts +12 -8
  138. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +12 -21
  139. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorSelected.vue.d.ts +5 -6
  140. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +7 -18
  141. package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorWithDragAndDrop.vue.d.ts +42 -9
  142. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.raw.vue.d.ts +3 -4
  143. package/lib/apps/canvas-builder/components/ui/Timeline/Timeline.vue.d.ts +7 -13
  144. package/lib/apps/canvas-builder/composables/useAiPrompt.d.ts +6 -0
  145. package/lib/apps/canvas-builder/composables/useCanvas.d.ts +353 -119
  146. package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +68 -36
  147. package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +56 -24
  148. package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +616 -20
  149. package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +2 -2
  150. package/lib/apps/canvas-builder/composables/useComponentStyle.d.ts +34 -7
  151. package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +10 -1
  152. package/lib/apps/canvas-builder/composables/useCrmShape.d.ts +2 -0
  153. package/lib/apps/canvas-builder/composables/usePrintMode.d.ts +9 -0
  154. package/lib/apps/canvas-builder/constants/theme.const.d.ts +4 -0
  155. package/lib/apps/canvas-builder/types/canvas.d.ts +125 -54
  156. package/lib/apps/canvas-builder/util/print.util.d.ts +1 -0
  157. package/lib/apps/canvas-selector/appTypes.d.ts +2 -0
  158. package/lib/apps/canvas-selector/components/CanvasListItem.vue.d.ts +4 -14
  159. package/lib/apps/canvas-selector/components/CanvasTemplates.vue.d.ts +3 -1
  160. package/lib/apps/canvas-selector/components/Navbar.vue.d.ts +1 -1
  161. package/lib/apps/canvas-selector/components/PersonalCanvases.vue.d.ts +3 -1
  162. package/lib/apps/canvas-selector/components/SectionTemplates.vue.d.ts +3 -1
  163. package/lib/apps/canvas-selector/components/Sections.vue.d.ts +3 -1
  164. package/lib/apps/canvas-selector/stores/app.d.ts +70 -98
  165. package/lib/apps/collection-player/App.vue.d.ts +9 -14
  166. package/lib/apps/collection-player/components/AppFooter.vue.d.ts +1 -1
  167. package/lib/apps/collection-player/components/AppHeader.vue.d.ts +1 -1
  168. package/lib/apps/collection-player/components/AppWrapper.vue.d.ts +2 -1
  169. package/lib/apps/collection-player/components/MainContent.vue.d.ts +4 -1
  170. package/lib/apps/collection-player/components/MainImage.vue.d.ts +3 -7
  171. package/lib/apps/collection-player/components/SlideContent.vue.d.ts +8 -0
  172. package/lib/apps/collection-player/components/TableOfContents.vue.d.ts +1 -1
  173. package/lib/apps/collection-player/composables/fullscreen.use.d.ts +2 -6
  174. package/lib/apps/collection-player/composables/image-cache.use.d.ts +1 -0
  175. package/lib/apps/collection-player/composables/keyboard-bindings.use.d.ts +6 -0
  176. package/lib/apps/collection-player/composables/moving-group-gestures.use.d.ts +5 -5
  177. package/lib/apps/collection-player/composables/navigation-cache.use.d.ts +10 -0
  178. package/lib/apps/collection-player/export.d.ts +1 -0
  179. package/lib/apps/collection-player/stores/app.store.d.ts +9 -4
  180. package/lib/apps/collection-player/types/collection-player.type.d.ts +2 -0
  181. package/lib/apps/collection-selector/components/AppFooter.vue.d.ts +1 -1
  182. package/lib/apps/collection-selector/components/AppHeader.vue.d.ts +6 -3
  183. package/lib/apps/collection-selector/components/CollectionGroup.vue.d.ts +4 -4
  184. package/lib/apps/collection-selector/components/CollectionItem.vue.d.ts +5 -9
  185. package/lib/apps/collection-selector/components/CollectionToolbar.vue.d.ts +4 -1
  186. package/lib/apps/collection-selector/components/modals/MoveSlideModal.vue.d.ts +4 -6
  187. package/lib/apps/collection-selector/composables/content-warning.use.d.ts +6 -0
  188. package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
  189. package/lib/apps/collection-selector/constants.d.ts +5 -0
  190. package/lib/apps/collection-selector/export.d.ts +2 -0
  191. package/lib/apps/collection-selector/stores/app.store.d.ts +18 -122
  192. package/lib/apps/collection-selector/types/collection-selector.type.d.ts +10 -0
  193. package/lib/apps/collection-selector/types/common.type.d.ts +5 -4
  194. package/lib/apps/collection-selector/utils/data.util.d.ts +1 -1
  195. package/lib/apps/content-selector/App.vue.d.ts +3 -1
  196. package/lib/apps/content-selector/appTypes.d.ts +5 -1
  197. package/lib/apps/content-selector/components/AiImages.vue.d.ts +2 -0
  198. package/lib/apps/content-selector/components/Assets/AssetUploader.vue.d.ts +3 -1
  199. package/lib/apps/content-selector/components/Assets.vue.d.ts +1 -1
  200. package/lib/apps/content-selector/components/Content/ActionsToolbar/ActionsToolbar.vue.d.ts +1 -1
  201. package/lib/apps/content-selector/components/Content/AllContent/Grid/FoldersFilesGrid.vue.d.ts +1 -1
  202. package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesList.vue.d.ts +176 -1
  203. package/lib/apps/content-selector/components/Content/AllContent/List/FoldersFilesListItem.vue.d.ts +9 -18
  204. package/lib/apps/content-selector/components/Content/SelectionPanel/SelectionPanel.vue.d.ts +1 -1
  205. package/lib/apps/content-selector/components/Content.vue.d.ts +1 -1
  206. package/lib/apps/content-selector/components/PexelsImages.vue.d.ts +12 -0
  207. package/lib/apps/content-selector/components/ui/GridItem.vue.d.ts +10 -27
  208. package/lib/apps/content-selector/components/ui/MediaPreview.vue.d.ts +1 -1
  209. package/lib/apps/content-selector/stores/api.d.ts +13 -12
  210. package/lib/apps/content-selector/stores/app.d.ts +18 -2
  211. package/lib/apps/content-selector/util/file.d.ts +8 -0
  212. package/lib/apps/notes/NotesApp.vue.d.ts +7 -11
  213. package/lib/apps/ppt-conversion-selector/App.vue.d.ts +25 -0
  214. package/lib/apps/ppt-conversion-selector/components/AppFooter.vue.d.ts +11 -0
  215. package/lib/apps/ppt-conversion-selector/components/AppHeader.vue.d.ts +6 -0
  216. package/lib/apps/ppt-conversion-selector/components/CollectionGroup.vue.d.ts +6 -0
  217. package/lib/apps/ppt-conversion-selector/components/CollectionItem.vue.d.ts +17 -0
  218. package/lib/apps/ppt-conversion-selector/components/CollectionToolbar.vue.d.ts +2 -0
  219. package/lib/apps/ppt-conversion-selector/components/modals/MoveSlideModal.vue.d.ts +14 -0
  220. package/lib/apps/ppt-conversion-selector/composables/canvas.use.d.ts +34 -0
  221. package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +70 -0
  222. package/lib/apps/ppt-conversion-selector/composables/table-input.use.d.ts +15 -0
  223. package/lib/apps/ppt-conversion-selector/constants.d.ts +5 -0
  224. package/lib/apps/ppt-conversion-selector/export.d.ts +1 -0
  225. package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +148 -0
  226. package/lib/apps/ppt-conversion-selector/types/model.type.d.ts +11 -0
  227. package/lib/apps/ppt-conversion-selector/types/move-slide-modal.type.d.ts +5 -0
  228. package/lib/apps/ppt-conversion-selector/utils/content-selector-adapter.util.d.ts +1 -0
  229. package/lib/apps/ppt-conversion-selector/utils/data.util.d.ts +19 -0
  230. package/lib/apps/ppt-conversion-selector/utils/theme-overrides.util.d.ts +8 -0
  231. package/lib/components/CAnimationSelector/CAnimationSelector.vue.d.ts +7 -6
  232. package/lib/components/CApexChart/CApexChartLine.vue.d.ts +3 -7
  233. package/lib/components/CAttributesForm/CAttributesForm.vue.d.ts +17 -0
  234. package/lib/components/CAutoComplete/CAutoComplete.vue.d.ts +3 -2
  235. package/lib/components/CAvatar/CAvatar.vue.d.ts +3 -2
  236. package/lib/components/CBackgroundImageThemeOptions/CBackgroundImageThemeOptions.vue.d.ts +9 -19
  237. package/lib/components/CBatchMoveItemsModal/CBatchMoveItemsModal.vue.d.ts +31 -0
  238. package/lib/components/CBorderRadiusInput/CBorderRadiusInput.vue.d.ts +19 -0
  239. package/lib/components/CBulkDeleteErrors/CBulkDeleteErrors.vue.d.ts +3 -7
  240. package/lib/components/CBulkToolbar/CBulkToolbar.vue.d.ts +21 -33
  241. package/lib/components/CButton/CButton.vue.d.ts +2 -1
  242. package/lib/components/CCanvasModal/CCanvasModal.vue.d.ts +2 -1
  243. package/lib/components/CCanvasSelector/CCanvasSelector.vue.d.ts +5 -12
  244. package/lib/components/CCanvasSelector/CCanvasSelectorListItem.vue.d.ts +5 -8
  245. package/lib/components/CCard/CCard.vue.d.ts +3 -2
  246. package/lib/components/CCarousel/CCarousel.vue.d.ts +326 -9
  247. package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcherContent.vue.d.ts +1 -1
  248. package/lib/components/CCheckbox/CCheckbox.vue.d.ts +9 -1
  249. package/lib/components/CChip/CChip.vue.d.ts +12 -16
  250. package/lib/components/CCollapse/CCollapse.vue.d.ts +3 -2
  251. package/lib/components/CCollapse/CCollapseItem.vue.d.ts +3 -2
  252. package/lib/components/CCollapseTransition/CCollapseTransition.vue.d.ts +2 -1
  253. package/lib/components/CColorPicker/CColorPicker.vue.d.ts +3 -2
  254. package/lib/components/CComponentListItem/CComponentListItem.vue.d.ts +4 -2
  255. package/lib/components/CComponentThemeOptions/CComponentThemeOptions.vue.d.ts +17 -22
  256. package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +300 -17
  257. package/lib/components/CConfirmation/CConfirmationAction.vue.d.ts +1 -1
  258. package/lib/components/CConfirmation/CConfirmationContent.vue.d.ts +3 -2
  259. package/lib/components/CConfirmation/CConfirmationHeader.vue.d.ts +3 -2
  260. package/lib/components/CConfirmationModal/CConfirmationModal.vue.d.ts +2 -1
  261. package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +4 -15
  262. package/lib/components/CContactSelector/CContactSelector.vue.d.ts +5 -22
  263. package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +23 -25
  264. package/lib/components/CContactSelector/CContactSelectorColleagues.vue.d.ts +4 -10
  265. package/lib/components/CContactSelector/CContactSelectorSelected.vue.d.ts +14 -23
  266. package/lib/components/CCreateCanvasModal/CCreateCanvasModalTemplatesSelectOption.vue.d.ts +5 -13
  267. package/lib/components/CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts +290 -1
  268. package/lib/components/CCreateThemeModal/CCreateThemeModal.vue.d.ts +19 -0
  269. package/lib/components/CCreateThemeModal/steps/CThemeColorsStep.vue.d.ts +10 -0
  270. package/lib/components/CCreateThemeModal/steps/CThemeSettingsStep.vue.d.ts +319 -0
  271. package/lib/components/CCreateThemeModal/steps/CThemeTypographyStep.vue.d.ts +13 -0
  272. package/lib/components/CDataTable/CDataTable.vue.d.ts +7834 -1
  273. package/lib/components/CDetailPageSectionButtons/CDetailPageSectionButtons.vue.d.ts +1 -1
  274. package/lib/components/CDivider/CDivider.vue.d.ts +10 -2
  275. package/lib/components/CDrawer/CDrawer.vue.d.ts +9 -1
  276. package/lib/components/CDrawerContent/CDrawerContent.vue.d.ts +9 -1
  277. package/lib/components/CDropdown/CDropdown.vue.d.ts +3 -2
  278. package/lib/components/CDynamicIndicator/CDynamicIndicator.vue.d.ts +3 -8
  279. package/lib/components/CEmpty/CEmpty.vue.d.ts +3 -2
  280. package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +52 -4
  281. package/lib/components/CError/CErrorFullScreen.vue.d.ts +13 -21
  282. package/lib/components/CFeedback/CFeedback.vue.d.ts +9 -10
  283. package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +4 -10
  284. package/lib/components/CFilePanel/BasicInfo.vue.d.ts +1 -1
  285. package/lib/components/CFilePanel/CFilePanel.vue.d.ts +4 -7
  286. package/lib/components/CFilePanel/Details.vue.d.ts +1 -1
  287. package/lib/components/CFilePanel/Tags.vue.d.ts +1 -1
  288. package/lib/components/CFileThumbnail/CFileThumbnail.vue.d.ts +4 -9
  289. package/lib/components/CFileViewer/CFileViewer.vue.d.ts +214 -58
  290. package/lib/components/CFileViewer/CFileViewerCloseDialogContent.vue.d.ts +5 -6
  291. package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +2 -0
  292. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +350 -1
  293. package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +3 -8
  294. package/lib/components/CFileViewer/pdf/CFileViewerSearchResultsSidebar.pdf.vue.d.ts +1 -1
  295. package/lib/components/CFileViewer/pdf/CLinkAnnotationsPopover.pdf.vue.d.ts +10 -12
  296. package/lib/components/CFilesAccessInfo/CFilesAccessInfo.vue.d.ts +2 -1
  297. package/lib/components/CFilesAccessManage/CFilesAccessManage.vue.d.ts +2 -2
  298. package/lib/components/CFilesFolderDeleteDialogContent/CFilesFolderDeleteDialogContent.vue.d.ts +3 -5
  299. package/lib/components/CFontSelect/CFontSelect.vue.d.ts +11 -14
  300. package/lib/components/CFullScreenLoader/CFullScreenLoader.vue.d.ts +4 -7
  301. package/lib/components/CGlobalLoader/CGlobalLoader.vue.d.ts +4 -1
  302. package/lib/components/CGlobalSearch/CGlobalSearch.vue.d.ts +48 -1
  303. package/lib/components/CGlobalSearch/CGlobalSearchShortcuts.vue.d.ts +1 -1
  304. package/lib/components/CGlobalSearch/CResult.vue.d.ts +1 -1
  305. package/lib/components/CGlobalSearch/CResultSection.vue.d.ts +3 -2
  306. package/lib/components/CGroupsAccessInfo/CGroupsAccessInfo.vue.d.ts +2 -1
  307. package/lib/components/CHeightInput/CHeightInput.vue.d.ts +10 -0
  308. package/lib/components/CHelpText/CHelpText.vue.d.ts +2 -1
  309. package/lib/components/CIcon/CIcon.vue.d.ts +2 -0
  310. package/lib/components/CImage/CBrokenImage.vue.d.ts +6 -6
  311. package/lib/components/CImage/CImage.vue.d.ts +300 -7
  312. package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -13
  313. package/lib/components/CInput/CInput.vue.d.ts +1034 -1
  314. package/lib/components/CInputPlaceholder/CInputPlaceholder.vue.d.ts +7 -7
  315. package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +4 -6
  316. package/lib/components/CKnockNotificationsAppWrapper/CKnockNotificationsAppWrapper.vue.d.ts +3 -1
  317. package/lib/components/CLabelWithHelpText/CLabelWithHelpText.vue.d.ts +6 -6
  318. package/lib/components/CList/CList.vue.d.ts +15 -17
  319. package/lib/components/CList/CListItem.vue.d.ts +6 -5
  320. package/lib/components/CMetaDataBadge/CMetaDataBadge.vue.d.ts +9 -0
  321. package/lib/components/CModal/CModal.vue.d.ts +3 -2
  322. package/lib/components/CMovableWidget/CMovableWidget.vue.d.ts +10 -9
  323. package/lib/components/CMultiSelect/CMultiSelect.vue.d.ts +4 -7
  324. package/lib/components/COverflowWrapper/COverflowWrapper.vue.d.ts +22 -0
  325. package/lib/components/CPaddingInput/CPaddingInput.vue.d.ts +5 -7
  326. package/lib/components/CPaginationButtons/CPaginationButtons.vue.d.ts +5 -10
  327. package/lib/components/CPaletteConfigurator/CPaletteConfigurator.vue.d.ts +69 -6
  328. package/lib/components/CPopover/CPopover.vue.d.ts +3 -2
  329. package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementExtended.vue.d.ts +5 -10
  330. package/lib/components/CPopularityAndEngagementIcons/CPopularityAndEngagementIcons.vue.d.ts +1 -1
  331. package/lib/components/CQueryBuilder/CQueryBuilder.vue.d.ts +18 -0
  332. package/lib/components/CQuickFilters/CQuickFilters.vue.d.ts +5 -9
  333. package/lib/components/CRate/CRate.vue.d.ts +3 -2
  334. package/lib/components/CRatingFeedback/CRatingFeedback.vue.d.ts +4 -7
  335. package/lib/components/CRichTextEditor/CRichTextEditor.vue.d.ts +31 -3
  336. package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +1 -1
  337. package/lib/components/CRichTextEditor/components/CDynamicValueTreeSelect.vue.d.ts +2440 -11
  338. package/lib/components/CRichTextEditor/components/CEditorMenu.vue.d.ts +2 -1
  339. package/lib/components/CRichTextEditor/components/CFontSizeSelect.vue.d.ts +44 -1
  340. package/lib/components/CRichTextEditor/components/CHandlebarsHelperTreeSelect.vue.d.ts +2443 -0
  341. package/lib/components/CRichTextEditor/components/CHyperLinkToolbar.vue.d.ts +1034 -1
  342. package/lib/components/CRichTextEditor/components/CLineHeightSelect.vue.d.ts +9 -0
  343. package/lib/components/CRichTextEditor/components/CTableToolbar.vue.d.ts +3 -8
  344. package/lib/components/CSearch/CSearchOnClick.vue.d.ts +11 -14
  345. package/lib/components/CSearch/CSearchOnClickWithSuggestions.vue.d.ts +23 -0
  346. package/lib/components/CSearchFilters/CSearchFilters.vue.d.ts +95 -25
  347. package/lib/components/CSecondaryNav/CSecondaryNav.vue.d.ts +3 -2
  348. package/lib/components/CSelect/CSelect.vue.d.ts +3 -2
  349. package/lib/components/CSettingsEditor/CSettingsEditor.vue.d.ts +5 -7
  350. package/lib/components/CShortcut/CShortcut.vue.d.ts +3 -2
  351. package/lib/components/CShortcut/CShortcutIcon.vue.d.ts +1 -1
  352. package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +5 -13
  353. package/lib/components/CSingleSelect/CSingleSelect.vue.d.ts +5 -7
  354. package/lib/components/CSlider/CSlider.vue.d.ts +3 -2
  355. package/lib/components/CSpin/CSpin.vue.d.ts +3 -2
  356. package/lib/components/CSwatchSelector/CSwatchSelector.vue.d.ts +5 -8
  357. package/lib/components/CSwitch/CSwitch.vue.d.ts +18 -1
  358. package/lib/components/CTable/CTable.vue.d.ts +18 -20
  359. package/lib/components/CTableColumnsSettings/CTableColumnsSettings.vue.d.ts +1 -0
  360. package/lib/components/CTableEditActionButtons/CTableEditActionButtons.vue.d.ts +1 -1
  361. package/lib/components/CTableInput/CTableInput.vue.d.ts +1128 -60
  362. package/lib/components/CTableMore/CTableMore.vue.d.ts +6 -14
  363. package/lib/components/CTableSelect/CTableSelect.vue.d.ts +1 -1
  364. package/lib/components/CTag/CTag.vue.d.ts +9 -1
  365. package/lib/components/CTags/CTags.vue.d.ts +4634 -1
  366. package/lib/components/CThemeEditor/CThemeEditor.vue.d.ts +3 -1
  367. package/lib/components/CThemePreview/CThemePreview.vue.d.ts +20 -0
  368. package/lib/components/CTimeline/CTimeline.vue.d.ts +4 -5
  369. package/lib/components/CTimeline/CTimelineControl.vue.d.ts +1 -1
  370. package/lib/components/CTimeline/CTimelineModal.vue.d.ts +4 -5
  371. package/lib/components/CTooltip/CTooltip.vue.d.ts +3 -2
  372. package/lib/components/CTooltipWrapper/CTooltipWrapper.vue.d.ts +7 -7
  373. package/lib/components/CTypographyConfigurator/CTypographyConfigurator.vue.d.ts +6 -7
  374. package/lib/components/CTypographyConfigurator/CTypographyConfiguratorItem.vue.d.ts +6 -7
  375. package/lib/components/CUpsertFolderModal/CUpsertFolderModal.vue.d.ts +303 -0
  376. package/lib/components/CUserMenu/CUserMenu.vue.d.ts +370 -9
  377. package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue.d.ts +3 -1
  378. package/lib/components/CVideo/CVideo.vue.d.ts +10 -22
  379. package/lib/components/CVirtualTable/CVirtualTable.vue.d.ts +13 -14
  380. package/lib/components/CVirtualTable/CVirtualTableRow.vue.d.ts +3 -2
  381. package/lib/components/CWarningAlert/CWarningAlert.vue.d.ts +11 -0
  382. package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +252 -44
  383. package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +9 -16
  384. package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +5 -15
  385. package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +770 -55
  386. package/lib/components/canvas-templates/CTemplateManagementActionsCell.vue.d.ts +25 -21
  387. package/lib/components/canvas-templates/CTemplateManagementActionsCellIconWrapper.vue.d.ts +3 -8
  388. package/lib/components/canvas-templates/CTemplateManagementListItem.vue.d.ts +54 -0
  389. package/lib/components/canvas-templates/CTemplateManagementToolbar.vue.d.ts +220 -19
  390. package/lib/components/canvases/CCanvasDeleteDialogContent.vue.d.ts +5 -8
  391. package/lib/components/canvases/CCanvasMetadataFilters.vue.d.ts +5 -11
  392. package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +27 -3
  393. package/lib/components/filters/CDateRangeFilter.vue.d.ts +2 -1
  394. package/lib/components/filters/CSearchFilter.vue.d.ts +90 -2
  395. package/lib/components/filters/CSelectFilter.vue.d.ts +2 -4
  396. package/lib/components/savedCanvases/CSavedCanvasesManagement.vue.d.ts +533 -64
  397. package/lib/components/savedCanvases/CSavedCanvasesManagementActionsCell.vue.d.ts +11 -22
  398. package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +3 -4
  399. package/lib/components/savedCanvases/CSavedCanvasesManagementOwnerCell.vue.d.ts +1722 -3
  400. package/lib/components/savedCanvases/CSavedCanvasesManagementToolbar.vue.d.ts +6 -18
  401. package/lib/components/savedCanvases/CSavedCanvasesManagementUsedTemplateCell.vue.d.ts +7 -10
  402. package/lib/components/savedCanvases/smartFolders/SmartFolderNameCell.vue.d.ts +5 -6
  403. package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +25 -30
  404. package/lib/components/savedCanvases/smartFolders/SmartFolders.vue.d.ts +130 -7
  405. package/lib/components/savedCanvases/smartFolders/SmartFoldersMissingConfig.vue.d.ts +1 -1
  406. package/lib/components/sections/CSectionManagement.vue.d.ts +237 -50
  407. package/lib/components/sections/CSectionManagementActionsCell.vue.d.ts +11 -18
  408. package/lib/components/sections/CSectionManagementToolbar.vue.d.ts +5 -12
  409. package/lib/components/themes/CThemeManagement.vue.d.ts +354 -0
  410. package/lib/components/themes/CThemeManagementActionsCell.vue.d.ts +24 -0
  411. package/lib/components/themes/CThemeManagementActionsCellIconWrapper.vue.d.ts +10 -0
  412. package/lib/components/themes/CThemeManagementToolbar.vue.d.ts +16 -0
  413. package/lib/composables/appsDb.use.d.ts +8 -1
  414. package/lib/composables/useCanvasLocks.d.ts +54 -0
  415. package/lib/composables/useCanvasOverlay.d.ts +13 -1
  416. package/lib/composables/useCoreApi.d.ts +7 -0
  417. package/lib/composables/useFileDisplayHelpers.d.ts +7 -2
  418. package/lib/composables/useMetadataSearch.d.ts +19 -0
  419. package/lib/composables/useMetadataTemplates.d.ts +246 -0
  420. package/lib/composables/useWindowEvents.d.ts +5 -3
  421. package/lib/constants/appsDb.const.d.ts +4 -0
  422. package/lib/constants/cdp.const.d.ts +2 -2
  423. package/lib/constants/color.const.d.ts +1 -0
  424. package/lib/constants/query-builder.const.d.ts +1 -0
  425. package/lib/main.lib.d.ts +25 -1
  426. package/lib/sdk/api/HighLevelApi.d.ts +20 -1
  427. package/lib/sdk/api/modules/admin/canvas.admin.d.ts +20 -0
  428. package/lib/sdk/api/modules/admin/content.admin.d.ts +21 -3
  429. package/lib/sdk/api/modules/admin/files.admin.d.ts +0 -19
  430. package/lib/sdk/api/modules/admin/index.d.ts +7 -1
  431. package/lib/sdk/api/modules/admin/types.admin.d.ts +55 -6
  432. package/lib/sdk/api/modules/canvas.d.ts +7 -0
  433. package/lib/sdk/api/modules/env.d.ts +1 -1
  434. package/lib/sdk/api/modules/folders.core.d.ts +7 -0
  435. package/lib/sdk/api/modules/index.d.ts +2 -0
  436. package/lib/sdk/api/modules/theme.d.ts +10 -0
  437. package/lib/sdk/api/modules/ui/canvas.ui.d.ts +20 -0
  438. package/lib/sdk/api/modules/ui/content.ui.d.ts +2 -2
  439. package/lib/sdk/api/modules/ui/index.d.ts +6 -0
  440. package/lib/sdk/api/modules/ui/types.ui.d.ts +28 -4
  441. package/lib/sdk/interfaces.d.ts +24 -1
  442. package/lib/sdk/main.d.ts +92 -5
  443. package/lib/sdk/payload.types.d.ts +8 -0
  444. package/lib/theme/light.d.ts +6 -0
  445. package/lib/theme/theme.types.d.ts +7 -0
  446. package/lib/types/app.d.ts +4 -0
  447. package/lib/types/canvasTheme.d.ts +37 -0
  448. package/lib/types/canvases.d.ts +9 -0
  449. package/lib/types/core/MetadataFilter.d.ts +44 -0
  450. package/lib/types/core/UpsertPptxSlideImages.d.ts +12 -0
  451. package/lib/types/core/index.d.ts +2 -0
  452. package/lib/types/files.d.ts +5 -2
  453. package/lib/types/folder.d.ts +35 -0
  454. package/lib/types/instanceSettings.types.d.ts +8 -0
  455. package/lib/types/launchDarkly.types.d.ts +4 -1
  456. package/lib/types/organizationSettings.types.d.ts +9 -0
  457. package/lib/types/query-builder.types.d.ts +7 -0
  458. package/lib/types/recentFiles.types.d.ts +2 -1
  459. package/lib/types/search.d.ts +5 -0
  460. package/lib/util/anchor.d.ts +1 -1
  461. package/lib/util/array.d.ts +1 -1
  462. package/lib/util/color.d.ts +2 -0
  463. package/lib/util/file.util.d.ts +4 -0
  464. package/lib/util/image.d.ts +6 -0
  465. package/lib/util/query-builder.util.d.ts +2 -0
  466. package/lib/util/style.util.d.ts +1 -0
  467. package/lib/util/tree-transformation.util.d.ts +6 -0
  468. package/lib/util/url.d.ts +3 -0
  469. package/package.json +1 -1
  470. package/types/openapi/index.d.ts +0 -4
  471. package/types/openapi/models/AuthToken.d.ts +1 -0
  472. package/types/openapi/models/AuthTokenRequest.d.ts +1 -0
  473. package/types/openapi/models/Canvas.d.ts +0 -2
  474. package/types/openapi/models/CanvasCreate.d.ts +0 -2
  475. package/types/openapi/models/CanvasRecommendedFile.d.ts +1 -2
  476. package/types/openapi/models/CanvasRetrieve.d.ts +0 -2
  477. package/types/openapi/models/CanvasUpdate.d.ts +0 -2
  478. package/types/openapi/models/DeletedCanvas.d.ts +0 -2
  479. package/types/openapi/models/DeletedFile.d.ts +1 -2
  480. package/types/openapi/models/DeletedInstance.d.ts +1 -1
  481. package/types/openapi/models/FavoriteFile.d.ts +1 -0
  482. package/types/openapi/models/FavoriteFileRequest.d.ts +1 -0
  483. package/types/openapi/models/File.d.ts +1 -2
  484. package/types/openapi/models/FileCreate.d.ts +1 -2
  485. package/types/openapi/models/FileCreateRequest.d.ts +1 -0
  486. package/types/openapi/models/FileRetrieve.d.ts +1 -2
  487. package/types/openapi/models/FileStatusEnum.d.ts +3 -1
  488. package/types/openapi/models/FileUpdate.d.ts +1 -2
  489. package/types/openapi/models/FileUpdateRequest.d.ts +1 -0
  490. package/types/openapi/models/FolderFile.d.ts +3 -0
  491. package/types/openapi/models/Instance.d.ts +1 -1
  492. package/types/openapi/models/InstanceAnalytics.d.ts +5 -3
  493. package/types/openapi/models/InstanceMembershipUser.d.ts +1 -0
  494. package/types/openapi/models/InstanceRequest.d.ts +1 -1
  495. package/types/openapi/models/InstanceUpdate.d.ts +1 -1
  496. package/types/openapi/models/InstanceUpdateRequest.d.ts +1 -1
  497. package/types/openapi/models/MetadataTemplateField.d.ts +1 -1
  498. package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +1 -1
  499. package/types/openapi/models/MetadataTemplateSection.d.ts +1 -0
  500. package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +1 -0
  501. package/types/openapi/models/PatchedFileUpdateRequest.d.ts +1 -0
  502. package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +1 -1
  503. package/types/openapi/models/PatchedUserRequest.d.ts +1 -1
  504. package/types/openapi/models/SearchCanvas.d.ts +0 -1
  505. package/types/openapi/models/SearchResult.d.ts +1 -3
  506. package/types/openapi/models/SharedLink.d.ts +0 -1
  507. package/types/openapi/models/SharedLinkCreate.d.ts +0 -1
  508. package/types/openapi/models/SharedLinkCreateRequest.d.ts +0 -1
  509. package/types/openapi/models/SharedLinkInstance.d.ts +1 -0
  510. package/types/openapi/models/User.d.ts +1 -1
  511. package/types/openapi/models/UserRequest.d.ts +1 -1
  512. package/lib/apps/browser/components/UpsertFolderModal/UpsertFolderModal.vue.d.ts +0 -9
  513. package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentLegacy.vue.d.ts +0 -113
  514. package/lib/apps/canvas-builder/components/container/Navigator/Navigator.vue.d.ts +0 -8
  515. package/lib/apps/canvas-builder/components/ui/Text/Text.vue.d.ts +0 -31
  516. package/lib/apps/collection-player/composables/arrow-keys.use.d.ts +0 -6
  517. package/lib/apps/collection-selector/App.vue.d.ts +0 -29
  518. package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +0 -17
  519. package/lib/components/CTableTag/CTableTag.vue.d.ts +0 -44
  520. package/types/openapi/models/PaginatedStorageRegionList.d.ts +0 -7
  521. package/types/openapi/models/SearchContentDistributionGroup.d.ts +0 -10
  522. package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +0 -10
  523. package/types/openapi/models/StorageRegion.d.ts +0 -5
@@ -22,5 +22,7 @@ export type CollectionGroup = {
22
22
  };
23
23
  export type CollectionPlayer = {
24
24
  groups: CollectionGroup[];
25
+ filters?: Record<string, any>;
25
26
  name: string;
27
+ hide_footer?: boolean;
26
28
  };
@@ -4,5 +4,5 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
4
4
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
5
5
  onCancel?: (() => any) | undefined;
6
6
  onClose?: (() => any) | undefined;
7
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
7
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
8
8
  export default _default;
@@ -1,6 +1,9 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1
+ type __VLS_Props = {
2
+ hideClose?: boolean;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
5
  close: () => any;
3
- }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
6
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
4
7
  onClose?: (() => any) | undefined;
5
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
6
9
  export default _default;
@@ -1,7 +1,7 @@
1
1
  import { CollectionGroup } from '../../collection-player/types/collection-player.type';
2
- declare const _default: import('vue').DefineComponent<{
2
+ type __VLS_Props = {
3
3
  group: CollectionGroup;
4
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
5
- group: CollectionGroup;
6
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
4
+ filters?: Record<string, any>;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
7
7
  export default _default;
@@ -1,21 +1,17 @@
1
1
  import { CollectionSlide } from '../../collection-player/types/collection-player.type';
2
- declare const _default: import('vue').DefineComponent<{
2
+ type __VLS_Props = {
3
3
  item: CollectionSlide;
4
4
  isFirst?: boolean;
5
5
  isLast?: boolean;
6
6
  disabledMoveToGroup?: boolean;
7
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
9
  moveUp: () => any;
9
10
  moveDown: () => any;
10
11
  moveToGroup: () => any;
11
- }, string, import('vue').PublicProps, Readonly<{
12
- item: CollectionSlide;
13
- isFirst?: boolean;
14
- isLast?: boolean;
15
- disabledMoveToGroup?: boolean;
16
- }> & Readonly<{
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
17
13
  onMoveUp?: (() => any) | undefined;
18
14
  onMoveDown?: (() => any) | undefined;
19
15
  onMoveToGroup?: (() => any) | undefined;
20
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
21
17
  export default _default;
@@ -1,2 +1,5 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ type __VLS_Props = {
2
+ readonlyName?: boolean;
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
2
5
  export default _default;
@@ -1,14 +1,12 @@
1
1
  import { CollectionGroup, CollectionSlide } from '../../../collection-player/types/collection-player.type';
2
- declare const _default: import('vue').DefineComponent<{
2
+ type __VLS_Props = {
3
3
  zIndex?: number;
4
4
  groups: CollectionGroup[];
5
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
7
  close: () => any;
7
8
  moveToGroup: (fromGroup: string, toGroup: string, slide: CollectionSlide) => any;
8
- }, string, import('vue').PublicProps, Readonly<{
9
- zIndex?: number;
10
- groups: CollectionGroup[];
11
- }> & Readonly<{
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
10
  onClose?: (() => any) | undefined;
13
11
  onMoveToGroup?: ((fromGroup: string, toGroup: string, slide: CollectionSlide) => any) | undefined;
14
12
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -0,0 +1,6 @@
1
+ import { CollectionPlayer, CollectionSlide } from '../../collection-player/types/collection-player.type';
2
+ export declare function useContentWarning(): {
3
+ isWarningVisible: import('vue').Ref<boolean, boolean>;
4
+ validateCollectionPlayerContent: (collectionPlayer: CollectionPlayer) => void;
5
+ validateCollectionSlides: (slides: CollectionSlide[]) => void;
6
+ };
@@ -18,6 +18,7 @@ export declare function provideMoveSlideModal(): {
18
18
  readonly id: string;
19
19
  name?: string | undefined;
20
20
  readonly type: import('../../../main.lib').FileTypeEnum;
21
+ tags?: Array<string> | undefined;
21
22
  readonly thumbnail_url: string | null;
22
23
  permissions?: {
23
24
  can_download?: boolean | undefined;
@@ -41,6 +42,7 @@ export declare function provideMoveSlideModal(): {
41
42
  readonly id: string;
42
43
  name?: string | undefined;
43
44
  readonly type: import('../../../main.lib').FileTypeEnum;
45
+ tags?: Array<string> | undefined;
44
46
  readonly thumbnail_url: string | null;
45
47
  permissions?: {
46
48
  can_download?: boolean | undefined;
@@ -63,6 +65,7 @@ export declare function provideMoveSlideModal(): {
63
65
  readonly id: string;
64
66
  name?: string | undefined;
65
67
  readonly type: import('../../../main.lib').FileTypeEnum;
68
+ tags?: Array<string> | undefined;
66
69
  readonly thumbnail_url: string | null;
67
70
  permissions?: {
68
71
  can_download?: boolean | undefined;
@@ -86,6 +89,7 @@ export declare function provideMoveSlideModal(): {
86
89
  readonly id: string;
87
90
  name?: string | undefined;
88
91
  readonly type: import('../../../main.lib').FileTypeEnum;
92
+ tags?: Array<string> | undefined;
89
93
  readonly thumbnail_url: string | null;
90
94
  permissions?: {
91
95
  can_download?: boolean | undefined;
@@ -0,0 +1,5 @@
1
+ export declare const DragConfig: {
2
+ readonly forceAutoScrollFallback: true;
3
+ readonly scrollSensitivity: 100;
4
+ readonly scrollSpeed: 30;
5
+ };
@@ -0,0 +1,2 @@
1
+ export * from './utils/content-selector-adapter.util';
2
+ export * from './utils/data.util';
@@ -1,8 +1,11 @@
1
- import { Ref } from 'vue';
1
+ import { Ref, EmitFn, ComputedRef, ComponentPublicInstance } from 'vue';
2
2
  import { default as useConfirmation } from '../../../composables/useConfirmation';
3
3
  import { CollectionGroup, CollectionPlayer, CollectionSlide } from '../../collection-player/types/collection-player.type';
4
4
  import { FetchFileList, SelectFileContent } from '../types/common.type';
5
- import { File, FileRetrieve, FileContentTypeEnum } from '../../../../types/openapi';
5
+ import { File, FileRetrieve } from '../../../../types/openapi';
6
+ import { Translations } from '../types/collection-selector.type';
7
+ import { Emit } from '../App.vue';
8
+ import { useContentWarning } from '../composables/content-warning.use';
6
9
  type StorePayload = {
7
10
  initialCollection?: CollectionPlayer;
8
11
  t: (key: string, values?: Record<string, string | number>) => string;
@@ -10,9 +13,13 @@ type StorePayload = {
10
13
  selectFileContent: SelectFileContent;
11
14
  attachTo?: HTMLElement | string;
12
15
  openSettings?: () => void;
16
+ closeOnSettings?: boolean;
13
17
  fetchFile: (id: string) => Promise<FileRetrieve>;
14
18
  fetchFileList: FetchFileList;
15
19
  zIndex?: number;
20
+ emit: EmitFn<Emit>;
21
+ translations?: Translations;
22
+ contentRef: Ref<ComponentPublicInstance | null>;
16
23
  };
17
24
  type StoreData = {
18
25
  collection: Ref<CollectionPlayer>;
@@ -26,131 +33,20 @@ type StoreData = {
26
33
  updateCollectionName: (name: string) => void;
27
34
  updateGroupName: (groupId: string, name: string) => void;
28
35
  deleteSlide: (groupId: string, slide: CollectionSlide) => void;
29
- addSlides: (groupId: string) => Promise<CollectionSlide[] | undefined>;
36
+ addSlides: (groupId: string, filters?: Record<string, any>) => Promise<CollectionSlide[] | undefined>;
30
37
  moveSlideToGroup: (fromGroup: string, toGroup: string, slide: CollectionSlide) => void;
31
38
  selectFileContent: SelectFileContent;
32
- openSettings?: () => void;
39
+ openSettings: () => void;
40
+ closeOnSettings?: boolean;
33
41
  fetchFile: (id: string) => Promise<FileRetrieve>;
34
42
  fetchFileList: FetchFileList;
35
43
  childModalZIndex?: number;
44
+ cancel: () => void;
45
+ saveAndClose: () => void;
46
+ translations?: Translations;
47
+ isSettingsButtonVisible: ComputedRef<boolean>;
48
+ contentWarning: ReturnType<typeof useContentWarning>;
36
49
  };
37
- export declare function provideAppStore({ initialCollection, t, confirmation, selectFileContent, attachTo, openSettings, fetchFile, fetchFileList, zIndex, }: StorePayload): {
38
- collection: Ref<{
39
- groups: {
40
- id: string;
41
- name: string;
42
- slides: ({
43
- id: string;
44
- type: "slide";
45
- file: {
46
- metadata?: Record<string, any> | undefined;
47
- readonly id: string;
48
- name?: string | undefined;
49
- readonly type: import('../../../../types/openapi').FileTypeEnum;
50
- readonly thumbnail_url: string | null;
51
- permissions?: {
52
- can_download?: boolean | undefined;
53
- can_share?: boolean | undefined;
54
- } | undefined;
55
- readonly content_url: string | null;
56
- readonly content_type: FileContentTypeEnum;
57
- readonly pspdfkit_auth_payload: Record<string, any> | null;
58
- readonly pspdfkit_document_id: string | null;
59
- readonly pspdfkit_server_url: string | null;
60
- };
61
- slide: {
62
- index: number;
63
- url: FileRetrieve["thumbnail_url"];
64
- };
65
- } | {
66
- id: string;
67
- type: "file";
68
- file: {
69
- metadata?: Record<string, any> | undefined;
70
- readonly id: string;
71
- name?: string | undefined;
72
- readonly type: import('../../../../types/openapi').FileTypeEnum;
73
- readonly thumbnail_url: string | null;
74
- permissions?: {
75
- can_download?: boolean | undefined;
76
- can_share?: boolean | undefined;
77
- } | undefined;
78
- readonly content_url: string | null;
79
- readonly content_type: FileContentTypeEnum;
80
- readonly pspdfkit_auth_payload: Record<string, any> | null;
81
- readonly pspdfkit_document_id: string | null;
82
- readonly pspdfkit_server_url: string | null;
83
- };
84
- })[];
85
- }[];
86
- name: string;
87
- }, CollectionPlayer | {
88
- groups: {
89
- id: string;
90
- name: string;
91
- slides: ({
92
- id: string;
93
- type: "slide";
94
- file: {
95
- metadata?: Record<string, any> | undefined;
96
- readonly id: string;
97
- name?: string | undefined;
98
- readonly type: import('../../../../types/openapi').FileTypeEnum;
99
- readonly thumbnail_url: string | null;
100
- permissions?: {
101
- can_download?: boolean | undefined;
102
- can_share?: boolean | undefined;
103
- } | undefined;
104
- readonly content_url: string | null;
105
- readonly content_type: FileContentTypeEnum;
106
- readonly pspdfkit_auth_payload: Record<string, any> | null;
107
- readonly pspdfkit_document_id: string | null;
108
- readonly pspdfkit_server_url: string | null;
109
- };
110
- slide: {
111
- index: number;
112
- url: FileRetrieve["thumbnail_url"];
113
- };
114
- } | {
115
- id: string;
116
- type: "file";
117
- file: {
118
- metadata?: Record<string, any> | undefined;
119
- readonly id: string;
120
- name?: string | undefined;
121
- readonly type: import('../../../../types/openapi').FileTypeEnum;
122
- readonly thumbnail_url: string | null;
123
- permissions?: {
124
- can_download?: boolean | undefined;
125
- can_share?: boolean | undefined;
126
- } | undefined;
127
- readonly content_url: string | null;
128
- readonly content_type: FileContentTypeEnum;
129
- readonly pspdfkit_auth_payload: Record<string, any> | null;
130
- readonly pspdfkit_document_id: string | null;
131
- readonly pspdfkit_server_url: string | null;
132
- };
133
- })[];
134
- }[];
135
- name: string;
136
- }>;
137
- expandedGroups: Ref<string[], string[]>;
138
- selectFileContent: SelectFileContent;
139
- openSettings: (() => void) | undefined;
140
- fetchFile: (id: string) => Promise<FileRetrieve>;
141
- fetchFileList: FetchFileList;
142
- usedFiles: Ref<Record<string, File>, Record<string, File>>;
143
- childModalZIndex: number | undefined;
144
- addGroup: (group?: Partial<CollectionGroup>) => CollectionGroup | undefined;
145
- deleteGroup: (groupId: string, groupName: string) => void;
146
- updateGroup: (group: Partial<Omit<CollectionGroup, "id">> & Pick<CollectionGroup, "id">) => void;
147
- updateGroups: (groups: CollectionGroup[]) => void;
148
- updateSlides: (groupId: string, slides: CollectionSlide[]) => void;
149
- updateCollectionName: (name: string) => void;
150
- updateGroupName: (groupId: string, name: string) => void;
151
- deleteSlide: (groupId: string, slide: CollectionSlide) => void;
152
- addSlides: (groupId: string) => Promise<(import('../../collection-player/types/collection-player.type').CollectionPage | import('../../collection-player/types/collection-player.type').CollectionFile)[] | undefined>;
153
- moveSlideToGroup: (fromGroup: string, toGroup: string, slide: CollectionSlide) => void;
154
- };
50
+ export declare function provideAppStore({ initialCollection, t, confirmation, selectFileContent, attachTo, openSettings: openSettingsFn, closeOnSettings, fetchFile, fetchFileList, zIndex, emit, translations, contentRef, }: StorePayload): StoreData;
155
51
  export declare function useAppStore(): StoreData;
156
52
  export {};
@@ -1,6 +1,11 @@
1
1
  import { CollectionPlayer } from '../../collection-player/types/collection-player.type';
2
2
  import { FetchFileList, SelectFileContent } from './common.type';
3
3
  import { FileRetrieve } from '../../../../types/openapi';
4
+ export type Translations = {
5
+ createGroup?: string;
6
+ title?: string;
7
+ warningMessage?: string;
8
+ };
4
9
  export type CollectionSelectorProps = {
5
10
  zIndex?: number;
6
11
  attachTo?: string | HTMLElement;
@@ -9,4 +14,9 @@ export type CollectionSelectorProps = {
9
14
  openSettings?: () => void;
10
15
  fetchFile: (id: string) => Promise<FileRetrieve>;
11
16
  fetchFileList: FetchFileList;
17
+ readonlyName?: boolean;
18
+ closeOnSettings?: boolean;
19
+ translations?: Translations;
20
+ initialMetadataFilters?: Record<string, any>;
21
+ hideClose?: boolean;
12
22
  };
@@ -2,11 +2,12 @@ import { SelectedFile, SelectedPage, SelectorType } from '../../content-selector
2
2
  import { File, FileContentTypeEnum } from '../../../../types/openapi';
3
3
  import { Selection } from '../../../types/selections';
4
4
  export type SelectFileContent = (payload: {
5
- attachTo?: HTMLElement | string;
5
+ attach_to?: HTMLElement | string;
6
6
  selections?: Selection[];
7
- allowedSelectorTypes?: SelectorType[];
8
- allowedContentTypes?: FileContentTypeEnum[];
9
- allowedAssetContentTypes?: FileContentTypeEnum[];
7
+ allowed_selector_types?: SelectorType[];
8
+ allowed_content_types?: FileContentTypeEnum[];
9
+ allowed_asset_content_types?: FileContentTypeEnum[];
10
+ initial_metadata_filters?: Record<string, any>;
10
11
  }) => Promise<{
11
12
  user_action: string;
12
13
  content?: (SelectedFile | SelectedPage)[];
@@ -3,7 +3,7 @@ import { CollectionFile, CollectionPage, CollectionPlayer } from '../../collecti
3
3
  export declare const getDefaultNewGroupName: (t: I18nTranslate) => string;
4
4
  export declare const getDefaultGroupName: (t: I18nTranslate) => string;
5
5
  export declare const getDefaultCollectionName: (t: I18nTranslate) => string;
6
- export declare const generateNewGroup: (t: I18nTranslate) => {
6
+ export declare const generateNewEmptyGroup: (t: I18nTranslate) => {
7
7
  id: string;
8
8
  name: string;
9
9
  slides: never[];
@@ -12,5 +12,7 @@ declare const _default: import('vue').DefineComponent<AppProps, {}, {}, {}, {},
12
12
  }) => any) | undefined;
13
13
  }>, {
14
14
  minSelections: import('../../main.lib').Range<0, 999>;
15
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
16
+ hostElement: HTMLDivElement;
17
+ }, any>;
16
18
  export default _default;
@@ -1,4 +1,4 @@
1
- import { FileContentTypeEnum } from '../../../types/openapi';
1
+ import { File, FileContentTypeEnum } from '../../../types/openapi';
2
2
  import { Range } from '../../util/tsHelpers';
3
3
  import { SelectorType } from './stores/app';
4
4
  import { Selection } from '../../types/selections';
@@ -9,7 +9,10 @@ export type AppProps = {
9
9
  allowedSelectorTypes?: SelectorType[];
10
10
  allowedContentTypes?: FileContentTypeEnum[];
11
11
  allowedAssetContentTypes?: FileContentTypeEnum[];
12
+ allowedIds?: File['id'][];
13
+ allowedOriginalExtensions?: string[];
12
14
  contentType: 'file' | 'slide' | 'content';
15
+ initialMetadataFilters?: Record<string, any>;
13
16
  zIndex?: number;
14
17
  onFavoritesFetch?: FavoritesFetcher;
15
18
  onRecentFilesFetch?: RecentFilesFetcher;
@@ -22,4 +25,5 @@ export type AppProps = {
22
25
  primaryActionText?: string;
23
26
  maxSelections?: number;
24
27
  minSelections?: Range<0, 999>;
28
+ disableNoSharable?: boolean;
25
29
  };
@@ -1,10 +1,12 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
2
  add: (args_0: {
3
3
  url: string;
4
+ content_type: "image" | "video";
4
5
  }) => any;
5
6
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
6
7
  onAdd?: ((args_0: {
7
8
  url: string;
9
+ content_type: "image" | "video";
8
10
  }) => any) | undefined;
9
11
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
10
12
  export default _default;
@@ -2,5 +2,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
2
2
  uploadsComplete: () => any;
3
3
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
4
  onUploadsComplete?: (() => any) | undefined;
5
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
6
+ fileInput: HTMLInputElement;
7
+ }, HTMLDivElement>;
6
8
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
2
  export default _default;
@@ -1,2 +1,177 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
2
+ wrapperRef: HTMLDivElement;
3
+ toolbarWrapperRef: HTMLDivElement;
4
+ searchFiltersRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
5
+ disabled?: boolean;
6
+ engagingIds?: string[];
7
+ entity: import('../../../../../../main.lib').MetadataFilterRequest["entity"];
8
+ includeDraftValues?: boolean;
9
+ isSection?: import('../../../../../../main.lib').MetadataFilterRequest["is_section"];
10
+ isTemplate?: import('../../../../../../main.lib').MetadataFilterRequest["is_template"];
11
+ searchInOptions?: import('../../../../../../components/CSearchFilters/CSearchFilters.types').SearchInOption[];
12
+ filters?: Record<string, any>;
13
+ initialSearchValue?: string;
14
+ ownerId?: number | null;
15
+ placeholder?: string;
16
+ popularIds?: string[];
17
+ recommendedIds?: string[];
18
+ showLatestFilter?: boolean;
19
+ hideMetadataFilters?: boolean;
20
+ hideFilters?: boolean;
21
+ customFilterComponents?: {
22
+ type: import('../../../../../../../types/openapi').MetadataTemplateFieldTypeEnum;
23
+ name: string;
24
+ label: string;
25
+ options?: [];
26
+ }[];
27
+ enableDependentFilters?: boolean;
28
+ dependentFiltersEntity?: "file" | "canvas";
29
+ }> & Readonly<{
30
+ "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
31
+ "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
32
+ "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
33
+ }>, {
34
+ clearSearch: () => void;
35
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
36
+ "update:search": (search: string, filters?: Record<string, any> | undefined) => any;
37
+ "update:filters": (filters: Record<string, any>) => any;
38
+ "update:searchIn": (searchIn: string) => any;
39
+ }, import('vue').PublicProps, {
40
+ filters: Record<string, any>;
41
+ placeholder: string;
42
+ initialSearchValue: string;
43
+ includeDraftValues: boolean;
44
+ engagingIds: string[];
45
+ popularIds: string[];
46
+ recommendedIds: string[];
47
+ showLatestFilter: boolean;
48
+ hideMetadataFilters: boolean;
49
+ hideFilters: boolean;
50
+ dependentFiltersEntity: "file" | "canvas";
51
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
52
+ searchOnClickRef: ({
53
+ $: import('vue').ComponentInternalInstance;
54
+ $data: {};
55
+ $props: {
56
+ readonly disabled?: boolean | undefined;
57
+ readonly placeholder?: string | undefined;
58
+ readonly fullWidth?: boolean | undefined;
59
+ readonly initialSearchValue?: string | undefined;
60
+ readonly onSearch?: ((s: string) => any) | undefined;
61
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
62
+ $attrs: {
63
+ [x: string]: unknown;
64
+ };
65
+ $refs: {
66
+ [x: string]: unknown;
67
+ };
68
+ $slots: Readonly<{
69
+ [name: string]: import('vue').Slot<any> | undefined;
70
+ }>;
71
+ $root: import('vue').ComponentPublicInstance | null;
72
+ $parent: import('vue').ComponentPublicInstance | null;
73
+ $host: Element | null;
74
+ $emit: (event: "search", s: string) => void;
75
+ $el: HTMLDivElement;
76
+ $options: import('vue').ComponentOptionsBase<Readonly<{
77
+ disabled?: boolean;
78
+ placeholder?: string;
79
+ fullWidth?: boolean;
80
+ initialSearchValue?: string;
81
+ }> & Readonly<{
82
+ onSearch?: ((s: string) => any) | undefined;
83
+ }>, {
84
+ clear: () => Promise<void>;
85
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
86
+ search: (s: string) => any;
87
+ }, string, {
88
+ initialSearchValue: string;
89
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
90
+ beforeCreate?: (() => void) | (() => void)[];
91
+ created?: (() => void) | (() => void)[];
92
+ beforeMount?: (() => void) | (() => void)[];
93
+ mounted?: (() => void) | (() => void)[];
94
+ beforeUpdate?: (() => void) | (() => void)[];
95
+ updated?: (() => void) | (() => void)[];
96
+ activated?: (() => void) | (() => void)[];
97
+ deactivated?: (() => void) | (() => void)[];
98
+ beforeDestroy?: (() => void) | (() => void)[];
99
+ beforeUnmount?: (() => void) | (() => void)[];
100
+ destroyed?: (() => void) | (() => void)[];
101
+ unmounted?: (() => void) | (() => void)[];
102
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
103
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
104
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
105
+ };
106
+ $forceUpdate: () => void;
107
+ $nextTick: typeof import('vue').nextTick;
108
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
109
+ } & Readonly<{
110
+ initialSearchValue: string;
111
+ }> & Omit<Readonly<{
112
+ disabled?: boolean;
113
+ placeholder?: string;
114
+ fullWidth?: boolean;
115
+ initialSearchValue?: string;
116
+ }> & Readonly<{
117
+ onSearch?: ((s: string) => any) | undefined;
118
+ }>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
119
+ clear: () => Promise<void>;
120
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
121
+ $slots: {
122
+ options?(_: {}): any;
123
+ };
124
+ }) | null;
125
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
126
+ P: {};
127
+ B: {};
128
+ D: {};
129
+ C: {};
130
+ M: {};
131
+ Defaults: {};
132
+ }, Readonly<{
133
+ disabled?: boolean;
134
+ engagingIds?: string[];
135
+ entity: import('../../../../../../main.lib').MetadataFilterRequest["entity"];
136
+ includeDraftValues?: boolean;
137
+ isSection?: import('../../../../../../main.lib').MetadataFilterRequest["is_section"];
138
+ isTemplate?: import('../../../../../../main.lib').MetadataFilterRequest["is_template"];
139
+ searchInOptions?: import('../../../../../../components/CSearchFilters/CSearchFilters.types').SearchInOption[];
140
+ filters?: Record<string, any>;
141
+ initialSearchValue?: string;
142
+ ownerId?: number | null;
143
+ placeholder?: string;
144
+ popularIds?: string[];
145
+ recommendedIds?: string[];
146
+ showLatestFilter?: boolean;
147
+ hideMetadataFilters?: boolean;
148
+ hideFilters?: boolean;
149
+ customFilterComponents?: {
150
+ type: import('../../../../../../../types/openapi').MetadataTemplateFieldTypeEnum;
151
+ name: string;
152
+ label: string;
153
+ options?: [];
154
+ }[];
155
+ enableDependentFilters?: boolean;
156
+ dependentFiltersEntity?: "file" | "canvas";
157
+ }> & Readonly<{
158
+ "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
159
+ "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
160
+ "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
161
+ }>, {
162
+ clearSearch: () => void;
163
+ }, {}, {}, {}, {
164
+ filters: Record<string, any>;
165
+ placeholder: string;
166
+ initialSearchValue: string;
167
+ includeDraftValues: boolean;
168
+ engagingIds: string[];
169
+ popularIds: string[];
170
+ recommendedIds: string[];
171
+ showLatestFilter: boolean;
172
+ hideMetadataFilters: boolean;
173
+ hideFilters: boolean;
174
+ dependentFiltersEntity: "file" | "canvas";
175
+ }> | null;
176
+ }, HTMLDivElement>;
2
177
  export default _default;