nuxeo-development-framework 5.5.0 → 5.5.2

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 (58) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +213 -1382
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/components/ndf-config-editor/constants/index.js +2 -2
  4. package/esm2015/lib/components/ndf-config-editor/constants/query.js +2 -2
  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/ndf-reports/models/details.js +1 -1
  13. package/esm2015/lib/components/reports/ndf-reports/models/ndf-reports.config.js +1 -1
  14. package/esm2015/lib/components/reports/ndf-reports/services/index.js +2 -1
  15. package/esm2015/lib/components/reports/ndf-reports/services/report-details.service.js +29 -0
  16. package/esm2015/lib/components/reports/ndf-reports/utilities/reports-table.mapper.js +3 -2
  17. package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +7 -7
  18. package/esm2015/lib/components/tables/ndf-table/models/table-column.js +1 -1
  19. package/esm2015/lib/components/tables/ndf-table/models/table-options.js +1 -1
  20. package/esm2015/lib/components/tables/ndf-table/services/ndf-table-configuration.service.js +18 -13
  21. package/esm2015/lib/components/tables/ndf-table/services/ndf-table.service.js +2 -2
  22. package/esm2015/lib/shared/constants/editor-config-type.js +5 -0
  23. package/esm2015/lib/shared/constants/index.js +2 -0
  24. package/esm2015/lib/shared/index.js +2 -1
  25. package/esm2015/lib/shared/services/base/base-editor-config.service.js +70 -0
  26. package/esm2015/lib/shared/services/base/index.js +2 -1
  27. package/esm2015/public-api.js +2 -1
  28. package/fesm2015/nuxeo-development-framework.js +193 -1377
  29. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  30. package/lib/components/ndf-config-editor/constants/index.d.ts +1 -1
  31. package/lib/components/ndf-config-editor/containers/config-preview/config-preview.component.d.ts +2 -2
  32. package/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.d.ts +8 -7
  33. package/lib/components/ndf-config-editor/metadata-token.d.ts +8 -0
  34. package/lib/components/ndf-config-editor/models/payload-data.d.ts +6 -0
  35. package/lib/components/ndf-config-editor/public/editor-navigate-button.d.ts +1 -0
  36. package/lib/components/ndf-config-editor/public-api.d.ts +1 -0
  37. package/lib/components/ndf-config-editor/services/data-access.service.d.ts +7 -4
  38. package/lib/components/ndf-config-editor/services/data-store.service.d.ts +6 -3
  39. package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +2 -2
  40. package/lib/components/reports/ndf-reports/models/details.d.ts +5 -1
  41. package/lib/components/reports/ndf-reports/models/ndf-reports.config.d.ts +1 -1
  42. package/lib/components/reports/ndf-reports/services/index.d.ts +1 -0
  43. package/lib/components/reports/ndf-reports/services/report-details.service.d.ts +12 -0
  44. package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +1 -1
  45. package/lib/components/tables/ndf-table/models/table-column.d.ts +1 -0
  46. package/lib/components/tables/ndf-table/models/table-options.d.ts +1 -1
  47. package/lib/components/tables/ndf-table/services/ndf-table-configuration.service.d.ts +3 -5
  48. package/lib/shared/constants/editor-config-type.d.ts +4 -0
  49. package/lib/shared/constants/index.d.ts +1 -0
  50. package/lib/shared/index.d.ts +1 -0
  51. package/lib/shared/services/base/base-editor-config.service.d.ts +32 -0
  52. package/lib/shared/services/base/index.d.ts +1 -0
  53. package/package.json +2 -2
  54. package/public-api.d.ts +1 -0
  55. package/esm2015/lib/components/ndf-config-editor/constants/type.js +0 -5
  56. package/esm2015/lib/components/ndf-config-editor/services/dummy-data.js +0 -1321
  57. package/lib/components/ndf-config-editor/constants/type.d.ts +0 -4
  58. package/lib/components/ndf-config-editor/services/dummy-data.d.ts +0 -992
@@ -1,4 +0,0 @@
1
- export declare const NDF_EDITOR_TYPE: {
2
- readonly REPORTS: "reports";
3
- readonly TABLES: "tables";
4
- };