@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,12 @@
1
+ import { Actions } from '@ngrx/effects';
2
+ import { ContextMenuService } from '../../components/context-menu/context-menu.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ContextMenuEffects {
5
+ private contextMenuService;
6
+ private actions$;
7
+ private overlayRef;
8
+ constructor(contextMenuService: ContextMenuService, actions$: Actions);
9
+ contextMenu$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuEffects, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<ContextMenuEffects>;
12
+ }
@@ -0,0 +1,50 @@
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 { MatDialog } from '@angular/material/dialog';
27
+ import { Actions } from '@ngrx/effects';
28
+ import { Store } from '@ngrx/store';
29
+ import { ContentApiService } from '@alfresco/aca-shared';
30
+ import { ContentUrlService } from '../../services/content-url.service';
31
+ import * as i0 from "@angular/core";
32
+ export declare class DownloadEffects {
33
+ private store;
34
+ private actions$;
35
+ private contentApi;
36
+ private dialog;
37
+ private contentUrlService;
38
+ constructor(store: Store<AppStore>, actions$: Actions, contentApi: ContentApiService, dialog: MatDialog, contentUrlService: ContentUrlService);
39
+ downloadNode$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
40
+ private downloadNodes;
41
+ private downloadNode;
42
+ private downloadFile;
43
+ private downloadFileVersion;
44
+ private downloadZip;
45
+ private download;
46
+ private get isSharedLinkPreview();
47
+ private focusAfterClose;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<DownloadEffects, never>;
49
+ static ɵprov: i0.ɵɵInjectableDeclaration<DownloadEffects>;
50
+ }
@@ -0,0 +1,39 @@
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 { Actions } from '@ngrx/effects';
26
+ import { AppStore } from '@alfresco/aca-shared/store';
27
+ import { Store } from '@ngrx/store';
28
+ import { ContentManagementService } from '../../services/content-management.service';
29
+ import * as i0 from "@angular/core";
30
+ export declare class FavoriteEffects {
31
+ private store;
32
+ private actions$;
33
+ private content;
34
+ constructor(store: Store<AppStore>, actions$: Actions, content: ContentManagementService);
35
+ addFavorite$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
36
+ removeFavorite$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<FavoriteEffects, never>;
38
+ static ɵprov: i0.ɵɵInjectableDeclaration<FavoriteEffects>;
39
+ }
@@ -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 { AppStore, NavigateLibraryAction } from '@alfresco/aca-shared/store';
26
+ import { Actions } from '@ngrx/effects';
27
+ import { Store } from '@ngrx/store';
28
+ import { ContentApiService } from '@alfresco/aca-shared';
29
+ import { ContentManagementService } from '../../services/content-management.service';
30
+ import * as i0 from "@angular/core";
31
+ export declare class LibraryEffects {
32
+ private store;
33
+ private actions$;
34
+ private content;
35
+ private contentApi;
36
+ constructor(store: Store<AppStore>, actions$: Actions, content: ContentManagementService, contentApi: ContentApiService);
37
+ deleteLibrary$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
38
+ leaveLibrary$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
39
+ createLibrary$: import("rxjs").Observable<NavigateLibraryAction> & import("@ngrx/effects").CreateEffectMetadata;
40
+ navigateLibrary$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
41
+ updateLibrary$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibraryEffects, never>;
43
+ static ɵprov: i0.ɵɵInjectableDeclaration<LibraryEffects>;
44
+ }
@@ -0,0 +1,57 @@
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 { Actions } from '@ngrx/effects';
26
+ import { Store } from '@ngrx/store';
27
+ import { AppStore } from '@alfresco/aca-shared/store';
28
+ import { ContentManagementService } from '../../services/content-management.service';
29
+ import { ViewUtilService } from '@alfresco/adf-core';
30
+ import * as i0 from "@angular/core";
31
+ export declare class NodeEffects {
32
+ private store;
33
+ private actions$;
34
+ private contentService;
35
+ private viewUtils;
36
+ constructor(store: Store<AppStore>, actions$: Actions, contentService: ContentManagementService, viewUtils: ViewUtilService);
37
+ shareNode$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
38
+ unshareNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
39
+ purgeDeletedNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
40
+ restoreDeletedNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
41
+ deleteNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
42
+ undoDeleteNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
43
+ createFolder$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
44
+ editFolder$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
45
+ copyNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
46
+ moveNodes$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
47
+ managePermissions$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
48
+ expandInfoDrawer$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
49
+ manageVersions$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
50
+ printFile$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
51
+ unlockWrite$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
52
+ aspectList$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
53
+ printFile(node: any): void;
54
+ manageRules$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodeEffects, never>;
56
+ static ɵprov: i0.ɵɵInjectableDeclaration<NodeEffects>;
57
+ }
@@ -0,0 +1,35 @@
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 { Actions } from '@ngrx/effects';
26
+ import { Router } from '@angular/router';
27
+ import * as i0 from "@angular/core";
28
+ export declare class SearchEffects {
29
+ private actions$;
30
+ private router;
31
+ constructor(actions$: Actions, router: Router);
32
+ searchByTerm$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchEffects, never>;
34
+ static ɵprov: i0.ɵɵInjectableDeclaration<SearchEffects>;
35
+ }
@@ -0,0 +1,55 @@
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 { Actions } from '@ngrx/effects';
26
+ import { Store } from '@ngrx/store';
27
+ import { AppStore } from '@alfresco/aca-shared/store';
28
+ import { NodeTemplateService } from '../../services/node-template.service';
29
+ import { AlfrescoApiService } from '@alfresco/adf-core';
30
+ import { AppHookService } from '@alfresco/aca-shared';
31
+ import { Observable } from 'rxjs';
32
+ import { NodesApi } from '@alfresco/js-api';
33
+ import { MatDialog } from '@angular/material/dialog';
34
+ import * as i0 from "@angular/core";
35
+ export declare class TemplateEffects {
36
+ private matDialog;
37
+ private appHookService;
38
+ private store;
39
+ private apiService;
40
+ private actions$;
41
+ private nodeTemplateService;
42
+ private _nodesApi;
43
+ get nodesApi(): NodesApi;
44
+ constructor(matDialog: MatDialog, appHookService: AppHookService, store: Store<AppStore>, apiService: AlfrescoApiService, actions$: Actions, nodeTemplateService: NodeTemplateService);
45
+ fileFromTemplate$: Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
46
+ folderFromTemplate$: Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
47
+ createFromTemplate$: Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
48
+ createFromTemplateSuccess$: Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
49
+ private openDialog;
50
+ private copyNode;
51
+ private updateNode;
52
+ private handleError;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplateEffects, never>;
54
+ static ɵprov: i0.ɵɵInjectableDeclaration<TemplateEffects>;
55
+ }
@@ -0,0 +1,53 @@
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 { FileModel, UploadService } from '@alfresco/adf-core';
27
+ import { NgZone, RendererFactory2 } from '@angular/core';
28
+ import { Actions } from '@ngrx/effects';
29
+ import { Store } from '@ngrx/store';
30
+ import { ContentManagementService } from '../../services/content-management.service';
31
+ import * as i0 from "@angular/core";
32
+ export declare class UploadEffects {
33
+ private store;
34
+ private actions$;
35
+ private ngZone;
36
+ private uploadService;
37
+ private contentService;
38
+ private fileInput;
39
+ private folderInput;
40
+ private fileVersionInput;
41
+ private readonly createMenuButtonSelector;
42
+ constructor(store: Store<AppStore>, actions$: Actions, ngZone: NgZone, uploadService: UploadService, rendererFactory: RendererFactory2, contentService: ContentManagementService);
43
+ uploadFiles$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
44
+ uploadFolder$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
45
+ uploadVersion$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
46
+ uploadVersion(): void;
47
+ private upload;
48
+ private uploadQueue;
49
+ uploadAndUnlock(file: FileModel | null): void;
50
+ private registerFocusingElementAfterModalClose;
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadEffects, never>;
52
+ static ɵprov: i0.ɵɵInjectableDeclaration<UploadEffects>;
53
+ }
@@ -0,0 +1,56 @@
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 { Actions } from '@ngrx/effects';
26
+ import { AppStore, PluginPreviewAction } from '@alfresco/aca-shared/store';
27
+ import { Router } from '@angular/router';
28
+ import { Store } from '@ngrx/store';
29
+ import { AppExtensionService } from '@alfresco/aca-shared';
30
+ import { MatDialog } from '@angular/material/dialog';
31
+ import * as i0 from "@angular/core";
32
+ export declare const fileToPreview: import("@ngrx/store").MemoizedSelector<AppStore, {
33
+ selection: import("@alfresco/adf-extensions").SelectionState;
34
+ folder: import("@alfresco/js-api").MinimalNode;
35
+ }, import("@ngrx/store").DefaultProjectorFn<{
36
+ selection: import("@alfresco/adf-extensions").SelectionState;
37
+ folder: import("@alfresco/js-api").MinimalNode;
38
+ }>>;
39
+ export declare class ViewerEffects {
40
+ private store;
41
+ private actions$;
42
+ private router;
43
+ private extensions;
44
+ private dialog;
45
+ constructor(store: Store<AppStore>, actions$: Actions, router: Router, extensions: AppExtensionService, dialog: MatDialog);
46
+ fullscreenViewer$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
47
+ viewNode$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
48
+ viewFile$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
49
+ viewNodeVersion$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
50
+ pluginPreview$: import("rxjs").Observable<PluginPreviewAction> & import("@ngrx/effects").CreateEffectMetadata;
51
+ private displayPreview;
52
+ enterFullScreen(): void;
53
+ private getNavigationCommands;
54
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewerEffects, never>;
55
+ static ɵprov: i0.ɵɵInjectableDeclaration<ViewerEffects>;
56
+ }
@@ -0,0 +1,35 @@
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
+ export * from './effects/app.effects';
26
+ export * from './effects/download.effects';
27
+ export * from './effects/favorite.effects';
28
+ export * from './effects/node.effects';
29
+ export * from './effects/viewer.effects';
30
+ export * from './effects/search.effects';
31
+ export * from './effects/library.effects';
32
+ export * from './effects/upload.effects';
33
+ export * from './effects/upload.effects';
34
+ export * from './effects/template.effects';
35
+ export * from './effects/contextmenu.effects';
@@ -0,0 +1,27 @@
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 { AppState, AppStore } from '@alfresco/aca-shared/store';
26
+ export declare const INITIAL_APP_STATE: AppState;
27
+ export declare const INITIAL_STATE: AppStore;
@@ -0,0 +1,27 @@
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 { Action } from '@ngrx/store';
26
+ import { AppState } from '@alfresco/aca-shared/store';
27
+ export declare function appReducer(state: AppState, action: Action): AppState;
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@alfresco/aca-content",
3
+ "version": "4.0.0-A.2-9984",
4
+ "peerDependencies": {
5
+ "@angular/common": "^14.1.0",
6
+ "@angular/core": "^14.1.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "module": "fesm2015/alfresco-aca-content.mjs",
15
+ "es2020": "fesm2020/alfresco-aca-content.mjs",
16
+ "esm2020": "esm2020/alfresco-aca-content.mjs",
17
+ "fesm2020": "fesm2020/alfresco-aca-content.mjs",
18
+ "fesm2015": "fesm2015/alfresco-aca-content.mjs",
19
+ "typings": "index.d.ts",
20
+ "exports": {
21
+ "./package.json": {
22
+ "default": "./package.json"
23
+ },
24
+ ".": {
25
+ "types": "./index.d.ts",
26
+ "esm2020": "./esm2020/alfresco-aca-content.mjs",
27
+ "es2020": "./fesm2020/alfresco-aca-content.mjs",
28
+ "es2015": "./fesm2015/alfresco-aca-content.mjs",
29
+ "node": "./fesm2015/alfresco-aca-content.mjs",
30
+ "default": "./fesm2020/alfresco-aca-content.mjs"
31
+ }
32
+ },
33
+ "sideEffects": false
34
+ }
@@ -0,0 +1,5 @@
1
+ export * from './lib/aca-content.module';
2
+ export * from './lib/aca-content.routes';
3
+ export * from './lib/extensions/core.extensions.module';
4
+ export * from './lib/store/initial-state';
5
+ export * from './lib/services/content-url.service';
@@ -0,0 +1,49 @@
1
+ @use '@angular/material' as mat;
2
+ @import 'mixins';
3
+ @import 'theme';
4
+ @import 'variables/font-family';
5
+
6
+ $foreground: map-get($custom-theme, foreground);
7
+
8
+ html,
9
+ body {
10
+ @include flex-column;
11
+ font-size: 14px;
12
+ font-family: $default-font-family;
13
+ color: mat.get-color-from-palette($foreground, text, 0.87);
14
+ margin: 0;
15
+
16
+ & > main {
17
+ @include flex-column;
18
+ }
19
+ }
20
+
21
+ .mat-icon {
22
+ overflow: unset !important;
23
+ }
24
+
25
+ [dir='rtl'] .mat-icon {
26
+ transform: scale(-1, 1);
27
+ }
28
+
29
+ // todo: move this to corresponding component theme files
30
+ .adf-container-full-width {
31
+ overflow: hidden;
32
+ }
33
+ app-root,
34
+ app-shell,
35
+ app-about,
36
+ adf-layout-container,
37
+ aca-search-results,
38
+ ng-component {
39
+ @include flex-column;
40
+ }
41
+ @media screen and (max-width: 600px) {
42
+ app-root,
43
+ app-about,
44
+ adf-layout-container,
45
+ aca-search-results,
46
+ ng-component {
47
+ height: 80vh;
48
+ }
49
+ }