@alfresco/adf-core 8.1.0-14489297497 → 8.1.0-14491540427

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 (600) hide show
  1. package/api/lib/alfresco-api/alfresco-api.utils.d.ts +1 -1
  2. package/breadcrumbs/styles/_breadcrumb.theme.scss +4 -4
  3. package/custom-theme/material-theme.scss +7 -4
  4. package/custom-theme/theme/custom-theme-palettes.scss +12 -8
  5. package/custom-theme/theme/typography.scss +26 -26
  6. package/esm2022/adf-core.mjs +5 -0
  7. package/esm2022/api/alfresco-adf-core-api.mjs +5 -0
  8. package/esm2022/api/index.mjs +20 -0
  9. package/esm2022/api/lib/adf-http-client.service.mjs +311 -0
  10. package/esm2022/api/lib/alfresco-api/alfresco-api.param-encoder.mjs +33 -0
  11. package/esm2022/api/lib/alfresco-api/alfresco-api.response-error.mjs +25 -0
  12. package/esm2022/api/lib/alfresco-api/alfresco-api.utils.mjs +80 -0
  13. package/esm2022/api/lib/interfaces.mjs +18 -0
  14. package/esm2022/api/lib/types.mjs +18 -0
  15. package/esm2022/auth/alfresco-adf-core-auth.mjs +5 -0
  16. package/esm2022/auth/authentication-interceptor/authentication.interceptor.mjs +56 -0
  17. package/esm2022/auth/authentication.mjs +19 -0
  18. package/esm2022/auth/index.mjs +19 -0
  19. package/esm2022/breadcrumbs/alfresco-adf-core-breadcrumbs.mjs +5 -0
  20. package/esm2022/breadcrumbs/components/breadcrumb/breadcrumb.component.mjs +83 -0
  21. package/esm2022/breadcrumbs/components/breadcrumb-item/breadcrumb-item.component.mjs +42 -0
  22. package/esm2022/breadcrumbs/directives/breadcrumb-focus.directive.mjs +44 -0
  23. package/esm2022/breadcrumbs/index.mjs +19 -0
  24. package/esm2022/feature-flags/alfresco-adf-core-feature-flags.mjs +5 -0
  25. package/esm2022/feature-flags/index.mjs +29 -0
  26. package/esm2022/feature-flags/lib/components/feature-flags-wrapper.mjs +36 -0
  27. package/esm2022/feature-flags/lib/components/feature-override-indicator.component.mjs +56 -0
  28. package/esm2022/feature-flags/lib/components/flags/flags.component.mjs +130 -0
  29. package/esm2022/feature-flags/lib/directives/features.directive.mjs +63 -0
  30. package/esm2022/feature-flags/lib/directives/not-features.directive.mjs +63 -0
  31. package/esm2022/feature-flags/lib/guards/is-feature-off.guard.mjs +38 -0
  32. package/esm2022/feature-flags/lib/guards/is-feature-on.guard.mjs +38 -0
  33. package/esm2022/feature-flags/lib/guards/is-flags-override-on.guard.mjs +40 -0
  34. package/esm2022/feature-flags/lib/interfaces/features.interface.mjs +24 -0
  35. package/esm2022/feature-flags/lib/mocks/features-service-mock.factory.mjs +62 -0
  36. package/esm2022/feature-flags/lib/providers/debug-feature-flags.provider.mjs +51 -0
  37. package/esm2022/feature-flags/lib/providers/dummy-feature-flags.provider.mjs +36 -0
  38. package/esm2022/feature-flags/lib/services/debug-features.service.mjs +84 -0
  39. package/esm2022/feature-flags/lib/services/dummy-features.service.mjs +40 -0
  40. package/esm2022/feature-flags/lib/services/flagset.parser.mjs +38 -0
  41. package/esm2022/feature-flags/lib/services/qa-features.helper.mjs +62 -0
  42. package/esm2022/feature-flags/lib/services/storage-features.service.mjs +121 -0
  43. package/esm2022/lib/about/about-extension-list/about-extension-list.component.mjs +52 -0
  44. package/esm2022/lib/about/about-license-list/about-license-list.component.mjs +52 -0
  45. package/esm2022/lib/about/about-module-list/module-list.component.mjs +52 -0
  46. package/esm2022/lib/about/about-package/package-list.component.mjs +66 -0
  47. package/esm2022/lib/about/about-panel.directive.mjs +37 -0
  48. package/esm2022/lib/about/about-repository-info/about-repository-info.component.mjs +60 -0
  49. package/esm2022/lib/about/about-repository-info/repository-info.interface.mjs +18 -0
  50. package/esm2022/lib/about/about-server-settings/about-server-settings.component.mjs +43 -0
  51. package/esm2022/lib/about/about-status-list/about-status-list.component.mjs +52 -0
  52. package/esm2022/lib/about/about.component.mjs +35 -0
  53. package/esm2022/lib/about/about.module.mjs +75 -0
  54. package/esm2022/lib/about/index.mjs +18 -0
  55. package/esm2022/lib/about/interfaces.mjs +18 -0
  56. package/esm2022/lib/about/public-api.mjs +28 -0
  57. package/esm2022/lib/app-config/app-config-storage-prefix.factory.mjs +51 -0
  58. package/esm2022/lib/app-config/app-config.loader.mjs +37 -0
  59. package/esm2022/lib/app-config/app-config.module.mjs +33 -0
  60. package/esm2022/lib/app-config/app-config.pipe.mjs +38 -0
  61. package/esm2022/lib/app-config/app-config.service.mjs +243 -0
  62. package/esm2022/lib/app-config/debug-app-config.service.mjs +44 -0
  63. package/esm2022/lib/app-config/index.mjs +18 -0
  64. package/esm2022/lib/app-config/public-api.mjs +22 -0
  65. package/esm2022/lib/auth/authentication-interceptor/auth-bearer.interceptor.mjs +67 -0
  66. package/esm2022/lib/auth/basic-auth/basic-alfresco-auth.service.mjs +356 -0
  67. package/esm2022/lib/auth/basic-auth/content-auth.mjs +189 -0
  68. package/esm2022/lib/auth/basic-auth/process-auth.mjs +193 -0
  69. package/esm2022/lib/auth/guard/auth-guard-bpm.service.mjs +31 -0
  70. package/esm2022/lib/auth/guard/auth-guard-ecm.service.mjs +31 -0
  71. package/esm2022/lib/auth/guard/auth-guard-sso-role.service.mjs +57 -0
  72. package/esm2022/lib/auth/guard/auth-guard.mjs +53 -0
  73. package/esm2022/lib/auth/guard/auth-guard.service.mjs +113 -0
  74. package/esm2022/lib/auth/index.mjs +18 -0
  75. package/esm2022/lib/auth/interfaces/authentication-service.interface.mjs +18 -0
  76. package/esm2022/lib/auth/interfaces/authentication.interface.mjs +18 -0
  77. package/esm2022/lib/auth/interfaces/identity-group.interface.mjs +18 -0
  78. package/esm2022/lib/auth/interfaces/identity-user.service.interface.mjs +18 -0
  79. package/esm2022/lib/auth/interfaces/openid-configuration.interface.mjs +18 -0
  80. package/esm2022/lib/auth/models/application-access.model.mjs +18 -0
  81. package/esm2022/lib/auth/models/identity-group.model.mjs +18 -0
  82. package/esm2022/lib/auth/models/identity-role.model.mjs +30 -0
  83. package/esm2022/lib/auth/models/identity-user.model.mjs +18 -0
  84. package/esm2022/lib/auth/models/oauth-config.model.mjs +18 -0
  85. package/esm2022/lib/auth/models/redirection.model.mjs +28 -0
  86. package/esm2022/lib/auth/models/user-access.model.mjs +18 -0
  87. package/esm2022/lib/auth/oidc/auth-config.mjs +19 -0
  88. package/esm2022/lib/auth/oidc/auth-config.service.mjs +110 -0
  89. package/esm2022/lib/auth/oidc/auth-routing.module.mjs +34 -0
  90. package/esm2022/lib/auth/oidc/auth.module.mjs +112 -0
  91. package/esm2022/lib/auth/oidc/auth.service.mjs +22 -0
  92. package/esm2022/lib/auth/oidc/oidc-auth.guard.mjs +37 -0
  93. package/esm2022/lib/auth/oidc/oidc-authentication.service.mjs +202 -0
  94. package/esm2022/lib/auth/oidc/public-api.mjs +24 -0
  95. package/esm2022/lib/auth/oidc/redirect-auth.service.mjs +267 -0
  96. package/esm2022/lib/auth/oidc/retry-login.service.mjs +66 -0
  97. package/esm2022/lib/auth/oidc/token.interceptor.mjs +62 -0
  98. package/esm2022/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.mjs +31 -0
  99. package/esm2022/lib/auth/public-api.mjs +44 -0
  100. package/esm2022/lib/auth/services/authentication.service.mjs +190 -0
  101. package/esm2022/lib/auth/services/base-authentication.service.mjs +99 -0
  102. package/esm2022/lib/auth/services/identity-group.service.mjs +269 -0
  103. package/esm2022/lib/auth/services/identity-role.service.mjs +99 -0
  104. package/esm2022/lib/auth/services/identity-user.service.mjs +443 -0
  105. package/esm2022/lib/auth/services/jwt-helper.service.mjs +205 -0
  106. package/esm2022/lib/auth/services/oauth2.service.mjs +69 -0
  107. package/esm2022/lib/auth/services/time-sync.service.mjs +83 -0
  108. package/esm2022/lib/auth/services/user-access.service.mjs +110 -0
  109. package/esm2022/lib/avatar/avatar.component.mjs +51 -0
  110. package/esm2022/lib/blank-page/blank-page.component.mjs +31 -0
  111. package/esm2022/lib/blank-page/blank-page.module.mjs +33 -0
  112. package/esm2022/lib/blank-page/index.mjs +18 -0
  113. package/esm2022/lib/blank-page/public-api.mjs +19 -0
  114. package/esm2022/lib/button/button.component.mjs +61 -0
  115. package/esm2022/lib/card-view/card-view.module.mjs +80 -0
  116. package/esm2022/lib/card-view/components/base-card-view.mjs +51 -0
  117. package/esm2022/lib/card-view/components/card-view/card-view.component.mjs +66 -0
  118. package/esm2022/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.mjs +56 -0
  119. package/esm2022/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.mjs +40 -0
  120. package/esm2022/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.mjs +177 -0
  121. package/esm2022/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.mjs +108 -0
  122. package/esm2022/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.mjs +65 -0
  123. package/esm2022/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.mjs +47 -0
  124. package/esm2022/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.mjs +138 -0
  125. package/esm2022/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.mjs +114 -0
  126. package/esm2022/lib/card-view/components/card-view-textitem/card-view-textitem.component.mjs +240 -0
  127. package/esm2022/lib/card-view/components/card-view.components.mjs +28 -0
  128. package/esm2022/lib/card-view/index.mjs +18 -0
  129. package/esm2022/lib/card-view/interfaces/base-card-view-update.interface.mjs +18 -0
  130. package/esm2022/lib/card-view/interfaces/card-view-arrayitem-properties.interface.mjs +18 -0
  131. package/esm2022/lib/card-view/interfaces/card-view-boolitem-properties.interface.mjs +18 -0
  132. package/esm2022/lib/card-view/interfaces/card-view-dateitem-properties.interface.mjs +18 -0
  133. package/esm2022/lib/card-view/interfaces/card-view-item-properties.interface.mjs +18 -0
  134. package/esm2022/lib/card-view/interfaces/card-view-item-validator.interface.mjs +18 -0
  135. package/esm2022/lib/card-view/interfaces/card-view-item.interface.mjs +18 -0
  136. package/esm2022/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.mjs +18 -0
  137. package/esm2022/lib/card-view/interfaces/card-view-selectitem-properties.interface.mjs +18 -0
  138. package/esm2022/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.mjs +18 -0
  139. package/esm2022/lib/card-view/interfaces/card-view-textitem-properties.interface.mjs +18 -0
  140. package/esm2022/lib/card-view/interfaces/card-view.interfaces.mjs +29 -0
  141. package/esm2022/lib/card-view/interfaces/click-notification.interface.mjs +18 -0
  142. package/esm2022/lib/card-view/interfaces/update-notification.interface.mjs +18 -0
  143. package/esm2022/lib/card-view/models/card-view-arrayitem.model.mjs +28 -0
  144. package/esm2022/lib/card-view/models/card-view-baseitem.model.mjs +64 -0
  145. package/esm2022/lib/card-view/models/card-view-boolitem.model.mjs +36 -0
  146. package/esm2022/lib/card-view/models/card-view-dateitem.model.mjs +58 -0
  147. package/esm2022/lib/card-view/models/card-view-datetimeitem.model.mjs +28 -0
  148. package/esm2022/lib/card-view/models/card-view-floatitem.model.mjs +33 -0
  149. package/esm2022/lib/card-view/models/card-view-intitem.model.mjs +36 -0
  150. package/esm2022/lib/card-view/models/card-view-keyvaluepairs.model.mjs +27 -0
  151. package/esm2022/lib/card-view/models/card-view-longitem.model.mjs +36 -0
  152. package/esm2022/lib/card-view/models/card-view-mapitem.model.mjs +32 -0
  153. package/esm2022/lib/card-view/models/card-view-selectitem.model.mjs +41 -0
  154. package/esm2022/lib/card-view/models/card-view-textitem.model.mjs +40 -0
  155. package/esm2022/lib/card-view/models/card-view.models.mjs +29 -0
  156. package/esm2022/lib/card-view/public-api.mjs +25 -0
  157. package/esm2022/lib/card-view/services/card-item-types.service.mjs +54 -0
  158. package/esm2022/lib/card-view/services/card-view-update.service.mjs +59 -0
  159. package/esm2022/lib/card-view/services/card-view.services.mjs +19 -0
  160. package/esm2022/lib/card-view/validators/card-view-item-float.validator.mjs +31 -0
  161. package/esm2022/lib/card-view/validators/card-view-item-int.validator.mjs +35 -0
  162. package/esm2022/lib/card-view/validators/card-view-item-length.validator.mjs +34 -0
  163. package/esm2022/lib/card-view/validators/card-view-item-long.validator.mjs +35 -0
  164. package/esm2022/lib/card-view/validators/card-view-item-match.validator.mjs +35 -0
  165. package/esm2022/lib/card-view/validators/card-view-item-minmax.validator.mjs +35 -0
  166. package/esm2022/lib/card-view/validators/card-view-item-only-positive-int.validator.mjs +32 -0
  167. package/esm2022/lib/card-view/validators/card-view-item-only-positive-long.validator.mjs +31 -0
  168. package/esm2022/lib/card-view/validators/card-view.validators.mjs +26 -0
  169. package/esm2022/lib/card-view/validators/validators.map.mjs +26 -0
  170. package/esm2022/lib/clipboard/clipboard.directive.mjs +99 -0
  171. package/esm2022/lib/clipboard/clipboard.module.mjs +34 -0
  172. package/esm2022/lib/clipboard/clipboard.service.mjs +103 -0
  173. package/esm2022/lib/clipboard/index.mjs +18 -0
  174. package/esm2022/lib/clipboard/public-api.mjs +21 -0
  175. package/esm2022/lib/comments/comment-list/comment-list.component.mjs +53 -0
  176. package/esm2022/lib/comments/comment-list/comment-list.module.mjs +33 -0
  177. package/esm2022/lib/comments/comment-list/index.mjs +18 -0
  178. package/esm2022/lib/comments/comment-list/public-api.mjs +19 -0
  179. package/esm2022/lib/comments/comments.component.mjs +128 -0
  180. package/esm2022/lib/comments/comments.module.mjs +33 -0
  181. package/esm2022/lib/comments/index.mjs +18 -0
  182. package/esm2022/lib/comments/interfaces/comments-service.interface.mjs +18 -0
  183. package/esm2022/lib/comments/interfaces/comments.token.mjs +19 -0
  184. package/esm2022/lib/comments/public-api.mjs +22 -0
  185. package/esm2022/lib/common/index.mjs +35 -0
  186. package/esm2022/lib/common/interface/search-component.interface.mjs +18 -0
  187. package/esm2022/lib/common/mock/app-config.service.mock.mjs +47 -0
  188. package/esm2022/lib/common/models/default-languages.model.mjs +36 -0
  189. package/esm2022/lib/common/models/log-levels.model.mjs +33 -0
  190. package/esm2022/lib/common/models/user-info-mode.enum.mjs +25 -0
  191. package/esm2022/lib/common/services/cookie.service.mjs +82 -0
  192. package/esm2022/lib/common/services/download.service.mjs +102 -0
  193. package/esm2022/lib/common/services/dynamic-component-mapper.service.mjs +89 -0
  194. package/esm2022/lib/common/services/highlight-transform.service.mjs +61 -0
  195. package/esm2022/lib/common/services/language-item.interface.mjs +18 -0
  196. package/esm2022/lib/common/services/log.service.mjs +171 -0
  197. package/esm2022/lib/common/services/page-title.service.mjs +63 -0
  198. package/esm2022/lib/common/services/sort-by-category.service.mjs +81 -0
  199. package/esm2022/lib/common/services/storage.service.mjs +143 -0
  200. package/esm2022/lib/common/services/thumbnail.service.mjs +194 -0
  201. package/esm2022/lib/common/services/url.service.mjs +45 -0
  202. package/esm2022/lib/common/services/user-preferences.service.mjs +238 -0
  203. package/esm2022/lib/common/utils/date-fns-adapter.mjs +115 -0
  204. package/esm2022/lib/common/utils/date-fns-utils.mjs +222 -0
  205. package/esm2022/lib/common/utils/datetime-fns-adapter.mjs +134 -0
  206. package/esm2022/lib/common/utils/file-utils.mjs +65 -0
  207. package/esm2022/lib/common/utils/index.mjs +18 -0
  208. package/esm2022/lib/common/utils/moment-date-adapter.mjs +202 -0
  209. package/esm2022/lib/common/utils/moment-date-formats.model.mjs +32 -0
  210. package/esm2022/lib/common/utils/object-utils.mjs +107 -0
  211. package/esm2022/lib/common/utils/public-api.mjs +25 -0
  212. package/esm2022/lib/common/utils/string-utils.mjs +45 -0
  213. package/esm2022/lib/context-menu/animations.mjs +33 -0
  214. package/esm2022/lib/context-menu/context-menu-list.component.mjs +92 -0
  215. package/esm2022/lib/context-menu/context-menu-overlay.mjs +25 -0
  216. package/esm2022/lib/context-menu/context-menu-overlay.service.mjs +109 -0
  217. package/esm2022/lib/context-menu/context-menu.directive.mjs +63 -0
  218. package/esm2022/lib/context-menu/context-menu.module.mjs +35 -0
  219. package/esm2022/lib/context-menu/context-menu.tokens.mjs +19 -0
  220. package/esm2022/lib/context-menu/index.mjs +18 -0
  221. package/esm2022/lib/context-menu/interfaces.mjs +18 -0
  222. package/esm2022/lib/context-menu/public-api.mjs +21 -0
  223. package/esm2022/lib/core.module.mjs +314 -0
  224. package/esm2022/lib/datatable/components/amount-cell/amount-cell.component.mjs +45 -0
  225. package/esm2022/lib/datatable/components/boolean-cell/boolean-cell.component.mjs +65 -0
  226. package/esm2022/lib/datatable/components/columns-selector/columns-search-filter.pipe.mjs +55 -0
  227. package/esm2022/lib/datatable/components/columns-selector/columns-selector.component.mjs +114 -0
  228. package/esm2022/lib/datatable/components/data-cell.event.mjs +31 -0
  229. package/esm2022/lib/datatable/components/data-row-action.event.mjs +34 -0
  230. package/esm2022/lib/datatable/components/datatable/datatable.component.mjs +915 -0
  231. package/esm2022/lib/datatable/components/datatable-cell/datatable-cell.component.mjs +126 -0
  232. package/esm2022/lib/datatable/components/datatable-row/datatable-row.component.mjs +98 -0
  233. package/esm2022/lib/datatable/components/date-cell/date-cell.component.mjs +78 -0
  234. package/esm2022/lib/datatable/components/empty-list/empty-list.component.mjs +60 -0
  235. package/esm2022/lib/datatable/components/filesize-cell/filesize-cell.component.mjs +49 -0
  236. package/esm2022/lib/datatable/components/icon-cell/icon-cell.component.mjs +67 -0
  237. package/esm2022/lib/datatable/components/json-cell/json-cell.component.mjs +86 -0
  238. package/esm2022/lib/datatable/components/location-cell/location-cell.component.mjs +69 -0
  239. package/esm2022/lib/datatable/components/mocks/datatable.mock.mjs +153 -0
  240. package/esm2022/lib/datatable/components/number-cell/number-cell.component.mjs +42 -0
  241. package/esm2022/lib/datatable/data/data-column.model.mjs +18 -0
  242. package/esm2022/lib/datatable/data/data-row-event.model.mjs +26 -0
  243. package/esm2022/lib/datatable/data/data-row-update.model.mjs +18 -0
  244. package/esm2022/lib/datatable/data/data-row.model.mjs +18 -0
  245. package/esm2022/lib/datatable/data/data-sorting.model.mjs +24 -0
  246. package/esm2022/lib/datatable/data/data-table.schema.mjs +132 -0
  247. package/esm2022/lib/datatable/data/datatable-adapter.mjs +18 -0
  248. package/esm2022/lib/datatable/data/object-datacolumn.model.mjs +46 -0
  249. package/esm2022/lib/datatable/data/object-datarow.model.mjs +38 -0
  250. package/esm2022/lib/datatable/data/object-datatable-adapter.mjs +134 -0
  251. package/esm2022/lib/datatable/data-column/data-column-header.component.mjs +45 -0
  252. package/esm2022/lib/datatable/data-column/data-column-list.component.mjs +36 -0
  253. package/esm2022/lib/datatable/data-column/data-column.component.mjs +114 -0
  254. package/esm2022/lib/datatable/data-column/index.mjs +18 -0
  255. package/esm2022/lib/datatable/data-column/public-api.mjs +20 -0
  256. package/esm2022/lib/datatable/datatable.module.mjs +161 -0
  257. package/esm2022/lib/datatable/directives/custom-empty-content-template.directive.mjs +35 -0
  258. package/esm2022/lib/datatable/directives/custom-loading-template.directive.mjs +30 -0
  259. package/esm2022/lib/datatable/directives/custom-no-permission-template.directive.mjs +35 -0
  260. package/esm2022/lib/datatable/directives/drop-zone.directive.mjs +89 -0
  261. package/esm2022/lib/datatable/directives/header-filter-template.directive.mjs +43 -0
  262. package/esm2022/lib/datatable/directives/loading-template.directive.mjs +46 -0
  263. package/esm2022/lib/datatable/directives/main-data-table-action-template.directive.mjs +43 -0
  264. package/esm2022/lib/datatable/directives/no-content-template.directive.mjs +46 -0
  265. package/esm2022/lib/datatable/directives/no-permission-template.directive.mjs +46 -0
  266. package/esm2022/lib/datatable/directives/resizable/resizable.directive.mjs +173 -0
  267. package/esm2022/lib/datatable/directives/resizable/resize-handle.directive.mjs +72 -0
  268. package/esm2022/lib/datatable/directives/resizable/types.mjs +18 -0
  269. package/esm2022/lib/datatable/index.mjs +18 -0
  270. package/esm2022/lib/datatable/public-api.mjs +55 -0
  271. package/esm2022/lib/datatable/services/datatable.service.mjs +33 -0
  272. package/esm2022/lib/dialogs/confirm-dialog/confirm.dialog.mjs +50 -0
  273. package/esm2022/lib/dialogs/confirm-dialog/confirm.dialog.module.mjs +38 -0
  274. package/esm2022/lib/dialogs/dialog/dialog-data.interface.mjs +18 -0
  275. package/esm2022/lib/dialogs/dialog/dialog.component.mjs +71 -0
  276. package/esm2022/lib/dialogs/dialog/dialog.model.mjs +22 -0
  277. package/esm2022/lib/dialogs/dialog/index.mjs +20 -0
  278. package/esm2022/lib/dialogs/edit-json/edit-json.dialog.mjs +51 -0
  279. package/esm2022/lib/dialogs/edit-json/edit-json.dialog.module.mjs +38 -0
  280. package/esm2022/lib/dialogs/index.mjs +18 -0
  281. package/esm2022/lib/dialogs/public-api.mjs +25 -0
  282. package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component.mjs +74 -0
  283. package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.model.mjs +18 -0
  284. package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.module.mjs +33 -0
  285. package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes.guard.mjs +64 -0
  286. package/esm2022/lib/directives/directive.module.mjs +56 -0
  287. package/esm2022/lib/directives/highlight.directive.mjs +67 -0
  288. package/esm2022/lib/directives/index.mjs +18 -0
  289. package/esm2022/lib/directives/infinite-select-scroll.directive.mjs +67 -0
  290. package/esm2022/lib/directives/logout.directive.mjs +72 -0
  291. package/esm2022/lib/directives/public-api.mjs +24 -0
  292. package/esm2022/lib/directives/tooltip-card/tooltip-card.component.mjs +60 -0
  293. package/esm2022/lib/directives/tooltip-card/tooltip-card.directive.mjs +104 -0
  294. package/esm2022/lib/directives/upload.directive.mjs +241 -0
  295. package/esm2022/lib/dynamic-chip-list/chip.mjs +18 -0
  296. package/esm2022/lib/dynamic-chip-list/dynamic-chip-list.component.mjs +205 -0
  297. package/esm2022/lib/dynamic-chip-list/dynamic-chip-list.module.mjs +33 -0
  298. package/esm2022/lib/dynamic-chip-list/index.mjs +18 -0
  299. package/esm2022/lib/dynamic-chip-list/public-api.mjs +20 -0
  300. package/esm2022/lib/events/base-ui.event.mjs +21 -0
  301. package/esm2022/lib/events/base.event.mjs +29 -0
  302. package/esm2022/lib/events/index.mjs +18 -0
  303. package/esm2022/lib/events/public-api.mjs +19 -0
  304. package/esm2022/lib/form/components/form-base.component.mjs +229 -0
  305. package/esm2022/lib/form/components/form-custom-button.directive.mjs +30 -0
  306. package/esm2022/lib/form/components/form-field/form-field.component.mjs +142 -0
  307. package/esm2022/lib/form/components/form-renderer.component.mjs +171 -0
  308. package/esm2022/lib/form/components/form-section/form-section.component.mjs +46 -0
  309. package/esm2022/lib/form/components/inplace-form-input/inplace-form-input.component.mjs +37 -0
  310. package/esm2022/lib/form/components/middlewares/decimal-middleware.service.mjs +48 -0
  311. package/esm2022/lib/form/components/middlewares/middleware.mjs +19 -0
  312. package/esm2022/lib/form/components/widgets/amount/amount.widget.mjs +78 -0
  313. package/esm2022/lib/form/components/widgets/base-viewer/base-viewer.widget.mjs +60 -0
  314. package/esm2022/lib/form/components/widgets/checkbox/checkbox.widget.mjs +53 -0
  315. package/esm2022/lib/form/components/widgets/core/container-column.model.mjs +28 -0
  316. package/esm2022/lib/form/components/widgets/core/container.model.mjs +50 -0
  317. package/esm2022/lib/form/components/widgets/core/content-link.model.mjs +52 -0
  318. package/esm2022/lib/form/components/widgets/core/displayable-cm-properties.model.mjs +18 -0
  319. package/esm2022/lib/form/components/widgets/core/error-message.model.mjs +38 -0
  320. package/esm2022/lib/form/components/widgets/core/external-content-link.mjs +18 -0
  321. package/esm2022/lib/form/components/widgets/core/external-content.mjs +18 -0
  322. package/esm2022/lib/form/components/widgets/core/form-field-file-source.mjs +18 -0
  323. package/esm2022/lib/form/components/widgets/core/form-field-metadata.mjs +18 -0
  324. package/esm2022/lib/form/components/widgets/core/form-field-option.mjs +18 -0
  325. package/esm2022/lib/form/components/widgets/core/form-field-rule.mjs +18 -0
  326. package/esm2022/lib/form/components/widgets/core/form-field-selected-folder.mjs +18 -0
  327. package/esm2022/lib/form/components/widgets/core/form-field-templates.mjs +18 -0
  328. package/esm2022/lib/form/components/widgets/core/form-field-types.mjs +74 -0
  329. package/esm2022/lib/form/components/widgets/core/form-field-utils.mjs +23 -0
  330. package/esm2022/lib/form/components/widgets/core/form-field-validator.mjs +268 -0
  331. package/esm2022/lib/form/components/widgets/core/form-field-variable-options.mjs +18 -0
  332. package/esm2022/lib/form/components/widgets/core/form-field.model.mjs +482 -0
  333. package/esm2022/lib/form/components/widgets/core/form-outcome-event.model.mjs +32 -0
  334. package/esm2022/lib/form/components/widgets/core/form-outcome.model.mjs +38 -0
  335. package/esm2022/lib/form/components/widgets/core/form-values.mjs +18 -0
  336. package/esm2022/lib/form/components/widgets/core/form-variable.model.mjs +18 -0
  337. package/esm2022/lib/form/components/widgets/core/form-widget.model.mjs +33 -0
  338. package/esm2022/lib/form/components/widgets/core/form.model.mjs +384 -0
  339. package/esm2022/lib/form/components/widgets/core/group.model.mjs +18 -0
  340. package/esm2022/lib/form/components/widgets/core/index.mjs +49 -0
  341. package/esm2022/lib/form/components/widgets/core/predefined-theme.mjs +115 -0
  342. package/esm2022/lib/form/components/widgets/core/process-form-model.interface.mjs +18 -0
  343. package/esm2022/lib/form/components/widgets/core/process-variable.model.mjs +18 -0
  344. package/esm2022/lib/form/components/widgets/core/tab.model.mjs +34 -0
  345. package/esm2022/lib/form/components/widgets/core/theme.model.mjs +18 -0
  346. package/esm2022/lib/form/components/widgets/core/upload-widget-content-link.model.mjs +27 -0
  347. package/esm2022/lib/form/components/widgets/core/widget-schema.model.mjs +18 -0
  348. package/esm2022/lib/form/components/widgets/date/date.widget.mjs +163 -0
  349. package/esm2022/lib/form/components/widgets/date-time/date-time.widget.mjs +154 -0
  350. package/esm2022/lib/form/components/widgets/decimal/decimal.component.mjs +54 -0
  351. package/esm2022/lib/form/components/widgets/display-text/display-text.schema.mjs +86 -0
  352. package/esm2022/lib/form/components/widgets/display-text/display-text.widget.mjs +47 -0
  353. package/esm2022/lib/form/components/widgets/display-text/index.mjs +19 -0
  354. package/esm2022/lib/form/components/widgets/error/error.component.mjs +93 -0
  355. package/esm2022/lib/form/components/widgets/header/header.schema.mjs +86 -0
  356. package/esm2022/lib/form/components/widgets/header/header.widget.mjs +43 -0
  357. package/esm2022/lib/form/components/widgets/header/index.mjs +19 -0
  358. package/esm2022/lib/form/components/widgets/hyperlink/hyperlink.widget.mjs +71 -0
  359. package/esm2022/lib/form/components/widgets/index.mjs +71 -0
  360. package/esm2022/lib/form/components/widgets/json/json.widget.mjs +67 -0
  361. package/esm2022/lib/form/components/widgets/multiline-text/multiline-text.widget.mjs +56 -0
  362. package/esm2022/lib/form/components/widgets/number/number.widget.mjs +66 -0
  363. package/esm2022/lib/form/components/widgets/reactive-widget.interface.mjs +18 -0
  364. package/esm2022/lib/form/components/widgets/text/text-mask.component.mjs +215 -0
  365. package/esm2022/lib/form/components/widgets/text/text.widget.mjs +66 -0
  366. package/esm2022/lib/form/components/widgets/unknown/unknown.widget.mjs +63 -0
  367. package/esm2022/lib/form/components/widgets/widget.component.mjs +110 -0
  368. package/esm2022/lib/form/events/form-error.event.mjs +24 -0
  369. package/esm2022/lib/form/events/form-field.event.mjs +24 -0
  370. package/esm2022/lib/form/events/form-rules.event.mjs +25 -0
  371. package/esm2022/lib/form/events/form-spinner.event.mjs +23 -0
  372. package/esm2022/lib/form/events/form.event.mjs +29 -0
  373. package/esm2022/lib/form/events/index.mjs +24 -0
  374. package/esm2022/lib/form/events/validate-form-field.event.mjs +24 -0
  375. package/esm2022/lib/form/events/validate-form.event.mjs +25 -0
  376. package/esm2022/lib/form/form-base.module.mjs +90 -0
  377. package/esm2022/lib/form/index.mjs +18 -0
  378. package/esm2022/lib/form/models/form-rules.model.mjs +77 -0
  379. package/esm2022/lib/form/models/task-process-variable.model.mjs +19 -0
  380. package/esm2022/lib/form/models/widget-visibility.model.mjs +104 -0
  381. package/esm2022/lib/form/pipes/field-style.pipe.mjs +45 -0
  382. package/esm2022/lib/form/pipes/index.mjs +18 -0
  383. package/esm2022/lib/form/public-api.mjs +34 -0
  384. package/esm2022/lib/form/services/form-rendering.service.mjs +53 -0
  385. package/esm2022/lib/form/services/form-validation-service.interface.mjs +18 -0
  386. package/esm2022/lib/form/services/form.service.mjs +86 -0
  387. package/esm2022/lib/form/services/widget-visibility.service.mjs +294 -0
  388. package/esm2022/lib/header/header.component.mjs +73 -0
  389. package/esm2022/lib/header/index.mjs +18 -0
  390. package/esm2022/lib/header/navbar/navbar-item.component.mjs +37 -0
  391. package/esm2022/lib/header/navbar/navbar.component.mjs +36 -0
  392. package/esm2022/lib/header/public-api.mjs +20 -0
  393. package/esm2022/lib/icon/icon.component.mjs +51 -0
  394. package/esm2022/lib/icon/icon.module.mjs +36 -0
  395. package/esm2022/lib/icon/index.mjs +18 -0
  396. package/esm2022/lib/icon/public-api.mjs +19 -0
  397. package/esm2022/lib/identity-user-info/identity-user-info.component.mjs +87 -0
  398. package/esm2022/lib/identity-user-info/identity-user-info.module.mjs +33 -0
  399. package/esm2022/lib/identity-user-info/index.mjs +18 -0
  400. package/esm2022/lib/identity-user-info/public-api.mjs +19 -0
  401. package/esm2022/lib/info-drawer/index.mjs +18 -0
  402. package/esm2022/lib/info-drawer/info-drawer-layout.component.mjs +71 -0
  403. package/esm2022/lib/info-drawer/info-drawer.component.mjs +114 -0
  404. package/esm2022/lib/info-drawer/info-drawer.module.mjs +53 -0
  405. package/esm2022/lib/info-drawer/public-api.mjs +20 -0
  406. package/esm2022/lib/interface/index.mjs +18 -0
  407. package/esm2022/lib/interface/injection.tokens.mjs +19 -0
  408. package/esm2022/lib/interface/public-api.mjs +18 -0
  409. package/esm2022/lib/language-menu/index.mjs +18 -0
  410. package/esm2022/lib/language-menu/language-menu.component.mjs +61 -0
  411. package/esm2022/lib/language-menu/language-menu.module.mjs +35 -0
  412. package/esm2022/lib/language-menu/language-picker.component.mjs +78 -0
  413. package/esm2022/lib/language-menu/public-api.mjs +21 -0
  414. package/esm2022/lib/language-menu/service/language.service.interface.mjs +18 -0
  415. package/esm2022/lib/language-menu/service/language.service.mjs +34 -0
  416. package/esm2022/lib/layout/components/header/header.component.mjs +100 -0
  417. package/esm2022/lib/layout/components/layout-container/layout-container.component.mjs +180 -0
  418. package/esm2022/lib/layout/components/sidebar-action/sidebar-action-menu.component.mjs +82 -0
  419. package/esm2022/lib/layout/components/sidenav-layout/sidenav-layout.component.mjs +145 -0
  420. package/esm2022/lib/layout/directives/sidenav-layout-content.directive.mjs +33 -0
  421. package/esm2022/lib/layout/directives/sidenav-layout-header.directive.mjs +33 -0
  422. package/esm2022/lib/layout/directives/sidenav-layout-navigation.directive.mjs +33 -0
  423. package/esm2022/lib/layout/index.mjs +18 -0
  424. package/esm2022/lib/layout/layout.module.mjs +72 -0
  425. package/esm2022/lib/layout/public-api.mjs +25 -0
  426. package/esm2022/lib/login/components/login/login.component.mjs +368 -0
  427. package/esm2022/lib/login/components/login-dialog/login-dialog-component-data.interface.mjs +18 -0
  428. package/esm2022/lib/login/components/login-dialog/login-dialog.component.mjs +58 -0
  429. package/esm2022/lib/login/components/login-dialog-panel/login-dialog-panel.component.mjs +48 -0
  430. package/esm2022/lib/login/directives/login-footer.directive.mjs +41 -0
  431. package/esm2022/lib/login/directives/login-header.directive.mjs +41 -0
  432. package/esm2022/lib/login/index.mjs +18 -0
  433. package/esm2022/lib/login/login.module.mjs +54 -0
  434. package/esm2022/lib/login/models/login-error.event.mjs +22 -0
  435. package/esm2022/lib/login/models/login-submit.event.mjs +32 -0
  436. package/esm2022/lib/login/models/login-success.event.mjs +24 -0
  437. package/esm2022/lib/login/public-api.mjs +27 -0
  438. package/esm2022/lib/material.module.mjs +254 -0
  439. package/esm2022/lib/mock/cookie.service.mock.mjs +43 -0
  440. package/esm2022/lib/mock/data-column.mock.mjs +73 -0
  441. package/esm2022/lib/mock/event.mock.mjs +39 -0
  442. package/esm2022/lib/mock/form/form-definition-readonly.mock.mjs +225 -0
  443. package/esm2022/lib/mock/form/form-definition-visibility.mock.mjs +347 -0
  444. package/esm2022/lib/mock/form/form-definition.mock.mjs +403 -0
  445. package/esm2022/lib/mock/form/form.component.mock.mjs +275 -0
  446. package/esm2022/lib/mock/form/form.service.mock.mjs +248 -0
  447. package/esm2022/lib/mock/form/widget-visibility.service.mock.mjs +1835 -0
  448. package/esm2022/lib/mock/index.mjs +18 -0
  449. package/esm2022/lib/mock/public-api.mjs +27 -0
  450. package/esm2022/lib/mock/translation.service.mock.mjs +44 -0
  451. package/esm2022/lib/models/comment.model.mjs +51 -0
  452. package/esm2022/lib/models/component.model.mjs +24 -0
  453. package/esm2022/lib/models/decimal-number.model.mjs +26 -0
  454. package/esm2022/lib/models/general-user.model.mjs +24 -0
  455. package/esm2022/lib/models/index.mjs +18 -0
  456. package/esm2022/lib/models/pagination.model.mjs +29 -0
  457. package/esm2022/lib/models/path.model.mjs +24 -0
  458. package/esm2022/lib/models/product-version.model.mjs +28 -0
  459. package/esm2022/lib/models/public-api.mjs +24 -0
  460. package/esm2022/lib/models/request-pagination.model.mjs +25 -0
  461. package/esm2022/lib/notifications/components/add-notification.stories.component.mjs +44 -0
  462. package/esm2022/lib/notifications/components/notification-history.component.mjs +139 -0
  463. package/esm2022/lib/notifications/helpers/notification.factory.mjs +43 -0
  464. package/esm2022/lib/notifications/index.mjs +18 -0
  465. package/esm2022/lib/notifications/models/notification.model.mjs +25 -0
  466. package/esm2022/lib/notifications/notification-history.module.mjs +35 -0
  467. package/esm2022/lib/notifications/public-api.mjs +23 -0
  468. package/esm2022/lib/notifications/services/notification.service.mjs +166 -0
  469. package/esm2022/lib/pagination/index.mjs +18 -0
  470. package/esm2022/lib/pagination/infinite-pagination.component.mjs +112 -0
  471. package/esm2022/lib/pagination/paginated-component.interface.mjs +18 -0
  472. package/esm2022/lib/pagination/pagination-component.interface.mjs +18 -0
  473. package/esm2022/lib/pagination/pagination.component.mjs +263 -0
  474. package/esm2022/lib/pagination/pagination.module.mjs +35 -0
  475. package/esm2022/lib/pagination/public-api.mjs +22 -0
  476. package/esm2022/lib/pipes/date-time.pipe.mjs +46 -0
  477. package/esm2022/lib/pipes/decimal-number.pipe.mjs +78 -0
  478. package/esm2022/lib/pipes/file-size.pipe.mjs +54 -0
  479. package/esm2022/lib/pipes/file-type.pipe.mjs +40 -0
  480. package/esm2022/lib/pipes/format-space.pipe.mjs +39 -0
  481. package/esm2022/lib/pipes/full-name.pipe.mjs +43 -0
  482. package/esm2022/lib/pipes/index.mjs +18 -0
  483. package/esm2022/lib/pipes/localized-date.pipe.mjs +70 -0
  484. package/esm2022/lib/pipes/multi-value.pipe.mjs +37 -0
  485. package/esm2022/lib/pipes/pipe.module.mjs +83 -0
  486. package/esm2022/lib/pipes/public-api.mjs +30 -0
  487. package/esm2022/lib/pipes/text-highlight.pipe.mjs +39 -0
  488. package/esm2022/lib/pipes/time-ago.pipe.mjs +65 -0
  489. package/esm2022/lib/pipes/truncate.pipe.mjs +33 -0
  490. package/esm2022/lib/pipes/user-initial.pipe.mjs +52 -0
  491. package/esm2022/lib/pipes/user-like.interface.mjs +18 -0
  492. package/esm2022/lib/progress/progress.component.mjs +90 -0
  493. package/esm2022/lib/search-text/animations.mjs +32 -0
  494. package/esm2022/lib/search-text/index.mjs +18 -0
  495. package/esm2022/lib/search-text/models/search-text-input.model.mjs +23 -0
  496. package/esm2022/lib/search-text/public-api.mjs +22 -0
  497. package/esm2022/lib/search-text/search-text-input.component.mjs +294 -0
  498. package/esm2022/lib/search-text/search-text-input.module.mjs +35 -0
  499. package/esm2022/lib/search-text/search-trigger.directive.mjs +181 -0
  500. package/esm2022/lib/snackbar-content/index.mjs +18 -0
  501. package/esm2022/lib/snackbar-content/public-api.mjs +20 -0
  502. package/esm2022/lib/snackbar-content/snack-bar-data.mjs +18 -0
  503. package/esm2022/lib/snackbar-content/snackbar-content.component.mjs +48 -0
  504. package/esm2022/lib/snackbar-content/snackbar-content.module.mjs +38 -0
  505. package/esm2022/lib/sorting-picker/index.mjs +18 -0
  506. package/esm2022/lib/sorting-picker/public-api.mjs +18 -0
  507. package/esm2022/lib/sorting-picker/sorting-picker.component.mjs +68 -0
  508. package/esm2022/lib/templates/empty-content/empty-content.component.mjs +44 -0
  509. package/esm2022/lib/templates/error-content/error-content.component.mjs +62 -0
  510. package/esm2022/lib/templates/index.mjs +18 -0
  511. package/esm2022/lib/templates/public-api.mjs +20 -0
  512. package/esm2022/lib/templates/template.module.mjs +38 -0
  513. package/esm2022/lib/testing/core.story.module.mjs +39 -0
  514. package/esm2022/lib/testing/core.testing.module.mjs +35 -0
  515. package/esm2022/lib/testing/index.mjs +22 -0
  516. package/esm2022/lib/testing/noop-auth.module.mjs +80 -0
  517. package/esm2022/lib/testing/noop-translate.module.mjs +61 -0
  518. package/esm2022/lib/testing/unit-testing-utils.mjs +364 -0
  519. package/esm2022/lib/toolbar/index.mjs +18 -0
  520. package/esm2022/lib/toolbar/public-api.mjs +21 -0
  521. package/esm2022/lib/toolbar/toolbar-divider.component.mjs +27 -0
  522. package/esm2022/lib/toolbar/toolbar-title.component.mjs +32 -0
  523. package/esm2022/lib/toolbar/toolbar.component.mjs +40 -0
  524. package/esm2022/lib/toolbar/toolbar.module.mjs +36 -0
  525. package/esm2022/lib/translation/index.mjs +18 -0
  526. package/esm2022/lib/translation/public-api.mjs +19 -0
  527. package/esm2022/lib/translation/translate-loader.service.mjs +148 -0
  528. package/esm2022/lib/translation/translation.service.mjs +148 -0
  529. package/esm2022/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.mjs +37 -0
  530. package/esm2022/lib/viewer/components/img-viewer/img-viewer.component.mjs +221 -0
  531. package/esm2022/lib/viewer/components/media-player/media-player.component.mjs +64 -0
  532. package/esm2022/lib/viewer/components/pdf-viewer/pdf-viewer.component.mjs +528 -0
  533. package/esm2022/lib/viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog.mjs +61 -0
  534. package/esm2022/lib/viewer/components/pdf-viewer-thumb/pdf-viewer-thumb.component.mjs +49 -0
  535. package/esm2022/lib/viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component.mjs +198 -0
  536. package/esm2022/lib/viewer/components/txt-viewer/txt-viewer.component.mjs +77 -0
  537. package/esm2022/lib/viewer/components/unknown-format/unknown-format.component.mjs +33 -0
  538. package/esm2022/lib/viewer/components/viewer-more-actions.component.mjs +34 -0
  539. package/esm2022/lib/viewer/components/viewer-open-with.component.mjs +34 -0
  540. package/esm2022/lib/viewer/components/viewer-render/viewer-render.component.mjs +211 -0
  541. package/esm2022/lib/viewer/components/viewer-sidebar.component.mjs +46 -0
  542. package/esm2022/lib/viewer/components/viewer-toolbar-actions.component.mjs +34 -0
  543. package/esm2022/lib/viewer/components/viewer-toolbar-custom-actions.component.mjs +34 -0
  544. package/esm2022/lib/viewer/components/viewer-toolbar.component.mjs +34 -0
  545. package/esm2022/lib/viewer/components/viewer.component.mjs +462 -0
  546. package/esm2022/lib/viewer/directives/viewer-extension.directive.mjs +67 -0
  547. package/esm2022/lib/viewer/index.mjs +18 -0
  548. package/esm2022/lib/viewer/models/download-prompt.actions.mjs +23 -0
  549. package/esm2022/lib/viewer/models/viewer.model.mjs +22 -0
  550. package/esm2022/lib/viewer/public-api.mjs +40 -0
  551. package/esm2022/lib/viewer/services/rendering-queue.services.mjs +179 -0
  552. package/esm2022/lib/viewer/services/view-util.service.mjs +149 -0
  553. package/esm2022/lib/viewer/viewer.module.mjs +112 -0
  554. package/esm2022/public-api.mjs +60 -0
  555. package/esm2022/shell/alfresco-adf-core-shell.mjs +5 -0
  556. package/esm2022/shell/index.mjs +20 -0
  557. package/esm2022/shell/lib/components/shell/shell.component.mjs +122 -0
  558. package/esm2022/shell/lib/services/shell-app.service.mjs +22 -0
  559. package/esm2022/shell/lib/shell.module.mjs +79 -0
  560. package/esm2022/shell/lib/shell.routes.mjs +25 -0
  561. package/feature-flags/lib/providers/debug-feature-flags.provider.d.ts +35 -4
  562. package/fesm2022/adf-core.mjs +1012 -976
  563. package/fesm2022/adf-core.mjs.map +1 -1
  564. package/fesm2022/alfresco-adf-core-api.mjs +3 -3
  565. package/fesm2022/alfresco-adf-core-auth.mjs +3 -3
  566. package/fesm2022/alfresco-adf-core-breadcrumbs.mjs +10 -10
  567. package/fesm2022/alfresco-adf-core-breadcrumbs.mjs.map +1 -1
  568. package/fesm2022/alfresco-adf-core-feature-flags.mjs +56 -51
  569. package/fesm2022/alfresco-adf-core-feature-flags.mjs.map +1 -1
  570. package/fesm2022/alfresco-adf-core-shell.mjs +8 -8
  571. package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
  572. package/lib/card-view/components/base-card-view.d.ts +1 -1
  573. package/lib/datatable/data/data-table.schema.d.ts +1 -1
  574. package/lib/prebuilt-themes/adf-blue-orange.css +1 -1
  575. package/lib/prebuilt-themes/adf-blue-purple.css +1 -1
  576. package/lib/prebuilt-themes/adf-cyan-orange.css +1 -1
  577. package/lib/prebuilt-themes/adf-cyan-purple.css +1 -1
  578. package/lib/prebuilt-themes/adf-green-orange.css +1 -1
  579. package/lib/prebuilt-themes/adf-green-purple.css +1 -1
  580. package/lib/prebuilt-themes/adf-indigo-pink.css +1 -1
  581. package/lib/prebuilt-themes/adf-pink-bluegrey.css +1 -1
  582. package/lib/prebuilt-themes/adf-purple-green.css +1 -1
  583. package/lib/styles/_components-variables.scss +42 -42
  584. package/lib/styles/_index.scss +57 -57
  585. package/lib/styles/_typography.scss +13 -13
  586. package/lib/styles/prebuilt/adf-blue-orange.scss +6 -7
  587. package/lib/styles/prebuilt/adf-blue-purple.scss +6 -7
  588. package/lib/styles/prebuilt/adf-cyan-orange.scss +6 -7
  589. package/lib/styles/prebuilt/adf-cyan-purple.scss +6 -7
  590. package/lib/styles/prebuilt/adf-green-orange.scss +6 -7
  591. package/lib/styles/prebuilt/adf-green-purple.scss +6 -7
  592. package/lib/styles/prebuilt/adf-indigo-pink.scss +6 -7
  593. package/lib/styles/prebuilt/adf-pink-bluegrey.scss +6 -7
  594. package/lib/styles/prebuilt/adf-purple-green.scss +6 -7
  595. package/lib/viewer/components/pdf-viewer/pdf-viewer.component.d.ts +14 -10
  596. package/lib/viewer/components/viewer-render/viewer-render.component.scss +4 -0
  597. package/package.json +15 -3
  598. package/schematics/migrations/schematics/migrations/7_0_0/index.d.ts +1 -1
  599. package/schematics/migrations/schematics/migrations/7_0_0/index.js +2 -2
  600. package/schematics/migrations/schematics/migrations/7_0_0/index.js.map +1 -1
