@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
@@ -1,14 +1,12 @@
1
1
  import { AgendaGroup, AgendaItem } from '../../types/agenda.type';
2
- declare const _default: import('vue').DefineComponent<{
2
+ type __VLS_Props = {
3
3
  zIndex?: number;
4
4
  groups: AgendaGroup[];
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, item: AgendaItem) => any;
8
- }, string, import('vue').PublicProps, Readonly<{
9
- zIndex?: number;
10
- groups: AgendaGroup[];
11
- }> & Readonly<{
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
10
  onClose?: (() => any) | undefined;
13
11
  onMoveToGroup?: ((fromGroup: string, toGroup: string, item: AgendaItem) => any) | undefined;
14
12
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,6 +1,6 @@
1
1
  import { ComputedRef, Ref } from 'vue';
2
2
  import { ValuesOf } from '@tiptap/core';
3
- import { ContentType } from '../types/agenda.type';
3
+ import { ContentType } from '../constants';
4
4
  type ApplicationBlockSelectorModal = {
5
5
  open: (type: ValuesOf<ContentType>) => void;
6
6
  close: () => void;
@@ -0,0 +1,7 @@
1
+ import { Agenda } from '../types/agenda.type';
2
+ import { CollectionPlayer } from '../../collection-player/types/collection-player.type';
3
+ export declare function useContentWarning(): {
4
+ isWarningVisible: import('vue').Ref<boolean, boolean>;
5
+ validateAgendaContent: (agenda: Agenda) => void;
6
+ validateCollectionPlayerContent: (item: CollectionPlayer) => void;
7
+ };
@@ -24,6 +24,7 @@ export declare function provideMoveItemModal(): {
24
24
  readonly id: string;
25
25
  name?: string | undefined;
26
26
  readonly type: import('../../../main.lib').FileTypeEnum;
27
+ tags?: Array<string> | undefined;
27
28
  readonly thumbnail_url: string | null;
28
29
  permissions?: {
29
30
  can_download?: boolean | undefined;
@@ -47,6 +48,7 @@ export declare function provideMoveItemModal(): {
47
48
  readonly id: string;
48
49
  name?: string | undefined;
49
50
  readonly type: import('../../../main.lib').FileTypeEnum;
51
+ tags?: Array<string> | undefined;
50
52
  readonly thumbnail_url: string | null;
51
53
  permissions?: {
52
54
  can_download?: boolean | undefined;
@@ -60,9 +62,11 @@ export declare function provideMoveItemModal(): {
60
62
  };
61
63
  })[];
62
64
  }[];
65
+ filters?: Record<string, any> | undefined;
63
66
  name: string;
67
+ hide_footer?: boolean | undefined;
64
68
  };
65
- type: import('../../../types/common').ValuesOf<import('../types/agenda.type').ContentType>;
69
+ type: import('../../../types/common').ValuesOf<import('../constants').ContentType>;
66
70
  };
67
71
  } | null, ActiveElement | {
68
72
  groupId: string;
@@ -80,6 +84,7 @@ export declare function provideMoveItemModal(): {
80
84
  readonly id: string;
81
85
  name?: string | undefined;
82
86
  readonly type: import('../../../main.lib').FileTypeEnum;
87
+ tags?: Array<string> | undefined;
83
88
  readonly thumbnail_url: string | null;
84
89
  permissions?: {
85
90
  can_download?: boolean | undefined;
@@ -103,6 +108,7 @@ export declare function provideMoveItemModal(): {
103
108
  readonly id: string;
104
109
  name?: string | undefined;
105
110
  readonly type: import('../../../main.lib').FileTypeEnum;
111
+ tags?: Array<string> | undefined;
106
112
  readonly thumbnail_url: string | null;
107
113
  permissions?: {
108
114
  can_download?: boolean | undefined;
@@ -116,9 +122,11 @@ export declare function provideMoveItemModal(): {
116
122
  };
117
123
  })[];
118
124
  }[];
125
+ filters?: Record<string, any> | undefined;
119
126
  name: string;
127
+ hide_footer?: boolean | undefined;
120
128
  };
121
- type: import('../../../types/common').ValuesOf<import('../types/agenda.type').ContentType>;
129
+ type: import('../../../types/common').ValuesOf<import('../constants').ContentType>;
122
130
  };
