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.
- package/bundles/nuxeo-development-framework.umd.js +655 -1651
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/ndf-config-editor/constants/query.js +2 -2
- package/esm2015/lib/components/ndf-config-editor/constants/type.js +3 -3
- package/esm2015/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.js +24 -17
- package/esm2015/lib/components/ndf-config-editor/metadata-token.js +3 -0
- package/esm2015/lib/components/ndf-config-editor/models/payload-data.js +2 -0
- package/esm2015/lib/components/ndf-config-editor/public/editor-navigate-button.js +8 -4
- package/esm2015/lib/components/ndf-config-editor/public-api.js +2 -1
- package/esm2015/lib/components/ndf-config-editor/services/data-access.service.js +12 -15
- package/esm2015/lib/components/ndf-config-editor/services/data-store.service.js +38 -10
- package/esm2015/lib/components/reports/charts/plugins/data-labels.js +166 -102
- package/esm2015/lib/components/reports/charts/utility/colors.js +13 -1
- package/esm2015/lib/components/reports/ndf-reports/base/base-chart.js +2 -2
- package/esm2015/lib/components/reports/ndf-reports/base/base-custom-report.js +16 -3
- package/esm2015/lib/components/reports/ndf-reports/base/base-graph.report.js +10 -22
- package/esm2015/lib/components/reports/ndf-reports/base/base-report.js +5 -2
- package/esm2015/lib/components/reports/ndf-reports/charts-components/custom-chart/custom-chart.component.js +68 -0
- package/esm2015/lib/components/reports/ndf-reports/charts-components/index.js +2 -1
- package/esm2015/lib/components/reports/ndf-reports/components/_parts/custom-chart-dialog/custom-chart-dialog.component.js +41 -0
- package/esm2015/lib/components/reports/ndf-reports/components/_parts/index.js +2 -1
- package/esm2015/lib/components/reports/ndf-reports/components/custom-report/custom-report.component.js +23 -37
- package/esm2015/lib/components/reports/ndf-reports/components/dynamic-timeline-report/dynamic-timeline-report.component.js +2 -6
- package/esm2015/lib/components/reports/ndf-reports/containers/ndf-report/ndf-report.component.js +4 -3
- package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +2 -2
- package/esm2015/lib/components/reports/ndf-reports/models/custom-definition.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/models/dialog-data.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/models/report-config.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/ndf-reports.module.js +5 -3
- package/esm2015/lib/components/reports/ndf-reports/public-api.js +2 -1
- package/esm2015/lib/components/reports/ndf-reports/services/chart-manager.service.js +15 -9
- package/esm2015/lib/components/reports/ndf-reports/services/custom-reports-registry.service.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/services/report-config-mapper.service.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/services/report-transform.service.js +2 -2
- package/esm2015/lib/components/reports/ndf-reports/services/reports-dialog.service.js +32 -0
- package/esm2015/lib/components/tables/ndf-table/services/ndf-table-configuration.service.js +18 -13
- package/esm2015/lib/shared/services/base/base-editor-config.service.js +70 -0
- package/esm2015/lib/shared/services/base/index.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +599 -1624
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/ndf-config-editor/constants/type.d.ts +2 -2
- package/lib/components/ndf-config-editor/containers/config-preview/config-preview.component.d.ts +2 -2
- package/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.d.ts +8 -7
- package/lib/components/ndf-config-editor/metadata-token.d.ts +8 -0
- package/lib/components/ndf-config-editor/models/payload-data.d.ts +6 -0
- package/lib/components/ndf-config-editor/public/editor-navigate-button.d.ts +1 -0
- package/lib/components/ndf-config-editor/public-api.d.ts +1 -0
- package/lib/components/ndf-config-editor/services/data-access.service.d.ts +7 -4
- package/lib/components/ndf-config-editor/services/data-store.service.d.ts +6 -3
- package/lib/components/reports/charts/utility/colors.d.ts +5 -0
- package/lib/components/reports/ndf-reports/base/base-chart.d.ts +1 -1
- package/lib/components/reports/ndf-reports/base/base-custom-report.d.ts +18 -13
- package/lib/components/reports/ndf-reports/base/base-graph.report.d.ts +5 -13
- package/lib/components/reports/ndf-reports/base/base-report.d.ts +4 -1
- package/lib/components/reports/ndf-reports/charts-components/custom-chart/custom-chart.component.d.ts +15 -0
- package/lib/components/reports/ndf-reports/charts-components/index.d.ts +1 -0
- package/lib/components/reports/ndf-reports/components/_parts/custom-chart-dialog/custom-chart-dialog.component.d.ts +14 -0
- package/lib/components/reports/ndf-reports/components/_parts/index.d.ts +1 -0
- package/lib/components/reports/ndf-reports/components/custom-report/custom-report.component.d.ts +8 -10
- package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +1 -1
- package/lib/components/reports/ndf-reports/models/custom-definition.d.ts +3 -3
- package/lib/components/reports/ndf-reports/models/dialog-data.d.ts +8 -0
- package/lib/components/reports/ndf-reports/models/report-config.d.ts +2 -2
- package/lib/components/reports/ndf-reports/ndf-reports.module.d.ts +22 -20
- package/lib/components/reports/ndf-reports/public-api.d.ts +1 -0
- package/lib/components/reports/ndf-reports/services/chart-manager.service.d.ts +2 -2
- package/lib/components/reports/ndf-reports/services/custom-reports-registry.service.d.ts +3 -2
- package/lib/components/reports/ndf-reports/services/report-config-mapper.service.d.ts +2 -2
- package/lib/components/reports/ndf-reports/services/reports-dialog.service.d.ts +21 -0
- package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +1 -1
- package/lib/components/tables/ndf-table/services/ndf-table-configuration.service.d.ts +3 -5
- package/lib/shared/services/base/base-editor-config.service.d.ts +30 -0
- package/lib/shared/services/base/index.d.ts +1 -0
- package/package.json +1 -1
- package/esm2015/lib/components/ndf-config-editor/services/dummy-data.js +0 -1321
- 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.