@@ -28,70 +28,70 @@
28
28
  // map SCSS variables to expose as CSS variables
29
29
  $defaults: (
30
30
  // theme colors
31
- --theme-primary-color: mat.m2-get-color-from-palette($primary),
32
- --theme-primary-color-default-contrast: mat.m2-get-color-from-palette($primary, default-contrast),
33
- --theme-header-text-color: mat.m2-get-color-from-palette($primary, default-contrast),
34
- --adf-theme-primary-50: mat.m2-get-color-from-palette($primary, 50),
35
- --adf-theme-primary-100: mat.m2-get-color-from-palette($primary, 100),
36
- --adf-theme-primary-300: mat.m2-get-color-from-palette($primary, 300),
37
- --adf-theme-primary-900: mat.m2-get-color-from-palette($primary, 900),
38
- --theme-warn-color: mat.m2-get-color-from-palette($warn),
39
- --theme-warn-color-a700: mat.m2-get-color-from-palette($warn, A700),
40
- --theme-warn-color-default-contrast: mat.m2-get-color-from-palette($warn, default-contrast),
41
- --theme-accent-color: mat.m2-get-color-from-palette($accent),
42
- --theme-accent-color-a200: mat.m2-get-color-from-palette($accent, A200),
43
- --theme-accent-color-default-contrast: mat.m2-get-color-from-palette($accent, default-contrast),
44
- --theme-accent-500: mat.m2-get-color-from-palette($accent, 500),
45
- --adf-theme-foreground-base-color: mat.m2-get-color-from-palette($foreground, base),
46
- --adf-theme-foreground-base-color-065: mat.m2-get-color-from-palette($foreground, base, 0.65),
47
- --adf-theme-foreground-base-color-045: mat.m2-get-color-from-palette($foreground, base, 0.45),
48
- --adf-theme-foreground-disabled-text-color: mat.m2-get-color-from-palette($foreground, disabled-text),
49
- --adf-theme-foreground-divider-color: mat.m2-get-color-from-palette($foreground, divider),
50
- --adf-theme-foreground-icon-color: mat.m2-get-color-from-palette($foreground, icon),
51
- --adf-theme-foreground-icon-color-054: mat.m2-get-color-from-palette($foreground, icon, 0.54),
52
- --adf-theme-foreground-secondary-text-color: mat.m2-get-color-from-palette($foreground, secondary-text),
53
- --adf-theme-foreground-text-color: mat.m2-get-color-from-palette($foreground, text),
54
- --adf-theme-foreground-text-color-087: mat.m2-get-color-from-palette($foreground, text, 0.87),
55
- --adf-theme-foreground-text-color-075: mat.m2-get-color-from-palette($foreground, text, 0.75),
56
- --adf-theme-foreground-text-color-064: mat.m2-get-color-from-palette($foreground, text, 0.64),
57
- --adf-theme-foreground-text-color-054: mat.m2-get-color-from-palette($foreground, text, 0.54),
58
- --adf-theme-foreground-text-color-040: mat.m2-get-color-from-palette($foreground, text, 0.4),
59
- --adf-theme-foreground-text-color-027: mat.m2-get-color-from-palette($foreground, text, 0.27),
60
- --adf-theme-foreground-text-color-025: mat.m2-get-color-from-palette($foreground, text, 0.25),
61
- --adf-theme-foreground-text-color-014: mat.m2-get-color-from-palette($foreground, text, 0.14),
62
- --adf-theme-foreground-text-color-007: mat.m2-get-color-from-palette($foreground, text, 0.07),
63
- --adf-theme-background-card-color: mat.m2-get-color-from-palette($background, card),
64
- --adf-theme-background-card-color-087: mat.m2-get-color-from-palette($background, card, 0.87),
65
- --theme-background-color: mat.m2-get-color-from-palette($background, background),
66
- --adf-theme-background-dialog-color: mat.m2-get-color-from-palette($background, dialog),
67
- --adf-theme-background-hover-color: mat.m2-get-color-from-palette($background, hover),
68
- --adf-theme-background-selected-button-color: mat.m2-get-color-from-palette($background, selected-button),
69
- --adf-theme-background-status-bar-color: mat.m2-get-color-from-palette($background, status-bar),
70
- --adf-theme-background-unselected-chip-color: mat.m2-get-color-from-palette($background, unselected-chip),
31
+ --theme-primary-color: mat.get-color-from-palette($primary),
32
+ --theme-primary-color-default-contrast: mat.get-color-from-palette($primary, default-contrast),
33
+ --theme-header-text-color: mat.get-color-from-palette($primary, default-contrast),
34
+ --adf-theme-primary-50: mat.get-color-from-palette($primary, 50),
35
+ --adf-theme-primary-100: mat.get-color-from-palette($primary, 100),
36
+ --adf-theme-primary-300: mat.get-color-from-palette($primary, 300),
37
+ --adf-theme-primary-900: mat.get-color-from-palette($primary, 900),
38
+ --theme-warn-color: mat.get-color-from-palette($warn),
39
+ --theme-warn-color-a700: mat.get-color-from-palette($warn, A700),
40
+ --theme-warn-color-default-contrast: mat.get-color-from-palette($warn, default-contrast),
41
+ --theme-accent-color: mat.get-color-from-palette($accent),
42
+ --theme-accent-color-a200: mat.get-color-from-palette($accent, A200),
43
+ --theme-accent-color-default-contrast: mat.get-color-from-palette($accent, default-contrast),
44
+ --theme-accent-500: mat.get-color-from-palette($accent, 500),
45
+ --adf-theme-foreground-base-color: mat.get-color-from-palette($foreground, base),
46
+ --adf-theme-foreground-base-color-065: mat.get-color-from-palette($foreground, base, 0.65),
47
+ --adf-theme-foreground-base-color-045: mat.get-color-from-palette($foreground, base, 0.45),
48
+ --adf-theme-foreground-disabled-text-color: mat.get-color-from-palette($foreground, disabled-text),
49
+ --adf-theme-foreground-divider-color: mat.get-color-from-palette($foreground, divider),
50
+ --adf-theme-foreground-icon-color: mat.get-color-from-palette($foreground, icon),
51
+ --adf-theme-foreground-icon-color-054: mat.get-color-from-palette($foreground, icon, 0.54),
52
+ --adf-theme-foreground-secondary-text-color: mat.get-color-from-palette($foreground, secondary-text),
53
+ --adf-theme-foreground-text-color: mat.get-color-from-palette($foreground, text),
54
+ --adf-theme-foreground-text-color-087: mat.get-color-from-palette($foreground, text, 0.87),
55
+ --adf-theme-foreground-text-color-075: mat.get-color-from-palette($foreground, text, 0.75),
56
+ --adf-theme-foreground-text-color-064: mat.get-color-from-palette($foreground, text, 0.64),
57
+ --adf-theme-foreground-text-color-054: mat.get-color-from-palette($foreground, text, 0.54),
58
+ --adf-theme-foreground-text-color-040: mat.get-color-from-palette($foreground, text, 0.4),
59
+ --adf-theme-foreground-text-color-027: mat.get-color-from-palette($foreground, text, 0.27),
60
+ --adf-theme-foreground-text-color-025: mat.get-color-from-palette($foreground, text, 0.25),
61
+ --adf-theme-foreground-text-color-014: mat.get-color-from-palette($foreground, text, 0.14),
62
+ --adf-theme-foreground-text-color-007: mat.get-color-from-palette($foreground, text, 0.07),
63
+ --adf-theme-background-card-color: mat.get-color-from-palette($background, card),
64
+ --adf-theme-background-card-color-087: mat.get-color-from-palette($background, card, 0.87),
65
+ --theme-background-color: mat.get-color-from-palette($background, background),
66
+ --adf-theme-background-dialog-color: mat.get-color-from-palette($background, dialog),
67
+ --adf-theme-background-hover-color: mat.get-color-from-palette($background, hover),
68
+ --adf-theme-background-selected-button-color: mat.get-color-from-palette($background, selected-button),
69
+ --adf-theme-background-status-bar-color: mat.get-color-from-palette($background, status-bar),
70
+ --adf-theme-background-unselected-chip-color: mat.get-color-from-palette($background, unselected-chip),
71
71
  // typography
72
- --theme-font-family: mat.m2-font-family($typography),
72
+ --theme-font-family: mat.font-family($typography),
73
73
  --theme-font-weight: normal,
74
- --theme-body-1-font-size: mat.m2-font-size($typography, body-2),
75
- --theme-body-2-font-size: mat.m2-font-size($typography, subtitle-2),
76
- --theme-body-1-line-height: mat.m2-line-height($typography, body-2),
77
- --theme-display-1-font-size: mat.m2-font-size($typography, headline-4),
78
- --theme-display-3-font-size: mat.m2-font-size($typography, headline-2),
79
- --theme-display-4-font-size: mat.m2-font-size($typography, headline-1),
80
- --theme-caption-font-size: mat.m2-font-size($typography, caption),
81
- --theme-title-font-size: mat.m2-font-size($typography, headline-6),
82
- --theme-subheading-1-font-size: mat.m2-font-size($typography, body-1),
83
- --theme-subheading-2-font-size: mat.m2-font-size($typography, subtitle-1),
84
- --theme-button-font-size: mat.m2-font-size($typography, button),
85
- --theme-headline-font-size: mat.m2-font-size($typography, headline-5),
86
- --theme-headline-line-height: mat.m2-line-height($typography, headline-5),
74
+ --theme-body-1-font-size: mat.font-size($typography, body-2),
75
+ --theme-body-2-font-size: mat.font-size($typography, subtitle-2),
76
+ --theme-body-1-line-height: mat.line-height($typography, body-2),
77
+ --theme-display-1-font-size: mat.font-size($typography, headline-4),
78
+ --theme-display-3-font-size: mat.font-size($typography, headline-2),
79
+ --theme-display-4-font-size: mat.font-size($typography, headline-1),
80
+ --theme-caption-font-size: mat.font-size($typography, caption),
81
+ --theme-title-font-size: mat.font-size($typography, headline-6),
82
+ --theme-subheading-1-font-size: mat.font-size($typography, body-1),
83
+ --theme-subheading-2-font-size: mat.font-size($typography, subtitle-1),
84
+ --theme-button-font-size: mat.font-size($typography, button),
85
+ --theme-headline-font-size: mat.font-size($typography, headline-5),
86
+ --theme-headline-line-height: mat.line-height($typography, headline-5),
87
87
  --theme-adf-icon-1-font-size: map-get($custom-css-variables, 'theme-adf-icon-1-font-size'),
88
88
  --theme-adf-picture-1-font-size: map-get($custom-css-variables, 'theme-adf-picture-1-font-size'),
89
89
  --theme-adf-task-footer-font-size: map-get($custom-css-variables, 'theme-adf-task-footer-font-size'),
90
90
  --theme-adf-task-title-font-size: map-get($custom-css-variables, 'theme-adf-task-title-font-size'),
91
91
  // specific colors
92
- --adf-theme-mat-grey-color-a200: mat.m2-get-color-from-palette(mat.$m2-grey-palette, 'A200'),
93
- --adf-theme-mat-grey-color-a400: mat.m2-get-color-from-palette(mat.$m2-grey-palette, 'A400'),
94
- --adf-theme-mat-grey-color-50: mat.m2-get-color-from-palette(mat.$m2-grey-palette, 50),
92
+ --adf-theme-mat-grey-color-a200: mat.get-color-from-palette(mat.$grey-palette, A200),
93
+ --adf-theme-mat-grey-color-a400: mat.get-color-from-palette(mat.$grey-palette, A400),
94
+ --adf-theme-mat-grey-color-50: mat.get-color-from-palette(mat.$grey-palette, 50),
95
95
  // spacing
96
96
  --adf-theme-spacing: map-get($custom-css-variables, 'theme-adf-spacing')
97
97
  );
