@alfresco/aca-content 4.0.0-A.2-9984

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 (255) hide show
  1. package/README.md +24 -0
  2. package/assets/app.extensions.json +2496 -0
  3. package/assets/i18n/ar.json +634 -0
  4. package/assets/i18n/cs.json +634 -0
  5. package/assets/i18n/da.json +634 -0
  6. package/assets/i18n/de.json +634 -0
  7. package/assets/i18n/en.json +634 -0
  8. package/assets/i18n/es.json +634 -0
  9. package/assets/i18n/fi.json +634 -0
  10. package/assets/i18n/fr.json +634 -0
  11. package/assets/i18n/it.json +634 -0
  12. package/assets/i18n/ja.json +634 -0
  13. package/assets/i18n/nb.json +634 -0
  14. package/assets/i18n/nl.json +634 -0
  15. package/assets/i18n/pl.json +634 -0
  16. package/assets/i18n/pt-BR.json +634 -0
  17. package/assets/i18n/ru.json +634 -0
  18. package/assets/i18n/sv.json +634 -0
  19. package/assets/i18n/zh-CN.json +634 -0
  20. package/assets/images/Wallpaper-BG-generic.svg +39 -0
  21. package/assets/images/adf-move-file-24px.svg +1 -0
  22. package/assets/images/baseline-library_books-24px.svg +2 -0
  23. package/assets/images/baseline-lock-24px.svg +1 -0
  24. package/assets/images/join-library.svg +32 -0
  25. package/assets/images/mastHead-bg-shapesPattern.svg +53 -0
  26. package/esm2020/alfresco-aca-content.mjs +5 -0
  27. package/esm2020/lib/aca-content.module.mjs +364 -0
  28. package/esm2020/lib/aca-content.routes.mjs +582 -0
  29. package/esm2020/lib/components/common/common.module.mjs +49 -0
  30. package/esm2020/lib/components/common/language-picker/language-picker.component.mjs +58 -0
  31. package/esm2020/lib/components/common/location-link/location-link.component.mjs +178 -0
  32. package/esm2020/lib/components/common/logout/logout.component.mjs +61 -0
  33. package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +66 -0
  34. package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +59 -0
  35. package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +66 -0
  36. package/esm2020/lib/components/context-menu/context-menu-overlay.mjs +33 -0
  37. package/esm2020/lib/components/context-menu/context-menu.component.mjs +103 -0
  38. package/esm2020/lib/components/context-menu/context-menu.module.mjs +77 -0
  39. package/esm2020/lib/components/context-menu/context-menu.service.mjs +104 -0
  40. package/esm2020/lib/components/context-menu/direction.token.mjs +30 -0
  41. package/esm2020/lib/components/context-menu/interfaces.mjs +26 -0
  42. package/esm2020/lib/components/create-menu/create-menu.component.mjs +74 -0
  43. package/esm2020/lib/components/create-menu/create-menu.module.mjs +45 -0
  44. package/esm2020/lib/components/details/details.component.mjs +100 -0
  45. package/esm2020/lib/components/dl-custom-components/document-list-custom-components.module.mjs +49 -0
  46. package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +93 -0
  47. package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +52 -0
  48. package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +114 -0
  49. package/esm2020/lib/components/favorites/favorites.component.mjs +99 -0
  50. package/esm2020/lib/components/files/files.component.mjs +312 -0
  51. package/esm2020/lib/components/header/header.component.mjs +98 -0
  52. package/esm2020/lib/components/header/header.module.mjs +46 -0
  53. package/esm2020/lib/components/home/home.component.mjs +50 -0
  54. package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +57 -0
  55. package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +93 -0
  56. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +144 -0
  57. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +43 -0
  58. package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +89 -0
  59. package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +96 -0
  60. package/esm2020/lib/components/layout/app-layout/app-layout.component.mjs +147 -0
  61. package/esm2020/lib/components/layout/layout.module.mjs +75 -0
  62. package/esm2020/lib/components/libraries/libraries.component.mjs +71 -0
  63. package/esm2020/lib/components/main-action/main-action.component.mjs +60 -0
  64. package/esm2020/lib/components/main-action/main-action.module.mjs +46 -0
  65. package/esm2020/lib/components/node-version/node-version-form.component.mjs +71 -0
  66. package/esm2020/lib/components/node-version/node-version.module.mjs +79 -0
  67. package/esm2020/lib/components/recent-files/recent-files.component.mjs +82 -0
  68. package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +60 -0
  69. package/esm2020/lib/components/search/search-input/search-input.component.mjs +263 -0
  70. package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +88 -0
  71. package/esm2020/lib/components/search/search-input.module.mjs +48 -0
  72. package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +92 -0
  73. package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +140 -0
  74. package/esm2020/lib/components/search/search-results/search-results.component.mjs +218 -0
  75. package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +94 -0
  76. package/esm2020/lib/components/search/search-results.module.mjs +86 -0
  77. package/esm2020/lib/components/shared-files/shared-files.component.mjs +79 -0
  78. package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +81 -0
  79. package/esm2020/lib/components/shared-link-view/shared-link-view.module.mjs +66 -0
  80. package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +58 -0
  81. package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +54 -0
  82. package/esm2020/lib/components/sidenav/directives/action.directive.mjs +75 -0
  83. package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +93 -0
  84. package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +102 -0
  85. package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +99 -0
  86. package/esm2020/lib/components/sidenav/sidenav-wrapper/sidenav-wrapper.component.mjs +45 -0
  87. package/esm2020/lib/components/sidenav/sidenav.component.mjs +76 -0
  88. package/esm2020/lib/components/sidenav/sidenav.module.mjs +104 -0
  89. package/esm2020/lib/components/toolbar/document-display-mode/document-display-mode.component.mjs +85 -0
  90. package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +151 -0
  91. package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +80 -0
  92. package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +102 -0
  93. package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +76 -0
  94. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +99 -0
  95. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +81 -0
  96. package/esm2020/lib/components/toolbar/toolbar.module.mjs +89 -0
  97. package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +102 -0
  98. package/esm2020/lib/components/trashcan/trashcan.component.mjs +64 -0
  99. package/esm2020/lib/components/trashcan/trashcan.module.mjs +71 -0
  100. package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +34 -0
  101. package/esm2020/lib/components/view-profile/view-profile.component.mjs +158 -0
  102. package/esm2020/lib/components/view-profile/view-profile.guard.mjs +31 -0
  103. package/esm2020/lib/components/view-profile/view-profile.module.mjs +43 -0
  104. package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +120 -0
  105. package/esm2020/lib/directives/directives.module.mjs +43 -0
  106. package/esm2020/lib/directives/document-list.directive.mjs +142 -0
  107. package/esm2020/lib/extensions/core.extensions.module.mjs +66 -0
  108. package/esm2020/lib/material.module.mjs +58 -0
  109. package/esm2020/lib/services/content-management.service.mjs +871 -0
  110. package/esm2020/lib/services/content-service-extension.service.mjs +47 -0
  111. package/esm2020/lib/services/content-url.service.mjs +73 -0
  112. package/esm2020/lib/services/node-actions.service.mjs +601 -0
  113. package/esm2020/lib/services/node-template.service.mjs +150 -0
  114. package/esm2020/lib/store/app-store.module.mjs +96 -0
  115. package/esm2020/lib/store/effects/app.effects.mjs +62 -0
  116. package/esm2020/lib/store/effects/contextmenu.effects.mjs +56 -0
  117. package/esm2020/lib/store/effects/download.effects.mjs +160 -0
  118. package/esm2020/lib/store/effects/favorite.effects.mjs +77 -0
  119. package/esm2020/lib/store/effects/library.effects.mjs +112 -0
  120. package/esm2020/lib/store/effects/node.effects.mjs +310 -0
  121. package/esm2020/lib/store/effects/search.effects.mjs +55 -0
  122. package/esm2020/lib/store/effects/template.effects.mjs +122 -0
  123. package/esm2020/lib/store/effects/upload.effects.mjs +169 -0
  124. package/esm2020/lib/store/effects/viewer.effects.mjs +176 -0
  125. package/esm2020/lib/store/effects.mjs +36 -0
  126. package/esm2020/lib/store/initial-state.mjs +66 -0
  127. package/esm2020/lib/store/reducers/app.reducer.mjs +218 -0
  128. package/esm2020/public-api.mjs +9 -0
  129. package/fesm2015/alfresco-aca-content.mjs +9937 -0
  130. package/fesm2015/alfresco-aca-content.mjs.map +1 -0
  131. package/fesm2020/alfresco-aca-content.mjs +10103 -0
  132. package/fesm2020/alfresco-aca-content.mjs.map +1 -0
  133. package/index.d.ts +5 -0
  134. package/lib/aca-content.module.d.ts +49 -0
  135. package/lib/aca-content.routes.d.ts +28 -0
  136. package/lib/components/common/common.module.d.ts +14 -0
  137. package/lib/components/common/language-picker/language-picker.component.d.ts +5 -0
  138. package/lib/components/common/location-link/location-link.component.d.ts +49 -0
  139. package/lib/components/common/logout/logout.component.d.ts +10 -0
  140. package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +44 -0
  141. package/lib/components/context-menu/context-menu-item.component.d.ts +13 -0
  142. package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +36 -0
  143. package/lib/components/context-menu/context-menu-overlay.d.ts +30 -0
  144. package/lib/components/context-menu/context-menu.component.d.ts +49 -0
  145. package/lib/components/context-menu/context-menu.module.d.ts +18 -0
  146. package/lib/components/context-menu/context-menu.service.d.ts +44 -0
  147. package/lib/components/context-menu/direction.token.d.ts +26 -0
  148. package/lib/components/context-menu/interfaces.d.ts +31 -0
  149. package/lib/components/create-menu/create-menu.component.d.ts +43 -0
  150. package/lib/components/create-menu/create-menu.module.d.ts +10 -0
  151. package/lib/components/details/details.component.d.ts +47 -0
  152. package/lib/components/dl-custom-components/document-list-custom-components.module.d.ts +13 -0
  153. package/lib/components/dl-custom-components/name-column/name-column.component.d.ts +43 -0
  154. package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +17 -0
  155. package/lib/components/favorite-libraries/favorite-libraries.component.d.ts +55 -0
  156. package/lib/components/favorites/favorites.component.d.ts +50 -0
  157. package/lib/components/files/files.component.d.ts +80 -0
  158. package/lib/components/header/header.component.d.ts +59 -0
  159. package/lib/components/header/header.module.d.ts +11 -0
  160. package/lib/components/home/home.component.d.ts +37 -0
  161. package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +11 -0
  162. package/lib/components/info-drawer/info.drawer.module.d.ts +19 -0
  163. package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +65 -0
  164. package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +7 -0
  165. package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +50 -0
  166. package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +36 -0
  167. package/lib/components/layout/app-layout/app-layout.component.d.ts +63 -0
  168. package/lib/components/layout/layout.module.d.ts +16 -0
  169. package/lib/components/libraries/libraries.component.d.ts +45 -0
  170. package/lib/components/main-action/main-action.component.d.ts +42 -0
  171. package/lib/components/main-action/main-action.module.d.ts +11 -0
  172. package/lib/components/node-version/node-version-form.component.d.ts +47 -0
  173. package/lib/components/node-version/node-version.module.d.ts +16 -0
  174. package/lib/components/recent-files/recent-files.component.d.ts +49 -0
  175. package/lib/components/search/search-action-menu/search-action-menu.component.d.ts +39 -0
  176. package/lib/components/search/search-input/search-input.component.d.ts +82 -0
  177. package/lib/components/search/search-input-control/search-input-control.component.d.ts +51 -0
  178. package/lib/components/search/search-input.module.d.ts +12 -0
  179. package/lib/components/search/search-libraries-results/search-libraries-query-builder.service.d.ts +57 -0
  180. package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +58 -0
  181. package/lib/components/search/search-results/search-results.component.d.ts +70 -0
  182. package/lib/components/search/search-results-row/search-results-row.component.d.ts +49 -0
  183. package/lib/components/search/search-results.module.d.ts +21 -0
  184. package/lib/components/shared-files/shared-files.component.d.ts +48 -0
  185. package/lib/components/shared-link-view/shared-link-view.component.d.ts +48 -0
  186. package/lib/components/shared-link-view/shared-link-view.module.d.ts +14 -0
  187. package/lib/components/sidenav/components/button-menu.component.d.ts +38 -0
  188. package/lib/components/sidenav/components/expand-menu.component.d.ts +36 -0
  189. package/lib/components/sidenav/directives/action.directive.d.ts +14 -0
  190. package/lib/components/sidenav/directives/active-link.directive.d.ts +46 -0
  191. package/lib/components/sidenav/directives/expansion-panel.directive.d.ts +45 -0
  192. package/lib/components/sidenav/directives/menu-panel.directive.d.ts +43 -0
  193. package/lib/components/sidenav/sidenav-wrapper/sidenav-wrapper.component.d.ts +12 -0
  194. package/lib/components/sidenav/sidenav.component.d.ts +44 -0
  195. package/lib/components/sidenav/sidenav.module.d.ts +21 -0
  196. package/lib/components/toolbar/document-display-mode/document-display-mode.component.d.ts +13 -0
  197. package/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.d.ts +48 -0
  198. package/lib/components/toolbar/toggle-favorite/toggle-favorite.component.d.ts +43 -0
  199. package/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.d.ts +43 -0
  200. package/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.d.ts +11 -0
  201. package/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.d.ts +42 -0
  202. package/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.d.ts +10 -0
  203. package/lib/components/toolbar/toolbar.module.d.ts +20 -0
  204. package/lib/components/toolbar/view-node/view-node.component.d.ts +17 -0
  205. package/lib/components/trashcan/trashcan.component.d.ts +43 -0
  206. package/lib/components/trashcan/trashcan.module.d.ts +15 -0
  207. package/lib/components/upload-files-dialog/upload-files-dialog.component.d.ts +14 -0
  208. package/lib/components/view-profile/view-profile.component.d.ts +36 -0
  209. package/lib/components/view-profile/view-profile.guard.d.ts +12 -0
  210. package/lib/components/view-profile/view-profile.module.d.ts +9 -0
  211. package/lib/dialogs/node-template/create-from-template.dialog.d.ts +50 -0
  212. package/lib/directives/directives.module.d.ts +9 -0
  213. package/lib/directives/document-list.directive.d.ts +57 -0
  214. package/lib/extensions/core.extensions.module.d.ts +14 -0
  215. package/lib/material.module.d.ts +14 -0
  216. package/lib/services/content-management.service.d.ts +101 -0
  217. package/lib/services/content-service-extension.service.d.ts +11 -0
  218. package/lib/services/content-url.service.d.ts +17 -0
  219. package/lib/services/node-actions.service.d.ts +93 -0
  220. package/lib/services/node-template.service.d.ts +34 -0
  221. package/lib/store/app-store.module.d.ts +10 -0
  222. package/lib/store/effects/app.effects.d.ts +42 -0
  223. package/lib/store/effects/contextmenu.effects.d.ts +12 -0
  224. package/lib/store/effects/download.effects.d.ts +50 -0
  225. package/lib/store/effects/favorite.effects.d.ts +39 -0
  226. package/lib/store/effects/library.effects.d.ts +44 -0
  227. package/lib/store/effects/node.effects.d.ts +57 -0
  228. package/lib/store/effects/search.effects.d.ts +35 -0
  229. package/lib/store/effects/template.effects.d.ts +55 -0
  230. package/lib/store/effects/upload.effects.d.ts +53 -0
  231. package/lib/store/effects/viewer.effects.d.ts +56 -0
  232. package/lib/store/effects.d.ts +35 -0
  233. package/lib/store/initial-state.d.ts +27 -0
  234. package/lib/store/reducers/app.reducer.d.ts +27 -0
  235. package/package.json +34 -0
  236. package/public-api.d.ts +5 -0
  237. package/ui/application.scss +49 -0
  238. package/ui/colors.scss +98 -0
  239. package/ui/custom-theme.scss +28 -0
  240. package/ui/dynamic-theme/custom-background-color.scss +16 -0
  241. package/ui/dynamic-theme/custom-palette-creator.scss +138 -0
  242. package/ui/dynamic-theme/custom-text-color.scss +8 -0
  243. package/ui/dynamic-theme/custom-theme-palettes.scss +29 -0
  244. package/ui/dynamic-theme/custom-theme.scss.tpl +60 -0
  245. package/ui/dynamic-theme/index.scss +1 -0
  246. package/ui/dynamic-theme/theme-configuration.scss.tpl +14 -0
  247. package/ui/dynamic-theme/typography.scss +63 -0
  248. package/ui/mixins.scss +26 -0
  249. package/ui/overrides/adf-about.theme.scss +39 -0
  250. package/ui/overrides/adf-pagination.theme.scss +47 -0
  251. package/ui/overrides/adf-style-fixes.theme.scss +18 -0
  252. package/ui/overrides/ay11.scss +204 -0
  253. package/ui/theme.scss +57 -0
  254. package/ui/variables/font-family.scss +1 -0
  255. package/ui/variables/variables.scss +83 -0
