@alfresco/aca-content 4.0.0-4895233349

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 (264) hide show
  1. package/README.md +24 -0
  2. package/about/about.component.d.ts +45 -0
  3. package/about/aca-about.module.d.ts +39 -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 +2626 -0
  9. package/assets/i18n/ar.json +660 -0
  10. package/assets/i18n/cs.json +660 -0
  11. package/assets/i18n/da.json +660 -0
  12. package/assets/i18n/de.json +660 -0
  13. package/assets/i18n/en.json +660 -0
  14. package/assets/i18n/es.json +660 -0
  15. package/assets/i18n/fi.json +660 -0
  16. package/assets/i18n/fr.json +660 -0
  17. package/assets/i18n/it.json +660 -0
  18. package/assets/i18n/ja.json +660 -0
  19. package/assets/i18n/nb.json +660 -0
  20. package/assets/i18n/nl.json +660 -0
  21. package/assets/i18n/pl.json +660 -0
  22. package/assets/i18n/pt-BR.json +660 -0
  23. package/assets/i18n/ru.json +660 -0
  24. package/assets/i18n/sv.json +660 -0
  25. package/assets/i18n/zh-CN.json +660 -0
  26. package/assets/images/Wallpaper-BG-generic.svg +39 -0
  27. package/assets/images/adf-move-file-24px.svg +1 -0
  28. package/assets/images/baseline-library_books-24px.svg +2 -0
  29. package/assets/images/baseline-lock-24px.svg +1 -0
  30. package/assets/images/join-library.svg +32 -0
  31. package/esm2020/about/about.component.mjs +77 -0
  32. package/esm2020/about/aca-about.module.mjs +67 -0
  33. package/esm2020/about/alfresco-aca-content-about.mjs +5 -0
  34. package/esm2020/about/dev-mode.tokens.mjs +26 -0
  35. package/esm2020/about/package-json.token.mjs +26 -0
  36. package/esm2020/about/public-api.mjs +28 -0
  37. package/esm2020/alfresco-aca-content.mjs +5 -0
  38. package/esm2020/lib/aca-content.module.mjs +365 -0
  39. package/esm2020/lib/aca-content.routes.mjs +581 -0
  40. package/esm2020/lib/components/common/common.module.mjs +67 -0
  41. package/esm2020/lib/components/common/language-picker/language-picker.component.mjs +57 -0
  42. package/esm2020/lib/components/common/location-link/location-link.component.mjs +177 -0
  43. package/esm2020/lib/components/common/logout/logout.component.mjs +60 -0
  44. package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +65 -0
  45. package/esm2020/lib/components/common/user-info/user-info.component.mjs +86 -0
  46. package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +58 -0
  47. package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +65 -0
  48. package/esm2020/lib/components/context-menu/context-menu-overlay.mjs +32 -0
  49. package/esm2020/lib/components/context-menu/context-menu.component.mjs +102 -0
  50. package/esm2020/lib/components/context-menu/context-menu.module.mjs +76 -0
  51. package/esm2020/lib/components/context-menu/context-menu.service.mjs +103 -0
  52. package/esm2020/lib/components/context-menu/direction.token.mjs +29 -0
  53. package/esm2020/lib/components/context-menu/interfaces.mjs +25 -0
  54. package/esm2020/lib/components/create-menu/create-menu.component.mjs +73 -0
  55. package/esm2020/lib/components/create-menu/create-menu.module.mjs +44 -0
  56. package/esm2020/lib/components/details/details.component.mjs +99 -0
  57. package/esm2020/lib/components/dl-custom-components/document-list-custom-components.module.mjs +49 -0
  58. package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +90 -0
  59. package/esm2020/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +31 -0
  60. package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +51 -0
  61. package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +113 -0
  62. package/esm2020/lib/components/favorites/favorites.component.mjs +98 -0
  63. package/esm2020/lib/components/files/files.component.mjs +312 -0
  64. package/esm2020/lib/components/home/home.component.mjs +49 -0
  65. package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +56 -0
  66. package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +92 -0
  67. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +143 -0
  68. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +42 -0
  69. package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +88 -0
  70. package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +95 -0
  71. package/esm2020/lib/components/libraries/libraries.component.mjs +70 -0
  72. package/esm2020/lib/components/node-version/node-version-form.component.mjs +70 -0
  73. package/esm2020/lib/components/node-version/node-version.module.mjs +78 -0
  74. package/esm2020/lib/components/recent-files/recent-files.component.mjs +81 -0
  75. package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +59 -0
  76. package/esm2020/lib/components/search/search-input/search-input.component.mjs +275 -0
  77. package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +87 -0
  78. package/esm2020/lib/components/search/search-input.module.mjs +47 -0
  79. package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +91 -0
  80. package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +142 -0
  81. package/esm2020/lib/components/search/search-navigation.service.mjs +60 -0
  82. package/esm2020/lib/components/search/search-results/search-results.component.mjs +221 -0
  83. package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +101 -0
  84. package/esm2020/lib/components/search/search-results.module.mjs +88 -0
  85. package/esm2020/lib/components/shared-files/shared-files.component.mjs +78 -0
  86. package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +81 -0
  87. package/esm2020/lib/components/shared-link-view/shared-link-view.module.mjs +69 -0
  88. package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +57 -0
  89. package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +53 -0
  90. package/esm2020/lib/components/sidenav/components/sidenav-header.component.mjs +74 -0
  91. package/esm2020/lib/components/sidenav/directives/action.directive.mjs +74 -0
  92. package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +92 -0
  93. package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +101 -0
  94. package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +98 -0
  95. package/esm2020/lib/components/sidenav/sidenav.component.mjs +83 -0
  96. package/esm2020/lib/components/sidenav/sidenav.module.mjs +84 -0
  97. package/esm2020/lib/components/toolbar/document-display-mode/document-display-mode.component.mjs +84 -0
  98. package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +150 -0
  99. package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +79 -0
  100. package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +101 -0
  101. package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +75 -0
  102. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +98 -0
  103. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +80 -0
  104. package/esm2020/lib/components/toolbar/toolbar.module.mjs +88 -0
  105. package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +109 -0
  106. package/esm2020/lib/components/trashcan/trashcan.component.mjs +63 -0
  107. package/esm2020/lib/components/trashcan/trashcan.module.mjs +74 -0
  108. package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +50 -0
  109. package/esm2020/lib/components/view-profile/view-profile.component.mjs +174 -0
  110. package/esm2020/lib/components/view-profile/view-profile.guard.mjs +47 -0
  111. package/esm2020/lib/components/view-profile/view-profile.module.mjs +42 -0
  112. package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +119 -0
  113. package/esm2020/lib/directives/directives.module.mjs +42 -0
  114. package/esm2020/lib/directives/document-list.directive.mjs +141 -0
  115. package/esm2020/lib/extensions/core.extensions.module.mjs +64 -0
  116. package/esm2020/lib/material.module.mjs +57 -0
  117. package/esm2020/lib/services/content-management.service.mjs +870 -0
  118. package/esm2020/lib/services/content-service-extension.service.mjs +63 -0
  119. package/esm2020/lib/services/content-url.service.mjs +72 -0
  120. package/esm2020/lib/services/node-actions.service.mjs +600 -0
  121. package/esm2020/lib/services/node-template.service.mjs +149 -0
  122. package/esm2020/lib/store/app-store.module.mjs +95 -0
  123. package/esm2020/lib/store/effects/app.effects.mjs +61 -0
  124. package/esm2020/lib/store/effects/contextmenu.effects.mjs +55 -0
  125. package/esm2020/lib/store/effects/download.effects.mjs +159 -0
  126. package/esm2020/lib/store/effects/favorite.effects.mjs +76 -0
  127. package/esm2020/lib/store/effects/library.effects.mjs +111 -0
  128. package/esm2020/lib/store/effects/node.effects.mjs +309 -0
  129. package/esm2020/lib/store/effects/search.effects.mjs +60 -0
  130. package/esm2020/lib/store/effects/template.effects.mjs +121 -0
  131. package/esm2020/lib/store/effects/upload.effects.mjs +169 -0
  132. package/esm2020/lib/store/effects/viewer.effects.mjs +175 -0
  133. package/esm2020/lib/store/effects.mjs +35 -0
  134. package/esm2020/lib/store/initial-state.mjs +62 -0
  135. package/esm2020/lib/store/reducers/app.reducer.mjs +211 -0
  136. package/esm2020/public-api.mjs +32 -0
  137. package/fesm2015/alfresco-aca-content-about.mjs +216 -0
  138. package/fesm2015/alfresco-aca-content-about.mjs.map +1 -0
  139. package/fesm2015/alfresco-aca-content.mjs +9771 -0
  140. package/fesm2015/alfresco-aca-content.mjs.map +1 -0
  141. package/fesm2020/alfresco-aca-content-about.mjs +214 -0
  142. package/fesm2020/alfresco-aca-content-about.mjs.map +1 -0
  143. package/fesm2020/alfresco-aca-content.mjs +9915 -0
  144. package/fesm2020/alfresco-aca-content.mjs.map +1 -0
  145. package/index.d.ts +5 -0
  146. package/lib/aca-content.module.d.ts +47 -0
  147. package/lib/aca-content.routes.d.ts +27 -0
  148. package/lib/components/common/common.module.d.ts +17 -0
  149. package/lib/components/common/language-picker/language-picker.component.d.ts +5 -0
  150. package/lib/components/common/location-link/location-link.component.d.ts +48 -0
  151. package/lib/components/common/logout/logout.component.d.ts +10 -0
  152. package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +43 -0
  153. package/lib/components/common/user-info/user-info.component.d.ts +44 -0
  154. package/lib/components/context-menu/context-menu-item.component.d.ts +13 -0
  155. package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +35 -0
  156. package/lib/components/context-menu/context-menu-overlay.d.ts +29 -0
  157. package/lib/components/context-menu/context-menu.component.d.ts +48 -0
  158. package/lib/components/context-menu/context-menu.module.d.ts +18 -0
  159. package/lib/components/context-menu/context-menu.service.d.ts +43 -0
  160. package/lib/components/context-menu/direction.token.d.ts +25 -0
  161. package/lib/components/context-menu/interfaces.d.ts +30 -0
  162. package/lib/components/create-menu/create-menu.component.d.ts +42 -0
  163. package/lib/components/create-menu/create-menu.module.d.ts +10 -0
  164. package/lib/components/details/details.component.d.ts +46 -0
  165. package/lib/components/dl-custom-components/document-list-custom-components.module.d.ts +14 -0
  166. package/lib/components/dl-custom-components/name-column/name-column.component.d.ts +41 -0
  167. package/lib/components/dl-custom-components/tags-column/tags-column.component.d.ts +35 -0
  168. package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +17 -0
  169. package/lib/components/favorite-libraries/favorite-libraries.component.d.ts +54 -0
  170. package/lib/components/favorites/favorites.component.d.ts +49 -0
  171. package/lib/components/files/files.component.d.ts +55 -0
  172. package/lib/components/home/home.component.d.ts +36 -0
  173. package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +11 -0
  174. package/lib/components/info-drawer/info.drawer.module.d.ts +19 -0
  175. package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +64 -0
  176. package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +7 -0
  177. package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +49 -0
  178. package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +35 -0
  179. package/lib/components/libraries/libraries.component.d.ts +44 -0
  180. package/lib/components/node-version/node-version-form.component.d.ts +46 -0
  181. package/lib/components/node-version/node-version.module.d.ts +16 -0
  182. package/lib/components/recent-files/recent-files.component.d.ts +48 -0
  183. package/lib/components/search/search-action-menu/search-action-menu.component.d.ts +38 -0
  184. package/lib/components/search/search-input/search-input.component.d.ts +85 -0
  185. package/lib/components/search/search-input-control/search-input-control.component.d.ts +50 -0
  186. package/lib/components/search/search-input.module.d.ts +12 -0
  187. package/lib/components/search/search-libraries-results/search-libraries-query-builder.service.d.ts +56 -0
  188. package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +58 -0
  189. package/lib/components/search/search-navigation.service.d.ts +13 -0
  190. package/lib/components/search/search-results/search-results.component.d.ts +69 -0
  191. package/lib/components/search/search-results-row/search-results-row.component.d.ts +50 -0
  192. package/lib/components/search/search-results.module.d.ts +21 -0
  193. package/lib/components/shared-files/shared-files.component.d.ts +47 -0
  194. package/lib/components/shared-link-view/shared-link-view.component.d.ts +47 -0
  195. package/lib/components/shared-link-view/shared-link-view.module.d.ts +15 -0
  196. package/lib/components/sidenav/components/button-menu.component.d.ts +37 -0
  197. package/lib/components/sidenav/components/expand-menu.component.d.ts +35 -0
  198. package/lib/components/sidenav/components/sidenav-header.component.d.ts +48 -0
  199. package/lib/components/sidenav/directives/action.directive.d.ts +14 -0
  200. package/lib/components/sidenav/directives/active-link.directive.d.ts +45 -0
  201. package/lib/components/sidenav/directives/expansion-panel.directive.d.ts +44 -0
  202. package/lib/components/sidenav/directives/menu-panel.directive.d.ts +42 -0
  203. package/lib/components/sidenav/sidenav.component.d.ts +50 -0
  204. package/lib/components/sidenav/sidenav.module.d.ts +19 -0
  205. package/lib/components/toolbar/document-display-mode/document-display-mode.component.d.ts +13 -0
  206. package/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.d.ts +47 -0
  207. package/lib/components/toolbar/toggle-favorite/toggle-favorite.component.d.ts +42 -0
  208. package/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.d.ts +42 -0
  209. package/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.d.ts +11 -0
  210. package/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.d.ts +41 -0
  211. package/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.d.ts +10 -0
  212. package/lib/components/toolbar/toolbar.module.d.ts +20 -0
  213. package/lib/components/toolbar/view-node/view-node.component.d.ts +19 -0
  214. package/lib/components/trashcan/trashcan.component.d.ts +42 -0
  215. package/lib/components/trashcan/trashcan.module.d.ts +16 -0
  216. package/lib/components/upload-files-dialog/upload-files-dialog.component.d.ts +37 -0
  217. package/lib/components/view-profile/view-profile.component.d.ts +59 -0
  218. package/lib/components/view-profile/view-profile.guard.d.ts +12 -0
  219. package/lib/components/view-profile/view-profile.module.d.ts +9 -0
  220. package/lib/dialogs/node-template/create-from-template.dialog.d.ts +49 -0
  221. package/lib/directives/directives.module.d.ts +9 -0
  222. package/lib/directives/document-list.directive.d.ts +56 -0
  223. package/lib/extensions/core.extensions.module.d.ts +14 -0
  224. package/lib/material.module.d.ts +14 -0
  225. package/lib/services/content-management.service.d.ts +100 -0
  226. package/lib/services/content-service-extension.service.d.ts +11 -0
  227. package/lib/services/content-url.service.d.ts +17 -0
  228. package/lib/services/node-actions.service.d.ts +93 -0
  229. package/lib/services/node-template.service.d.ts +34 -0
  230. package/lib/store/app-store.module.d.ts +10 -0
  231. package/lib/store/effects/app.effects.d.ts +41 -0
  232. package/lib/store/effects/contextmenu.effects.d.ts +12 -0
  233. package/lib/store/effects/download.effects.d.ts +49 -0
  234. package/lib/store/effects/favorite.effects.d.ts +38 -0
  235. package/lib/store/effects/library.effects.d.ts +43 -0
  236. package/lib/store/effects/node.effects.d.ts +56 -0
  237. package/lib/store/effects/search.effects.d.ts +37 -0
  238. package/lib/store/effects/template.effects.d.ts +54 -0
  239. package/lib/store/effects/upload.effects.d.ts +52 -0
  240. package/lib/store/effects/viewer.effects.d.ts +55 -0
  241. package/lib/store/effects.d.ts +34 -0
  242. package/lib/store/initial-state.d.ts +26 -0
  243. package/lib/store/reducers/app.reducer.d.ts +26 -0
  244. package/package.json +47 -0
  245. package/public-api.d.ts +28 -0
  246. package/ui/application.scss +53 -0
  247. package/ui/colors.scss +96 -0
  248. package/ui/custom-theme.scss +34 -0
  249. package/ui/dynamic-theme/custom-background-color.scss +14 -0
  250. package/ui/dynamic-theme/custom-palette-creator.scss +132 -0
  251. package/ui/dynamic-theme/custom-text-color.scss +8 -0
  252. package/ui/dynamic-theme/custom-theme-palettes.scss +33 -0
  253. package/ui/dynamic-theme/custom-theme.scss.tpl +72 -0
  254. package/ui/dynamic-theme/index.scss +1 -0
  255. package/ui/dynamic-theme/theme-configuration.scss.tpl +14 -0
  256. package/ui/dynamic-theme/typography.scss +94 -0
  257. package/ui/mixins.scss +26 -0
  258. package/ui/overrides/adf-about.theme.scss +38 -0
  259. package/ui/overrides/adf-pagination.theme.scss +46 -0
  260. package/ui/overrides/adf-style-fixes.theme.scss +18 -0
  261. package/ui/overrides/ay11.scss +232 -0
  262. package/ui/theme.scss +55 -0
  263. package/ui/variables/font-family.scss +1 -0
  264. package/ui/variables/variables.scss +92 -0
