nuxeo-development-framework 5.4.4 → 5.4.6

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 (80) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +761 -440
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +2 -2
  4. package/esm2015/lib/components/ndf-filters/base/base-checkbox-radio.component.js +18 -7
  5. package/esm2015/lib/components/ndf-filters/constants/type.js +3 -2
  6. package/esm2015/lib/components/ndf-filters/containers/aggregation-field/aggregation-field.component.js +15 -14
  7. package/esm2015/lib/components/ndf-filters/containers/base-field.js +1 -1
  8. package/esm2015/lib/components/ndf-filters/containers/custom-field/custom-field.component.js +3 -2
  9. package/esm2015/lib/components/ndf-filters/containers/filters-panel/filters-panel.component.js +5 -3
  10. package/esm2015/lib/components/ndf-filters/custom-components/aggregation-group/aggregation-group.component.js +87 -0
  11. package/esm2015/lib/components/ndf-filters/custom-components/aggregation-group/map-aggregation-config.js +20 -0
  12. package/esm2015/lib/components/ndf-filters/custom-components/index.js +3 -1
  13. package/esm2015/lib/components/ndf-filters/models/custom-field-config.js +1 -1
  14. package/esm2015/lib/components/ndf-filters/models/field-options/custom-fields-options.js +1 -1
  15. package/esm2015/lib/components/ndf-filters/ndf-filters-panel.module.js +97 -28
  16. package/esm2015/lib/components/ndf-filters/public-api.js +4 -3
  17. package/esm2015/lib/components/ndf-filters/services/dynamic-component-loader.service.js +7 -33
  18. package/esm2015/lib/components/ndf-filters/utility/nxql-query.js +4 -4
  19. package/esm2015/lib/components/ndf-tabs/component/ndf-tabs.component.js +2 -2
  20. package/esm2015/lib/components/reports/ndf-reports/base/base-chart.js +10 -2
  21. package/esm2015/lib/components/reports/ndf-reports/charts-components/digit-chart/digit-chart.component.js +2 -2
  22. package/esm2015/lib/components/reports/ndf-reports/charts-components/graph-chart/graph-chart.component.js +2 -2
  23. package/esm2015/lib/components/reports/ndf-reports/components/_parts/timeline-dialog/timeline-dialog.component.js +12 -4
  24. package/esm2015/lib/components/reports/ndf-reports/components/digit-report/digit-report.component.js +1 -1
  25. package/esm2015/lib/components/reports/ndf-reports/components/dynamic-timeline-report/dynamic-timeline-report.component.js +8 -8
  26. package/esm2015/lib/components/reports/ndf-reports/components/graph-report/graph-report.component.js +2 -2
  27. package/esm2015/lib/components/reports/ndf-reports/containers/ndf-report/ndf-report.component.js +1 -1
  28. package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +27 -3
  29. package/esm2015/lib/components/reports/ndf-reports/models/base.js +1 -1
  30. package/esm2015/lib/components/reports/ndf-reports/models/details.js +1 -1
  31. package/esm2015/lib/components/reports/ndf-reports/models/dynamic-line.js +1 -1
  32. package/esm2015/lib/components/reports/ndf-reports/models/ndf-reports.config.js +1 -1
  33. package/esm2015/lib/components/reports/ndf-reports/models/request.js +1 -1
  34. package/esm2015/lib/components/reports/ndf-reports/services/base-chart-builder.service.js +5 -5
  35. package/esm2015/lib/components/reports/ndf-reports/services/chart-data-transformers.service.js +1 -1
  36. package/esm2015/lib/components/reports/ndf-reports/services/digit-chart.service.js +3 -3
  37. package/esm2015/lib/components/reports/ndf-reports/services/dynamic-timeline-report.service.js +34 -29
  38. package/esm2015/lib/components/reports/ndf-reports/services/index.js +2 -1
  39. package/esm2015/lib/components/reports/ndf-reports/services/ndf-reports.service.js +12 -5
  40. package/esm2015/lib/components/reports/ndf-reports/services/reports-data-transformers.service.js +70 -0
  41. package/esm2015/lib/components/reports/ndf-reports/utilities/reports-table.mapper.js +6 -5
  42. package/esm2015/lib/components/skeleton/skeleton.component.js +1 -1
  43. package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
  44. package/esm2015/lib/components/tables/dynamic-table/dynamic-table/dynamic-table.component.js +32 -8
  45. package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +2 -2
  46. package/esm2015/lib/components/tables/ndf-table/models/table-config.js +1 -1
  47. package/esm2015/lib/shared/evaluator/types.js +1 -1
  48. package/fesm2015/nuxeo-development-framework.js +754 -464
  49. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  50. package/lib/components/ndf-filters/base/base-checkbox-radio.component.d.ts +1 -0
  51. package/lib/components/ndf-filters/constants/type.d.ts +1 -0
  52. package/lib/components/ndf-filters/custom-components/aggregation-group/aggregation-group.component.d.ts +26 -0
  53. package/lib/components/ndf-filters/custom-components/aggregation-group/map-aggregation-config.d.ts +9 -0
  54. package/lib/components/ndf-filters/custom-components/index.d.ts +2 -0
  55. package/lib/components/ndf-filters/models/custom-field-config.d.ts +2 -2
  56. package/lib/components/ndf-filters/models/field-options/custom-fields-options.d.ts +14 -0
  57. package/lib/components/ndf-filters/ndf-filters-panel.module.d.ts +58 -47
  58. package/lib/components/ndf-filters/public-api.d.ts +3 -2
  59. package/lib/components/ndf-filters/services/dynamic-component-loader.service.d.ts +1 -3
  60. package/lib/components/reports/ndf-reports/base/base-chart.d.ts +5 -2
  61. package/lib/components/reports/ndf-reports/components/_parts/timeline-dialog/timeline-dialog.component.d.ts +2 -0
  62. package/lib/components/reports/ndf-reports/components/dynamic-timeline-report/dynamic-timeline-report.component.d.ts +4 -2
  63. package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +8 -2
  64. package/lib/components/reports/ndf-reports/models/base.d.ts +7 -3
  65. package/lib/components/reports/ndf-reports/models/details.d.ts +6 -1
  66. package/lib/components/reports/ndf-reports/models/dynamic-line.d.ts +6 -1
  67. package/lib/components/reports/ndf-reports/models/ndf-reports.config.d.ts +4 -0
  68. package/lib/components/reports/ndf-reports/models/request.d.ts +1 -0
  69. package/lib/components/reports/ndf-reports/services/base-chart-builder.service.d.ts +3 -3
  70. package/lib/components/reports/ndf-reports/services/chart-data-transformers.service.d.ts +9 -2
  71. package/lib/components/reports/ndf-reports/services/digit-chart.service.d.ts +2 -2
  72. package/lib/components/reports/ndf-reports/services/dynamic-timeline-report.service.d.ts +10 -15
  73. package/lib/components/reports/ndf-reports/services/index.d.ts +1 -0
  74. package/lib/components/reports/ndf-reports/services/ndf-reports.service.d.ts +5 -1
  75. package/lib/components/reports/ndf-reports/services/reports-data-transformers.service.d.ts +48 -0
  76. package/lib/components/tables/dynamic-table/dynamic-table/dynamic-table.component.d.ts +5 -1
  77. package/lib/components/tables/ndf-table/models/table-config.d.ts +5 -0
  78. package/lib/shared/evaluator/types.d.ts +3 -1
  79. package/package.json +1 -1
  80. package/src/docs/ndf-table.doc.md +4 -5

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.