@alfresco/adf-core 8.5.0-25850979174 → 8.5.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 (681) hide show
  1. package/api/index.d.ts +3 -125
  2. package/api/lib/adf-http-client.service.d.ts +66 -0
  3. package/api/lib/alfresco-api/alfresco-api.param-encoder.d.ts +23 -0
  4. package/api/lib/alfresco-api/alfresco-api.response-error.d.ts +22 -0
  5. package/api/lib/alfresco-api/alfresco-api.utils.d.ts +33 -0
  6. package/api/lib/interfaces.d.ts +50 -0
  7. package/api/lib/types.d.ts +20 -0
  8. package/auth/authentication-interceptor/authentication.interceptor.d.ts +27 -0
  9. package/auth/authentication.d.ts +21 -0
  10. package/auth/index.d.ts +2 -36
  11. package/breadcrumbs/components/breadcrumb/breadcrumb.component.d.ts +36 -0
  12. package/breadcrumbs/components/breadcrumb-item/breadcrumb-item.component.d.ts +23 -0
  13. package/breadcrumbs/directives/breadcrumb-focus.directive.d.ts +9 -0
  14. package/breadcrumbs/index.d.ts +2 -54
  15. package/bundles/assets/adf-core/i18n/ar.json +0 -0
  16. package/bundles/assets/adf-core/i18n/cs.json +0 -0
  17. package/bundles/assets/adf-core/i18n/da.json +0 -0
  18. package/bundles/assets/adf-core/i18n/de.json +12 -3
  19. package/bundles/assets/adf-core/i18n/en-AU.json +670 -0
  20. package/bundles/assets/adf-core/i18n/en.json +9 -0
  21. package/bundles/assets/adf-core/i18n/es.json +12 -3
  22. package/bundles/assets/adf-core/i18n/fi.json +0 -0
  23. package/bundles/assets/adf-core/i18n/fr.json +12 -3
  24. package/bundles/assets/adf-core/i18n/it.json +12 -3
  25. package/bundles/assets/adf-core/i18n/ja.json +0 -0
  26. package/bundles/assets/adf-core/i18n/nb.json +0 -0
  27. package/bundles/assets/adf-core/i18n/nl.json +0 -0
  28. package/bundles/assets/adf-core/i18n/pl.json +12 -3
  29. package/bundles/assets/adf-core/i18n/pt-BR.json +0 -0
  30. package/bundles/assets/adf-core/i18n/pt.json +12 -3
  31. package/bundles/assets/adf-core/i18n/ru.json +0 -0
  32. package/bundles/assets/adf-core/i18n/sv.json +0 -0
  33. package/bundles/assets/adf-core/i18n/zh-CN.json +0 -0
  34. package/bundles/assets/images/ft_ic_archive.svg +0 -0
  35. package/bundles/assets/images/ft_ic_audio.svg +0 -0
  36. package/bundles/assets/images/ft_ic_database.svg +0 -0
  37. package/bundles/assets/images/ft_ic_document.svg +0 -0
  38. package/bundles/assets/images/ft_ic_ebook.svg +0 -0
  39. package/bundles/assets/images/ft_ic_file_link.svg +1 -0
  40. package/bundles/assets/images/ft_ic_folder.svg +0 -0
  41. package/bundles/assets/images/ft_ic_folder_empty.svg +0 -0
  42. package/bundles/assets/images/ft_ic_form.svg +0 -0
  43. package/bundles/assets/images/ft_ic_google_docs.svg +0 -0
  44. package/bundles/assets/images/ft_ic_google_drawings.svg +0 -0
  45. package/bundles/assets/images/ft_ic_google_forms.svg +0 -0
  46. package/bundles/assets/images/ft_ic_google_sheets.svg +0 -0
  47. package/bundles/assets/images/ft_ic_google_slides.svg +0 -0
  48. package/bundles/assets/images/ft_ic_miscellaneous.svg +0 -0
  49. package/bundles/assets/images/ft_ic_pdf.svg +0 -0
  50. package/bundles/assets/images/ft_ic_presentation.svg +0 -0
  51. package/bundles/assets/images/ft_ic_raster_image.svg +0 -0
  52. package/bundles/assets/images/ft_ic_spreadsheet.svg +0 -0
  53. package/bundles/assets/images/ft_ic_vector_image.svg +0 -0
  54. package/bundles/assets/images/ft_ic_video.svg +0 -0
  55. package/bundles/assets/images/ft_ic_website.svg +0 -0
  56. package/feature-flags/index.d.ts +12 -267
  57. package/feature-flags/lib/components/feature-flags-wrapper.d.ts +5 -0
  58. package/feature-flags/lib/components/feature-override-indicator.component.d.ts +9 -0
  59. package/feature-flags/lib/components/flags/flags.component.d.ts +28 -0
  60. package/feature-flags/lib/directives/features.directive.d.ts +13 -0
  61. package/feature-flags/lib/directives/not-features.directive.d.ts +13 -0
  62. package/feature-flags/lib/guards/is-feature-off.guard.d.ts +10 -0
  63. package/feature-flags/lib/guards/is-feature-on.guard.d.ts +10 -0
  64. package/feature-flags/lib/guards/is-flags-override-on.guard.d.ts +8 -0
  65. package/feature-flags/lib/interfaces/features.interface.d.ts +63 -0
  66. package/feature-flags/lib/mocks/features-service-mock.factory.d.ts +24 -0
  67. package/feature-flags/lib/providers/debug-feature-flags.provider.d.ts +46 -0
  68. package/feature-flags/lib/providers/dummy-feature-flags.provider.d.ts +34 -0
  69. package/feature-flags/lib/services/debug-features.service.d.ts +33 -0
  70. package/feature-flags/lib/services/dummy-features.service.d.ts +11 -0
  71. package/feature-flags/lib/services/flagset.parser.d.ts +28 -0
  72. package/feature-flags/lib/services/qa-features.helper.d.ts +13 -0
  73. package/feature-flags/lib/services/storage-features.service.d.ts +23 -0
  74. package/fesm2022/adf-core.mjs +3606 -3884
  75. package/fesm2022/adf-core.mjs.map +1 -1
  76. package/fesm2022/alfresco-adf-core-api.mjs +3 -3
  77. package/fesm2022/alfresco-adf-core-api.mjs.map +1 -1
  78. package/fesm2022/alfresco-adf-core-auth.mjs +3 -3
  79. package/fesm2022/alfresco-adf-core-auth.mjs.map +1 -1
  80. package/fesm2022/alfresco-adf-core-breadcrumbs.mjs +10 -10
  81. package/fesm2022/alfresco-adf-core-breadcrumbs.mjs.map +1 -1
  82. package/fesm2022/alfresco-adf-core-feature-flags.mjs +37 -37
  83. package/fesm2022/alfresco-adf-core-feature-flags.mjs.map +1 -1
  84. package/fesm2022/alfresco-adf-core-shell.mjs +8 -8
  85. package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
  86. package/fesm2022/alfresco-adf-core-viewer-pdf.mjs +1132 -0
  87. package/fesm2022/alfresco-adf-core-viewer-pdf.mjs.map +1 -0
  88. package/index.d.ts +3 -12567
  89. package/lib/about/about-extension-list/about-extension-list.component.d.ts +13 -0
  90. package/lib/about/about-license-list/about-license-list.component.d.ts +14 -0
  91. package/lib/about/about-module-list/module-list.component.d.ts +17 -0
  92. package/lib/about/about-package/package-list.component.d.ts +32 -0
  93. package/lib/about/about-package/package-list.component.scss +0 -10
  94. package/lib/about/about-panel.directive.d.ts +25 -0
  95. package/lib/about/about-repository-info/about-repository-info.component.d.ts +28 -0
  96. package/lib/about/about-repository-info/repository-info.interface.d.ts +46 -0
  97. package/lib/about/about-server-settings/about-server-settings.component.d.ts +26 -0
  98. package/lib/about/about-server-settings/about-server-settings.component.scss +0 -2
  99. package/lib/about/about-status-list/about-status-list.component.d.ts +13 -0
  100. package/lib/about/about.component.d.ts +24 -0
  101. package/lib/about/about.component.scss +0 -4
  102. package/lib/about/about.module.d.ts +26 -0
  103. package/lib/about/index.d.ts +17 -0
  104. package/lib/about/interfaces.d.ts +28 -0
  105. package/lib/about/public-api.d.ts +27 -0
  106. package/lib/app-config/app-config-storage-prefix.factory.d.ts +30 -0
  107. package/lib/app-config/app-config.loader.d.ts +30 -0
  108. package/lib/app-config/app-config.pipe.d.ts +24 -0
  109. package/lib/app-config/app-config.service.d.ts +123 -0
  110. package/lib/app-config/index.d.ts +17 -0
  111. package/lib/app-config/provide-app-config.d.ts +23 -0
  112. package/lib/app-config/public-api.d.ts +20 -0
  113. package/lib/auth/authentication-interceptor/auth-bearer.interceptor.d.ts +30 -0
  114. package/lib/auth/basic-auth/basic-alfresco-auth.service.d.ts +92 -0
  115. package/lib/auth/basic-auth/content-auth.d.ts +69 -0
  116. package/lib/auth/basic-auth/process-auth.d.ts +53 -0
  117. package/lib/auth/guard/auth-guard-bpm.service.d.ts +18 -0
  118. package/lib/auth/guard/auth-guard-ecm.service.d.ts +18 -0
  119. package/lib/auth/guard/auth-guard-sso-role.service.d.ts +18 -0
  120. package/lib/auth/guard/auth-guard.d.ts +18 -0
  121. package/lib/auth/guard/auth-guard.service.d.ts +22 -0
  122. package/lib/auth/index.d.ts +17 -0
  123. package/lib/auth/interfaces/authentication-service.interface.d.ts +41 -0
  124. package/lib/auth/interfaces/authentication.interface.d.ts +26 -0
  125. package/lib/auth/interfaces/identity-group.interface.d.ts +39 -0
  126. package/lib/auth/interfaces/identity-user.service.interface.d.ts +71 -0
  127. package/lib/auth/interfaces/openid-configuration.interface.d.ts +25 -0
  128. package/lib/auth/models/application-access.model.d.ts +20 -0
  129. package/lib/auth/models/identity-group.model.d.ts +41 -0
  130. package/lib/auth/models/identity-role.model.d.ts +26 -0
  131. package/lib/auth/models/identity-user.model.d.ts +27 -0
  132. package/lib/auth/models/oauth-config.model.d.ts +34 -0
  133. package/lib/auth/models/redirection.model.d.ts +24 -0
  134. package/lib/auth/models/user-access.model.d.ts +23 -0
  135. package/lib/auth/oidc/auth-config.d.ts +22 -0
  136. package/lib/auth/oidc/auth-config.service.d.ts +33 -0
  137. package/lib/auth/oidc/auth.module.d.ts +39 -0
  138. package/lib/auth/oidc/auth.routes.d.ts +18 -0
  139. package/lib/auth/oidc/auth.service.d.ts +62 -0
  140. package/lib/auth/oidc/oidc-auth.guard.d.ts +18 -0
  141. package/lib/auth/oidc/oidc-authentication.service.d.ts +49 -0
  142. package/lib/auth/oidc/public-api.d.ts +23 -0
  143. package/lib/auth/oidc/redirect-auth.service.d.ts +103 -0
  144. package/lib/auth/oidc/retry-login.service.d.ts +16 -0
  145. package/lib/auth/oidc/token.interceptor.d.ts +10 -0
  146. package/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.d.ts +6 -0
  147. package/lib/auth/oidc/web-crypto-jwks-validation-handler.d.ts +32 -0
  148. package/lib/auth/public-api.d.ts +43 -0
  149. package/lib/auth/services/authentication.service.d.ts +45 -0
  150. package/lib/auth/services/base-authentication.service.d.ts +71 -0
  151. package/lib/auth/services/identity-group.service.d.ts +145 -0
  152. package/lib/auth/services/identity-role.service.d.ts +50 -0
  153. package/lib/auth/services/identity-user.service.d.ts +236 -0
  154. package/lib/auth/services/jwt-helper.service.d.ts +108 -0
  155. package/lib/auth/services/oauth2.service.d.ts +20 -0
  156. package/lib/auth/services/time-sync.service.d.ts +26 -0
  157. package/lib/auth/services/user-access.service.d.ts +30 -0
  158. package/lib/avatar/avatar.component.d.ts +10 -0
  159. package/lib/avatar/avatar.component.scss +7 -9
  160. package/lib/card-view/card-view.module.d.ts +28 -0
  161. package/lib/card-view/components/base-card-view.d.ts +14 -0
  162. package/lib/card-view/components/card-view/card-view.component.d.ts +22 -0
  163. package/lib/card-view/components/card-view/card-view.component.scss +7 -1
  164. package/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.d.ts +11 -0
  165. package/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.scss +1 -2
  166. package/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.d.ts +12 -0
  167. package/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.d.ts +55 -0
  168. package/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.scss +0 -1
  169. package/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.d.ts +41 -0
  170. package/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.d.ts +33 -0
  171. package/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.d.ts +11 -0
  172. package/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.d.ts +60 -0
  173. package/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.scss +1 -6
  174. package/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.d.ts +32 -0
  175. package/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.scss +5 -14
  176. package/lib/card-view/components/card-view-textitem/card-view-textitem.component.d.ts +59 -0
  177. package/lib/card-view/components/card-view-textitem/card-view-textitem.component.scss +1 -25
  178. package/lib/card-view/components/card-view.components.d.ts +27 -0
  179. package/lib/card-view/directives/card-view-property-validator.directive.d.ts +28 -0
  180. package/lib/card-view/index.d.ts +17 -0
  181. package/lib/card-view/interfaces/base-card-view-update.interface.d.ts +28 -0
  182. package/lib/card-view/interfaces/card-view-arrayitem-properties.interface.d.ts +20 -0
  183. package/lib/card-view/interfaces/card-view-boolitem-properties.interface.d.ts +21 -0
  184. package/lib/card-view/interfaces/card-view-dateitem-properties.interface.d.ts +22 -0
  185. package/lib/card-view/interfaces/card-view-item-properties.interface.d.ts +39 -0
  186. package/lib/card-view/interfaces/card-view-item-validator.interface.d.ts +20 -0
  187. package/lib/card-view/interfaces/card-view-item.interface.d.ts +26 -0
  188. package/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.d.ts +24 -0
  189. package/lib/card-view/interfaces/card-view-selectitem-properties.interface.d.ts +28 -0
  190. package/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.d.ts +21 -0
  191. package/lib/card-view/interfaces/card-view-textitem-properties.interface.d.ts +30 -0
  192. package/lib/card-view/interfaces/card-view-update-options.interface.d.ts +19 -0
  193. package/lib/card-view/interfaces/card-view.interfaces.d.ts +29 -0
  194. package/lib/card-view/interfaces/click-notification.interface.d.ts +19 -0
  195. package/lib/card-view/interfaces/update-notification.interface.d.ts +22 -0
  196. package/lib/card-view/models/card-view-arrayitem.model.d.ts +32 -0
  197. package/lib/card-view/models/card-view-baseitem.model.d.ts +36 -0
  198. package/lib/card-view/models/card-view-boolitem.model.d.ts +27 -0
  199. package/lib/card-view/models/card-view-dateitem.model.d.ts +36 -0
  200. package/lib/card-view/models/card-view-datetimeitem.model.d.ts +24 -0
  201. package/lib/card-view/models/card-view-floatitem.model.d.ts +26 -0
  202. package/lib/card-view/models/card-view-intitem.model.d.ts +26 -0
  203. package/lib/card-view/models/card-view-keyvaluepairs.model.d.ts +25 -0
  204. package/lib/card-view/models/card-view-longitem.model.d.ts +26 -0
  205. package/lib/card-view/models/card-view-mapitem.model.d.ts +24 -0
  206. package/lib/card-view/models/card-view-selectitem.model.d.ts +31 -0
  207. package/lib/card-view/models/card-view-textitem.model.d.ts +30 -0
  208. package/lib/card-view/models/card-view.models.d.ts +28 -0
  209. package/lib/card-view/public-api.d.ts +23 -0
  210. package/lib/card-view/services/card-item-types.service.d.ts +27 -0
  211. package/lib/card-view/services/card-view-update.service.d.ts +24 -0
  212. package/lib/card-view/services/card-view.services.d.ts +18 -0
  213. package/lib/card-view/validators/card-view-item-float.validator.d.ts +22 -0
  214. package/lib/card-view/validators/card-view-item-int.validator.d.ts +23 -0
  215. package/lib/card-view/validators/card-view-item-length.validator.d.ts +29 -0
  216. package/lib/card-view/validators/card-view-item-long.validator.d.ts +23 -0
  217. package/lib/card-view/validators/card-view-item-match.validator.d.ts +31 -0
  218. package/lib/card-view/validators/card-view-item-minmax.validator.d.ts +30 -0
  219. package/lib/card-view/validators/card-view-item-only-positive-int.validator.d.ts +22 -0
  220. package/lib/card-view/validators/card-view-item-only-positive-long.validator.d.ts +22 -0
  221. package/lib/card-view/validators/card-view.validators.d.ts +25 -0
  222. package/lib/card-view/validators/validators.map.d.ts +25 -0
  223. package/lib/clipboard/clipboard.directive.d.ts +37 -0
  224. package/lib/clipboard/clipboard.module.d.ts +11 -0
  225. package/lib/clipboard/clipboard.service.d.ts +29 -0
  226. package/lib/clipboard/index.d.ts +17 -0
  227. package/lib/clipboard/public-api.d.ts +19 -0
  228. package/lib/comments/comment-list/comment-list.component.d.ts +30 -0
  229. package/lib/comments/comment-list/comment-list.component.scss +5 -7
  230. package/lib/comments/comment-list/comment-list.module.d.ts +8 -0
  231. package/lib/comments/comment-list/index.d.ts +17 -0
  232. package/lib/comments/comment-list/public-api.d.ts +18 -0
  233. package/lib/comments/comments.component.d.ts +49 -0
  234. package/lib/comments/comments.component.scss +1 -1
  235. package/lib/comments/comments.module.d.ts +8 -0
  236. package/lib/comments/index.d.ts +17 -0
  237. package/lib/comments/interfaces/comments-service.interface.d.ts +23 -0
  238. package/lib/comments/interfaces/comments.token.d.ts +18 -0
  239. package/lib/comments/public-api.d.ts +21 -0
  240. package/lib/common/index.d.ts +33 -0
  241. package/lib/common/interface/search-component.interface.d.ts +42 -0
  242. package/lib/common/mock/app-config.service.mock.d.ts +8 -0
  243. package/lib/common/models/default-languages.model.d.ts +18 -0
  244. package/lib/common/models/log-levels.model.d.ts +25 -0
  245. package/lib/common/services/cookie.service.d.ts +38 -0
  246. package/lib/common/services/download.service.d.ts +35 -0
  247. package/lib/common/services/dynamic-component-mapper.service.d.ts +63 -0
  248. package/lib/common/services/highlight-transform.service.d.ts +19 -0
  249. package/lib/common/services/language-item.interface.d.ts +22 -0
  250. package/lib/common/services/log.service.d.ts +85 -0
  251. package/lib/common/services/page-title.service.d.ts +19 -0
  252. package/lib/common/services/sort-by-category.service.d.ts +20 -0
  253. package/lib/common/services/storage.service.d.ts +49 -0
  254. package/lib/common/services/thumbnail.service.d.ts +20 -0
  255. package/lib/common/services/url.service.d.ts +14 -0
  256. package/lib/common/services/user-preferences.service.d.ts +175 -0
  257. package/lib/common/utils/date-fns-adapter.d.ts +60 -0
  258. package/lib/common/utils/date-fns-utils.d.ts +84 -0
  259. package/lib/common/utils/datetime-fns-adapter.d.ts +27 -0
  260. package/lib/common/utils/file-utils.d.ts +25 -0
  261. package/lib/common/utils/index.d.ts +17 -0
  262. package/lib/common/utils/moment-date-adapter.d.ts +43 -0
  263. package/lib/common/utils/moment-date-formats.model.d.ts +18 -0
  264. package/lib/common/utils/object-utils.d.ts +33 -0
  265. package/lib/common/utils/public-api.d.ts +24 -0
  266. package/lib/common/utils/string-utils.d.ts +22 -0
  267. package/lib/context-menu/animations.d.ts +18 -0
  268. package/lib/context-menu/context-menu-list.component.d.ts +18 -0
  269. package/lib/context-menu/context-menu-overlay.d.ts +22 -0
  270. package/lib/context-menu/context-menu-overlay.service.d.ts +14 -0
  271. package/lib/context-menu/context-menu.directive.d.ts +11 -0
  272. package/lib/context-menu/context-menu.module.d.ts +12 -0
  273. package/lib/context-menu/context-menu.tokens.d.ts +19 -0
  274. package/lib/context-menu/index.d.ts +17 -0
  275. package/lib/context-menu/interfaces.d.ts +36 -0
  276. package/lib/context-menu/public-api.d.ts +20 -0
  277. package/lib/core.module.d.ts +154 -0
  278. package/lib/datatable/components/amount-cell/amount-cell.component.d.ts +12 -0
  279. package/lib/datatable/components/boolean-cell/boolean-cell.component.d.ts +9 -0
  280. package/lib/datatable/components/columns-selector/columns-search-filter.pipe.d.ts +26 -0
  281. package/lib/datatable/components/columns-selector/columns-selector.component.d.ts +42 -0
  282. package/lib/datatable/components/columns-selector/columns-selector.component.scss +7 -7
  283. package/lib/datatable/components/data-cell.event.d.ts +28 -0
  284. package/lib/datatable/components/data-row-action.event.d.ts +27 -0
  285. package/lib/datatable/components/datatable/datatable.component.d.ts +272 -0
  286. package/lib/datatable/components/datatable/datatable.component.scss +31 -44
  287. package/lib/datatable/components/datatable-cell/datatable-cell.component.d.ts +66 -0
  288. package/lib/datatable/components/datatable-row/datatable-row.component.d.ts +34 -0
  289. package/lib/datatable/components/date-cell/date-cell.component.d.ts +43 -0
  290. package/lib/datatable/components/empty-list/empty-list.component.d.ts +17 -0
  291. package/lib/datatable/components/filesize-cell/filesize-cell.component.d.ts +6 -0
  292. package/lib/datatable/components/icon-cell/icon-cell.component.d.ts +9 -0
  293. package/lib/datatable/components/json-cell/json-cell.component.d.ts +12 -0
  294. package/lib/datatable/components/location-cell/location-cell.component.d.ts +9 -0
  295. package/lib/datatable/components/number-cell/number-cell.component.d.ts +11 -0
  296. package/lib/datatable/data/data-column.model.d.ts +60 -0
  297. package/lib/datatable/data/data-row-event.model.d.ts +22 -0
  298. package/lib/datatable/data/data-row-update.model.d.ts +20 -0
  299. package/lib/datatable/data/data-row.model.d.ts +28 -0
  300. package/lib/datatable/data/data-sorting.model.d.ts +22 -0
  301. package/lib/datatable/data/data-table.schema.d.ts +40 -0
  302. package/lib/datatable/data/datatable-adapter.d.ts +33 -0
  303. package/lib/datatable/data/object-datacolumn.model.d.ts +46 -0
  304. package/lib/datatable/data/object-datarow.model.d.ts +27 -0
  305. package/lib/datatable/data/object-datatable-adapter.d.ts +43 -0
  306. package/lib/datatable/data-column/data-column-header.component.d.ts +25 -0
  307. package/lib/datatable/data-column/data-column-list.component.d.ts +24 -0
  308. package/lib/datatable/data-column/data-column.component.d.ts +80 -0
  309. package/lib/datatable/data-column/index.d.ts +17 -0
  310. package/lib/datatable/data-column/public-api.d.ts +19 -0
  311. package/lib/datatable/datatable.module.d.ts +62 -0
  312. package/lib/datatable/directives/custom-empty-content-template.directive.d.ts +10 -0
  313. package/lib/datatable/directives/custom-loading-template.directive.d.ts +5 -0
  314. package/lib/datatable/directives/custom-no-permission-template.directive.d.ts +10 -0
  315. package/lib/datatable/directives/drop-zone.directive.d.ts +36 -0
  316. package/lib/datatable/directives/header-filter-template.directive.d.ts +25 -0
  317. package/lib/datatable/directives/loading-template.directive.d.ts +28 -0
  318. package/lib/datatable/directives/main-data-table-action-template.directive.d.ts +25 -0
  319. package/lib/datatable/directives/no-content-template.directive.d.ts +28 -0
  320. package/lib/datatable/directives/no-permission-template.directive.d.ts +28 -0
  321. package/lib/datatable/directives/resizable/resizable.directive.d.ts +65 -0
  322. package/lib/datatable/directives/resizable/resize-handle.directive.d.ts +39 -0
  323. package/lib/datatable/directives/resizable/types.d.ts +36 -0
  324. package/lib/datatable/index.d.ts +17 -0
  325. package/lib/datatable/public-api.d.ts +54 -0
  326. package/lib/datatable/services/datatable.service.d.ts +11 -0
  327. package/lib/dialogs/confirm-dialog/confirm.dialog.d.ts +23 -0
  328. package/lib/dialogs/confirm-dialog/confirm.dialog.module.d.ts +8 -0
  329. package/lib/dialogs/dialog/dialog-data.interface.d.ts +43 -0
  330. package/lib/dialogs/dialog/dialog.component.d.ts +40 -0
  331. package/lib/dialogs/dialog/dialog.component.scss +2 -2
  332. package/lib/dialogs/dialog/dialog.model.d.ts +22 -0
  333. package/lib/dialogs/dialog/index.d.ts +19 -0
  334. package/lib/dialogs/edit-json/edit-json.dialog.d.ts +32 -0
  335. package/lib/dialogs/edit-json/edit-json.dialog.module.d.ts +7 -0
  336. package/lib/dialogs/index.d.ts +17 -0
  337. package/lib/dialogs/public-api.d.ts +24 -0
  338. package/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component.d.ts +42 -0
  339. package/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component.scss +11 -8
  340. package/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.model.d.ts +23 -0
  341. package/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.module.d.ts +8 -0
  342. package/lib/dialogs/unsaved-changes-dialog/unsaved-changes.guard.d.ts +22 -0
  343. package/lib/directives/directive.module.d.ts +20 -0
  344. package/lib/directives/highlight.directive.d.ts +33 -0
  345. package/lib/directives/index.d.ts +17 -0
  346. package/lib/directives/infinite-select-scroll.directive.d.ts +32 -0
  347. package/lib/directives/logout.directive.d.ts +35 -0
  348. package/lib/directives/public-api.d.ts +23 -0
  349. package/lib/directives/tooltip-card/tooltip-card.component.d.ts +11 -0
  350. package/lib/directives/tooltip-card/tooltip-card.component.scss +4 -9
  351. package/lib/directives/tooltip-card/tooltip-card.directive.d.ts +40 -0
  352. package/lib/directives/upload.directive.d.ts +71 -0
  353. package/lib/dynamic-chip-list/chip.d.ts +20 -0
  354. package/lib/dynamic-chip-list/dynamic-chip-list.component.d.ts +68 -0
  355. package/lib/dynamic-chip-list/dynamic-chip-list.component.scss +0 -4
  356. package/lib/dynamic-chip-list/dynamic-chip-list.module.d.ts +8 -0
  357. package/lib/dynamic-chip-list/index.d.ts +17 -0
  358. package/lib/dynamic-chip-list/public-api.d.ts +19 -0
  359. package/lib/events/base-ui.event.d.ts +22 -0
  360. package/lib/events/base.event.d.ts +23 -0
  361. package/lib/events/index.d.ts +17 -0
  362. package/lib/events/public-api.d.ts +18 -0
  363. package/lib/form/components/form-base.component.d.ts +103 -0
  364. package/lib/form/components/form-custom-button.directive.d.ts +5 -0
  365. package/lib/form/components/form-field/form-field.component.d.ts +51 -0
  366. package/lib/form/components/form-renderer.component.d.ts +51 -0
  367. package/lib/form/components/form-renderer.component.scss +53 -28
  368. package/lib/form/components/form-section/form-section.component.d.ts +28 -0
  369. package/lib/form/components/helpers/buttons-visibility.d.ts +24 -0
  370. package/lib/form/components/helpers/column-width.d.ts +23 -0
  371. package/lib/form/components/inplace-form-input/inplace-form-input.component.d.ts +7 -0
  372. package/lib/form/components/inplace-form-input/inplace-form-input.component.scss +0 -19
  373. package/lib/form/components/middlewares/decimal-middleware.service.d.ts +10 -0
  374. package/lib/form/components/middlewares/middleware.d.ts +23 -0
  375. package/lib/form/components/widgets/amount/amount.widget.d.ts +40 -0
  376. package/lib/form/components/widgets/amount/amount.widget.scss +2 -4
  377. package/lib/form/components/widgets/base-display-text/base-display-text.widget.d.ts +48 -0
  378. package/lib/form/components/widgets/base-viewer/base-viewer.widget.d.ts +24 -0
  379. package/lib/form/components/widgets/button/button.widget.d.ts +9 -0
  380. package/lib/form/components/widgets/checkbox/checkbox.widget.d.ts +6 -0
  381. package/lib/form/components/widgets/core/container-column.model.d.ts +26 -0
  382. package/lib/form/components/widgets/core/container-row.model.d.ts +26 -0
  383. package/lib/form/components/widgets/core/container.model.d.ts +32 -0
  384. package/lib/form/components/widgets/core/content-link.model.d.ts +41 -0
  385. package/lib/form/components/widgets/core/custom-validation-message.token.d.ts +19 -0
  386. package/lib/form/components/widgets/core/displayable-cm-properties.model.d.ts +23 -0
  387. package/lib/form/components/widgets/core/error-message.model.d.ts +23 -0
  388. package/lib/form/components/widgets/core/external-content-link.d.ts +31 -0
  389. package/lib/form/components/widgets/core/external-content.d.ts +22 -0
  390. package/lib/form/components/widgets/core/form-field-file-source.d.ts +30 -0
  391. package/lib/form/components/widgets/core/form-field-metadata.d.ts +36 -0
  392. package/lib/form/components/widgets/core/form-field-option.d.ts +20 -0
  393. package/lib/form/components/widgets/core/form-field-rule.d.ts +25 -0
  394. package/lib/form/components/widgets/core/form-field-selected-folder.d.ts +24 -0
  395. package/lib/form/components/widgets/core/form-field-templates.d.ts +19 -0
  396. package/lib/form/components/widgets/core/form-field-types.d.ts +65 -0
  397. package/lib/form/components/widgets/core/form-field-utils.d.ts +17 -0
  398. package/lib/form/components/widgets/core/form-field-validator.d.ts +77 -0
  399. package/lib/form/components/widgets/core/form-field-variable-options.d.ts +22 -0
  400. package/lib/form/components/widgets/core/form-field.model.d.ts +159 -0
  401. package/lib/form/components/widgets/core/form-outcome-event.model.d.ts +25 -0
  402. package/lib/form/components/widgets/core/form-outcome.model.d.ts +29 -0
  403. package/lib/form/components/widgets/core/form-values.d.ts +19 -0
  404. package/lib/form/components/widgets/core/form-variable.model.d.ts +22 -0
  405. package/lib/form/components/widgets/core/form-widget.model.d.ts +31 -0
  406. package/lib/form/components/widgets/core/form.model.d.ts +187 -0
  407. package/lib/form/components/widgets/core/formattable-text.widget.d.ts +34 -0
  408. package/lib/form/components/widgets/core/group.model.d.ts +23 -0
  409. package/lib/form/components/widgets/core/handlers/form-field-rule.handler.d.ts +21 -0
  410. package/lib/form/components/widgets/core/handlers/form-field-visibility-condition.handler.d.ts +21 -0
  411. package/lib/form/components/widgets/core/index.d.ts +49 -0
  412. package/lib/form/components/widgets/core/predefined-theme.d.ts +18 -0
  413. package/lib/form/components/widgets/core/process-form-model.interface.d.ts +19 -0
  414. package/lib/form/components/widgets/core/process-variable.model.d.ts +35 -0
  415. package/lib/form/components/widgets/core/repeatable-section.model.d.ts +24 -0
  416. package/lib/form/components/widgets/core/tab.model.d.ts +26 -0
  417. package/lib/form/components/widgets/core/theme.model.d.ts +70 -0
  418. package/lib/form/components/widgets/core/upload-widget-content-link.model.d.ts +25 -0
  419. package/lib/form/components/widgets/core/widget-schema.model.d.ts +34 -0
  420. package/lib/form/components/widgets/date/date.widget.d.ts +30 -0
  421. package/lib/form/components/widgets/date-time/date-time.widget.d.ts +29 -0
  422. package/lib/form/components/widgets/date-time/date-time.widget.scss +1 -1
  423. package/lib/form/components/widgets/decimal/decimal.component.d.ts +6 -0
  424. package/lib/form/components/widgets/display-text/display-text.schema.d.ts +19 -0
  425. package/lib/form/components/widgets/display-text/display-text.widget.d.ts +9 -0
  426. package/lib/form/components/widgets/display-text/display-text.widget.scss +0 -3
  427. package/lib/form/components/widgets/display-text/index.d.ts +18 -0
  428. package/lib/form/components/widgets/error/error.component.d.ts +13 -0
  429. package/lib/form/components/widgets/error/error.component.scss +15 -3
  430. package/lib/form/components/widgets/form.theme.scss +6 -42
  431. package/lib/form/components/widgets/header/header.schema.d.ts +19 -0
  432. package/lib/form/components/widgets/header/header.widget.d.ts +8 -0
  433. package/lib/form/components/widgets/header/header.widget.scss +2 -4
  434. package/lib/form/components/widgets/header/index.d.ts +18 -0
  435. package/lib/form/components/widgets/hyperlink/hyperlink.widget.d.ts +31 -0
  436. package/lib/form/components/widgets/hyperlink/hyperlink.widget.scss +1 -1
  437. package/lib/form/components/widgets/index.d.ts +56 -0
  438. package/lib/form/components/widgets/json/json.widget.d.ts +8 -0
  439. package/lib/form/components/widgets/multiline-text/multiline-text.widget.d.ts +6 -0
  440. package/lib/form/components/widgets/multiline-text/multiline-text.widget.scss +1 -1
  441. package/lib/form/components/widgets/number/number.widget.d.ts +11 -0
  442. package/lib/form/components/widgets/reactive-widget.interface.d.ts +25 -0
  443. package/lib/form/components/widgets/repeat/repeat.widget.d.ts +9 -0
  444. package/lib/form/components/widgets/repeat/repeat.widget.scss +6 -8
  445. package/lib/form/components/widgets/text/text-mask.component.d.ts +53 -0
  446. package/lib/form/components/widgets/text/text.widget.d.ts +22 -0
  447. package/lib/form/components/widgets/unknown/unknown.widget.d.ts +6 -0
  448. package/lib/form/components/widgets/widget.component.d.ts +49 -0
  449. package/lib/form/events/form-error.event.d.ts +22 -0
  450. package/lib/form/events/form-field.event.d.ts +22 -0
  451. package/lib/form/events/form-rules.event.d.ts +23 -0
  452. package/lib/form/events/form-spinner.event.d.ts +25 -0
  453. package/lib/form/events/form.event.d.ts +23 -0
  454. package/lib/form/events/index.d.ts +23 -0
  455. package/lib/form/events/validate-form-field.event.d.ts +22 -0
  456. package/lib/form/events/validate-form.event.d.ts +23 -0
  457. package/lib/form/form-base.module.d.ts +28 -0
  458. package/lib/form/index.d.ts +17 -0
  459. package/lib/form/models/form-rules.model.d.ts +43 -0
  460. package/lib/form/models/task-process-variable.model.d.ts +21 -0
  461. package/lib/form/models/widget-visibility.model.d.ts +41 -0
  462. package/lib/form/pipes/field-style.pipe.d.ts +26 -0
  463. package/lib/form/pipes/index.d.ts +17 -0
  464. package/lib/form/public-api.d.ts +37 -0
  465. package/lib/form/services/form-expression.service.d.ts +22 -0
  466. package/lib/form/services/form-field-value-formatter.service.d.ts +19 -0
  467. package/lib/form/services/form-field-value-formatter.token.d.ts +19 -0
  468. package/lib/form/services/form-rendering.service.d.ts +27 -0
  469. package/lib/form/services/form-validation-service.interface.d.ts +25 -0
  470. package/lib/form/services/form.service.d.ts +70 -0
  471. package/lib/form/services/widget-visibility.service.d.ts +37 -0
  472. package/lib/header/header.component.d.ts +16 -0
  473. package/lib/header/header.component.scss +12 -12
  474. package/lib/header/index.d.ts +17 -0
  475. package/lib/header/navbar/navbar-item.component.d.ts +11 -0
  476. package/lib/header/navbar/navbar-item.component.scss +3 -11
  477. package/lib/header/navbar/navbar.component.d.ts +7 -0
  478. package/lib/header/public-api.d.ts +19 -0
  479. package/lib/icon/icon-alias-map.token.d.ts +19 -0
  480. package/lib/icon/icon-alias-map.type.d.ts +17 -0
  481. package/lib/icon/icon.component.d.ts +40 -0
  482. package/lib/icon/icon.directive.d.ts +32 -0
  483. package/lib/icon/icon.module.d.ts +8 -0
  484. package/lib/icon/index.d.ts +17 -0
  485. package/lib/icon/public-api.d.ts +21 -0
  486. package/lib/identity-user-info/identity-user-info.component.d.ts +30 -0
  487. package/lib/identity-user-info/identity-user-info.component.scss +4 -4
  488. package/lib/identity-user-info/identity-user-info.module.d.ts +8 -0
  489. package/lib/identity-user-info/index.d.ts +17 -0
  490. package/lib/identity-user-info/public-api.d.ts +18 -0
  491. package/lib/info-drawer/index.d.ts +17 -0
  492. package/lib/info-drawer/info-drawer-layout.component.d.ts +22 -0
  493. package/lib/info-drawer/info-drawer-layout.component.scss +1 -11
  494. package/lib/info-drawer/info-drawer.component.d.ts +46 -0
  495. package/lib/info-drawer/info-drawer.component.scss +2 -22
  496. package/lib/info-drawer/info-drawer.module.d.ts +12 -0
  497. package/lib/info-drawer/public-api.d.ts +19 -0
  498. package/lib/language-menu/index.d.ts +17 -0
  499. package/lib/language-menu/language-menu.component.d.ts +32 -0
  500. package/lib/language-menu/language-menu.module.d.ts +12 -0
  501. package/lib/language-menu/language-picker.component.d.ts +30 -0
  502. package/lib/language-menu/public-api.d.ts +20 -0
  503. package/lib/language-menu/service/language.service.d.ts +29 -0
  504. package/lib/language-menu/service/language.service.interface.d.ts +23 -0
  505. package/lib/layout/components/header/header.component.d.ts +53 -0
  506. package/lib/layout/components/header/header.component.scss +3 -3
  507. package/lib/layout/components/layout-container/layout-container.component.d.ts +57 -0
  508. package/lib/layout/components/layout-container/layout-container.component.scss +3 -3
  509. package/lib/layout/components/sidebar-action/sidebar-action-menu.component.d.ts +27 -0
  510. package/lib/layout/components/sidebar-action/sidebar-action-menu.component.scss +2 -7
  511. package/lib/layout/components/sidenav-layout/sidenav-layout.component.d.ts +72 -0
  512. package/lib/layout/components/sidenav-layout/sidenav-layout.component.scss +0 -1
  513. package/lib/layout/directives/sidenav-layout-content.directive.d.ts +23 -0
  514. package/lib/layout/directives/sidenav-layout-header.directive.d.ts +23 -0
  515. package/lib/layout/directives/sidenav-layout-navigation.directive.d.ts +23 -0
  516. package/lib/layout/index.d.ts +17 -0
  517. package/lib/layout/layout.module.d.ts +22 -0
  518. package/lib/layout/public-api.d.ts +24 -0
  519. package/lib/login/components/login/login.component.d.ts +148 -0
  520. package/lib/login/components/login/login.component.scss +15 -64
  521. package/lib/login/components/login-dialog-panel/login-dialog-panel.component.d.ts +30 -0
  522. package/lib/login/directives/login-footer.directive.d.ts +25 -0
  523. package/lib/login/directives/login-header.directive.d.ts +25 -0
  524. package/lib/login/index.d.ts +17 -0
  525. package/lib/login/login.module.d.ts +16 -0
  526. package/lib/login/models/login-error.event.d.ts +20 -0
  527. package/lib/login/models/login-submit.event.d.ts +24 -0
  528. package/lib/login/models/login-success.event.d.ts +22 -0
  529. package/lib/login/public-api.d.ts +24 -0
  530. package/lib/material.module.d.ts +36 -0
  531. package/lib/mock/cookie.service.mock.d.ts +10 -0
  532. package/lib/mock/event.mock.d.ts +21 -0
  533. package/lib/mock/form/form.service.mock.d.ts +17 -0
  534. package/lib/mock/form/widget-visibility.service.mock.d.ts +27 -0
  535. package/lib/mock/index.d.ts +17 -0
  536. package/lib/mock/public-api.d.ts +21 -0
  537. package/lib/mock/translation.service.mock.d.ts +22 -0
  538. package/lib/models/comment.model.d.ts +28 -0
  539. package/lib/models/component.model.d.ts +22 -0
  540. package/lib/models/general-user.model.d.ts +31 -0
  541. package/lib/models/index.d.ts +17 -0
  542. package/lib/models/pagination.model.d.ts +25 -0
  543. package/lib/models/path.model.d.ts +28 -0
  544. package/lib/models/public-api.d.ts +21 -0
  545. package/lib/models/request-pagination.model.d.ts +22 -0
  546. package/lib/notifications/components/notification-history.component.d.ts +61 -0
  547. package/lib/notifications/components/notification-history.component.scss +3 -17
  548. package/lib/notifications/helpers/notification.factory.d.ts +21 -0
  549. package/lib/notifications/index.d.ts +17 -0
  550. package/lib/notifications/models/notification.model.d.ts +39 -0
  551. package/lib/notifications/notification-history.module.d.ts +10 -0
  552. package/lib/notifications/public-api.d.ts +21 -0
  553. package/lib/notifications/services/notification.service.d.ts +73 -0
  554. package/lib/pagination/index.d.ts +17 -0
  555. package/lib/pagination/infinite-pagination.component.d.ts +45 -0
  556. package/lib/pagination/paginated-component.interface.d.ts +23 -0
  557. package/lib/pagination/pagination-component.interface.d.ts +22 -0
  558. package/lib/pagination/pagination.component.d.ts +71 -0
  559. package/lib/pagination/pagination.component.scss +1 -7
  560. package/lib/pagination/pagination.module.d.ts +12 -0
  561. package/lib/pagination/public-api.d.ts +21 -0
  562. package/lib/pipes/date-time.pipe.d.ts +23 -0
  563. package/lib/pipes/decimal-number.pipe.d.ts +24 -0
  564. package/lib/pipes/file-size.pipe.d.ts +24 -0
  565. package/lib/pipes/file-type.pipe.d.ts +23 -0
  566. package/lib/pipes/format-space.pipe.d.ts +23 -0
  567. package/lib/pipes/full-name.pipe.d.ts +26 -0
  568. package/lib/pipes/index.d.ts +17 -0
  569. package/lib/pipes/localized-date.pipe.d.ts +15 -0
  570. package/lib/pipes/pipe.module.d.ts +33 -0
  571. package/lib/pipes/public-api.d.ts +28 -0
  572. package/lib/pipes/text-highlight.pipe.d.ts +24 -0
  573. package/lib/pipes/time-ago.pipe.d.ts +32 -0
  574. package/lib/pipes/truncate.pipe.d.ts +23 -0
  575. package/lib/pipes/user-initial.pipe.d.ts +29 -0
  576. package/lib/pipes/user-like.interface.d.ts +22 -0
  577. package/lib/search-text/animations.d.ts +18 -0
  578. package/lib/search-text/index.d.ts +17 -0
  579. package/lib/search-text/models/search-text-input.model.d.ts +33 -0
  580. package/lib/search-text/public-api.d.ts +21 -0
  581. package/lib/search-text/search-text-input.component.d.ts +92 -0
  582. package/lib/search-text/search-text-input.component.scss +1 -6
  583. package/lib/search-text/search-text-input.module.d.ts +12 -0
  584. package/lib/search-text/search-trigger.directive.d.ts +41 -0
  585. package/lib/snackbar-content/index.d.ts +17 -0
  586. package/lib/snackbar-content/public-api.d.ts +19 -0
  587. package/lib/snackbar-content/snack-bar-data.d.ts +25 -0
  588. package/lib/snackbar-content/snackbar-content.component.d.ts +11 -0
  589. package/lib/snackbar-content/snackbar-content.module.d.ts +8 -0
  590. package/lib/stories/core-story.providers.d.ts +23 -0
  591. package/lib/stories/index.d.ts +17 -0
  592. package/lib/styles/_index.scss +0 -1
  593. package/lib/styles/_mixins.scss +1 -1
  594. package/lib/templates/empty-content/empty-content.component.d.ts +11 -0
  595. package/lib/templates/empty-content/empty-content.component.scss +1 -3
  596. package/lib/templates/error-content/error-content.component.d.ts +33 -0
  597. package/lib/templates/error-content/error-content.component.scss +2 -3
  598. package/lib/templates/index.d.ts +17 -0
  599. package/lib/templates/public-api.d.ts +19 -0
  600. package/lib/templates/template.module.d.ts +15 -0
  601. package/lib/testing/app-config-testing.d.ts +24 -0
  602. package/lib/testing/index.d.ts +20 -0
  603. package/lib/testing/noop-auth.module.d.ts +44 -0
  604. package/lib/testing/noop-translate.module.d.ts +24 -0
  605. package/lib/testing/unit-testing-utils.d.ts +153 -0
  606. package/lib/toolbar/index.d.ts +17 -0
  607. package/lib/toolbar/public-api.d.ts +20 -0
  608. package/lib/toolbar/toolbar-divider.component.d.ts +5 -0
  609. package/lib/toolbar/toolbar-title.component.d.ts +5 -0
  610. package/lib/toolbar/toolbar.component.d.ts +7 -0
  611. package/lib/toolbar/toolbar.component.scss +4 -5
  612. package/lib/toolbar/toolbar.module.d.ts +14 -0
  613. package/lib/translation/index.d.ts +17 -0
  614. package/lib/translation/provide-i18n.d.ts +44 -0
  615. package/lib/translation/public-api.d.ts +19 -0
  616. package/lib/translation/translate-loader.service.d.ts +23 -0
  617. package/lib/translation/translation.service.d.ts +101 -0
  618. package/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.d.ts +9 -0
  619. package/lib/viewer/components/img-viewer/img-viewer.component.d.ts +47 -0
  620. package/lib/viewer/components/img-viewer/img-viewer.component.scss +3 -14
  621. package/lib/viewer/components/media-player/media-player.component.d.ts +18 -0
  622. package/lib/viewer/components/txt-viewer/txt-viewer.component.d.ts +15 -0
  623. package/lib/viewer/components/txt-viewer/txt-viewer.component.scss +1 -1
  624. package/lib/viewer/components/unknown-format/unknown-format.component.d.ts +7 -0
  625. package/lib/viewer/components/unknown-format/unknown-format.component.scss +0 -1
  626. package/lib/viewer/components/viewer-more-actions.component.d.ts +5 -0
  627. package/lib/viewer/components/viewer-open-with.component.d.ts +5 -0
  628. package/lib/viewer/components/viewer-render/viewer-render.component.d.ts +114 -0
  629. package/lib/viewer/components/viewer-render/viewer-render.component.scss +2 -2
  630. package/lib/viewer/components/viewer-sidebar.component.d.ts +7 -0
  631. package/lib/viewer/components/viewer-toolbar-actions.component.d.ts +5 -0
  632. package/lib/viewer/components/viewer-toolbar-custom-actions.component.d.ts +5 -0
  633. package/lib/viewer/components/viewer-toolbar.component.d.ts +5 -0
  634. package/lib/viewer/components/viewer.component.d.ts +181 -0
  635. package/lib/viewer/components/viewer.component.scss +19 -21
  636. package/lib/viewer/directives/viewer-extension.directive.d.ts +40 -0
  637. package/lib/viewer/index.d.ts +17 -0
  638. package/lib/viewer/models/download-prompt.actions.d.ts +21 -0
  639. package/lib/viewer/models/viewer.model.d.ts +27 -0
  640. package/lib/viewer/public-api.d.ts +36 -0
  641. package/lib/viewer/services/view-util.service.d.ts +43 -0
  642. package/lib/viewer/tokens/pdf-viewer-ref.d.ts +28 -0
  643. package/lib/viewer/tokens/pdf-viewer.token.d.ts +19 -0
  644. package/lib/viewer/viewer.module.d.ts +36 -0
  645. package/package.json +19 -12
  646. package/public-api.d.ts +55 -0
  647. package/schematics/migrations/schematics/migrations/9_0_0/index.d.ts +22 -0
  648. package/schematics/migrations/schematics/migrations/9_0_0/index.js +231 -0
  649. package/schematics/migrations/schematics/migrations/9_0_0/index.js.map +1 -0
  650. package/schematics/migrations/schematics/migrations/collection.json +5 -0
  651. package/shell/index.d.ts +5 -155
  652. package/shell/lib/components/shell/shell.component.d.ts +44 -0
  653. package/shell/lib/providers.d.ts +36 -0
  654. package/shell/lib/services/shell-app.service.d.ts +33 -0
  655. package/shell/lib/shell.module.d.ts +27 -0
  656. package/shell/lib/shell.routes.d.ts +30 -0
  657. package/viewer/pdf/README.md +77 -0
  658. package/viewer/pdf/index.d.ts +22 -0
  659. package/viewer/pdf/lib/components/pdf-viewer/pdf-viewer.component.d.ts +188 -0
  660. package/viewer/pdf/lib/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog.d.ts +14 -0
  661. package/viewer/pdf/lib/components/pdf-viewer-thumb/pdf-viewer-thumb.component.d.ts +31 -0
  662. package/viewer/pdf/lib/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component.d.ts +41 -0
  663. package/viewer/pdf/lib/provide-pdf-viewer.d.ts +19 -0
  664. package/viewer/pdf/lib/services/rendering-queue.services.d.ts +85 -0
  665. package/breadcrumbs/styles/_breadcrumb.theme.scss +0 -33
  666. package/custom-theme/README.md +0 -3
  667. package/custom-theme/material-theme.scss +0 -36
  668. package/custom-theme/theme/custom-background-color.scss +0 -27
  669. package/custom-theme/theme/custom-palette-creator.scss +0 -154
  670. package/custom-theme/theme/custom-text-color.scss +0 -17
  671. package/custom-theme/theme/custom-theme-palettes.scss +0 -27
  672. package/custom-theme/theme/default-colors.scss +0 -26
  673. package/custom-theme/theme/theme-configuration.scss.tpl +0 -20
  674. package/custom-theme/theme/theme-data.scss +0 -18
  675. package/custom-theme/theme/typography.scss +0 -78
  676. package/custom-theme/variables/font-family.scss +0 -1
  677. package/lib/styles/_globals.scss +0 -90
  678. package/lib/viewer/components/pdf-viewer/pdf-viewer-host.component.scss +0 -236
  679. package/lib/viewer/components/pdf-viewer/pdf-viewer.component.scss +0 -145
  680. package/lib/viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog.scss +0 -15
  681. package/lib/viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component.scss +0 -30
