@alfresco/aca-content 4.0.0 → 4.1.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 (307) hide show
  1. package/{lib/components/create-menu/create-menu.component.d.ts → about/about.component.d.ts} +15 -16
  2. package/about/aca-about.module.d.ts +9 -0
  3. package/about/assets/about.plugin.json +47 -0
  4. package/about/dev-mode.tokens.d.ts +25 -0
  5. package/about/index.d.ts +5 -0
  6. package/about/package-json.token.d.ts +25 -0
  7. package/about/public-api.d.ts +27 -0
  8. package/assets/app.extensions.json +158 -131
  9. package/assets/i18n/ar.json +10 -26
  10. package/assets/i18n/cs.json +10 -26
  11. package/assets/i18n/da.json +9 -25
  12. package/assets/i18n/de.json +8 -24
  13. package/assets/i18n/en.json +9 -25
  14. package/assets/i18n/es.json +8 -24
  15. package/assets/i18n/fi.json +9 -25
  16. package/assets/i18n/fr.json +9 -25
  17. package/assets/i18n/it.json +9 -25
  18. package/assets/i18n/ja.json +9 -25
  19. package/assets/i18n/nb.json +9 -25
  20. package/assets/i18n/nl.json +8 -24
  21. package/assets/i18n/pl.json +10 -26
  22. package/assets/i18n/pt-BR.json +9 -25
  23. package/assets/i18n/ru.json +10 -26
  24. package/assets/i18n/sv.json +9 -25
  25. package/assets/i18n/zh-CN.json +8 -24
  26. package/esm2020/about/about.component.mjs +73 -0
  27. package/esm2020/about/aca-about.module.mjs +46 -0
  28. package/esm2020/about/alfresco-aca-content-about.mjs +5 -0
  29. package/esm2020/about/dev-mode.tokens.mjs +26 -0
  30. package/esm2020/about/package-json.token.mjs +26 -0
  31. package/esm2020/about/public-api.mjs +28 -0
  32. package/esm2020/folder-rules/alfresco-aca-content-folder-rules.mjs +5 -0
  33. package/esm2020/folder-rules/folder-rules.module.mjs +123 -0
  34. package/esm2020/folder-rules/folder-rules.rules.mjs +28 -0
  35. package/esm2020/folder-rules/manage-rules/manage-rules.smart-component.mjs +240 -0
  36. package/esm2020/folder-rules/model/action-parameter-constraint.model.mjs +25 -0
  37. package/esm2020/folder-rules/model/rule-action.model.mjs +26 -0
  38. package/esm2020/folder-rules/model/rule-composite-condition.model.mjs +25 -0
  39. package/esm2020/folder-rules/model/rule-grouping-item.model.mjs +25 -0
  40. package/esm2020/folder-rules/model/rule-set.model.mjs +25 -0
  41. package/esm2020/folder-rules/model/rule-simple-condition.model.mjs +25 -0
  42. package/esm2020/folder-rules/model/rule.model.mjs +25 -0
  43. package/esm2020/folder-rules/public-api.mjs +26 -0
  44. package/esm2020/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +112 -0
  45. package/esm2020/folder-rules/rule-details/actions/rule-action.ui-component.mjs +277 -0
  46. package/esm2020/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +159 -0
  47. package/esm2020/folder-rules/rule-details/conditions/rule-condition-comparators.mjs +87 -0
  48. package/esm2020/folder-rules/rule-details/conditions/rule-condition-fields.mjs +62 -0
  49. package/esm2020/folder-rules/rule-details/conditions/rule-mime-types.mjs +25 -0
  50. package/esm2020/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +144 -0
  51. package/esm2020/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +70 -0
  52. package/esm2020/folder-rules/rule-details/options/rule-options.ui-component.mjs +134 -0
  53. package/esm2020/folder-rules/rule-details/rule-details.ui-component.mjs +166 -0
  54. package/esm2020/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +85 -0
  55. package/esm2020/folder-rules/rule-details/validators/rule-actions.validator.mjs +37 -0
  56. package/esm2020/folder-rules/rule-details/validators/rule-composite-condition.validator.mjs +31 -0
  57. package/esm2020/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +142 -0
  58. package/esm2020/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +77 -0
  59. package/esm2020/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +56 -0
  60. package/esm2020/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +104 -0
  61. package/esm2020/folder-rules/services/actions.service.mjs +114 -0
  62. package/esm2020/folder-rules/services/folder-rule-sets.service.mjs +221 -0
  63. package/esm2020/folder-rules/services/folder-rules.service.mjs +193 -0
  64. package/esm2020/lib/aca-content.module.mjs +55 -90
  65. package/esm2020/lib/aca-content.routes.mjs +2 -2
  66. package/esm2020/lib/components/common/common.module.mjs +8 -39
  67. package/esm2020/lib/components/common/language-picker/language-picker.component.mjs +18 -11
  68. package/esm2020/lib/components/common/location-link/location-link.component.mjs +17 -16
  69. package/esm2020/lib/components/common/logout/logout.component.mjs +16 -9
  70. package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +29 -18
  71. package/esm2020/lib/components/common/user-info/user-info.component.mjs +24 -13
  72. package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +16 -10
  73. package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +5 -4
  74. package/esm2020/lib/components/context-menu/context-menu.component.mjs +29 -15
  75. package/esm2020/lib/components/context-menu/context-menu.service.mjs +5 -6
  76. package/esm2020/lib/components/details/details.component.mjs +41 -23
  77. package/esm2020/lib/components/dl-custom-components/document-list-custom-components.module.mjs +7 -15
  78. package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +16 -16
  79. package/esm2020/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +34 -12
  80. package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +32 -15
  81. package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +17 -28
  82. package/esm2020/lib/components/favorites/favorites.component.mjs +18 -34
  83. package/esm2020/lib/components/files/files.component.mjs +28 -43
  84. package/esm2020/lib/components/home/home.component.mjs +7 -6
  85. package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +15 -10
  86. package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +28 -47
  87. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +39 -17
  88. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +10 -7
  89. package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +13 -12
  90. package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +18 -10
  91. package/esm2020/lib/components/libraries/libraries.component.mjs +17 -27
  92. package/esm2020/lib/components/recent-files/recent-files.component.mjs +18 -37
  93. package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +3 -3
  94. package/esm2020/lib/components/search/search-input/search-input.component.mjs +11 -6
  95. package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +5 -5
  96. package/esm2020/lib/components/search/search-input.module.mjs +4 -4
  97. package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +5 -6
  98. package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +21 -30
  99. package/esm2020/lib/components/search/search-navigation.service.mjs +3 -3
  100. package/esm2020/lib/components/search/search-results/search-results.component.mjs +33 -41
  101. package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +6 -7
  102. package/esm2020/lib/components/search/search-results.module.mjs +31 -23
  103. package/esm2020/lib/components/shared-files/shared-files.component.mjs +18 -34
  104. package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +9 -7
  105. package/esm2020/lib/components/shared-link-view/shared-link-view.module.mjs +5 -9
  106. package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +5 -5
  107. package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +5 -5
  108. package/esm2020/lib/components/sidenav/components/sidenav-header.component.mjs +5 -5
  109. package/esm2020/lib/components/sidenav/directives/action.directive.mjs +3 -3
  110. package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +3 -3
  111. package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +3 -3
  112. package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +3 -3
  113. package/esm2020/lib/components/sidenav/sidenav.component.mjs +3 -3
  114. package/esm2020/lib/components/sidenav/sidenav.module.mjs +11 -9
  115. package/esm2020/lib/components/sidenav/user-menu/user-menu.component.mjs +96 -0
  116. package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +10 -17
  117. package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +3 -3
  118. package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +3 -3
  119. package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +3 -3
  120. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +3 -3
  121. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +3 -3
  122. package/esm2020/lib/components/toolbar/toolbar.module.mjs +7 -13
  123. package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +3 -3
  124. package/esm2020/lib/components/trashcan/trashcan.component.mjs +37 -29
  125. package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +3 -3
  126. package/esm2020/lib/components/view-profile/view-profile.component.mjs +35 -16
  127. package/esm2020/lib/components/view-profile/view-profile.guard.mjs +5 -5
  128. package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +16 -15
  129. package/esm2020/lib/directives/directives.module.mjs +4 -4
  130. package/esm2020/lib/directives/document-list.directive.mjs +3 -3
  131. package/esm2020/lib/extensions/core.extensions.module.mjs +4 -4
  132. package/esm2020/lib/material.module.mjs +4 -4
  133. package/esm2020/lib/services/content-management.service.mjs +3 -3
  134. package/esm2020/lib/services/content-service-extension.service.mjs +3 -3
  135. package/esm2020/lib/services/content-url.service.mjs +3 -3
  136. package/esm2020/lib/services/node-actions.service.mjs +5 -5
  137. package/esm2020/lib/services/node-template.service.mjs +3 -3
  138. package/esm2020/lib/store/app-store.module.mjs +4 -4
  139. package/esm2020/lib/store/effects/app.effects.mjs +3 -3
  140. package/esm2020/lib/store/effects/contextmenu.effects.mjs +3 -3
  141. package/esm2020/lib/store/effects/download.effects.mjs +3 -3
  142. package/esm2020/lib/store/effects/favorite.effects.mjs +3 -3
  143. package/esm2020/lib/store/effects/library.effects.mjs +3 -3
  144. package/esm2020/lib/store/effects/node.effects.mjs +3 -3
  145. package/esm2020/lib/store/effects/search.effects.mjs +3 -3
  146. package/esm2020/lib/store/effects/template.effects.mjs +3 -3
  147. package/esm2020/lib/store/effects/upload.effects.mjs +5 -5
  148. package/esm2020/lib/store/effects/viewer.effects.mjs +5 -5
  149. package/esm2020/ms-office/actions/aos.actions.mjs +31 -0
  150. package/esm2020/ms-office/alfresco-aca-content-ms-office.mjs +5 -0
  151. package/esm2020/ms-office/aos-extension.module.mjs +54 -0
  152. package/esm2020/ms-office/aos-extension.service.mjs +134 -0
  153. package/esm2020/ms-office/effects/aos.effects.mjs +48 -0
  154. package/esm2020/ms-office/public-api.mjs +28 -0
  155. package/fesm2015/alfresco-aca-content-about.mjs +194 -0
  156. package/fesm2015/alfresco-aca-content-about.mjs.map +1 -0
  157. package/fesm2015/alfresco-aca-content-folder-rules.mjs +2479 -0
  158. package/fesm2015/alfresco-aca-content-folder-rules.mjs.map +1 -0
  159. package/fesm2015/alfresco-aca-content-ms-office.mjs +260 -0
  160. package/fesm2015/alfresco-aca-content-ms-office.mjs.map +1 -0
  161. package/fesm2015/alfresco-aca-content.mjs +3457 -3847
  162. package/fesm2015/alfresco-aca-content.mjs.map +1 -1
  163. package/fesm2020/alfresco-aca-content-about.mjs +194 -0
  164. package/fesm2020/alfresco-aca-content-about.mjs.map +1 -0
  165. package/fesm2020/alfresco-aca-content-folder-rules.mjs +2538 -0
  166. package/fesm2020/alfresco-aca-content-folder-rules.mjs.map +1 -0
  167. package/fesm2020/alfresco-aca-content-ms-office.mjs +282 -0
  168. package/fesm2020/alfresco-aca-content-ms-office.mjs.map +1 -0
  169. package/fesm2020/alfresco-aca-content.mjs +4622 -4995
  170. package/fesm2020/alfresco-aca-content.mjs.map +1 -1
  171. package/folder-rules/assets/folder-rules.plugin.json +71 -0
  172. package/folder-rules/assets/i18n/ar.json +144 -0
  173. package/folder-rules/assets/i18n/cs.json +144 -0
  174. package/folder-rules/assets/i18n/da.json +144 -0
  175. package/folder-rules/assets/i18n/de.json +144 -0
  176. package/folder-rules/assets/i18n/en.json +144 -0
  177. package/folder-rules/assets/i18n/es.json +144 -0
  178. package/folder-rules/assets/i18n/fi.json +144 -0
  179. package/folder-rules/assets/i18n/fr.json +144 -0
  180. package/folder-rules/assets/i18n/it.json +144 -0
  181. package/folder-rules/assets/i18n/ja.json +144 -0
  182. package/folder-rules/assets/i18n/nb.json +144 -0
  183. package/folder-rules/assets/i18n/nl.json +144 -0
  184. package/folder-rules/assets/i18n/pl.json +144 -0
  185. package/folder-rules/assets/i18n/pt-BR.json +144 -0
  186. package/folder-rules/assets/i18n/ru.json +144 -0
  187. package/folder-rules/assets/i18n/sv.json +144 -0
  188. package/folder-rules/assets/i18n/zh-CN.json +144 -0
  189. package/folder-rules/folder-rules.module.d.ts +51 -0
  190. package/folder-rules/folder-rules.rules.d.ts +27 -0
  191. package/folder-rules/index.d.ts +5 -0
  192. package/folder-rules/manage-rules/manage-rules.smart-component.d.ts +87 -0
  193. package/folder-rules/model/action-parameter-constraint.model.d.ts +31 -0
  194. package/folder-rules/model/rule-action.model.d.ts +48 -0
  195. package/folder-rules/model/rule-composite-condition.model.d.ts +30 -0
  196. package/folder-rules/model/rule-grouping-item.model.d.ts +34 -0
  197. package/folder-rules/model/rule-set.model.d.ts +34 -0
  198. package/folder-rules/model/rule-simple-condition.model.d.ts +28 -0
  199. package/folder-rules/model/rule.model.d.ts +58 -0
  200. package/folder-rules/public-api.d.ts +25 -0
  201. package/folder-rules/rule-details/actions/rule-action-list.ui-component.d.ts +47 -0
  202. package/folder-rules/rule-details/actions/rule-action.ui-component.d.ts +75 -0
  203. package/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.d.ts +60 -0
  204. package/folder-rules/rule-details/conditions/rule-condition-comparators.d.ts +30 -0
  205. package/folder-rules/rule-details/conditions/rule-condition-fields.d.ts +31 -0
  206. package/folder-rules/rule-details/conditions/rule-mime-types.d.ts +27 -0
  207. package/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.d.ts +62 -0
  208. package/folder-rules/rule-details/edit-rule-dialog.ui-component.d.ts +53 -0
  209. package/folder-rules/rule-details/options/rule-options.ui-component.d.ts +55 -0
  210. package/folder-rules/rule-details/rule-details.ui-component.d.ts +54 -0
  211. package/folder-rules/rule-details/triggers/rule-triggers.ui-component.d.ts +43 -0
  212. package/folder-rules/rule-details/validators/rule-actions.validator.d.ts +27 -0
  213. package/folder-rules/rule-details/validators/rule-composite-condition.validator.d.ts +25 -0
  214. package/folder-rules/rule-list/rule-list/rule-list.ui-component.d.ts +57 -0
  215. package/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.d.ts +44 -0
  216. package/{lib/components/node-version/node-version-form.component.d.ts → folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.d.ts} +10 -21
  217. package/folder-rules/rule-set-picker/rule-set-picker.smart-component.d.ts +61 -0
  218. package/folder-rules/services/actions.service.d.ts +28 -0
  219. package/folder-rules/services/folder-rule-sets.service.d.ts +49 -0
  220. package/folder-rules/services/folder-rules.service.d.ts +41 -0
  221. package/lib/aca-content.module.d.ts +37 -37
  222. package/lib/components/common/common.module.d.ts +29 -17
  223. package/lib/components/common/language-picker/language-picker.component.d.ts +1 -1
  224. package/lib/components/common/location-link/location-link.component.d.ts +1 -6
  225. package/lib/components/common/logout/logout.component.d.ts +2 -3
  226. package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +9 -6
  227. package/lib/components/common/user-info/user-info.component.d.ts +15 -3
  228. package/lib/components/context-menu/context-menu-item.component.d.ts +1 -1
  229. package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +1 -1
  230. package/lib/components/context-menu/context-menu.component.d.ts +1 -1
  231. package/lib/components/details/details.component.d.ts +3 -6
  232. package/lib/components/dl-custom-components/document-list-custom-components.module.d.ts +4 -8
  233. package/lib/components/dl-custom-components/name-column/name-column.component.d.ts +3 -3
  234. package/lib/components/dl-custom-components/tags-column/tags-column.component.d.ts +5 -28
  235. package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +32 -12
  236. package/lib/components/favorite-libraries/favorite-libraries.component.d.ts +3 -8
  237. package/lib/components/favorites/favorites.component.d.ts +2 -12
  238. package/lib/components/files/files.component.d.ts +6 -15
  239. package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +28 -3
  240. package/lib/components/info-drawer/info.drawer.module.d.ts +5 -12
  241. package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +5 -4
  242. package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +1 -1
  243. package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +2 -2
  244. package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +1 -1
  245. package/lib/components/libraries/libraries.component.d.ts +2 -31
  246. package/lib/components/recent-files/recent-files.component.d.ts +2 -13
  247. package/lib/components/search/search-input/search-input.component.d.ts +2 -1
  248. package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +2 -31
  249. package/lib/components/search/search-results/search-results.component.d.ts +7 -13
  250. package/lib/components/search/search-results-row/search-results-row.component.d.ts +1 -1
  251. package/lib/components/search/search-results.module.d.ts +7 -5
  252. package/lib/components/shared-files/shared-files.component.d.ts +2 -11
  253. package/lib/components/shared-link-view/shared-link-view.component.d.ts +3 -2
  254. package/lib/components/shared-link-view/shared-link-view.module.d.ts +5 -6
  255. package/lib/components/sidenav/sidenav.module.d.ts +5 -5
  256. package/lib/components/sidenav/user-menu/user-menu.component.d.ts +58 -0
  257. package/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.d.ts +2 -1
  258. package/lib/components/toolbar/toolbar.module.d.ts +13 -15
  259. package/lib/components/trashcan/trashcan.component.d.ts +4 -35
  260. package/lib/components/view-profile/view-profile.component.d.ts +11 -4
  261. package/lib/components/view-profile/view-profile.guard.d.ts +2 -2
  262. package/lib/dialogs/node-template/create-from-template.dialog.d.ts +2 -2
  263. package/lib/store/effects/upload.effects.d.ts +3 -3
  264. package/ms-office/actions/aos.actions.d.ts +31 -0
  265. package/ms-office/aos-extension.module.d.ts +34 -0
  266. package/ms-office/aos-extension.service.d.ts +48 -0
  267. package/ms-office/assets/aos.plugin.json +74 -0
  268. package/ms-office/assets/i18n/ar.json +10 -0
  269. package/ms-office/assets/i18n/cs.json +10 -0
  270. package/ms-office/assets/i18n/da.json +10 -0
  271. package/ms-office/assets/i18n/de.json +10 -0
  272. package/ms-office/assets/i18n/en.json +10 -0
  273. package/ms-office/assets/i18n/es.json +10 -0
  274. package/ms-office/assets/i18n/fi.json +10 -0
  275. package/ms-office/assets/i18n/fr.json +10 -0
  276. package/ms-office/assets/i18n/it.json +10 -0
  277. package/ms-office/assets/i18n/ja.json +10 -0
  278. package/ms-office/assets/i18n/nb.json +10 -0
  279. package/ms-office/assets/i18n/nl.json +10 -0
  280. package/ms-office/assets/i18n/pl.json +10 -0
  281. package/ms-office/assets/i18n/pt-BR.json +10 -0
  282. package/ms-office/assets/i18n/ru.json +10 -0
  283. package/ms-office/assets/i18n/sv.json +10 -0
  284. package/ms-office/assets/i18n/zh-CN.json +10 -0
  285. package/ms-office/effects/aos.effects.d.ts +11 -0
  286. package/ms-office/index.d.ts +5 -0
  287. package/ms-office/public-api.d.ts +27 -0
  288. package/package.json +37 -2
  289. package/ui/application.scss +8 -0
  290. package/ui/overrides/adf-about.theme.scss +0 -5
  291. package/ui/overrides/adf-pagination.theme.scss +0 -1
  292. package/ui/overrides/ay11.scss +1 -1
  293. package/ui/variables/variables.scss +6 -13
  294. package/esm2020/lib/components/context-menu/context-menu.module.mjs +0 -76
  295. package/esm2020/lib/components/create-menu/create-menu.component.mjs +0 -73
  296. package/esm2020/lib/components/create-menu/create-menu.module.mjs +0 -44
  297. package/esm2020/lib/components/node-version/node-version-form.component.mjs +0 -70
  298. package/esm2020/lib/components/node-version/node-version.module.mjs +0 -78
  299. package/esm2020/lib/components/toolbar/document-display-mode/document-display-mode.component.mjs +0 -84
  300. package/esm2020/lib/components/trashcan/trashcan.module.mjs +0 -74
  301. package/esm2020/lib/components/view-profile/view-profile.module.mjs +0 -42
  302. package/lib/components/context-menu/context-menu.module.d.ts +0 -18
  303. package/lib/components/create-menu/create-menu.module.d.ts +0 -10
  304. package/lib/components/node-version/node-version.module.d.ts +0 -16
  305. package/lib/components/toolbar/document-display-mode/document-display-mode.component.d.ts +0 -13
  306. package/lib/components/trashcan/trashcan.module.d.ts +0 -16
  307. package/lib/components/view-profile/view-profile.module.d.ts +0 -9
