@alfresco/aca-content 4.0.0 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (307) hide show
  1. package/{lib/components/create-menu/create-menu.component.d.ts → about/about.component.d.ts} +15 -16
  2. package/about/aca-about.module.d.ts +9 -0
  3. package/about/assets/about.plugin.json +47 -0
  4. package/about/dev-mode.tokens.d.ts +25 -0
  5. package/about/index.d.ts +5 -0
  6. package/about/package-json.token.d.ts +25 -0
  7. package/about/public-api.d.ts +27 -0
  8. package/assets/app.extensions.json +158 -131
  9. package/assets/i18n/ar.json +10 -26
  10. package/assets/i18n/cs.json +10 -26
  11. package/assets/i18n/da.json +9 -25
  12. package/assets/i18n/de.json +8 -24
  13. package/assets/i18n/en.json +9 -25
  14. package/assets/i18n/es.json +8 -24
  15. package/assets/i18n/fi.json +9 -25
  16. package/assets/i18n/fr.json +9 -25
  17. package/assets/i18n/it.json +9 -25
  18. package/assets/i18n/ja.json +9 -25
  19. package/assets/i18n/nb.json +9 -25
  20. package/assets/i18n/nl.json +8 -24
  21. package/assets/i18n/pl.json +10 -26
  22. package/assets/i18n/pt-BR.json +9 -25
  23. package/assets/i18n/ru.json +10 -26
  24. package/assets/i18n/sv.json +9 -25
  25. package/assets/i18n/zh-CN.json +8 -24
  26. package/esm2020/about/about.component.mjs +73 -0
  27. package/esm2020/about/aca-about.module.mjs +46 -0
  28. package/esm2020/about/alfresco-aca-content-about.mjs +5 -0
  29. package/esm2020/about/dev-mode.tokens.mjs +26 -0
  30. package/esm2020/about/package-json.token.mjs +26 -0
  31. package/esm2020/about/public-api.mjs +28 -0
  32. package/esm2020/folder-rules/alfresco-aca-content-folder-rules.mjs +5 -0
  33. package/esm2020/folder-rules/folder-rules.module.mjs +123 -0
  34. package/esm2020/folder-rules/folder-rules.rules.mjs +28 -0
  35. package/esm2020/folder-rules/manage-rules/manage-rules.smart-component.mjs +240 -0
  36. package/esm2020/folder-rules/model/action-parameter-constraint.model.mjs +25 -0
  37. package/esm2020/folder-rules/model/rule-action.model.mjs +26 -0
  38. package/esm2020/folder-rules/model/rule-composite-condition.model.mjs +25 -0
  39. package/esm2020/folder-rules/model/rule-grouping-item.model.mjs +25 -0
  40. package/esm2020/folder-rules/model/rule-set.model.mjs +25 -0
  41. package/esm2020/folder-rules/model/rule-simple-condition.model.mjs +25 -0
  42. package/esm2020/folder-rules/model/rule.model.mjs +25 -0
  43. package/esm2020/folder-rules/public-api.mjs +26 -0
  44. package/esm2020/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +112 -0
  45. package/esm2020/folder-rules/rule-details/actions/rule-action.ui-component.mjs +277 -0
  46. package/esm2020/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +159 -0
  47. package/esm2020/folder-rules/rule-details/conditions/rule-condition-comparators.mjs +87 -0
  48. package/esm2020/folder-rules/rule-details/conditions/rule-condition-fields.mjs +62 -0
  49. package/esm2020/folder-rules/rule-details/conditions/rule-mime-types.mjs +25 -0
  50. package/esm2020/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +144 -0
  51. package/esm2020/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +70 -0
  52. package/esm2020/folder-rules/rule-details/options/rule-options.ui-component.mjs +134 -0
  53. package/esm2020/folder-rules/rule-details/rule-details.ui-component.mjs +166 -0
  54. package/esm2020/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +85 -0
  55. package/esm2020/folder-rules/rule-details/validators/rule-actions.validator.mjs +37 -0
  56. package/esm2020/folder-rules/rule-details/validators/rule-composite-condition.validator.mjs +31 -0
  57. package/esm2020/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +142 -0
  58. package/esm2020/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +77 -0
  59. package/esm2020/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +56 -0
  60. package/esm2020/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +104 -0
  61. package/esm2020/folder-rules/services/actions.service.mjs +114 -0
  62. package/esm2020/folder-rules/services/folder-rule-sets.service.mjs +221 -0
  63. package/esm2020/folder-rules/services/folder-rules.service.mjs +193 -0
  64. package/esm2020/lib/aca-content.module.mjs +55 -90
  65. package/esm2020/lib/aca-content.routes.mjs +2 -2
  66. package/esm2020/lib/components/common/common.module.mjs +8 -39
  67. package/esm2020/lib/components/common/language-picker/language-picker.component.mjs +18 -11
  68. package/esm2020/lib/components/common/location-link/location-link.component.mjs +17 -16
  69. package/esm2020/lib/components/common/logout/logout.component.mjs +16 -9
  70. package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +29 -18
  71. package/esm2020/lib/components/common/user-info/user-info.component.mjs +24 -13
  72. package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +16 -10
  73. package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +5 -4
  74. package/esm2020/lib/components/context-menu/context-menu.component.mjs +29 -15
  75. package/esm2020/lib/components/context-menu/context-menu.service.mjs +5 -6
  76. package/esm2020/lib/components/details/details.component.mjs +41 -23
  77. package/esm2020/lib/components/dl-custom-components/document-list-custom-components.module.mjs +7 -15
  78. package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +16 -16
  79. package/esm2020/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +34 -12
  80. package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +32 -15
  81. package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +17 -28
  82. package/esm2020/lib/components/favorites/favorites.component.mjs +18 -34
  83. package/esm2020/lib/components/files/files.component.mjs +28 -43
  84. package/esm2020/lib/components/home/home.component.mjs +7 -6
  85. package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +15 -10
  86. package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +28 -47
  87. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +39 -17
  88. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +10 -7
  89. package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +13 -12
  90. package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +18 -10
  91. package/esm2020/lib/components/libraries/libraries.component.mjs +17 -27
  92. package/esm2020/lib/components/recent-files/recent-files.component.mjs +18 -37
  93. package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +3 -3
  94. package/esm2020/lib/components/search/search-input/search-input.component.mjs +11 -6
  95. package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +5 -5
  96. package/esm2020/lib/components/search/search-input.module.mjs +4 -4
  97. package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +5 -6
  98. package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +21 -30
  99. package/esm2020/lib/components/search/search-navigation.service.mjs +3 -3
  100. package/esm2020/lib/components/search/search-results/search-results.component.mjs +33 -41
  101. package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +6 -7
  102. package/esm2020/lib/components/search/search-results.module.mjs +31 -23
  103. package/esm2020/lib/components/shared-files/shared-files.component.mjs +18 -34
  104. package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +9 -7
  105. package/esm2020/lib/components/shared-link-view/shared-link-view.module.mjs +5 -9
  106. package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +5 -5
  107. package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +5 -5
  108. package/esm2020/lib/components/sidenav/components/sidenav-header.component.mjs +5 -5
  109. package/esm2020/lib/components/sidenav/directives/action.directive.mjs +3 -3
  110. package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +3 -3
  111. package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +3 -3
  112. package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +3 -3
  113. package/esm2020/lib/components/sidenav/sidenav.component.mjs +3 -3
  114. package/esm2020/lib/components/sidenav/sidenav.module.mjs +11 -9
  115. package/esm2020/lib/components/sidenav/user-menu/user-menu.component.mjs +96 -0
  116. package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +10 -17
  117. package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +3 -3
  118. package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +3 -3
  119. package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +3 -3
  120. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +3 -3
  121. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +3 -3
  122. package/esm2020/lib/components/toolbar/toolbar.module.mjs +7 -13
  123. package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +3 -3
  124. package/esm2020/lib/components/trashcan/trashcan.component.mjs +37 -29
  125. package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +3 -3
  126. package/esm2020/lib/components/view-profile/view-profile.component.mjs +35 -16
  127. package/esm2020/lib/components/view-profile/view-profile.guard.mjs +5 -5
  128. package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +16 -15
  129. package/esm2020/lib/directives/directives.module.mjs +4 -4
  130. package/esm2020/lib/directives/document-list.directive.mjs +3 -3
  131. package/esm2020/lib/extensions/core.extensions.module.mjs +4 -4
  132. package/esm2020/lib/material.module.mjs +4 -4
  133. package/esm2020/lib/services/content-management.service.mjs +3 -3
  134. package/esm2020/lib/services/content-service-extension.service.mjs +3 -3
  135. package/esm2020/lib/services/content-url.service.mjs +3 -3
  136. package/esm2020/lib/services/node-actions.service.mjs +5 -5
  137. package/esm2020/lib/services/node-template.service.mjs +3 -3
  138. package/esm2020/lib/store/app-store.module.mjs +4 -4
  139. package/esm2020/lib/store/effects/app.effects.mjs +3 -3
  140. package/esm2020/lib/store/effects/contextmenu.effects.mjs +3 -3
  141. package/esm2020/lib/store/effects/download.effects.mjs +3 -3
  142. package/esm2020/lib/store/effects/favorite.effects.mjs +3 -3
  143. package/esm2020/lib/store/effects/library.effects.mjs +3 -3
  144. package/esm2020/lib/store/effects/node.effects.mjs +3 -3
  145. package/esm2020/lib/store/effects/search.effects.mjs +3 -3
  146. package/esm2020/lib/store/effects/template.effects.mjs +3 -3
  147. package/esm2020/lib/store/effects/upload.effects.mjs +5 -5
  148. package/esm2020/lib/store/effects/viewer.effects.mjs +5 -5
  149. package/esm2020/ms-office/actions/aos.actions.mjs +31 -0
  150. package/esm2020/ms-office/alfresco-aca-content-ms-office.mjs +5 -0
  151. package/esm2020/ms-office/aos-extension.module.mjs +54 -0
  152. package/esm2020/ms-office/aos-extension.service.mjs +134 -0
  153. package/esm2020/ms-office/effects/aos.effects.mjs +48 -0
  154. package/esm2020/ms-office/public-api.mjs +28 -0
  155. package/fesm2015/alfresco-aca-content-about.mjs +194 -0
  156. package/fesm2015/alfresco-aca-content-about.mjs.map +1 -0
  157. package/fesm2015/alfresco-aca-content-folder-rules.mjs +2479 -0
  158. package/fesm2015/alfresco-aca-content-folder-rules.mjs.map +1 -0
  159. package/fesm2015/alfresco-aca-content-ms-office.mjs +260 -0
  160. package/fesm2015/alfresco-aca-content-ms-office.mjs.map +1 -0
  161. package/fesm2015/alfresco-aca-content.mjs +3457 -3847
  162. package/fesm2015/alfresco-aca-content.mjs.map +1 -1
  163. package/fesm2020/alfresco-aca-content-about.mjs +194 -0
  164. package/fesm2020/alfresco-aca-content-about.mjs.map +1 -0
  165. package/fesm2020/alfresco-aca-content-folder-rules.mjs +2538 -0
  166. package/fesm2020/alfresco-aca-content-folder-rules.mjs.map +1 -0
  167. package/fesm2020/alfresco-aca-content-ms-office.mjs +282 -0
  168. package/fesm2020/alfresco-aca-content-ms-office.mjs.map +1 -0
  169. package/fesm2020/alfresco-aca-content.mjs +4622 -4995
  170. package/fesm2020/alfresco-aca-content.mjs.map +1 -1
  171. package/folder-rules/assets/folder-rules.plugin.json +71 -0
  172. package/folder-rules/assets/i18n/ar.json +144 -0
  173. package/folder-rules/assets/i18n/cs.json +144 -0
  174. package/folder-rules/assets/i18n/da.json +144 -0
  175. package/folder-rules/assets/i18n/de.json +144 -0
  176. package/folder-rules/assets/i18n/en.json +144 -0
  177. package/folder-rules/assets/i18n/es.json +144 -0
  178. package/folder-rules/assets/i18n/fi.json +144 -0
  179. package/folder-rules/assets/i18n/fr.json +144 -0
  180. package/folder-rules/assets/i18n/it.json +144 -0
  181. package/folder-rules/assets/i18n/ja.json +144 -0
  182. package/folder-rules/assets/i18n/nb.json +144 -0
  183. package/folder-rules/assets/i18n/nl.json +144 -0
  184. package/folder-rules/assets/i18n/pl.json +144 -0
  185. package/folder-rules/assets/i18n/pt-BR.json +144 -0
  186. package/folder-rules/assets/i18n/ru.json +144 -0
  187. package/folder-rules/assets/i18n/sv.json +144 -0
  188. package/folder-rules/assets/i18n/zh-CN.json +144 -0
  189. package/folder-rules/folder-rules.module.d.ts +51 -0
  190. package/folder-rules/folder-rules.rules.d.ts +27 -0
  191. package/folder-rules/index.d.ts +5 -0
  192. package/folder-rules/manage-rules/manage-rules.smart-component.d.ts +87 -0
  193. package/folder-rules/model/action-parameter-constraint.model.d.ts +31 -0
  194. package/folder-rules/model/rule-action.model.d.ts +48 -0
  195. package/folder-rules/model/rule-composite-condition.model.d.ts +30 -0
  196. package/folder-rules/model/rule-grouping-item.model.d.ts +34 -0
  197. package/folder-rules/model/rule-set.model.d.ts +34 -0
  198. package/folder-rules/model/rule-simple-condition.model.d.ts +28 -0
  199. package/folder-rules/model/rule.model.d.ts +58 -0
  200. package/folder-rules/public-api.d.ts +25 -0
  201. package/folder-rules/rule-details/actions/rule-action-list.ui-component.d.ts +47 -0
  202. package/folder-rules/rule-details/actions/rule-action.ui-component.d.ts +75 -0
  203. package/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.d.ts +60 -0
  204. package/folder-rules/rule-details/conditions/rule-condition-comparators.d.ts +30 -0
  205. package/folder-rules/rule-details/conditions/rule-condition-fields.d.ts +31 -0
  206. package/folder-rules/rule-details/conditions/rule-mime-types.d.ts +27 -0
  207. package/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.d.ts +62 -0
  208. package/folder-rules/rule-details/edit-rule-dialog.ui-component.d.ts +53 -0
  209. package/folder-rules/rule-details/options/rule-options.ui-component.d.ts +55 -0
  210. package/folder-rules/rule-details/rule-details.ui-component.d.ts +54 -0
  211. package/folder-rules/rule-details/triggers/rule-triggers.ui-component.d.ts +43 -0
  212. package/folder-rules/rule-details/validators/rule-actions.validator.d.ts +27 -0
  213. package/folder-rules/rule-details/validators/rule-composite-condition.validator.d.ts +25 -0
  214. package/folder-rules/rule-list/rule-list/rule-list.ui-component.d.ts +57 -0
  215. package/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.d.ts +44 -0
  216. package/{lib/components/node-version/node-version-form.component.d.ts → folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.d.ts} +10 -21
  217. package/folder-rules/rule-set-picker/rule-set-picker.smart-component.d.ts +61 -0
  218. package/folder-rules/services/actions.service.d.ts +28 -0
  219. package/folder-rules/services/folder-rule-sets.service.d.ts +49 -0
  220. package/folder-rules/services/folder-rules.service.d.ts +41 -0
  221. package/lib/aca-content.module.d.ts +37 -37
  222. package/lib/components/common/common.module.d.ts +29 -17
  223. package/lib/components/common/language-picker/language-picker.component.d.ts +1 -1
  224. package/lib/components/common/location-link/location-link.component.d.ts +1 -6
  225. package/lib/components/common/logout/logout.component.d.ts +2 -3
  226. package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +9 -6
  227. package/lib/components/common/user-info/user-info.component.d.ts +15 -3
  228. package/lib/components/context-menu/context-menu-item.component.d.ts +1 -1
  229. package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +1 -1
  230. package/lib/components/context-menu/context-menu.component.d.ts +1 -1
  231. package/lib/components/details/details.component.d.ts +3 -6
  232. package/lib/components/dl-custom-components/document-list-custom-components.module.d.ts +4 -8
  233. package/lib/components/dl-custom-components/name-column/name-column.component.d.ts +3 -3
  234. package/lib/components/dl-custom-components/tags-column/tags-column.component.d.ts +5 -28
  235. package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +32 -12
  236. package/lib/components/favorite-libraries/favorite-libraries.component.d.ts +3 -8
  237. package/lib/components/favorites/favorites.component.d.ts +2 -12
  238. package/lib/components/files/files.component.d.ts +6 -15
  239. package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +28 -3
  240. package/lib/components/info-drawer/info.drawer.module.d.ts +5 -12
  241. package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +5 -4
  242. package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +1 -1
  243. package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +2 -2
  244. package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +1 -1
  245. package/lib/components/libraries/libraries.component.d.ts +2 -31
  246. package/lib/components/recent-files/recent-files.component.d.ts +2 -13
  247. package/lib/components/search/search-input/search-input.component.d.ts +2 -1
  248. package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +2 -31
  249. package/lib/components/search/search-results/search-results.component.d.ts +7 -13
  250. package/lib/components/search/search-results-row/search-results-row.component.d.ts +1 -1
  251. package/lib/components/search/search-results.module.d.ts +7 -5
  252. package/lib/components/shared-files/shared-files.component.d.ts +2 -11
  253. package/lib/components/shared-link-view/shared-link-view.component.d.ts +3 -2
  254. package/lib/components/shared-link-view/shared-link-view.module.d.ts +5 -6
  255. package/lib/components/sidenav/sidenav.module.d.ts +5 -5
  256. package/lib/components/sidenav/user-menu/user-menu.component.d.ts +58 -0
  257. package/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.d.ts +2 -1
  258. package/lib/components/toolbar/toolbar.module.d.ts +13 -15
  259. package/lib/components/trashcan/trashcan.component.d.ts +4 -35
  260. package/lib/components/view-profile/view-profile.component.d.ts +11 -4
  261. package/lib/components/view-profile/view-profile.guard.d.ts +2 -2
  262. package/lib/dialogs/node-template/create-from-template.dialog.d.ts +2 -2
  263. package/lib/store/effects/upload.effects.d.ts +3 -3
  264. package/ms-office/actions/aos.actions.d.ts +31 -0
  265. package/ms-office/aos-extension.module.d.ts +34 -0
  266. package/ms-office/aos-extension.service.d.ts +48 -0
  267. package/ms-office/assets/aos.plugin.json +74 -0
  268. package/ms-office/assets/i18n/ar.json +10 -0
  269. package/ms-office/assets/i18n/cs.json +10 -0
  270. package/ms-office/assets/i18n/da.json +10 -0
  271. package/ms-office/assets/i18n/de.json +10 -0
  272. package/ms-office/assets/i18n/en.json +10 -0
  273. package/ms-office/assets/i18n/es.json +10 -0
  274. package/ms-office/assets/i18n/fi.json +10 -0
  275. package/ms-office/assets/i18n/fr.json +10 -0
  276. package/ms-office/assets/i18n/it.json +10 -0
  277. package/ms-office/assets/i18n/ja.json +10 -0
  278. package/ms-office/assets/i18n/nb.json +10 -0
  279. package/ms-office/assets/i18n/nl.json +10 -0
  280. package/ms-office/assets/i18n/pl.json +10 -0
  281. package/ms-office/assets/i18n/pt-BR.json +10 -0
  282. package/ms-office/assets/i18n/ru.json +10 -0
  283. package/ms-office/assets/i18n/sv.json +10 -0
  284. package/ms-office/assets/i18n/zh-CN.json +10 -0
  285. package/ms-office/effects/aos.effects.d.ts +11 -0
  286. package/ms-office/index.d.ts +5 -0
  287. package/ms-office/public-api.d.ts +27 -0
  288. package/package.json +37 -2
  289. package/ui/application.scss +8 -0
  290. package/ui/overrides/adf-about.theme.scss +0 -5
  291. package/ui/overrides/adf-pagination.theme.scss +0 -1
  292. package/ui/overrides/ay11.scss +1 -1
  293. package/ui/variables/variables.scss +6 -13
  294. package/esm2020/lib/components/context-menu/context-menu.module.mjs +0 -76
  295. package/esm2020/lib/components/create-menu/create-menu.component.mjs +0 -73
  296. package/esm2020/lib/components/create-menu/create-menu.module.mjs +0 -44
  297. package/esm2020/lib/components/node-version/node-version-form.component.mjs +0 -70
  298. package/esm2020/lib/components/node-version/node-version.module.mjs +0 -78
  299. package/esm2020/lib/components/toolbar/document-display-mode/document-display-mode.component.mjs +0 -84
  300. package/esm2020/lib/components/trashcan/trashcan.module.mjs +0 -74
  301. package/esm2020/lib/components/view-profile/view-profile.module.mjs +0 -42
  302. package/lib/components/context-menu/context-menu.module.d.ts +0 -18
  303. package/lib/components/create-menu/create-menu.module.d.ts +0 -10
  304. package/lib/components/node-version/node-version.module.d.ts +0 -16
  305. package/lib/components/toolbar/document-display-mode/document-display-mode.component.d.ts +0 -13
  306. package/lib/components/trashcan/trashcan.module.d.ts +0 -16
  307. package/lib/components/view-profile/view-profile.module.d.ts +0 -9