package/api/index.d.ts CHANGED
@@ -1,6 +1,3 @@
1
- import { HttpClient, EventEmitterEvents, Emitters as Emitters$1, EventEmitterInstance } from '@alfresco/js-api';
2
- import * as i0 from '@angular/core';
3
-
4
1
  /*!
5
2
  * @license
6
3
  * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -17,125 +14,6 @@ import * as i0 from '@angular/core';
17
14
  * See the License for the specific language governing permissions and
18
15
  * limitations under the License.
19
16
  */
20
- interface Dictionary<T> {
21
- [key: string]: T;
22
- }
23
- type Constructor<T> = new (...args: any[]) => T;
24
-
25
- /*!
26
- * @license
27
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
28
- *
29
- * Licensed under the Apache License, Version 2.0 (the "License");
30
- * you may not use this file except in compliance with the License.
31
- * You may obtain a copy of the License at
32
- *
33
- * http://www.apache.org/licenses/LICENSE-2.0
34
- *
35
- * Unless required by applicable law or agreed to in writing, software
36
- * distributed under the License is distributed on an "AS IS" BASIS,
37
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38
- * See the License for the specific language governing permissions and
39
- * limitations under the License.
40
- */
41
- interface SecurityOptions {
42
- readonly withCredentials?: boolean;
43
- readonly authentications?: Authentication;
44
- readonly defaultHeaders?: Record<string, string>;
45
- }
46
- interface Oauth2 {
47
- refreshToken?: string;
48
- accessToken?: string;
49
- }
50
- interface BasicAuth {
51
- username?: string;
52
- password?: string;
53
- ticket?: string;
54
- }
55
- interface Authentication {
56
- basicAuth?: BasicAuth;
57
- oauth2?: Oauth2;
58
- cookie?: string;
59
- type?: string;
60
- }
61
- interface RequestOptions {
62
- httpMethod?: string;
63
- pathParams?: any;
64
- queryParams?: any;
65
- headerParams?: any;
66
- formParams?: any;
67
- bodyParam?: any;
68
- returnType?: any;
69
- responseType?: string;
70
- accepts?: string[];
71
- contentTypes?: string[];
72
- readonly accept?: string;
73
- readonly contentType?: string;
74
- }
75
-
76
- interface Emitters {
77
- readonly eventEmitter: EventEmitterInstance;
78
- readonly apiClientEmitter: EventEmitterInstance;
79
- }
80
- declare class AdfHttpClient implements HttpClient {
81
- private readonly httpClient;
82
- private readonly eventEmitter;
83
- _disableCsrf: boolean;
84
- get disableCsrf(): boolean;
85
- set disableCsrf(disableCsrf: boolean);
86
- private defaultSecurityOptions;
87
- on(event: EventEmitterEvents, fn: (...args: any[]) => void, context?: any): this;
88
- off(event: EventEmitterEvents, fn?: (...args: any[]) => void, context?: any): this;
89
- once(event: EventEmitterEvents, fn: (...args: any[]) => void, context?: any): this;
90
- emit(event: EventEmitterEvents, ...args: any[]): boolean;
91
- setDefaultSecurityOption(options: any): void;
92
- merge(...objects: any[]): any;
93
- request<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: Emitters$1): Promise<T>;
94
- post<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: Emitters$1): Promise<T>;
95
- put<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: Emitters$1): Promise<T>;
96
- get<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: Emitters$1): Promise<T>;
97
- delete<T = void>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: Emitters$1): Promise<T>;
98
- private addPromiseListeners;
99
- private getEventEmitters;
100
- private requestWithLegacyEventEmitters;
101
- private static getBody;
102
- private getHeaders;
103
- /**
104
- * Chooses a content type from the given array, with JSON preferred; i.e. return JSON if included, otherwise return the first.
105
- *
106
- * @param contentTypes a contentType array
107
- * @returns The chosen content type, preferring JSON.
108
- */
109
- private static jsonPreferredMime;
110
- /**
111
- * Checks whether the given content type represents JSON.<br>
112
- * JSON content type examples:<br>
113
- * <ul>
114
- * <li>application/json</li>
115
- * <li>application/json; charset=UTF8</li>
116
- * <li>APPLICATION/JSON</li>
117
- * </ul>
118
- *
119
- * @param contentType The MIME content type to check.
120
- * @returns <code>true</code> if <code>contentType</code> represents JSON, otherwise <code>false</code>.
121
- */
122
- private static isJsonMime;
123
- private setCsrfToken;
124
- private createCSRFToken;
125
- private static getSecureRandomValue;
126
- private static getResponseType;
127
- /**
128
- * Deserialize an HTTP response body into a value of the specified type.
129
- *
130
- * @param response response object
131
- * @param returnType return type
132
- * @returns deserialized object
133
- */
134
- private static deserialize;
135
- private static deserializeBlobResponse;
136
- static ɵfac: i0.ɵɵFactoryDeclaration<AdfHttpClient, never>;
137
- static ɵprov: i0.ɵɵInjectableDeclaration<AdfHttpClient>;
138
- }
139
-
140
- export { AdfHttpClient };
141
- export type { Authentication, BasicAuth, Constructor, Dictionary, Emitters, Oauth2, RequestOptions, SecurityOptions };
17
+ export * from './lib/types';
18
+ export * from './lib/adf-http-client.service';
19
+ export * from './lib/interfaces';
@@ -0,0 +1,66 @@
1
+ import { Emitters as JsApiEmitters, HttpClient as JsApiHttpClient, EventEmitterInstance, EventEmitterEvents } from '@alfresco/js-api';
2
+ import { RequestOptions, SecurityOptions } from './interfaces';
3
+ import * as i0 from "@angular/core";
4
+ export interface Emitters {
5
+ readonly eventEmitter: EventEmitterInstance;
6
+ readonly apiClientEmitter: EventEmitterInstance;
7
+ }
8
+ export declare class AdfHttpClient implements JsApiHttpClient {
9
+ private readonly httpClient;
10
+ private readonly eventEmitter;
11
+ _disableCsrf: boolean;
12
+ get disableCsrf(): boolean;
13
+ set disableCsrf(disableCsrf: boolean);
14
+ private defaultSecurityOptions;
15
+ on(event: EventEmitterEvents, fn: (...args: any[]) => void, context?: any): this;
16
+ off(event: EventEmitterEvents, fn?: (...args: any[]) => void, context?: any): this;
17
+ once(event: EventEmitterEvents, fn: (...args: any[]) => void, context?: any): this;
18
+ emit(event: EventEmitterEvents, ...args: any[]): boolean;
19
+ setDefaultSecurityOption(options: any): void;
20
+ merge(...objects: any[]): any;
21
+ request<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: JsApiEmitters): Promise<T>;
22
+ post<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: JsApiEmitters): Promise<T>;
23
+ put<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: JsApiEmitters): Promise<T>;
24
+ get<T = any>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: JsApiEmitters): Promise<T>;
25
+ delete<T = void>(url: string, options?: RequestOptions, sc?: SecurityOptions, emitters?: JsApiEmitters): Promise<T>;
26
+ private addPromiseListeners;
27
+ private getEventEmitters;
28
+ private requestWithLegacyEventEmitters;
29
+ private static getBody;
30
+ private getHeaders;
31
+ /**
32
+ * Chooses a content type from the given array, with JSON preferred; i.e. return JSON if included, otherwise return the first.
33
+ *
34
+ * @param contentTypes a contentType array
35
+ * @returns The chosen content type, preferring JSON.
36
+ */
37
+ private static jsonPreferredMime;
38
+ /**
39
+ * Checks whether the given content type represents JSON.<br>
40
+ * JSON content type examples:<br>
41
+ * <ul>
42
+ * <li>application/json</li>
43
+ * <li>application/json; charset=UTF8</li>
44
+ * <li>APPLICATION/JSON</li>
45
+ * </ul>
46
+ *
47
+ * @param contentType The MIME content type to check.
48
+ * @returns <code>true</code> if <code>contentType</code> represents JSON, otherwise <code>false</code>.
49
+ */
50
+ private static isJsonMime;
51
+ private setCsrfToken;
52
+ private createCSRFToken;
53
+ private static getSecureRandomValue;
54
+ private static getResponseType;
55
+ /**
56
+ * Deserialize an HTTP response body into a value of the specified type.
57
+ *
58
+ * @param response response object
59
+ * @param returnType return type
60
+ * @returns deserialized object
61
+ */
62
+ private static deserialize;
63
+ private static deserializeBlobResponse;
64
+ static ɵfac: i0.ɵɵFactoryDeclaration<AdfHttpClient, never>;
65
+ static ɵprov: i0.ɵɵInjectableDeclaration<AdfHttpClient>;
66
+ }
@@ -0,0 +1,23 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { HttpParameterCodec } from '@angular/common/http';
18
+ export declare class AlfrescoApiParamEncoder implements HttpParameterCodec {
19
+ encodeKey(key: string): string;
20
+ encodeValue(value: string): string;
21
+ decodeKey(key: string): string;
22
+ decodeValue(value: string): string;
23
+ }
@@ -0,0 +1,22 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ export declare class AlfrescoApiResponseError extends Error {
18
+ status: number;
19
+ response: Record<string, any>;
20
+ name: string;
21
+ constructor(msg: string, status: number, response: Record<string, any>);
22
+ }
@@ -0,0 +1,33 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { HttpEvent, HttpUploadProgressEvent, HttpResponse, HttpParams, HttpParameterCodec } from '@angular/common/http';
18
+ import { Constructor } from '../types';
19
+ export declare const isHttpUploadProgressEvent: <T>(val: HttpEvent<T>) => val is HttpUploadProgressEvent;
20
+ export declare const isHttpResponseEvent: <T>(val: HttpEvent<T>) => val is HttpResponse<T>;
21
+ export declare const isDate: (value: unknown) => value is Date;
22
+ export declare const isXML: (value: unknown) => boolean;
23
+ export declare const isBlobResponse: (response: HttpResponse<any>, returnType: Constructor<unknown> | "blob") => response is HttpResponse<Blob>;
24
+ export declare const isConstructor: <T = unknown>(value: any) => value is Constructor<T>;
25
+ export declare const getQueryParamsWithCustomEncoder: (obj: Record<string | number, unknown>, encoder?: HttpParameterCodec) => HttpParams | undefined;
26
+ /**
27
+ * Removes null and undefined values from an object.
28
+ *
29
+ * @param obj object to process
30
+ * @returns object with updated values
31
+ */
32
+ export declare const removeNilValues: (obj: Record<string | number, unknown>) => {};
33
+ export declare const convertObjectToFormData: (formParams: Record<string | number, string | Blob | Array<string | Blob>>) => FormData;
@@ -0,0 +1,50 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ export interface SecurityOptions {
18
+ readonly withCredentials?: boolean;
19
+ readonly authentications?: Authentication;
20
+ readonly defaultHeaders?: Record<string, string>;
21
+ }
22
+ export interface Oauth2 {
23
+ refreshToken?: string;
24
+ accessToken?: string;
25
+ }
26
+ export interface BasicAuth {
27
+ username?: string;
28
+ password?: string;
29
+ ticket?: string;
30
+ }
31
+ export interface Authentication {
32
+ basicAuth?: BasicAuth;
33
+ oauth2?: Oauth2;
34
+ cookie?: string;
35
+ type?: string;
36
+ }
37
+ export interface RequestOptions {
38
+ httpMethod?: string;
39
+ pathParams?: any;
40
+ queryParams?: any;
41
+ headerParams?: any;
42
+ formParams?: any;
43
+ bodyParam?: any;
44
+ returnType?: any;
45
+ responseType?: string;
46
+ accepts?: string[];
47
+ contentTypes?: string[];
48
+ readonly accept?: string;
49
+ readonly contentType?: string;
50
+ }
@@ -0,0 +1,20 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ export interface Dictionary<T> {
18
+ [key: string]: T;
19
+ }
20
+ export type Constructor<T> = new (...args: any[]) => T;
@@ -0,0 +1,27 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { HttpContextToken, HttpHandler, HttpHeaderResponse, HttpInterceptor, HttpProgressEvent, HttpRequest, HttpResponse, HttpSentEvent, HttpUserEvent } from '@angular/common/http';
18
+ import { Observable } from 'rxjs';
19
+ import * as i0 from "@angular/core";
20
+ export declare const SHOULD_ADD_AUTH_TOKEN: HttpContextToken<boolean>;
21
+ export declare class AuthenticationInterceptor implements HttpInterceptor {
22
+ private readonly authService;
23
+ intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpSentEvent | HttpHeaderResponse | HttpProgressEvent | HttpResponse<any> | HttpUserEvent<any>>;
24
+ private appendJsonContentType;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationInterceptor, never>;
26
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationInterceptor>;
27
+ }
@@ -0,0 +1,21 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { HttpHeaders } from '@angular/common/http';
18
+ import { Observable } from 'rxjs';
19
+ export declare abstract class Authentication {
20
+ abstract addTokenToHeader(requestUrl: string, headers: HttpHeaders): Observable<HttpHeaders>;
21
+ }
package/auth/index.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- import { HttpHeaders, HttpInterceptor, HttpRequest, HttpHandler, HttpSentEvent, HttpHeaderResponse, HttpProgressEvent, HttpResponse, HttpUserEvent, HttpContextToken } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from '@angular/core';
4
-
5
1
  /*!
6
2
  * @license
7
3
  * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -18,35 +14,5 @@ import * as i0 from '@angular/core';
18
14
  * See the License for the specific language governing permissions and
19
15
  * limitations under the License.
20
16
  */
