nuxeo-development-framework 3.8.2 → 3.8.4

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 (131) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +31221 -30524
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/components/notifications/components/base-list-notfications.component.js +156 -0
  4. package/esm2015/lib/components/notifications/components/base-notifications.component.js +31 -0
  5. package/esm2015/lib/components/notifications/components/index.js +7 -0
  6. package/esm2015/lib/components/notifications/components/notification-item/get-icon.pipe.js +44 -0
  7. package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +41 -129
  8. package/esm2015/lib/components/notifications/components/notification-source-select/notification-source-select.component.js +38 -0
  9. package/esm2015/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.js +26 -0
  10. package/esm2015/lib/components/notifications/components/notifications-button/notifications-button.component.js +77 -165
  11. package/esm2015/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.js +63 -0
  12. package/esm2015/lib/components/notifications/components/notifications-list/notifications-list.component.js +53 -175
  13. package/esm2015/lib/components/notifications/components/notifications-list/options.js +24 -0
  14. package/esm2015/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.js +43 -0
  15. package/esm2015/lib/components/notifications/components/notifications-settings/check-if-subscribed.pipe.js +28 -0
  16. package/esm2015/lib/components/notifications/components/notifications-settings/notifications-settings.adapter.js +30 -0
  17. package/esm2015/lib/components/notifications/components/notifications-settings/notifications-settings.component.js +163 -0
  18. package/esm2015/lib/components/notifications/components/notifications-sidebar/notifications-sidebar-content.js +28 -0
  19. package/esm2015/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.js +158 -0
  20. package/esm2015/lib/components/notifications/constants/date.js +8 -0
  21. package/esm2015/lib/components/notifications/constants/index.js +5 -0
  22. package/esm2015/lib/components/notifications/constants/pagination.js +5 -0
  23. package/esm2015/lib/components/notifications/constants/panel.js +5 -0
  24. package/esm2015/lib/components/notifications/constants/status.js +10 -0
  25. package/esm2015/lib/components/notifications/containers/index.js +3 -0
  26. package/esm2015/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.js +98 -0
  27. package/esm2015/lib/components/notifications/containers/notifications-list-container/options.js +18 -0
  28. package/esm2015/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.js +67 -0
  29. package/esm2015/lib/components/notifications/directives/button.directive.js +28 -0
  30. package/esm2015/lib/components/notifications/directives/index.js +3 -0
  31. package/esm2015/lib/components/notifications/directives/notification.directive.js +28 -0
  32. package/esm2015/lib/components/notifications/index.js +2 -0
  33. package/esm2015/lib/components/notifications/models/common.js +2 -0
  34. package/esm2015/lib/components/notifications/models/index.js +11 -0
  35. package/esm2015/lib/components/notifications/models/notification-definition.model.js +2 -0
  36. package/esm2015/lib/components/notifications/models/notification-options.js +2 -0
  37. package/esm2015/lib/components/notifications/models/notification-setting.presenter.js +2 -0
  38. package/esm2015/lib/components/notifications/models/notification-subscription.model.js +2 -0
  39. package/esm2015/lib/components/notifications/models/notification.model.js +2 -0
  40. package/esm2015/lib/components/notifications/models/notifications-list-options.js +3 -0
  41. package/esm2015/lib/components/notifications/models/paging-response.model.js +2 -0
  42. package/esm2015/lib/components/notifications/models/params.model.js +2 -0
  43. package/esm2015/lib/components/notifications/models/vocabularies.js +2 -0
  44. package/esm2015/lib/components/notifications/notifications.module.js +80 -46
  45. package/esm2015/lib/components/notifications/public-api.js +9 -0
  46. package/esm2015/lib/components/notifications/services/index.js +2 -0
  47. package/esm2015/lib/components/notifications/services/listener.service.js +19 -0
  48. package/esm2015/lib/components/notifications/services/notifications.service.js +156 -0
  49. package/esm2015/lib/components/notifications/services/params.service.js +31 -0
  50. package/esm2015/lib/components/notifications/services/response.service.js +65 -0
  51. package/esm2015/lib/components/notifications/utilities/index.js +2 -0
  52. package/esm2015/lib/components/notifications/utilities/response.adapter.js +12 -0
  53. package/esm2015/lib/components/{notifications → toasts}/components/notification-toast/notification-toast.component.js +7 -11
  54. package/esm2015/lib/components/toasts/index.js +2 -0
  55. package/esm2015/lib/components/toasts/public-api.js +3 -0
  56. package/esm2015/lib/components/toasts/toasts.module.js +19 -0
  57. package/esm2015/lib/core/models/api-response.model.js +2 -0
  58. package/esm2015/lib/core/models/automation-response.model.js +2 -0
  59. package/esm2015/lib/core/models/base-response.models.js +2 -0
  60. package/esm2015/lib/core/models/index.js +5 -0
  61. package/esm2015/lib/core/services/nuxeo/nuxeo.service.js +3 -3
  62. package/esm2015/lib/core/services/translation/translation.service.js +3 -3
  63. package/esm2015/public-api.js +136 -142
  64. package/fesm2015/nuxeo-development-framework.js +23227 -22604
  65. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  66. package/lib/components/notifications/components/base-list-notfications.component.d.ts +42 -0
  67. package/lib/components/notifications/components/base-notifications.component.d.ts +17 -0
  68. package/lib/components/notifications/components/index.d.ts +6 -0
  69. package/lib/components/notifications/components/notification-item/get-icon.pipe.d.ts +8 -0
  70. package/lib/components/notifications/components/notification-item/notification-item.component.d.ts +21 -22
  71. package/lib/components/notifications/components/notification-source-select/notification-source-select.component.d.ts +15 -0
  72. package/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.d.ts +8 -0
  73. package/lib/components/notifications/components/notifications-button/notifications-button.component.d.ts +31 -30
  74. package/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.d.ts +22 -0
  75. package/lib/components/notifications/components/notifications-list/notifications-list.component.d.ts +15 -54
  76. package/lib/components/notifications/components/notifications-list/options.d.ts +2 -0
  77. package/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.d.ts +15 -0
  78. package/lib/components/notifications/components/notifications-settings/check-if-subscribed.pipe.d.ts +8 -0
  79. package/lib/components/notifications/components/notifications-settings/notifications-settings.adapter.d.ts +3 -0
  80. package/lib/components/notifications/components/notifications-settings/notifications-settings.component.d.ts +40 -0
  81. package/lib/components/notifications/components/notifications-sidebar/notifications-sidebar-content.d.ts +9 -0
  82. package/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.d.ts +43 -0
  83. package/lib/components/notifications/constants/date.d.ts +7 -0
  84. package/lib/components/notifications/constants/index.d.ts +4 -0
  85. package/lib/components/notifications/constants/pagination.d.ts +4 -0
  86. package/lib/components/notifications/constants/panel.d.ts +4 -0
  87. package/lib/components/notifications/constants/status.d.ts +9 -0
  88. package/lib/components/notifications/containers/index.d.ts +2 -0
  89. package/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.d.ts +27 -0
  90. package/lib/components/notifications/containers/notifications-list-container/options.d.ts +2 -0
  91. package/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.d.ts +22 -0
  92. package/lib/components/notifications/directives/button.directive.d.ts +9 -0
  93. package/lib/components/notifications/directives/index.d.ts +2 -0
  94. package/lib/components/notifications/directives/notification.directive.d.ts +9 -0
  95. package/lib/components/notifications/index.d.ts +1 -0
  96. package/lib/components/notifications/models/common.d.ts +64 -0
  97. package/lib/components/notifications/models/index.d.ts +10 -0
  98. package/lib/components/notifications/models/notification-definition.model.d.ts +17 -0
  99. package/lib/components/notifications/models/notification-options.d.ts +7 -0
  100. package/lib/components/notifications/models/notification-setting.presenter.d.ts +24 -0
  101. package/lib/components/notifications/models/notification-subscription.model.d.ts +13 -0
  102. package/lib/components/notifications/models/notification.model.d.ts +16 -0
  103. package/lib/components/notifications/models/notifications-list-options.d.ts +34 -0
  104. package/lib/components/notifications/models/paging-response.model.d.ts +12 -0
  105. package/lib/components/notifications/models/params.model.d.ts +6 -0
  106. package/lib/components/notifications/models/vocabularies.d.ts +12 -0
  107. package/lib/components/notifications/notifications.module.d.ts +32 -16
  108. package/lib/components/notifications/public-api.d.ts +8 -0
  109. package/lib/components/notifications/services/index.d.ts +1 -0
  110. package/lib/components/notifications/services/listener.service.d.ts +8 -0
  111. package/lib/components/notifications/services/notifications.service.d.ts +56 -0
  112. package/lib/components/notifications/services/params.service.d.ts +19 -0
  113. package/lib/components/notifications/services/response.service.d.ts +19 -0
  114. package/lib/components/notifications/utilities/index.d.ts +1 -0
  115. package/lib/components/notifications/utilities/response.adapter.d.ts +3 -0
  116. package/lib/components/{notifications → toasts}/components/notification-toast/notification-toast.component.d.ts +1 -3
  117. package/lib/components/toasts/index.d.ts +1 -0
  118. package/lib/components/toasts/public-api.d.ts +2 -0
  119. package/lib/components/toasts/toasts.module.d.ts +8 -0
  120. package/lib/core/models/api-response.model.d.ts +24 -0
  121. package/lib/core/models/automation-response.model.d.ts +24 -0
  122. package/lib/core/models/base-response.models.d.ts +12 -0
  123. package/lib/core/models/index.d.ts +4 -0
  124. package/lib/core/services/nuxeo/nuxeo.service.d.ts +1 -1
  125. package/lib/core/services/translation/translation.service.d.ts +3 -3
  126. package/package.json +1 -1
  127. package/public-api.d.ts +130 -136
  128. package/esm2015/lib/components/notifications/components/notification-options/notification-options.component.js +0 -22
  129. package/esm2015/lib/components/notifications/notifications.service.js +0 -358
  130. package/lib/components/notifications/components/notification-options/notification-options.component.d.ts +0 -10
  131. package/lib/components/notifications/notifications.service.d.ts +0 -87

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.