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,1502 @@
|
|
|
1
|
+
---
|
|
2
|
+
|
|
3
|
+
# `NdfTableConfig`
|
|
4
|
+
Configuration type for the NDF Table component. Extends `TablePaginationOptions` and provides additional properties for customizing table behavior, appearance, and data handling.
|
|
5
|
+
|
|
6
|
+
```ts
|
|
7
|
+
type NdfTableConfig = TablePaginationOptions & {
|
|
8
|
+
isDataProvided?: boolean;
|
|
9
|
+
options?: NdfTableOptions;
|
|
10
|
+
scrollbarH?: boolean;
|
|
11
|
+
columnMode?: 'flex' | 'fixed' | 'force';
|
|
12
|
+
pageProvider: string;
|
|
13
|
+
fields: Record<string, string>;
|
|
14
|
+
customUrl?: { url: string; method: 'POST' | 'GET'; payload?: Record<string, any>; };
|
|
15
|
+
quickFilters?: string;
|
|
16
|
+
columns: TableColumnConfig[];
|
|
17
|
+
columnsWithDynamicVisibiltiy?: string[];
|
|
18
|
+
columnsWithDynamicDisplay?: string[];
|
|
19
|
+
filtersWithDynamicDisplay?: string[];
|
|
20
|
+
responsiveColumns?: TableColumnConfig[];
|
|
21
|
+
fullWidth?: string;
|
|
22
|
+
prefix?: string;
|
|
23
|
+
sortingBy?: TableSortOptions;
|
|
24
|
+
defaultSort?: TableDefaultSortModel;
|
|
25
|
+
headers?: Record<string, any>;
|
|
26
|
+
queryParam?: Record<string, any>;
|
|
27
|
+
tableActions?: TableColumnAction[];
|
|
28
|
+
highlightSelectedCard?: boolean;
|
|
29
|
+
tabs?: TableTab[];
|
|
30
|
+
sortingArray?: TableSortingArray[];
|
|
31
|
+
skipAggregation?: 'never' | 'onPageChange';
|
|
32
|
+
range?: any;
|
|
33
|
+
isSearchPage?: any;
|
|
34
|
+
multiSelectRows?: boolean;
|
|
35
|
+
customFirstRow?: boolean;
|
|
36
|
+
showActionsAsMenu?: boolean;
|
|
37
|
+
filterParams?: Record<string, any>;
|
|
38
|
+
format?: string;
|
|
39
|
+
pageSizes?: { label: string; size: number }[];
|
|
40
|
+
};
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
# Table options : `NdfTableOptions` Interface
|
|
46
|
+
|
|
47
|
+
The `NdfTableOptions` interface is used to configure table components in the application. Below is a detailed description of its properties along with JSON examples for all possible values.
|
|
48
|
+
|
|
49
|
+
```ts
|
|
50
|
+
export type NdfTableOptions = {
|
|
51
|
+
filters: FiltersConfig;
|
|
52
|
+
search?: GlobalSearchConfig;
|
|
53
|
+
sortList?: TranslateKey[];
|
|
54
|
+
tableMode?: TableModeConfig;
|
|
55
|
+
export?: TableExportConfig;
|
|
56
|
+
columns?: {
|
|
57
|
+
toggle?: boolean;
|
|
58
|
+
sortable?: TableSortConfig;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
};
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## 1 - `search` (optional)
|
|
67
|
+
- **Type**: `GlobalSearchConfig`
|
|
68
|
+
- **Purpose**: Configures a global search input with behavior, UI labels, filtering logic, and optional contextual dialogs.
|
|
69
|
+
---
|
|
70
|
+
### Type Definition: `GlobalSearchConfig`
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
```ts
|
|
74
|
+
export type GlobalSearchConfig = {
|
|
75
|
+
fieldKey: string;
|
|
76
|
+
label?: string;
|
|
77
|
+
placeholder?: string;
|
|
78
|
+
operator?: ComparisonOperator; // see COMPARISON_OPERATOR
|
|
79
|
+
searchMode: 'realTime' | 'triggered';
|
|
80
|
+
debounceTime?: number;
|
|
81
|
+
searchButtonLabel?: string;
|
|
82
|
+
suffix?: {
|
|
83
|
+
dialog?: HtmlDialogConfig;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Property Descriptions
|
|
89
|
+
|
|
90
|
+
| Property | Type | Required | Description |
|
|
91
|
+
|---------------------|-------------------------------|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
92
|
+
| `fieldKey` | `string` | ✅ | The target field to apply the search against. |
|
|
93
|
+
| `label` | `string` | ❌ | Display label for the search input (e.g., above or beside it). |
|
|
94
|
+
| `placeholder` | `string` | ❌ | Text displayed inside the input field as a prompt. |
|
|
95
|
+
| `operator` | `ComparisonOperator` | ❌ | Logic for comparison. Supported values include: `=`, `!=`, `<`, `>`, `<=`, `>=`, `IN`, `NOT IN`, `BETWEEN`, `LIKE`, `ILIKE`, `NOT LIKE`, `NOT ILIKE`, `STARTSWITH`, `FULLTEXT` |
|
|
96
|
+
| `searchMode` | `'realTime'` \| `'triggered'` | ✅ | Controls how and when the search is executed: • `realTime`: Fires on user input with optional debounce. • `triggered`: Fires only on explicit user action (e.g., button click). |
|
|
97
|
+
| `debounceTime` | `number` | ❌ | Delay in milliseconds for real-time searches. Only applicable when `searchMode` is `'realTime'`. |
|
|
98
|
+
| `searchButtonLabel` | `string` | ❌ | Custom text for the search button (used in `'triggered'` mode). |
|
|
99
|
+
| `suffix.dialog` | `HtmlDialogConfig` | ❌ | Adds a supplementary dialog for user guidance or advanced options. |
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
###### HtmlDialogConfig
|
|
103
|
+
|
|
104
|
+
```ts
|
|
105
|
+
type HtmlDialogConfig = {
|
|
106
|
+
content: string[];
|
|
107
|
+
title?: string;
|
|
108
|
+
options?: Partial<MatDialogConfig>;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**Property Descriptions**
|
|
114
|
+
|
|
115
|
+
| Property | Type | Required | Description |
|
|
116
|
+
|-----------|----------------------------|----------|-------------------------------------------------------------------------|
|
|
117
|
+
| `title` | `string` | ❌ | Dialog title shown at the top of the popup. |
|
|
118
|
+
| `content` | `string[]` | ✅ | List of ##translate keys## or raw content to display inside the dialog. |
|
|
119
|
+
| `options` | `Partial<MatDialogConfig>` | ❌ | Optional Angular Material dialog configuration overrides. |
|
|
120
|
+
|
|
121
|
+
### Examples
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
```yaml
|
|
125
|
+
// Real-Time Search with Help Dialog
|
|
126
|
+
// any text between ##..## will be translated
|
|
127
|
+
{
|
|
128
|
+
"fieldKey": "ecm:fulltext",
|
|
129
|
+
"label": "Search Name",
|
|
130
|
+
"placeholder": "Enter a name...",
|
|
131
|
+
"operator": "ILIKE",
|
|
132
|
+
"searchMode": "realTime",
|
|
133
|
+
"debounceTime": 300,
|
|
134
|
+
"suffix": {
|
|
135
|
+
"dialog": {
|
|
136
|
+
"title": "INFO.dialogTitle",
|
|
137
|
+
"content": [
|
|
138
|
+
"not translated text",
|
|
139
|
+
"##INFO.query_sequence##",
|
|
140
|
+
"##INFO.query_and##",
|
|
141
|
+
"##INFO.query_negation##",
|
|
142
|
+
"##INFO.query_prefix##",
|
|
143
|
+
"##INFO.query_historical##",
|
|
144
|
+
"##INFO.query_or##",
|
|
145
|
+
]
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
//Triggered Search with Button
|
|
151
|
+
{
|
|
152
|
+
"fieldKey": "ecm:fulltext",
|
|
153
|
+
"label": "Search",
|
|
154
|
+
"placeholder": "search ...",
|
|
155
|
+
"operator": "=",
|
|
156
|
+
"searchMode": "triggered",
|
|
157
|
+
"searchButtonLabel": "Find"
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
---
|
|
166
|
+
## 2 -`sortList` (optional)
|
|
167
|
+
|
|
168
|
+
- **Type**: `TranslateKey[]`
|
|
169
|
+
- **Description**: List of sorting configurations for the table.
|
|
170
|
+
---
|
|
171
|
+
### Type Definition: `TranslateKey`
|
|
172
|
+
|
|
173
|
+
```ts
|
|
174
|
+
export type TranslateKey = {
|
|
175
|
+
key: TranslatedKey;
|
|
176
|
+
value: string;
|
|
177
|
+
direction: 'asc' | 'desc';
|
|
178
|
+
selected?: boolean;
|
|
179
|
+
};
|
|
180
|
+
```
|
|
181
|
+
### Property Descriptions
|
|
182
|
+
|
|
183
|
+
| Property | Type | Required | Description |
|
|
184
|
+
|-------------|---------------------|----------|-------------------------------------------------------|
|
|
185
|
+
| `key` | `TranslatedKey` | ✅ | The display label key for internationalization. |
|
|
186
|
+
| `value` | `string` | ✅ | The field in the dataset to apply the sorting on. |
|
|
187
|
+
| `direction` | `'asc'` \| `'desc'` | ✅ | Sort direction: ascending or descending. |
|
|
188
|
+
| `selected` | `boolean` | ❌ | Indicates if this sort option is selected by default. |
|
|
189
|
+
### Example
|
|
190
|
+
|
|
191
|
+
```json
|
|
192
|
+
[
|
|
193
|
+
{
|
|
194
|
+
"key": "SORT.name",
|
|
195
|
+
"value": "name",
|
|
196
|
+
"direction": "asc",
|
|
197
|
+
"selected": true
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"key": "SORT.date",
|
|
201
|
+
"value": "createdAt",
|
|
202
|
+
"direction": "desc"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## 3- `tableMode` (optional)
|
|
211
|
+
|
|
212
|
+
- **Type**: `TableModeConfig`
|
|
213
|
+
- **Description**: Configuration for handling different `CTS table` display modes. Supports toggling between multiple predefined views such as list, card, dynamicCard, or a custom component view.
|
|
214
|
+
### Type Definition: `TableModeConfig`
|
|
215
|
+
|
|
216
|
+
```ts
|
|
217
|
+
type TableViewMode = 'dynamicCard' | 'list' | 'card' | 'custom';
|
|
218
|
+
|
|
219
|
+
type TableToggleItem = {
|
|
220
|
+
key?: TranslatedKey;
|
|
221
|
+
value: TableViewMode;
|
|
222
|
+
icon: string;
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
type TableModeList = TableToggleItem[];
|
|
226
|
+
|
|
227
|
+
type BaseTableModel = {
|
|
228
|
+
toggleMode?: boolean;
|
|
229
|
+
availableMode?: TableModeList;
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
type StandardTableMode = BaseTableModel & {
|
|
233
|
+
mode?: Exclude<TableViewMode, 'custom'>;
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
type CustomTableMode = BaseTableModel & {
|
|
237
|
+
mode: 'custom';
|
|
238
|
+
componentName: string;
|
|
239
|
+
};
|
|
240
|
+
|
|
241
|
+
type TableModeConfig = StandardTableMode | CustomTableMode;
|
|
242
|
+
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
### Property Descriptions
|
|
246
|
+
|
|
247
|
+
| Property | Type | Required | Default | Description |
|
|
248
|
+
|-----------------|-------------------------------------------------------|---------------------------|---------|---------------------------------------------------------------------------------------------------|
|
|
249
|
+
| `mode` | `'list'` \| `'card'` \| `'dynamicCard'` \| `'custom'` | ❌ | | Defines the current table view mode. If `mode` is `'custom'`, a `componentName` must be provided. |
|
|
250
|
+
| `toggleMode` | `boolean` | ❌ | `false` | Enables or disables toggling between multiple view modes. |
|
|
251
|
+
| `availableMode` | `TableModeList` | ❌ | | List of available view modes and their icons for use in toggle controls. |
|
|
252
|
+
| `componentName` | `string` | ✅ (if mode is `'custom'`) | | Name of the custom Angular component to render in custom mode. |
|
|
253
|
+
> [!note] NOTE
|
|
254
|
+
When using `mode: 'custom'`, the specified component in `componentName` **must extend `BaseCustomComponent`** to ensure compatibility with the dynamic rendering system.
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Example Toggle Between List and Custom View
|
|
258
|
+
|
|
259
|
+
```yaml
|
|
260
|
+
{
|
|
261
|
+
"mode": "list",
|
|
262
|
+
"componentName": "rms.components.advancedSearchCard", //Required for the custom mode inside availableMode list
|
|
263
|
+
"toggleMode": true,
|
|
264
|
+
"availableMode": [
|
|
265
|
+
{ "key" : "GOLBAL.list",
|
|
266
|
+
"value": "list",
|
|
267
|
+
"icon": "table_rows"
|
|
268
|
+
},
|
|
269
|
+
{ "value": "custom",
|
|
270
|
+
"icon": "rectangle"
|
|
271
|
+
}
|
|
272
|
+
]}
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
*Example* Custom Component Mode
|
|
276
|
+
```json
|
|
277
|
+
{
|
|
278
|
+
"mode": "custom",
|
|
279
|
+
"componentName": "rms.components.requestCard"
|
|
280
|
+
}
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
## 4- `export` (optional)
|
|
286
|
+
|
|
287
|
+
- **Type**: `TableExportConfig`
|
|
288
|
+
- **Description**: Configures the functionality for exporting table data. This includes settings for enabling or disabling the export feature, specifying the export formats, defining the fields to be exported, and customizing the request parameters for fetching the data.
|
|
289
|
+
### Type Definition: `TableExportConfig`
|
|
290
|
+
|
|
291
|
+
```ts
|
|
292
|
+
export type TableExportConfig = {
|
|
293
|
+
enabled: boolean;
|
|
294
|
+
request: NdfRequestConfig; //common type
|
|
295
|
+
docTypeName: 'task' | 'request' | 'record';
|
|
296
|
+
defaultType: 'excel' | 'docx' | 'pdf';
|
|
297
|
+
allowedTypes?: LabelValue<string, 'excel' | 'docx' | 'pdf'>[]; //common type
|
|
298
|
+
fields?: string[];
|
|
299
|
+
locale?: string;
|
|
300
|
+
};
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
### Property Descriptions
|
|
304
|
+
|
|
305
|
+
| Property | Type | Required | Description |
|
|
306
|
+
|----------------|----------------------------------------------------|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
307
|
+
| `enabled` | `boolean` | ✅ | Enables or disables the export feature. |
|
|
308
|
+
| `request` | `NdfRequestConfig` | ✅ | Configuration for making the export HTTP request. |
|
|
309
|
+
| `docTypeName` | `'task'` \| `'request'` \| `'record'` | ✅ | Specifies the type of document being exported. |
|
|
310
|
+
| `defaultType` | `'excel'` \| `'docx'` \| `'pdf'` | ✅ | Sets the default export format. |
|
|
311
|
+
| `allowedTypes` | `LabelValue<string, 'excel' \| 'docx' \| 'pdf'>[]` | ❌ | List of allowed export types with labels for UI. |
|
|
312
|
+
| `fields` | `string[]` | ❌ | List of fields or columns to include in the export. If not provided, it will be derived from the `headerClass` property of the columns.(e.g., `["dc:title"]` ) |
|
|
313
|
+
| `locale` | `string` | ❌ | Locale code for language-specific formatting (e.g., `'en'`, `'ar'`). |
|
|
314
|
+
### Example
|
|
315
|
+
|
|
316
|
+
```yaml
|
|
317
|
+
{
|
|
318
|
+
"enabled": true,
|
|
319
|
+
"request": {
|
|
320
|
+
"method": "post",
|
|
321
|
+
url: '/custom-search/pp/PP_RPT_Expected_TransferArchive_Records/report',
|
|
322
|
+
},
|
|
323
|
+
"docTypeName": "record",
|
|
324
|
+
"defaultType": "excel",
|
|
325
|
+
"allowedTypes": [
|
|
326
|
+
[
|
|
327
|
+
{
|
|
328
|
+
"value": "pdf",
|
|
329
|
+
"label": "TABLE.EXPORT.PDF"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"value": "excel",
|
|
333
|
+
"label": "TABLE.EXPORT.EXCEL"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"value": "docx",
|
|
337
|
+
"label": "TABLE.EXPORT.WORD"
|
|
338
|
+
}
|
|
339
|
+
]
|
|
340
|
+
],
|
|
341
|
+
"locale": "en",
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
---
|
|
352
|
+
|
|
353
|
+
## 5- `columns` (optional)
|
|
354
|
+
|
|
355
|
+
- **Type**: `{ toggle?: boolean; sortable?: TableSortConfig; }`
|
|
356
|
+
- **Description**: Configuration for controlling the visibility and ordering of table columns. This includes enabling column visibility toggles and defining the column order based on sorting preferences
|
|
357
|
+
|
|
358
|
+
### Type Definition
|
|
359
|
+
|
|
360
|
+
```ts
|
|
361
|
+
type columns = {
|
|
362
|
+
toggle?: boolean;
|
|
363
|
+
sortable?: TableSortConfig; //common type for column ordering configuration
|
|
364
|
+
};
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
### Property Descriptions
|
|
368
|
+
|
|
369
|
+
| Property | Type | Required | Description |
|
|
370
|
+
|------------|-------------------|----------|------------------------------------------------------------------------------------------------------|
|
|
371
|
+
| `toggle` | `boolean` | ❌ | Enables or disables the toggle visibility functionality for columns. |
|
|
372
|
+
| `sortable` | `TableSortConfig` | ❌ | Configuration for specifying the column order (sorting) and options to control the order of columns. |
|
|
373
|
+
### Example
|
|
374
|
+
|
|
375
|
+
```yaml
|
|
376
|
+
{
|
|
377
|
+
"toggle": true,
|
|
378
|
+
"sortable": {
|
|
379
|
+
"enabled": true,
|
|
380
|
+
"frozenColumns": [
|
|
381
|
+
"OPTIONS"
|
|
382
|
+
]
|
|
383
|
+
}}
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
---
|
|
390
|
+
---
|
|
391
|
+
|
|
392
|
+
## 6- `Filters`
|
|
393
|
+
|
|
394
|
+
- **Type**: `FiltersConfig`
|
|
395
|
+
- **Description**: Configuration for table filters.
|
|
396
|
+
|
|
397
|
+
### Type Definition: `FiltersConfig`
|
|
398
|
+
|
|
399
|
+
```ts
|
|
400
|
+
export type FilterMode =
|
|
401
|
+
| { mode: 'payload' }
|
|
402
|
+
| {
|
|
403
|
+
mode: 'params';
|
|
404
|
+
stringifyParams: boolean;
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
export type FilterReloadConfig =
|
|
408
|
+
| { strategy: 'always' }
|
|
409
|
+
| { strategy: 'never' }
|
|
410
|
+
| { strategy: 'onChange'; triggerFields: string[] };
|
|
411
|
+
|
|
412
|
+
type FiltersConfig = FilterMode & {
|
|
413
|
+
reload?: FilterReloadConfig;
|
|
414
|
+
fields: FieldConfigModel[];
|
|
415
|
+
panel?: {
|
|
416
|
+
visible?: boolean;
|
|
417
|
+
toggleButton?: boolean;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
### Property Descriptions
|
|
423
|
+
|
|
424
|
+
| Property | Type | Required | Default | Description |
|
|
425
|
+
|----------------------|---------------------------|---------------------------|----------|-------------------------------------------------------------------------------------------------------------------------|
|
|
426
|
+
| `mode` | `'payload'` \| `'params'` | ✅ | `params` | Defines how filter data is sent. `payload` sends data in the request body. `params` sends data as URL query parameters. |
|
|
427
|
+
| `stringifyParams` | `boolean` | ✅ (if mode is `'params'`) | `false` | If `true`, parameters will be stringified when sent as query parameters. Only used when `mode` is `'params'`. |
|
|
428
|
+
| `reload` | `FilterReloadConfig` | ❌ | | Determines when the filters should trigger a fields reload. |
|
|
429
|
+
| `fields` | `FieldConfigModel[]` | ✅ | | List of filter fields to render in the filter UI. |
|
|
430
|
+
| `panel.visible` | `boolean` | ❌ | `true` | Controls whether the filter panel is visible by default. |
|
|
431
|
+
| `panel.toggleButton` | `boolean` | ❌ | `true` | If `true`, shows a toggle button to show/hide the filter panel. |
|
|
432
|
+
| | | | | |
|
|
433
|
+
#### Reload Strategies
|
|
434
|
+
|
|
435
|
+
| Strategy | Description |
|
|
436
|
+
|------------|------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
437
|
+
| `always` | The Filters Panel reloads Fields (e.g., aggregations) **every time** filters are applied or changed, regardless of what fields were modified. |
|
|
438
|
+
| `never` | Disables automatic reloads filters after initialized. **Reload only if the config is changed** |
|
|
439
|
+
| `onChange` | Reloads filters **only if specific filter fields** (defined in `triggerFields`) have changed between the previous and current filter states. |
|
|
440
|
+
|
|
441
|
+
**Examples**
|
|
442
|
+
|
|
443
|
+
```json
|
|
444
|
+
{
|
|
445
|
+
"mode": "params",
|
|
446
|
+
"stringifyParams": true,
|
|
447
|
+
"reload": {
|
|
448
|
+
"strategy": "always"
|
|
449
|
+
},
|
|
450
|
+
"panel": {
|
|
451
|
+
"visible": true,
|
|
452
|
+
"toggleButton": true
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
```
|
|
456
|
+
|
|
457
|
+
Example :`onChange` Strategy
|
|
458
|
+
|
|
459
|
+
```yaml
|
|
460
|
+
{
|
|
461
|
+
"mode": "params",
|
|
462
|
+
"stringifyParams": true,
|
|
463
|
+
"reload": {
|
|
464
|
+
"strategy": "onChange",
|
|
465
|
+
"triggerFields" : [""]
|
|
466
|
+
},
|
|
467
|
+
"panel": {
|
|
468
|
+
"visible": true,
|
|
469
|
+
"toggleButton": true
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
```
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
---
|
|
478
|
+
---
|
|
479
|
+
|
|
480
|
+
## FILTER FIELDS
|
|
481
|
+
- **Type**: `FieldConfigModel`
|
|
482
|
+
- **Description**: Defines the structure and behavior of individual fields used in the table filters. Each field can be one of the following types: `aggregation`, `predicate`, or `custom`.
|
|
483
|
+
### Type Definition: `FieldConfigModel`
|
|
484
|
+
|
|
485
|
+
```ts
|
|
486
|
+
type FieldConfigModel =
|
|
487
|
+
| { type: 'aggregation'; config: AggregationFieldConfig; }
|
|
488
|
+
| { type: 'predicate'; config: PredicateFieldConfig; }
|
|
489
|
+
| { type: 'custom'; config: CustomFieldConfig; };
|
|
490
|
+
|
|
491
|
+
```
|
|
492
|
+
|
|
493
|
+
### Property Descriptions
|
|
494
|
+
|
|
495
|
+
| Property | Type | Required | Applies To | Description |
|
|
496
|
+
|----------|---------------------------------------------------------------------------|----------|------------|--------------------------------------------------|
|
|
497
|
+
| `type` | `'aggregation'` \| `'predicate'` \| `'custom'` | ✅ | All | Specifies the type of filter field. |
|
|
498
|
+
| `config` | `AggregationFieldConfig` \| `PredicateFieldConfig` \| `CustomFieldConfig` | ✅ | All | Configuration object specific to the field type. |
|
|
499
|
+
#### `BaseFieldConfig` *(shared across all configs)*
|
|
500
|
+
|
|
501
|
+
| Property | Type | Required | Default | Description |
|
|
502
|
+
|--------------|---------------------------------|----------|---------------|-----------------------------------------------------------------------|
|
|
503
|
+
| `label` | `TranslateKey` | ✅ | | Field label used for internationalization. |
|
|
504
|
+
| `fieldKey` | `string` | ✅ | | Unique identifier for the field; used for data binding and filtering. |
|
|
505
|
+
| `values` | `unknown` | ❌ | | Static values or data set used for the filter, if applicable. |
|
|
506
|
+
| `prefix` | `string` | ❌ | | Optional prefix used for values translations |
|
|
507
|
+
| `order` | `number` | ❌ | 0 | Determines the field's display order in the filter UI. |
|
|
508
|
+
| `operator` | `ComparisonOperator` | ❌ | | Operator used for filtering (e.g., `EQ`, `IN`). |
|
|
509
|
+
| `valueType` | `'valueObject'` \| `'property'` | ✅ | `valueObject` | Defines how values are interpreted in the filter context. |
|
|
510
|
+
| `visible` | `boolean` | ❌ | | Controls whether the field is visible in the UI. |
|
|
511
|
+
| `roles` | `string[]` | ❌ | | List of roles required to view/use the field. |
|
|
512
|
+
| `permission` | `string` | ❌ | | Specific permission required to access the field. |
|
|
513
|
+
|
|
514
|
+
## Predicate Field Config
|
|
515
|
+
|
|
516
|
+
```ts
|
|
517
|
+
type PredicateFieldConfig =
|
|
518
|
+
BaseFieldConfig & {
|
|
519
|
+
sendMode: Exclude<FieldSendModeType, 'custom'>;
|
|
520
|
+
render: InputOptions | DateInputOptions;
|
|
521
|
+
}
|
|
522
|
+
```
|
|
523
|
+
|
|
524
|
+
#### Property Descriptions
|
|
525
|
+
|
|
526
|
+
| Property | Type | Required | Description |
|
|
527
|
+
|------------|----------------------------------------|----------|-----------------------------------------------------------------------------------------------------|
|
|
528
|
+
| `sendMode` | `Exclude<FieldSendModeType, 'custom'>` | ✅ | Specifies how the field value should be sent (e.g., `payload`, `queryParam`), excluding `'custom'`. |
|
|
529
|
+
| `render` | `InputOptions` \| `DateInputOptions` | ✅ | Defines how the input should be displayed and interacted with in the UI. |
|
|
530
|
+
#### Example
|
|
531
|
+
|
|
532
|
+
```yaml
|
|
533
|
+
[
|
|
534
|
+
{
|
|
535
|
+
"type": "predicate",
|
|
536
|
+
"config": {
|
|
537
|
+
"label": "FILTERS.tags",
|
|
538
|
+
"fieldKey": "ecm:tag",
|
|
539
|
+
"sendMode": "payload",
|
|
540
|
+
"valueType": "valueObject",
|
|
541
|
+
"permission": "hasRoleOnArchiveOrLoan",
|
|
542
|
+
"render": {
|
|
543
|
+
// render config here
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"type": "predicate",
|
|
549
|
+
"config": {
|
|
550
|
+
"label": "FILTERS.tags",
|
|
551
|
+
"fieldKey": "ecm:tag",
|
|
552
|
+
"order": 0,
|
|
553
|
+
"sendMode": "queryParam",
|
|
554
|
+
"valueType": "property",
|
|
555
|
+
"prefix": "search.buckets.",
|
|
556
|
+
"render": {
|
|
557
|
+
// render config here
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
---
|
|
567
|
+
---
|
|
568
|
+
|
|
569
|
+
## Aggregation Field Config
|
|
570
|
+
|
|
571
|
+
```ts
|
|
572
|
+
type AggregationFieldConfig = BaseFieldConfig & {
|
|
573
|
+
aggregation: string;
|
|
574
|
+
propertyPath?: string;
|
|
575
|
+
bindLabel?: { ar: string; en: string };
|
|
576
|
+
bindValue?: string;
|
|
577
|
+
dataTransformer?: string;
|
|
578
|
+
sendMode: FieldSendModeType;
|
|
579
|
+
tooltip?: AggregationTooltipType;
|
|
580
|
+
condition?:EvaluatedString;
|
|
581
|
+
render:
|
|
582
|
+
| CheckboxOptions
|
|
583
|
+
| SwitchOptions
|
|
584
|
+
| RadioOptions
|
|
585
|
+
| DropdownOptions
|
|
586
|
+
| AutocompleteOptions
|
|
587
|
+
| CustomOptions
|
|
588
|
+
| DateListOptions;
|
|
589
|
+
}
|
|
590
|
+
```
|
|
591
|
+
|
|
592
|
+
#### Property Descriptions
|
|
593
|
+
|
|
594
|
+
| Property | Type | Required | Description |
|
|
595
|
+
| ----------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
596
|
+
| `aggregation` | `string` | ✅ | The name of the aggregation |
|
|
597
|
+
| `propertyPath` | `string` | ❌ | Path to the property used in aggregation (if different from `fieldKey`). |
|
|
598
|
+
| `bindLabel` | `{ ar: string; en: string }` | ❌ | Property name to use as Label |
|
|
599
|
+
| `bindValue` | `string` | ❌ | Property name to use as the value |
|
|
600
|
+
| `dataTransformer` | `string` | ❌ | Optional name of a transformer function to apply to the aggregation data. This function must be registered with the `NdfTransformService` in the core or app module.` |
|
|
601
|
+
| `sendMode` | `FieldSendModeType` | ✅ | Defines how the selected value should be sent in the request (e.g., `payload`, `queryParam` , `custom`). |
|
|
602
|
+
| `tooltip` | `AggregationTooltipType` | ❌ | Tooltip text or configuration to display additional info for the field. |
|
|
603
|
+
| `condition` | `EvaluatedString` | ❌ | Assign a `boolean` value (`true` or `false`) to the `show` variable based on a custom condition using the provided `language`, `user`, and `aggregations`, in order to determine whether the field should be shown or hidden. |
|
|
604
|
+
| `render` | `CheckboxOptions \| SwitchOptions \| RadioOptions \| DropdownOptions \| AutocompleteOptions \| CustomOptions \| DateListOptions` | ✅ | Specifies how the field will be rendered in the UI. |
|
|
605
|
+
| | | | |
|
|
606
|
+
#### Example
|
|
607
|
+
|
|
608
|
+
```ts
|
|
609
|
+
[
|
|
610
|
+
{
|
|
611
|
+
"type": "aggregation",
|
|
612
|
+
"config": {
|
|
613
|
+
"label": "FILTERS.priority",
|
|
614
|
+
"aggregation": "generaldocument_importance_agg",
|
|
615
|
+
"fieldKey": "gdoc:importance",
|
|
616
|
+
"prefix": "search.buckets.",
|
|
617
|
+
"sendMode": "queryParam",
|
|
618
|
+
"valueType": "property",
|
|
619
|
+
"condition": "show = language === 'ar' || aggregations['name']?.prop == 'any value' || user.userName !== 'guest'",
|
|
620
|
+
"render": {
|
|
621
|
+
// render config here
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
```
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
#### Aggregation Tooltip
|
|
631
|
+
**Type**: `AggregationTooltipType`
|
|
632
|
+
|
|
633
|
+
```ts
|
|
634
|
+
export type AggregationTooltipType = {
|
|
635
|
+
properties: Record<string, any>;
|
|
636
|
+
} & (TooltipPlainText | TooltipLocalizedText | TooltipFormattedDate | TooltipTranslationKey | TooltipTranslatedDate);
|
|
637
|
+
|
|
638
|
+
```
|
|
639
|
+
|
|
640
|
+
| Property | Type | Required | Description |
|
|
641
|
+
|--------------|-----------------------|----------|-----------------------------------------------------------------------|
|
|
642
|
+
| `properties` | `Record<string, any>` | ✅ | Dynamic object used to resolve tooltip content, such as field values. |
|
|
643
|
+
|
|
644
|
+
1. Variant: `TooltipPlainText`
|
|
645
|
+
```ts
|
|
646
|
+
type TooltipPlainText = {
|
|
647
|
+
type: 'text';
|
|
648
|
+
separator?: string;
|
|
649
|
+
};
|
|
650
|
+
```
|
|
651
|
+
|
|
652
|
+
| Property | Type | Required | Description |
|
|
653
|
+
|-------------|----------|----------|--------------------------------------------------|
|
|
654
|
+
| `type` | `'text'` | ✅ | Defines this variant as plain text. |
|
|
655
|
+
| `separator` | `string` | ❌ | Optional separator used between multiple values. |
|
|
656
|
+
|
|
657
|
+
2. Variant: `TooltipLocalizedText`
|
|
658
|
+
```ts
|
|
659
|
+
type TooltipLocalizedText = {
|
|
660
|
+
type: 'localizeValue';
|
|
661
|
+
translateKey: string;
|
|
662
|
+
};
|
|
663
|
+
```
|
|
664
|
+
|
|
665
|
+
| Property | Type | Required | Description |
|
|
666
|
+
|----------------|-------------------|----------|--------------------------------------------|
|
|
667
|
+
| `type` | `'localizeValue'` | ✅ | Defines this variant as a localized value. |
|
|
668
|
+
| `translateKey` | `string` | ✅ | Key used for localization. |
|
|
669
|
+
|
|
670
|
+
3. Variant: `TooltipFormattedDate`
|
|
671
|
+
```ts
|
|
672
|
+
type TooltipFormattedDate = {
|
|
673
|
+
type: 'date';
|
|
674
|
+
format: string;
|
|
675
|
+
separator?: string;
|
|
676
|
+
};
|
|
677
|
+
```
|
|
678
|
+
|
|
679
|
+
| Property | Type | Required | Description |
|
|
680
|
+
|-------------|----------|----------|---------------------------------------------|
|
|
681
|
+
| `type` | `'date'` | ✅ | Defines this variant as a formatted date. |
|
|
682
|
+
| `format` | `string` | ✅ | Date format string (e.g., `YYYY-MM-DD`). |
|
|
683
|
+
| `separator` | `string` | ❌ | Optional separator for multiple date values |
|
|
684
|
+
|
|
685
|
+
4. Variant: `TooltipTranslationKey`
|
|
686
|
+
```ts
|
|
687
|
+
type TooltipTranslationKey = {
|
|
688
|
+
type: 'translate';
|
|
689
|
+
prefix: string;
|
|
690
|
+
separator?: string;
|
|
691
|
+
};
|
|
692
|
+
```
|
|
693
|
+
|
|
694
|
+
| Property | Type | Required | Description |
|
|
695
|
+
|-------------|---------------|----------|-------------------------------------------------|
|
|
696
|
+
| `type` | `'translate'` | ✅ | Indicates translation via a key with prefix. |
|
|
697
|
+
| `prefix` | `string` | ✅ | Prefix to be appended to the value as a key. |
|
|
698
|
+
| `separator` | `string` | ❌ | Optional separator used when constructing keys. |
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
5. Variant: `TooltipTranslatedDate`
|
|
702
|
+
```ts
|
|
703
|
+
type TooltipTranslatedDate = {
|
|
704
|
+
type: 'translatedDate';
|
|
705
|
+
format: string;
|
|
706
|
+
translateKey: string;
|
|
707
|
+
};
|
|
708
|
+
```
|
|
709
|
+
|
|
710
|
+
| Property | Type | Required | Description |
|
|
711
|
+
|----------------|--------------------|----------|-------------------------------------------------------|
|
|
712
|
+
| `type` | `'translatedDate'` | ✅ | Defines this variant as a translated, formatted date. |
|
|
713
|
+
| `format` | `string` | ✅ | Date format string. |
|
|
714
|
+
| `translateKey` | `string` | ✅ | Key used to lookup the translated string. |
|
|
715
|
+
|
|
716
|
+
#### Example `tooltip`
|
|
717
|
+
|
|
718
|
+
```yaml
|
|
719
|
+
[
|
|
720
|
+
{
|
|
721
|
+
"type": "aggregation",
|
|
722
|
+
"config": {
|
|
723
|
+
"label": "FILTERS.priority",
|
|
724
|
+
"aggregation": "generaldocument_importance_agg",
|
|
725
|
+
"fieldKey": "gdoc:importance",
|
|
726
|
+
"prefix": "search.buckets.",
|
|
727
|
+
"sendMode": "queryParam",
|
|
728
|
+
"valueType": "property",
|
|
729
|
+
"tooltip": {
|
|
730
|
+
"type": "date",
|
|
731
|
+
"properties": {
|
|
732
|
+
"from": "from",
|
|
733
|
+
"to": "to"
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"render": {
|
|
737
|
+
// render config here
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
]
|
|
742
|
+
```
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
---
|
|
746
|
+
---
|
|
747
|
+
|
|
748
|
+
## Custom Field Config
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
```ts
|
|
752
|
+
CustomFieldConfig = Prettify<
|
|
753
|
+
BaseFieldConfig & {
|
|
754
|
+
sendMode: Exclude<FieldSendModeType, 'custom'>;
|
|
755
|
+
render: {type:string , options?: Record<string,any>};
|
|
756
|
+
}
|
|
757
|
+
>;
|
|
758
|
+
```
|
|
759
|
+
|
|
760
|
+
The `CustomFieldConfig` type is used to define a custom field within a form configuration system. It extends the base field configuration (`BaseFieldConfig`) and introduces specific constraints and rendering behavior for custom fields.
|
|
761
|
+
|
|
762
|
+
Properties
|
|
763
|
+
|
|
764
|
+
| Property | Type | Description |
|
|
765
|
+
| ---------------- | -------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
|
|
766
|
+
| `sendMode` | `Exclude<FieldSendModeType, 'custom'>` | Defines how the field data is sent. All modes except `'custom'` are allowed. |
|
|
767
|
+
| `render.type` | `string` | Identifier for the custom component to be used for rendering the field. Must match a registered component. |
|
|
768
|
+
| `render.options` | `Record<string, any>` _(optional)_ | Optional configuration object passed to the custom component to control its behavior or appearance. |
|
|
769
|
+
|
|
770
|
+
Example
|
|
771
|
+
|
|
772
|
+
```json
|
|
773
|
+
{
|
|
774
|
+
"key": "customSlider",
|
|
775
|
+
"label": "Adjust Volume",
|
|
776
|
+
"sendMode": "onChange",
|
|
777
|
+
"render": {
|
|
778
|
+
"type": "sliderComponent",
|
|
779
|
+
"options": {
|
|
780
|
+
"min": 0,
|
|
781
|
+
"max": 100,
|
|
782
|
+
"step": 5
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
```
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
---
|
|
791
|
+
---
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
# FIELDS
|
|
796
|
+
|
|
797
|
+
## Predicate Field Render
|
|
798
|
+
- **Type**: `InputOptions | DateInputOptions`
|
|
799
|
+
- **Description**: Defines how a predicate filter field is rendered in the UI. The render type determines whether the input is a basic text field, a date input, or other supported formats. This controls the user interface element and its behavior for entering filter values.
|
|
800
|
+
|
|
801
|
+
### Supported Types
|
|
802
|
+
#### *Input*
|
|
803
|
+
|
|
804
|
+
```ts
|
|
805
|
+
type InputOptions = {
|
|
806
|
+
type: 'input';
|
|
807
|
+
options?: {
|
|
808
|
+
hideLabel?: boolean
|
|
809
|
+
inputType?: 'text' | 'search' | 'url';
|
|
810
|
+
placeholder?: string;
|
|
811
|
+
debounceTime?: number;
|
|
812
|
+
mask?: {
|
|
813
|
+
mask: string;
|
|
814
|
+
shownMaskExpression?: string;
|
|
815
|
+
dropSpecialCharacters?: boolean;
|
|
816
|
+
showMaskTyped?: boolean;
|
|
817
|
+
validation?: boolean;
|
|
818
|
+
allowNegativeNumbers?: boolean;
|
|
819
|
+
keepCharacterPositions?: boolean;
|
|
820
|
+
leadZero?: boolean;
|
|
821
|
+
hiddenInput?: boolean;
|
|
822
|
+
clearIfNotMatch?: boolean;
|
|
823
|
+
prefix?: string;
|
|
824
|
+
suffix?: string;
|
|
825
|
+
};
|
|
826
|
+
suffix?: {
|
|
827
|
+
text?: string;
|
|
828
|
+
dropdown?: {
|
|
829
|
+
selectedValue?: string;
|
|
830
|
+
items: KeyValue<string, string>[];
|
|
831
|
+
};
|
|
832
|
+
tooltip?: string;
|
|
833
|
+
dialog?: HtmlDialogConfig;
|
|
834
|
+
};
|
|
835
|
+
} ;
|
|
836
|
+
};
|
|
837
|
+
```
|
|
838
|
+
|
|
839
|
+
| Property | Type | Description |
|
|
840
|
+
|--------------------------------|-----------------------------------|------------------------------------------------------------------------|
|
|
841
|
+
| `inputType` | `'text'` \| `'search'` \| `'url'` | Specifies the input field type. Defaults to `'text'`. |
|
|
842
|
+
| `placeholder` | `string` | Placeholder text shown in the input field. |
|
|
843
|
+
| `debounceTime` | `number` | Delay in milliseconds before the input is processed (for performance). |
|
|
844
|
+
| `mask` | `object` (see below) | Input mask settings to constrain input format. |
|
|
845
|
+
| `suffix` | `object` (see below) | Optional interactive element (text, dropdown, tooltip, or dialog). |
|
|
846
|
+
| `hideLabel` (from `HideLabel`) | `boolean` | Determines whether the field label is hidden. |
|
|
847
|
+
|
|
848
|
+
##### *mask Configuration*
|
|
849
|
+
|
|
850
|
+
| Property | Type | Description |
|
|
851
|
+
|--------------------------|-----------|-------------------------------------------------------------------|
|
|
852
|
+
| `mask` | `string` | Mask pattern for formatting input. |
|
|
853
|
+
| `shownMaskExpression` | `string` | Custom expression to show the mask visually. |
|
|
854
|
+
| `dropSpecialCharacters` | `boolean` | If `true`, removes mask characters from value. |
|
|
855
|
+
| `showMaskTyped` | `boolean` | Shows masked characters while typing. |
|
|
856
|
+
| `validation` | `boolean` | Enables input validation based on mask. |
|
|
857
|
+
| `allowNegativeNumbers` | `boolean` | Allows negative numeric input. |
|
|
858
|
+
| `keepCharacterPositions` | `boolean` | Maintains fixed character positions when editing. |
|
|
859
|
+
| `leadZero` | `boolean` | Allows numbers to start with zero. |
|
|
860
|
+
| `hiddenInput` | `boolean` | Masks the actual input characters (e.g., password-like behavior). |
|
|
861
|
+
| `clearIfNotMatch` | `boolean` | Clears input if it doesn't match the mask. |
|
|
862
|
+
| `prefix` | `string` | Text to show before the input. |
|
|
863
|
+
| `suffix` | `string` | Text to show after the input. |
|
|
864
|
+
|
|
865
|
+
*`suffix` Configuration*
|
|
866
|
+
|
|
867
|
+
| Property | Type | Description |
|
|
868
|
+
|------------|-------------------------------------------------------------------------|--------------------------------------------------------------------|
|
|
869
|
+
| `text` | `string` | ##translated## or text displayed after the input. |
|
|
870
|
+
| `dropdown` | `{ selectedValue?: string; items: KeyValue<TranslatedKey, string>[]; }` | Dropdown menu attached to the suffix. |
|
|
871
|
+
| `tooltip` | `string` | Tooltip shown on hover. |
|
|
872
|
+
| `dialog` | `HtmlDialogConfig` | Adds a supplementary dialog for user guidance or advanced options. |
|
|
873
|
+
|
|
874
|
+
*Example*
|
|
875
|
+
|
|
876
|
+
```yaml
|
|
877
|
+
[
|
|
878
|
+
//*Example* : Input Field with Dropdown Suffix
|
|
879
|
+
{
|
|
880
|
+
"type": "predicate",
|
|
881
|
+
"config": {
|
|
882
|
+
"render": {
|
|
883
|
+
"type": "input",
|
|
884
|
+
"options": {
|
|
885
|
+
"delay": 300,
|
|
886
|
+
"suffix": {
|
|
887
|
+
"dropdown": {
|
|
888
|
+
"items": [
|
|
889
|
+
{
|
|
890
|
+
"key": "OPERATORS.equals",
|
|
891
|
+
"value": "="
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"key": "OPERATORS.notEquals",
|
|
895
|
+
"value": "!="
|
|
896
|
+
}
|
|
897
|
+
]
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
|
|
905
|
+
// *Example* : Input Field with Mask
|
|
906
|
+
{
|
|
907
|
+
"type": "predicate",
|
|
908
|
+
"config": {
|
|
909
|
+
"render": {
|
|
910
|
+
"type": "input",
|
|
911
|
+
"options": {
|
|
912
|
+
"debounceTime": 400,
|
|
913
|
+
"mask": {
|
|
914
|
+
"mask": "00-00-00-00-000",
|
|
915
|
+
"dropSpecialCharacters": false,
|
|
916
|
+
"showMaskTyped": true
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
```
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
#### *Date Input*
|
|
929
|
+
|
|
930
|
+
```ts
|
|
931
|
+
export type DateInputOptions = {
|
|
932
|
+
type: 'date';
|
|
933
|
+
options?:
|
|
934
|
+
{
|
|
935
|
+
placeholder?: string;
|
|
936
|
+
debounceTime?: number;
|
|
937
|
+
isDateRange?: boolean;
|
|
938
|
+
showActions?: boolean;
|
|
939
|
+
autoFill?: boolean;
|
|
940
|
+
panelClass?: string;
|
|
941
|
+
endDatePlaceholder?: string;
|
|
942
|
+
startDatePlaceholder?: string;
|
|
943
|
+
startView?: 'month' | 'year' | 'multi-year';
|
|
944
|
+
max?: Date | string | null;
|
|
945
|
+
min?: Date | string | null;
|
|
946
|
+
startAt?: Date | string | null;
|
|
947
|
+
updateLocalLang?: boolean;
|
|
948
|
+
hijriDisplayFormat?: string;
|
|
949
|
+
displayFormat?: string;
|
|
950
|
+
hideLabel?: boolean
|
|
951
|
+
}
|
|
952
|
+
};
|
|
953
|
+
```
|
|
954
|
+
|
|
955
|
+
| Property | Type | Description |
|
|
956
|
+
|--------------------------------|-----------------------------------------|------------------------------------------------------------------|
|
|
957
|
+
| `placeholder` | `string` | Placeholder text for the date input. |
|
|
958
|
+
| `debounceTime` | `number` | Delay in milliseconds before emitting value changes. |
|
|
959
|
+
| `isDateRange` | `boolean` | Enables range selection between start and end dates. |
|
|
960
|
+
| `showActions` | `boolean` | Whether to show action buttons like "Apply" or "Clear". |
|
|
961
|
+
| `autoFill` | `boolean` | Automatically fills the date if empty on blur or initialization. |
|
|
962
|
+
| `panelClass` | `string` | Custom CSS class to apply to the datepicker panel. |
|
|
963
|
+
| `endDatePlaceholder` | `string` | Placeholder for the end date field in range mode. |
|
|
964
|
+
| `startDatePlaceholder` | `string` | Placeholder for the start date field in range mode. |
|
|
965
|
+
| `startView` | `'month'` \| `'year'` \| `'multi-year'` | Initial calendar view opened. |
|
|
966
|
+
| `max` | `Date` \| `string` \| `null` | Maximum allowed date. |
|
|
967
|
+
| `min` | `Date` \| `string` \| `null` | Minimum allowed date. |
|
|
968
|
+
| `startAt` | `Date` \| `string` \| `null` | Initial date to open the calendar on. |
|
|
969
|
+
| `updateLocalLang` | `boolean` | Whether to automatically apply the current language settings. |
|
|
970
|
+
| `hijriDisplayFormat` | `string` | Format used for Hijri calendar display. |
|
|
971
|
+
| `displayFormat` | `string` | Format used for Gregorian calendar display. |
|
|
972
|
+
| `hideLabel` (from `HideLabel`) | `boolean` | Whether to hide the field's label. |
|
|
973
|
+
*Example* :Date Field
|
|
974
|
+
```json
|
|
975
|
+
{
|
|
976
|
+
"type": "predicate",
|
|
977
|
+
"config": {
|
|
978
|
+
"label": "FILTERS.creationDate",
|
|
979
|
+
"fieldKey": "createdAt",
|
|
980
|
+
"sendMode": "payload",
|
|
981
|
+
"render": {
|
|
982
|
+
"type": "date",
|
|
983
|
+
"options": {
|
|
984
|
+
"isDateRange": false,
|
|
985
|
+
"displayFormat": "DD/MM/YYYY",
|
|
986
|
+
"startView": "month"
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
```
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
---
|
|
996
|
+
---
|
|
997
|
+
|
|
998
|
+
## Aggregation Field Render
|
|
999
|
+
|
|
1000
|
+
- **Type**: `CheckboxOptions` | `SwitchOptions` | `RadioOptions` | `DropdownOptions` | `AutocompleteOptions` | `CustomOptions` | `DateListOptions`
|
|
1001
|
+
- **Description**: Defines the rendering configuration for an aggregation field. The render type determines how users interact with the filter or input—for example, as checkboxes, a dropdown, or a custom UI.
|
|
1002
|
+
|
|
1003
|
+
### Supported Types
|
|
1004
|
+
|
|
1005
|
+
#### *Checkbox*
|
|
1006
|
+
|
|
1007
|
+
```ts
|
|
1008
|
+
type CheckboxOptions = {
|
|
1009
|
+
type: 'checkbox';
|
|
1010
|
+
options?: ShowTotalConfig & FilterConfig & CollapseConfig & SearchConfig & HideLabel & SortOptions;
|
|
1011
|
+
};
|
|
1012
|
+
```
|
|
1013
|
+
|
|
1014
|
+
| Property | Type | Required | Description |
|
|
1015
|
+
|-----------|--------------------------------------------------------------------------------------------|----------|------------------------------------|
|
|
1016
|
+
| `type` | `'checkbox'` | ✅ | Specifies the input type. |
|
|
1017
|
+
| `options` | `ShowTotalConfig & FilterConfig & CollapseConfig & SearchConfig & HideLabel & SortOptions` | ❌ | Configurable UI and data features. |
|
|
1018
|
+
|
|
1019
|
+
```json
|
|
1020
|
+
{
|
|
1021
|
+
"type": "checkbox",
|
|
1022
|
+
"options": {
|
|
1023
|
+
"showTotal": true,
|
|
1024
|
+
"filter": true,
|
|
1025
|
+
"collapse": true,
|
|
1026
|
+
"minVisibleCount": 2,
|
|
1027
|
+
"expandedCount": 5,
|
|
1028
|
+
"hideLabel": false,
|
|
1029
|
+
"sort": true,
|
|
1030
|
+
"search": {
|
|
1031
|
+
"placeholder": "Find switch options...",
|
|
1032
|
+
"query": {
|
|
1033
|
+
"field": "gdoc:categoryHierarchyCode",
|
|
1034
|
+
"method": "post",
|
|
1035
|
+
"url": "/api/switch/search",
|
|
1036
|
+
"operator": "equals",
|
|
1037
|
+
"template": " payload value {{text}}",
|
|
1038
|
+
"params": {
|
|
1039
|
+
"active": 1
|
|
1040
|
+
},
|
|
1041
|
+
"headers": {
|
|
1042
|
+
"X-Custom-Header": "value"
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
```
|
|
1050
|
+
#### *Switch*
|
|
1051
|
+
```ts
|
|
1052
|
+
type SwitchOptions = {
|
|
1053
|
+
type: 'switch';
|
|
1054
|
+
options?: ShowTotalConfig & FilterConfig & CollapseConfig & MultipleConfig & SearchConfig & HideLabel & SortOptions;
|
|
1055
|
+
};
|
|
1056
|
+
```
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
| Property | Type | Required | Description |
|
|
1060
|
+
|-----------|-------------------------------------------------------------------------------------------------------------|----------|------------------------------------------------|
|
|
1061
|
+
| `type` | `'switch'` | ✅ | Specifies the input type. |
|
|
1062
|
+
| `options` | `ShowTotalConfig & FilterConfig & CollapseConfig & MultipleConfig & SearchConfig & HideLabel & SortOptions` | ❌ | Includes `multiple` for multi-selection logic. |
|
|
1063
|
+
```json
|
|
1064
|
+
{
|
|
1065
|
+
"type": "switch",
|
|
1066
|
+
"options": {
|
|
1067
|
+
"showTotal": false,
|
|
1068
|
+
"filter": true,
|
|
1069
|
+
"collapse": true,
|
|
1070
|
+
"minVisibleCount": 1,
|
|
1071
|
+
"expandedCount": 3,
|
|
1072
|
+
"multiple": true,
|
|
1073
|
+
"hideLabel": true,
|
|
1074
|
+
"sort": false
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
```
|
|
1079
|
+
|
|
1080
|
+
#### *Radio*
|
|
1081
|
+
```ts
|
|
1082
|
+
type RadioOptions = {
|
|
1083
|
+
type: 'radio';
|
|
1084
|
+
options?: ShowTotalConfig & FilterConfig & CollapseConfig & SearchConfig & HideLabel & SortOptions;
|
|
1085
|
+
};
|
|
1086
|
+
```
|
|
1087
|
+
|
|
1088
|
+
| Property | Type | Required | Description |
|
|
1089
|
+
|-----------|--------------------------------------------------------------------------------------------|----------|----------------------------------------------|
|
|
1090
|
+
| `type` | `'radio'` | ✅ | Specifies the input type. |
|
|
1091
|
+
| `options` | `ShowTotalConfig & FilterConfig & CollapseConfig & SearchConfig & HideLabel & SortOptions` | ❌ | Similar to `CheckboxOptions`, no `multiple`. |
|
|
1092
|
+
#### *Dropdown*
|
|
1093
|
+
```ts
|
|
1094
|
+
type DropdownOptions = {
|
|
1095
|
+
|
|
1096
|
+
type: 'dropdown';
|
|
1097
|
+
|
|
1098
|
+
options?: Prettify<ShowTotalConfig & MultipleConfig & HideLabel>;
|
|
1099
|
+
|
|
1100
|
+
};
|
|
1101
|
+
```
|
|
1102
|
+
|
|
1103
|
+
| Property | Type | Required | Description |
|
|
1104
|
+
|-----------|------------------------------------------------|----------|------------------------------------------------------|
|
|
1105
|
+
| `type` | `'dropdown'` | ✅ | Specifies the input type. |
|
|
1106
|
+
| `options` | `ShowTotalConfig & MultipleConfig & HideLabel` | ❌ | Only includes total, multiple, and label visibility. |
|
|
1107
|
+
|
|
1108
|
+
```json
|
|
1109
|
+
{
|
|
1110
|
+
"type": "dropdown",
|
|
1111
|
+
"options": {
|
|
1112
|
+
"showTotal": true,
|
|
1113
|
+
"multiple": false,
|
|
1114
|
+
"hideLabel": false
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
```
|
|
1118
|
+
|
|
1119
|
+
#### *Autocomplete*
|
|
1120
|
+
```ts
|
|
1121
|
+
type AutocompleteOptions = {
|
|
1122
|
+
type: 'autocomplete';
|
|
1123
|
+
options?: Prettify<ShowTotalConfig & HideLabel>;
|
|
1124
|
+
};
|
|
1125
|
+
```
|
|
1126
|
+
|
|
1127
|
+
| Property | Type | Required | Description |
|
|
1128
|
+
|-----------|-------------------------------|----------|------------------------------------------------|
|
|
1129
|
+
| `type` | `'autocomplete'` | ✅ | Autocomplete input field. |
|
|
1130
|
+
| `options` | `ShowTotalConfig & HideLabel` | ❌ | Minimal config: total count and label control. |
|
|
1131
|
+
#### *Date List*
|
|
1132
|
+
```ts
|
|
1133
|
+
type DateListOptions = {
|
|
1134
|
+
|
|
1135
|
+
type: 'dateList';
|
|
1136
|
+
options: Prettify<ShowTotalConfig & HideLabel> & {
|
|
1137
|
+
view: (typeof DATE_LIST_VIEW)[keyof typeof DATE_LIST_VIEW]; //list - dropdown
|
|
1138
|
+
minMax?: boolean;
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
```
|
|
1142
|
+
|
|
1143
|
+
| Property | Type | Required | Description |
|
|
1144
|
+
|-------------|-----------------------------------------------------------------|----------|-----------------------------------------------------------|
|
|
1145
|
+
| `type` | `'dateList'` | ✅ | Specifies it's a date list input. |
|
|
1146
|
+
| `options` | `ShowTotalConfig & HideLabel & { view: ..., minMax?: boolean }` | ✅ | Includes display view and optional min-max toggle. |
|
|
1147
|
+
| └─ `view` | `DATE_LIST_VIEW[keyof DATE_LIST_VIEW]` | ✅ | UI view type (e.g., `'list'` or `'dropdown'`). |
|
|
1148
|
+
| └─ `minMax` | `boolean` | ❌ | Enables min/max range support (e.g., for date filtering). |
|
|
1149
|
+
#### *Custom Options*
|
|
1150
|
+
```ts
|
|
1151
|
+
type CustomOptions = {
|
|
1152
|
+
type: 'custom';
|
|
1153
|
+
options?: Record<string, any> & HideLabel;
|
|
1154
|
+
};
|
|
1155
|
+
```
|
|
1156
|
+
|
|
1157
|
+
| Property | Type | Required | Description |
|
|
1158
|
+
|-----------|-----------------------------------|----------|---------------------------------------------------|
|
|
1159
|
+
| `type` | `'custom'` | ✅ | Custom input component. |
|
|
1160
|
+
| `options` | `Record<string, any> & HideLabel` | ❌ | Arbitrary config props with optional `hideLabel`. |
|
|
1161
|
+
|
|
1162
|
+
> [!note] NOTE
|
|
1163
|
+
> This field type is designed to be used with a registered component in a host such as **`ndf-table`**, and expects a **custom content template** using `<ng-template>`.
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
Here is an example template that will receive contextual variables from the table:
|
|
1167
|
+
|
|
1168
|
+
```html
|
|
1169
|
+
<ndf-table>
|
|
1170
|
+
|
|
1171
|
+
<ng-template
|
|
1172
|
+
filterCustomTemplate
|
|
1173
|
+
let-options="options"
|
|
1174
|
+
let-field="field"
|
|
1175
|
+
let-value="value"
|
|
1176
|
+
let-aggregation="aggregation"
|
|
1177
|
+
let-updateValue="updateValue">
|
|
1178
|
+
|
|
1179
|
+
{{value}}
|
|
1180
|
+
|
|
1181
|
+
<button (click)="updateValue(updated value)">updateValue</button>
|
|
1182
|
+
</ng-template>
|
|
1183
|
+
|
|
1184
|
+
</ndf-table>
|
|
1185
|
+
|
|
1186
|
+
```
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
---
|
|
1191
|
+
---
|
|
1192
|
+
|
|
1193
|
+
## Custom Field Render
|
|
1194
|
+
- **Type**: `ActiveUserSwitcherOptions`
|
|
1195
|
+
- **Description**: Defines the rendering configuration for a custom field.
|
|
1196
|
+
|
|
1197
|
+
### Supported Types
|
|
1198
|
+
#### *Active user options*
|
|
1199
|
+
```ts
|
|
1200
|
+
type ActiveUserSwitcherOptions = {
|
|
1201
|
+
type: 'activeUser';
|
|
1202
|
+
options?: Prettify<
|
|
1203
|
+
HideLabel & {
|
|
1204
|
+
bindValue?: string;
|
|
1205
|
+
text?: string;
|
|
1206
|
+
}
|
|
1207
|
+
>;
|
|
1208
|
+
}
|
|
1209
|
+
```
|
|
1210
|
+
|
|
1211
|
+
| Property | Type | Required | Description |
|
|
1212
|
+
|-----------|--------------------------------------------------------------|----------|-------------------------------------------------------|
|
|
1213
|
+
| `type` | `'activeUser'` | ✅ | Represents an active user switcher component. |
|
|
1214
|
+
| `options` | `{ hideLabel?: boolean; bindValue?: string; text?: string }` | ❌ | Optional label hiding, bound value, and display text. |
|
|
1215
|
+
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
---
|
|
1221
|
+
---
|
|
1222
|
+
# Common Types
|
|
1223
|
+
|
|
1224
|
+
These common types are used throughout the `NdfTableOptions` interface.
|
|
1225
|
+
|
|
1226
|
+
---
|
|
1227
|
+
|
|
1228
|
+
*Field options*
|
|
1229
|
+
|
|
1230
|
+
```ts
|
|
1231
|
+
type FilterConfig = { filter?: boolean };
|
|
1232
|
+
|
|
1233
|
+
type HideLabel = { hideLabel?: boolean };
|
|
1234
|
+
|
|
1235
|
+
type CollapseConfig = {
|
|
1236
|
+
collapse?: boolean;
|
|
1237
|
+
minVisibleCount?: number;
|
|
1238
|
+
expandedCount?: number;
|
|
1239
|
+
|
|
1240
|
+
};
|
|
1241
|
+
|
|
1242
|
+
type MultipleConfig = { multiple?: boolean };
|
|
1243
|
+
|
|
1244
|
+
type ShowTotalConfig = { showTotal?: boolean };
|
|
1245
|
+
|
|
1246
|
+
type SortOptions = { sort?: boolean };
|
|
1247
|
+
|
|
1248
|
+
type SearchConfig = {
|
|
1249
|
+
|
|
1250
|
+
search?: {
|
|
1251
|
+
placeholder?: string;
|
|
1252
|
+
query: {
|
|
1253
|
+
field?: string;
|
|
1254
|
+
method?: 'get' | 'post';
|
|
1255
|
+
url: string;
|
|
1256
|
+
operator?: ComparisonOperator;
|
|
1257
|
+
template?: EvaluatedString;
|
|
1258
|
+
params?: Record<StringOrNumber, StringOrNumber>;
|
|
1259
|
+
headers?: Record<StringOrNumber, StringOrNumber>;
|
|
1260
|
+
};
|
|
1261
|
+
};
|
|
1262
|
+
};
|
|
1263
|
+
```
|
|
1264
|
+
|
|
1265
|
+
| Property | Type | Description |
|
|
1266
|
+
|-------------------|----------------------------------------|------------------------------------------------------------|
|
|
1267
|
+
| `showTotal` | `boolean` | Whether to display a total count (from `ShowTotalConfig`). |
|
|
1268
|
+
| `filter` | `boolean` | Enables filtering for this field (from `FilterConfig`). |
|
|
1269
|
+
| `collapse` | `boolean` | Enables collapsing (from `CollapseConfig`). |
|
|
1270
|
+
| `minVisibleCount` | `number` | Minimum items visible before collapsing. |
|
|
1271
|
+
| `expandedCount` | `number` | Number of items shown when expanded. |
|
|
1272
|
+
| `multiple` | `boolean` | Allow multiple selections (from `MultipleConfig`). |
|
|
1273
|
+
| `hideLabel` | `boolean` | Hides the label of the field/component (from `HideLabel`). |
|
|
1274
|
+
| `sort` | `boolean` | Enables field options sort (from `SortOptions`). |
|
|
1275
|
+
| `search` | `{ placeholder?: string; query: ... }` | Enables search configuration (from `SearchConfig`). |
|
|
1276
|
+
|
|
1277
|
+
*Label Value*
|
|
1278
|
+
|
|
1279
|
+
```ts
|
|
1280
|
+
type LabelValue<L, V> = {
|
|
1281
|
+
label: L;
|
|
1282
|
+
value: V;
|
|
1283
|
+
};
|
|
1284
|
+
```
|
|
1285
|
+
|
|
1286
|
+
*Ndf Request Config*
|
|
1287
|
+
|
|
1288
|
+
```ts
|
|
1289
|
+
type NdfRequestConfig = {
|
|
1290
|
+
method: 'post' | 'get';
|
|
1291
|
+
url: string;
|
|
1292
|
+
payload?: Record<string, any>;
|
|
1293
|
+
params?: Record<string, any>;
|
|
1294
|
+
headers?: Record<string, any>;
|
|
1295
|
+
};
|
|
1296
|
+
```
|
|
1297
|
+
|
|
1298
|
+
*Table Sort Config*
|
|
1299
|
+
|
|
1300
|
+
```ts
|
|
1301
|
+
type TableSortConfig = {
|
|
1302
|
+
enabled: boolean;
|
|
1303
|
+
frozenColumns?: string[]; // Specifies which columns should remain fixed (frozen) during column ordering
|
|
1304
|
+
};
|
|
1305
|
+
```
|
|
1306
|
+
|
|
1307
|
+
*Comparison Operator*
|
|
1308
|
+
|
|
1309
|
+
```ts
|
|
1310
|
+
type ComparisonOperator = | '=' | '!=' | '<' | '>' | '<=' | '>=' | 'IN' | 'NOT IN' | 'BETWEEN' | 'LIKE' | 'ILIKE' | 'NOT LIKE' | 'NOT ILIKE' | 'STARTSWITH' | 'FULLTEXT';
|
|
1311
|
+
```
|
|
1312
|
+
|
|
1313
|
+
*Translate Key*
|
|
1314
|
+
|
|
1315
|
+
```ts
|
|
1316
|
+
type TranslateKey = string
|
|
1317
|
+
```
|
|
1318
|
+
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
# Full Example
|
|
1322
|
+
|
|
1323
|
+
```json
|
|
1324
|
+
{
|
|
1325
|
+
"options": {
|
|
1326
|
+
"columns": {
|
|
1327
|
+
"toggle": true,
|
|
1328
|
+
"sortable": {
|
|
1329
|
+
"enabled": true
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
1332
|
+
"filters": {
|
|
1333
|
+
"mode": "payload",
|
|
1334
|
+
"reload": {
|
|
1335
|
+
"strategy": "always"
|
|
1336
|
+
},
|
|
1337
|
+
"panel": {
|
|
1338
|
+
"visible": true,
|
|
1339
|
+
"toggleButton": true
|
|
1340
|
+
},
|
|
1341
|
+
"fields": [
|
|
1342
|
+
{
|
|
1343
|
+
"type": "aggregation",
|
|
1344
|
+
"config": {
|
|
1345
|
+
"label": "rmAdvancedSearch.recDefintionSystemName",
|
|
1346
|
+
"aggregation": "RecordDefinition_systemName_agg",
|
|
1347
|
+
"fieldKey": "recdef:systemName",
|
|
1348
|
+
"dataTransformer": "system",
|
|
1349
|
+
"order": 0,
|
|
1350
|
+
"sendMode": "queryParam",
|
|
1351
|
+
"render": {
|
|
1352
|
+
"type": "checkbox",
|
|
1353
|
+
"options": {
|
|
1354
|
+
"showTotal": true
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
}
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"type": "predicate",
|
|
1361
|
+
"config": {
|
|
1362
|
+
"label": "FILTERS.gdocDocumentSubject",
|
|
1363
|
+
"fieldKey": "gdoc:documentSubject",
|
|
1364
|
+
"sendMode": "payload",
|
|
1365
|
+
"valueType": "valueObject",
|
|
1366
|
+
"render": {
|
|
1367
|
+
"type": "input",
|
|
1368
|
+
"options": {
|
|
1369
|
+
"debounceTime": 400,
|
|
1370
|
+
"mask": {
|
|
1371
|
+
"mask": "00-00-00-00-000",
|
|
1372
|
+
"dropSpecialCharacters": false,
|
|
1373
|
+
"showMaskTyped": true
|
|
1374
|
+
},
|
|
1375
|
+
"suffix": {
|
|
1376
|
+
"dropdown": {
|
|
1377
|
+
"items": [
|
|
1378
|
+
{
|
|
1379
|
+
"key": "OPERATORS.equals",
|
|
1380
|
+
"value": "="
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"key": "OPERATORS.notEquals",
|
|
1384
|
+
"value": "!="
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"key": "OPERATORS.like",
|
|
1388
|
+
"value": "LIKE"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"key": "OPERATORS.iLike",
|
|
1392
|
+
"value": "ILIKE"
|
|
1393
|
+
}
|
|
1394
|
+
]
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"type": "aggregation",
|
|
1403
|
+
"config": {
|
|
1404
|
+
"label": "rmAdvancedSearch.gdocGDocumentDate",
|
|
1405
|
+
"aggregation": "generaldocument_gDocumentDate_agg",
|
|
1406
|
+
"fieldKey": "gdoc:gDocumentDate",
|
|
1407
|
+
"prefix": "search.buckets.",
|
|
1408
|
+
"sendMode": "custom",
|
|
1409
|
+
"valueType": "valueObject",
|
|
1410
|
+
"render": {
|
|
1411
|
+
"type": "dateList",
|
|
1412
|
+
"view": "list",
|
|
1413
|
+
"options": {
|
|
1414
|
+
"showTotal": true,
|
|
1415
|
+
"minMax": true
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
}
|
|
1420
|
+
]
|
|
1421
|
+
},
|
|
1422
|
+
"search": {
|
|
1423
|
+
"fieldKey": "ecm:fulltext",
|
|
1424
|
+
"searchMode": "triggered",
|
|
1425
|
+
"suffix": {
|
|
1426
|
+
"dialog": {
|
|
1427
|
+
"title": "INFO.dialogTitle",
|
|
1428
|
+
"content": [
|
|
1429
|
+
"##INFO.query_sequence##",
|
|
1430
|
+
"##INFO.query_and##",
|
|
1431
|
+
"##INFO.query_negation##",
|
|
1432
|
+
"##INFO.query_prefix##",
|
|
1433
|
+
"##INFO.query_historical##",
|
|
1434
|
+
"##INFO.query_or##",
|
|
1435
|
+
"##INFO.query_phrase##"
|
|
1436
|
+
]
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"tableMode": {
|
|
1441
|
+
"mode": "list",
|
|
1442
|
+
"componentName": "rms.components.advancedSearchCard",
|
|
1443
|
+
"toggleMode": true,
|
|
1444
|
+
"availableMode": [
|
|
1445
|
+
{
|
|
1446
|
+
"value": "list",
|
|
1447
|
+
"icon": "table_rows"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"value": "custom",
|
|
1451
|
+
"icon": "rectangle"
|
|
1452
|
+
}
|
|
1453
|
+
]
|
|
1454
|
+
}
|
|
1455
|
+
},
|
|
1456
|
+
"scrollbarH": true,
|
|
1457
|
+
"pageNumber": 1,
|
|
1458
|
+
"pageSize": 10,
|
|
1459
|
+
"prefix": "LISTING.",
|
|
1460
|
+
"pageProvider": "PP_RM_Record",
|
|
1461
|
+
"customUrl": {
|
|
1462
|
+
"url": "/api/v1/custom-search/pp/PP_RM_Record/execute",
|
|
1463
|
+
"method": "POST"
|
|
1464
|
+
},
|
|
1465
|
+
"headers": {
|
|
1466
|
+
"properties": "dublincore, file"
|
|
1467
|
+
},
|
|
1468
|
+
"quickFilters": "After Archiving",
|
|
1469
|
+
"fields": {
|
|
1470
|
+
"systemName": "recdef:systemName",
|
|
1471
|
+
"title": "dc:title"
|
|
1472
|
+
},
|
|
1473
|
+
"columns": [
|
|
1474
|
+
{
|
|
1475
|
+
"name": "systemName",
|
|
1476
|
+
"prop": "properties.systemName",
|
|
1477
|
+
"display": true,
|
|
1478
|
+
"type": "custom",
|
|
1479
|
+
"template": "common.components.systemName",
|
|
1480
|
+
"translatePrefix": "search.buckets",
|
|
1481
|
+
"isOriginalKey": true,
|
|
1482
|
+
"sortable": false,
|
|
1483
|
+
"headerClass": "recdef:systemName",
|
|
1484
|
+
"defaultVisible": true,
|
|
1485
|
+
"minWidth": 150
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"name": "physicalOriginal",
|
|
1489
|
+
"prop": "properties.physicalOriginal",
|
|
1490
|
+
"display": true,
|
|
1491
|
+
"type": "custom",
|
|
1492
|
+
"template": "common.components.TranslatedValueColumn",
|
|
1493
|
+
"translatePrefix": "rmDocumentUpload.hasPhysicalOriginal",
|
|
1494
|
+
"isBooleanValue": true,
|
|
1495
|
+
"sortable": false,
|
|
1496
|
+
"headerClass": "recdef:physicalOriginal",
|
|
1497
|
+
"defaultVisible": false,
|
|
1498
|
+
"minWidth": 150
|
|
1499
|
+
}
|
|
1500
|
+
]
|
|
1501
|
+
}
|
|
1502
|
+
```
|