nuxeo-development-framework 5.3.6 → 5.3.7
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 +575 -202
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/ndf-config-editor/containers/monaco-editor.component.js +1 -2
- package/esm2015/lib/components/ndf-filters/base/base-aggregation-field.component.js +91 -0
- package/esm2015/lib/components/ndf-filters/base/base-checkbox-radio.component.js +66 -0
- package/esm2015/lib/components/ndf-filters/base/base-custom-field.component.js +46 -0
- package/esm2015/lib/components/ndf-filters/base/base-predicate-field.component.js +43 -0
- package/esm2015/lib/components/ndf-filters/base/base-value-accessor.component.js +34 -0
- package/esm2015/lib/components/ndf-filters/base/index.js +6 -0
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/field-header.component.js +1 -1
- package/esm2015/lib/components/ndf-filters/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.js +97 -0
- package/esm2015/lib/components/ndf-filters/components/__parts/filter-autocomplete-input/filter-autocomplete.service.js +43 -0
- package/esm2015/lib/components/ndf-filters/components/__parts/filter-collapse-control/filter-collapse-control.component.js +44 -0
- package/esm2015/lib/components/ndf-filters/components/__parts/filter-date-range/filter-date-range.component.js +89 -0
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-empty-message.component.js +1 -1
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-option-text/filter-option-text.component.js +1 -1
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-options-sort/filter-options-sort.component.js +1 -1
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-search-input/filter-search-input.component.js +1 -1
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/html-dialog/html-dialog.component.js +2 -2
- package/esm2015/lib/components/ndf-filters/components/__parts/index.js +10 -0
- package/esm2015/lib/components/ndf-filters/components/aggregation-autocomplete/aggregation-autocomplete.component.js +109 -0
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-checkbox/aggregation-checkbox.component.js +1 -1
- package/esm2015/lib/components/ndf-filters/components/aggregation-custom/aggregation-custom.component.js +66 -0
- package/esm2015/lib/components/ndf-filters/components/aggregation-date-list/aggregation-date-list.component.js +219 -0
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-radio/aggregation-radio.component.js +1 -1
- package/esm2015/lib/components/ndf-filters/components/aggregation-select/aggregation-select.component.js +83 -0
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-switch/aggregation-switch.component.js +1 -1
- package/esm2015/lib/components/ndf-filters/components/index.js +11 -0
- package/esm2015/lib/components/ndf-filters/components/predicate-date-input/predicate-date-input.component.js +146 -0
- package/esm2015/lib/components/ndf-filters/components/predicate-text-input/predicate-text-input.component.js +144 -0
- package/esm2015/lib/components/ndf-filters/constants/common.js +4 -0
- package/esm2015/lib/components/ndf-filters/constants/field.js +6 -0
- package/esm2015/lib/components/ndf-filters/constants/index.js +5 -0
- package/esm2015/lib/components/ndf-filters/constants/operators.js +18 -0
- package/esm2015/lib/components/ndf-filters/constants/sort.js +23 -0
- package/esm2015/lib/components/ndf-filters/constants/type.js +26 -0
- package/esm2015/lib/components/ndf-filters/containers/aggregation-field/aggregation-field.component.js +78 -0
- package/esm2015/lib/components/ndf-filters/containers/base-field.js +62 -0
- package/esm2015/lib/components/ndf-filters/containers/custom-field/custom-field.component.js +73 -0
- package/esm2015/lib/components/ndf-filters/containers/filters-panel/base-filters-panel.js +55 -0
- package/esm2015/lib/components/ndf-filters/containers/filters-panel/filters-panel.component.js +127 -0
- package/esm2015/lib/components/ndf-filters/containers/index.js +5 -0
- package/esm2015/lib/components/ndf-filters/containers/predicate-field/predicate-field.component.js +71 -0
- package/esm2015/lib/components/ndf-filters/custom-components/active-user-switch/active-user-switch.component.js +55 -0
- package/esm2015/lib/components/ndf-filters/custom-components/active-user-switch/active-user.service.js +17 -0
- package/esm2015/lib/components/ndf-filters/custom-components/active-user-switch/user-types.js +2 -0
- package/esm2015/lib/components/ndf-filters/custom-components/index.js +2 -0
- package/esm2015/lib/components/ndf-filters/directives/autocomplete-template.directive.js +28 -0
- package/esm2015/lib/components/ndf-filters/directives/checkbox-template.directive.js +28 -0
- package/esm2015/lib/components/ndf-filters/directives/custom-template.directive.js +28 -0
- package/esm2015/lib/components/ndf-filters/directives/date-template.directive.js +28 -0
- package/esm2015/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/dropdown-label-template.directive.js +1 -1
- package/esm2015/lib/components/ndf-filters/directives/dropdown-template.directive.js +28 -0
- package/esm2015/lib/components/ndf-filters/directives/index.js +9 -0
- package/esm2015/lib/components/ndf-filters/directives/radio-template.directive.js +28 -0
- package/esm2015/lib/components/ndf-filters/directives/switch-template.directive.js +28 -0
- package/esm2015/lib/components/ndf-filters/index.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/aggregation-field-config.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/aggregation-response.model.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/base-field-config.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/common.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/custom-field-config.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-config.model.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/autocomplete-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/checkbox-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/common-utils.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/custom-fields-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/custom-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/date-list-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/date-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/dropdown-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/index.js +12 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/input-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/radio-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/field-options/switch-options.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/filter-option.model.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/form-query-request.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/index.js +14 -0
- package/esm2015/lib/components/ndf-filters/models/operator-value-object.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/predicate-field-config.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/types-helper.js +2 -0
- package/esm2015/lib/components/ndf-filters/models/value-object.model.js +12 -0
- package/esm2015/lib/components/ndf-filters/ndf-filters-panel.module.js +207 -0
- package/esm2015/lib/components/ndf-filters/pipes/autocomplete-filter.pipe.js +27 -0
- package/esm2015/lib/components/ndf-filters/pipes/check-condition.pipe.js +32 -0
- package/esm2015/lib/components/ndf-filters/pipes/filter.pipe.js +27 -0
- package/esm2015/lib/components/ndf-filters/pipes/hash-translate.pipe.js +52 -0
- package/esm2015/lib/components/ndf-filters/pipes/index.js +10 -0
- package/esm2015/lib/components/ndf-filters/pipes/localized-label.pipe.js +28 -0
- package/esm2015/lib/components/ndf-filters/pipes/roles-filters.pipe.js +31 -0
- package/esm2015/lib/components/ndf-filters/pipes/sanitizer.pipe.js +34 -0
- package/esm2015/lib/components/ndf-filters/pipes/sort.pipe.js +40 -0
- package/esm2015/lib/components/ndf-filters/pipes/tooltip.pipe.js +69 -0
- package/esm2015/lib/components/ndf-filters/public-api.js +12 -0
- package/esm2015/lib/components/ndf-filters/services/aggregation-field.service.js +105 -0
- package/esm2015/lib/components/ndf-filters/services/dynamic-component-loader.service.js +59 -0
- package/esm2015/lib/components/ndf-filters/services/filters-mapper.service.js +60 -0
- package/esm2015/lib/components/ndf-filters/services/filters-query.service.js +117 -0
- package/esm2015/lib/components/ndf-filters/services/index.js +5 -0
- package/esm2015/lib/components/ndf-filters/utility/index.js +4 -0
- package/esm2015/lib/components/ndf-filters/utility/nxql-query.js +53 -0
- package/esm2015/lib/components/ndf-filters/utility/nxql.js +47 -0
- package/esm2015/lib/components/ndf-filters/utility/object.js +42 -0
- package/esm2015/lib/components/ndf-tabs/tab.type.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +3 -3
- package/esm2015/lib/components/reports/ndf-reports/models/common.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/models/ndf-reports.config.js +1 -1
- package/esm2015/lib/components/reports/ndf-reports/ndf-reports.module.js +6 -5
- package/esm2015/lib/components/reports/ndf-reports/services/report-config-mapper.service.js +1 -1
- package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/components/text-search/text-search.component.js +2 -2
- package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +26 -25
- package/esm2015/lib/components/tables/ndf-table/models/payload-types.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/models/search.config.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/models/table-mode.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/models/table-options.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/models/types.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/ndf-table.module.js +5 -5
- package/esm2015/lib/components/tables/ndf-table/public-api.js +1 -2
- package/esm2015/lib/components/tables/ndf-table/services/index.js +1 -2
- package/esm2015/lib/shared/evaluator/evaluator.js +332 -0
- package/esm2015/lib/shared/evaluator/index.js +2 -0
- package/esm2015/lib/shared/evaluator/types.js +2 -0
- package/esm2015/lib/shared/models/index.js +2 -1
- package/esm2015/lib/shared/models/type-helpers.js +2 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +532 -169
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-aggregation-field.component.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-value-accessor.component.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-autocomplete-input/filter-autocomplete.service.d.ts +3 -2
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-date-range/filter-date-range.component.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/html-dialog/html-dialog.component.d.ts +2 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/filters-panel/base-filters-panel.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/filters-panel/filters-panel.component.d.ts +1 -0
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/active-user-switch/active-user.service.d.ts +1 -1
- package/lib/components/ndf-filters/index.d.ts +1 -0
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/aggregation-field-config.d.ts +2 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/base-field-config.d.ts +3 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/custom-field-config.d.ts +2 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/autocomplete-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/checkbox-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/common-utils.d.ts +2 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/custom-fields-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/date-list-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/date-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/dropdown-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/input-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/radio-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/switch-options.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/filter-option.model.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/index.d.ts +1 -0
- package/lib/components/ndf-filters/models/operator-value-object.d.ts +6 -0
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/predicate-field-config.d.ts +2 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/types-helper.d.ts +0 -11
- package/lib/components/ndf-filters/ndf-filters-panel.module.d.ts +66 -0
- package/lib/components/ndf-filters/pipes/check-condition.pipe.d.ts +12 -0
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/index.d.ts +1 -0
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/roles-filters.pipe.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel/index.d.ts → ndf-filters/public-api.d.ts} +2 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/aggregation-field.service.d.ts +1 -1
- package/lib/components/{tables/ndf-table → ndf-filters}/services/filters-mapper.service.d.ts +1 -1
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/index.d.ts +1 -0
- package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/utility/index.d.ts +1 -0
- package/lib/components/{tables/ndf-table/utils → ndf-filters/utility}/nxql-query.d.ts +4 -3
- package/lib/components/ndf-tabs/tab.type.d.ts +1 -1
- package/lib/components/reports/ndf-reports/base/base-report.d.ts +3 -3
- package/lib/components/reports/ndf-reports/containers/ndf-report/ndf-report.component.d.ts +1 -1
- package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +3 -2
- package/lib/components/reports/ndf-reports/models/common.d.ts +2 -2
- package/lib/components/reports/ndf-reports/models/ndf-reports.config.d.ts +1 -1
- package/lib/components/reports/ndf-reports/ndf-reports.module.d.ts +2 -2
- package/lib/components/reports/ndf-reports/services/dynamic-timeline-report.service.d.ts +1 -1
- package/lib/components/tables/ndf-table/components/text-search/text-search.component.d.ts +1 -1
- package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +3 -2
- package/lib/components/tables/ndf-table/models/payload-types.d.ts +0 -6
- package/lib/components/tables/ndf-table/models/search.config.d.ts +1 -1
- package/lib/components/tables/ndf-table/models/table-mode.d.ts +1 -1
- package/lib/components/tables/ndf-table/models/table-options.d.ts +1 -1
- package/lib/components/tables/ndf-table/models/types.d.ts +1 -1
- package/lib/components/tables/ndf-table/ndf-table.module.d.ts +2 -2
- package/lib/components/tables/ndf-table/public-api.d.ts +0 -1
- package/lib/components/tables/ndf-table/services/index.d.ts +0 -1
- package/lib/shared/evaluator/evaluator.d.ts +79 -0
- package/lib/shared/evaluator/index.d.ts +1 -0
- package/lib/shared/evaluator/types.d.ts +14 -0
- package/lib/shared/models/index.d.ts +1 -0
- package/lib/shared/models/type-helpers.d.ts +11 -0
- package/package.json +3 -2
- package/public-api.d.ts +1 -0
- package/src/docs/ndf-table.doc.md +287 -217
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-aggregation-field.component.js +0 -91
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-checkbox-radio.component.js +0 -66
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-custom-field.component.js +0 -46
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-predicate-field.component.js +0 -43
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-value-accessor.component.js +0 -34
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/index.js +0 -6
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.js +0 -97
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete.service.js +0 -43
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-collapse-control/filter-collapse-control.component.js +0 -44
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-date-range/filter-date-range.component.js +0 -89
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/index.js +0 -10
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-autocomplete/aggregation-autocomplete.component.js +0 -109
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-custom/aggregation-custom.component.js +0 -66
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-date-list/aggregation-date-list.component.js +0 -219
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-select/aggregation-select.component.js +0 -83
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/index.js +0 -11
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-date-input/predicate-date-input.component.js +0 -146
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-text-input/predicate-text-input.component.js +0 -144
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/common.js +0 -4
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/field.js +0 -6
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/index.js +0 -5
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/operators.js +0 -18
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/sort.js +0 -23
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/type.js +0 -26
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/aggregation-field/aggregation-field.component.js +0 -78
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/base-field.js +0 -62
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/custom-field/custom-field.component.js +0 -73
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/base-filters-panel.js +0 -55
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/filters-panel.component.js +0 -122
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/index.js +0 -5
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/predicate-field/predicate-field.component.js +0 -71
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user-switch.component.js +0 -55
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user.service.js +0 -17
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/user-types.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/index.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/autocomplete-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/checkbox-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/custom-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/date-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/dropdown-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/index.js +0 -9
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/radio-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/switch-template.directive.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/filters-panel.module.js +0 -205
- package/esm2015/lib/components/tables/ndf-table/filters-panel/index.js +0 -11
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-field-config.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-response.model.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/base-field-config.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/common.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/custom-field-config.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-config.model.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/autocomplete-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/checkbox-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/common-utils.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-fields-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-list-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/dropdown-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/index.js +0 -12
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/input-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/radio-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/switch-options.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/filter-option.model.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/form-query-request.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/index.js +0 -13
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/predicate-field-config.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/types-helper.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/value-object.model.js +0 -12
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/autocomplete-filter.pipe.js +0 -27
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/filter.pipe.js +0 -27
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/hash-translate.pipe.js +0 -52
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/index.js +0 -9
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/localized-label.pipe.js +0 -28
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/roles-filters.pipe.js +0 -31
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sanitizer.pipe.js +0 -34
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sort.pipe.js +0 -40
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/tooltip.pipe.js +0 -69
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/aggregation-field.service.js +0 -105
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/dynamic-component-loader.service.js +0 -59
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/filters-query.service.js +0 -117
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/index.js +0 -4
- package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/index.js +0 -3
- package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/nxql.js +0 -47
- package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/object.js +0 -42
- package/esm2015/lib/components/tables/ndf-table/services/filters-mapper.service.js +0 -60
- package/esm2015/lib/components/tables/ndf-table/utils/index.js +0 -2
- package/esm2015/lib/components/tables/ndf-table/utils/nxql-query.js +0 -52
- package/lib/components/tables/ndf-table/filters-panel/filters-panel.module.d.ts +0 -65
- package/lib/components/tables/ndf-table/utils/index.d.ts +0 -1
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-checkbox-radio.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-custom-field.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/base-predicate-field.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/base/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/field-header.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-collapse-control/filter-collapse-control.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-empty-message.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-option-text/filter-option-text.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-options-sort/filter-options-sort.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/filter-search-input/filter-search-input.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/__parts/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-autocomplete/aggregation-autocomplete.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-checkbox/aggregation-checkbox.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-custom/aggregation-custom.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-date-list/aggregation-date-list.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-radio/aggregation-radio.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-select/aggregation-select.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/aggregation-switch/aggregation-switch.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/predicate-date-input/predicate-date-input.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/components/predicate-text-input/predicate-text-input.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/common.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/field.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/operators.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/sort.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/constants/type.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/aggregation-field/aggregation-field.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/base-field.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/custom-field/custom-field.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/containers/predicate-field/predicate-field.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/active-user-switch/active-user-switch.component.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/active-user-switch/user-types.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/custom-components/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/autocomplete-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/checkbox-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/custom-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/date-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/dropdown-label-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/dropdown-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/radio-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/directives/switch-template.directive.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/aggregation-response.model.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/common.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-config.model.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/custom-options.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/field-options/index.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/form-query-request.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/value-object.model.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/autocomplete-filter.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/filter.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/hash-translate.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/localized-label.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/sanitizer.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/sort.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/tooltip.pipe.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/dynamic-component-loader.service.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/services/filters-query.service.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/utility/nxql.d.ts +0 -0
- /package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/utility/object.d.ts +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Injector, TemplateRef } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { BaseSelector } from '../../../../../shared/components';
|
|
4
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { BaseSelector } from '../../../shared/components';
|
|
5
5
|
import { AggregationFieldConfig, AggregationFieldType, AggregationResponse, FieldOptionsType, FieldValueObject, FilterOption, OptionsType } from '../models';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare abstract class BaseAggregationField<TType extends AggregationFieldType, TValue = any> extends BaseSelector<FilterOption[], TValue> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
-
import { BaseComponent } from '
|
|
3
|
+
import { BaseComponent } from '../../../shared/components/base';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare abstract class BaseCustomValueAccessor<T, R> extends BaseComponent implements ControlValueAccessor, Validator {
|
|
6
6
|
injector: Injector;
|
|
@@ -6,7 +6,7 @@ import { TranslateService } from '@ngx-translate/core';
|
|
|
6
6
|
import { Observable } from 'rxjs';
|
|
7
7
|
import { AggregationFieldConfig, FilterOption, SearchConfig } from '../../../models';
|
|
8
8
|
import { FilterAutocompleteService } from './filter-autocomplete.service';
|
|
9
|
-
import { DestroySubject } from '
|
|
9
|
+
import { DestroySubject } from '../../../../../shared/components';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class FilterAutocompleteInputComponent extends DestroySubject implements OnInit {
|
|
12
12
|
private _filterService;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
-
import { BaseService } from '
|
|
3
|
-
import {
|
|
2
|
+
import { BaseService } from '../../../../../shared/services/base';
|
|
3
|
+
import { EvaluatedString } from '../../../../../shared/models';
|
|
4
|
+
import { AggregationFieldConfig, SearchConfig } from '../../../models';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class FilterAutocompleteService extends BaseService {
|
|
6
7
|
private injector;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, FormControl, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { BaseSelector } from '
|
|
3
|
+
import { BaseSelector } from '../../../../../shared/components';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class FilterDateRangeComponent extends BaseSelector implements OnInit {
|
|
6
6
|
formControl: FormControl;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
-
import {
|
|
2
|
+
import { StrictOmit } from '../../../../../shared/models';
|
|
3
|
+
import { HtmlDialogConfig } from '../../../models';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class HtmlDialogComponent {
|
|
5
6
|
data: StrictOmit<HtmlDialogConfig, 'options'>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import { DestroySubject } from '
|
|
2
|
+
import { DestroySubject } from '../../../../shared/components';
|
|
3
3
|
import { AggregationFieldType } from '../../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare abstract class BaseFiltersPanel extends DestroySubject {
|
|
@@ -8,6 +8,7 @@ import { TranslateService } from '@ngx-translate/core';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class FiltersPanelComponent extends BaseFiltersPanel implements OnInit {
|
|
10
10
|
private _translateService;
|
|
11
|
+
currentLang: string;
|
|
11
12
|
direction$: Observable<Direction>;
|
|
12
13
|
aggregations: Record<string, AggregationResponse>;
|
|
13
14
|
private _fieldsSub;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './public-api';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BaseFieldConfig } from './base-field-config';
|
|
2
2
|
import { AutocompleteOptions, CheckboxOptions, CustomOptions, DateListOptions, DropdownOptions, RadioOptions, SwitchOptions } from './field-options';
|
|
3
|
-
import { FieldSendModeType
|
|
3
|
+
import { FieldSendModeType } from './types-helper';
|
|
4
|
+
import { Prettify } from '../../../shared/models';
|
|
4
5
|
export declare type AggregationFieldConfig = Prettify<BaseFieldConfig & {
|
|
5
6
|
aggregation: string;
|
|
6
7
|
propertyPath?: string;
|
package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/base-field-config.d.ts
RENAMED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EvaluatedString, TranslateKey } from '../../../shared/models';
|
|
2
|
+
import { ComparisonOperator } from './types-helper';
|
|
2
3
|
export declare type BaseFieldConfig = {
|
|
3
4
|
label: TranslateKey;
|
|
4
5
|
fieldKey: string;
|
|
@@ -10,4 +11,5 @@ export declare type BaseFieldConfig = {
|
|
|
10
11
|
visible?: boolean;
|
|
11
12
|
roles?: string[];
|
|
12
13
|
permission?: string;
|
|
14
|
+
condition?: EvaluatedString;
|
|
13
15
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { FieldSendModeType
|
|
1
|
+
import { FieldSendModeType } from './types-helper';
|
|
2
2
|
import { BaseFieldConfig } from './base-field-config';
|
|
3
3
|
import { ActiveUserSwitcherOptions } from './field-options/custom-fields-options';
|
|
4
|
+
import { Prettify } from '../../../shared/models';
|
|
4
5
|
export declare type CustomFieldConfig = Prettify<BaseFieldConfig & {
|
|
5
6
|
sendMode: Exclude<FieldSendModeType, 'custom'>;
|
|
6
7
|
render: ActiveUserSwitcherOptions;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Prettify } from '
|
|
1
|
+
import { Prettify } from '../../../../shared/models';
|
|
2
2
|
import { CollapseConfig, FilterConfig, HideLabel, SearchConfig, ShowTotalConfig, SortOptions } from './common-utils';
|
|
3
3
|
/**
|
|
4
4
|
* Configuration options for a checkbox field.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DATE_LIST_VIEW } from '../../constants';
|
|
2
|
-
import { Prettify } from '
|
|
2
|
+
import { Prettify } from '../../../../shared/models';
|
|
3
3
|
import { HideLabel, ShowTotalConfig } from './common-utils';
|
|
4
4
|
export declare type DateListOptions = {
|
|
5
5
|
type: 'dateList';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { KeyValue } from '@angular/common';
|
|
2
2
|
import { MatDialogConfig } from '@angular/material/dialog';
|
|
3
|
-
import { Prettify, TranslateKey } from '../types-helper';
|
|
4
3
|
import { HideLabel } from './common-utils';
|
|
4
|
+
import { Prettify, TranslateKey } from '../../../../shared/models';
|
|
5
5
|
/**
|
|
6
6
|
* Represents the configuration options for an input field.
|
|
7
7
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Prettify } from '
|
|
1
|
+
import { Prettify } from '../../../../shared/models';
|
|
2
2
|
import { CollapseConfig, FilterConfig, HideLabel, SearchConfig, ShowTotalConfig, SortOptions } from './common-utils';
|
|
3
3
|
export declare type RadioOptions = {
|
|
4
4
|
type: 'radio';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Prettify } from '
|
|
1
|
+
import { Prettify } from '../../../../shared/models';
|
|
2
2
|
import { CollapseConfig, FilterConfig, HideLabel, MultipleConfig, SearchConfig, ShowTotalConfig, SortOptions } from './common-utils';
|
|
3
3
|
export declare type SwitchOptions = {
|
|
4
4
|
type: 'switch';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { Prettify } from '../../../shared/models';
|
|
1
2
|
import { BaseFieldConfig } from './base-field-config';
|
|
2
3
|
import { DateInputOptions, InputOptions } from './field-options';
|
|
3
|
-
import { FieldSendModeType
|
|
4
|
+
import { FieldSendModeType } from './types-helper';
|
|
4
5
|
export declare type PredicateFieldConfig = Prettify<BaseFieldConfig & {
|
|
5
6
|
sendMode: Exclude<FieldSendModeType, 'custom'>;
|
|
6
7
|
render: InputOptions | DateInputOptions;
|
package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/models/types-helper.d.ts
RENAMED
|
@@ -3,15 +3,6 @@ import { AggregationFieldConfig } from './aggregation-field-config';
|
|
|
3
3
|
import { AggregationResponse } from './aggregation-response.model';
|
|
4
4
|
import { AutocompleteOptions, CheckboxOptions, CustomOptions, DateInputOptions, DateListOptions, DropdownOptions, InputOptions, RadioOptions, SwitchOptions } from './field-options';
|
|
5
5
|
import { ActiveUserSwitcherOptions } from './field-options/custom-fields-options';
|
|
6
|
-
export declare type StringOrNumber = string | number;
|
|
7
|
-
export declare type StrictOmit<K, T extends keyof K> = Omit<K, T>;
|
|
8
|
-
export declare type LocalizedValue = {
|
|
9
|
-
ar: string;
|
|
10
|
-
en: string;
|
|
11
|
-
};
|
|
12
|
-
export declare type Prettify<T> = {
|
|
13
|
-
[k in keyof T]: T[k];
|
|
14
|
-
} & {};
|
|
15
6
|
export declare type ComparisonOperator = (typeof COMPARISON_OPERATOR)[keyof typeof COMPARISON_OPERATOR];
|
|
16
7
|
export declare type AggregationFieldType = (typeof AGGREGATION_FIELD_TYPES)[keyof typeof AGGREGATION_FIELD_TYPES];
|
|
17
8
|
export declare type PredicateFieldType = (typeof PREDICATE_FIELD_TYPES)[keyof typeof PREDICATE_FIELD_TYPES];
|
|
@@ -34,6 +25,4 @@ export declare type FieldOptionsType = {
|
|
|
34
25
|
fieldConfig: AggregationFieldConfig;
|
|
35
26
|
aggregation: AggregationResponse;
|
|
36
27
|
};
|
|
37
|
-
export declare type EvaluatedString = `${string}{{${string}}}${string}`;
|
|
38
|
-
export declare type TranslateKey = string;
|
|
39
28
|
export {};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./containers/filters-panel/filters-panel.component";
|
|
3
|
+
import * as i2 from "./containers/predicate-field/predicate-field.component";
|
|
4
|
+
import * as i3 from "./containers/aggregation-field/aggregation-field.component";
|
|
5
|
+
import * as i4 from "./containers/custom-field/custom-field.component";
|
|
6
|
+
import * as i5 from "./components/aggregation-autocomplete/aggregation-autocomplete.component";
|
|
7
|
+
import * as i6 from "./components/aggregation-select/aggregation-select.component";
|
|
8
|
+
import * as i7 from "./components/aggregation-checkbox/aggregation-checkbox.component";
|
|
9
|
+
import * as i8 from "./components/aggregation-switch/aggregation-switch.component";
|
|
10
|
+
import * as i9 from "./components/aggregation-radio/aggregation-radio.component";
|
|
11
|
+
import * as i10 from "./components/aggregation-custom/aggregation-custom.component";
|
|
12
|
+
import * as i11 from "./components/aggregation-date-list/aggregation-date-list.component";
|
|
13
|
+
import * as i12 from "./components/predicate-text-input/predicate-text-input.component";
|
|
14
|
+
import * as i13 from "./components/predicate-date-input/predicate-date-input.component";
|
|
15
|
+
import * as i14 from "./custom-components/active-user-switch/active-user-switch.component";
|
|
16
|
+
import * as i15 from "./directives/checkbox-template.directive";
|
|
17
|
+
import * as i16 from "./directives/radio-template.directive";
|
|
18
|
+
import * as i17 from "./directives/switch-template.directive";
|
|
19
|
+
import * as i18 from "./directives/dropdown-template.directive";
|
|
20
|
+
import * as i19 from "./directives/autocomplete-template.directive";
|
|
21
|
+
import * as i20 from "./directives/custom-template.directive";
|
|
22
|
+
import * as i21 from "./directives/dropdown-label-template.directive";
|
|
23
|
+
import * as i22 from "./directives/date-template.directive";
|
|
24
|
+
import * as i23 from "./pipes/autocomplete-filter.pipe";
|
|
25
|
+
import * as i24 from "./pipes/filter.pipe";
|
|
26
|
+
import * as i25 from "./pipes/localized-label.pipe";
|
|
27
|
+
import * as i26 from "./pipes/hash-translate.pipe";
|
|
28
|
+
import * as i27 from "./pipes/sanitizer.pipe";
|
|
29
|
+
import * as i28 from "./pipes/sort.pipe";
|
|
30
|
+
import * as i29 from "./pipes/tooltip.pipe";
|
|
31
|
+
import * as i30 from "./pipes/roles-filters.pipe";
|
|
32
|
+
import * as i31 from "./pipes/check-condition.pipe";
|
|
33
|
+
import * as i32 from "./components/__parts/filter-option-text/filter-option-text.component";
|
|
34
|
+
import * as i33 from "./components/__parts/filter-search-input/filter-search-input.component";
|
|
35
|
+
import * as i34 from "./components/__parts/filter-collapse-control/filter-collapse-control.component";
|
|
36
|
+
import * as i35 from "./components/__parts/field-header.component";
|
|
37
|
+
import * as i36 from "./components/__parts/filter-empty-message.component";
|
|
38
|
+
import * as i37 from "./components/__parts/filter-date-range/filter-date-range.component";
|
|
39
|
+
import * as i38 from "./components/__parts/filter-autocomplete-input/filter-autocomplete-input.component";
|
|
40
|
+
import * as i39 from "./components/__parts/filter-options-sort/filter-options-sort.component";
|
|
41
|
+
import * as i40 from "./components/__parts/html-dialog/html-dialog.component";
|
|
42
|
+
import * as i41 from "@angular/common";
|
|
43
|
+
import * as i42 from "@angular/forms";
|
|
44
|
+
import * as i43 from "@ng-select/ng-select";
|
|
45
|
+
import * as i44 from "@angular/material/checkbox";
|
|
46
|
+
import * as i45 from "@angular/material/button";
|
|
47
|
+
import * as i46 from "@angular/material/icon";
|
|
48
|
+
import * as i47 from "@angular/material/menu";
|
|
49
|
+
import * as i48 from "@angular/material/slide-toggle";
|
|
50
|
+
import * as i49 from "@angular/material/radio";
|
|
51
|
+
import * as i50 from "@angular/material/input";
|
|
52
|
+
import * as i51 from "@angular/material/autocomplete";
|
|
53
|
+
import * as i52 from "@angular/material/tooltip";
|
|
54
|
+
import * as i53 from "@angular/material/dialog";
|
|
55
|
+
import * as i54 from "@angular/material/progress-spinner";
|
|
56
|
+
import * as i55 from "@ngx-translate/core";
|
|
57
|
+
import * as i56 from "../dynamic-form/dynamic-form.module";
|
|
58
|
+
import * as i57 from "../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
|
|
59
|
+
import * as i58 from "../../directive/directive.module";
|
|
60
|
+
import * as i59 from "../ndf-datepicker/ndf-datepicker.module";
|
|
61
|
+
import * as i60 from "ngx-mask";
|
|
62
|
+
export declare class NdfFiltersPanelModule {
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NdfFiltersPanelModule, never>;
|
|
64
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NdfFiltersPanelModule, [typeof i1.FiltersPanelComponent, typeof i2.PredicateFieldComponent, typeof i3.AggregationFieldComponent, typeof i4.CustomFieldComponent, typeof i5.AggregationAutocompleteComponent, typeof i6.AggregationSelectComponent, typeof i7.AggregationCheckboxComponent, typeof i8.AggregationSwitchComponent, typeof i9.AggregationRadioComponent, typeof i10.AggregationCustomComponent, typeof i11.AggregationDateListComponent, typeof i12.PredicateTextInputComponent, typeof i13.PredicateDateInputComponent, typeof i14.ActiveUserSwitchComponent, typeof i15.CheckboxTemplateDirective, typeof i16.RadioTemplateDirective, typeof i17.SwitchTemplateDirective, typeof i18.DropdownTemplateDirective, typeof i19.AutocompleteTemplateDirective, typeof i20.CustomTemplateDirective, typeof i21.DropdownLabelTemplateDirective, typeof i21.DropdownMultiLabelTemplateDirective, typeof i22.DateListTemplateDirective, typeof i23.AutocompleteFilterPipe, typeof i24.FilterPipe, typeof i25.LocalizedLabelPipe, typeof i26.HashTranslatePipe, typeof i26.HashTranslateAsyncPipe, typeof i27.SanitizerPipe, typeof i28.SortListPipe, typeof i29.TooltipPipe, typeof i30.FiltersByRolesPipe, typeof i31.CheckConditionPipe, typeof i32.FilterOptionTextComponent, typeof i33.FilterSearchInputComponent, typeof i34.FilterCollapseControlComponent, typeof i35.FieldHeaderComponent, typeof i36.FilterEmptyMessageComponent, typeof i37.FilterDateRangeComponent, typeof i38.FilterAutocompleteInputComponent, typeof i39.FilterOptionsSortComponent, typeof i40.HtmlDialogComponent], [typeof i41.CommonModule, typeof i42.FormsModule, typeof i42.ReactiveFormsModule, typeof i43.NgSelectModule, typeof i44.MatCheckboxModule, typeof i45.MatButtonModule, typeof i46.MatIconModule, typeof i47.MatMenuModule, typeof i48.MatSlideToggleModule, typeof i49.MatRadioModule, typeof i50.MatInputModule, typeof i51.MatAutocompleteModule, typeof i52.MatTooltipModule, typeof i53.MatDialogModule, typeof i54.MatProgressSpinnerModule, typeof i55.TranslateModule, typeof i56.DynamicFormModule, typeof i57.NuxeoDialogModule, typeof i58.DirectiveModule, typeof i59.NdfDatepickerModule, typeof i60.NgxMaskModule], [typeof i1.FiltersPanelComponent, typeof i2.PredicateFieldComponent, typeof i3.AggregationFieldComponent, typeof i4.CustomFieldComponent, typeof i5.AggregationAutocompleteComponent, typeof i6.AggregationSelectComponent, typeof i7.AggregationCheckboxComponent, typeof i8.AggregationSwitchComponent, typeof i9.AggregationRadioComponent, typeof i10.AggregationCustomComponent, typeof i11.AggregationDateListComponent, typeof i12.PredicateTextInputComponent, typeof i13.PredicateDateInputComponent, typeof i14.ActiveUserSwitchComponent, typeof i15.CheckboxTemplateDirective, typeof i16.RadioTemplateDirective, typeof i17.SwitchTemplateDirective, typeof i18.DropdownTemplateDirective, typeof i19.AutocompleteTemplateDirective, typeof i20.CustomTemplateDirective, typeof i21.DropdownLabelTemplateDirective, typeof i21.DropdownMultiLabelTemplateDirective, typeof i22.DateListTemplateDirective, typeof i40.HtmlDialogComponent]>;
|
|
65
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NdfFiltersPanelModule>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { Evaluator } from '../../../shared/evaluator';
|
|
3
|
+
import { NuxeoService } from '../../../core/services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CheckConditionPipe implements PipeTransform {
|
|
6
|
+
nuxeoService: NuxeoService;
|
|
7
|
+
user: Record<string, any>;
|
|
8
|
+
constructor(nuxeoService: NuxeoService);
|
|
9
|
+
transform(condition: string, aggregations: Record<string, any>, language: string): Evaluator;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckConditionPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CheckConditionPipe, "checkCondition">;
|
|
12
|
+
}
|
package/lib/components/{tables/ndf-table/filters-panel → ndf-filters}/pipes/roles-filters.pipe.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { NuxeoService, RolesService } from '
|
|
2
|
+
import { NuxeoService, RolesService } from '../../../core/services';
|
|
3
3
|
import { FieldConfigModel } from '../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class FiltersByRolesPipe implements PipeTransform {
|
package/lib/components/{tables/ndf-table/filters-panel/index.d.ts → ndf-filters/public-api.d.ts}
RENAMED
|
@@ -3,8 +3,9 @@ export * from './constants';
|
|
|
3
3
|
export * from './containers';
|
|
4
4
|
export * from './custom-components';
|
|
5
5
|
export * from './directives';
|
|
6
|
-
export * from './filters-panel.module';
|
|
6
|
+
export * from './ndf-filters-panel.module';
|
|
7
7
|
export * from './models';
|
|
8
8
|
export * from './pipes';
|
|
9
9
|
export * from './services/filters-query.service';
|
|
10
|
+
export * from './services/filters-mapper.service';
|
|
10
11
|
export * from './utility';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { NdfTransformService } from '
|
|
2
|
+
import { NdfTransformService } from '../../../core/services';
|
|
3
3
|
import { FieldOptionsType, FilterOption } from '../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class AggregationFieldService {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { ComparisonOperator,
|
|
2
|
-
import {
|
|
1
|
+
import { ComparisonOperator, FieldConfigModel, FieldValueObject } from "../models";
|
|
2
|
+
import { OperatorValueObject } from '../models/operator-value-object';
|
|
3
|
+
import { NxQL } from './nxql';
|
|
3
4
|
export declare class NxQlQuery extends NxQL {
|
|
4
|
-
static preparePayloadItem(value: FieldValueObject, field: FieldConfigModel):
|
|
5
|
+
static preparePayloadItem(value: FieldValueObject, field: FieldConfigModel): OperatorValueObject;
|
|
5
6
|
static prepareValueByOperator(operator: ComparisonOperator, fieldValue: FieldValueObject): string;
|
|
6
7
|
static equals(value: string, prefix?: string): string;
|
|
7
8
|
static like(value: string, prefix?: string): string;
|
|
@@ -16,7 +16,7 @@ export declare abstract class BaseReport<TDefinition extends ReportDefinitionMod
|
|
|
16
16
|
protected _criteriaSub: ReplaySubject<{
|
|
17
17
|
params?: Record<string, any>;
|
|
18
18
|
payload?: {
|
|
19
|
-
predicateList: import("nuxeo-development-framework").
|
|
19
|
+
predicateList: import("nuxeo-development-framework").OperatorValueObject[];
|
|
20
20
|
aggregationNames?: {
|
|
21
21
|
name: string;
|
|
22
22
|
interval: import("../models").TimeGroups;
|
|
@@ -26,7 +26,7 @@ export declare abstract class BaseReport<TDefinition extends ReportDefinitionMod
|
|
|
26
26
|
criteria$: import("rxjs").Observable<{
|
|
27
27
|
params?: Record<string, any>;
|
|
28
28
|
payload?: {
|
|
29
|
-
predicateList: import("nuxeo-development-framework").
|
|
29
|
+
predicateList: import("nuxeo-development-framework").OperatorValueObject[];
|
|
30
30
|
aggregationNames?: {
|
|
31
31
|
name: string;
|
|
32
32
|
interval: import("../models").TimeGroups;
|
|
@@ -43,7 +43,7 @@ export declare abstract class BaseReport<TDefinition extends ReportDefinitionMod
|
|
|
43
43
|
onOpen: EventEmitter<{
|
|
44
44
|
params?: Record<string, any>;
|
|
45
45
|
payload?: {
|
|
46
|
-
predicateList: import("nuxeo-development-framework").
|
|
46
|
+
predicateList: import("nuxeo-development-framework").OperatorValueObject[];
|
|
47
47
|
aggregationNames?: {
|
|
48
48
|
name: string;
|
|
49
49
|
interval: import("../models").TimeGroups;
|
|
@@ -20,7 +20,7 @@ export declare class NdfReportComponent extends DestroySubject {
|
|
|
20
20
|
onOpen: EventEmitter<{
|
|
21
21
|
params?: Record<string, any>;
|
|
22
22
|
payload?: {
|
|
23
|
-
predicateList: import("nuxeo-development-framework").
|
|
23
|
+
predicateList: import("nuxeo-development-framework").OperatorValueObject[];
|
|
24
24
|
aggregationNames?: {
|
|
25
25
|
name: string;
|
|
26
26
|
interval: import("../../models").TimeGroups;
|
package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ import { Router } from '@angular/router';
|
|
|
5
5
|
import { TranslateService } from '@ngx-translate/core';
|
|
6
6
|
import { DestroySubject, FluidHeightDirective } from '../../../../../shared';
|
|
7
7
|
import { Observable } from 'rxjs';
|
|
8
|
-
import {
|
|
8
|
+
import { NdfTableConfig } from '../../../../tables';
|
|
9
|
+
import { FieldConfigModel, FilterQueryService, FiltersMapperService, FormQueryModel } from '../../../../ndf-filters';
|
|
9
10
|
import { CriteriaModel, NdfReportsConfig, ReportConfigModel } from '../../models';
|
|
10
11
|
import { ChartManagerService, NdfReportsService, ReportsStateService, ReportTransformService } from '../../services';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
@@ -37,7 +38,7 @@ export declare class NdfReportsComponent extends DestroySubject implements OnIni
|
|
|
37
38
|
readonly filtersParams$: Observable<{
|
|
38
39
|
params?: Record<string, any>;
|
|
39
40
|
payload?: {
|
|
40
|
-
predicateList: import("../../../../
|
|
41
|
+
predicateList: import("../../../../ndf-filters").OperatorValueObject[];
|
|
41
42
|
aggregationNames?: {
|
|
42
43
|
name: string;
|
|
43
44
|
interval: import("../../models").TimeGroups;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { OperatorReturn } from '../../../tables/ndf-table/models';
|
|
2
1
|
import { CustomChartOptions } from '../../charts/models';
|
|
3
2
|
import { CHARTS_TYPES, TIME_GROUPS } from '../constants';
|
|
3
|
+
import { OperatorValueObject } from '../../../ndf-filters/models/operator-value-object';
|
|
4
4
|
export declare type ChartTypes = (typeof CHARTS_TYPES)[keyof typeof CHARTS_TYPES];
|
|
5
5
|
export declare type TimeGroups = (typeof TIME_GROUPS)[keyof typeof TIME_GROUPS];
|
|
6
6
|
declare type BaseChartType<Key extends ChartTypes> = Key extends (typeof CHARTS_TYPES)['verticalBar'] | (typeof CHARTS_TYPES)['horizontalBar'] ? 'bar' : Key;
|
|
@@ -10,7 +10,7 @@ export declare type ChartOptionsByType = {
|
|
|
10
10
|
export declare type CriteriaModel = {
|
|
11
11
|
params?: Record<string, any>;
|
|
12
12
|
payload?: {
|
|
13
|
-
predicateList:
|
|
13
|
+
predicateList: OperatorValueObject[];
|
|
14
14
|
aggregationNames?: {
|
|
15
15
|
name: string;
|
|
16
16
|
interval: TimeGroups;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FieldConfigModel } from '../../../
|
|
1
|
+
import { FieldConfigModel } from '../../../ndf-filters';
|
|
2
2
|
import { ReportDetailsConfig } from './details';
|
|
3
3
|
import { NdfReportsRequest } from './request';
|
|
4
4
|
import { ReportDefinitionModel } from './report-config';
|
|
@@ -23,7 +23,7 @@ import * as i21 from "@angular/forms";
|
|
|
23
23
|
import * as i22 from "@ng-select/ng-select";
|
|
24
24
|
import * as i23 from "@angular/material/tooltip";
|
|
25
25
|
import * as i24 from "../../../shared/directives/fluid-height.directive";
|
|
26
|
-
import * as i25 from "../../
|
|
26
|
+
import * as i25 from "../../ndf-filters/ndf-filters-panel.module";
|
|
27
27
|
import * as i26 from "@angular/material/progress-spinner";
|
|
28
28
|
import * as i27 from "../../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
|
|
29
29
|
import * as i28 from "../../tables/ndf-table/ndf-table.module";
|
|
@@ -31,6 +31,6 @@ import * as i29 from "../../../directive/directive.module";
|
|
|
31
31
|
import * as i30 from "../../ndf-config-editor/public/editor-navigate-button";
|
|
32
32
|
export declare class NdfReportsModule {
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<NdfReportsModule, never>;
|
|
34
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NdfReportsModule, [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent, typeof i3.ChartTypeSelectorComponent, typeof i4.DigitReportComponent, typeof i5.GraphReportComponent, typeof i6.DynamicTimelineReportComponent, typeof i7.TimeGroupSelectorComponent, typeof i8.GraphDialogComponent, typeof i9.TimelineDialogComponent, typeof i10.ChartPanelComponent, typeof i10.ChartPanelHeaderComponent, typeof i10.ChartPanelFooterComponent, typeof i11.ScrollableDivDirective, typeof i12.GraphChartComponent, typeof i13.DigitChartComponent], [typeof i14.CommonModule, typeof i15.TranslateModule, typeof i16.MatMenuModule, typeof i17.MatIconModule, typeof i18.MatButtonModule, typeof i19.ChartsModule, typeof i20.DynamicFormModule, typeof i21.ReactiveFormsModule, typeof i21.FormsModule, typeof i22.NgSelectModule, typeof i23.MatTooltipModule, typeof i24.FluidHeightModule, typeof i25.
|
|
34
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NdfReportsModule, [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent, typeof i3.ChartTypeSelectorComponent, typeof i4.DigitReportComponent, typeof i5.GraphReportComponent, typeof i6.DynamicTimelineReportComponent, typeof i7.TimeGroupSelectorComponent, typeof i8.GraphDialogComponent, typeof i9.TimelineDialogComponent, typeof i10.ChartPanelComponent, typeof i10.ChartPanelHeaderComponent, typeof i10.ChartPanelFooterComponent, typeof i11.ScrollableDivDirective, typeof i12.GraphChartComponent, typeof i13.DigitChartComponent], [typeof i14.CommonModule, typeof i15.TranslateModule, typeof i16.MatMenuModule, typeof i17.MatIconModule, typeof i18.MatButtonModule, typeof i19.ChartsModule, typeof i20.DynamicFormModule, typeof i21.ReactiveFormsModule, typeof i21.FormsModule, typeof i22.NgSelectModule, typeof i23.MatTooltipModule, typeof i24.FluidHeightModule, typeof i25.NdfFiltersPanelModule, typeof i26.MatProgressSpinnerModule, typeof i27.NuxeoDialogModule, typeof i28.NdfTableModule, typeof i29.DirectiveModule, typeof i30.EditorNavigateButton], [typeof i1.NdfReportsComponent, typeof i2.NdfReportComponent]>;
|
|
35
35
|
static ɵinj: i0.ɵɵInjectorDeclaration<NdfReportsModule>;
|
|
36
36
|
}
|
|
@@ -19,7 +19,7 @@ export declare class DynamicTimelineReportService {
|
|
|
19
19
|
prepareData(): import("rxjs").UnaryFunction<import("rxjs").Observable<[DynamicLineChart, {
|
|
20
20
|
params?: Record<string, any>;
|
|
21
21
|
payload?: {
|
|
22
|
-
predicateList: import("nuxeo-development-framework").
|
|
22
|
+
predicateList: import("nuxeo-development-framework").OperatorValueObject[];
|
|
23
23
|
aggregationNames?: {
|
|
24
24
|
name: string;
|
|
25
25
|
interval: TimeGroups;
|
|
@@ -10,7 +10,7 @@ export declare class TextSearchComponent extends DestroySubject implements OnIni
|
|
|
10
10
|
searchChange: EventEmitter<string>;
|
|
11
11
|
openModal: EventEmitter<void>;
|
|
12
12
|
clear: EventEmitter<void>;
|
|
13
|
-
get dialogConfig(): import("
|
|
13
|
+
get dialogConfig(): import("../../../../ndf-filters").HtmlDialogConfig;
|
|
14
14
|
get sendMode(): "realTime" | "triggered";
|
|
15
15
|
get showSendButton(): boolean;
|
|
16
16
|
ngOnInit(): void;
|
|
@@ -3,14 +3,15 @@ import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/co
|
|
|
3
3
|
import { MatDialog } from '@angular/material/dialog';
|
|
4
4
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
6
|
-
import { AggregationResponse, FormQueryModel } from '
|
|
6
|
+
import { AggregationResponse, FormQueryModel } from '../../../../ndf-filters';
|
|
7
7
|
import { CustomCriteriaModel, ExportType, NdfTableConfig, SortTableItem, TableColumnConfig, TableSortOptions, TableViewMode } from '../../models';
|
|
8
|
-
import {
|
|
8
|
+
import { NdfTableConfigurationService, NdfTableService } from '../../services';
|
|
9
9
|
import { PageEvent } from '@angular/material/paginator/paginator';
|
|
10
10
|
import { DestroySubject } from '../../../../../shared/components';
|
|
11
11
|
import { NuxeoPagination } from '../../../../../shared/models';
|
|
12
12
|
import { DynamicTableService } from '../../../dynamic-table';
|
|
13
13
|
import { CustomToastrService } from '../../../../custom-toastr/services/custom-toastr.service';
|
|
14
|
+
import { FiltersMapperService } from '../../../../ndf-filters/services';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class NdfTableComponent extends DestroySubject implements OnChanges {
|
|
16
17
|
private _filtersMapper;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FieldConfigModel } from
|
|
1
|
+
import { FieldConfigModel } from "../../../ndf-filters";
|
|
2
2
|
import { GlobalSearchConfig } from './search.config';
|
|
3
3
|
import { TableModeConfig, TableSortConfig } from './table-mode';
|
|
4
4
|
import { LabelValue, SortTableItem } from './types';
|