@alfresco/adf-core 8.2.0-18186380146 → 8.2.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 (98) hide show
  1. package/README.md +0 -16
  2. package/api/lib/adf-http-client.service.d.ts +9 -9
  3. package/api/lib/alfresco-api/alfresco-api.utils.d.ts +1 -1
  4. package/app.config.schema.json +0 -3
  5. package/bundles/assets/adf-core/i18n/ar.json +0 -5
  6. package/bundles/assets/adf-core/i18n/cs.json +0 -5
  7. package/bundles/assets/adf-core/i18n/da.json +0 -5
  8. package/bundles/assets/adf-core/i18n/de.json +19 -9
  9. package/bundles/assets/adf-core/i18n/en.json +22 -12
  10. package/bundles/assets/adf-core/i18n/es.json +19 -9
  11. package/bundles/assets/adf-core/i18n/fi.json +0 -5
  12. package/bundles/assets/adf-core/i18n/fr.json +19 -9
  13. package/bundles/assets/adf-core/i18n/it.json +19 -9
  14. package/bundles/assets/adf-core/i18n/ja.json +0 -5
  15. package/bundles/assets/adf-core/i18n/nb.json +0 -5
  16. package/bundles/assets/adf-core/i18n/nl.json +0 -5
  17. package/bundles/assets/adf-core/i18n/pl.json +19 -9
  18. package/bundles/assets/adf-core/i18n/pt-BR.json +0 -5
  19. package/bundles/assets/adf-core/i18n/pt.json +19 -9
  20. package/bundles/assets/adf-core/i18n/ru.json +0 -5
  21. package/bundles/assets/adf-core/i18n/sv.json +0 -5
  22. package/bundles/assets/adf-core/i18n/zh-CN.json +0 -5
  23. package/custom-theme/material-theme.scss +13 -13
  24. package/custom-theme/theme/custom-palette-creator.scss +23 -25
  25. package/custom-theme/theme/custom-theme-palettes.scss +7 -7
  26. package/custom-theme/theme/theme-data.scss +13 -13
  27. package/custom-theme/theme/typography.scss +5 -5
  28. package/fesm2022/adf-core.mjs +1226 -1212
  29. package/fesm2022/adf-core.mjs.map +1 -1
  30. package/fesm2022/alfresco-adf-core-api.mjs +40 -27
  31. package/fesm2022/alfresco-adf-core-api.mjs.map +1 -1
  32. package/fesm2022/alfresco-adf-core-shell.mjs +5 -1
  33. package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
  34. package/lib/auth/basic-auth/basic-alfresco-auth.service.d.ts +2 -24
  35. package/lib/auth/interfaces/authentication-service.interface.d.ts +7 -13
  36. package/lib/auth/models/oauth-config.model.d.ts +0 -1
  37. package/lib/auth/oidc/oidc-authentication.service.d.ts +0 -20
  38. package/lib/auth/services/authentication.service.d.ts +10 -28
  39. package/lib/auth/services/base-authentication.service.d.ts +6 -14
  40. package/lib/card-view/components/card-view/card-view.component.scss +2 -1
  41. package/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.scss +59 -34
  42. package/lib/card-view/components/card-view-textitem/card-view-textitem.component.scss +8 -0
  43. package/lib/clipboard/clipboard.directive.d.ts +10 -11
  44. package/lib/clipboard/clipboard.module.d.ts +5 -4
  45. package/lib/core.module.d.ts +44 -46
  46. package/lib/datatable/components/columns-selector/columns-selector.component.d.ts +2 -1
  47. package/lib/datatable/components/columns-selector/columns-selector.component.scss +89 -76
  48. package/lib/datatable/components/datatable-cell/datatable-cell.component.d.ts +2 -0
  49. package/lib/form/components/form-base.component.d.ts +1 -1
  50. package/lib/form/components/form-field/form-field.component.d.ts +5 -0
  51. package/lib/form/components/form-renderer.component.d.ts +7 -5
  52. package/lib/form/components/form-renderer.component.scss +44 -0
  53. package/lib/form/components/widgets/amount/amount.widget.d.ts +43 -4
  54. package/lib/form/components/widgets/base-viewer/base-viewer.widget.d.ts +16 -0
  55. package/lib/form/components/widgets/button/button.widget.d.ts +12 -0
  56. package/lib/form/components/widgets/button/button.widget.scss +14 -0
  57. package/lib/form/components/widgets/core/container-column.model.d.ts +2 -0
  58. package/lib/form/components/widgets/core/container-row.model.d.ts +26 -0
  59. package/lib/form/components/widgets/core/form-field-types.d.ts +5 -0
  60. package/lib/form/components/widgets/core/form-field-validator.d.ts +4 -0
  61. package/lib/form/components/widgets/core/form-field.model.d.ts +26 -2
  62. package/lib/form/components/widgets/core/form.model.d.ts +2 -1
  63. package/lib/{datatable/components/mocks/datatable.mock.d.ts → form/components/widgets/core/handlers/form-field-rule.handler.d.ts} +5 -5
  64. package/lib/{login/components/login-dialog/login-dialog-component-data.interface.d.ts → form/components/widgets/core/repeatable-section.model.d.ts} +8 -5
  65. package/lib/form/components/widgets/index.d.ts +4 -1
  66. package/lib/form/components/widgets/reactive-widget.interface.d.ts +4 -0
  67. package/lib/form/components/widgets/repeat/repeat.widget.d.ts +9 -0
  68. package/lib/form/components/widgets/repeat/repeat.widget.scss +36 -0
  69. package/lib/form/form-base.module.d.ts +3 -2
  70. package/lib/info-drawer/info-drawer.component.scss +6 -0
  71. package/lib/login/login.module.d.ts +3 -5
  72. package/lib/login/public-api.d.ts +0 -2
  73. package/lib/mock/public-api.d.ts +0 -1
  74. package/lib/mock/translation.service.mock.d.ts +1 -0
  75. package/lib/notifications/components/notification-history.component.d.ts +9 -3
  76. package/lib/notifications/notification-history.module.d.ts +2 -4
  77. package/lib/notifications/public-api.d.ts +0 -1
  78. package/lib/snackbar-content/snackbar-content.component.scss +4 -1
  79. package/lib/styles/{material.theme.scss → _globals.scss} +1 -1
  80. package/lib/styles/_index.scss +4 -126
  81. package/lib/styles/_mat-selectors.scss +3 -0
  82. package/lib/testing/index.d.ts +0 -1
  83. package/lib/testing/noop-translate.module.d.ts +1 -0
  84. package/lib/testing/unit-testing-utils.d.ts +4 -0
  85. package/lib/translation/translation.service.d.ts +6 -0
  86. package/package.json +4 -5
  87. package/schematics/migrations/schematics/migrations/7_0_0/index.d.ts +1 -2
  88. package/schematics/migrations/schematics/migrations/7_0_0/index.js +46 -59
  89. package/schematics/migrations/schematics/migrations/7_0_0/index.js.map +1 -1
  90. package/schematics/migrations/schematics/migrations/collection.json +0 -5
  91. package/lib/clipboard/clipboard.theme.scss +0 -19
  92. package/lib/login/components/login-dialog/login-dialog.component.d.ts +0 -15
  93. package/lib/login/components/login-dialog/login-dialog.component.scss +0 -4
  94. package/lib/mock/data-column.mock.d.ts +0 -51
  95. package/lib/notifications/components/add-notification.stories.component.d.ts +0 -10
  96. package/lib/styles/_theming.scss +0 -3
  97. package/lib/styles/_typography.scss +0 -18
  98. package/lib/testing/core.story.module.d.ts +0 -9

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.