21
-
22
- declare abstract class Authentication {
23
- abstract addTokenToHeader(requestUrl: string, headers: HttpHeaders): Observable<HttpHeaders>;
24
- }
25
-
26
- /*!
27
- * @license
28
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
29
- *
30
- * Licensed under the Apache License, Version 2.0 (the "License");
31
- * you may not use this file except in compliance with the License.
32
- * You may obtain a copy of the License at
33
- *
34
- * http://www.apache.org/licenses/LICENSE-2.0
35
- *
36
- * Unless required by applicable law or agreed to in writing, software
37
- * distributed under the License is distributed on an "AS IS" BASIS,
38
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39
- * See the License for the specific language governing permissions and
40
- * limitations under the License.
41
- */
42
-
43
- declare const SHOULD_ADD_AUTH_TOKEN: HttpContextToken<boolean>;
44
- declare class AuthenticationInterceptor implements HttpInterceptor {
45
- private readonly authService;
46
- intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpSentEvent | HttpHeaderResponse | HttpProgressEvent | HttpResponse<any> | HttpUserEvent<any>>;
47
- private appendJsonContentType;
48
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationInterceptor, never>;
49
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationInterceptor>;
50
- }
51
-
52
- export { Authentication, AuthenticationInterceptor, SHOULD_ADD_AUTH_TOKEN };
17
+ export * from './authentication';
18
+ export * from './authentication-interceptor/authentication.interceptor';
@@ -0,0 +1,36 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { AfterContentInit, EventEmitter, OnChanges, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
18
+ import { BreadcrumbFocusDirective } from '../../directives/breadcrumb-focus.directive';
19
+ import { BreadcrumbItemComponent } from '../breadcrumb-item/breadcrumb-item.component';
20
+ import * as i0 from "@angular/core";
21
+ export declare class BreadcrumbComponent implements AfterContentInit, OnChanges {
22
+ private readonly cdr;
23
+ private _breadcrumbTemplateRefs;
24
+ compact: boolean;
25
+ compactChange: EventEmitter<boolean>;
26
+ breadcrumbFocusItems: QueryList<BreadcrumbFocusDirective>;
27
+ breadcrumbItems: QueryList<BreadcrumbItemComponent>;
28
+ selectedBreadcrumbs: Array<TemplateRef<unknown>>;
29
+ ngAfterContentInit(): void;
30
+ ngOnChanges(changes: SimpleChanges): void;
31
+ toggleCompact(compact?: boolean): void;
32
+ private setBreadcrumbs;
33
+ private mapToTemplateRefs;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "adf-breadcrumb", never, { "compact": { "alias": "compact"; "required": false; }; }, { "compactChange": "compactChange"; }, ["breadcrumbItems"], never, true, never>;
36
+ }
@@ -0,0 +1,23 @@
1
+ /*!
2
+ * @license
3
+ * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { TemplateRef } from '@angular/core';
18
+ import * as i0 from "@angular/core";
19
+ export declare class BreadcrumbItemComponent {
20
+ templateRef: TemplateRef<any>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemComponent, "adf-breadcrumb-item", never, {}, {}, never, ["*"], true, never>;
23
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ /** @internal */
3
+ export declare class BreadcrumbFocusDirective {
4
+ private readonly elementRef;
5
+ focusOnFirstFocusableElement(): void;
6
+ private getFocusableElements;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbFocusDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbFocusDirective, "[adf-breadcrumb-focus]", never, {}, {}, never, never, true, never>;
9
+ }
@@ -1,15 +1,3 @@
1
- import * as i0 from '@angular/core';
2
- import { TemplateRef, AfterContentInit, OnChanges, EventEmitter, QueryList, SimpleChanges } from '@angular/core';
3
-
4
- /** @internal */
5
- declare class BreadcrumbFocusDirective {
6
- private readonly elementRef;
7
- focusOnFirstFocusableElement(): void;
8
- private getFocusableElements;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbFocusDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbFocusDirective, "[adf-breadcrumb-focus]", never, {}, {}, never, never, true, never>;
11
- }
12
-
13
1
  /*!
14
2
  * @license
15
3
  * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -26,45 +14,5 @@ declare class BreadcrumbFocusDirective {
26
14
  * See the License for the specific language governing permissions and
27
15
  * limitations under the License.
28
16
  */
29
-
30
- declare class BreadcrumbItemComponent {
31
- templateRef: TemplateRef<any>;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemComponent, "adf-breadcrumb-item", never, {}, {}, never, ["*"], true, never>;
34
- }
35
-
36
- /*!
37
- * @license
38
- * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
39
- *
40
- * Licensed under the Apache License, Version 2.0 (the "License");
41
- * you may not use this file except in compliance with the License.
42
- * You may obtain a copy of the License at
43
- *
44
- * http://www.apache.org/licenses/LICENSE-2.0
45
- *
46
- * Unless required by applicable law or agreed to in writing, software
47
- * distributed under the License is distributed on an "AS IS" BASIS,
48
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49
- * See the License for the specific language governing permissions and
50
- * limitations under the License.
51
- */
52
-
53
- declare class BreadcrumbComponent implements AfterContentInit, OnChanges {
54
- private readonly cdr;
55
- private _breadcrumbTemplateRefs;
56
- compact: boolean;
57
- compactChange: EventEmitter<boolean>;
58
- breadcrumbFocusItems: QueryList<BreadcrumbFocusDirective>;
59
- breadcrumbItems: QueryList<BreadcrumbItemComponent>;
60
- selectedBreadcrumbs: Array<TemplateRef<unknown>>;
61
- ngAfterContentInit(): void;
62
- ngOnChanges(changes: SimpleChanges): void;
63
- toggleCompact(compact?: boolean): void;
64
- private setBreadcrumbs;
65
- private mapToTemplateRefs;
66
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
67
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "adf-breadcrumb", never, { "compact": { "alias": "compact"; "required": false; }; }, { "compactChange": "compactChange"; }, ["breadcrumbItems"], never, true, never>;
68
- }
69
-
70
- export { BreadcrumbComponent, BreadcrumbItemComponent };
17
+ export { BreadcrumbComponent } from './components/breadcrumb/breadcrumb.component';
18
+ export { BreadcrumbItemComponent } from './components/breadcrumb-item/breadcrumb-item.component';
File without changes
File without changes
File without changes
@@ -62,6 +62,7 @@
62
62
  "INVALID_DECIMAL_NUMBER": "Dezimalzahlformat verwenden",
63
63
  "INVALID_DECIMAL_PRECISION": "Falscher Dezimalwert, nach dem Dezimalpunkt sollte ein Maximum von {{precision}} Ziffern angegeben werden.",
64
64
  "INVALID_DATE": "Verwenden Sie ein anderes Datumsformat",
65
+ "INVALID_DATE_FORMAT": "Ungültiges Datumsformat.",
65
66
  "INVALID_VALUE": "Geben Sie einen anderen Wert ein",
66
67
  "NOT_GREATER_THAN": "Darf nicht größer als {{ maxValue }} sein",
67
68
  "NOT_LESS_THAN": "Darf nicht kleiner als {{ minValue }} sein",
@@ -86,6 +87,12 @@
86
87
  "NO_LABEL": "Abbrechen"
87
88
  }