@@ -0,0 +1,58 @@
1
+ /*!
2
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { PeopleContentService } from '@alfresco/adf-content-services';
25
+ import { AuthenticationService, IdentityUserService } from '@alfresco/adf-core';
26
+ import { OnInit } from '@angular/core';
27
+ import { Observable } from 'rxjs';
28
+ import { ContentActionRef } from '@alfresco/adf-extensions';
29
+ import * as i0 from "@angular/core";
30
+ export declare class UserMenuComponent implements OnInit {
31
+ private peopleContentService;
32
+ private identityUserService;
33
+ private authService;
34
+ displayName$: Observable<{
35
+ firstName: string;
36
+ initials: string;
37
+ }>;
38
+ actionRef: ContentActionRef;
39
+ data: {
40
+ items: any[];
41
+ };
42
+ constructor(peopleContentService: PeopleContentService, identityUserService: IdentityUserService, authService: AuthenticationService);
43
+ ngOnInit(): void;
44
+ getUserInfo(): void;
45
+ get isLoggedIn(): boolean;
46
+ private loadEcmUserInfo;
47
+ private loadIdentityUserInfo;
48
+ parseDisplayName(model: {
49
+ firstName?: string;
50
+ lastName?: string;
51
+ }): {
52
+ firstName: string;
53
+ initials: string;
54
+ };
55
+ private isEcmLoggedIn;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserMenuComponent, never>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuComponent, "aca-user-menu", never, { "actionRef": "actionRef"; "data": "data"; }, {}, never, never, false>;
58
+ }
@@ -32,9 +32,10 @@ export declare class ToggleEditOfflineComponent implements OnInit {
32
32
  private alfrescoApiService;
33
33
  private nodesApi;
34
34
  selection: MinimalNodeEntity;
35
+ nodeTitle: string;
36
+ isNodeLocked: boolean;
35
37
  constructor(store: Store<AppStore>, alfrescoApiService: AlfrescoApiService);
36
38
  ngOnInit(): void;
37
- get isNodeLocked(): boolean;
38
39
  onClick(): Promise<void>;
39
40
  private toggleLock;
40
41
  onLockError(): void;
@@ -1,20 +1,18 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./document-display-mode/document-display-mode.component";
3
- import * as i2 from "./toggle-favorite/toggle-favorite.component";
4
- import * as i3 from "./toggle-info-drawer/toggle-info-drawer.component";
5
- import * as i4 from "./toggle-join-library/toggle-join-library-button.component";
6
- import * as i5 from "./toggle-join-library/toggle-join-library-menu.component";
7
- import * as i6 from "./toggle-favorite-library/toggle-favorite-library.component";
8
- import * as i7 from "./toggle-edit-offline/toggle-edit-offline.component";
9
- import * as i8 from "./view-node/view-node.component";
10
- import * as i9 from "@angular/common";
11
- import * as i10 from "@alfresco/adf-core";
12
- import * as i11 from "../common/common.module";
13
- import * as i12 from "@alfresco/adf-extensions";
14
- import * as i13 from "@alfresco/aca-shared";
15
- import * as i14 from "../../directives/directives.module";
2
+ import * as i1 from "./toggle-favorite/toggle-favorite.component";
3
+ import * as i2 from "./toggle-info-drawer/toggle-info-drawer.component";
4
+ import * as i3 from "./toggle-join-library/toggle-join-library-button.component";
5
+ import * as i4 from "./toggle-join-library/toggle-join-library-menu.component";
6
+ import * as i5 from "./toggle-favorite-library/toggle-favorite-library.component";
7
+ import * as i6 from "./toggle-edit-offline/toggle-edit-offline.component";
8
+ import * as i7 from "./view-node/view-node.component";
9
+ import * as i8 from "@angular/common";
10
+ import * as i9 from "@alfresco/adf-core";
11
+ import * as i10 from "@alfresco/adf-extensions";
12
+ import * as i11 from "@alfresco/aca-shared";
13
+ import * as i12 from "../../directives/directives.module";
16
14
  export declare class AppToolbarModule {
17
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AppToolbarModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<AppToolbarModule, [typeof i1.DocumentDisplayModeComponent, typeof i2.ToggleFavoriteComponent, typeof i3.ToggleInfoDrawerComponent, typeof i4.ToggleJoinLibraryButtonComponent, typeof i5.ToggleJoinLibraryMenuComponent, typeof i6.ToggleFavoriteLibraryComponent, typeof i7.ToggleEditOfflineComponent, typeof i8.ViewNodeComponent], [typeof i9.CommonModule, typeof i10.CoreModule, typeof i11.AppCommonModule, typeof i12.ExtensionsModule, typeof i13.SharedToolbarModule, typeof i14.DirectivesModule], [typeof i1.DocumentDisplayModeComponent, typeof i2.ToggleFavoriteComponent, typeof i3.ToggleInfoDrawerComponent, typeof i4.ToggleJoinLibraryButtonComponent, typeof i5.ToggleJoinLibraryMenuComponent, typeof i6.ToggleFavoriteLibraryComponent, typeof i7.ToggleEditOfflineComponent, typeof i8.ViewNodeComponent, typeof i13.SharedToolbarModule]>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppToolbarModule, [typeof i1.ToggleFavoriteComponent, typeof i2.ToggleInfoDrawerComponent, typeof i3.ToggleJoinLibraryButtonComponent, typeof i4.ToggleJoinLibraryMenuComponent, typeof i5.ToggleFavoriteLibraryComponent, typeof i6.ToggleEditOfflineComponent, typeof i7.ViewNodeComponent], [typeof i8.CommonModule, typeof i9.CoreModule, typeof i10.ExtensionsModule, typeof i11.SharedToolbarModule, typeof i12.DirectivesModule], [typeof i1.ToggleFavoriteComponent, typeof i2.ToggleInfoDrawerComponent, typeof i3.ToggleJoinLibraryButtonComponent, typeof i4.ToggleJoinLibraryMenuComponent, typeof i5.ToggleFavoriteLibraryComponent, typeof i6.ToggleEditOfflineComponent, typeof i7.ViewNodeComponent, typeof i11.SharedToolbarModule]>;
19
17
  static ɵinj: i0.ɵɵInjectorDeclaration<AppToolbarModule>;
20
18
  }
@@ -1,42 +1,11 @@
1
- /*!
2
- * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
- *
4
- * Alfresco Example Content Application
5
- *
6
- * This file is part of the Alfresco Example Content Application.
7
- * If the software was purchased under a paid Alfresco license, the terms of
8
- * the paid license agreement will prevail. Otherwise, the software is
9
- * provided under the following open source license terms:
10
- *
11
- * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
- * it under the terms of the GNU Lesser General Public License as published by
13
- * the Free Software Foundation, either version 3 of the License, or
14
- * (at your option) any later version.
15
- *
16
- * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- * GNU Lesser General Public License for more details.
20
- *
21
- * You should have received a copy of the GNU Lesser General Public License
22
- * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
- */
24
- import { AppStore } from '@alfresco/aca-shared/store';
25
- import { DocumentListPresetRef, ProfileState } from '@alfresco/adf-extensions';
26
- import { BreakpointObserver } from '@angular/cdk/layout';
1
+ import { DocumentListPresetRef } from '@alfresco/adf-extensions';
27
2
  import { OnInit } from '@angular/core';