@@ -0,0 +1,41 @@
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 { NameColumnComponent, NodesApiService } from '@alfresco/adf-content-services';
25
+ import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
26
+ import { Actions } from '@ngrx/effects';
27
+ import * as i0 from "@angular/core";
28
+ export declare class CustomNameColumnComponent extends NameColumnComponent implements OnInit, OnDestroy {
29
+ private cd;
30
+ private actions$;
31
+ private nodesService;
32
+ private onDestroy$$;
33
+ constructor(element: ElementRef, cd: ChangeDetectorRef, actions$: Actions, nodesService: NodesApiService);
34
+ ngOnInit(): void;
35
+ onLinkClick(event: Event): void;
36
+ ngOnDestroy(): void;
37
+ get isFile(): boolean;
38
+ get isFileWriteLocked(): boolean;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomNameColumnComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomNameColumnComponent, "aca-custom-name-column", never, {}, {}, never, never, false>;
41
+ }
@@ -0,0 +1,35 @@
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';
26
+ import * as i0 from "@angular/core";
27
+ export declare class TagsColumnComponent {
28
+ private cd;
29
+ context: any;
30
+ constructor(cd: ChangeDetectorRef);
31
+ getNodeId(row: ShareDataRow): string;
32
+ onTagsLoaded(): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagsColumnComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsColumnComponent, "aca-tags-column", never, { "context": "context"; }, {}, never, never, false>;
35
+ }
@@ -0,0 +1,17 @@
1
+ import { TranslationService } from '@alfresco/adf-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ThumbnailColumnComponent {
4
+ private translation;
5
+ context: any;
6
+ constructor(translation: TranslationService);
7
+ getThumbnail({ data, row, col }: {
8
+ data: any;
9
+ row: any;
10
+ col: any;
11
+ }): string;
12
+ getToolTip({ row }: {
13
+ row: any;
14
+ }): string;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThumbnailColumnComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailColumnComponent, "aca-custom-thumbnail-column", never, { "context": "context"; }, {}, never, never, false>;
17
+ }
@@ -0,0 +1,54 @@
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 { BreakpointObserver } from '@angular/cdk/layout';
25
+ import { OnInit, ChangeDetectorRef } from '@angular/core';
26
+ import { Store } from '@ngrx/store';
27
+ import { SiteEntry, FavoritePaging, Pagination } from '@alfresco/js-api';
28
+ import { ContentManagementService } from '../../services/content-management.service';
29
+ import { AppExtensionService, AppHookService, ContentApiService, PageComponent } from '@alfresco/aca-shared';
30
+ import { UserPreferencesService } from '@alfresco/adf-core';
31
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
32
+ import * as i0 from "@angular/core";
33
+ export declare class FavoriteLibrariesComponent extends PageComponent implements OnInit {
34
+ private appHookService;
35
+ private contentApiService;
36
+ private breakpointObserver;
37
+ private preferences;
38
+ private changeDetectorRef;
39
+ pagination: Pagination;
40
+ isLoading: boolean;
41
+ list: FavoritePaging;
42
+ isSmallScreen: boolean;
43
+ columns: DocumentListPresetRef[];
44
+ constructor(content: ContentManagementService, store: Store<any>, extensions: AppExtensionService, appHookService: AppHookService, contentApiService: ContentApiService, breakpointObserver: BreakpointObserver, preferences: UserPreferencesService, changeDetectorRef: ChangeDetectorRef);
45
+ ngOnInit(): void;
46
+ navigateTo(node: SiteEntry): void;
47
+ handleNodeClick(event: Event): void;
48
+ onChangePageSize(pagination: Pagination): void;
49
+ onChange(pagination: Pagination): void;
50
+ private getList;
51
+ private reloadList;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<FavoriteLibrariesComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<FavoriteLibrariesComponent, "ng-component", never, {}, {}, never, never, false>;
54
+ }
@@ -0,0 +1,49 @@
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 { AcaFileAutoDownloadService, AppExtensionService, ContentApiService, PageComponent } from '@alfresco/aca-shared';
25
+ import { AppStore } from '@alfresco/aca-shared/store';
26
+ import { UploadService } from '@alfresco/adf-content-services';
27
+ import { MinimalNodeEntity, MinimalNodeEntryEntity } from '@alfresco/js-api';
28
+ import { BreakpointObserver } from '@angular/cdk/layout';
29
+ import { OnInit } from '@angular/core';
30
+ import { Router } from '@angular/router';
31
+ import { Store } from '@ngrx/store';
32
+ import { ContentManagementService } from '../../services/content-management.service';
33
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
34
+ import * as i0 from "@angular/core";
35
+ export declare class FavoritesComponent extends PageComponent implements OnInit {
36
+ private router;
37
+ private contentApi;
38
+ private uploadService;
39
+ private breakpointObserver;
40
+ isSmallScreen: boolean;
41
+ columns: DocumentListPresetRef[];
42
+ constructor(router: Router, store: Store<AppStore>, extensions: AppExtensionService, contentApi: ContentApiService, content: ContentManagementService, uploadService: UploadService, breakpointObserver: BreakpointObserver, fileAutoDownloadService: AcaFileAutoDownloadService);
43
+ ngOnInit(): void;
44
+ navigate(favorite: MinimalNodeEntryEntity): void;
45
+ onNodeDoubleClick(node: MinimalNodeEntity): void;
46
+ handleNodeClick(event: Event): void;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<FavoritesComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<FavoritesComponent, "ng-component", never, {}, {}, never, never, false>;
49
+ }
@@ -0,0 +1,55 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { ActivatedRoute, Router } from '@angular/router';
3
+ import { Store } from '@ngrx/store';
4
+ import { MinimalNodeEntity, MinimalNodeEntryEntity, PathElementEntity } from '@alfresco/js-api';
5
+ import { ContentManagementService } from '../../services/content-management.service';
6
+ import { NodeActionsService } from '../../services/node-actions.service';
7
+ import { AcaFileAutoDownloadService, AppExtensionService, ContentApiService, PageComponent } from '@alfresco/aca-shared';
8
+ import { AppStore } from '@alfresco/aca-shared/store';
9
+ import { BreakpointObserver } from '@angular/cdk/layout';
10
+ import { FilterSearch, UploadService, FileUploadEvent } from '@alfresco/adf-content-services';
11
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
12
+ import { Observable } from 'rxjs';
13
+ import * as i0 from "@angular/core";
14
+ export declare class FilesComponent extends PageComponent implements OnInit, OnDestroy {
15
+ private router;
16
+ private route;
17
+ private contentApi;
18
+ private nodeActionsService;
19
+ private uploadService;
20
+ private breakpointObserver;
21
+ isValidPath: boolean;
22
+ isSmallScreen: boolean;
23
+ isAdmin: boolean;
24
+ selectedNode: MinimalNodeEntity;
25
+ queryParams: any;
26
+ showLoader$: Observable<boolean>;
27
+ private nodePath;
28
+ columns: DocumentListPresetRef[];
29
+ constructor(router: Router, route: ActivatedRoute, contentApi: ContentApiService, store: Store<AppStore>, nodeActionsService: NodeActionsService, uploadService: UploadService, content: ContentManagementService, extensions: AppExtensionService, breakpointObserver: BreakpointObserver, fileAutoDownloadService: AcaFileAutoDownloadService);
30
+ ngOnInit(): void;
31
+ ngOnDestroy(): void;
32
+ navigate(nodeId?: string): void;
33
+ private getUrlToNavigate;
34
+ private getNextNodeUrlToNavigate;
35
+ private replaceCurrentNodeIdWithNextNodeId;
36
+ private removeNodeIdFromUrl;
37
+ private appendNextNodeIdToUrl;
38
+ onUploadNewVersion(ev: CustomEvent): void;
39
+ navigateTo(node: MinimalNodeEntity): void;
40
+ handleNodeClick(event: Event): void;
41
+ onBreadcrumbNavigate(route: PathElementEntity): void;
42
+ onFileUploadedEvent(event: FileUploadEvent): void;
43
+ displayFolderParent(filePath: string, index: number): void;
44
+ onContentCopied(nodes: MinimalNodeEntity[]): void;
45
+ private updateCurrentNode;
46
+ private normalizeSitePath;
47
+ isSiteContainer(node: MinimalNodeEntryEntity): boolean;
48
+ isRootNode(nodeId: string): boolean;
49
+ onFilterSelected(activeFilters: FilterSearch[]): void;
50
+ navigateToFilter(activeFilters: FilterSearch[]): void;
51
+ isFilterHeaderActive(): boolean;
52
+ onError(): void;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilesComponent, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilesComponent, "ng-component", never, {}, {}, never, never, false>;
55
+ }
@@ -0,0 +1,36 @@
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 { OnInit } from '@angular/core';
25
+ import { Router } from '@angular/router';
26
+ import { AppConfigService } from '@alfresco/adf-core';
27
+ import * as i0 from "@angular/core";
28
+ export declare class HomeComponent implements OnInit {
29
+ private appConfig;
30
+ private router;
31
+ readonly DEFAULT_LANDING_PAGE = "/personal-files";
32
+ constructor(appConfig: AppConfigService, router: Router);
33
+ ngOnInit(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<HomeComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "ng-component", never, {}, {}, never, never, false>;
36
+ }
@@ -0,0 +1,11 @@
1
+ import { MinimalNodeEntryEntity } from '@alfresco/js-api';
2
+ import { NodePermissionService } from '@alfresco/aca-shared';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CommentsTabComponent {
5
+ private permission;
6
+ node: MinimalNodeEntryEntity;
7
+ constructor(permission: NodePermissionService);
8
+ get canUpdateNode(): boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommentsTabComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommentsTabComponent, "app-comments-tab", never, { "node": "node"; }, {}, never, never, false>;
11
+ }
@@ -0,0 +1,19 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./metadata-tab/metadata-tab.component";
3
+ import * as i2 from "./comments-tab/comments-tab.component";
4
+ import * as i3 from "./versions-tab/versions-tab.component";
5
+ import * as i4 from "./library-metadata-tab/library-metadata-tab.component";
6
+ import * as i5 from "./library-metadata-tab/library-metadata-form.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "../../material.module";
9
+ import * as i8 from "@alfresco/adf-core";
10
+ import * as i9 from "@alfresco/adf-content-services";
11
+ import * as i10 from "@alfresco/adf-extensions";
12
+ import * as i11 from "../../directives/directives.module";
13
+ import * as i12 from "@angular/cdk/a11y";
14
+ import * as i13 from "@alfresco/aca-shared";
15
+ export declare class AppInfoDrawerModule {
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppInfoDrawerModule, never>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppInfoDrawerModule, [typeof i1.MetadataTabComponent, typeof i2.CommentsTabComponent, typeof i3.VersionsTabComponent, typeof i4.LibraryMetadataTabComponent, typeof i5.LibraryMetadataFormComponent], [typeof i6.CommonModule, typeof i7.MaterialModule, typeof i8.CoreModule, typeof i9.ContentModule, typeof i10.ExtensionsModule, typeof i9.ContentMetadataModule, typeof i9.VersionManagerModule, typeof i11.DirectivesModule, typeof i12.A11yModule, typeof i13.SharedInfoDrawerModule], [typeof i1.MetadataTabComponent, typeof i2.CommentsTabComponent, typeof i3.VersionsTabComponent, typeof i4.LibraryMetadataTabComponent, typeof i5.LibraryMetadataFormComponent, typeof i13.SharedInfoDrawerModule]>;
18
+ static ɵinj: i0.ɵɵInjectorDeclaration<AppInfoDrawerModule>;
19
+ }
@@ -0,0 +1,64 @@
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 { OnInit, OnChanges, OnDestroy } from '@angular/core';
25
+ import { UntypedFormGroup, UntypedFormControl, FormGroupDirective, NgForm } from '@angular/forms';
26
+ import { QueriesApi, SiteEntry } from '@alfresco/js-api';
27
+ import { Store } from '@ngrx/store';
28
+ import { AppStore } from '@alfresco/aca-shared/store';
29
+ import { AlfrescoApiService } from '@alfresco/adf-core';
30
+ import { Subject } from 'rxjs';
31
+ import { ErrorStateMatcher } from '@angular/material/core';
32
+ import * as i0 from "@angular/core";
33
+ export declare class InstantErrorStateMatcher implements ErrorStateMatcher {
34
+ isErrorState(control: UntypedFormControl | null, form: FormGroupDirective | NgForm | null): boolean;
35
+ }
36
+ export declare class LibraryMetadataFormComponent implements OnInit, OnChanges, OnDestroy {
37
+ private alfrescoApiService;
38
+ protected store: Store<AppStore>;
39
+ _queriesApi: QueriesApi;
40
+ get queriesApi(): QueriesApi;
41
+ node: SiteEntry;
42
+ edit: boolean;
43
+ libraryTitleExists: boolean;
44
+ libraryType: {
45
+ value: string;
46
+ label: string;
47
+ }[];
48
+ form: UntypedFormGroup;
49
+ matcher: InstantErrorStateMatcher;
50
+ onDestroy$: Subject<boolean>;
51
+ constructor(alfrescoApiService: AlfrescoApiService, store: Store<AppStore>);
52
+ get canUpdateLibrary(): boolean;
53
+ getVisibilityLabel(value: string): string;
54
+ toggleEdit(): void;
55
+ cancel(): void;
56
+ ngOnInit(): void;
57
+ ngOnDestroy(): void;
58
+ ngOnChanges(): void;
59
+ update(): void;
60
+ private updateForm;
61
+ private findLibraryByTitle;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibraryMetadataFormComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibraryMetadataFormComponent, "app-library-metadata-form", never, { "node": "node"; }, {}, never, never, false>;
64
+ }
@@ -0,0 +1,7 @@
1
+ import { SiteEntry } from '@alfresco/js-api';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LibraryMetadataTabComponent {
4
+ node: SiteEntry;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibraryMetadataTabComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibraryMetadataTabComponent, "app-library-metadata-tab", never, { "node": "node"; }, {}, never, never, false>;
7
+ }
@@ -0,0 +1,49 @@
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 { OnInit, OnDestroy } from '@angular/core';
25
+ import { MinimalNodeEntryEntity } from '@alfresco/js-api';
26
+ import { NodePermissionService, AppExtensionService } from '@alfresco/aca-shared';
27
+ import { AppStore } from '@alfresco/aca-shared/store';
28
+ import { AppConfigService, NotificationService } from '@alfresco/adf-core';
29
+ import { Observable, Subject } from 'rxjs';
30
+ import { Store } from '@ngrx/store';
31
+ import { ContentMetadataService } from '@alfresco/adf-content-services';
32
+ import * as i0 from "@angular/core";
33
+ export declare class MetadataTabComponent implements OnInit, OnDestroy {
34
+ private permission;
35
+ protected extensions: AppExtensionService;
36
+ private appConfig;
37
+ private store;
38
+ private notificationService;
39
+ private contentMetadataService;
40
+ protected onDestroy$: Subject<boolean>;
41
+ node: MinimalNodeEntryEntity;
42
+ displayAspect$: Observable<string>;
43
+ constructor(permission: NodePermissionService, extensions: AppExtensionService, appConfig: AppConfigService, store: Store<AppStore>, notificationService: NotificationService, contentMetadataService: ContentMetadataService);
44
+ get canUpdateNode(): boolean;
45
+ ngOnInit(): void;
46
+ ngOnDestroy(): void;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetadataTabComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<MetadataTabComponent, "app-metadata-tab", never, { "node": "node"; }, {}, never, never, false>;
49
+ }
@@ -0,0 +1,35 @@
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 { OnChanges, OnInit } from '@angular/core';
25
+ import { MinimalNodeEntryEntity } from '@alfresco/js-api';
26
+ import * as i0 from "@angular/core";
27
+ export declare class VersionsTabComponent implements OnInit, OnChanges {
28
+ node: MinimalNodeEntryEntity;
29
+ isFileSelected: boolean;
30
+ ngOnInit(): void;
31
+ ngOnChanges(): void;
32
+ private updateState;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<VersionsTabComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<VersionsTabComponent, "app-versions-tab", never, { "node": "node"; }, {}, never, never, false>;
35
+ }
@@ -0,0 +1,44 @@
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 { AppStore } from '@alfresco/aca-shared/store';
25
+ import { SiteEntry } from '@alfresco/js-api';
26
+ import { BreakpointObserver } from '@angular/cdk/layout';
27
+ import { OnInit } from '@angular/core';
28
+ import { Store } from '@ngrx/store';
29
+ import { ContentManagementService } from '../../services/content-management.service';
30
+ import { AppExtensionService, AppHookService, PageComponent } from '@alfresco/aca-shared';
31
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
32
+ import * as i0 from "@angular/core";
33
+ export declare class LibrariesComponent extends PageComponent implements OnInit {
34
+ private appHookService;
35
+ private breakpointObserver;
36
+ isSmallScreen: boolean;
37
+ columns: DocumentListPresetRef[];
38
+ constructor(content: ContentManagementService, store: Store<AppStore>, extensions: AppExtensionService, appHookService: AppHookService, breakpointObserver: BreakpointObserver);
39
+ ngOnInit(): void;
40
+ navigateTo(node: SiteEntry): void;
41
+ handleNodeClick(event: Event): void;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibrariesComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibrariesComponent, "ng-component", never, {}, {}, never, never, false>;
44
+ }
@@ -0,0 +1,46 @@
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, EventEmitter } from '@angular/core';
25
+ import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
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>;
46
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./node-version-form.component";
3
+ import * as i2 from "@alfresco/adf-core";
4
+ import * as i3 from "@angular/material/button";
5
+ import * as i4 from "@angular/material/dialog";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "@angular/platform-browser";
8
+ import * as i7 from "@angular/common";
9
+ import * as i8 from "@angular/material/radio";
10
+ import * as i9 from "@angular/material/form-field";
11
+ import * as i10 from "@angular/material/input";
12
+ export declare class AppNodeVersionModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppNodeVersionModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppNodeVersionModule, [typeof i1.AppNodeVersionFormComponent], [typeof i2.CoreModule, typeof i3.MatButtonModule, typeof i4.MatDialogModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.BrowserModule, typeof i7.CommonModule, typeof i8.MatRadioModule, typeof i9.MatFormFieldModule, typeof i10.MatInputModule], [typeof i1.AppNodeVersionFormComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<AppNodeVersionModule>;
16
+ }
@@ -0,0 +1,48 @@
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 { OnInit } from '@angular/core';
25
+ import { BreakpointObserver } from '@angular/cdk/layout';
26
+ import { MinimalNodeEntity } from '@alfresco/js-api';
27
+ import { ContentManagementService } from '../../services/content-management.service';
28
+ import { Store } from '@ngrx/store';
29
+ import { AppStore } from '@alfresco/aca-shared/store';
30
+ import { UploadService } from '@alfresco/adf-content-services';
31
+ import { Router } from '@angular/router';
32
+ import { AcaFileAutoDownloadService, AppExtensionService, PageComponent } from '@alfresco/aca-shared';
33
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
34
+ import * as i0 from "@angular/core";
35
+ export declare class RecentFilesComponent extends PageComponent implements OnInit {
36
+ private uploadService;
37
+ private breakpointObserver;
38
+ private router;
39
+ isSmallScreen: boolean;
40
+ columns: DocumentListPresetRef[];
41
+ constructor(store: Store<AppStore>, extensions: AppExtensionService, content: ContentManagementService, uploadService: UploadService, breakpointObserver: BreakpointObserver, router: Router, fileAutoDownloadService: AcaFileAutoDownloadService);
42
+ ngOnInit(): void;
43
+ onNodeDoubleClick(node: MinimalNodeEntity): void;
44
+ handleNodeClick(event: Event): void;
45
+ private onFileUploadedEvent;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecentFilesComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecentFilesComponent, "ng-component", never, {}, {}, never, never, false>;
48
+ }