@@ -1,18 +1,18 @@
1
1
  @use '@angular/material' as mat;
2
2
 
3
- $alfresco-typography: mat.m2-define-typography-config(
3
+ $alfresco-typography: mat.define-typography-config(
4
4
  $font-family: 'Muli, Roboto, "Helvetica Neue", sans-serif',
5
- $headline-1: mat.m2-define-typography-level(112px, 112px, 300),
6
- $headline-2: mat.m2-define-typography-level(56px, 56px, 400),
7
- $headline-3: mat.m2-define-typography-level(45px, 48px, 400),
8
- $headline-4: mat.m2-define-typography-level(34px, 40px, 400),
9
- $headline-5: mat.m2-define-typography-level(24px, 32px, 400),
10
- $headline-6: mat.m2-define-typography-level(20px, 32px, 500),
11
- $subtitle-1: mat.m2-define-typography-level(16px, 28px, 400),
12
- $body-1: mat.m2-define-typography-level(15px, 24px, 400),
13
- $subtitle-2: mat.m2-define-typography-level(14px, 24px, 500),
14
- $body-2: mat.m2-define-typography-level(14px, 20px, 400),
15
- $caption: mat.m2-define-typography-level(12px, 20px, 400),
16
- $button: mat.m2-define-typography-level(14px, 14px, 500),
5
+ $headline-1: mat.define-typography-level(112px, 112px, 300),
6
+ $headline-2: mat.define-typography-level(56px, 56px, 400),
7
+ $headline-3: mat.define-typography-level(45px, 48px, 400),
8
+ $headline-4: mat.define-typography-level(34px, 40px, 400),
9
+ $headline-5: mat.define-typography-level(24px, 32px, 400),
10
+ $headline-6: mat.define-typography-level(20px, 32px, 500),
11
+ $subtitle-1: mat.define-typography-level(16px, 28px, 400),
12
+ $body-1: mat.define-typography-level(15px, 24px, 400),
13
+ $subtitle-2: mat.define-typography-level(14px, 24px, 500),
14
+ $body-2: mat.define-typography-level(14px, 20px, 400),
15
+ $caption: mat.define-typography-level(12px, 20px, 400),
16
+ $button: mat.define-typography-level(14px, 14px, 500),
17
17
  // Line-height must be unit-less fraction of the font-size.
18
18
  );
@@ -2,17 +2,16 @@
2
2
  @import '../theming';
3
3
  @import './all-theme';
4
4
  @include mat.all-component-typographies;
5
- @include mat.elevation-classes;
6
- @include mat.app-background;
5
+ @include mat.core;
7
6
 
8
- $primary: mat.m2-define-palette($alfresco-ecm-blue);
9
- $accent: mat.m2-define-palette($alfresco-accent-orange);
10
- $warn: mat.m2-define-palette($alfresco-warn);
11
- $theme: mat.m2-define-light-theme(
7
+ $primary: mat.define-palette($alfresco-ecm-blue);
8
+ $accent: mat.define-palette($alfresco-accent-orange);
9
+ $warn: mat.define-palette($alfresco-warn);
10
+ $theme: mat.define-light-theme(
12
11
  (
13
12
  color: (
14
13
  primary: $primary,
15
- accent: $accent
14
+ accent: $accent,
16
15
  ),
17
16
  typography: $alfresco-typography
18
17
  )
@@ -2,17 +2,16 @@
2
2
  @import '../theming';
3
3
  @import './all-theme';
4
4
  @include mat.all-component-typographies;
5
- @include mat.elevation-classes;
6
- @include mat.app-background;
5
+ @include mat.core;
7
6
 
8
- $primary: mat.m2-define-palette(mat.$m2-pink-palette, 700, 500, 900);
9
- $accent: mat.m2-define-palette($alfresco-accent-purple);
10
- $warn: mat.m2-define-palette($alfresco-warn);
11
- $theme: mat.m2-define-light-theme(
7
+ $primary: mat.define-palette(mat.$pink-palette, 700, 500, 900);
8
+ $accent: mat.define-palette($alfresco-accent-purple);
9
+ $warn: mat.define-palette($alfresco-warn);
10
+ $theme: mat.define-light-theme(
12
11
  (
13
12
  color: (
14
13
  primary: $primary,
15
- accent: $accent
14
+ accent: $accent,
16
15
  ),
17
16
  typography: $alfresco-typography
18
17
  )
@@ -2,17 +2,16 @@
2
2
  @import '../theming';
3
3
  @import './all-theme';
4
4
  @include mat.all-component-typographies;
5
- @include mat.elevation-classes;
6
- @include mat.app-background;
5
+ @include mat.core;
7
6
 
8
- $primary: mat.m2-define-palette($alfresco-ecm-cyan);
9
- $accent: mat.m2-define-palette($alfresco-accent-orange);
10
- $warn: mat.m2-define-palette($alfresco-warn);
11
- $theme: mat.m2-define-light-theme(
7
+ $primary: mat.define-palette($alfresco-ecm-cyan);
8
+ $accent: mat.define-palette($alfresco-accent-orange);
9
+ $warn: mat.define-palette($alfresco-warn);
10
+ $theme: mat.define-light-theme(
12
11
  (
13
12
  color: (
14
13
  primary: $primary,
15
- accent: $accent
14
+ accent: $accent,
16
15
  ),
17
16
  typography: $alfresco-typography
18
17
  )
@@ -2,17 +2,16 @@
2
2
  @import '../theming';
3
3
  @import './all-theme';
4
4
  @include mat.all-component-typographies;
5
- @include mat.elevation-classes;
6
- @include mat.app-background;
5
+ @include mat.core;
7
6
 
8
- $primary: mat.m2-define-palette($alfresco-ecm-cyan);
9
- $accent: mat.m2-define-palette($alfresco-accent-purple);
10
- $warn: mat.m2-define-palette($alfresco-warn);
11
- $theme: mat.m2-define-light-theme(
7
+ $primary: mat.define-palette($alfresco-ecm-cyan);
8
+ $accent: mat.define-palette($alfresco-accent-purple);
9
+ $warn: mat.define-palette($alfresco-warn);
10
+ $theme: mat.define-light-theme(
12
11
  (
13
12
  color: (
14
13
  primary: $primary,
15
- accent: $accent
14
+ accent: $accent,
16
15
  ),
17
16
  typography: $alfresco-typography
18
17
  )
@@ -2,17 +2,16 @@
2
2
  @import '../theming';
3
3
  @import './all-theme';
4
4
  @include mat.all-component-typographies;
5
- @include mat.elevation-classes;
6
- @include mat.app-background;
5
+ @include mat.core;
7
6
 
8
- $primary: mat.m2-define-palette($alfresco-bpm-green);
9
- $accent: mat.m2-define-palette($alfresco-accent-orange);
10
- $warn: mat.m2-define-palette($alfresco-warn);
11
- $theme: mat.m2-define-light-theme(
7
+ $primary: mat.define-palette($alfresco-bpm-green);
8
+ $accent: mat.define-palette($alfresco-accent-orange);
9
+ $warn: mat.define-palette($alfresco-warn);
10
+ $theme: mat.define-light-theme(
12
11
  (
13
12
  color: (
14
13
  primary: $primary,
15
- accent: $accent
14
+ accent: $accent,
16
15
  ),
17
16
  typography: $alfresco-typography
18
17
  )
@@ -2,17 +2,16 @@
2
2
  @import '../theming';
3
3
  @import './all-theme';
4
4
  @include mat.all-component-typographies;
5
- @include mat.elevation-classes;
6
- @include mat.app-background;
5
+ @include mat.core;
7
6
 
8
- $primary: mat.m2-define-palette($alfresco-bpm-green);
9
- $accent: mat.m2-define-palette($alfresco-accent-purple);
10
- $warn: mat.m2-define-palette($alfresco-warn);
11
- $theme: mat.m2-define-light-theme(
7
+ $primary: mat.define-palette($alfresco-bpm-green);
8
+ $accent: mat.define-palette($alfresco-accent-purple);
9
+ $warn: mat.define-palette($alfresco-warn);
10
+ $theme: mat.define-light-theme(
12
11
  (
13
12
  color: (
14
13
  primary: $primary,
15
- accent: $accent
14
+ accent: $accent,
16
15
  ),
17
16
  typography: $alfresco-typography
18
17
  )
@@ -3,17 +3,16 @@
3
3
  @import '../theming';
4
4
  @import './all-theme';
5
5
  @include mat.all-component-typographies;
6
- @include mat.elevation-classes;
7
- @include mat.app-background;
6
+ @include mat.core;
8
7
 
9
- $primary: mat.m2-define-palette(mat.$m2-indigo-palette);
10
- $accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
11
- $warn: mat.m2-define-palette($alfresco-warn);
12
- $theme: mat.m2-define-light-theme(
8
+ $primary: mat.define-palette(mat.$indigo-palette);
9
+ $accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
10
+ $warn: mat.define-palette($alfresco-warn);
11
+ $theme: mat.define-light-theme(
13
12
  (
14
13
  color: (
15
14
  primary: $primary,
16
- accent: $accent
15
+ accent: $accent,
17
16
  ),
18
17
  typography: $alfresco-typography
19
18
  )
@@ -3,17 +3,16 @@
3
3
  @import '../theming';
4
4
  @import './all-theme';
5
5
  @include mat.all-component-typographies;
6
- @include mat.elevation-classes;
7
- @include mat.app-background;
6
+ @include mat.core;
8
7
 
9
- $primary: mat.m2-define-palette(mat.$m2-pink-palette, 700, 500, 900);
10
- $accent: mat.m2-define-palette(mat.$m2-blue-grey-palette, A200, A100, A400);
11
- $warn: mat.m2-define-palette($alfresco-warn);
12
- $theme: mat.m2-define-dark-theme(
8
+ $primary: mat.define-palette(mat.$pink-palette, 700, 500, 900);
9
+ $accent: mat.define-palette(mat.$blue-grey-palette, A200, A100, A400);
10
+ $warn: mat.define-palette($alfresco-warn);
11
+ $theme: mat.define-dark-theme(
13
12
  (
14
13
  color: (
15
14
  primary: $primary,
16
- accent: $accent
15
+ accent: $accent,
17
16
  ),
18
17
  typography: $alfresco-typography
19
18
  )
@@ -3,17 +3,16 @@
3
3
  @import '../theming';
4
4
  @import './all-theme';
5
5
  @include mat.all-component-typographies;
6
- @include mat.elevation-classes;
7
- @include mat.app-background;
6
+ @include mat.core;
8
7
 
9
- $primary: mat.m2-define-palette(mat.$m2-purple-palette, 700, 500, 800);
10
- $accent: mat.m2-define-palette(mat.$m2-green-palette, A200, A100, A400);
11
- $warn: mat.m2-define-palette($alfresco-warn);
12
- $theme: mat.m2-define-dark-theme(
8
+ $primary: mat.define-palette(mat.$purple-palette, 700, 500, 800);
9
+ $accent: mat.define-palette(mat.$green-palette, A200, A100, A400);
10
+ $warn: mat.define-palette($alfresco-warn);
11
+ $theme: mat.define-dark-theme(
13
12
  (
14
13
  color: (
15
14
  primary: $primary,
16
- accent: $accent
15
+ accent: $accent,
17
16
  ),
18
17
  typography: $alfresco-typography
19
18
  )
@@ -1,14 +1,11 @@
1
- import { EventEmitter, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core';
2
- import { MatDialog } from '@angular/material/dialog';
3
- import { PDFDocumentLoadingTask, PDFDocumentProxy } from 'pdfjs-dist';
4
- import { AppConfigService } from '../../../app-config';
5
- import { RenderingQueueServices } from '../../services/rendering-queue.services';
1
+ import { EventEmitter, InjectionToken, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core';
2
+ import * as pdfjsViewer from 'pdfjs-dist/web/pdf_viewer.mjs';
3
+ import { PDFDocumentLoadingTask, PDFDocumentProxy } from 'pdfjs-dist/types/src/display/api';
6
4
  import * as i0 from "@angular/core";
7
5
  export type PdfScaleMode = 'init' | 'page-actual' | 'page-width' | 'page-height' | 'page-fit' | 'auto';
6
+ export declare const PDFJS_MODULE: InjectionToken<any>;
7
+ export declare const PDFJS_VIEWER_MODULE: InjectionToken<typeof pdfjsViewer>;
8
8
  export declare class PdfViewerComponent implements OnChanges, OnDestroy {
9
- private dialog;
10
- private renderingQueueServices;
11
- private appConfigService;
12
9
  urlFile: string;
13
10
  blobFile: Blob;
14
11
  fileName: string;
@@ -22,7 +19,9 @@ export declare class PdfViewerComponent implements OnChanges, OnDestroy {
22
19
  pagesLoaded: EventEmitter<void>;
23
20
  page: number;
24
21
  displayPage: number;
25
- totalPages: number;
22
+ _totalPages: number;
23
+ set totalPages(value: number);
24
+ get totalPages(): number;
26
25
  loadingPercent: number;
27
26
  pdfViewer: any;
28
27
  currentScaleMode: PdfScaleMode;
@@ -39,10 +38,15 @@ export declare class PdfViewerComponent implements OnChanges, OnDestroy {
39
38
  randomPdfId: string;
40
39
  documentOverflow: boolean;
41
40
  get currentScaleText(): string;
41
+ private pdfjsLib;
42
+ private pdfjsViewer;
42
43
  private eventBus;
43
44
  private pdfjsDefaultOptions;
44
45
  private pdfjsWorkerDestroy$;
45
- constructor(dialog: MatDialog, renderingQueueServices: RenderingQueueServices, appConfigService: AppConfigService);
46
+ private dialog;
47
+ private renderingQueueServices;
48
+ private appConfigService;
49
+ constructor();
46
50
  getUserScaling(): number;
47
51
  checkLimits(scaleConfig: number): number;
48
52
  ngOnChanges(changes: SimpleChanges): void;
@@ -82,4 +82,8 @@
82
82
  align-items: center;
83
83
  display: flex;
84
84
  }
85
+
86
+ &-pdf {
87
+ display: contents;
88
+ }
85
89
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alfresco/adf-core",
3
3
  "description": "Alfresco ADF core",
4
- "version": "8.1.0-14489297497",
4
+ "version": "8.1.0-14491540427",
5
5
  "author": "Hyland Software, Inc. and its affiliates",
6
6
  "repository": {
7
7
  "type": "git",
@@ -17,6 +17,8 @@
17
17
  "./breadcrumbs": {
18
18
  "sass": "./breadcrumbs/styles/_breadcrumb.theme.scss",
19
19
  "types": "./breadcrumbs/index.d.ts",
20
+ "esm2022": "./esm2022/breadcrumbs/alfresco-adf-core-breadcrumbs.mjs",
21
+ "esm": "./esm2022/breadcrumbs/alfresco-adf-core-breadcrumbs.mjs",
20
22
  "default": "./fesm2022/alfresco-adf-core-breadcrumbs.mjs"
21
23
  },
22
24
  "./package.json": {
@@ -24,22 +26,32 @@
24
26
  },
25
27
  ".": {
26
28
  "types": "./index.d.ts",
29
+ "esm2022": "./esm2022/adf-core.mjs",
30
+ "esm": "./esm2022/adf-core.mjs",
27
31
  "default": "./fesm2022/adf-core.mjs"
28
32
  },
29
33
  "./api": {
30
34
  "types": "./api/index.d.ts",
35
+ "esm2022": "./esm2022/api/alfresco-adf-core-api.mjs",
36
+ "esm": "./esm2022/api/alfresco-adf-core-api.mjs",
31
37
  "default": "./fesm2022/alfresco-adf-core-api.mjs"
32
38
  },
33
39
  "./auth": {
34
40
  "types": "./auth/index.d.ts",
41
+ "esm2022": "./esm2022/auth/alfresco-adf-core-auth.mjs",
42
+ "esm": "./esm2022/auth/alfresco-adf-core-auth.mjs",
35
43
  "default": "./fesm2022/alfresco-adf-core-auth.mjs"
36
44
  },
37
45
  "./feature-flags": {
38
46
  "types": "./feature-flags/index.d.ts",
47
+ "esm2022": "./esm2022/feature-flags/alfresco-adf-core-feature-flags.mjs",
48
+ "esm": "./esm2022/feature-flags/alfresco-adf-core-feature-flags.mjs",
39
49
  "default": "./fesm2022/alfresco-adf-core-feature-flags.mjs"
40
50
  },
41
51
  "./shell": {
42
52
  "types": "./shell/index.d.ts",
53
+ "esm2022": "./esm2022/shell/alfresco-adf-core-shell.mjs",
54
+ "esm": "./esm2022/shell/alfresco-adf-core-shell.mjs",
43
55
  "default": "./fesm2022/alfresco-adf-core-shell.mjs"
44
56
  }
45
57
  },
@@ -63,8 +75,8 @@
63
75
  "@angular/router": ">=16.0.0",
64
76
  "@mat-datetimepicker/core": ">=12.0.1",
65
77
  "@ngx-translate/core": ">=14.0.0",
66
- "@alfresco/js-api": ">=9.1.0-14489297497",
67
- "@alfresco/adf-extensions": ">=8.1.0-14489297497",
78
+ "@alfresco/js-api": ">=9.1.0-14491540427",
79
+ "@alfresco/adf-extensions": ">=8.1.0-14491540427",
68
80
  "minimatch": ">=10.0.0",
69
81
  "pdfjs-dist": ">=3.3.122",
70
82
  "ts-morph": ">=20.0.0"
@@ -20,5 +20,5 @@ import { Project } from 'ts-morph';
20
20
  * @returns Schematic rule for updating imports
21
21
  */
22
22
  export declare function updateAlfrescoApiImports(): Rule;
23
- export declare const visitor: (filePath: string, tree: Pick<Tree, "read" | "overwrite">, project: Project) => void;
23
+ export declare const visitor: (filePath: string, tree: Pick<Tree, 'read' | 'overwrite'>, project: Project) => void;
24
24
  export default updateAlfrescoApiImports;
@@ -16,8 +16,7 @@
16
16
  * limitations under the License.
17
17
  */
18
18
  Object.defineProperty(exports, "__esModule", { value: true });
19
- exports.visitor = void 0;
20
- exports.updateAlfrescoApiImports = updateAlfrescoApiImports;
19
+ exports.visitor = exports.updateAlfrescoApiImports = void 0;
21
20
  const schematics_1 = require("@angular-devkit/schematics");
22
21
  const ts_morph_1 = require("ts-morph");
23
22
  const alfrescoApiServiceMigration = {
@@ -62,6 +61,7 @@ function updateAlfrescoApiImports() {
62
61
  return tree;
63
62
  };
64
63
  }
64
+ exports.updateAlfrescoApiImports = updateAlfrescoApiImports;
65
65
  const visitor = (filePath, tree, project) => {
66
66
  if (!filePath.includes('/.git/') &&
67
67
  !filePath.includes('/node_modules/') &&
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../lib/core/schematics/migrations/7_0_0/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../lib/core/schematics/migrations/7_0_0/index.ts"],"names":[],"mappings":"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"}