123
131
  } | null>;
124
132
  open: (type: ActiveElement) => void;
@@ -0,0 +1,10 @@
1
+ export declare const DragConfig: {
2
+ readonly forceAutoScrollFallback: true;
3
+ readonly scrollSensitivity: 100;
4
+ readonly scrollSpeed: 30;
5
+ };
6
+ export declare enum ContentType {
7
+ Collection = "collection",
8
+ Application = "application",
9
+ Block = "block"
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './utils/data.util';
2
+ export * from './constants';
@@ -2,6 +2,8 @@ import { Ref } from 'vue';
2
2
  import { default as useConfirmation } from '../../../composables/useConfirmation';
3
3
  import { Agenda, AgendaGroup, AgendaItem } from '../types/agenda.type';
4
4
  import { SelectCollectionContent } from '../types/common.type';
5
+ import { useContentWarning } from '../composables/content-warning.use';
6
+ import { CollectionSelectorProps } from '../../collection-selector/types/collection-selector.type';
5
7
  type StorePayload = {
6
8
  initialAgenda?: Agenda;
7
9
  t: (key: string, values?: Record<string, string | number>) => string;
@@ -9,6 +11,7 @@ type StorePayload = {
9
11
  selectCollectionContent: SelectCollectionContent;
10
12
  attachTo?: HTMLElement | string;
11
13
  zIndex?: number;
14
+ openSettings?: CollectionSelectorProps['openSettings'];
12
15
  };
13
16
  type StoreData = {
14
17
  agenda: Ref<Agenda>;
@@ -21,12 +24,13 @@ type StoreData = {
21
24
  updateAgendaName: (name: string) => void;
22
25
  updateGroupName: (groupId: string, name: string) => void;
23
26
  deleteItem: (groupId: string, item: AgendaItem) => void;
24
- editItem: (groupId: string, item: AgendaItem) => Promise<void>;
25
- addItem: (groupId: string) => Promise<AgendaItem | undefined>;
27
+ editItem: (groupId: string, item: AgendaItem, filters?: Record<string, any>) => Promise<void>;
28
+ addItem: (groupId: string, filters?: Record<string, any>) => Promise<AgendaItem | undefined>;
26
29
  moveItemToGroup: (fromGroup: string, toGroup: string, item: AgendaItem) => void;
27
30
  selectCollectionContent: SelectCollectionContent;
28
31
  childModalZIndex?: number;
32
+ contentWarning: ReturnType<typeof useContentWarning>;
29
33
  };
30
- export declare function provideAppStore({ initialAgenda, t, confirmation, selectCollectionContent, attachTo, zIndex, }: StorePayload): StoreData;
34
+ export declare function provideAppStore({ initialAgenda, t, confirmation, selectCollectionContent, attachTo, zIndex, openSettings, }: StorePayload): StoreData;
31
35
  export declare function useAppStore(): StoreData;
32
36
  export {};
@@ -1,11 +1,8 @@
1
1
  import { CollectionPlayer } from '../../collection-player/types/collection-player.type';
2
2
  import { ValuesOf } from '../../../types/common';
3
3
  import { SelectCollectionContent } from './common.type';
4
- export declare enum ContentType {
5
- Collection = "collection",
6
- Application = "application",
7
- Block = "block"
8
- }
4
+ import { CollectionSelectorProps } from '../../collection-selector/types/collection-selector.type';
5
+ import { ContentType } from '../constants';
9
6
  export type AgendaItem = {
10
7
  id: string;
11
8
  content: CollectionPlayer;
@@ -19,10 +16,12 @@ export type AgendaGroup = {
19
16
  export type Agenda = {
20
17
  name: string;
21
18
  groups: AgendaGroup[];
19
+ filters?: Record<string, any>;
22
20
  };
23
21
  export type AgendaSelectorProps = {
24
22
  zIndex?: number;
25
23
  attachTo?: string | HTMLElement;
26
24
  initialAgenda?: Agenda;
27
25
  selectCollectionContent: SelectCollectionContent;
26
+ openSettings?: CollectionSelectorProps['openSettings'];
28
27
  };
@@ -1,7 +1,11 @@
1
1
  import { CollectionPlayer } from '../../collection-player/types/collection-player.type';
2
+ import { CollectionSelectorProps } from '../../collection-selector/types/collection-selector.type';
2
3
  export type SelectCollectionContent = (payload: {
3
- initialData?: CollectionPlayer;
4
- attachTo?: HTMLElement | string;
4
+ attach_to?: HTMLElement | string;
5
+ initial_data?: CollectionPlayer;
6
+ initial_metadata_filters?: Record<string, any>;
7
+ open_settings?: CollectionSelectorProps['openSettings'];
8
+ readonly_name?: CollectionSelectorProps['readonlyName'];
5
9
  }) => Promise<{
6
10
  user_action: string;
7
11
  content?: CollectionPlayer;
@@ -1,4 +1,5 @@
1
1
  import { I18nTranslate } from '../../../types/common';
2
+ import { AgendaItem } from '../types/agenda.type';
2
3
  export declare const generateNewAgenda: (t: I18nTranslate) => {
3
4
  name: string;
4
5
  groups: {
@@ -7,8 +8,13 @@ export declare const generateNewAgenda: (t: I18nTranslate) => {
7
8
  items: never[];
8
9
  }[];
9
10
  };
10
- export declare const generateNewGroup: (t: I18nTranslate) => {
11
+ export declare const generateNewEmptyGroup: (t: I18nTranslate) => {
11
12
  id: string;
12
13
  name: string;
13
14
  items: never[];
14
15
  };
16
+ export declare const generateNewGroup: (name: string, items?: AgendaItem[]) => {
17
+ id: string;
18
+ name: string;
19
+ items: AgendaItem[];
20
+ };
@@ -1,89 +1,20 @@
1
- import { PropType, ComputedRef } from 'vue';
2
- import { BrowserSectionType, AppName } from './stores/app';
3
- import { FolderItemsFetcher, FolderCreator, FolderUpdater, FolderDeleter, FileCreator, FileUpdater, FileOpener, FileFetcher, ItemsMover, FavoritesFetcher, FavoriteCreator, FavoriteDeleter, FileDeleter, MetadataTemplateFetcher, RecentFilesFetcher, SelectDeviceFile, FileListFetcher } from './stores/api';
4
- import { FileRetrieve } from '../../../types/openapi';
1
+ import { ComputedRef } from 'vue';
2
+ import { BrowserSectionType } from './stores/app';
3
+ import { FileRetrieve, FolderRetrieve } from '../../../types/openapi';
4
+ import { BrowserAppProps } from './appTypes';
5
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
6
7
  slots: {
7
- "single-file-details"?(_: {}): any;
8
+ 'single-file-details'?(_: {}): any;
9
+ 'single-file-details'?(_: {}): any;
8
10
  };
9
11
  refs: {
10
12
  app: HTMLDivElement;
11
13
  };
12
- attrs: Partial<{}>;
14
+ rootEl: HTMLDivElement;
13
15
  };
14
16
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
16
- appName: {
17
- type: PropType<AppName>;
18
- default: string;
19
- };
20
- onFolderFetch: {
21
- type: PropType<FolderItemsFetcher>;
22
- required: true;
23
- };
24
- onFolderCreate: {
25
- type: PropType<FolderCreator>;
26
- required: true;
27
- };
28
- onFolderUpdate: {
29
- type: PropType<FolderUpdater>;
30
- required: true;
31
- };
32
- onFolderDelete: {
33
- type: PropType<FolderDeleter>;
34
- required: true;
35
- };
36
- onFileCreate: {
37
- type: PropType<FileCreator>;
38
- required: true;
39
- };
40
- onFileUpdate: {
41
- type: PropType<FileUpdater>;
42
- required: true;
43
- };
44
- onFileOpen: {
45
- type: PropType<FileOpener>;
46
- required: true;
47
- };
48
- onFileDelete: {
49
- type: PropType<FileDeleter>;
50
- required: true;
51
- };
52
- onFileFetch: {
53
- type: PropType<FileFetcher>;
54
- required: true;
55
- };
56
- onFilesList: {
57
- type: PropType<FileListFetcher>;
58
- required: true;
59
- };
60
- onFavoriteCreate: {
61
- type: PropType<FavoriteCreator>;
62
- required: true;
63
- };
64
- onFavoriteDelete: {
65
- type: PropType<FavoriteDeleter>;
66
- required: true;
67
- };
68
- onFavoritesFetch: {
69
- type: PropType<FavoritesFetcher>;
70
- required: true;
71
- };
72
- onRecentFilesFetch: {
73
- type: PropType<RecentFilesFetcher>;
74
- required: true;
75
- };
76
- onItemsMove: {
77
- type: PropType<ItemsMover>;
78
- required: true;
79
- };
80
- onSelectDeviceFile: {
81
- type: PropType<SelectDeviceFile>;
82
- };
83
- onMetadataTemplateFetch: {
84
- type: PropType<MetadataTemplateFetcher>;
85
- };
86
- }>, {
17
+ declare const __VLS_component: import('vue').DefineComponent<BrowserAppProps, {
87
18
  onUploadComplete: import('lodash').DebouncedFunc<() => Promise<void>>;
88
19
  onFavoritesChanged: (favorites: import('../../../types/openapi').Favorite[]) => void;
89
20
  onUploadClearCompletedAndFailed: () => void;
@@ -91,9 +22,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
91
22
  selectedSection: import('vue').Ref<BrowserSectionType, BrowserSectionType>;
92
23
  isUploadQueueBusy: ComputedRef<boolean>;
93
24
  currentFolderId: import('vue').Ref<string, string>;
94
- setCurrentFolder: (folderId?: import('../../../types/openapi').FolderRetrieve["id"], folderName?: import('../../../types/openapi').FolderRetrieve["name"], folderPath?: import('../../../types/openapi').FolderRetrieve["path"]) => void;
95
- folderItemsFetcher: import('vue').Ref<FolderItemsFetcher | null, FolderItemsFetcher | null>;
96
- recentFilesFetcher: import('vue').Ref<RecentFilesFetcher | null, RecentFilesFetcher | null>;
25
+ setCurrentFolder: (folderId?: FolderRetrieve["id"], folderName?: FolderRetrieve["name"], folderPath?: FolderRetrieve["path"]) => void;
26
+ folderItemsFetcher: import('vue').Ref<import('./stores/api').FolderItemsFetcher | null, import('./stores/api').FolderItemsFetcher | null>;
27
+ recentFilesFetcher: import('vue').Ref<import('./stores/api').RecentFilesFetcher | null, import('./stores/api').RecentFilesFetcher | null>;
28
+ favoritesFetcher: import('vue').Ref<import('./stores/api').FavoritesFetcher | null, import('./stores/api').FavoritesFetcher | null>;
97
29
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
98
30
  viewFileDetails: (id: string) => any;
99
31
  generateKeypoints: (id: string) => any;
@@ -108,78 +40,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
108
40
  type: "file";
109
41
  thumbnailUrl?: string;
110
42
  }) => any;
111
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
112
- appName: {
113
- type: PropType<AppName>;
114
- default: string;
115
- };
116
- onFolderFetch: {
117
- type: PropType<FolderItemsFetcher>;
118
- required: true;
119
- };
120
- onFolderCreate: {
121
- type: PropType<FolderCreator>;
122
- required: true;
123
- };
124
- onFolderUpdate: {
125
- type: PropType<FolderUpdater>;
126
- required: true;
127
- };
128
- onFolderDelete: {
129
- type: PropType<FolderDeleter>;
130
- required: true;
131
- };
132
- onFileCreate: {
133
- type: PropType<FileCreator>;
134
- required: true;
135
- };
136
- onFileUpdate: {
137
- type: PropType<FileUpdater>;
138
- required: true;
139
- };
140
- onFileOpen: {
141
- type: PropType<FileOpener>;
142
- required: true;
143
- };
144
- onFileDelete: {
145
- type: PropType<FileDeleter>;
146
- required: true;
147
- };
148
- onFileFetch: {
149
- type: PropType<FileFetcher>;
150
- required: true;
151
- };
152
- onFilesList: {
153
- type: PropType<FileListFetcher>;
154
- required: true;
155
- };
156
- onFavoriteCreate: {
157
- type: PropType<FavoriteCreator>;
158
- required: true;
159
- };
160
- onFavoriteDelete: {
161
- type: PropType<FavoriteDeleter>;
162
- required: true;
163
- };
164
- onFavoritesFetch: {
165
- type: PropType<FavoritesFetcher>;
166
- required: true;
167
- };
168
- onRecentFilesFetch: {
169
- type: PropType<RecentFilesFetcher>;
170
- required: true;
171
- };
172
- onItemsMove: {
173
- type: PropType<ItemsMover>;
174
- required: true;
175
- };
176
- onSelectDeviceFile: {
177
- type: PropType<SelectDeviceFile>;
178
- };
179
- onMetadataTemplateFetch: {
180
- type: PropType<MetadataTemplateFetcher>;
181
- };
182
- }>> & Readonly<{
43
+ }, string, import('vue').PublicProps, Readonly<BrowserAppProps> & Readonly<{
183
44
  onViewFileDetails?: ((id: string) => any) | undefined;
184
45
  onGenerateKeypoints?: ((id: string) => any) | undefined;
185
46
  onOnSectionChange?: ((params: {
@@ -194,8 +55,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
194
55
  thumbnailUrl?: string;
195
56
  }) => any) | undefined;
196
57
  }>, {
197
- appName: AppName;
198
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
58
+ appName: import('./stores/app').AppName;
59
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
60
+ app: HTMLDivElement;
61
+ }, HTMLDivElement>;
199
62
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
200
63
  export default _default;
201
64
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -0,0 +1,22 @@
1
+ import { AppName } from './stores/app';
2
+ import { FolderItemsFetcher, FolderCreator, FolderUpdater, FolderDeleter, FileCreator, FileUpdater, FileOpener, FileFetcher, FileListFetcher, FavoriteCreator, FavoriteDeleter, FavoritesFetcher, RecentFilesFetcher, ItemsMover, SelectDeviceFile, MetadataTemplateFetcher, FileDeleter } from './stores/api';
3
+ export interface BrowserAppProps {
4
+ appName: AppName;
5
+ onFolderFetch: FolderItemsFetcher;
6
+ onFolderCreate: FolderCreator;
7
+ onFolderUpdate: FolderUpdater;
8
+ onFolderDelete: FolderDeleter;
9
+ onFileCreate: FileCreator;
10
+ onFileDelete: FileDeleter;
11
+ onFileUpdate: FileUpdater;
12
+ onFileOpen: FileOpener;
13
+ onFileFetch: FileFetcher;
14
+ onFilesList: FileListFetcher;
15
+ onFavoriteCreate: FavoriteCreator;
16
+ onFavoriteDelete: FavoriteDeleter;
17
+ onFavoritesFetch: FavoritesFetcher;
18
+ onRecentFilesFetch: RecentFilesFetcher;
19
+ onItemsMove: ItemsMover;
20
+ onSelectDeviceFile?: SelectDeviceFile;
21
+ onMetadataTemplateFetch?: MetadataTemplateFetcher;
22
+ }
@@ -1,2 +1,175 @@
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
+ searchFiltersRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
3
+ disabled?: boolean;
4
+ engagingIds?: string[];
5
+ entity: import('../../../../../main.lib').MetadataFilterRequest["entity"];
6
+ includeDraftValues?: boolean;
7
+ isSection?: import('../../../../../main.lib').MetadataFilterRequest["is_section"];
8
+ isTemplate?: import('../../../../../main.lib').MetadataFilterRequest["is_template"];
9
+ searchInOptions?: import('../../../../../components/CSearchFilters/CSearchFilters.types').SearchInOption[];
10
+ filters?: Record<string, any>;
11
+ initialSearchValue?: string;
12
+ ownerId?: number | null;
13
+ placeholder?: string;
14
+ popularIds?: string[];
15
+ recommendedIds?: string[];
16
+ showLatestFilter?: boolean;
17
+ hideMetadataFilters?: boolean;
18
+ hideFilters?: boolean;
19
+ customFilterComponents?: {
20
+ type: import('../../../../../../types/openapi').MetadataTemplateFieldTypeEnum;
21
+ name: string;
22
+ label: string;
23
+ options?: [];
24
+ }[];
25
+ enableDependentFilters?: boolean;
26
+ dependentFiltersEntity?: "file" | "canvas";
27
+ }> & Readonly<{
28
+ "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
29
+ "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
30
+ "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
31
+ }>, {
32
+ clearSearch: () => void;
33
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ "update:search": (search: string, filters?: Record<string, any> | undefined) => any;
35
+ "update:filters": (filters: Record<string, any>) => any;
36
+ "update:searchIn": (searchIn: string) => any;
37
+ }, import('vue').PublicProps, {
38
+ filters: Record<string, any>;
39
+ placeholder: string;
40
+ initialSearchValue: string;
41
+ includeDraftValues: boolean;
42
+ engagingIds: string[];
43
+ popularIds: string[];
44
+ recommendedIds: string[];
45
+ showLatestFilter: boolean;
46
+ hideMetadataFilters: boolean;
47
+ hideFilters: boolean;
48
+ dependentFiltersEntity: "file" | "canvas";
49
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
50
+ searchOnClickRef: ({
51
+ $: import('vue').ComponentInternalInstance;
52
+ $data: {};
53
+ $props: {
54
+ readonly disabled?: boolean | undefined;
55
+ readonly placeholder?: string | undefined;
56
+ readonly fullWidth?: boolean | undefined;
57
+ readonly initialSearchValue?: string | undefined;
58
+ readonly onSearch?: ((s: string) => any) | undefined;
59
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
60
+ $attrs: {
61
+ [x: string]: unknown;
62
+ };
63
+ $refs: {
64
+ [x: string]: unknown;
65
+ };
66
+ $slots: Readonly<{
67
+ [name: string]: import('vue').Slot<any> | undefined;
68
+ }>;
69
+ $root: import('vue').ComponentPublicInstance | null;
70
+ $parent: import('vue').ComponentPublicInstance | null;
71
+ $host: Element | null;
72
+ $emit: (event: "search", s: string) => void;
73
+ $el: HTMLDivElement;
74
+ $options: import('vue').ComponentOptionsBase<Readonly<{
75
+ disabled?: boolean;
76
+ placeholder?: string;
77
+ fullWidth?: boolean;
78
+ initialSearchValue?: string;
79
+ }> & Readonly<{
80
+ onSearch?: ((s: string) => any) | undefined;
81
+ }>, {
82
+ clear: () => Promise<void>;
83
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
84
+ search: (s: string) => any;
85
+ }, string, {
86
+ initialSearchValue: string;
87
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
88
+ beforeCreate?: (() => void) | (() => void)[];
89
+ created?: (() => void) | (() => void)[];
90
+ beforeMount?: (() => void) | (() => void)[];
91
+ mounted?: (() => void) | (() => void)[];
92
+ beforeUpdate?: (() => void) | (() => void)[];
93
+ updated?: (() => void) | (() => void)[];
94
+ activated?: (() => void) | (() => void)[];
95
+ deactivated?: (() => void) | (() => void)[];
96
+ beforeDestroy?: (() => void) | (() => void)[];
97
+ beforeUnmount?: (() => void) | (() => void)[];
98
+ destroyed?: (() => void) | (() => void)[];
99
+ unmounted?: (() => void) | (() => void)[];
100
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
101
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
102
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
103
+ };
104
+ $forceUpdate: () => void;
105
+ $nextTick: typeof import('vue').nextTick;
106
+ $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;
107
+ } & Readonly<{
108
+ initialSearchValue: string;
109
+ }> & Omit<Readonly<{
110
+ disabled?: boolean;
111
+ placeholder?: string;
112
+ fullWidth?: boolean;
113
+ initialSearchValue?: string;
114
+ }> & Readonly<{
115
+ onSearch?: ((s: string) => any) | undefined;
116
+ }>, "clear" | "initialSearchValue"> & import('vue').ShallowUnwrapRef<{
117
+ clear: () => Promise<void>;
118
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
119
+ $slots: {
120
+ options?(_: {}): any;
121
+ };
122
+ }) | null;
123
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
124
+ P: {};
125
+ B: {};
126
+ D: {};
127
+ C: {};
128
+ M: {};
129
+ Defaults: {};
130
+ }, Readonly<{
131
+ disabled?: boolean;
132
+ engagingIds?: string[];
133
+ entity: import('../../../../../main.lib').MetadataFilterRequest["entity"];
134
+ includeDraftValues?: boolean;
135
+ isSection?: import('../../../../../main.lib').MetadataFilterRequest["is_section"];
136
+ isTemplate?: import('../../../../../main.lib').MetadataFilterRequest["is_template"];
137
+ searchInOptions?: import('../../../../../components/CSearchFilters/CSearchFilters.types').SearchInOption[];
138
+ filters?: Record<string, any>;
139
+ initialSearchValue?: string;
140
+ ownerId?: number | null;
141
+ placeholder?: string;
142
+ popularIds?: string[];
143
+ recommendedIds?: string[];
144
+ showLatestFilter?: boolean;
145
+ hideMetadataFilters?: boolean;
146
+ hideFilters?: boolean;
147
+ customFilterComponents?: {
148
+ type: import('../../../../../../types/openapi').MetadataTemplateFieldTypeEnum;
149
+ name: string;
150
+ label: string;
151
+ options?: [];
152
+ }[];
153
+ enableDependentFilters?: boolean;
154
+ dependentFiltersEntity?: "file" | "canvas";
155
+ }> & Readonly<{
156
+ "onUpdate:search"?: ((search: string, filters?: Record<string, any> | undefined) => any) | undefined;
157
+ "onUpdate:filters"?: ((filters: Record<string, any>) => any) | undefined;
158
+ "onUpdate:searchIn"?: ((searchIn: string) => any) | undefined;
159
+ }>, {
160
+ clearSearch: () => void;
161
+ }, {}, {}, {}, {
162
+ filters: Record<string, any>;
163
+ placeholder: string;
164
+ initialSearchValue: string;
165
+ includeDraftValues: boolean;
166
+ engagingIds: string[];
167
+ popularIds: string[];
168
+ recommendedIds: string[];
169
+ showLatestFilter: boolean;
170
+ hideMetadataFilters: boolean;
171
+ hideFilters: boolean;
172
+ dependentFiltersEntity: "file" | "canvas";
173
+ }> | null;
174
+ }, HTMLDivElement>;
2
175
  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;