88
89
  },
90
+ "BUTTON": {
91
+ "PREVIOUS_TAB": "Vorherige",
92
+ "PREVIOUS_TAB_TITLE": "Zur vorherigen Registerkarte wechseln",
93
+ "NEXT_TAB": "Weiter",
94
+ "NEXT_TAB_TITLE": "Zur nächsten Registerkarte wechseln"
95
+ },
89
96
  "FIELD_STYLE": {
90
97
  "FONT_SIZE": "Schriftgröße",
91
98
  "FONT_WEIGHT": "Schriftgewicht",
@@ -248,6 +255,8 @@
248
255
  "VALUE": "Wert"
249
256
  },
250
257
  "NONE": "Keine",
258
+ "SELECTED_VALUES": "Ausgewählte Werte",
259
+ "REMOVE": "{{ value }} entfernen",
251
260
  "VALIDATORS": {
252
261
  "FLOAT_VALIDATION_ERROR": "Verwenden Sie ein Zahlenformat",
253
262
  "INT_VALIDATION_ERROR": "Verwenden Sie ein Ganzzahlenformat",
@@ -398,8 +407,8 @@
398
407
  "ACTIONS": "Aktionen",
399
408
  "SELECT_ALL": "Alle auswählen",
400
409
  "SELECT_FILE": "Datei auswählen",
401
- "SELECTED": "Selected",
402
- "ROW_SELECTION": "Press Space to toggle row selection",
410
+ "SELECTED": "Ausgewählt",
411
+ "ROW_SELECTION": "Leertaste drücken, um Zeilenauswahl umzuschalten",
403
412
  "SORT_ASCENDING": "Aufsteigend",
404
413
  "SORT_DESCENDING": "Absteigend",
405
414
  "SORT_NONE": "Keine",
@@ -410,7 +419,7 @@
410
419
  "ICON_DISABLED": "Deaktiviert",
411
420
  "ROW_OPTION_BUTTON": "Aktionen",
412
421
  "DRAG": "Drag Button",
413
- "DRAGGABLE": "Draggable",
422
+ "DRAGGABLE": "Verschiebbar",
414
423
  "EMPTY_HEADER": "Leerer Header",
415
424
  "RESIZE_COLUMN": "Ändern Sie die Größe der {{ column }} Spalte. Verwenden Sie Pfeiltasten, um die Breite anzupassen, Umschalt für größere Schritte.",
416
425
  "COLUMN_WIDTH_CHANGED": "{{ column }} Spaltenbreite: {{ width }} Pixel"