nuxeo-development-framework 5.4.9 → 5.5.1

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 (76) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +655 -1651
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/components/ndf-config-editor/constants/query.js +2 -2
  4. package/esm2015/lib/components/ndf-config-editor/constants/type.js +3 -3
  5. package/esm2015/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.js +24 -17
  6. package/esm2015/lib/components/ndf-config-editor/metadata-token.js +3 -0
  7. package/esm2015/lib/components/ndf-config-editor/models/payload-data.js +2 -0
  8. package/esm2015/lib/components/ndf-config-editor/public/editor-navigate-button.js +8 -4
  9. package/esm2015/lib/components/ndf-config-editor/public-api.js +2 -1
  10. package/esm2015/lib/components/ndf-config-editor/services/data-access.service.js +12 -15
  11. package/esm2015/lib/components/ndf-config-editor/services/data-store.service.js +38 -10
  12. package/esm2015/lib/components/reports/charts/plugins/data-labels.js +166 -102
  13. package/esm2015/lib/components/reports/charts/utility/colors.js +13 -1
  14. package/esm2015/lib/components/reports/ndf-reports/base/base-chart.js +2 -2
  15. package/esm2015/lib/components/reports/ndf-reports/base/base-custom-report.js +16 -3
  16. package/esm2015/lib/components/reports/ndf-reports/base/base-graph.report.js +10 -22
  17. package/esm2015/lib/components/reports/ndf-reports/base/base-report.js +5 -2
  18. package/esm2015/lib/components/reports/ndf-reports/charts-components/custom-chart/custom-chart.component.js +68 -0
  19. package/esm2015/lib/components/reports/ndf-reports/charts-components/index.js +2 -1
  20. package/esm2015/lib/components/reports/ndf-reports/components/_parts/custom-chart-dialog/custom-chart-dialog.component.js +41 -0
  21. package/esm2015/lib/components/reports/ndf-reports/components/_parts/index.js +2 -1
  22. package/esm2015/lib/components/reports/ndf-reports/components/custom-report/custom-report.component.js +23 -37
  23. package/esm2015/lib/components/reports/ndf-reports/components/dynamic-timeline-report/dynamic-timeline-report.component.js +2 -6
  24. package/esm2015/lib/components/reports/ndf-reports/containers/ndf-report/ndf-report.component.js +4 -3
  25. package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +2 -2
  26. package/esm2015/lib/components/reports/ndf-reports/models/custom-definition.js +1 -1
  27. package/esm2015/lib/components/reports/ndf-reports/models/dialog-data.js +1 -1
  28. package/esm2015/lib/components/reports/ndf-reports/models/report-config.js +1 -1
  29. package/esm2015/lib/components/reports/ndf-reports/ndf-reports.module.js +5 -3
  30. package/esm2015/lib/components/reports/ndf-reports/public-api.js +2 -1
  31. package/esm2015/lib/components/reports/ndf-reports/services/chart-manager.service.js +15 -9
  32. package/esm2015/lib/components/reports/ndf-reports/services/custom-reports-registry.service.js +1 -1
  33. package/esm2015/lib/components/reports/ndf-reports/services/report-config-mapper.service.js +1 -1
  34. package/esm2015/lib/components/reports/ndf-reports/services/report-transform.service.js +2 -2
  35. package/esm2015/lib/components/reports/ndf-reports/services/reports-dialog.service.js +32 -0
  36. package/esm2015/lib/components/tables/ndf-table/services/ndf-table-configuration.service.js +18 -13
  37. package/esm2015/lib/shared/services/base/base-editor-config.service.js +70 -0
  38. package/esm2015/lib/shared/services/base/index.js +2 -1
  39. package/fesm2015/nuxeo-development-framework.js +599 -1624
  40. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  41. package/lib/components/ndf-config-editor/constants/type.d.ts +2 -2
  42. package/lib/components/ndf-config-editor/containers/config-preview/config-preview.component.d.ts +2 -2
  43. package/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.d.ts +8 -7
  44. package/lib/components/ndf-config-editor/metadata-token.d.ts +8 -0
  45. package/lib/components/ndf-config-editor/models/payload-data.d.ts +6 -0
  46. package/lib/components/ndf-config-editor/public/editor-navigate-button.d.ts +1 -0
  47. package/lib/components/ndf-config-editor/public-api.d.ts +1 -0
  48. package/lib/components/ndf-config-editor/services/data-access.service.d.ts +7 -4
  49. package/lib/components/ndf-config-editor/services/data-store.service.d.ts +6 -3
  50. package/lib/components/reports/charts/utility/colors.d.ts +5 -0
  51. package/lib/components/reports/ndf-reports/base/base-chart.d.ts +1 -1
  52. package/lib/components/reports/ndf-reports/base/base-custom-report.d.ts +18 -13
  53. package/lib/components/reports/ndf-reports/base/base-graph.report.d.ts +5 -13
  54. package/lib/components/reports/ndf-reports/base/base-report.d.ts +4 -1
  55. package/lib/components/reports/ndf-reports/charts-components/custom-chart/custom-chart.component.d.ts +15 -0
  56. package/lib/components/reports/ndf-reports/charts-components/index.d.ts +1 -0
  57. package/lib/components/reports/ndf-reports/components/_parts/custom-chart-dialog/custom-chart-dialog.component.d.ts +14 -0
  58. package/lib/components/reports/ndf-reports/components/_parts/index.d.ts +1 -0
  59. package/lib/components/reports/ndf-reports/components/custom-report/custom-report.component.d.ts +8 -10
  60. package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +1 -1
  61. package/lib/components/reports/ndf-reports/models/custom-definition.d.ts +3 -3
  62. package/lib/components/reports/ndf-reports/models/dialog-data.d.ts +8 -0
  63. package/lib/components/reports/ndf-reports/models/report-config.d.ts +2 -2
  64. package/lib/components/reports/ndf-reports/ndf-reports.module.d.ts +22 -20
  65. package/lib/components/reports/ndf-reports/public-api.d.ts +1 -0
  66. package/lib/components/reports/ndf-reports/services/chart-manager.service.d.ts +2 -2
  67. package/lib/components/reports/ndf-reports/services/custom-reports-registry.service.d.ts +3 -2
  68. package/lib/components/reports/ndf-reports/services/report-config-mapper.service.d.ts +2 -2
  69. package/lib/components/reports/ndf-reports/services/reports-dialog.service.d.ts +21 -0
  70. package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +1 -1
  71. package/lib/components/tables/ndf-table/services/ndf-table-configuration.service.d.ts +3 -5
  72. package/lib/shared/services/base/base-editor-config.service.d.ts +30 -0
  73. package/lib/shared/services/base/index.d.ts +1 -0
  74. package/package.json +1 -1
  75. package/esm2015/lib/components/ndf-config-editor/services/dummy-data.js +0 -1321
  76. package/lib/components/ndf-config-editor/services/dummy-data.d.ts +0 -992

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.