@@ -0,0 +1,48 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit } from '@angular/core';
26
+ import { BreakpointObserver } from '@angular/cdk/layout';
27
+ import { ContentManagementService } from '../../services/content-management.service';
28
+ import { Store } from '@ngrx/store';
29
+ import { UploadService } from '@alfresco/adf-core';
30
+ import { Router } from '@angular/router';
31
+ import { MinimalNodeEntity } from '@alfresco/js-api';
32
+ import { AppExtensionService, AppHookService, PageComponent } from '@alfresco/aca-shared';
33
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
34
+ import * as i0 from "@angular/core";
35
+ export declare class SharedFilesComponent extends PageComponent implements OnInit {
36
+ private appHookService;
37
+ private uploadService;
38
+ private breakpointObserver;
39
+ private router;
40
+ isSmallScreen: boolean;
41
+ columns: DocumentListPresetRef[];
42
+ constructor(store: Store<any>, extensions: AppExtensionService, content: ContentManagementService, appHookService: AppHookService, uploadService: UploadService, breakpointObserver: BreakpointObserver, router: Router);
43
+ ngOnInit(): void;
44
+ preview(node: MinimalNodeEntity): void;
45
+ handleNodeClick(event: Event): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedFilesComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<SharedFilesComponent, "ng-component", never, {}, {}, never, never, false>;
48
+ }
@@ -0,0 +1,48 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { AppStore } from '@alfresco/aca-shared/store';
26
+ import { AlfrescoApiService } from '@alfresco/adf-core';
27
+ import { ContentActionRef } from '@alfresco/adf-extensions';
28
+ import { OnDestroy, OnInit } from '@angular/core';
29
+ import { ActivatedRoute } from '@angular/router';
30
+ import { Store } from '@ngrx/store';
31
+ import { AppExtensionService } from '@alfresco/aca-shared';
32
+ import * as i0 from "@angular/core";
33
+ export declare class SharedLinkViewComponent implements OnInit, OnDestroy {
34
+ private route;
35
+ private store;
36
+ private extensions;
37
+ private alfrescoApiService;
38
+ private onDestroy$;
39
+ private sharedLinksApi;
40
+ sharedLinkId: string;
41
+ viewerToolbarActions: Array<ContentActionRef>;
42
+ constructor(route: ActivatedRoute, store: Store<AppStore>, extensions: AppExtensionService, alfrescoApiService: AlfrescoApiService);
43
+ ngOnInit(): void;
44
+ ngOnDestroy(): void;
45
+ trackByActionId(_: number, action: ContentActionRef): string;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedLinkViewComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<SharedLinkViewComponent, "app-shared-link-view", never, {}, {}, never, never, false>;
48
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./shared-link-view.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@alfresco/adf-core";
5
+ import * as i4 from "../../directives/directives.module";
6
+ import * as i5 from "../common/common.module";
7
+ import * as i6 from "../toolbar/toolbar.module";
8
+ import * as i7 from "../../extensions/core.extensions.module";
9
+ import * as i8 from "../info-drawer/info.drawer.module";
10
+ export declare class AppSharedLinkViewModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppSharedLinkViewModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppSharedLinkViewModule, [typeof i1.SharedLinkViewComponent], [typeof i2.CommonModule, typeof i3.CoreModule, typeof i4.DirectivesModule, typeof i5.AppCommonModule, typeof i6.AppToolbarModule, typeof i7.CoreExtensionsModule, typeof i8.AppInfoDrawerModule], [typeof i1.SharedLinkViewComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<AppSharedLinkViewModule>;
14
+ }
@@ -0,0 +1,38 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, ChangeDetectorRef } from '@angular/core';
26
+ import { OverlayContainer } from '@angular/cdk/overlay';
27
+ import { NavBarLinkRef } from '@alfresco/adf-extensions';
28
+ import * as i0 from "@angular/core";
29
+ export declare class ButtonMenuComponent implements OnInit {
30
+ private cd;
31
+ private overlayContainer;
32
+ item: NavBarLinkRef;
33
+ constructor(cd: ChangeDetectorRef, overlayContainer: OverlayContainer);
34
+ ngOnInit(): void;
35
+ trackById(_index: number, obj: NavBarLinkRef): string;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonMenuComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonMenuComponent, "app-button-menu", never, { "item": "item"; }, {}, never, never, false>;
38
+ }
@@ -0,0 +1,36 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, ChangeDetectorRef } from '@angular/core';
26
+ import { NavBarLinkRef } from '@alfresco/adf-extensions';
27
+ import * as i0 from "@angular/core";
28
+ export declare class ExpandMenuComponent implements OnInit {
29
+ private cd;
30
+ item: NavBarLinkRef;
31
+ constructor(cd: ChangeDetectorRef);
32
+ ngOnInit(): void;
33
+ trackById(_index: number, obj: NavBarLinkRef): string;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpandMenuComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExpandMenuComponent, "app-expand-menu", never, { "item": "item"; }, {}, never, never, false>;
36
+ }
@@ -0,0 +1,14 @@
1
+ import { Router } from '@angular/router';
2
+ import { Store } from '@ngrx/store';
3
+ import { AppStore } from '@alfresco/aca-shared/store';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ActionDirective {
6
+ private router;
7
+ private store;
8
+ action: any;
9
+ onClick(): void;
10
+ constructor(router: Router, store: Store<AppStore>);
11
+ private getNavigationCommands;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActionDirective, "[action]", ["action"], { "action": "action"; }, {}, never, never, false>;
14
+ }
@@ -0,0 +1,46 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, ElementRef, Renderer2, QueryList, AfterContentInit } from '@angular/core';
26
+ import { Router } from '@angular/router';
27
+ import { ActionDirective } from './action.directive';
28
+ import * as i0 from "@angular/core";
29
+ export declare class ActiveLinkDirective implements OnInit, AfterContentInit {
30
+ private router;
31
+ private element;
32
+ private renderer;
33
+ private action?;
34
+ acaActiveLink: any;
35
+ links: QueryList<ActionDirective>;
36
+ isLinkActive: boolean;
37
+ private onDestroy$;
38
+ constructor(router: Router, element: ElementRef, renderer: Renderer2, action?: ActionDirective);
39
+ ngOnInit(): void;
40
+ private update;
41
+ private render;
42
+ ngAfterContentInit(): void;
43
+ private resolveUrl;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActiveLinkDirective, [null, null, null, { optional: true; }]>;
45
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActiveLinkDirective, "[acaActiveLink]", ["acaActiveLink"], { "acaActiveLink": "acaActiveLink"; }, {}, ["links"], never, false>;
46
+ }
@@ -0,0 +1,45 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, OnDestroy } from '@angular/core';
26
+ import { Router } from '@angular/router';
27
+ import { MatExpansionPanel } from '@angular/material/expansion';
28
+ import { Store } from '@ngrx/store';
29
+ import * as i0 from "@angular/core";
30
+ export declare class ExpansionPanelDirective implements OnInit, OnDestroy {
31
+ private store;
32
+ private router;
33
+ private expansionPanel;
34
+ acaExpansionPanel: any;
35
+ hasActiveChildren: boolean;
36
+ private onDestroy$;
37
+ onClick(): void;
38
+ constructor(store: Store<any>, router: Router, expansionPanel: MatExpansionPanel);
39
+ hasActiveLinks(): any;
40
+ ngOnInit(): void;
41
+ ngOnDestroy(): void;
42
+ private getNavigationCommands;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelDirective, never>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelDirective, "[acaExpansionPanel]", ["acaExpansionPanel"], { "acaExpansionPanel": "acaExpansionPanel"; }, {}, never, never, false>;
45
+ }
@@ -0,0 +1,43 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, OnDestroy } from '@angular/core';
26
+ import { Router } from '@angular/router';
27
+ import { Store } from '@ngrx/store';
28
+ import * as i0 from "@angular/core";
29
+ export declare class MenuPanelDirective implements OnInit, OnDestroy {
30
+ private store;
31
+ private router;
32
+ acaMenuPanel: any;
33
+ hasActiveChildren: boolean;
34
+ private onDestroy$;
35
+ menuOpened(): void;
36
+ constructor(store: Store<any>, router: Router);
37
+ hasActiveLinks(): any;
38
+ ngOnInit(): void;
39
+ ngOnDestroy(): void;
40
+ private getNavigationCommands;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuPanelDirective, never>;
42
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MenuPanelDirective, "[acaMenuPanel]", ["acaMenuPanel"], { "acaMenuPanel": "acaMenuPanel"; }, {}, never, never, false>;
43
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * This wrapper is designated to be used with 'adf-dynamic-component'.
4
+ * It forwards the dynamic component inputs to original sidenav.
5
+ */
6
+ export declare class SidenavWrapperComponent {
7
+ data: {
8
+ mode?: 'collapsed' | 'expanded';
9
+ };
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidenavWrapperComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidenavWrapperComponent, "aca-sidenav-wrapper", never, { "data": "data"; }, {}, never, never, false>;
12
+ }
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, OnDestroy } from '@angular/core';
26
+ import { NavBarGroupRef, NavBarLinkRef } from '@alfresco/adf-extensions';
27
+ import { Store } from '@ngrx/store';
28
+ import { AppStore } from '@alfresco/aca-shared/store';
29
+ import { AppExtensionService } from '@alfresco/aca-shared';
30
+ import * as i0 from "@angular/core";
31
+ export declare class SidenavComponent implements OnInit, OnDestroy {
32
+ private store;
33
+ private extensions;
34
+ mode: 'collapsed' | 'expanded';
35
+ groups: Array<NavBarGroupRef>;
36
+ private onDestroy$;
37
+ constructor(store: Store<AppStore>, extensions: AppExtensionService);
38
+ ngOnInit(): void;
39
+ trackByGroupId(_: number, obj: NavBarGroupRef): string;
40
+ trackByLinkId(_: number, obj: NavBarLinkRef): string;
41
+ ngOnDestroy(): void;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidenavComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "app-sidenav", never, { "mode": "mode"; }, {}, never, never, false>;
44
+ }
@@ -0,0 +1,21 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./directives/menu-panel.directive";
3
+ import * as i2 from "./directives/expansion-panel.directive";
4
+ import * as i3 from "./directives/active-link.directive";
5
+ import * as i4 from "./directives/action.directive";
6
+ import * as i5 from "./components/expand-menu.component";
7
+ import * as i6 from "./components/button-menu.component";
8
+ import * as i7 from "./sidenav.component";
9
+ import * as i8 from "./sidenav-wrapper/sidenav-wrapper.component";
10
+ import * as i9 from "@angular/common";
11
+ import * as i10 from "@alfresco/adf-core";
12
+ import * as i11 from "../../extensions/core.extensions.module";
13
+ import * as i12 from "@alfresco/adf-extensions";
14
+ import * as i13 from "@angular/router";
15
+ import * as i14 from "../create-menu/create-menu.module";
16
+ import * as i15 from "../main-action/main-action.module";
17
+ export declare class AppSidenavModule {
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppSidenavModule, never>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppSidenavModule, [typeof i1.MenuPanelDirective, typeof i2.ExpansionPanelDirective, typeof i3.ActiveLinkDirective, typeof i4.ActionDirective, typeof i5.ExpandMenuComponent, typeof i6.ButtonMenuComponent, typeof i7.SidenavComponent, typeof i8.SidenavWrapperComponent], [typeof i9.CommonModule, typeof i10.CoreModule, typeof i11.CoreExtensionsModule, typeof i12.ExtensionsModule, typeof i13.RouterModule, typeof i14.AppCreateMenuModule, typeof i15.MainActionModule], [typeof i1.MenuPanelDirective, typeof i2.ExpansionPanelDirective, typeof i3.ActiveLinkDirective, typeof i4.ActionDirective, typeof i5.ExpandMenuComponent, typeof i6.ButtonMenuComponent, typeof i7.SidenavComponent]>;
20
+ static ɵinj: i0.ɵɵInjectorDeclaration<AppSidenavModule>;
21
+ }
@@ -0,0 +1,13 @@
1
+ import { Observable } from 'rxjs';
2
+ import { Store } from '@ngrx/store';
3
+ import { AppStore } from '@alfresco/aca-shared/store';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DocumentDisplayModeComponent {
6
+ private store;
7
+ displayMode$: Observable<string>;
8
+ constructor(store: Store<AppStore>);
9
+ getTitle(displayMode: string): string;
10
+ onClick(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DocumentDisplayModeComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocumentDisplayModeComponent, "app-document-display-mode", never, {}, {}, never, never, false>;
13
+ }
@@ -0,0 +1,48 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { AppStore } from '@alfresco/aca-shared/store';
26
+ import { MinimalNodeEntity } from '@alfresco/js-api';
27
+ import { OnInit } from '@angular/core';
28
+ import { Store } from '@ngrx/store';
29
+ import { AlfrescoApiService } from '@alfresco/adf-core';
30
+ import * as i0 from "@angular/core";
31
+ export declare class ToggleEditOfflineComponent implements OnInit {
32
+ private store;
33
+ private alfrescoApiService;
34
+ private nodesApi;
35
+ selection: MinimalNodeEntity;
36
+ constructor(store: Store<AppStore>, alfrescoApiService: AlfrescoApiService);
37
+ ngOnInit(): void;
38
+ get isNodeLocked(): boolean;
39
+ onClick(): Promise<void>;
40
+ private toggleLock;
41
+ onLockError(): void;
42
+ onUnlockError(): void;
43
+ lockNode(nodeId: string): Promise<MinimalNodeEntity>;
44
+ unlockNode(nodeId: string): Promise<MinimalNodeEntity>;
45
+ private update;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleEditOfflineComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleEditOfflineComponent, "app-toggle-edit-offline", never, {}, {}, never, never, false>;
48
+ }
@@ -0,0 +1,43 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit } from '@angular/core';
26
+ import { Store } from '@ngrx/store';
27
+ import { Observable } from 'rxjs';
28
+ import { SelectionState } from '@alfresco/adf-extensions';
29
+ import { AppStore } from '@alfresco/aca-shared/store';
30
+ import { Router } from '@angular/router';
31
+ import * as i0 from "@angular/core";
32
+ export declare class ToggleFavoriteComponent implements OnInit {
33
+ private store;
34
+ private router;
35
+ data: any;
36
+ selection$: Observable<SelectionState>;
37
+ private reloadOnRoutes;
38
+ constructor(store: Store<AppStore>, router: Router);
39
+ ngOnInit(): void;
40
+ onToggleEvent(): void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleFavoriteComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleFavoriteComponent, "app-toggle-favorite", never, { "data": "data"; }, {}, never, never, false>;
43
+ }
@@ -0,0 +1,43 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { OnInit, OnDestroy } from '@angular/core';
26
+ import { Store } from '@ngrx/store';
27
+ import { AppHookService } from '@alfresco/aca-shared';
28
+ import { AppStore } from '@alfresco/aca-shared/store';
29
+ import { Router } from '@angular/router';
30
+ import * as i0 from "@angular/core";
31
+ export declare class ToggleFavoriteLibraryComponent implements OnInit, OnDestroy {
32
+ private store;
33
+ private appHookService;
34
+ private router;
35
+ library: any;
36
+ private onDestroy$;
37
+ constructor(store: Store<AppStore>, appHookService: AppHookService, router: Router);
38
+ ngOnInit(): void;
39
+ ngOnDestroy(): void;
40
+ onToggleEvent(): void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleFavoriteLibraryComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleFavoriteLibraryComponent, "app-toggle-favorite-library", never, {}, {}, never, never, false>;
43
+ }
@@ -0,0 +1,11 @@
1
+ import { Observable } from 'rxjs';
2
+ import { Store } from '@ngrx/store';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ToggleInfoDrawerComponent {
5
+ private store;
6
+ infoDrawerOpened$: Observable<boolean>;
7
+ constructor(store: Store<any>);
8
+ onClick(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleInfoDrawerComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleInfoDrawerComponent, "app-toggle-info-drawer", never, {}, {}, never, never, false>;
11
+ }
@@ -0,0 +1,42 @@
1
+ /*!
2
+ * @license
3
+ * Alfresco Example Content Application
4
+ *
5
+ * Copyright (C) 2005 - 2020 Alfresco Software Limited
6
+ *
7
+ * This file is part of the Alfresco Example Content Application.
8
+ * If the software was purchased under a paid Alfresco license, the terms of
9
+ * the paid license agreement will prevail. Otherwise, the software is
10
+ * provided under the following open source license terms:
11
+ *
12
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
13
+ * it under the terms of the GNU Lesser General Public License as published by
14
+ * the Free Software Foundation, either version 3 of the License, or
15
+ * (at your option) any later version.
16
+ *
17
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
18
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ * GNU Lesser General Public License for more details.
21
+ *
22
+ * You should have received a copy of the GNU Lesser General Public License
23
+ * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
24
+ */
25
+ import { AppStore } from '@alfresco/aca-shared/store';
26
+ import { AppHookService } from '@alfresco/aca-shared';
27
+ import { ProfileState, SelectionState } from '@alfresco/adf-extensions';
28
+ import { Store } from '@ngrx/store';
29
+ import { Observable } from 'rxjs';
30
+ import { LibraryMembershipErrorEvent, LibraryMembershipToggleEvent } from '@alfresco/adf-content-services';
31
+ import * as i0 from "@angular/core";
32
+ export declare class ToggleJoinLibraryButtonComponent {
33
+ private store;
34
+ private appHookService;
35
+ selection$: Observable<SelectionState>;
36
+ profile$: Observable<ProfileState>;
37
+ constructor(store: Store<AppStore>, appHookService: AppHookService);
38
+ onToggleEvent(event: LibraryMembershipToggleEvent): void;
39
+ onErrorEvent(event: LibraryMembershipErrorEvent): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleJoinLibraryButtonComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleJoinLibraryButtonComponent, "app-toggle-join-library-button", never, {}, {}, never, never, false>;
42
+ }
@@ -0,0 +1,10 @@
1
+ import { Store } from '@ngrx/store';
2
+ import { AppHookService } from '@alfresco/aca-shared';
3
+ import { AppStore } from '@alfresco/aca-shared/store';
4
+ import { ToggleJoinLibraryButtonComponent } from './toggle-join-library-button.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ToggleJoinLibraryMenuComponent extends ToggleJoinLibraryButtonComponent {
7
+ constructor(store: Store<AppStore>, appHookService: AppHookService);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleJoinLibraryMenuComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleJoinLibraryMenuComponent, "app-toggle-join-library-menu", never, {}, {}, never, never, false>;
10
+ }