@@ -21,26 +21,15 @@
21
21
  * You should have received a copy of the GNU Lesser General Public License
22
22
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
23
  */
24
- import { OnDestroy, OnInit, EventEmitter } from '@angular/core';
25
- import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
24
+ import { EventEmitter } from '@angular/core';
25
+ import { Rule } from '../../model/rule.model';
26
26
  import * as i0 from "@angular/core";
27
- export interface VersionFormEntry {
28
- comment: string;
29
- version: boolean;
30
- }
31
- export declare class AppNodeVersionFormComponent implements OnInit, OnDestroy {
32
- private formBuilder;
33
- update: EventEmitter<VersionFormEntry>;
34
- form: UntypedFormGroup;
35
- private onDestroy$;
36
- private versionOptions;
37
- constructor(formBuilder: UntypedFormBuilder);
38
- ngOnInit(): void;
39
- get versions(): {
40
- label: string;
41
- value: boolean;
42
- }[];
43
- ngOnDestroy(): void;
44
- static ɵfac: i0.ɵɵFactoryDeclaration<AppNodeVersionFormComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<AppNodeVersionFormComponent, "app-node-version-form", ["nodeVersionForm"], {}, { "update": "update"; }, never, never, false>;
27
+ export declare class RuleListItemUiComponent {
28
+ rule: Rule;
29
+ isSelected: boolean;
30
+ showEnabledToggle: boolean;
31
+ enabledChanged: EventEmitter<boolean>;
32
+ onToggleClick(isEnabled: boolean, event: Event): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<RuleListItemUiComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<RuleListItemUiComponent, "aca-rule-list-item", never, { "rule": "rule"; "isSelected": "isSelected"; "showEnabledToggle": "showEnabledToggle"; }, { "enabledChanged": "enabledChanged"; }, never, never, false>;
46
35
  }
@@ -0,0 +1,61 @@
1
+ /*!
2
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { OnDestroy, OnInit } from '@angular/core';
25
+ import { MatDialogRef } from '@angular/material/dialog';
26
+ import { FolderRuleSetsService } from '../services/folder-rule-sets.service';
27
+ import { Node } from '@alfresco/js-api';
28
+ import { RuleSet } from '../model/rule-set.model';
29
+ import { Subject } from 'rxjs';
30
+ import { NotificationService } from '@alfresco/adf-core';
31
+ import * as i0 from "@angular/core";
32
+ export interface RuleSetPickerOptions {
33
+ nodeId: string;
34
+ defaultNodeId: string;
35
+ existingRuleSet?: RuleSet;
36
+ }
37
+ export declare class RuleSetPickerSmartComponent implements OnInit, OnDestroy {
38
+ data: RuleSetPickerOptions;
39
+ private folderRuleSetsService;
40
+ private dialogRef;
41
+ private notificationService;
42
+ nodeId: string;
43
+ defaultNodeId: string;
44
+ isBusy: boolean;
45
+ existingRuleSet: RuleSet;
46
+ hasOwnedRules: boolean;
47
+ private selectedNodeId;
48
+ private folderLoading$;
49
+ mainRuleSet$: import("rxjs").Observable<RuleSet>;
50
+ rulesLoading$: import("rxjs").Observable<boolean>;
51
+ onDestroy$: Subject<void>;
52
+ constructor(data: RuleSetPickerOptions, folderRuleSetsService: FolderRuleSetsService, dialogRef: MatDialogRef<RuleSetPickerSmartComponent>, notificationService: NotificationService);
53
+ ngOnInit(): void;
54
+ ngOnDestroy(): void;
55
+ onNodeSelect(nodes: Node[]): void;
56
+ setFolderLoading(isLoading: boolean): void;
57
+ onSubmit(): void;
58
+ private handleError;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<RuleSetPickerSmartComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<RuleSetPickerSmartComponent, "aca-rule-set-picker", never, {}, {}, never, never, false>;
61
+ }
@@ -0,0 +1,28 @@
1
+ import { ActionsApi } from '@alfresco/js-api';
2
+ import { AlfrescoApiService } from '@alfresco/adf-core';
3
+ import { Observable } from 'rxjs';
4
+ import { ActionDefinitionTransformed } from '../model/rule-action.model';
5
+ import { ActionParameterConstraint, ConstraintValue } from '../model/action-parameter-constraint.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ActionsService {
8
+ private apiService;
9
+ private actionDefinitionsListingSource;
10
+ actionDefinitionsListing$: Observable<ActionDefinitionTransformed[]>;
11
+ private loadingSource;
12
+ loading$: Observable<boolean>;
13
+ private parameterConstraintsSource;
14
+ parameterConstraints$: Observable<ActionParameterConstraint[]>;
15
+ private _actionsApi;
16
+ get actionsApi(): ActionsApi;
17
+ constructor(apiService: AlfrescoApiService);
18
+ loadActionDefinitions(): void;
19
+ getParameterConstraints(constraintName: any): Observable<ConstraintValue[]>;
20
+ private transformActionDefinition;
21
+ private transformActionParameterDefinition;
22
+ private isActionDefinitionEntry;
23
+ private publicApiCall;
24
+ private formatConstraint;
25
+ loadActionParameterConstraints(actionDefinitions: ActionDefinitionTransformed[]): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionsService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActionsService>;
28
+ }
@@ -0,0 +1,49 @@
1
+ import { AlfrescoApiService } from '@alfresco/adf-core';
2
+ import { Observable } from 'rxjs';
3
+ import { NodeInfo } from '@alfresco/aca-shared/store';
4
+ import { RuleSet } from '../model/rule-set.model';
5
+ import { ContentApiService } from '@alfresco/aca-shared';
6
+ import { FolderRulesService } from './folder-rules.service';
7
+ import { Rule } from '../model/rule.model';
8
+ import * as i0 from "@angular/core";
9
+ export declare class FolderRuleSetsService {
10
+ private apiService;
11
+ private contentApi;
12
+ private folderRulesService;
13
+ static MAX_RULE_SETS_PER_GET: number;
14
+ static isOwnedRuleSet(ruleSet: RuleSet, nodeId: string): boolean;
15
+ static isLinkedRuleSet(ruleSet: RuleSet, nodeId: string): boolean;
16
+ static isMainRuleSet(ruleSet: RuleSet, nodeId: string): boolean;
17
+ static isInheritedRuleSet(ruleSet: RuleSet, nodeId: string): boolean;
18
+ private currentFolder;
19
+ private mainRuleSet;
20
+ private inheritedRuleSets;
21
+ private hasMoreRuleSets;
22
+ private mainRuleSetSource;
23
+ private inheritedRuleSetsSource;
24
+ private hasMoreRuleSetsSource;
25
+ private folderInfoSource;
26
+ private isLoadingSource;
27
+ mainRuleSet$: Observable<RuleSet>;
28
+ inheritedRuleSets$: Observable<RuleSet[]>;
29
+ hasMoreRuleSets$: Observable<boolean>;
30
+ folderInfo$: Observable<NodeInfo>;
31
+ isLoading$: Observable<boolean>;
32
+ selectedRuleSet$: Observable<RuleSet>;
33
+ constructor(apiService: AlfrescoApiService, contentApi: ContentApiService, folderRulesService: FolderRulesService);
34
+ private callApi;
35
+ private getMainRuleSet;
36
+ private getInheritedRuleSets;
37
+ loadRuleSets(nodeId: string, loadInheritedRuleSets?: boolean): void;
38
+ loadMoreInheritedRuleSets(): void;
39
+ private getNodeInfo;
40
+ private formatRuleSets;
41
+ private formatRuleSet;
42
+ removeRuleFromMainRuleSet(ruleId: string): void;
43
+ addOrUpdateRuleInMainRuleSet(newRule: Rule): void;
44
+ refreshMainRuleSet(ruleToSelect?: Rule): void;
45
+ createRuleSetLink(folderIdToCreateLink: string, folderIdToLinkFrom: string): Promise<unknown>;
46
+ deleteRuleSetLink(folderIdToDeleteLink: string, ruleSetIdToDelete: string): Promise<unknown>;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<FolderRuleSetsService, never>;
48
+ static ɵprov: i0.ɵɵInjectableDeclaration<FolderRuleSetsService>;
49
+ }
@@ -0,0 +1,41 @@
1
+ import { AlfrescoApiService } from '@alfresco/adf-core';
2
+ import { Observable } from 'rxjs';
3
+ import { Rule, RuleForForm, RuleOptions, RuleSettings } from '../model/rule.model';
4
+ import { RuleCompositeCondition } from '../model/rule-composite-condition.model';
5
+ import { RuleSet } from '../model/rule-set.model';
6
+ import * as i0 from "@angular/core";
7
+ interface GetRulesResult {
8
+ rules: Rule[];
9
+ hasMoreRules: boolean;
10
+ }
11
+ export declare class FolderRulesService {
12
+ private apiService;
13
+ static MAX_RULES_PER_GET: number;
14
+ static get emptyCompositeCondition(): RuleCompositeCondition;
15
+ static get emptyRuleOptions(): RuleOptions;
16
+ static get emptyRule(): Rule;
17
+ static get emptyRuleForForm(): RuleForForm;
18
+ private selectedRuleSource;
19
+ private deletedRuleIdSource;
20
+ selectedRule$: Observable<Rule>;
21
+ deletedRuleId$: Observable<string>;
22
+ constructor(apiService: AlfrescoApiService);
23
+ private callApi;
24
+ getRules(owningFolderId: string, ruleSetId: string, skipCount?: number): Observable<GetRulesResult>;
25
+ loadRules(ruleSet: RuleSet, skipCount?: number, selectRule?: 'first' | 'last' | Rule): void;
26
+ createRule(nodeId: string, rule: Partial<Rule>, ruleSetId?: string): Promise<Rule>;
27
+ updateRule(nodeId: string, ruleId: string, rule: Rule, ruleSetId?: string): Promise<Rule>;
28
+ deleteRule(nodeId: string, ruleId: string, ruleSetId?: string): void;
29
+ getRuleSettings(nodeId: string, key?: string): Promise<RuleSettings>;
30
+ updateRuleSettings(nodeId: string, key: string, body: RuleSettings): Promise<RuleSettings>;
31
+ private formatRules;
32
+ private formatRule;
33
+ private formatCompositeCondition;
34
+ private parseSimpleCondition;
35
+ private formatSimpleCondition;
36
+ selectRule(rule: Rule): void;
37
+ selectRuleInRuleSet(ruleSet: RuleSet, selectRule?: 'first' | 'last' | Rule): void;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<FolderRulesService, never>;
39
+ static ɵprov: i0.ɵɵInjectableDeclaration<FolderRulesService>;
40
+ }
41
+ export {};
@@ -1,47 +1,47 @@
1
- import { RouterExtensionService } from '@alfresco/aca-shared';
2
1
  import { ExtensionService } from '@alfresco/adf-extensions';
3
2
  import * as i0 from "@angular/core";
4
3
  import * as i1 from "./components/files/files.component";
5
- import * as i2 from "./components/details/details.component";
6
- import * as i3 from "./components/libraries/libraries.component";
7
- import * as i4 from "./components/favorite-libraries/favorite-libraries.component";
8
- import * as i5 from "./components/favorites/favorites.component";
9
- import * as i6 from "./components/recent-files/recent-files.component";
10
- import * as i7 from "./components/shared-files/shared-files.component";
11
- import * as i8 from "./dialogs/node-template/create-from-template.dialog";
12
- import * as i9 from "./components/home/home.component";
13
- import * as i10 from "./components/upload-files-dialog/upload-files-dialog.component";
14
- import * as i11 from "@angular/common";
15
- import * as i12 from "@angular/forms";
16
- import * as i13 from "@alfresco/adf-content-services";
17
- import * as i14 from "@angular/router";
18
- import * as i15 from "@alfresco/adf-core";
19
- import * as i16 from "@alfresco/adf-extensions";
20
- import * as i17 from "./extensions/core.extensions.module";
21
- import * as i18 from "@alfresco/aca-shared";
22
- import * as i19 from "./material.module";
23
- import * as i20 from "./store/app-store.module";
24
- import * as i21 from "./components/common/common.module";
25
- import * as i22 from "./directives/directives.module";
26
- import * as i23 from "./components/context-menu/context-menu.module";
27
- import * as i24 from "./components/info-drawer/info.drawer.module";
28
- import * as i25 from "./components/toolbar/toolbar.module";
29
- import * as i26 from "./components/sidenav/sidenav.module";
30
- import * as i27 from "./components/create-menu/create-menu.module";
31
- import * as i28 from "./components/dl-custom-components/document-list-custom-components.module";
32
- import * as i29 from "./components/search/search-input.module";
33
- import * as i30 from "./components/search/search-results.module";
34
- import * as i31 from "./components/node-version/node-version.module";
4
+ import * as i2 from "./components/libraries/libraries.component";
5
+ import * as i3 from "./components/favorite-libraries/favorite-libraries.component";
6
+ import * as i4 from "./components/favorites/favorites.component";
7
+ import * as i5 from "./components/recent-files/recent-files.component";
8
+ import * as i6 from "./components/shared-files/shared-files.component";
9
+ import * as i7 from "./components/home/home.component";
10
+ import * as i8 from "./components/upload-files-dialog/upload-files-dialog.component";
11
+ import * as i9 from "@angular/common";
12
+ import * as i10 from "@angular/forms";
13
+ import * as i11 from "@alfresco/adf-content-services";
14
+ import * as i12 from "@angular/router";
15
+ import * as i13 from "@alfresco/adf-core";
16
+ import * as i14 from "@alfresco/adf-extensions";
17
+ import * as i15 from "./extensions/core.extensions.module";
18
+ import * as i16 from "@alfresco/aca-shared";
19
+ import * as i17 from "./material.module";
20
+ import * as i18 from "./store/app-store.module";
21
+ import * as i19 from "./components/common/language-picker/language-picker.component";
22
+ import * as i20 from "./components/common/location-link/location-link.component";
23
+ import * as i21 from "./components/common/logout/logout.component";
24
+ import * as i22 from "./components/common/toggle-shared/toggle-shared.component";
25
+ import * as i23 from "./components/common/user-info/user-info.component";
26
+ import * as i24 from "./directives/directives.module";
27
+ import * as i25 from "./components/context-menu/context-menu.component";
28
+ import * as i26 from "./components/info-drawer/info.drawer.module";
29
+ import * as i27 from "./components/toolbar/toolbar.module";
30
+ import * as i28 from "./components/sidenav/sidenav.module";
31
+ import * as i29 from "./components/dl-custom-components/document-list-custom-components.module";
32
+ import * as i30 from "./components/search/search-input.module";
33
+ import * as i31 from "./components/search/search-results.module";
35
34
  import * as i32 from "@angular/platform-browser";
36
- import * as i33 from "./components/view-profile/view-profile.module";
37
- import * as i34 from "./components/trashcan/trashcan.module";
35
+ import * as i33 from "./components/view-profile/view-profile.component";
36
+ import * as i34 from "./components/trashcan/trashcan.component";
38
37
  import * as i35 from "./components/shared-link-view/shared-link-view.module";
39
- import * as i36 from "@alfresco/aca-folder-rules";
38
+ import * as i36 from "@alfresco/aca-content/folder-rules";
39
+ import * as i37 from "./components/details/details.component";
40
+ import * as i38 from "./dialogs/node-template/create-from-template.dialog";
40
41
  export declare class ContentServiceExtensionModule {
41
42
  extensions: ExtensionService;
42
- routeExtensionService: RouterExtensionService;
43
- constructor(extensions: ExtensionService, routeExtensionService: RouterExtensionService);
43
+ constructor(extensions: ExtensionService);
44
44
  static ɵfac: i0.ɵɵFactoryDeclaration<ContentServiceExtensionModule, never>;
45
- static ɵmod: i0.ɵɵNgModuleDeclaration<ContentServiceExtensionModule, [typeof i1.FilesComponent, typeof i2.DetailsComponent, typeof i3.LibrariesComponent, typeof i4.FavoriteLibrariesComponent, typeof i5.FavoritesComponent, typeof i6.RecentFilesComponent, typeof i7.SharedFilesComponent, typeof i8.CreateFromTemplateDialogComponent, typeof i9.HomeComponent, typeof i10.UploadFilesDialogComponent], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.ContentModule, typeof i14.RouterModule, typeof i15.CoreModule, typeof i16.ExtensionsModule, typeof i17.CoreExtensionsModule, typeof i18.SharedModule, typeof i19.MaterialModule, typeof i20.AppStoreModule, typeof i21.AppCommonModule, typeof i18.PageLayoutModule, typeof i22.DirectivesModule, typeof i23.ContextMenuModule, typeof i24.AppInfoDrawerModule, typeof i25.AppToolbarModule, typeof i26.AppSidenavModule, typeof i27.AppCreateMenuModule, typeof i28.DocumentListCustomComponentsModule, typeof i29.AppSearchInputModule, typeof i30.AppSearchResultsModule, typeof i31.AppNodeVersionModule, typeof i32.HammerModule, typeof i33.ViewProfileModule, typeof i34.AppTrashcanModule, typeof i35.AppSharedLinkViewModule, typeof i36.AcaFolderRulesModule], never>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ContentServiceExtensionModule, [typeof i1.FilesComponent, typeof i2.LibrariesComponent, typeof i3.FavoriteLibrariesComponent, typeof i4.FavoritesComponent, typeof i5.RecentFilesComponent, typeof i6.SharedFilesComponent, typeof i7.HomeComponent, typeof i8.UploadFilesDialogComponent], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.ContentModule, typeof i12.RouterModule, typeof i13.CoreModule, typeof i14.ExtensionsModule, typeof i15.CoreExtensionsModule, typeof i16.SharedModule, typeof i17.MaterialModule, typeof i18.AppStoreModule, typeof i19.LanguagePickerComponent, typeof i20.LocationLinkComponent, typeof i21.LogoutComponent, typeof i22.ToggleSharedComponent, typeof i23.UserInfoComponent, typeof i16.PageLayoutModule, typeof i24.DirectivesModule, typeof i25.ContextMenuComponent, typeof i26.AppInfoDrawerModule, typeof i27.AppToolbarModule, typeof i28.AppSidenavModule, typeof i29.DocumentListCustomComponentsModule, typeof i30.AppSearchInputModule, typeof i31.AppSearchResultsModule, typeof i32.HammerModule, typeof i33.ViewProfileComponent, typeof i34.TrashcanComponent, typeof i35.AppSharedLinkViewModule, typeof i36.AcaFolderRulesModule, typeof i16.GenericErrorComponent, typeof i37.DetailsComponent, typeof i38.CreateFromTemplateDialogComponent, typeof i16.OpenInAppModule], never>;
46
46
  static ɵinj: i0.ɵɵInjectorDeclaration<ContentServiceExtensionModule>;
47
47
  }
@@ -1,17 +1,29 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./location-link/location-link.component";
3
- import * as i2 from "./toggle-shared/toggle-shared.component";
4
- import * as i3 from "./language-picker/language-picker.component";
5
- import * as i4 from "./logout/logout.component";
6
- import * as i5 from "./user-info/user-info.component";
7
- import * as i6 from "@angular/common";
8
- import * as i7 from "@alfresco/adf-core";
9
- import * as i8 from "@alfresco/adf-content-services";
10
- import * as i9 from "@alfresco/adf-extensions";
11
- import * as i10 from "@alfresco/aca-shared";
12
- import * as i11 from "@angular/router";
13
- export declare class AppCommonModule {
14
- static ɵfac: i0.ɵɵFactoryDeclaration<AppCommonModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<AppCommonModule, [typeof i1.LocationLinkComponent, typeof i2.ToggleSharedComponent, typeof i3.LanguagePickerComponent, typeof i4.LogoutComponent, typeof i5.UserInfoComponent], [typeof i6.CommonModule, typeof i7.CoreModule, typeof i8.ContentModule, typeof i9.ExtensionsModule, typeof i10.GenericErrorModule, typeof i11.RouterModule], [typeof i9.ExtensionsModule, typeof i1.LocationLinkComponent, typeof i10.GenericErrorModule, typeof i2.ToggleSharedComponent, typeof i3.LanguagePickerComponent, typeof i4.LogoutComponent, typeof i5.UserInfoComponent]>;
16
- static ɵinj: i0.ɵɵInjectorDeclaration<AppCommonModule>;
17
- }
1
+ /*!
2
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { LocationLinkComponent } from './location-link/location-link.component';
25
+ import { ToggleSharedComponent } from './toggle-shared/toggle-shared.component';
26
+ import { LanguagePickerComponent } from './language-picker/language-picker.component';
27
+ import { LogoutComponent } from './logout/logout.component';
28
+ import { UserInfoComponent } from './user-info/user-info.component';
29
+ export declare const APP_COMMON_DIRECTIVES: readonly [typeof LanguagePickerComponent, typeof LocationLinkComponent, typeof LogoutComponent, typeof ToggleSharedComponent, typeof UserInfoComponent];
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class LanguagePickerComponent {
3
3
  static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePickerComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<LanguagePickerComponent, "aca-language-picker", never, {}, {}, never, never, false>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<LanguagePickerComponent, "aca-language-picker", never, {}, {}, never, never, true>;
5
5
  }
@@ -23,10 +23,6 @@
23
23
  */
24
24
  import { OnInit } from '@angular/core';
25
25
  import { Observable, BehaviorSubject } from 'rxjs';
26
- import { Store } from '@ngrx/store';
27
- import { AppStore } from '@alfresco/aca-shared/store';
28
- import { ContentApiService } from '@alfresco/aca-shared';
29
- import { TranslationService } from '@alfresco/adf-core';
30
26
  import * as i0 from "@angular/core";
31
27
  export declare class LocationLinkComponent implements OnInit {
32
28
  private store;
@@ -38,11 +34,10 @@ export declare class LocationLinkComponent implements OnInit {
38
34
  context: any;
39
35
  showLocation: boolean;
40
36
  onMouseEnter(): void;
41
- constructor(store: Store<AppStore>, contentApi: ContentApiService, translationService: TranslationService);
42
37
  goToLocation(): void;
43
38
  ngOnInit(): void;
44
39
  private getDisplayText;
45
40
  private getTooltip;
46
41
  static ɵfac: i0.ɵɵFactoryDeclaration<LocationLinkComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<LocationLinkComponent, "aca-location-link", never, { "context": "context"; "showLocation": "showLocation"; }, {}, never, never, false>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<LocationLinkComponent, "aca-location-link", never, { "context": "context"; "showLocation": "showLocation"; }, {}, never, never, true>;
48
43
  }
@@ -1,10 +1,9 @@
1
1
  import { Store } from '@ngrx/store';
2
- import { AppStore } from '@alfresco/aca-shared/store';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class LogoutComponent {
5
4
  private store;
6
- constructor(store: Store<AppStore>);
5
+ constructor(store: Store);
7
6
  onLogoutEvent(): void;
8
7
  static ɵfac: i0.ɵɵFactoryDeclaration<LogoutComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<LogoutComponent, "aca-logout", never, {}, {}, never, never, false>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<LogoutComponent, "aca-logout", never, {}, {}, never, never, true>;
10
9
  }
@@ -21,23 +21,26 @@
21
21
  * You should have received a copy of the GNU Lesser General Public License
22
22
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
23
  */
24
- import { OnInit } from '@angular/core';
25
- import { Observable } from 'rxjs';
24
+ import { OnDestroy, OnInit } from '@angular/core';
25
+ import { Observable, Subject } from 'rxjs';
26
26
  import { Store } from '@ngrx/store';
27
27
  import { SelectionState } from '@alfresco/adf-extensions';
28
28
  import { AppStore } from '@alfresco/aca-shared/store';
29
29
  import * as i0 from "@angular/core";
30
- export declare class ToggleSharedComponent implements OnInit {
30
+ export declare class ToggleSharedComponent implements OnInit, OnDestroy {
31
31
  private store;
32
32
  data: {
33
33
  iconButton?: string;
34
34
  };
35
35
  selection$: Observable<SelectionState>;
36
+ selectionState: SelectionState;
37
+ selectionLabel: string;
38
+ isShared: boolean;
39
+ onDestroy$: Subject<void>;
36
40
  constructor(store: Store<AppStore>);
37
41
  ngOnInit(): void;
38
- isShared(selection: SelectionState): boolean;
42
+ ngOnDestroy(): void;
39
43
  editSharedNode(selection: SelectionState, focusedElementOnCloseSelector: string): void;
40
- getLabel(selection: SelectionState): string;
41
44
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleSharedComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleSharedComponent, "app-toggle-shared", never, { "data": "data"; }, {}, never, never, false>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleSharedComponent, "app-toggle-shared", never, { "data": "data"; }, {}, never, never, true>;
43
46
  }
@@ -30,15 +30,27 @@ export declare class UserInfoComponent implements OnInit {
30
30
  private peopleContentService;
31
31
  private identityUserService;
32
32
  private authService;
33
- displayName$: Observable<string>;
33
+ displayName$: Observable<{
34
+ firstName: string;
35
+ initials: string;
36
+ email: string;
37
+ }>;
34
38
  constructor(peopleContentService: PeopleContentService, identityUserService: IdentityUserService, authService: AuthenticationService);
35
39
  ngOnInit(): void;
36
40
  getUserInfo(): void;
37
41
  get isLoggedIn(): boolean;
38
42
  private loadEcmUserInfo;
39
43
  private loadIdentityUserInfo;
40
- private parseDisplayName;
44
+ parseDisplayName(model: {
45
+ firstName?: string;
46
+ lastName?: string;
47
+ email?: string;
48
+ }): {
49
+ firstName: string;
50
+ initials: string;
51
+ email: string;
52
+ };
41
53
  private isEcmLoggedIn;
42
54
  static ɵfac: i0.ɵɵFactoryDeclaration<UserInfoComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<UserInfoComponent, "app-user-info", never, {}, {}, never, never, false>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserInfoComponent, "app-user-info", never, {}, {}, never, never, true>;
44
56
  }
@@ -9,5 +9,5 @@ export declare class ContextMenuItemComponent {
9
9
  private hasClickAction;
10
10
  trackByActionId(_: number, obj: ContentActionRef): string;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuItemComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuItemComponent, "app-context-menu-item", never, { "actionRef": "actionRef"; }, {}, never, never, false>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuItemComponent, "app-context-menu-item", never, { "actionRef": "actionRef"; }, {}, never, never, true>;
13
13
  }
@@ -31,5 +31,5 @@ export declare class OutsideEventDirective implements OnInit, OnDestroy {
31
31
  ngOnDestroy(): void;
32
32
  private findAncestor;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<OutsideEventDirective, never>;
34
- static ɵdir: i0.ɵɵDirectiveDeclaration<OutsideEventDirective, "[acaContextMenuOutsideEvent]", never, {}, { "clickOutside": "clickOutside"; }, never, never, false>;
34
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OutsideEventDirective, "[acaContextMenuOutsideEvent]", never, {}, { "clickOutside": "clickOutside"; }, never, never, true>;
35
35
  }
@@ -44,5 +44,5 @@ export declare class ContextMenuComponent implements OnInit, OnDestroy, AfterVie
44
44
  ngAfterViewInit(): void;
45
45
  trackByActionId(_: number, obj: ContentActionRef): string;
46
46
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuComponent, "aca-context-menu", never, {}, {}, never, never, false>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuComponent, "aca-context-menu", never, {}, {}, never, never, true>;
48
48
  }
@@ -23,10 +23,7 @@
23
23
  */
24
24
  import { OnInit, OnDestroy } from '@angular/core';
25
25
  import { ActivatedRoute } from '@angular/router';
26
- import { AppExtensionService, ContentApiService, PageComponent } from '@alfresco/aca-shared';
27
- import { AppStore } from '@alfresco/aca-shared/store';
28
- import { Store } from '@ngrx/store';
29
- import { ContentManagementService } from '../../services/content-management.service';
26
+ import { ContentApiService, PageComponent } from '@alfresco/aca-shared';
30
27
  import { Subject } from 'rxjs';
31
28
  import * as i0 from "@angular/core";
32
29
  export declare class DetailsComponent extends PageComponent implements OnInit, OnDestroy {
@@ -36,11 +33,11 @@ export declare class DetailsComponent extends PageComponent implements OnInit, O
36
33
  isLoading: boolean;
37
34
  onDestroy$: Subject<boolean>;
38
35
  activeTab: number;
39
- constructor(route: ActivatedRoute, contentApi: ContentApiService, store: Store<AppStore>, content: ContentManagementService, extensions: AppExtensionService);
36
+ constructor(route: ActivatedRoute, contentApi: ContentApiService);
40
37
  ngOnInit(): void;
41
38
  setActiveTab(tabName: string): void;
42
39
  goBack(): void;
43
40
  ngOnDestroy(): void;
44
41
  static ɵfac: i0.ɵɵFactoryDeclaration<DetailsComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<DetailsComponent, "app-details-manager", never, {}, {}, never, never, false>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<DetailsComponent, "app-details-manager", never, {}, {}, never, never, true>;
46
43
  }
@@ -1,14 +1,10 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./name-column/name-column.component";
2
+ import * as i1 from "@alfresco/aca-shared";
3
3
  import * as i2 from "./thumbnail-column/thumbnail-column.component";
4
- import * as i3 from "./tags-column/tags-column.component";
5
- import * as i4 from "@angular/platform-browser";
6
- import * as i5 from "@alfresco/adf-core";
7
- import * as i6 from "@alfresco/adf-content-services";
8
- import * as i7 from "../../material.module";
9
- import * as i8 from "@alfresco/aca-shared";
4
+ import * as i3 from "./name-column/name-column.component";
5
+ import * as i4 from "./tags-column/tags-column.component";
10
6
  export declare class DocumentListCustomComponentsModule {
11
7
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentListCustomComponentsModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentListCustomComponentsModule, [typeof i1.CustomNameColumnComponent, typeof i2.ThumbnailColumnComponent, typeof i3.TagsColumnComponent], [typeof i4.BrowserModule, typeof i5.CoreModule, typeof i6.ContentModule, typeof i7.MaterialModule, typeof i8.LockedByModule], [typeof i1.CustomNameColumnComponent, typeof i2.ThumbnailColumnComponent, typeof i3.TagsColumnComponent]>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentListCustomComponentsModule, never, [typeof i1.LockedByComponent, typeof i2.ThumbnailColumnComponent, typeof i3.CustomNameColumnComponent, typeof i4.TagsColumnComponent], never>;
13
9
  static ɵinj: i0.ɵɵInjectorDeclaration<DocumentListCustomComponentsModule>;
14
10
  }
@@ -30,12 +30,12 @@ export declare class CustomNameColumnComponent extends NameColumnComponent imple
30
30
  private actions$;
31
31
  private nodesService;
32
32
  private onDestroy$$;
33
+ isFile: boolean;
34
+ isFileWriteLocked: boolean;
33
35
  constructor(element: ElementRef, cd: ChangeDetectorRef, actions$: Actions, nodesService: NodesApiService);
34
36
  ngOnInit(): void;
35
37
  onLinkClick(event: Event): void;
36
38
  ngOnDestroy(): void;
37
- get isFile(): boolean;
38
- get isFileWriteLocked(): boolean;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<CustomNameColumnComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomNameColumnComponent, "aca-custom-name-column", never, {}, {}, never, never, false>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomNameColumnComponent, "aca-custom-name-column", never, {}, {}, never, never, true>;
41
41
  }
@@ -1,35 +1,12 @@
1
- /*!
2
- * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
- *
4
- * Alfresco Example Content Application
5
- *
6
- * This file is part of the Alfresco Example Content Application.
7
- * If the software was purchased under a paid Alfresco license, the terms of
8
- * the paid license agreement will prevail. Otherwise, the software is
9
- * provided under the following open source license terms:
10
- *
11
- * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
- * it under the terms of the GNU Lesser General Public License as published by
13
- * the Free Software Foundation, either version 3 of the License, or
14
- * (at your option) any later version.
15
- *
16
- * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- * GNU Lesser General Public License for more details.
20
- *
21
- * You should have received a copy of the GNU Lesser General Public License
22
- * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
- */
24
- import { ShareDataRow } from '@alfresco/adf-content-services';
25
- import { ChangeDetectorRef } from '@angular/core';
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
26
2
  import * as i0 from "@angular/core";
27
- export declare class TagsColumnComponent {
3
+ export declare class TagsColumnComponent implements OnInit {
28
4
  private cd;
29
5
  context: any;
6
+ nodeId: string;
30
7
  constructor(cd: ChangeDetectorRef);
31
- getNodeId(row: ShareDataRow): string;
8
+ ngOnInit(): void;
32
9
  onTagsLoaded(): void;
33
10
  static ɵfac: i0.ɵɵFactoryDeclaration<TagsColumnComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<TagsColumnComponent, "aca-tags-column", never, { "context": "context"; }, {}, never, never, false>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsColumnComponent, "aca-tags-column", never, { "context": "context"; }, {}, never, never, true>;
35
12
  }