28
- import { Store } from '@ngrx/store';
29
- import { Observable } from 'rxjs';
30
- import { ContentManagementService } from '../../services/content-management.service';
31
- import { AppExtensionService, PageComponent } from '@alfresco/aca-shared';
3
+ import { PageComponent } from '@alfresco/aca-shared';
32
4
  import * as i0 from "@angular/core";
33
5
  export declare class TrashcanComponent extends PageComponent implements OnInit {
34
- private breakpointObserver;
35
- isSmallScreen: boolean;
36
- user$: Observable<ProfileState>;
6
+ user$: import("rxjs").Observable<import("@alfresco/adf-extensions").ProfileState>;
37
7
  columns: DocumentListPresetRef[];
38
- constructor(content: ContentManagementService, extensions: AppExtensionService, store: Store<AppStore>, breakpointObserver: BreakpointObserver);
39
8
  ngOnInit(): void;
40
9
  static ɵfac: i0.ɵɵFactoryDeclaration<TrashcanComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<TrashcanComponent, "ng-component", never, {}, {}, never, never, false>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrashcanComponent, "ng-component", never, {}, {}, never, never, true>;
42
11
  }
@@ -23,12 +23,15 @@
23
23
  */
24
24
  import { AlfrescoApiService } from '@alfresco/adf-core';
