nuxeo-development-framework 0.0.2 → 0.0.3-bos
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/README.md +24 -24
- package/fesm2022/nuxeo-development-framework.mjs +48407 -0
- package/fesm2022/nuxeo-development-framework.mjs.map +1 -0
- package/{nuxeo-development-framework.d.ts → index.d.ts} +1 -0
- package/lib/components/activities-log/activities-log/activities-log.component.d.ts +30 -0
- package/lib/components/activities-log/activities-log/activities-log.service.d.ts +9 -0
- package/lib/components/activities-log/activities-log.module.d.ts +12 -0
- package/lib/components/activity/activity/activity.component.d.ts +13 -0
- package/lib/components/activity/activity.module.d.ts +13 -0
- package/lib/components/attachment-item/attachment-item/attachment-item.component.d.ts +21 -0
- package/lib/components/attachment-item/attachment-item.module.d.ts +13 -0
- package/lib/components/attachment-modal/attachment-modal.module.d.ts +12 -0
- package/lib/components/attachment-modal/attachments/attachments.component.d.ts +50 -0
- package/lib/components/avatar/avatar/avatar.component.d.ts +23 -0
- package/lib/components/avatar/avatar.module.d.ts +13 -0
- package/lib/components/card/card.component.d.ts +33 -0
- package/lib/components/card/card.module.d.ts +12 -0
- package/lib/components/comments/comments.module.d.ts +27 -0
- package/lib/components/comments/components/comment-item/comment-item.component.d.ts +26 -0
- package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +47 -0
- package/lib/components/comments/components/comments-list/comments-list.component.d.ts +28 -0
- package/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.d.ts +25 -0
- package/lib/components/comments/constants/comment.d.ts +25 -0
- package/lib/components/comments/services/comment-api.service.d.ts +16 -0
- package/lib/components/confirm-caller/confirm-caller.dialog.d.ts +46 -0
- package/lib/components/confirm-caller/confirm-caller.module.d.ts +17 -0
- package/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.d.ts +12 -0
- package/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +12 -0
- package/lib/components/confirmation-dialog/confirmation-dialog.module.d.ts +10 -0
- package/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.d.ts +34 -0
- package/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.d.ts +45 -0
- package/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.d.ts +31 -0
- package/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.d.ts +18 -0
- package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +50 -0
- package/lib/components/correspondence-relation/correspondence-relation.module.d.ts +32 -0
- package/lib/components/correspondence-relation/services/correspondence-realation.service.d.ts +26 -0
- package/lib/components/correspondence-relation/services/viewer-files.service.d.ts +18 -0
- package/lib/components/create-entity/create-entity/create-entity.component.d.ts +17 -0
- package/lib/components/create-entity/create-entity.module.d.ts +11 -0
- package/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.d.ts +45 -0
- package/lib/components/cts-tags/cts-tags.module.d.ts +21 -0
- package/lib/components/cts-tags/services/tags-api.service.d.ts +17 -0
- package/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.d.ts +23 -0
- package/lib/components/custom-toastr/custom-toastr.module.d.ts +12 -0
- package/lib/components/custom-toastr/interfaces/toast-type.interface.d.ts +1 -0
- package/lib/components/custom-toastr/services/custom-toastr.service.d.ts +30 -0
- package/lib/components/diagrams/components/base-node.component.d.ts +30 -0
- package/lib/components/diagrams/components/circle-node/circle-node.component.d.ts +7 -0
- package/lib/components/diagrams/components/connection-label.component.d.ts +19 -0
- package/lib/components/diagrams/components/content-node/content-node.component.d.ts +8 -0
- package/lib/components/diagrams/components/custom-connection.component.d.ts +13 -0
- package/lib/components/diagrams/components/custom-socket.component.d.ts +6 -0
- package/lib/components/diagrams/components/gateway-node/gateway-node.component.d.ts +6 -0
- package/lib/components/diagrams/components/gateway-ports.component.d.ts +11 -0
- package/lib/components/diagrams/components/index.d.ts +15 -0
- package/lib/components/diagrams/components/node-icon.component.d.ts +8 -0
- package/lib/components/diagrams/components/node-inputs.component.d.ts +11 -0
- package/lib/components/diagrams/components/node-outputs.component.d.ts +11 -0
- package/lib/components/diagrams/components/node-ports.component.d.ts +12 -0
- package/lib/components/diagrams/components/remove-button.component.d.ts +7 -0
- package/lib/components/diagrams/components/status-icon.component.d.ts +8 -0
- package/lib/components/diagrams/components/template-node/template-node.component.d.ts +17 -0
- package/lib/components/diagrams/components/zoom-control.component.d.ts +11 -0
- package/lib/components/diagrams/constants/defaults.d.ts +1 -0
- package/lib/components/diagrams/constants/direction.d.ts +6 -0
- package/lib/components/diagrams/constants/index.d.ts +7 -0
- package/lib/components/diagrams/constants/message-type.d.ts +4 -0
- package/lib/components/diagrams/constants/node-type.d.ts +7 -0
- package/lib/components/diagrams/constants/notify-events.d.ts +3 -0
- package/lib/components/diagrams/constants/sizes.d.ts +7 -0
- package/lib/components/diagrams/constants/status.d.ts +11 -0
- package/lib/components/diagrams/diagrams.module.d.ts +29 -0
- package/lib/components/diagrams/directive/diagram.directive.d.ts +27 -0
- package/lib/components/diagrams/directive/index.d.ts +1 -0
- package/lib/components/diagrams/editor/customize.d.ts +24 -0
- package/lib/components/diagrams/editor/editor.d.ts +3 -0
- package/lib/components/diagrams/editor/index.d.ts +4 -0
- package/lib/components/diagrams/editor/overrides/connection-path.transformers.d.ts +2 -0
- package/lib/components/diagrams/editor/overrides/index.d.ts +1 -0
- package/lib/components/diagrams/editor/path-plugin.d.ts +4 -0
- package/lib/components/diagrams/editor/socket-position-watcher.d.ts +3 -0
- package/lib/components/diagrams/index.d.ts +1 -0
- package/lib/components/diagrams/models/base-node.model.d.ts +30 -0
- package/lib/components/diagrams/models/circle-node.model.d.ts +7 -0
- package/lib/components/diagrams/models/common.type.d.ts +4 -0
- package/lib/components/diagrams/models/connection-config.type.d.ts +11 -0
- package/lib/components/diagrams/models/connection-label.type.d.ts +4 -0
- package/lib/components/diagrams/models/connection.model.d.ts +20 -0
- package/lib/components/diagrams/models/content-node.model.d.ts +5 -0
- package/lib/components/diagrams/models/customization.type.d.ts +10 -0
- package/lib/components/diagrams/models/diagram-config.type.d.ts +40 -0
- package/lib/components/diagrams/models/diagram-editor.type.d.ts +26 -0
- package/lib/components/diagrams/models/emitter-type.d.ts +5 -0
- package/lib/components/diagrams/models/gate-way.model.d.ts +8 -0
- package/lib/components/diagrams/models/index.d.ts +24 -0
- package/lib/components/diagrams/models/layout.type.d.ts +13 -0
- package/lib/components/diagrams/models/node-content.d.ts +9 -0
- package/lib/components/diagrams/models/node-definition.d.ts +20 -0
- package/lib/components/diagrams/models/node-status.type.d.ts +2 -0
- package/lib/components/diagrams/models/node.type.d.ts +2 -0
- package/lib/components/diagrams/models/notify-event.type.d.ts +2 -0
- package/lib/components/diagrams/models/path.type.d.ts +18 -0
- package/lib/components/diagrams/models/ports-config.type.d.ts +12 -0
- package/lib/components/diagrams/models/ports.model.d.ts +11 -0
- package/lib/components/diagrams/models/schemes.d.ts +5 -0
- package/lib/components/diagrams/models/socket.model.d.ts +7 -0
- package/lib/components/diagrams/models/socket.type.d.ts +5 -0
- package/lib/components/diagrams/models/template-node.model.d.ts +8 -0
- package/lib/components/diagrams/public-api.d.ts +7 -0
- package/lib/components/diagrams/services/diagram-plugins.service.d.ts +16 -0
- package/lib/components/diagrams/services/diagram.service.d.ts +54 -0
- package/lib/components/diagrams/services/index.d.ts +4 -0
- package/lib/components/diagrams/services/message.service.d.ts +10 -0
- package/lib/components/diagrams/services/workflow.service.d.ts +80 -0
- package/lib/components/diagrams/utilities/common.d.ts +19 -0
- package/lib/components/diagrams/utilities/index.d.ts +4 -0
- package/lib/components/diagrams/utilities/random.d.ts +1 -0
- package/lib/components/diagrams/utilities/remove.util.d.ts +29 -0
- package/lib/components/diagrams/utilities/serialize.d.ts +15 -0
- package/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.d.ts +17 -0
- package/lib/components/display-suitable-icon/display-suitable-icon/icon.service.d.ts +16 -0
- package/lib/components/display-suitable-icon/display-suitable-icon.module.d.ts +8 -0
- package/lib/components/documents/components/attachments-list/attachments-list.component.d.ts +55 -0
- package/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.d.ts +38 -0
- package/lib/components/documents/components/document-list/documents-list.component.d.ts +81 -0
- package/lib/components/documents/components/document-scan/document-scan.component.d.ts +112 -0
- package/lib/components/documents/components/document-scan/document-scan.service.d.ts +14 -0
- package/lib/components/documents/components/document-upload/document-upload.component.d.ts +66 -0
- package/lib/components/documents/components/documents/documents.component.d.ts +27 -0
- package/lib/components/documents/constants/document-templates.d.ts +33 -0
- package/lib/components/documents/constants/documents.d.ts +95 -0
- package/lib/components/documents/documents.module.d.ts +33 -0
- package/lib/components/documents/services/document-templates.service.d.ts +24 -0
- package/lib/components/documents/services/documents.service.d.ts +36 -0
- package/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.d.ts +79 -0
- package/lib/components/dynamic-chart/dynamic-chart.module.d.ts +15 -0
- package/lib/components/dynamic-chart/services/chart-data.service.d.ts +37 -0
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.d.ts +145 -0
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.d.ts +14 -0
- package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +55 -0
- package/lib/components/dynamic-filter/dynamic-filter.module.d.ts +17 -0
- package/lib/components/dynamic-form/components/department-form/department-form.component.d.ts +28 -0
- package/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.d.ts +30 -0
- package/lib/components/dynamic-form/components/dynamic-form/fields.adapter.d.ts +6 -0
- package/lib/components/dynamic-form/components/dynamic-form/form-builder.service.d.ts +21 -0
- package/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.d.ts +17 -0
- package/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.d.ts +57 -0
- package/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.d.ts +35 -0
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.d.ts +70 -0
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.d.ts +52 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/constants/department.d.ts +12 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.d.ts +91 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.d.ts +33 -0
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.d.ts +23 -0
- package/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.d.ts +30 -0
- package/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.d.ts +74 -0
- package/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.d.ts +25 -0
- package/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.d.ts +15 -0
- package/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.d.ts +45 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.d.ts +44 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.d.ts +65 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.d.ts +104 -0
- package/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.d.ts +17 -0
- package/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.d.ts +86 -0
- package/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.d.ts +40 -0
- package/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.d.ts +71 -0
- package/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.d.ts +94 -0
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.d.ts +22 -0
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.d.ts +132 -0
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/hight-light-text.pipe.d.ts +7 -0
- package/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.d.ts +20 -0
- package/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.d.ts +81 -0
- package/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.d.ts +599 -0
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.d.ts +13 -0
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.d.ts +13 -0
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.d.ts +16 -0
- package/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.d.ts +13 -0
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.d.ts +2 -0
- package/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.d.ts +9 -0
- package/lib/components/dynamic-form/dynamic-form.module.d.ts +69 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.d.ts +5 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.d.ts +5 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.d.ts +15 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.d.ts +4 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.d.ts +12 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.d.ts +8 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.d.ts +10 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.d.ts +5 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.d.ts +8 -0
- package/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.d.ts +9 -0
- package/lib/components/dynamic-form/models/dynamic-form-baseitem.model.d.ts +21 -0
- package/lib/components/dynamic-form/models/dynamic-form-boolitem.model.d.ts +11 -0
- package/lib/components/dynamic-form/models/dynamic-form-dateitem.model.d.ts +13 -0
- package/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.d.ts +9 -0
- package/lib/components/dynamic-form/models/dynamic-form-mapitem.model.d.ts +8 -0
- package/lib/components/dynamic-form/models/dynamic-form-selectitem.model.d.ts +11 -0
- package/lib/components/dynamic-form/models/dynamic-form-textitem.model.d.ts +15 -0
- package/lib/components/dynamic-form/models/dynamic-form.models.d.ts +7 -0
- package/lib/components/dynamic-form/services/card-item-types.service.d.ts +13 -0
- package/lib/components/dynamic-form/services/dynamic-component-mapper.service.d.ts +36 -0
- package/lib/components/dynamic-form/services/dynamic-form-update.service.d.ts +25 -0
- package/lib/components/dynamic-form/utils/custom-from-group.d.ts +4 -0
- package/lib/components/dynamic-form/utils/generate-guid.d.ts +1 -0
- package/lib/components/dynamic-form/utils/index.d.ts +2 -0
- package/lib/components/dynamic-form/validators/length-validator.d.ts +7 -0
- package/lib/components/dynamic-form/validators/regex-validator.d.ts +7 -0
- package/lib/components/dynamic-form/validators/required-validator.d.ts +5 -0
- package/lib/components/dynamic-form/validators/value-validator.d.ts +7 -0
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +110 -0
- package/lib/components/dynamic-search/dynamic-search.module.d.ts +20 -0
- package/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.d.ts +13 -0
- package/lib/components/dynamic-tabs/dynamic-tabs.module.d.ts +11 -0
- package/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.d.ts +13 -0
- package/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.d.ts +22 -0
- package/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.d.ts +28 -0
- package/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.d.ts +16 -0
- package/lib/components/dynamic-view/data-viewer/data-viewer.component.d.ts +13 -0
- package/lib/components/dynamic-view/date-viewer/date-viewer.component.d.ts +22 -0
- package/lib/components/dynamic-view/department-viewer/department-viewer.component.d.ts +30 -0
- package/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.d.ts +39 -0
- package/lib/components/dynamic-view/dynamic-view.module.d.ts +25 -0
- package/lib/components/dynamic-view/dynamic-viewe.service.d.ts +15 -0
- package/lib/components/dynamic-view/list-viewer/list-viewer.component.d.ts +20 -0
- package/lib/components/file-manger/components/add-to-collection/add-to-collection.component.d.ts +49 -0
- package/lib/components/file-manger/components/clipboard/clipboard.component.d.ts +41 -0
- package/lib/components/file-manger/components/copy/copy.component.d.ts +41 -0
- package/lib/components/file-manger/components/create-directory/create-directory.component.d.ts +31 -0
- package/lib/components/file-manger/components/create-modal/create-modal.component.d.ts +106 -0
- package/lib/components/file-manger/components/creation-type/creation-type.component.d.ts +13 -0
- package/lib/components/file-manger/components/delete/delete.component.d.ts +32 -0
- package/lib/components/file-manger/components/folder-modal/folder-modal.component.d.ts +57 -0
- package/lib/components/file-manger/components/loan-request/loan-request.component.d.ts +30 -0
- package/lib/components/file-manger/components/move/move.component.d.ts +41 -0
- package/lib/components/file-manger/components/publish-dialog/publish-dialog.component.d.ts +39 -0
- package/lib/components/file-manger/components/rename/rename.component.d.ts +32 -0
- package/lib/components/file-manger/components/scan-modal/scan-modal.component.d.ts +96 -0
- package/lib/components/file-manger/components/share-dialog/share-dialog-types.d.ts +61 -0
- package/lib/components/file-manger/components/share-dialog/share-dialog.component.d.ts +63 -0
- package/lib/components/file-manger/components/sidepanel/sidepanel.component.d.ts +62 -0
- package/lib/components/file-manger/components/template-modal/template-modal.component.d.ts +35 -0
- package/lib/components/file-manger/components/transfer-doc/transfer-doc.component.d.ts +31 -0
- package/lib/components/file-manger/components/update-modal/update-modal.component.d.ts +196 -0
- package/lib/components/file-manger/directives/file-grid-infinite-scroll.directive.d.ts +12 -0
- package/lib/components/file-manger/file-manager.abstract.d.ts +202 -0
- package/lib/components/file-manger/file-manger.module.d.ts +68 -0
- package/lib/components/file-manger/models/file-manager-config.model.d.ts +8 -0
- package/lib/components/file-manger/models/index.d.ts +3 -0
- package/lib/components/file-manger/models/pagination-payload.mode.d.ts +3 -0
- package/lib/components/file-manger/models/pagination-response.model.d.ts +30 -0
- package/lib/components/filter/filter/filter.component.d.ts +31 -0
- package/lib/components/filter/filter.module.d.ts +15 -0
- package/lib/components/hijri-gregorian-datepicker/base-datePicker/base-datePicker.d.ts +46 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.d.ts +6 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.d.ts +6 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.d.ts +49 -0
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.d.ts +9 -0
- package/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.d.ts +16 -0
- package/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.d.ts +15 -0
- package/lib/components/hijri-gregorian-datepicker/services/date-helper.service.d.ts +9 -0
- package/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.d.ts +12 -0
- package/lib/components/hijri-gregorian-datepicker/utils/DATE_FORMAT.d.ts +2 -0
- package/lib/components/hijri-gregorian-datepicker/utils/GregorianI18n.d.ts +7 -0
- package/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.d.ts +7 -0
- package/lib/components/hijri-gregorian-datepicker/utils/baseDatepickerI18n.d.ts +20 -0
- package/lib/components/hijri-gregorian-datepicker/utils/consts.d.ts +4 -0
- package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts +19 -0
- package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts +23 -0
- package/lib/components/latest-activity/components/single-activity/single-activity.component.d.ts +16 -0
- package/lib/components/latest-activity/constants/activitylog.d.ts +83 -0
- package/lib/components/latest-activity/latest-activity.module.d.ts +20 -0
- package/lib/components/latest-activity/services/activity-log.service.d.ts +12 -0
- package/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.d.ts +17 -0
- package/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.d.ts +10 -0
- package/lib/components/ndf-config-editor/components/config-editor-actions/config-editor-actions.component.d.ts +14 -0
- package/lib/components/ndf-config-editor/components/editor-mode-switch.component.d.ts +17 -0
- package/lib/components/ndf-config-editor/components/index.d.ts +3 -0
- package/lib/components/ndf-config-editor/components/info-dialog/info-dialog.component.d.ts +12 -0
- package/lib/components/ndf-config-editor/config.token.d.ts +9 -0
- package/lib/components/ndf-config-editor/constants/index.d.ts +3 -0
- package/lib/components/ndf-config-editor/constants/mode.d.ts +4 -0
- package/lib/components/ndf-config-editor/constants/query.d.ts +4 -0
- package/lib/components/ndf-config-editor/containers/config-preview/config-preview.component.d.ts +15 -0
- package/lib/components/ndf-config-editor/containers/editor-settings/editor-settings.component.d.ts +24 -0
- package/lib/components/ndf-config-editor/containers/index.d.ts +4 -0
- package/lib/components/ndf-config-editor/containers/monaco-editor.component.d.ts +33 -0
- package/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.d.ts +49 -0
- package/lib/components/ndf-config-editor/index.d.ts +1 -0
- package/lib/components/ndf-config-editor/metadata-token.d.ts +8 -0
- package/lib/components/ndf-config-editor/models/config.d.ts +28 -0
- package/lib/components/ndf-config-editor/models/dialog-data.d.ts +7 -0
- package/lib/components/ndf-config-editor/models/editor-model.d.ts +15 -0
- package/lib/components/ndf-config-editor/models/index.d.ts +4 -0
- package/lib/components/ndf-config-editor/models/payload-data.d.ts +6 -0
- package/lib/components/ndf-config-editor/models/type-helper.d.ts +3 -0
- package/lib/components/ndf-config-editor/ndf-config-editor.module.d.ts +36 -0
- package/lib/components/ndf-config-editor/pipes/index.d.ts +2 -0
- package/lib/components/ndf-config-editor/pipes/is-valid-json.pipe.d.ts +7 -0
- package/lib/components/ndf-config-editor/pipes/validate-object.pipe.d.ts +7 -0
- package/lib/components/ndf-config-editor/public/editor-navigate-button.d.ts +33 -0
- package/lib/components/ndf-config-editor/public/index.d.ts +1 -0
- package/lib/components/ndf-config-editor/public-api.d.ts +7 -0
- package/lib/components/ndf-config-editor/services/data-access.service.d.ts +11 -0
- package/lib/components/ndf-config-editor/services/data-store.service.d.ts +27 -0
- package/lib/components/ndf-config-editor/services/index.d.ts +3 -0
- package/lib/components/ndf-config-editor/services/monaco.loader.service.d.ts +14 -0
- package/lib/components/ndf-config-editor/utility/index.d.ts +1 -0
- package/lib/components/ndf-config-editor/utility/json.d.ts +1 -0
- package/lib/components/ndf-datepicker/adapters/hijri-adapter.d.ts +35 -0
- package/lib/components/ndf-datepicker/adapters/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/adapters/moment-adapter.d.ts +50 -0
- package/lib/components/ndf-datepicker/base/base-value-accessor.d.ts +38 -0
- package/lib/components/ndf-datepicker/base/index.d.ts +1 -0
- package/lib/components/ndf-datepicker/components/base-datepicker.d.ts +13 -0
- package/lib/components/ndf-datepicker/components/index.d.ts +3 -0
- package/lib/components/ndf-datepicker/components/input-date.component.d.ts +19 -0
- package/lib/components/ndf-datepicker/components/input-range-date.component.d.ts +19 -0
- package/lib/components/ndf-datepicker/constants/date-locale-keys.d.ts +6 -0
- package/lib/components/ndf-datepicker/constants/date-picker.d.ts +1 -0
- package/lib/components/ndf-datepicker/constants/date-type.d.ts +4 -0
- package/lib/components/ndf-datepicker/constants/formats.d.ts +5 -0
- package/lib/components/ndf-datepicker/constants/hijri-dates-names.d.ts +12 -0
- package/lib/components/ndf-datepicker/constants/index.d.ts +5 -0
- package/lib/components/ndf-datepicker/containers/datepicker-container.d.ts +15 -0
- package/lib/components/ndf-datepicker/containers/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/containers/ndf-gregorian-datepicker.component.d.ts +10 -0
- package/lib/components/ndf-datepicker/containers/ndf-hijri-datepicker.component.d.ts +10 -0
- package/lib/components/ndf-datepicker/index.d.ts +9 -0
- package/lib/components/ndf-datepicker/models/data-types.d.ts +11 -0
- package/lib/components/ndf-datepicker/models/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/models/value-object.d.ts +8 -0
- package/lib/components/ndf-datepicker/ndf-datepicker.component.d.ts +47 -0
- package/lib/components/ndf-datepicker/ndf-datepicker.module.d.ts +21 -0
- package/lib/components/ndf-datepicker/services/calendar.service.d.ts +33 -0
- package/lib/components/ndf-datepicker/services/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/services/localize-state.service.d.ts +34 -0
- package/lib/components/ndf-filters/base/base-aggregation-field.component.d.ts +36 -0
- package/lib/components/ndf-filters/base/base-checkbox-radio.component.d.ts +23 -0
- package/lib/components/ndf-filters/base/base-custom-field.component.d.ts +21 -0
- package/lib/components/ndf-filters/base/base-predicate-field.component.d.ts +35 -0
- package/lib/components/ndf-filters/base/base-value-accessor.component.d.ts +20 -0
- package/lib/components/ndf-filters/base/index.d.ts +5 -0
- package/lib/components/ndf-filters/components/__parts/field-header.component.d.ts +5 -0
- package/lib/components/ndf-filters/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.d.ts +38 -0
- package/lib/components/ndf-filters/components/__parts/filter-autocomplete-input/filter-autocomplete.service.d.ts +14 -0
- package/lib/components/ndf-filters/components/__parts/filter-collapse-control/filter-collapse-control.component.d.ts +12 -0
- package/lib/components/ndf-filters/components/__parts/filter-date-range/filter-date-range.component.d.ts +17 -0
- package/lib/components/ndf-filters/components/__parts/filter-empty-message.component.d.ts +6 -0
- package/lib/components/ndf-filters/components/__parts/filter-option-text/filter-option-text.component.d.ts +9 -0
- package/lib/components/ndf-filters/components/__parts/filter-options-sort/filter-options-sort.component.d.ts +11 -0
- package/lib/components/ndf-filters/components/__parts/filter-search-input/filter-search-input.component.d.ts +10 -0
- package/lib/components/ndf-filters/components/__parts/html-dialog/html-dialog.component.d.ts +11 -0
- package/lib/components/ndf-filters/components/__parts/index.d.ts +9 -0
- package/lib/components/ndf-filters/components/aggregation-autocomplete/aggregation-autocomplete.component.d.ts +20 -0
- package/lib/components/ndf-filters/components/aggregation-checkbox/aggregation-checkbox.component.d.ts +10 -0
- package/lib/components/ndf-filters/components/aggregation-custom/aggregation-custom.component.d.ts +9 -0
- package/lib/components/ndf-filters/components/aggregation-date-list/aggregation-date-list.component.d.ts +44 -0
- package/lib/components/ndf-filters/components/aggregation-radio/aggregation-radio.component.d.ts +11 -0
- package/lib/components/ndf-filters/components/aggregation-select/aggregation-select.component.d.ts +14 -0
- package/lib/components/ndf-filters/components/aggregation-switch/aggregation-switch.component.d.ts +11 -0
- package/lib/components/ndf-filters/components/index.d.ts +11 -0
- package/lib/components/ndf-filters/components/predicate-date-input/predicate-date-input.component.d.ts +28 -0
- package/lib/components/ndf-filters/components/predicate-selection-list/predicate-selection-list.component.d.ts +32 -0
- package/lib/components/ndf-filters/components/predicate-text-input/predicate-text-input.component.d.ts +29 -0
- package/lib/components/ndf-filters/constants/common.d.ts +3 -0
- package/lib/components/ndf-filters/constants/field.d.ts +5 -0
- package/lib/components/ndf-filters/constants/index.d.ts +4 -0
- package/lib/components/ndf-filters/constants/operators.d.ts +17 -0
- package/lib/components/ndf-filters/constants/sort.d.ts +2 -0
- package/lib/components/ndf-filters/constants/type.d.ts +28 -0
- package/lib/components/ndf-filters/containers/aggregation-field/aggregation-field.component.d.ts +14 -0
- package/lib/components/ndf-filters/containers/base-field.d.ts +23 -0
- package/lib/components/ndf-filters/containers/custom-field/custom-field.component.d.ts +14 -0
- package/lib/components/ndf-filters/containers/filters-panel/base-filters-panel.d.ts +19 -0
- package/lib/components/ndf-filters/containers/filters-panel/filters-panel.component.d.ts +56 -0
- package/lib/components/ndf-filters/containers/index.d.ts +4 -0
- package/lib/components/ndf-filters/containers/predicate-field/predicate-field.component.d.ts +12 -0
- package/lib/components/ndf-filters/custom-components/active-user-switch/active-user-switch.component.d.ts +14 -0
- package/lib/components/ndf-filters/custom-components/active-user-switch/active-user.service.d.ts +8 -0
- package/lib/components/ndf-filters/custom-components/active-user-switch/user-types.d.ts +29 -0
- package/lib/components/ndf-filters/custom-components/aggregation-group/aggregation-group.component.d.ts +27 -0
- package/lib/components/ndf-filters/custom-components/aggregation-group/map-aggregation-config.d.ts +9 -0
- package/lib/components/ndf-filters/custom-components/custom-template/custom-template.component.d.ts +9 -0
- package/lib/components/ndf-filters/custom-components/index.d.ts +4 -0
- package/lib/components/ndf-filters/directives/autocomplete-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/directives/checkbox-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/directives/custom-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/directives/date-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/directives/dropdown-label-template.directive.d.ts +16 -0
- package/lib/components/ndf-filters/directives/dropdown-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/directives/index.d.ts +8 -0
- package/lib/components/ndf-filters/directives/radio-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/directives/switch-template.directive.d.ts +9 -0
- package/lib/components/ndf-filters/index.d.ts +1 -0
- package/lib/components/ndf-filters/models/aggregation-field-config.d.ts +43 -0
- package/lib/components/ndf-filters/models/aggregation-response.model.d.ts +20 -0
- package/lib/components/ndf-filters/models/base-field-config.d.ts +16 -0
- package/lib/components/ndf-filters/models/common.d.ts +5 -0
- package/lib/components/ndf-filters/models/custom-field-config.d.ts +8 -0
- package/lib/components/ndf-filters/models/field-config.model.d.ts +14 -0
- package/lib/components/ndf-filters/models/field-options/autocomplete-options.d.ts +13 -0
- package/lib/components/ndf-filters/models/field-options/checkbox-options.d.ts +14 -0
- package/lib/components/ndf-filters/models/field-options/common-utils.d.ts +61 -0
- package/lib/components/ndf-filters/models/field-options/custom-fields-options.d.ts +27 -0
- package/lib/components/ndf-filters/models/field-options/custom-options.d.ts +5 -0
- package/lib/components/ndf-filters/models/field-options/date-list-options.d.ts +10 -0
- package/lib/components/ndf-filters/models/field-options/date-options.d.ts +22 -0
- package/lib/components/ndf-filters/models/field-options/dropdown-options.d.ts +6 -0
- package/lib/components/ndf-filters/models/field-options/index.d.ts +11 -0
- package/lib/components/ndf-filters/models/field-options/input-options.d.ts +61 -0
- package/lib/components/ndf-filters/models/field-options/radio-options.d.ts +6 -0
- package/lib/components/ndf-filters/models/field-options/selection-list-options.d.ts +17 -0
- package/lib/components/ndf-filters/models/field-options/switch-options.d.ts +6 -0
- package/lib/components/ndf-filters/models/field-options-type.d.ts +6 -0
- package/lib/components/ndf-filters/models/filter-option.model.d.ts +13 -0
- package/lib/components/ndf-filters/models/form-query-request.d.ts +5 -0
- package/lib/components/ndf-filters/models/index.d.ts +15 -0
- package/lib/components/ndf-filters/models/operator-value-object.d.ts +6 -0
- package/lib/components/ndf-filters/models/options-type.d.ts +18 -0
- package/lib/components/ndf-filters/models/predicate-field-config.d.ts +9 -0
- package/lib/components/ndf-filters/models/types-helper.d.ts +6 -0
- package/lib/components/ndf-filters/models/value-object.model.d.ts +18 -0
- package/lib/components/ndf-filters/ndf-filters-panel.module.d.ts +79 -0
- package/lib/components/ndf-filters/pipes/autocomplete-filter.pipe.d.ts +11 -0
- package/lib/components/ndf-filters/pipes/check-condition.pipe.d.ts +12 -0
- package/lib/components/ndf-filters/pipes/filter.pipe.d.ts +11 -0
- package/lib/components/ndf-filters/pipes/hash-translate.pipe.d.ts +18 -0
- package/lib/components/ndf-filters/pipes/index.d.ts +9 -0
- package/lib/components/ndf-filters/pipes/localized-label.pipe.d.ts +14 -0
- package/lib/components/ndf-filters/pipes/roles-filters.pipe.d.ts +12 -0
- package/lib/components/ndf-filters/pipes/sanitizer.pipe.d.ts +10 -0
- package/lib/components/ndf-filters/pipes/sort.pipe.d.ts +11 -0
- package/lib/components/ndf-filters/pipes/tooltip.pipe.d.ts +21 -0
- package/lib/components/ndf-filters/public-api.d.ts +13 -0
- package/lib/components/ndf-filters/services/aggregation-field.service.d.ts +16 -0
- package/lib/components/ndf-filters/services/dynamic-component-loader.service.d.ts +16 -0
- package/lib/components/ndf-filters/services/filters-mapper.service.d.ts +17 -0
- package/lib/components/ndf-filters/services/filters-query.service.d.ts +58 -0
- package/lib/components/ndf-filters/services/index.d.ts +4 -0
- package/lib/components/ndf-filters/tokens/custom-filters-options.d.ts +7 -0
- package/lib/components/ndf-filters/tokens/index.d.ts +1 -0
- package/lib/components/ndf-filters/utility/index.d.ts +3 -0
- package/lib/components/ndf-filters/utility/nxql-query.d.ts +12 -0
- package/lib/components/ndf-filters/utility/nxql.d.ts +19 -0
- package/lib/components/ndf-filters/utility/object.d.ts +7 -0
- package/lib/components/ndf-panel/component/ndf-panel.component.d.ts +10 -0
- package/lib/components/ndf-panel/index.d.ts +2 -0
- package/lib/components/ndf-panel/ndf-panel.module.d.ts +8 -0
- package/lib/components/ndf-scanner/index.d.ts +2 -0
- package/lib/components/ndf-scanner/ndf-scanner.component.d.ts +105 -0
- package/lib/components/ndf-scanner/ndf-scanner.module.d.ts +13 -0
- package/lib/components/ndf-signer/index.d.ts +1 -0
- package/lib/components/ndf-signer/services/index.d.ts +1 -0
- package/lib/components/ndf-signer/services/signer.service.d.ts +28 -0
- package/lib/components/ndf-tabs/component/ndf-tabs.component.d.ts +30 -0
- package/lib/components/ndf-tabs/index.d.ts +3 -0
- package/lib/components/ndf-tabs/ndf-tabs.module.d.ts +9 -0
- package/lib/components/ndf-tabs/tab.type.d.ts +14 -0
- package/lib/components/ndf-uploader/components/bottom-sheet/ndf-uploader-bottom-sheet.component.d.ts +28 -0
- package/lib/components/ndf-uploader/components/index.d.ts +1 -0
- package/lib/components/ndf-uploader/config/index.d.ts +1 -0
- package/lib/components/ndf-uploader/config/uploader.config.d.ts +9 -0
- package/lib/components/ndf-uploader/constant/file-content.d.ts +5 -0
- package/lib/components/ndf-uploader/constant/index.d.ts +1 -0
- package/lib/components/ndf-uploader/helpers/index.d.ts +1 -0
- package/lib/components/ndf-uploader/helpers/uploader.helper.d.ts +10 -0
- package/lib/components/ndf-uploader/index.d.ts +7 -0
- package/lib/components/ndf-uploader/models/batch.model.d.ts +28 -0
- package/lib/components/ndf-uploader/models/index.d.ts +3 -0
- package/lib/components/ndf-uploader/models/ndf-file.model.d.ts +47 -0
- package/lib/components/ndf-uploader/models/provider.model.d.ts +7 -0
- package/lib/components/ndf-uploader/ndf-uploader-bottom-sheet.service.d.ts +31 -0
- package/lib/components/ndf-uploader/ndf-uploader.module.d.ts +16 -0
- package/lib/components/ndf-uploader/ndf-uploader.service.d.ts +25 -0
- package/lib/components/ndf-uploader/nuxeo-base-url.d.ts +1 -0
- package/lib/components/ndf-uploader/providers/index.d.ts +2 -0
- package/lib/components/ndf-uploader/providers/nuxeo-provider.service.d.ts +13 -0
- package/lib/components/ndf-uploader/providers/s3-provider.service.d.ts +13 -0
- package/lib/components/no-data-found/index.d.ts +2 -0
- package/lib/components/no-data-found/no-data-found.component.d.ts +8 -0
- package/lib/components/no-data-found/no-data.module.d.ts +9 -0
- package/lib/components/notifications/app-key-token.d.ts +2 -0
- package/lib/components/notifications/components/base-list-notfications.component.d.ts +42 -0
- package/lib/components/notifications/components/base-notifications.component.d.ts +12 -0
- package/lib/components/notifications/components/index.d.ts +6 -0
- package/lib/components/notifications/components/notification-item/get-icon.pipe.d.ts +8 -0
- package/lib/components/notifications/components/notification-item/notification-item.component.d.ts +24 -0
- package/lib/components/notifications/components/notification-source-select/notification-source-select.component.d.ts +15 -0
- package/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.d.ts +8 -0
- package/lib/components/notifications/components/notifications-button/notifications-button.component.d.ts +43 -0
- package/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.d.ts +22 -0
- package/lib/components/notifications/components/notifications-list/notifications-list.component.d.ts +19 -0
- package/lib/components/notifications/components/notifications-list/options.d.ts +2 -0
- package/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.d.ts +15 -0
- package/lib/components/notifications/components/notifications-settings/check-if-subscribed.pipe.d.ts +8 -0
- package/lib/components/notifications/components/notifications-settings/notifications-settings.adapter.d.ts +3 -0
- package/lib/components/notifications/components/notifications-settings/notifications-settings.component.d.ts +40 -0
- package/lib/components/notifications/components/notifications-sidebar/notifications-sidebar-content.d.ts +9 -0
- package/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.d.ts +43 -0
- package/lib/components/notifications/constants/date.d.ts +7 -0
- package/lib/components/notifications/constants/index.d.ts +4 -0
- package/lib/components/notifications/constants/pagination.d.ts +4 -0
- package/lib/components/notifications/constants/panel.d.ts +4 -0
- package/lib/components/notifications/constants/status.d.ts +9 -0
- package/lib/components/notifications/containers/index.d.ts +2 -0
- package/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.d.ts +27 -0
- package/lib/components/notifications/containers/notifications-list-container/options.d.ts +2 -0
- package/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.d.ts +22 -0
- package/lib/components/notifications/directives/button.directive.d.ts +9 -0
- package/lib/components/notifications/directives/index.d.ts +2 -0
- package/lib/components/notifications/directives/notification.directive.d.ts +9 -0
- package/lib/components/notifications/index.d.ts +1 -0
- package/lib/components/notifications/models/common.d.ts +64 -0
- package/lib/components/notifications/models/index.d.ts +11 -0
- package/lib/components/notifications/models/notification-definition.model.d.ts +17 -0
- package/lib/components/notifications/models/notification-message.mode.d.ts +14 -0
- package/lib/components/notifications/models/notification-options.d.ts +7 -0
- package/lib/components/notifications/models/notification-setting.presenter.d.ts +24 -0
- package/lib/components/notifications/models/notification-subscription.model.d.ts +13 -0
- package/lib/components/notifications/models/notification.model.d.ts +8 -0
- package/lib/components/notifications/models/notifications-list-options.d.ts +38 -0
- package/lib/components/notifications/models/paging-response.model.d.ts +12 -0
- package/lib/components/notifications/models/params.model.d.ts +6 -0
- package/lib/components/notifications/models/vocabularies.d.ts +12 -0
- package/lib/components/notifications/notifications.module.d.ts +41 -0
- package/lib/components/notifications/public-api.d.ts +12 -0
- package/lib/components/notifications/services/index.d.ts +2 -0
- package/lib/components/notifications/services/listener.service.d.ts +8 -0
- package/lib/components/notifications/services/notifications-state.service.d.ts +12 -0
- package/lib/components/notifications/services/notifications.service.d.ts +64 -0
- package/lib/components/notifications/services/params.service.d.ts +19 -0
- package/lib/components/notifications/services/response.service.d.ts +19 -0
- package/lib/components/notifications/services/socket.service.d.ts +26 -0
- package/lib/components/notifications/utilities/index.d.ts +1 -0
- package/lib/components/notifications/utilities/response.adapter.d.ts +3 -0
- package/lib/components/pagination/pagination/pagination.component.d.ts +46 -0
- package/lib/components/pagination/pagination.module.d.ts +13 -0
- package/lib/components/pdf-tron/directives/index.d.ts +1 -0
- package/lib/components/pdf-tron/directives/ndf-tron-extract-text.directive.d.ts +51 -0
- package/lib/components/pdf-tron/models/index.d.ts +1 -0
- package/lib/components/pdf-tron/models/tron.model.d.ts +35 -0
- package/lib/components/pdf-tron/pdf-tron.module.d.ts +9 -0
- package/lib/components/pdf-tron/pdftron/pdftron.component.d.ts +113 -0
- package/lib/components/pdf-tron/pdftron/pdftron.service.d.ts +33 -0
- package/lib/components/pdf-tron/pdftron/silent-pdftron.service.d.ts +16 -0
- package/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.d.ts +46 -0
- package/lib/components/permissions/permission.service.d.ts +21 -0
- package/lib/components/permissions/permissions/permissions.component.d.ts +50 -0
- package/lib/components/permissions/permissions-template/permissions-template.component.d.ts +22 -0
- package/lib/components/permissions/permissions.module.d.ts +22 -0
- package/lib/components/reports/chart-panel.d.ts +19 -0
- package/lib/components/reports/charts/chart.const.d.ts +2 -0
- package/lib/components/reports/charts/chart.token.d.ts +13 -0
- package/lib/components/reports/charts/charts.module.d.ts +9 -0
- package/lib/components/reports/charts/components/base-chart.component.d.ts +17 -0
- package/lib/components/reports/charts/components/chart.component.d.ts +28 -0
- package/lib/components/reports/charts/components/data-chart.component.d.ts +39 -0
- package/lib/components/reports/charts/components/index.d.ts +3 -0
- package/lib/components/reports/charts/defaults/bar.d.ts +2 -0
- package/lib/components/reports/charts/defaults/doughnut.d.ts +2 -0
- package/lib/components/reports/charts/defaults/index.d.ts +4 -0
- package/lib/components/reports/charts/defaults/line.d.ts +2 -0
- package/lib/components/reports/charts/defaults/pie.d.ts +2 -0
- package/lib/components/reports/charts/index.d.ts +1 -0
- package/lib/components/reports/charts/models/index.d.ts +4 -0
- package/lib/components/reports/charts/models/options.d.ts +15 -0
- package/lib/components/reports/charts/models/plugins-options.d.ts +18 -0
- package/lib/components/reports/charts/models/response.d.ts +5 -0
- package/lib/components/reports/charts/models/statistic-request-config.d.ts +30 -0
- package/lib/components/reports/charts/plugins/data-labels.d.ts +3 -0
- package/lib/components/reports/charts/plugins/doughnut-center-text.d.ts +2 -0
- package/lib/components/reports/charts/plugins/doughnut-empty-state.d.ts +2 -0
- package/lib/components/reports/charts/plugins/index.d.ts +5 -0
- package/lib/components/reports/charts/plugins/legend-margin.d.ts +2 -0
- package/lib/components/reports/charts/plugins/scrollable-legends.d.ts +6 -0
- package/lib/components/reports/charts/public-api.d.ts +9 -0
- package/lib/components/reports/charts/services/index.d.ts +1 -0
- package/lib/components/reports/charts/services/statistic.service.d.ts +23 -0
- package/lib/components/reports/charts/utility/colors.d.ts +17 -0
- package/lib/components/reports/charts/utility/common.d.ts +4 -0
- package/lib/components/reports/charts/utility/css.d.ts +49 -0
- package/lib/components/reports/charts/utility/index.d.ts +3 -0
- package/lib/components/reports/index.d.ts +3 -0
- package/lib/components/reports/ndf-reports/base/base-chart.d.ts +30 -0
- package/lib/components/reports/ndf-reports/base/base-custom-report.d.ts +55 -0
- package/lib/components/reports/ndf-reports/base/base-graph.report.d.ts +18 -0
- package/lib/components/reports/ndf-reports/base/base-report.d.ts +62 -0
- package/lib/components/reports/ndf-reports/base/index.d.ts +4 -0
- 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/digit-chart/digit-chart.component.d.ts +14 -0
- package/lib/components/reports/ndf-reports/charts-components/graph-chart/graph-chart.component.d.ts +24 -0
- package/lib/components/reports/ndf-reports/charts-components/graph-chart/graph-chart.service.d.ts +6 -0
- package/lib/components/reports/ndf-reports/charts-components/index.d.ts +3 -0
- package/lib/components/reports/ndf-reports/components/_parts/chart-type-selector/chart-type-selector.component.d.ts +26 -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/graph-dialog/graph-dialog.component.d.ts +17 -0
- package/lib/components/reports/ndf-reports/components/_parts/index.d.ts +6 -0
- package/lib/components/reports/ndf-reports/components/_parts/report-actions/report-actions.component.d.ts +18 -0
- package/lib/components/reports/ndf-reports/components/_parts/time-group-selector/time-group-selector.component.d.ts +21 -0
- package/lib/components/reports/ndf-reports/components/_parts/timeline-dialog/timeline-dialog.component.d.ts +21 -0
- package/lib/components/reports/ndf-reports/components/custom-report/custom-report.component.d.ts +13 -0
- package/lib/components/reports/ndf-reports/components/digit-report/digit-report.component.d.ts +7 -0
- package/lib/components/reports/ndf-reports/components/dynamic-timeline-report/dynamic-timeline-report.component.d.ts +41 -0
- package/lib/components/reports/ndf-reports/components/graph-report/graph-report.component.d.ts +12 -0
- package/lib/components/reports/ndf-reports/components/index.d.ts +5 -0
- package/lib/components/reports/ndf-reports/constants/charts-types.d.ts +13 -0
- package/lib/components/reports/ndf-reports/constants/index.d.ts +2 -0
- package/lib/components/reports/ndf-reports/constants/time-group.d.ts +6 -0
- package/lib/components/reports/ndf-reports/containers/index.d.ts +2 -0
- package/lib/components/reports/ndf-reports/containers/ndf-report/ndf-report.component.d.ts +35 -0
- package/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.d.ts +106 -0
- package/lib/components/reports/ndf-reports/directives/index.d.ts +1 -0
- package/lib/components/reports/ndf-reports/directives/scrollable-div.directive.d.ts +14 -0
- package/lib/components/reports/ndf-reports/index.d.ts +1 -0
- package/lib/components/reports/ndf-reports/models/base.d.ts +24 -0
- package/lib/components/reports/ndf-reports/models/common.d.ts +20 -0
- package/lib/components/reports/ndf-reports/models/custom-definition.d.ts +13 -0
- package/lib/components/reports/ndf-reports/models/details.d.ts +28 -0
- package/lib/components/reports/ndf-reports/models/dialog-data.d.ts +20 -0
- package/lib/components/reports/ndf-reports/models/digit.d.ts +17 -0
- package/lib/components/reports/ndf-reports/models/dynamic-line.d.ts +59 -0
- package/lib/components/reports/ndf-reports/models/graph-definition.d.ts +70 -0
- package/lib/components/reports/ndf-reports/models/index.d.ts +14 -0
- package/lib/components/reports/ndf-reports/models/ndf-reports.config.d.ts +15 -0
- package/lib/components/reports/ndf-reports/models/report-config.d.ts +6 -0
- package/lib/components/reports/ndf-reports/models/report-data-source.d.ts +19 -0
- package/lib/components/reports/ndf-reports/models/report-response.model.d.ts +4 -0
- package/lib/components/reports/ndf-reports/models/reports-filters.d.ts +16 -0
- package/lib/components/reports/ndf-reports/models/request.d.ts +11 -0
- package/lib/components/reports/ndf-reports/ndf-reports.module.d.ts +41 -0
- package/lib/components/reports/ndf-reports/options/doughnut.d.ts +7 -0
- package/lib/components/reports/ndf-reports/options/horizontal-bar.d.ts +7 -0
- package/lib/components/reports/ndf-reports/options/index.d.ts +5 -0
- package/lib/components/reports/ndf-reports/options/line.d.ts +7 -0
- package/lib/components/reports/ndf-reports/options/pie.d.ts +7 -0
- package/lib/components/reports/ndf-reports/options/vertical-bar.d.ts +7 -0
- package/lib/components/reports/ndf-reports/public-api.d.ts +6 -0
- package/lib/components/reports/ndf-reports/services/base-chart-builder.service.d.ts +22 -0
- package/lib/components/reports/ndf-reports/services/chart-callbacks-register.services.d.ts +14 -0
- package/lib/components/reports/ndf-reports/services/chart-data-transformers.service.d.ts +85 -0
- package/lib/components/reports/ndf-reports/services/chart-manager.service.d.ts +19 -0
- package/lib/components/reports/ndf-reports/services/chart-plugins-registry.service.d.ts +40 -0
- package/lib/components/reports/ndf-reports/services/chart-theme.service.d.ts +14 -0
- package/lib/components/reports/ndf-reports/services/custom-reports-registry.service.d.ts +84 -0
- package/lib/components/reports/ndf-reports/services/digit-chart.service.d.ts +11 -0
- package/lib/components/reports/ndf-reports/services/dynamic-timeline-report.service.d.ts +30 -0
- package/lib/components/reports/ndf-reports/services/index.d.ts +15 -0
- package/lib/components/reports/ndf-reports/services/ndf-reports.service.d.ts +23 -0
- package/lib/components/reports/ndf-reports/services/report-config-mapper.service.d.ts +45 -0
- package/lib/components/reports/ndf-reports/services/report-configuration.service.d.ts +14 -0
- package/lib/components/reports/ndf-reports/services/report-transform.service.d.ts +18 -0
- package/lib/components/reports/ndf-reports/services/reports-data-transformers.service.d.ts +48 -0
- package/lib/components/reports/ndf-reports/services/reports-dialog.service.d.ts +21 -0
- package/lib/components/reports/ndf-reports/services/reports-state.service.d.ts +7 -0
- package/lib/components/reports/ndf-reports/utilities/dataset-colors.d.ts +1 -0
- package/lib/components/reports/ndf-reports/utilities/index.d.ts +2 -0
- package/lib/components/reports/ndf-reports/utilities/reports-table.mapper.d.ts +7 -0
- package/lib/components/select/select/select.component.d.ts +43 -0
- package/lib/components/select/select.module.d.ts +12 -0
- package/lib/components/select-users-by-department/select-users-by-department.module.d.ts +13 -0
- package/lib/components/select-users-by-department/select-users-by-departments/department-management.service.d.ts +11 -0
- package/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.d.ts +36 -0
- package/lib/components/skeleton/index.d.ts +3 -0
- package/lib/components/skeleton/skeleton.component.d.ts +22 -0
- package/lib/components/skeleton/skeleton.module.d.ts +9 -0
- package/lib/components/skeleton/table-skeleton.component.d.ts +8 -0
- package/lib/components/spell-checker-field/spell-checker-field.module.d.ts +10 -0
- package/lib/components/spell-checker-field/spell-checker-text-field/spell-checker-text-field.component.d.ts +24 -0
- package/lib/components/tables/dynamic-table/directives/empty-state.directive.d.ts +9 -0
- package/lib/components/tables/dynamic-table/dynamic-table/dynamic-table.component.d.ts +179 -0
- package/lib/components/tables/dynamic-table/dynamic-table.module.d.ts +19 -0
- package/lib/components/tables/dynamic-table/index.d.ts +1 -0
- package/lib/components/tables/dynamic-table/public-api.d.ts +5 -0
- package/lib/components/tables/dynamic-table/services/dynamic-table.service.d.ts +8 -0
- package/lib/components/tables/dynamic-table/services/table-hooks.service.d.ts +13 -0
- package/lib/components/tables/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/components/index.d.ts +5 -0
- package/lib/components/tables/ndf-table/components/mode-toggler/mode-toggler.component.d.ts +13 -0
- package/lib/components/tables/ndf-table/components/sorting-list/sorting-list.component.d.ts +12 -0
- package/lib/components/tables/ndf-table/components/table-columns-toggler/table-columns-toggler.component.d.ts +35 -0
- package/lib/components/tables/ndf-table/components/table-export/table-export.component.d.ts +13 -0
- package/lib/components/tables/ndf-table/components/text-search/text-search.component.d.ts +24 -0
- package/lib/components/tables/ndf-table/constants/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/constants/sizes.d.ts +4 -0
- package/lib/components/tables/ndf-table/containers/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +152 -0
- package/lib/components/tables/ndf-table/directives/actions.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/directives/filter-custom.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/directives/index.d.ts +4 -0
- package/lib/components/tables/ndf-table/directives/pagination.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/directives/search.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/models/index.d.ts +7 -0
- package/lib/components/tables/ndf-table/models/payload-types.d.ts +24 -0
- package/lib/components/tables/ndf-table/models/search.config.d.ts +15 -0
- package/lib/components/tables/ndf-table/models/table-column.d.ts +34 -0
- package/lib/components/tables/ndf-table/models/table-config.d.ts +79 -0
- package/lib/components/tables/ndf-table/models/table-mode.d.ts +25 -0
- package/lib/components/tables/ndf-table/models/table-options.d.ts +65 -0
- package/lib/components/tables/ndf-table/models/types.d.ts +28 -0
- package/lib/components/tables/ndf-table/ndf-table.module.d.ts +36 -0
- package/lib/components/tables/ndf-table/public-api.d.ts +7 -0
- package/lib/components/tables/ndf-table/services/index.d.ts +2 -0
- package/lib/components/tables/ndf-table/services/ndf-table-configuration.service.d.ts +12 -0
- package/lib/components/tables/ndf-table/services/ndf-table.service.d.ts +10 -0
- package/lib/components/tables/ndf-table/tokens/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/tokens/table-options.d.ts +5 -0
- package/lib/components/tables/public-api.d.ts +3 -0
- package/lib/components/tables/table/dynamic-column/dynamic-column.component.d.ts +23 -0
- package/lib/components/tables/table/dynamic-component.d.ts +24 -0
- package/lib/components/tables/table/index.d.ts +1 -0
- package/lib/components/tables/table/page-sizes-list/page-sizes-list.component.d.ts +17 -0
- package/lib/components/tables/table/public-api.d.ts +5 -0
- package/lib/components/tables/table/table/table.component.d.ts +164 -0
- package/lib/components/tables/table/table.module.d.ts +26 -0
- package/lib/components/toasts/components/notification-toast/notification-toast.component.d.ts +17 -0
- package/lib/components/toasts/index.d.ts +1 -0
- package/lib/components/toasts/public-api.d.ts +2 -0
- package/lib/components/toasts/toasts.module.d.ts +8 -0
- package/lib/components/user/user/user.component.d.ts +13 -0
- package/lib/components/user/user.module.d.ts +10 -0
- package/lib/components/users-card/users-card.component.d.ts +22 -0
- package/lib/components/users-card/users-card.module.d.ts +17 -0
- package/lib/components/viewer-log/components/viewer-log/viewer-log.component.d.ts +14 -0
- package/lib/components/viewer-log/viewer-log.module.d.ts +10 -0
- package/lib/components/vocabulary/interfaces/op-type.interface.d.ts +1 -0
- package/lib/components/vocabulary/services/vocabulary-api.service.d.ts +19 -0
- package/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.d.ts +81 -0
- package/lib/components/vocabulary/vocabulary/vocabulary.component.d.ts +37 -0
- package/lib/components/vocabulary/vocabulary.module.d.ts +13 -0
- package/lib/configuration/app-config.service.d.ts +14 -0
- package/lib/configuration/helpers/app-initializer.d.ts +2 -0
- package/lib/core/adapters/adapter.service.d.ts +11 -0
- package/lib/core/core.module.d.ts +16 -0
- package/lib/core/enums/language.enum.d.ts +4 -0
- package/lib/core/env/env-manager.d.ts +54 -0
- package/lib/core/env/index.d.ts +1 -0
- package/lib/core/models/api-response.model.d.ts +25 -0
- package/lib/core/models/automation-response.model.d.ts +24 -0
- package/lib/core/models/base-response.models.d.ts +12 -0
- package/lib/core/models/component.model.d.ts +6 -0
- package/lib/core/models/index.d.ts +4 -0
- package/lib/core/services/callApi/call-api.service.d.ts +19 -0
- package/lib/core/services/column-renderer/column-renderer-registry.service.d.ts +52 -0
- package/lib/core/services/column-renderer/helpers.d.ts +2 -0
- package/lib/core/services/column-renderer/index.d.ts +3 -0
- package/lib/core/services/column-renderer/types.d.ts +25 -0
- package/lib/core/services/extension/action.extensions.d.ts +31 -0
- package/lib/core/services/extension/component-register.service.d.ts +20 -0
- package/lib/core/services/extension/extenion-utils.d.ts +14 -0
- package/lib/core/services/extension/extension-element.d.ts +5 -0
- package/lib/core/services/extension/extension-loader.service.d.ts +28 -0
- package/lib/core/services/extension/extension.service.d.ts +103 -0
- package/lib/core/services/index.d.ts +4 -0
- package/lib/core/services/initialization/initialization.service.d.ts +31 -0
- package/lib/core/services/localStorag/local-storag.service.d.ts +41 -0
- package/lib/core/services/ndf-transform.service.d.ts +61 -0
- package/lib/core/services/nuxeo/new-nuxeo-overide.d.ts +15 -0
- package/lib/core/services/nuxeo/nuxeo-override.d.ts +9 -0
- package/lib/core/services/nuxeo/nuxeo.service.d.ts +37 -0
- package/lib/core/services/roles/roles.service.d.ts +12 -0
- package/lib/core/services/translation/translate-loader.service.d.ts +26 -0
- package/lib/core/services/translation/translation.service.d.ts +75 -0
- package/lib/core/services/user/user-preferences.service.d.ts +81 -0
- package/lib/core/tokens/index.d.ts +1 -0
- package/lib/core/tokens/project.token.d.ts +2 -0
- package/lib/core/utilities/moment-date-adapter.d.ts +37 -0
- package/lib/core/utilities/utility.service.d.ts +11 -0
- package/lib/directive/app-has-role/app-has-role.directive.d.ts +18 -0
- package/lib/directive/clickOutSide/click-outside.directive.d.ts +11 -0
- package/lib/directive/directive.module.d.ts +18 -0
- package/lib/directive/drag-and-drop/drag-and-drop.directive.d.ts +11 -0
- package/lib/directive/permissions/evaluators.service.d.ts +39 -0
- package/lib/directive/permissions/permissions.directive.d.ts +40 -0
- package/lib/directive/rtl/set-dir-rtl.directive.d.ts +13 -0
- package/lib/directive/rtl/set-rtl.directive.d.ts +13 -0
- package/lib/directive/tooltip-if-overflow/tooltip-if-overflow.d.ts +26 -0
- package/lib/nuxeo-development-framework.component.d.ts +3 -0
- package/lib/nuxeo-development-framework.module.d.ts +7 -0
- package/lib/nuxeo-development-framework.service.d.ts +3 -0
- package/lib/pipes/file-size.pipe.d.ts +34 -0
- package/lib/pipes/hijri-date.pipe.d.ts +32 -0
- package/lib/pipes/localized-date.pipe.d.ts +44 -0
- package/lib/pipes/multi-value.pipe.d.ts +32 -0
- package/lib/pipes/pipes.module.d.ts +18 -0
- package/lib/pipes/secure-html.pipe.d.ts +26 -0
- package/lib/pipes/secure.pipe.d.ts +29 -0
- package/lib/pipes/time-ago.pipe.d.ts +35 -0
- package/lib/shared/components/base/base-column.component.d.ts +16 -0
- package/lib/shared/components/base/base-dialog.component.d.ts +13 -0
- package/lib/shared/components/base/base-selector.component.d.ts +43 -0
- package/lib/shared/components/base/base-table-custom.component.d.ts +22 -0
- package/lib/shared/components/base/base.component.d.ts +34 -0
- package/lib/shared/components/base/destroy.subject.d.ts +9 -0
- package/lib/shared/components/base/index.d.ts +7 -0
- package/lib/shared/components/button/button.component.d.ts +39 -0
- package/lib/shared/components/index.d.ts +2 -0
- package/lib/shared/components/item-list/item-list.component.d.ts +45 -0
- package/lib/shared/components/no-data/no-data.component.d.ts +22 -0
- package/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.d.ts +9 -0
- package/lib/shared/components/nuxeo-dialog/index.d.ts +5 -0
- package/lib/shared/components/nuxeo-dialog/models/confirm-options.model.d.ts +24 -0
- package/lib/shared/components/nuxeo-dialog/models/dialog-option.model.d.ts +19 -0
- package/lib/shared/components/nuxeo-dialog/nuxeo-dialog.module.d.ts +15 -0
- package/lib/shared/components/nuxeo-dialog/nuxeo.dialog.d.ts +26 -0
- package/lib/shared/components/nuxeo-dialog/services/nuxeo-dialog.service.d.ts +12 -0
- package/lib/shared/components/read-more/read-more.component.d.ts +37 -0
- package/lib/shared/components/search-autocomplete/search-autocomplete.component.d.ts +51 -0
- package/lib/shared/components/spinner/spinner.component.d.ts +18 -0
- package/lib/shared/components/user-card/user-card.component.d.ts +30 -0
- package/lib/shared/constants/editor-config-type.d.ts +4 -0
- package/lib/shared/constants/index.d.ts +2 -0
- package/lib/shared/constants/licence-keys.d.ts +4 -0
- package/lib/shared/directives/copy-to-clipboard.directive.d.ts +15 -0
- package/lib/shared/directives/element-height.directive.d.ts +28 -0
- package/lib/shared/directives/fluid-height.directive.d.ts +40 -0
- package/lib/shared/directives/index.d.ts +3 -0
- package/lib/shared/evaluator/evaluator.d.ts +79 -0
- package/lib/shared/evaluator/index.d.ts +2 -0
- package/lib/shared/evaluator/types.d.ts +18 -0
- package/lib/shared/index.d.ts +8 -0
- package/lib/shared/libraryShared.module.d.ts +30 -0
- package/lib/shared/models/index.d.ts +5 -0
- package/lib/shared/models/mapper/index.d.ts +1 -0
- package/lib/shared/models/mapper/nuxeo-mapper.d.ts +8 -0
- package/lib/shared/models/ndf-request.model.d.ts +7 -0
- package/lib/shared/models/nuxeo-response.model.d.ts +61 -0
- package/lib/shared/models/task.model.d.ts +71 -0
- package/lib/shared/models/type-helpers.d.ts +10 -0
- package/lib/shared/services/base/base-editor-config.service.d.ts +33 -0
- package/lib/shared/services/base/base.service.d.ts +30 -0
- package/lib/shared/services/base/cache-base.service.d.ts +18 -0
- package/lib/shared/services/base/config/default-ttl-config.d.ts +9 -0
- package/lib/shared/services/base/config/index.d.ts +1 -0
- package/lib/shared/services/base/constants/default-cache-options.d.ts +17 -0
- package/lib/shared/services/base/constants/index.d.ts +1 -0
- package/lib/shared/services/base/http-base.service.d.ts +17 -0
- package/lib/shared/services/base/index.d.ts +4 -0
- package/lib/shared/services/base/models/cache-info-model.d.ts +51 -0
- package/lib/shared/services/base/models/http-options.model.d.ts +7 -0
- package/lib/shared/services/base/models/index.d.ts +5 -0
- package/lib/shared/services/base/models/operation-options.model.d.ts +8 -0
- package/lib/shared/services/base/models/query-options.model.d.ts +5 -0
- package/lib/shared/services/base/models/request-options.model.d.ts +7 -0
- package/lib/shared/services/encryption/encryption.service.d.ts +13 -0
- package/lib/shared/services/index.d.ts +2 -0
- package/lib/shared/utilities/departments.d.ts +1 -0
- package/lib/shared/utilities/index.d.ts +1 -0
- package/lib/shared-services/apis-errors-messages.service.d.ts +11 -0
- package/lib/shared-services/base-shared-doc.service.d.ts +24 -0
- package/lib/shared-services/dialog-mangment.service.d.ts +28 -0
- package/lib/shared-services/dynamic-form.service.d.ts +24 -0
- package/lib/shared-services/file-manager.adapter.d.ts +46 -0
- package/lib/shared-services/file-manager.service.d.ts +102 -0
- package/lib/shared-services/global-admin.service.d.ts +11 -0
- package/lib/shared-services/global-department.service.d.ts +8 -0
- package/lib/shared-services/global-pdftron.service.d.ts +11 -0
- package/lib/shared-services/index.d.ts +17 -0
- package/lib/shared-services/mainfolder.service.d.ts +32 -0
- package/lib/shared-services/publishing-document.service.d.ts +25 -0
- package/lib/shared-services/recently-viewed.service.d.ts +17 -0
- package/lib/shared-services/shared-docs.service.d.ts +9 -0
- package/lib/shared-services/shared-services.module.d.ts +7 -0
- package/lib/shared-services/upload-file.service.d.ts +10 -0
- package/lib/shared-services/upload-managment.service.d.ts +72 -0
- package/lib/shared-services/user.service.d.ts +12 -0
- package/package.json +86 -21
- package/public-api.d.ts +240 -1
- package/src/docs/ndf-filters.doc.md +1026 -0
- package/src/docs/ndf-reports.doc.md +1332 -0
- package/src/docs/ndf-table.doc.md +1502 -0
- package/bundles/nuxeo-development-framework.umd.js +0 -67
- package/bundles/nuxeo-development-framework.umd.js.map +0 -1
- package/bundles/nuxeo-development-framework.umd.min.js +0 -2
- package/bundles/nuxeo-development-framework.umd.min.js.map +0 -1
- package/esm2015/lib/nuxeo-development-framework.component.js +0 -18
- package/esm2015/lib/nuxeo-development-framework.module.js +0 -16
- package/esm2015/lib/nuxeo-development-framework.service.js +0 -13
- package/esm2015/nuxeo-development-framework.js +0 -5
- package/esm2015/public-api.js +0 -7
- package/fesm2015/nuxeo-development-framework.js +0 -54
- package/fesm2015/nuxeo-development-framework.js.map +0 -1
- package/nuxeo-development-framework.metadata.json +0 -1
|
@@ -0,0 +1,1332 @@
|
|
|
1
|
+
|
|
2
|
+
# NDF Reports Component (`app-ndf-reports`) - Documentation
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
The `app-ndf-reports` is a highly configurable and extensible Angular component for rendering dynamic reports with Chart.js integration. It supports multiple chart types, advanced filtering, data transformation, and responsive layouts.
|
|
8
|
+
|
|
9
|
+
### Key Features
|
|
10
|
+
|
|
11
|
+
- Server-side configuration loading via report keys
|
|
12
|
+
- Direct configuration injection for programmatic usage
|
|
13
|
+
- Dynamic report rendering with multiple chart types
|
|
14
|
+
- Query change event emission for external integration
|
|
15
|
+
- Navigation integration for seamless user experience
|
|
16
|
+
|
|
17
|
+
### Input Properties
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
@Component({
|
|
21
|
+
selector: 'app-ndf-reports'
|
|
22
|
+
})
|
|
23
|
+
export class NdfReportsComponent {
|
|
24
|
+
@Input() jsonEditorEnabled: boolean = false;
|
|
25
|
+
@Input() reportsKey: string;
|
|
26
|
+
@Input() navigateRoute: string[] = [];
|
|
27
|
+
@Input() config: NdfReportsConfig;
|
|
28
|
+
|
|
29
|
+
@Output() onQueryChange = new EventEmitter();
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
#### Property Specifications
|
|
34
|
+
|
|
35
|
+
| Property | Type | Required | Default | Description |
|
|
36
|
+
| ------------------ | ------------------- | -------- | ------- | ---------------------------------------------------- |
|
|
37
|
+
| jsonEditorEnabled | `boolean` | ❌ | `false` | Enable navigation to configuration editor interface |
|
|
38
|
+
| reportsKey | `string` | ⚠️ | - | Server-side configuration identifier |
|
|
39
|
+
| navigateRoute | `string[]` | ❌ | `[]` | Angular route array for navigation purposes |
|
|
40
|
+
| config | `NdfReportsConfig` | ⚠️ | - | Direct configuration object for report definitions |
|
|
41
|
+
|
|
42
|
+
> **⚠️ Configuration Requirement**: Either `reportsKey` OR `config` must be provided. These inputs are mutually exclusive.
|
|
43
|
+
|
|
44
|
+
#### Output Events
|
|
45
|
+
|
|
46
|
+
| Event | Type | Description |
|
|
47
|
+
| -------------- | ----------------------- | -------------------------------------------------- |
|
|
48
|
+
| onQueryChange | `EventEmitter<any>` | Emitted when report query parameters are modified |
|
|
49
|
+
|
|
50
|
+
## Configuration Loading Strategy
|
|
51
|
+
|
|
52
|
+
The component supports two distinct configuration loading approaches:
|
|
53
|
+
|
|
54
|
+
### Server-Side Configuration Loading
|
|
55
|
+
|
|
56
|
+
Use `reportsKey` to fetch configuration from server-side storage:
|
|
57
|
+
|
|
58
|
+
```html
|
|
59
|
+
<!-- Template usage -->
|
|
60
|
+
<app-ndf-reports
|
|
61
|
+
[reportsKey]="'ARCHIVE_REPORTS_CONFIG'"
|
|
62
|
+
[jsonEditorEnabled]="true"
|
|
63
|
+
[navigateRoute]="['/reports', 'editor']"
|
|
64
|
+
(onQueryChange)="handleQueryChange($event)">
|
|
65
|
+
</app-ndf-reports>
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
```typescript
|
|
69
|
+
// Component usage
|
|
70
|
+
export class DashboardComponent {
|
|
71
|
+
handleQueryChange(queryData: any): void {
|
|
72
|
+
console.log('Report query changed:', queryData);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### Direct Configuration Injection
|
|
78
|
+
|
|
79
|
+
Use `config` for programmatic configuration management:
|
|
80
|
+
|
|
81
|
+
```html
|
|
82
|
+
<!-- Template usage -->
|
|
83
|
+
<app-ndf-reports
|
|
84
|
+
[config]="reportsConfiguration"
|
|
85
|
+
[jsonEditorEnabled]="false"
|
|
86
|
+
(onQueryChange)="handleQueryChange($event)">
|
|
87
|
+
</app-ndf-reports>
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Quick Start Guide
|
|
91
|
+
|
|
92
|
+
### Basic Setup
|
|
93
|
+
|
|
94
|
+
```typescript
|
|
95
|
+
const basicConfig: NdfReportsConfig = {
|
|
96
|
+
request: {
|
|
97
|
+
pageProvider: 'PP_SALES_DATA'
|
|
98
|
+
},
|
|
99
|
+
reports: {
|
|
100
|
+
items: [
|
|
101
|
+
{
|
|
102
|
+
id: 'sales-total',
|
|
103
|
+
label: 'Total Sales',
|
|
104
|
+
mode: 'digit',
|
|
105
|
+
datasource: {
|
|
106
|
+
propertyPath: 'totalSales'
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### With Filters
|
|
115
|
+
|
|
116
|
+
```typescript
|
|
117
|
+
const configWithFilters: NdfReportsConfig = {
|
|
118
|
+
request: {
|
|
119
|
+
pageProvider: 'PP_SALES_DATA'
|
|
120
|
+
},
|
|
121
|
+
filters: {
|
|
122
|
+
mode: 'payload',
|
|
123
|
+
visible: true,
|
|
124
|
+
fields: [
|
|
125
|
+
{
|
|
126
|
+
type: 'predicate',
|
|
127
|
+
config: {
|
|
128
|
+
label: 'FILTERS.requestNumber',
|
|
129
|
+
fieldKey: 'requestcase:requestNumber',
|
|
130
|
+
sendMode: 'payload',
|
|
131
|
+
valueType: 'valueObject',
|
|
132
|
+
render: {
|
|
133
|
+
type: 'input',
|
|
134
|
+
options: {
|
|
135
|
+
debounceTime: 300,
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
type: 'aggregation',
|
|
142
|
+
config: {
|
|
143
|
+
label: 'LISTING.Last_Contributors',
|
|
144
|
+
aggregation: 'dublincore_lastContributor_agg',
|
|
145
|
+
fieldKey: 'dc:lastContributor',
|
|
146
|
+
order: 0,
|
|
147
|
+
sendMode: 'queryParam',
|
|
148
|
+
valueType: 'property',
|
|
149
|
+
condition: `show = values && values['ecm:currentLifeCycleState']?.includes('ended');`,
|
|
150
|
+
render: {
|
|
151
|
+
type: 'checkbox',
|
|
152
|
+
options: {
|
|
153
|
+
showTotal: true
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
reports: {
|
|
161
|
+
items: [/* report definitions */]
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
## Core Configuration
|
|
167
|
+
|
|
168
|
+
### `NdfReportsConfig` Interface
|
|
169
|
+
|
|
170
|
+
The main configuration interface that defines all aspects of the reports component.
|
|
171
|
+
|
|
172
|
+
```typescript
|
|
173
|
+
export type NdfReportsConfig = {
|
|
174
|
+
request: NdfReportsRequest;
|
|
175
|
+
filters?: NdfReportsFilters;
|
|
176
|
+
options?: {
|
|
177
|
+
print?: boolean;
|
|
178
|
+
};
|
|
179
|
+
activeQuery?: Record<string, any>;
|
|
180
|
+
reports: ReportsDefinition;
|
|
181
|
+
};
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### Properties
|
|
185
|
+
|
|
186
|
+
| Property | Type | Required | Description |
|
|
187
|
+
| ----------- | --------------------- | -------- | ------------------------------------------ |
|
|
188
|
+
| request | `NdfReportsRequest` | ✅ | Core request parameters for data fetching |
|
|
189
|
+
| filters | `NdfReportsFilters` | ❌ | Optional filtering configuration |
|
|
190
|
+
| options | `object` | ❌ | Additional component options |
|
|
191
|
+
| activeQuery | `Record<string, any>` | ❌ | Initial query parameters for first request |
|
|
192
|
+
| reports | `ReportsDefinition` | ✅ | Container for all report definitions |
|
|
193
|
+
|
|
194
|
+
#### Options Object
|
|
195
|
+
|
|
196
|
+
| Property | Type | Required | Description |
|
|
197
|
+
| -------- | --------- | -------- | ------------------------------------------ |
|
|
198
|
+
| print | `boolean` | ❌ | Enable print functionality for all reports |
|
|
199
|
+
|
|
200
|
+
## Request Configuration
|
|
201
|
+
|
|
202
|
+
Defines how data is fetched from backend services or APIs.
|
|
203
|
+
|
|
204
|
+
### `NdfReportsRequest` Type
|
|
205
|
+
|
|
206
|
+
```typescript
|
|
207
|
+
type NdfReportsRequest = {
|
|
208
|
+
pageProvider: string;
|
|
209
|
+
customUrl?: { url: string; method: 'post' | 'get' };
|
|
210
|
+
payload?: Record<string, any>;
|
|
211
|
+
params?: Record<string, any>;
|
|
212
|
+
headers?: Record<string, any>;
|
|
213
|
+
transformer?: string;
|
|
214
|
+
};
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
### Properties
|
|
218
|
+
|
|
219
|
+
| Property | Type | Required | Description |
|
|
220
|
+
| ------------ | ------------------------------------------ | -------- | ----------------------------------------------------------- |
|
|
221
|
+
| pageProvider | `string` | ✅ | Identifier for the data source provider |
|
|
222
|
+
| customUrl | `{ url: string; method: 'post' \| 'get' }` | ❌ | Custom endpoint configuration |
|
|
223
|
+
| payload | `Record<string, any>` | ❌ | Request body for POST requests |
|
|
224
|
+
| params | `Record<string, any>` | ❌ | Query parameters |
|
|
225
|
+
| headers | `Record<string, any>` | ❌ | HTTP headers |
|
|
226
|
+
| transformer | `string` | ❌ | Name of registered transformer in `ReportsDataTransformers` |
|
|
227
|
+
|
|
228
|
+
### Example Usage
|
|
229
|
+
|
|
230
|
+
```json
|
|
231
|
+
{
|
|
232
|
+
"request": {
|
|
233
|
+
"pageProvider": "PP_RPT_Location",
|
|
234
|
+
"customUrl": {
|
|
235
|
+
"url": "/custom-search/admin/pp/PP_RPT_Location/execute",
|
|
236
|
+
"method": "post"
|
|
237
|
+
},
|
|
238
|
+
"params": {
|
|
239
|
+
"pageSize": 100
|
|
240
|
+
},
|
|
241
|
+
"headers": {
|
|
242
|
+
"properties": "*"
|
|
243
|
+
},
|
|
244
|
+
"transformer": "locationDataTransform"
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
## Filters Configuration
|
|
250
|
+
|
|
251
|
+
Optional filtering system that allows users to refine report data.
|
|
252
|
+
|
|
253
|
+
### `NdfReportsFilters` Type
|
|
254
|
+
|
|
255
|
+
```typescript
|
|
256
|
+
type NdfReportsFilters = {
|
|
257
|
+
mode: 'payload' | 'params';
|
|
258
|
+
payload?: Record<string, any>;
|
|
259
|
+
params?: Record<string, any>;
|
|
260
|
+
fields: FieldConfigModel[];
|
|
261
|
+
visible?: boolean;
|
|
262
|
+
togglePanel?: boolean;
|
|
263
|
+
reload?: NdfReportsFiltersReloadConfig;
|
|
264
|
+
};
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
### Properties
|
|
268
|
+
|
|
269
|
+
| Property | Type | Required | Description |
|
|
270
|
+
| ----------- | ------------------------------- | -------- | ---------------------------------------------- |
|
|
271
|
+
| mode | `'payload' \| 'params'` | ✅ | Where to apply filter values |
|
|
272
|
+
| payload | `Record<string, any>` | ❌ | Default payload values |
|
|
273
|
+
| params | `Record<string, any>` | ❌ | Default query parameters |
|
|
274
|
+
| fields | `FieldConfigModel[]` | ✅ | Filter field configurations |
|
|
275
|
+
| visible | `boolean` | ❌ | Initial visibility of filter UI |
|
|
276
|
+
| togglePanel | `boolean` | ❌ | Allow users to show/hide filter panel |
|
|
277
|
+
| reload | `NdfReportsFiltersReloadConfig` | ❌ | When to reload field data after filter changes |
|
|
278
|
+
|
|
279
|
+
### Reload
|
|
280
|
+
```ts
|
|
281
|
+
type NdfReportsFiltersReloadConfig =
|
|
282
|
+
| { strategy: 'always' }
|
|
283
|
+
| { strategy: 'never' }
|
|
284
|
+
| { strategy: 'onChange'; triggerFields: string[] }
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
| Strategy | Description |
|
|
288
|
+
| ---------- | ------------------------------------------------- |
|
|
289
|
+
| `always` | Reload field data every time filters are applied |
|
|
290
|
+
| `never` | Only reload on programmatic configuration changes |
|
|
291
|
+
| `onChange` | Reload only when specific fields changed |
|
|
292
|
+
|
|
293
|
+
### Example Usage
|
|
294
|
+
|
|
295
|
+
```json
|
|
296
|
+
{
|
|
297
|
+
"filters": {
|
|
298
|
+
"mode": "payload",
|
|
299
|
+
"visible": true,
|
|
300
|
+
"togglePanel": true,
|
|
301
|
+
"reload": {
|
|
302
|
+
"strategy": "onChange",
|
|
303
|
+
"triggerFields": ["dc:title", "dc:category"]
|
|
304
|
+
},
|
|
305
|
+
"fields": [
|
|
306
|
+
{
|
|
307
|
+
"type": "predicate",
|
|
308
|
+
"config": {
|
|
309
|
+
"label": "FILTERS.title",
|
|
310
|
+
"fieldKey": "dc:title",
|
|
311
|
+
"sendMode": "payload",
|
|
312
|
+
"valueType": "valueObject",
|
|
313
|
+
"render": {
|
|
314
|
+
"type": "input",
|
|
315
|
+
"options": {
|
|
316
|
+
"debounceTime": 300
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
## Report Definitions
|
|
327
|
+
|
|
328
|
+
### `ReportsDefinition` Type
|
|
329
|
+
|
|
330
|
+
Container for all report configurations.
|
|
331
|
+
|
|
332
|
+
```typescript
|
|
333
|
+
type ReportsDefinition = {
|
|
334
|
+
items: ReportDefinitionModel[];
|
|
335
|
+
};
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
### `ReportDefinitionModel` Union Type
|
|
339
|
+
|
|
340
|
+
```typescript
|
|
341
|
+
export type ReportDefinitionModel =
|
|
342
|
+
| DigitChartDefinition
|
|
343
|
+
| GraphChartDefinition
|
|
344
|
+
| DynamicLineChartDefinition
|
|
345
|
+
| CustomChartDefinition;
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
### Chart Defaults Configuration
|
|
349
|
+
The `ChartDefaultsOptions` type defines optional global defaults applied to all charts in your application. These settings can control fonts, colors, bar dimensions, and globally registered Chart.js plugins. The `CHART_DEFAULTS_OPTIONS` injection token allows you to provide these defaults via Angular’s dependency injection system.
|
|
350
|
+
|
|
351
|
+
```ts
|
|
352
|
+
type ChartDefaultsOptions = {
|
|
353
|
+
globalPlugins?: Plugin[];
|
|
354
|
+
fontFamily?: string;
|
|
355
|
+
fontSize?: number;
|
|
356
|
+
color?: string;
|
|
357
|
+
borderColor?: string;
|
|
358
|
+
backgroundColor?: string;
|
|
359
|
+
maxBarThickness?: number;
|
|
360
|
+
minBarLength?: number;
|
|
361
|
+
};
|
|
362
|
+
|
|
363
|
+
const CHART_DEFAULTS_OPTIONS = new InjectionToken<ChartDefaultsOptions>(
|
|
364
|
+
'CHART_DEFAULTS_OPTIONS'
|
|
365
|
+
);
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
| Property | Type | Required | Description |
|
|
369
|
+
| ----------------- | ---------- | -------- | ------------------------------------------------------------------- |
|
|
370
|
+
| `globalPlugins` | `Plugin[]` | ❌ | List of globally applied Chart.js plugins |
|
|
371
|
+
| `fontFamily` | `string` | ❌ | Default font family for all chart text |
|
|
372
|
+
| `fontSize` | `number` | ❌ | Default font size for chart labels, titles, and ticks |
|
|
373
|
+
| `color` | `string` | ❌ | Default text color used in chart labels and legends |
|
|
374
|
+
| `borderColor` | `string` | ❌ | Default border color for bars, lines, and other chart elements |
|
|
375
|
+
| `backgroundColor` | `string` | ❌ | Default background color for chart elements |
|
|
376
|
+
| `maxBarThickness` | `number` | ❌ | Maximum thickness (in pixels) for bars in bar charts |
|
|
377
|
+
| `minBarLength` | `number` | ❌ | Minimum pixel length for bars—useful for visibility of small values |
|
|
378
|
+
|
|
379
|
+
> [!note] Note
|
|
380
|
+
> 💡 Use CHART_DEFAULTS_OPTIONS to configure consistent styling and behavior across all your charts.
|
|
381
|
+
|
|
382
|
+
#### Example
|
|
383
|
+
```ts
|
|
384
|
+
|
|
385
|
+
const logPlugin: Plugin = {
|
|
386
|
+
id: 'logPlugin',
|
|
387
|
+
beforeDraw: (chart) => {
|
|
388
|
+
console.log('Rendering chart:', chart.config.type);
|
|
389
|
+
}
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
const chartDefaults: ChartDefaultsOptions = {
|
|
394
|
+
fontFamily: 'Arial, sans-serif',
|
|
395
|
+
fontSize: 12,
|
|
396
|
+
color: '#333',
|
|
397
|
+
borderColor: '#ccc',
|
|
398
|
+
backgroundColor: '#f5f5f5',
|
|
399
|
+
maxBarThickness: 30,
|
|
400
|
+
minBarLength: 5,
|
|
401
|
+
globalPlugins: [logPlugin] // Register the plugin globally
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
@NgModule({
|
|
405
|
+
providers: [
|
|
406
|
+
{
|
|
407
|
+
provide: CHART_DEFAULTS_OPTIONS,
|
|
408
|
+
useValue: chartDefaults
|
|
409
|
+
}
|
|
410
|
+
]
|
|
411
|
+
})
|
|
412
|
+
export class AppModule {}
|
|
413
|
+
```
|
|
414
|
+
|
|
415
|
+
## Chart Types
|
|
416
|
+
|
|
417
|
+
### Base Configuration
|
|
418
|
+
|
|
419
|
+
All chart types extend `BaseReportConfig`:
|
|
420
|
+
|
|
421
|
+
```typescript
|
|
422
|
+
export interface BaseReportConfig {
|
|
423
|
+
id: string | number;
|
|
424
|
+
label: string;
|
|
425
|
+
mode: ReportMode;
|
|
426
|
+
navigate?: {
|
|
427
|
+
enabled?: boolean;
|
|
428
|
+
route: any[];
|
|
429
|
+
includeParams?: boolean;
|
|
430
|
+
};
|
|
431
|
+
details?: ReportDetailsConfig;
|
|
432
|
+
layout?: {
|
|
433
|
+
width?: GridWidth;
|
|
434
|
+
columnPosition?: GridWidth;
|
|
435
|
+
height?: number | 'auto';
|
|
436
|
+
rowPosition?: number | 'auto';
|
|
437
|
+
styleClass?: string;
|
|
438
|
+
minContentHeight?: string;
|
|
439
|
+
};
|
|
440
|
+
}
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
#### Base Properties
|
|
444
|
+
|
|
445
|
+
| Property | Type | Required | Description |
|
|
446
|
+
| ------------------- | --------------------- | -------- | ----------------------------------------------------------------------- |
|
|
447
|
+
| id | `string \| number` | ✅ | Unique identifier |
|
|
448
|
+
| label | `string` | ✅ | Display name (supports i18n keys) |
|
|
449
|
+
| mode | `ReportMode` | ✅ | Chart type identifier |
|
|
450
|
+
| navigate | `object` | ❌ | Click navigation configuration |
|
|
451
|
+
| └─ enabled | `boolean` | ❌ | Enable click-to-navigate |
|
|
452
|
+
| └─ route | `any[]` | ✅ | Angular route array |
|
|
453
|
+
| └─ includeParams | `boolean` | ❌ | Include current filters in navigation |
|
|
454
|
+
| details | `ReportDetailsConfig` | ❌ | Detailed view configuration |
|
|
455
|
+
| layout | `object` | ❌ | Grid layout configuration |
|
|
456
|
+
| └─ width | `GridWidth` | ❌ | Column span (1-12 or 'auto') |
|
|
457
|
+
| └─ columnPosition | `GridWidth` | ❌ | Starting column |
|
|
458
|
+
| └─ height | `number \| 'auto'` | ❌ | Row span or auto-size |
|
|
459
|
+
| └─ rowPosition | `number \| 'auto'` | ❌ | Starting row |
|
|
460
|
+
| └─ styleClass | `string` | ❌ | Custom CSS classes |
|
|
461
|
+
| └─ minContentHeight | `string` | ❌ | Defines the minimum height of the content area (supports px, rem, etc.) |
|
|
462
|
+
|
|
463
|
+
### Digit Charts
|
|
464
|
+
|
|
465
|
+
For displaying key performance indicators (KPIs) as large numbers.
|
|
466
|
+
|
|
467
|
+
#### `DigitChartDefinition` Type
|
|
468
|
+
|
|
469
|
+
```typescript
|
|
470
|
+
type DigitChartDefinition = BaseReportConfig & {
|
|
471
|
+
mode: 'digit';
|
|
472
|
+
datasource: {
|
|
473
|
+
propertyPath: string;
|
|
474
|
+
transformer?: string;
|
|
475
|
+
bindValue?: string;
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
```
|
|
479
|
+
|
|
480
|
+
#### Properties
|
|
481
|
+
|
|
482
|
+
|Property|Type|Required|Description|
|
|
483
|
+
|---|---|---|---|
|
|
484
|
+
|mode|`'digit'`|✅|Chart type identifier|
|
|
485
|
+
|datasource|`object`|✅|Data source configuration|
|
|
486
|
+
|└─ propertyPath|`string`|✅|Path to data property in response|
|
|
487
|
+
|└─ transformer|`string`|❌|Transformer name (registered in `ChartDataTransformers`)|
|
|
488
|
+
|└─ bindValue|`string`|❌|Property to extract from data object/array|
|
|
489
|
+
|
|
490
|
+
#### Example
|
|
491
|
+
|
|
492
|
+
```json
|
|
493
|
+
{
|
|
494
|
+
"id": "resultsCount",
|
|
495
|
+
"label": "REPORTS.resultsCount",
|
|
496
|
+
"mode": "digit",
|
|
497
|
+
"datasource": {
|
|
498
|
+
"propertyPath": "resultsCount"
|
|
499
|
+
},
|
|
500
|
+
"layout": {
|
|
501
|
+
"width": 2,
|
|
502
|
+
"height": 1
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
```
|
|
506
|
+
|
|
507
|
+
### Graph Charts
|
|
508
|
+
|
|
509
|
+
For Chart.js-powered visualizations with full customization support.
|
|
510
|
+
|
|
511
|
+
#### `GraphChartDefinition` Type
|
|
512
|
+
|
|
513
|
+
```typescript
|
|
514
|
+
type GraphChartDefinition<TType extends ChartType = ChartType> = BaseReportConfig & {
|
|
515
|
+
mode: 'graph';
|
|
516
|
+
datasource: ReportDataSource[];
|
|
517
|
+
chart: GraphChartOptionsDefinition<TType>;
|
|
518
|
+
prefix?: string;
|
|
519
|
+
print?: boolean;
|
|
520
|
+
typeConfig?: ChartTypeConfig;
|
|
521
|
+
dialog?: GraphDialogConfig;
|
|
522
|
+
};
|
|
523
|
+
```
|
|
524
|
+
|
|
525
|
+
#### Properties
|
|
526
|
+
|
|
527
|
+
|Property|Type|Required|Description|
|
|
528
|
+
|---|---|---|---|
|
|
529
|
+
|mode|`'graph'`|✅|Chart type identifier|
|
|
530
|
+
|datasource|`ReportDataSource[]`|✅|Data source configurations|
|
|
531
|
+
|chart|`GraphChartOptionsDefinition<TType>`|✅|Chart.js configuration|
|
|
532
|
+
|prefix|`string`|❌|Translation key prefix|
|
|
533
|
+
|print|`boolean`|❌|Enable print support for this chart|
|
|
534
|
+
|typeConfig|`ChartTypeConfig`|❌|Chart type switching configuration|
|
|
535
|
+
|dialog|`GraphDialogConfig`|❌|Modal dialog configuration|
|
|
536
|
+
|
|
537
|
+
#### Chart Configuration
|
|
538
|
+
|
|
539
|
+
```typescript
|
|
540
|
+
type GraphChartOptionsDefinition<TType extends ChartType = ChartType> = {
|
|
541
|
+
type: TType;
|
|
542
|
+
options?: CustomChartOptions<TType>;
|
|
543
|
+
datasets?: Omit<ChartDataset<TType>, 'data'>[];
|
|
544
|
+
overrides?: ChartOptionsByType;
|
|
545
|
+
plugins?: string[];
|
|
546
|
+
colors?: string[];
|
|
547
|
+
direction?: 'horizontal' | 'vertical';
|
|
548
|
+
callbacks?: Array<CallbackDefinition>;
|
|
549
|
+
};
|
|
550
|
+
```
|
|
551
|
+
|
|
552
|
+
| Property | Type | Required | Description |
|
|
553
|
+
| --------- | ------------------------------------- | -------- | ------------------------------------------- |
|
|
554
|
+
| type | `TType` | ✅ | Chart.js chart type |
|
|
555
|
+
| options | `CustomChartOptions<TType>` | ❌ | Chart.js options with extensions |
|
|
556
|
+
| datasets | `Omit<ChartDataset<TType>, 'data'>[]` | ❌ | Dataset configurations |
|
|
557
|
+
| overrides | `ChartOptionsByType` | ❌ | Type-specific overrides |
|
|
558
|
+
| plugins | `string[]` | ❌ | Plugin names (must be pre-registered) |
|
|
559
|
+
| colors | `string[]` | ❌ | Color palette (CSS colors/variables) |
|
|
560
|
+
| direction | `'horizontal' \| 'vertical'` | ❌ | Chart orientation (bar charts only) |
|
|
561
|
+
| callbacks | `Array<CallbackDefinition>` | ❌ | List of dynamic charts.js callback bindings |
|
|
562
|
+
| | | | |
|
|
563
|
+
|
|
564
|
+
##### CallbackDefinition
|
|
565
|
+
```ts
|
|
566
|
+
type CallbackDefinition = {
|
|
567
|
+
path: string; // Location of the callback in Chart.js options
|
|
568
|
+
callback: EvaluatedString<'callback'>; // Function body to be evaluated and attached
|
|
569
|
+
};
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
| Property | Type | Required | Description |
|
|
573
|
+
| ---------- | ----------------------------- | -------- | -------------------------------------------------------------------------------------------------- |
|
|
574
|
+
| `path` | `string` | ✅ | Dot-notated path to the Chart.js callback option (e.g., `options.plugins.tooltip.callbacks.label`) |
|
|
575
|
+
| `callback` | `EvaluatedString<'callback'>` | ✅ | A stringified function that is evaluated and assigned at runtime |
|
|
576
|
+
|
|
577
|
+
#### Example
|
|
578
|
+
```json
|
|
579
|
+
{
|
|
580
|
+
"chart": {
|
|
581
|
+
"type": "bar",
|
|
582
|
+
"direction": "vertical",
|
|
583
|
+
"plugins": ["scrollableLegends", "doughnutEmptyState"],
|
|
584
|
+
"callbacks": [
|
|
585
|
+
{
|
|
586
|
+
"path": "tooltip.callbacks.label",
|
|
587
|
+
"callback": "callback=register.get('convertDecimalHoursToString')"
|
|
588
|
+
},
|
|
589
|
+
//Example 2
|
|
590
|
+
{
|
|
591
|
+
"path": "tooltip.callbacks.label",
|
|
592
|
+
"callback": "callback= (context) => context.raw"
|
|
593
|
+
}
|
|
594
|
+
]
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
```
|
|
598
|
+
|
|
599
|
+
#### Data Source Configuration
|
|
600
|
+
|
|
601
|
+
```typescript
|
|
602
|
+
type ReportDataSource = {
|
|
603
|
+
propertyPath: string;
|
|
604
|
+
bindLabel?: {ar:string;en:string};
|
|
605
|
+
bindValue?: string;
|
|
606
|
+
dataFormat?: string;
|
|
607
|
+
transformer?: string;
|
|
608
|
+
};
|
|
609
|
+
```
|
|
610
|
+
|
|
611
|
+
| Property | Type | Required | Description |
|
|
612
|
+
| ------------ | ----------- | ---------------------------- | ------------------------------------------------------------------------------------------- |
|
|
613
|
+
| propertyPath | `string` | ✅ | Path to data in response |
|
|
614
|
+
| bindLabel | `bindLabel` | `{ ar: string; en: string }` | Localized property mappings defining bucket properties containing Arabic and English labels |
|
|
615
|
+
| bindValue | `string` | ❌ | Property for chart values |
|
|
616
|
+
| dataFormat | `string` | ❌ | Format string for data transformation |
|
|
617
|
+
| transformer | `string` | ❌ | Transformer name (registered in `ChartDataTransformers`) |
|
|
618
|
+
|
|
619
|
+
#### Example
|
|
620
|
+
```json
|
|
621
|
+
{
|
|
622
|
+
"id": "future__generaldocument_secrecyLevel_agg",
|
|
623
|
+
"label": "REPORTS.gdocSecrecyLevel",
|
|
624
|
+
"mode": "graph",
|
|
625
|
+
"print": true,
|
|
626
|
+
"dialog": {
|
|
627
|
+
"active": true
|
|
628
|
+
},
|
|
629
|
+
"typeConfig": {
|
|
630
|
+
"enabled": true,
|
|
631
|
+
"allowedTypes": ["line", "bar", "pie"]
|
|
632
|
+
},
|
|
633
|
+
"prefix": "search.buckets.",
|
|
634
|
+
"details": {
|
|
635
|
+
"enabled": true,
|
|
636
|
+
"source": "secrecyLevel_aggDetailsConfig"
|
|
637
|
+
},
|
|
638
|
+
"datasource": [
|
|
639
|
+
{
|
|
640
|
+
"propertyPath": "aggregations.generaldocument_secrecyLevel_agg.buckets",
|
|
641
|
+
"transformer": "reduceData",
|
|
642
|
+
"bindLabel": {
|
|
643
|
+
"ar": "fetchedKey.properties.arTitle",
|
|
644
|
+
"en": "fetchedKey.properties.enTitle"
|
|
645
|
+
},
|
|
646
|
+
}
|
|
647
|
+
],
|
|
648
|
+
"chart": {
|
|
649
|
+
"type": "bar",
|
|
650
|
+
"options": {
|
|
651
|
+
"indexAxis": "y",
|
|
652
|
+
"responsive": true,
|
|
653
|
+
"maintainAspectRatio": false,
|
|
654
|
+
"scales": {
|
|
655
|
+
"x": {
|
|
656
|
+
"ticks": {
|
|
657
|
+
"stepSize": 1,
|
|
658
|
+
"color": "var(--chart-ticks-x-color)"
|
|
659
|
+
},
|
|
660
|
+
"grid": {
|
|
661
|
+
"color": "var(--chart-grid-x-color)"
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"plugins": {
|
|
666
|
+
"legend": {
|
|
667
|
+
"display": false
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"plugins": ["chartDataLabels", "scrollableLegends", "doughnutEmptyState"]
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
```
|
|
676
|
+
|
|
677
|
+
#### Chart Type Configuration
|
|
678
|
+
|
|
679
|
+
```typescript
|
|
680
|
+
interface ChartTypeConfig {
|
|
681
|
+
enabled: boolean;
|
|
682
|
+
allowedTypes?: AllowedChartType[];
|
|
683
|
+
}
|
|
684
|
+
```
|
|
685
|
+
|
|
686
|
+
|Property|Type|Required|Description|
|
|
687
|
+
|---|---|---|---|
|
|
688
|
+
|enabled|`boolean`|✅|Allow users to switch chart types|
|
|
689
|
+
|allowedTypes|`AllowedChartType[]`|❌|Restrict available chart types|
|
|
690
|
+
|
|
691
|
+
#### Dialog Configuration
|
|
692
|
+
|
|
693
|
+
```typescript
|
|
694
|
+
type GraphDialogConfig = {
|
|
695
|
+
active: boolean;
|
|
696
|
+
panelClass?: string | string[];
|
|
697
|
+
width?: string;
|
|
698
|
+
height?: string;
|
|
699
|
+
minWidth?: number | string;
|
|
700
|
+
minHeight?: number | string;
|
|
701
|
+
maxWidth?: number | string;
|
|
702
|
+
maxHeight?: number | string;
|
|
703
|
+
position?: DialogPosition;
|
|
704
|
+
};
|
|
705
|
+
```
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
### Graph Charts
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
### Report Details Configuration
|
|
712
|
+
|
|
713
|
+
Provides detailed tabular views of report data.
|
|
714
|
+
|
|
715
|
+
#### `ReportDetailsConfig` Type
|
|
716
|
+
|
|
717
|
+
```typescript
|
|
718
|
+
export type ReportDetailsConfig = {
|
|
719
|
+
enabled: boolean;
|
|
720
|
+
source: ReportDetailsKey | ReportConfigOptions;
|
|
721
|
+
};
|
|
722
|
+
```
|
|
723
|
+
|
|
724
|
+
#### Simple Configuration (String Key)
|
|
725
|
+
|
|
726
|
+
```typescript
|
|
727
|
+
type ReportDetailsKey = string;
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
Use a predefined report configuration from the server:
|
|
731
|
+
|
|
732
|
+
```json
|
|
733
|
+
{
|
|
734
|
+
"details": {
|
|
735
|
+
"enabled": true,
|
|
736
|
+
"source": "DETAIL_REPORT"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
```
|
|
740
|
+
|
|
741
|
+
#### Advanced Configuration (Full Options)
|
|
742
|
+
|
|
743
|
+
```typescript
|
|
744
|
+
export type ReportConfigOptions = {
|
|
745
|
+
request?: Partial<NdfReportsRequest> & {
|
|
746
|
+
actions?: {
|
|
747
|
+
beforeSubmit?: EvaluatedString<'payload'>;
|
|
748
|
+
};
|
|
749
|
+
};
|
|
750
|
+
columns?: TableColumnConfig[];
|
|
751
|
+
fields?: Record<string, string>;
|
|
752
|
+
prefix?: string;
|
|
753
|
+
quickFilters?: string;
|
|
754
|
+
columnsOptions?: {
|
|
755
|
+
toggle?: boolean;
|
|
756
|
+
sortable?: TableSortConfig;
|
|
757
|
+
};
|
|
758
|
+
sortingBy?: TableSortOptions;
|
|
759
|
+
export?: TableExportConfig;
|
|
760
|
+
};
|
|
761
|
+
```
|
|
762
|
+
|
|
763
|
+
|Property|Type|Required|Description|
|
|
764
|
+
|---|---|---|---|
|
|
765
|
+
|request|`Partial<NdfReportsRequest> & ...`|❌|Request configuration with pre-submit actions|
|
|
766
|
+
|columns|`TableColumnConfig[]`|❌|Table column definitions|
|
|
767
|
+
|fields|`Record<string, string>`|❌|Field name mapping (response → display)|
|
|
768
|
+
|prefix|`string`|❌|Translation key prefix|
|
|
769
|
+
|quickFilters|`string`|❌|Quick filter configuration|
|
|
770
|
+
|columnsOptions|`object`|❌|Global column behavior settings|
|
|
771
|
+
|sortingBy|`TableSortOptions`|❌|Default sorting configuration|
|
|
772
|
+
|export|`TableExportConfig`|❌|Export functionality configuration|
|
|
773
|
+
|
|
774
|
+
#### Complete Example
|
|
775
|
+
|
|
776
|
+
```json
|
|
777
|
+
{
|
|
778
|
+
"details": {
|
|
779
|
+
"enabled": true,
|
|
780
|
+
"source": {
|
|
781
|
+
"prefix": "REPORTS.",
|
|
782
|
+
"quickFilters": "After Archiving",
|
|
783
|
+
"columnsOptions": {
|
|
784
|
+
"toggle": true,
|
|
785
|
+
"sortable": {
|
|
786
|
+
"enabled": true
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"request": {
|
|
790
|
+
"headers": {
|
|
791
|
+
"properties": "*"
|
|
792
|
+
},
|
|
793
|
+
"actions": {
|
|
794
|
+
"beforeSubmit": "payload.userId = 'getCurrentUser'"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"fields": {
|
|
798
|
+
"created": "dc:created",
|
|
799
|
+
"deptEnName": "padep:englishName",
|
|
800
|
+
"deptArName": "padep:arabicName"
|
|
801
|
+
},
|
|
802
|
+
"columns": [
|
|
803
|
+
{
|
|
804
|
+
"name": "Doc_Name",
|
|
805
|
+
"prop": "properties.title",
|
|
806
|
+
"display": true,
|
|
807
|
+
"type": "custom",
|
|
808
|
+
"template": "common.components.titleWithIcon",
|
|
809
|
+
"sortable": true,
|
|
810
|
+
"headerClass": "dc:title",
|
|
811
|
+
"defaultVisible": true
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"name": "systemName",
|
|
815
|
+
"prop": "properties.systemName",
|
|
816
|
+
"display": true,
|
|
817
|
+
"type": "custom",
|
|
818
|
+
"template": "common.components.systemName",
|
|
819
|
+
"translatePrefix": "search.buckets",
|
|
820
|
+
"isOrginalKey": true,
|
|
821
|
+
"sortable": false,
|
|
822
|
+
"headerClass": "recdef:systemName",
|
|
823
|
+
"defaultVisible": true
|
|
824
|
+
}
|
|
825
|
+
]
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
```
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
### Dynamic Line Charts
|
|
833
|
+
|
|
834
|
+
For time-based data visualization with dynamic grouping capabilities and temporal aggregation features.
|
|
835
|
+
|
|
836
|
+
#### `DynamicLineChartDefinition` Type
|
|
837
|
+
|
|
838
|
+
```typescript
|
|
839
|
+
export type DynamicLineChartDefinition = ReportChartConfig & {
|
|
840
|
+
mode: 'dynamicLine';
|
|
841
|
+
prefix?: string;
|
|
842
|
+
colors?: string[];
|
|
843
|
+
print?: boolean;
|
|
844
|
+
request: NdfReportsRequest & {
|
|
845
|
+
actions?: {
|
|
846
|
+
beforeSubmit?: EvaluatedString<'payload'>;
|
|
847
|
+
};
|
|
848
|
+
};
|
|
849
|
+
datasource: ({ aggregation: string } & ReportDataSource)[];
|
|
850
|
+
group?: {
|
|
851
|
+
active: boolean;
|
|
852
|
+
selected?: TimeGroups;
|
|
853
|
+
};
|
|
854
|
+
chart: DynamicLineChartOptionsDefinition;
|
|
855
|
+
};
|
|
856
|
+
```
|
|
857
|
+
|
|
858
|
+
#### Core Properties
|
|
859
|
+
|
|
860
|
+
|Property|Type|Required|Description|
|
|
861
|
+
|---|---|---|---|
|
|
862
|
+
|mode|`'dynamicLine'`|✅|Chart type identifier|
|
|
863
|
+
|prefix|`string`|❌|Translation key prefix for labels|
|
|
864
|
+
|colors|`string[]`|❌|Custom color palette (CSS colors/variables)|
|
|
865
|
+
|print|`boolean`|❌|Enable print functionality for this chart|
|
|
866
|
+
|request|`NdfReportsRequest & { actions? }`|✅|Enhanced request configuration with pre-submit actions|
|
|
867
|
+
|datasource|`({ aggregation: string } & ReportDataSource)[]`|✅|Data source configurations with aggregation identifiers|
|
|
868
|
+
|group|`TimeGroupConfig`|❌|Time grouping configuration for dynamic period selection|
|
|
869
|
+
|chart|`DynamicLineChartOptionsDefinition`|✅|Chart.js line chart specific configuration|
|
|
870
|
+
|
|
871
|
+
#### Enhanced Request Configuration
|
|
872
|
+
|
|
873
|
+
The `request` property extends the base `NdfReportsRequest` with action capabilities:
|
|
874
|
+
|
|
875
|
+
```typescript
|
|
876
|
+
request: NdfReportsRequest & {
|
|
877
|
+
actions?: {
|
|
878
|
+
beforeSubmit?: EvaluatedString<'payload'>;
|
|
879
|
+
};
|
|
880
|
+
};
|
|
881
|
+
```
|
|
882
|
+
|
|
883
|
+
**Actions Configuration**
|
|
884
|
+
|
|
885
|
+
|Property|Type|Required|Description|
|
|
886
|
+
|---|---|---|---|
|
|
887
|
+
|beforeSubmit|`EvaluatedString<'payload'>`|❌|Script executed before request submission for dynamic payload modification|
|
|
888
|
+
|
|
889
|
+
#### Data Source Configuration
|
|
890
|
+
|
|
891
|
+
Each data source combines standard `ReportDataSource` properties with aggregation-specific configuration:
|
|
892
|
+
|
|
893
|
+
```typescript
|
|
894
|
+
datasource: ({ aggregation: string } & ReportDataSource)[];
|
|
895
|
+
```
|
|
896
|
+
|
|
897
|
+
**Enhanced Properties**
|
|
898
|
+
|
|
899
|
+
|Property|Type|Required|Description|
|
|
900
|
+
|---|---|---|---|
|
|
901
|
+
|aggregation|`string`|✅|Aggregation identifier for time-based queries|
|
|
902
|
+
|propertyPath|`string`|✅|Path to data in API response|
|
|
903
|
+
|bindLabel|`string`|❌|Property for chart labels (typically time values)|
|
|
904
|
+
|bindValue|`string`|❌|Property for chart values (typically counts/metrics)|
|
|
905
|
+
|dataFormat|`string`|❌|Format string for data transformation|
|
|
906
|
+
|transformer|`string`|❌|Transformer name for data processing|
|
|
907
|
+
|
|
908
|
+
#### Time Grouping Configuration
|
|
909
|
+
|
|
910
|
+
```typescript
|
|
911
|
+
const TIME_GROUPS = {
|
|
912
|
+
day: 'day',
|
|
913
|
+
week: 'week',
|
|
914
|
+
month: 'month',
|
|
915
|
+
year: 'year'
|
|
916
|
+
} as const;
|
|
917
|
+
|
|
918
|
+
export type TimeGroups = (typeof TIME_GROUPS)[keyof typeof TIME_GROUPS];
|
|
919
|
+
|
|
920
|
+
group?: {
|
|
921
|
+
active: boolean;
|
|
922
|
+
selected?: TimeGroups;
|
|
923
|
+
};
|
|
924
|
+
```
|
|
925
|
+
|
|
926
|
+
**Time Group Properties**
|
|
927
|
+
|
|
928
|
+
|Property|Type|Required|Description|
|
|
929
|
+
|---|---|---|---|
|
|
930
|
+
|active|`boolean`|✅|Enable time grouping controls in UI|
|
|
931
|
+
|selected|`TimeGroups`|❌|Default selected time aggregation period|
|
|
932
|
+
|
|
933
|
+
**Available Time Groups**
|
|
934
|
+
|
|
935
|
+
|Value|Description|Use Case|
|
|
936
|
+
|---|---|---|
|
|
937
|
+
|`day`|Daily aggregation|Detailed short-term analysis|
|
|
938
|
+
|`week`|Weekly aggregation|Medium-term trend analysis|
|
|
939
|
+
|`month`|Monthly aggregation|Long-term trend visualization|
|
|
940
|
+
|`year`|Yearly aggregation|Historical data overview|
|
|
941
|
+
|
|
942
|
+
#### Chart Configuration
|
|
943
|
+
|
|
944
|
+
```typescript
|
|
945
|
+
type DynamicLineChartOptionsDefinition = {
|
|
946
|
+
type: 'line';
|
|
947
|
+
options?: CustomChartOptions<'line'>;
|
|
948
|
+
datasets?: Omit<ChartDataset<'line'>, 'data'>[];
|
|
949
|
+
plugins?: string[];
|
|
950
|
+
colors?: string[];
|
|
951
|
+
};
|
|
952
|
+
```
|
|
953
|
+
|
|
954
|
+
**Chart Properties**
|
|
955
|
+
|
|
956
|
+
|Property|Type|Required|Description|
|
|
957
|
+
|---|---|---|---|
|
|
958
|
+
|type|`'line'`|✅|Fixed chart type for dynamic line charts|
|
|
959
|
+
|options|`CustomChartOptions<'line'>`|❌|Chart.js line chart options with time scale support|
|
|
960
|
+
|datasets|`Omit<ChartDataset<'line'>, 'data'>[]`|❌|Dataset configurations excluding data property|
|
|
961
|
+
|plugins|`string[]`|❌|Plugin names (must be pre-registered in ChartPluginsRegistry)|
|
|
962
|
+
|colors|`string[]`|❌|Color palette override for chart elements|
|
|
963
|
+
|
|
964
|
+
#### Complete Example
|
|
965
|
+
```json
|
|
966
|
+
{
|
|
967
|
+
"mode": "dynamicLine",
|
|
968
|
+
"id": "late_RetentionInfo_activeRetentionExpireDate_agg",
|
|
969
|
+
"label": "REPORTS.expectedTransferDate",
|
|
970
|
+
"print": true,
|
|
971
|
+
"dialog": {
|
|
972
|
+
"active": true,
|
|
973
|
+
"width": "80vw",
|
|
974
|
+
"height": "60vh"
|
|
975
|
+
},
|
|
976
|
+
"layout": {
|
|
977
|
+
"width": 12,
|
|
978
|
+
"height": 6
|
|
979
|
+
},
|
|
980
|
+
"group": {
|
|
981
|
+
"active": true,
|
|
982
|
+
"selected": "month"
|
|
983
|
+
},
|
|
984
|
+
|
|
985
|
+
"details": {
|
|
986
|
+
"enabled": true,
|
|
987
|
+
"source": "DETAILS_CONFIG"
|
|
988
|
+
},
|
|
989
|
+
"request": {
|
|
990
|
+
"pageProvider": "PP_RPT_Records",
|
|
991
|
+
"customUrl": {
|
|
992
|
+
"url": "/custom-search/admin/pp/PP_RPT_Records/execute",
|
|
993
|
+
"method": "post"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
"datasource": [
|
|
997
|
+
{
|
|
998
|
+
"aggregation": "RetentionInfo_activeRetentionExpireDate_agg",
|
|
999
|
+
"propertyPath": "aggregations.RetentionInfo_activeRetentionExpireDate_agg.buckets",
|
|
1000
|
+
"bindLabel": "key_as_string",
|
|
1001
|
+
"bindValue": "doc_count",
|
|
1002
|
+
"transformer": "timeFormat"
|
|
1003
|
+
}
|
|
1004
|
+
],
|
|
1005
|
+
"chart": {
|
|
1006
|
+
"type": "line",
|
|
1007
|
+
"options": {
|
|
1008
|
+
"responsive": true,
|
|
1009
|
+
"maintainAspectRatio": false,
|
|
1010
|
+
"layout": {
|
|
1011
|
+
"padding": {
|
|
1012
|
+
"right": 40,
|
|
1013
|
+
"left": 40
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
"plugins": ["singlePointCenter"],
|
|
1018
|
+
"datasets": [
|
|
1019
|
+
{
|
|
1020
|
+
"borderWidth": 2,
|
|
1021
|
+
"borderColor": "var(--chart-color-0)",
|
|
1022
|
+
"pointBorderWidth": 0,
|
|
1023
|
+
"pointBackgroundColor": "var(--chart-color-0)"
|
|
1024
|
+
}
|
|
1025
|
+
]
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
```
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
### Custom Charts
|
|
1032
|
+
|
|
1033
|
+
For highly specialized visualizations using custom Angular components that extend the base report functionality with complete control over rendering and behavior.
|
|
1034
|
+
|
|
1035
|
+
#### `CustomChartDefinition` Type
|
|
1036
|
+
|
|
1037
|
+
```typescript
|
|
1038
|
+
export interface CustomChartDefinition extends BaseReportConfig {
|
|
1039
|
+
mode: 'custom';
|
|
1040
|
+
type: string;
|
|
1041
|
+
prefix?: string;
|
|
1042
|
+
print?: boolean;
|
|
1043
|
+
datasource?: ReportDataSource[];
|
|
1044
|
+
options?: Record<string, any>;
|
|
1045
|
+
dialog?: GraphDialogConfig;
|
|
1046
|
+
}
|
|
1047
|
+
```
|
|
1048
|
+
|
|
1049
|
+
#### Core Properties
|
|
1050
|
+
|
|
1051
|
+
|Property|Type|Required|Description|
|
|
1052
|
+
|---|---|---|---|
|
|
1053
|
+
|mode|`'custom'`|✅|Chart type identifier for custom components|
|
|
1054
|
+
|type|`string`|✅|Unique identifier for component registration in `CustomReportsRegistry`|
|
|
1055
|
+
|prefix|`string`|❌|Translation key prefix for component labels|
|
|
1056
|
+
|print|`boolean`|❌|Enable print functionality for this component|
|
|
1057
|
+
|datasource|`ReportDataSource[]`|❌|Optional data source configurations for component|
|
|
1058
|
+
|options|`Record<string, any>`|❌|Custom configuration object passed to component|
|
|
1059
|
+
|dialog|`GraphDialogConfig`|❌|Modal dialog configuration for detailed views|
|
|
1060
|
+
|
|
1061
|
+
#### Component Registration
|
|
1062
|
+
|
|
1063
|
+
Custom chart components must be registered with the `CustomReportsRegistry` before use:
|
|
1064
|
+
|
|
1065
|
+
```typescript
|
|
1066
|
+
export interface CustomReportRegistryDefinition {
|
|
1067
|
+
type: string;
|
|
1068
|
+
component: ComponentType<any>;
|
|
1069
|
+
category?: string;
|
|
1070
|
+
name?: string;
|
|
1071
|
+
description?: string;
|
|
1072
|
+
}
|
|
1073
|
+
```
|
|
1074
|
+
|
|
1075
|
+
**Registry Properties**
|
|
1076
|
+
|
|
1077
|
+
|Property|Type|Required|Description|
|
|
1078
|
+
|---|---|---|---|
|
|
1079
|
+
|type|`string`|✅|Unique identifier matching `CustomChartDefinition.type`|
|
|
1080
|
+
|component|`ComponentType<any>`|✅|Angular component class extending `BaseCustomReport`|
|
|
1081
|
+
|category|`string`|❌|Component categorization for organization|
|
|
1082
|
+
|name|`string`|❌|Human-readable component name|
|
|
1083
|
+
|description|`string`|❌|Component description and usage information|
|
|
1084
|
+
|
|
1085
|
+
#### Base Custom Report Class
|
|
1086
|
+
|
|
1087
|
+
All custom chart components must extend `BaseCustomReport`:
|
|
1088
|
+
|
|
1089
|
+
```typescript
|
|
1090
|
+
abstract class BaseCustomReport extends DestroySubject {
|
|
1091
|
+
abstract print(): void;
|
|
1092
|
+
@Input() direction: Direction = 'rtl';
|
|
1093
|
+
@Input() definition: CustomChartDefinition;
|
|
1094
|
+
@Input() data: ReportResponseModel;
|
|
1095
|
+
@Input() criteria: CriteriaModel;
|
|
1096
|
+
@Input() config : CustomChart ;
|
|
1097
|
+
// ...
|
|
1098
|
+
}
|
|
1099
|
+
```
|
|
1100
|
+
|
|
1101
|
+
**Base Class Properties**
|
|
1102
|
+
|
|
1103
|
+
|Property|Type|Description|
|
|
1104
|
+
|---|---|---|
|
|
1105
|
+
|chart|`Chart`|Chart.js instance when available|
|
|
1106
|
+
|direction|`Direction`|Text direction for RTL/LTR support|
|
|
1107
|
+
|definition|`CustomChartDefinition`|Complete chart configuration|
|
|
1108
|
+
|data|`ReportResponseModel`|Current report data with reactive updates|
|
|
1109
|
+
|criteria|`CriteriaModel`|Filter criteria with change notifications|
|
|
1110
|
+
|config|`CustomChart`|Component-specific configuration|
|
|
1111
|
+
|
|
1112
|
+
**Required Implementation**
|
|
1113
|
+
|
|
1114
|
+
|Method|Return Type|Description|
|
|
1115
|
+
|---|---|---|
|
|
1116
|
+
|print()|`void`|Custom print functionality implementation|
|
|
1117
|
+
|
|
1118
|
+
#### Component Implementation Example
|
|
1119
|
+
```typescript
|
|
1120
|
+
@Component({
|
|
1121
|
+
selector: 'app-capacity-chart',
|
|
1122
|
+
template: `
|
|
1123
|
+
<div class="Heatmap-container" [class.rtl]="direction === 'rtl'">
|
|
1124
|
+
<app-chart
|
|
1125
|
+
|
|
1126
|
+
type="doughnut"
|
|
1127
|
+
[data]="chartData"
|
|
1128
|
+
[options]="options"
|
|
1129
|
+
[responsive]="true"
|
|
1130
|
+
[plugins]="plugins"
|
|
1131
|
+
(onReady)="chartReady($event)"
|
|
1132
|
+
>
|
|
1133
|
+
</app-chart>
|
|
1134
|
+
</div>
|
|
1135
|
+
`,
|
|
1136
|
+
})
|
|
1137
|
+
export class HeatmapChartComponent
|
|
1138
|
+
extends BaseCustomReport
|
|
1139
|
+
implements OnInit, OnDestroy
|
|
1140
|
+
{
|
|
1141
|
+
// Optional: Used to register the component in the system
|
|
1142
|
+
static registerInfo(): CustomReportRegistryDefinition {
|
|
1143
|
+
return {
|
|
1144
|
+
type: 'heatmap-chart',
|
|
1145
|
+
component: HeatmapChartComponent,
|
|
1146
|
+
category: 'visualization',
|
|
1147
|
+
name: 'Heatmap Chart',
|
|
1148
|
+
description: 'Advanced heatmap visualization for correlation data'
|
|
1149
|
+
};
|
|
1150
|
+
}
|
|
1151
|
+
// ...
|
|
1152
|
+
print(): void {
|
|
1153
|
+
this._chartHelperService.printChart(
|
|
1154
|
+
this.chart.id,
|
|
1155
|
+
this._translateService.instant(this.config.label),
|
|
1156
|
+
this.options,
|
|
1157
|
+
[
|
|
1158
|
+
circleLabel({
|
|
1159
|
+
shadowBlur: 0,
|
|
1160
|
+
font: 'bold 32px sans-serif',
|
|
1161
|
+
value: `15%`,
|
|
1162
|
+
}),
|
|
1163
|
+
]
|
|
1164
|
+
)
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
```
|
|
1168
|
+
|
|
1169
|
+
#### Registration and Configuration
|
|
1170
|
+
|
|
1171
|
+
**Step 1: Register Component**
|
|
1172
|
+
|
|
1173
|
+
```typescript
|
|
1174
|
+
// In your module or service
|
|
1175
|
+
constructor(private customReportsRegistry: CustomReportsRegistry) {
|
|
1176
|
+
this.customReportsRegistry.registerComponent({
|
|
1177
|
+
type: 'heatmap-chart',
|
|
1178
|
+
component: HeatmapChartComponent,
|
|
1179
|
+
category: 'visualization',
|
|
1180
|
+
name: 'Heatmap Chart',
|
|
1181
|
+
description: 'Advanced heatmap visualization for correlation data'
|
|
1182
|
+
} // or use HeatmapChartComponent.registerInfo()
|
|
1183
|
+
);
|
|
1184
|
+
}
|
|
1185
|
+
```
|
|
1186
|
+
|
|
1187
|
+
**Step 2: Configure in Reports**
|
|
1188
|
+
|
|
1189
|
+
```json
|
|
1190
|
+
{
|
|
1191
|
+
"id": "correlation-heatmap",
|
|
1192
|
+
"label": "REPORTS.correlationHeatmap",
|
|
1193
|
+
"mode": "custom",
|
|
1194
|
+
"type": "heatmap-chart",
|
|
1195
|
+
"prefix": "HEATMAP.",
|
|
1196
|
+
"print": true,
|
|
1197
|
+
"layout": {
|
|
1198
|
+
"width": 8,
|
|
1199
|
+
"height": 6
|
|
1200
|
+
},
|
|
1201
|
+
"datasource": [
|
|
1202
|
+
{
|
|
1203
|
+
"propertyPath": "aggregations.correlation_matrix.buckets",
|
|
1204
|
+
"transformer": "matrixDataProcessor"
|
|
1205
|
+
}
|
|
1206
|
+
],
|
|
1207
|
+
"options": {
|
|
1208
|
+
"chartOptions": {
|
|
1209
|
+
"scales": {
|
|
1210
|
+
"x": {
|
|
1211
|
+
"type": 'linear',
|
|
1212
|
+
"position": 'bottom'
|
|
1213
|
+
},
|
|
1214
|
+
"y": {
|
|
1215
|
+
"type": 'linear'
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
"showValues": true,
|
|
1220
|
+
"gridLines": true
|
|
1221
|
+
},
|
|
1222
|
+
"dialog": {
|
|
1223
|
+
"active": true,
|
|
1224
|
+
"width": "90vw",
|
|
1225
|
+
"height": "80vh",
|
|
1226
|
+
"panelClass": "heatmap-dialog"
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
```
|
|
1230
|
+
|
|
1231
|
+
#### Development Best Practices
|
|
1232
|
+
|
|
1233
|
+
**Memory Management**
|
|
1234
|
+
```typescript
|
|
1235
|
+
ngOnDestroy() {
|
|
1236
|
+
// Always clean up Chart.js instances
|
|
1237
|
+
if (this.customChart) {
|
|
1238
|
+
this.customChart.destroy();
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
// Call parent cleanup
|
|
1242
|
+
super.ngOnDestroy();
|
|
1243
|
+
}
|
|
1244
|
+
```
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
## Related Types Reference
|
|
1248
|
+
|
|
1249
|
+
### Core Types
|
|
1250
|
+
|
|
1251
|
+
#### `REPORT_MODE` Constants
|
|
1252
|
+
|
|
1253
|
+
```typescript
|
|
1254
|
+
export const REPORT_MODE = {
|
|
1255
|
+
graph: 'graph',
|
|
1256
|
+
digit: 'digit',
|
|
1257
|
+
dynamicLine: 'dynamicLine',
|
|
1258
|
+
custom: 'custom',
|
|
1259
|
+
} as const;
|
|
1260
|
+
|
|
1261
|
+
export type ReportMode = (typeof REPORT_MODE)[keyof typeof REPORT_MODE];
|
|
1262
|
+
```
|
|
1263
|
+
|
|
1264
|
+
#### `GridWidth` Type
|
|
1265
|
+
|
|
1266
|
+
```typescript
|
|
1267
|
+
export type GridWidth = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 'auto';
|
|
1268
|
+
```
|
|
1269
|
+
|
|
1270
|
+
#### Chart Types
|
|
1271
|
+
|
|
1272
|
+
```typescript
|
|
1273
|
+
const CHARTS_TYPES = {
|
|
1274
|
+
verticalBar: 'verticalBar',
|
|
1275
|
+
horizontalBar: 'horizontalBar',
|
|
1276
|
+
doughnut: 'doughnut',
|
|
1277
|
+
line: 'line',
|
|
1278
|
+
pie: 'pie'
|
|
1279
|
+
} as const;
|
|
1280
|
+
|
|
1281
|
+
type AllowedChartType = (typeof CHARTS_TYPES)[keyof Omit<typeof CHARTS_TYPES, 'line'>];
|
|
1282
|
+
```
|
|
1283
|
+
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
## Troubleshooting
|
|
1287
|
+
|
|
1288
|
+
### Common Issues
|
|
1289
|
+
|
|
1290
|
+
#### 1. Transformer Not Found
|
|
1291
|
+
|
|
1292
|
+
**Error**: `Transformer 'myTransformer' not registered` **Solution**: Register the transformer using the appropriate service method:
|
|
1293
|
+
|
|
1294
|
+
```typescript
|
|
1295
|
+
// For digit charts
|
|
1296
|
+
chartDataTransformers.registerDigitsTransformer('myTransformer', transformFunction);
|
|
1297
|
+
|
|
1298
|
+
// For graph charts
|
|
1299
|
+
chartDataTransformers.registerGraphTransformers('myTransformer', transformFunction);
|
|
1300
|
+
```
|
|
1301
|
+
|
|
1302
|
+
#### 2. Plugin Not Available
|
|
1303
|
+
|
|
1304
|
+
**Error**: `Plugin with key 'myPlugin' not found.` **Solution**: Register the plugin in `ChartPluginsRegistry` before using:
|
|
1305
|
+
|
|
1306
|
+
```typescript
|
|
1307
|
+
chartPluginsRegistry.register('myPlugin', myPluginImplementation);
|
|
1308
|
+
```
|
|
1309
|
+
|
|
1310
|
+
#### 3. Data Path Not Found
|
|
1311
|
+
|
|
1312
|
+
**Error**: Chart shows no data **Solution**: Verify the `propertyPath` matches your API response structure:
|
|
1313
|
+
|
|
1314
|
+
```typescript
|
|
1315
|
+
// If API returns: { data: { aggregation: { total: 1000 } } }
|
|
1316
|
+
// Use propertyPath: "data.aggregation.total"
|
|
1317
|
+
```
|
|
1318
|
+
|
|
1319
|
+
#### 4. Layout Issues
|
|
1320
|
+
|
|
1321
|
+
**Problem**: Charts overlapping or not displaying properly **Solution**: Check grid layout configuration:
|
|
1322
|
+
|
|
1323
|
+
```json
|
|
1324
|
+
{
|
|
1325
|
+
"layout": {
|
|
1326
|
+
"width": 6, // Must be 1-12
|
|
1327
|
+
"height": "auto", // Use "auto" for dynamic sizing
|
|
1328
|
+
"columnPosition": 1,
|
|
1329
|
+
"rowPosition": "auto"
|
|
1330
|
+
}
|
|
1331
|
+
}
|
|
1332
|
+
```
|