25
25
  import { PeopleApi, Person } from '@alfresco/js-api';
26
- import { OnInit } from '@angular/core';
26
+ import { OnDestroy, OnInit } from '@angular/core';
27
27
  import { FormGroup } from '@angular/forms';
28
28
  import { Router } from '@angular/router';
29
+ import { Observable } from 'rxjs';
30
+ import { AppService } from '@alfresco/aca-shared';
29
31
  import * as i0 from "@angular/core";
30
- export declare class ViewProfileComponent implements OnInit {
32
+ export declare class ViewProfileComponent implements OnInit, OnDestroy {
31
33
  private router;
34
+ private appService;
32
35
  peopleApi: PeopleApi;
33
36
  profileForm: FormGroup;
34
37
  personDetails: Person;
@@ -39,8 +42,11 @@ export declare class ViewProfileComponent implements OnInit {
39
42
  passwordSectionDropdown: boolean;
40
43
  contactSectionDropdown: boolean;
41
44
  contactSectionButtonsToggle: boolean;
42
- constructor(router: Router, apiService: AlfrescoApiService);
45
+ appNavNarMode$: Observable<'collapsed' | 'expanded'>;
46
+ private onDestroy$;
47
+ constructor(router: Router, apiService: AlfrescoApiService, appService: AppService);
43
48
  ngOnInit(): void;
49
+ toggleClick(): void;
44
50
  populateForm(userInfo: Person): void;
45
51
  navigateToPersonalFiles(): void;
46
52
  toggleGeneralDropdown(): void;
@@ -54,6 +60,7 @@ export declare class ViewProfileComponent implements OnInit {
54
60
  toggleContactButtons(): void;
55
61
  updatePersonDetails(event: any): void;
56
62
  isSaveButtonDisabled(): boolean;
63
+ ngOnDestroy(): void;
57
64
  static ɵfac: i0.ɵɵFactoryDeclaration<ViewProfileComponent, never>;
58
- static ɵcmp: i0.ɵɵComponentDeclaration<ViewProfileComponent, "app-view-profile", never, {}, {}, never, never, false>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewProfileComponent, "app-view-profile", never, {}, {}, never, never, true>;
59
66
  }
@@ -1,11 +1,11 @@
1
- import { CanActivate, ActivatedRouteSnapshot } from '@angular/router';
1
+ import { CanActivate } from '@angular/router';
2
2
  import { Observable } from 'rxjs';
3
3
  import { AuthenticationService } from '@alfresco/adf-core';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ViewProfileRuleGuard implements CanActivate {
6
6
  private authService;
7
7
  constructor(authService: AuthenticationService);
8
- canActivate(_: ActivatedRouteSnapshot): Observable<boolean> | Promise<boolean> | boolean;
8
+ canActivate(): Observable<boolean> | Promise<boolean> | boolean;
9
9
  private isEcmLoggedIn;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<ViewProfileRuleGuard, never>;
11
11
  static ɵprov: i0.ɵɵInjectableDeclaration<ViewProfileRuleGuard>;
@@ -36,14 +36,14 @@ export declare class CreateFromTemplateDialogComponent implements OnInit {
36
36
  private dialogRef;
37
37
  data: Node;
38
38
  form: UntypedFormGroup;
39
+ title: string;
39
40
  constructor(translationService: TranslationService, store: Store<AppStore>, formBuilder: UntypedFormBuilder, dialogRef: MatDialogRef<CreateFromTemplateDialogComponent>, data: Node);
40
41
  ngOnInit(): void;
41
42
  onSubmit(): void;
42
- title(): string;
43
43
  close(): void;
44
44
  private forbidSpecialCharacters;
45
45
  private forbidEndingDot;
46
46
  private forbidOnlySpaces;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<CreateFromTemplateDialogComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<CreateFromTemplateDialogComponent, "ng-component", never, {}, {}, never, never, false>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateFromTemplateDialogComponent, "ng-component", never, {}, {}, never, never, true>;
49
49
  }
@@ -34,9 +34,9 @@ export declare class UploadEffects {
34
34
  private ngZone;
35
35
  private uploadService;
36
36
  private contentService;
37
- private fileInput;
38
- private folderInput;
39
- private fileVersionInput;
37
+ private readonly fileInput;
38
+ private readonly folderInput;
39
+ private readonly fileVersionInput;
40
40
  private readonly uploadMenuButtonSelector;
41
41
  constructor(store: Store<AppStore>, actions$: Actions, ngZone: NgZone, uploadService: UploadService, rendererFactory: RendererFactory2, contentService: ContentManagementService);
42
42
  uploadFiles$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
@@ -0,0 +1,31 @@
1
+ /*!
2
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Action } from '@ngrx/store';
25
+ import { MinimalNodeEntryEntity } from '@alfresco/js-api';
26
+ export declare const AOS_ACTION = "AOS_ACTION";
27
+ export declare class AosAction implements Action {
28
+ payload: MinimalNodeEntryEntity;
29
+ readonly type = "AOS_ACTION";
30
+ constructor(payload: MinimalNodeEntryEntity);
31
+ }
@@ -0,0 +1,34 @@
1
+ /*!
2
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { ExtensionService } from '@alfresco/adf-extensions';
25
+ import { TranslationService } from '@alfresco/adf-core';
26
+ import { AlfrescoOfficeExtensionService } from '@alfresco/aca-shared';
27
+ import * as i0 from "@angular/core";
28
+ import * as i1 from "@ngrx/effects";
29
+ export declare class AosExtensionModule {
30
+ constructor(extensions: ExtensionService, translation: TranslationService, aosService: AlfrescoOfficeExtensionService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<AosExtensionModule, never>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AosExtensionModule, never, [typeof i1.EffectsFeatureModule], never>;
33
+ static ɵinj: i0.ɵɵInjectorDeclaration<AosExtensionModule>;
34
+ }
@@ -0,0 +1,48 @@
1
+ /*!
2
+ * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { AppConfigService, AuthenticationService, LogService, NotificationService } from '@alfresco/adf-core';
25
+ import { MinimalNodeEntryEntity } from '@alfresco/js-api';
26
+ import * as i0 from "@angular/core";
27
+ export interface IAosEditOnlineService {
28
+ onActionEditOnlineAos(node: MinimalNodeEntryEntity): void;
29
+ }
30
+ export declare class AosEditOnlineService implements IAosEditOnlineService {
31
+ private authenticationService;
32
+ private appConfigService;
33
+ private notificationService;
34
+ private logService;
35
+ constructor(authenticationService: AuthenticationService, appConfigService: AppConfigService, notificationService: NotificationService, logService: LogService);
36
+ onActionEditOnlineAos(node: MinimalNodeEntryEntity): void;
37
+ private getUserAgent;
38
+ private isWindows;
39
+ private isMacOs;
40
+ private onAlreadyLockedNotification;
41
+ private getProtocolForFileExtension;
42
+ private triggerEditOnlineAos;
43
+ openByUrl(protocolHandler: string, url: string): void;
44
+ private isFile;
45
+ private getNodeId;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<AosEditOnlineService, never>;
47
+ static ɵprov: i0.ɵɵInjectableDeclaration<AosEditOnlineService>;
48
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "$schema": "../../../../extension.schema.json",
3
+ "$id": "9a635542-d87a-4558-ae64-ffa199d1a364",
4
+ "$version": "0.0.10",
5
+ "$name": "Edit in Office",
6
+ "$description": "Extension that provides Office Edit Online Action",
7
+ "$vendor": "Hyland Software, Inc. and its affiliates",
8
+ "$license": "LGPL-3.0",
9
+
10
+ "actions": [
11
+ {
12
+ "id": "aos.openWith.office",
13
+ "type": "AOS_ACTION",
14
+ "payload": "$(context.selection.first.entry)"
15
+ }
16
+ ],
17
+
18
+ "features": {
19
+ "toolbar": [
20
+ {
21
+ "id": "app.toolbar.more",
22
+ "children": [
23
+ {
24
+ "id": "aos.toolbar.openWith.office",
25
+ "order": 90,
26
+ "icon": "edit",
27
+ "title": "AOS.ACTION_TITLE",
28
+ "actions": {
29
+ "click": "aos.openWith.office"
30
+ },
31
+ "rules": {
32
+ "visible": "aos.canOpenWithOffice"
33
+ }
34
+ }
35
+ ]
36
+ }
37
+ ],
38
+ "contextMenu": [
39
+ {
40
+ "id": "aos.context.openWith.office",
41
+ "order": 450,
42
+ "icon": "edit",
43
+ "title": "AOS.ACTION_TITLE",
44
+ "actions": {
45
+ "click": "aos.openWith.office"
46
+ },
47
+ "rules": {
48
+ "visible": "aos.canOpenWithOffice"
49
+ }
50
+ }
51
+ ],
52
+ "viewer": {
53
+ "toolbarActions": [
54
+ {
55
+ "id": "app.viewer.toolbar.more",
56
+ "children": [
57
+ {
58
+ "id": "aos.viewer.openWith.office",
59
+ "order": 1,
60
+ "icon": "edit",
61
+ "title": "AOS.ACTION_TITLE",
62
+ "actions": {
63
+ "click": "aos.openWith.office"
64
+ },
65
+ "rules": {
66
+ "visible": "aos.canOpenWithOffice"
67
+ }
68
+ }
69
+ ]
70
+ }
71
+ ]
72
+ }
73
+ }
74
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "تحرير في ™Microsoft Office",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "مدعوم فقط لأنظمة Windows و MacOS",
6
+ "ALREADY_LOCKED": "المستند '{{nodeId}}' مؤمن بواسطة '{{lockOwner}}'",
7
+ "MISSING_PROTOCOL_HANDLER": "لم يتم العثور على معالج بروتوكول لـ '{{nodeName}}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Upraveno v: Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Podporováno pouze pro platformy Windows a MacOS",
6
+ "ALREADY_LOCKED": "Dokument ,{{ nodeId }}‘ uzamkl uživatel ,{{ lockOwner }}‘",
7
+ "MISSING_PROTOCOL_HANDLER": "Pro ,{{ nodeName }}‘ nebyla nalezena žádná obslužná rutina protokolu"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Rediger i Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Kun understøttet til Windows- og MacOS-platforme",
6
+ "ALREADY_LOCKED": "Dokumentet \"{{ nodeId }}\" er låst af \"{{ lockOwner }}",
7
+ "MISSING_PROTOCOL_HANDLER": "Ingen protokolhåndtering fundet for '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "In Microsoft Office™ bearbeiten",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Nur für die Plattformen Windows und MacOS unterstützt",
6
+ "ALREADY_LOCKED": "Dokument '{{ nodeId }}' ist gesperrt durch '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Kein Protokoll-Handler für '{{ nodeName }}' gefunden"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Edit in Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Only supported for Windows and MacOS platforms",
6
+ "ALREADY_LOCKED": "Document '{{ nodeId }}' is locked by '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "No protocol handler found for '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Editar en Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Solo compatible con plataformas Windows y MacOS",
6
+ "ALREADY_LOCKED": "El documento '{{ nodeId }}' esta bloqueado por '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "No se encontró ningún controlador de protocolo para '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Muokkaa Microsoft Office™ -sovelluksessa",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Tuetaan vain Windows- ja MacOS-alustoilla",
6
+ "ALREADY_LOCKED": "Asiakirja '{{ nodeId }}' on lukittu, lukinnut '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Protokollan käsittelijää ei löydy kohteelle '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Modifier dans Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Seulement prise en charge sur les plateformes Windows et MacOS",
6
+ "ALREADY_LOCKED": "Le document '{{ nodeId }}' est verrouillé par '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Aucun gestionnaire de protocole trouvé pour '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Modifica in Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Supportato solo nelle piattaforme Windows e MacOS",
6
+ "ALREADY_LOCKED": "Il documento '{{ nodeId }}' è bloccato da '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Impossibile trovare un gestore di protocollo per '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Microsoft Office™ で編集",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "WindowsおよびMacOSプラットフォームのみ対応",
6
+ "ALREADY_LOCKED": "ドキュメント'{{ nodeId }}'は、'{{ lockOwner }}'によってロックされています",
7
+ "MISSING_PROTOCOL_HANDLER": "'{{ nodeName }}'のプロトコルハンドラーが見つかりませんでした"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Rediger i Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Støttes kun for Windows og MacOS",
6
+ "ALREADY_LOCKED": "Dokument «{{ nodeId }}» er låst av «{{ lockOwner }}»",
7
+ "MISSING_PROTOCOL_HANDLER": "Fant ingen protokollhåndtering for «{{ nodeName }}»"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Bewerken in Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Alleen ondersteund voor Windows- en MacOS-platforms",
6
+ "ALREADY_LOCKED": "Document '{{ nodeId }}' is vergrendeld door '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Geen protocolhandler gevonden voor '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Edytuj w programie Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Obsługiwane tylko dla platform Windows i MacOS",
6
+ "ALREADY_LOCKED": "Dokument \"{{ nodeId }}\" jest zablokowany przez \"{{ lockOwner }}",
7
+ "MISSING_PROTOCOL_HANDLER": "Nie znaleziono procedury obsługi protokołu dla „{{ nodeName }}”"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Editar no Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Somente suportado para plataformas Windows e MacOS",
6
+ "ALREADY_LOCKED": "O documento '{{ nodeId }}' está bloqueado por '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Nenhum manipulador de protocolo encontrado para '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Редактировать в Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Поддерживается только для платформ Windows и MacOS",
6
+ "ALREADY_LOCKED": "Документ '{{ nodeId }}' блокирован пользователем '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Не найден обработчик протокола для '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "Redigera i Microsoft Office™",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "Stöds endast för Windows- och MacOS-plattformar",
6
+ "ALREADY_LOCKED": "Dokumentet '{{ nodeId }}' är låst av '{{ lockOwner }}'",
7
+ "MISSING_PROTOCOL_HANDLER": "Ingen protokollhanterare hittades för '{{ nodeName }}'"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "AOS": {
3
+ "ACTION_TITLE": "在 Microsoft Office™ 中编辑",
4
+ "ERRORS": {
5
+ "UNSUPPORTED_PLATFORM": "仅支持 Windows 和 MacOS 平台",
6
+ "ALREADY_LOCKED": "文档 '{{ nodeId }}' 被 '{{ lockOwner }}' 锁定",
7
+ "MISSING_PROTOCOL_HANDLER": "找不到 '{{ nodeName }}' 的协议处理程序"
8
+ }
9
+ }
10
+ }