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,11 @@
|
|
|
1
|
+
import { EvaluatorsService } from '../directive/permissions/evaluators.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GlobalAdminService {
|
|
4
|
+
private evaluatorService;
|
|
5
|
+
isGlobalAdmin: boolean;
|
|
6
|
+
activeTenant: any;
|
|
7
|
+
constructor(evaluatorService: EvaluatorsService);
|
|
8
|
+
checkIfGlobalAdmin(): Promise<boolean>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalAdminService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalAdminService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { BaseService } from '../shared/services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GlobalDepartmentsService extends BaseService {
|
|
5
|
+
getDepartmentNames<T = any>(depCodes?: string[], operation?: string): Observable<T[]>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalDepartmentsService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalDepartmentsService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GlobalPdfTron {
|
|
3
|
+
private baseHref;
|
|
4
|
+
instance: any;
|
|
5
|
+
saveOptions: any;
|
|
6
|
+
constructor(baseHref: string);
|
|
7
|
+
exportLinearizedPDF(file: any): Promise<unknown>;
|
|
8
|
+
init(): Promise<void>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalPdfTron, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalPdfTron>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from './apis-errors-messages.service';
|
|
2
|
+
export * from './base-shared-doc.service';
|
|
3
|
+
export * from './dialog-mangment.service';
|
|
4
|
+
export * from './dynamic-form.service';
|
|
5
|
+
export * from './file-manager.adapter';
|
|
6
|
+
export * from './file-manager.service';
|
|
7
|
+
export * from './global-admin.service';
|
|
8
|
+
export * from './global-department.service';
|
|
9
|
+
export * from './global-pdftron.service';
|
|
10
|
+
export * from './mainfolder.service';
|
|
11
|
+
export * from './publishing-document.service';
|
|
12
|
+
export * from './recently-viewed.service';
|
|
13
|
+
export * from './shared-docs.service';
|
|
14
|
+
export * from './shared-services.module';
|
|
15
|
+
export * from './upload-file.service';
|
|
16
|
+
export * from './upload-managment.service';
|
|
17
|
+
export * from './user.service';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { NuxeoService } from '../core/services/nuxeo/nuxeo.service';
|
|
3
|
+
import { UserPreferencesService } from '../core/services/user/user-preferences.service';
|
|
4
|
+
import { AppConfigService } from '../configuration/app-config.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MainfolderService {
|
|
7
|
+
private nuxeoService;
|
|
8
|
+
private appConfigService;
|
|
9
|
+
private userPreference;
|
|
10
|
+
fileManager_mainFolderId: any;
|
|
11
|
+
category_mainFolderId: any;
|
|
12
|
+
fileManagerObj: any;
|
|
13
|
+
myFilesManagerObj: any;
|
|
14
|
+
ArchiveManagerObj: any;
|
|
15
|
+
categoryObj: any;
|
|
16
|
+
localStoragKeys: any;
|
|
17
|
+
constructor(nuxeoService: NuxeoService, appConfigService: AppConfigService, userPreference: UserPreferencesService);
|
|
18
|
+
fetchfileManager_mainFolderId(apiName?: any, failIfEmptyRes?: boolean): Observable<any>;
|
|
19
|
+
fetchMyFilesManager_mainFolderId(): Observable<any>;
|
|
20
|
+
fetchArchiveManager_mainFolderId(): Observable<any>;
|
|
21
|
+
fetchcategory_mainFolderId(api: string): Observable<any>;
|
|
22
|
+
save_fileManagerObj_ToLocalStorage(apiName?: string, failIfEmptyRes?: boolean): Observable<any>;
|
|
23
|
+
save_myfilesManagerObj_ToLocalStorage(): Observable<any>;
|
|
24
|
+
save_ArchiveManagerObject_ToLocalStorage(): Observable<any>;
|
|
25
|
+
save_categoryObj_ToLocalStorage(key?: string, api?: string): Observable<any>;
|
|
26
|
+
get_fileManagerObj_FromLocalStorage(key?: any): any;
|
|
27
|
+
get_myFilesManagerObj_FromLocalStorage(): any;
|
|
28
|
+
get_ArchiveManagerObj_FromLocalStorage(): any;
|
|
29
|
+
get_categoryObj_FromLocalStorage(key?: string): any;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainfolderService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MainfolderService>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { NuxeoService } from '../core/services/nuxeo/nuxeo.service';
|
|
3
|
+
import { CallApiService } from '../core/services/callApi/call-api.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PublishingDocumentService {
|
|
6
|
+
private nuxeoService;
|
|
7
|
+
private environment;
|
|
8
|
+
private callApiService;
|
|
9
|
+
newPublished: BehaviorSubject<boolean>;
|
|
10
|
+
constructor(nuxeoService: NuxeoService, environment: any, callApiService: CallApiService);
|
|
11
|
+
getSectionById(docIds: any): Observable<any>;
|
|
12
|
+
getSectionByTitle(titles: any): Observable<any>;
|
|
13
|
+
getPublishingSections(pageNumber?: any, pageSize?: any, sortObj?: any): Observable<unknown>;
|
|
14
|
+
unPublishDocument(docId: any): Observable<unknown>;
|
|
15
|
+
publishDocument(docId: any, params: any): Observable<unknown>;
|
|
16
|
+
getPublishedPlaces(uid: any): Observable<any>;
|
|
17
|
+
getVersionToPublishDialog(uid: any): Observable<unknown>;
|
|
18
|
+
buildVersionNum(element: any): number;
|
|
19
|
+
createPublishDepartmentSection(section: any): Observable<unknown>;
|
|
20
|
+
Add_Permission_PublishDepartmentSection(sectionName: any, depList: any, uid: any): Observable<unknown>;
|
|
21
|
+
updatePublishDepartmentSection(section: any, uid: any): Observable<unknown>;
|
|
22
|
+
deleteSection(uid: any): Observable<unknown>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PublishingDocumentService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PublishingDocumentService>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CallApiService } from '../core/services/callApi/call-api.service';
|
|
4
|
+
import { UserPreferencesService } from '../core/services/user/user-preferences.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RecentlyViewedService {
|
|
7
|
+
private userPreference;
|
|
8
|
+
private callApiService;
|
|
9
|
+
itemAdded: EventEmitter<any>;
|
|
10
|
+
recentViewedDocsIds: any[];
|
|
11
|
+
constructor(userPreference: UserPreferencesService, callApiService: CallApiService);
|
|
12
|
+
getIdsFromLocalStorage(): any[];
|
|
13
|
+
setIdsInLocalStorage(Id: string): void;
|
|
14
|
+
getRecentlyViewedDocs(docIds: any, sortObj?: any): Observable<any>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RecentlyViewedService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RecentlyViewedService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DialogOptions } from '../shared/components';
|
|
2
|
+
import { BaseSharedDocService } from './base-shared-doc.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SharedDocsService extends BaseSharedDocService {
|
|
5
|
+
overrideShareUrl: (selectedItem: any) => string;
|
|
6
|
+
openShareDialog(selectedItem: any, options?: Partial<Omit<DialogOptions, 'component' | 'data'>>, data?: Record<string, any>): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedDocsService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SharedDocsService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
export declare class SharedServicesModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedServicesModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedServicesModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SharedServicesModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { NuxeoService } from '../core/services/nuxeo/nuxeo.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UploadFileService {
|
|
5
|
+
private nuxeoService;
|
|
6
|
+
constructor(nuxeoService: NuxeoService);
|
|
7
|
+
uploadSingleBatch(file: any): Observable<any>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadFileService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UploadFileService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { DialogMangmentService } from "./dialog-mangment.service";
|
|
3
|
+
import { GlobalPdfTron } from "./global-pdftron.service";
|
|
4
|
+
import { UploadFileService } from "./upload-file.service";
|
|
5
|
+
import { UserService } from "../shared-services/user.service";
|
|
6
|
+
import { Subject, Subscription } from "rxjs";
|
|
7
|
+
import { NuxeoService } from "../core/services/nuxeo/nuxeo.service";
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class UploadManagmentService implements OnInit {
|
|
10
|
+
private uploadFile;
|
|
11
|
+
private userService;
|
|
12
|
+
private environment;
|
|
13
|
+
private nuxeoService;
|
|
14
|
+
private dialogManagment;
|
|
15
|
+
private globalPdfTron;
|
|
16
|
+
onUploadFinish: Subject<void>;
|
|
17
|
+
onLinerizationFinish: EventEmitter<any>;
|
|
18
|
+
onNewPersonAdded: Subject<unknown>;
|
|
19
|
+
uploadFinishSubscription: Subscription;
|
|
20
|
+
addingPropertiesMode: boolean;
|
|
21
|
+
GeneralFormValidation: boolean;
|
|
22
|
+
scanCreationFailed: boolean;
|
|
23
|
+
failedFiles: any[];
|
|
24
|
+
uploadedFilesStatus: {
|
|
25
|
+
uploadInProgress: boolean;
|
|
26
|
+
numberOfFilesToBeUploaded: number;
|
|
27
|
+
numberOfUploadedFiles: number;
|
|
28
|
+
numberOfErrors: number;
|
|
29
|
+
uploadedFiles: any[];
|
|
30
|
+
allfiles: any[];
|
|
31
|
+
};
|
|
32
|
+
propObject: {};
|
|
33
|
+
constructor(uploadFile: UploadFileService, userService: UserService, environment: any, nuxeoService: NuxeoService, dialogManagment: DialogMangmentService, globalPdfTron: GlobalPdfTron);
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
gettingPropFromModal(propertiesObj: any): void;
|
|
36
|
+
resetStatus(): void;
|
|
37
|
+
uploadFilesMangment(files: any): void;
|
|
38
|
+
uploadSingleFile(file: any): void;
|
|
39
|
+
actualUploadSingleFile(file: any): void;
|
|
40
|
+
getNextFileToUpload(): void;
|
|
41
|
+
setStaticData(title: any): {
|
|
42
|
+
title: any;
|
|
43
|
+
description: string;
|
|
44
|
+
subject: string;
|
|
45
|
+
documentNumber: string;
|
|
46
|
+
gdocumentDate: any;
|
|
47
|
+
secrecyLevel: any;
|
|
48
|
+
importanceLevel: any;
|
|
49
|
+
departmentCode: any;
|
|
50
|
+
agencyCategoryCode: any;
|
|
51
|
+
agencyName: any;
|
|
52
|
+
countryCategoryCode: any;
|
|
53
|
+
countryName: any;
|
|
54
|
+
remarks: string;
|
|
55
|
+
} | {
|
|
56
|
+
title: any;
|
|
57
|
+
description: string;
|
|
58
|
+
subject?: undefined;
|
|
59
|
+
documentNumber?: undefined;
|
|
60
|
+
gdocumentDate?: undefined;
|
|
61
|
+
secrecyLevel?: undefined;
|
|
62
|
+
importanceLevel?: undefined;
|
|
63
|
+
departmentCode?: undefined;
|
|
64
|
+
agencyCategoryCode?: undefined;
|
|
65
|
+
agencyName?: undefined;
|
|
66
|
+
countryCategoryCode?: undefined;
|
|
67
|
+
countryName?: undefined;
|
|
68
|
+
remarks?: undefined;
|
|
69
|
+
};
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadManagmentService, never>;
|
|
71
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UploadManagmentService>;
|
|
72
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UserPreferencesService } from "../core/services/user/user-preferences.service";
|
|
2
|
+
import { CallApiService } from "../core/services/callApi/call-api.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UserService {
|
|
5
|
+
private userPreference;
|
|
6
|
+
private callApiService;
|
|
7
|
+
constructor(userPreference: UserPreferencesService, callApiService: CallApiService);
|
|
8
|
+
getUserDepartmentFromGroups(currentUser: any, prefix?: string): string;
|
|
9
|
+
getUserDepartmentFromPath(path: any): any;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -1,28 +1,93 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxeo-development-framework",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-bos",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/
|
|
6
|
-
"@angular/
|
|
5
|
+
"@angular/animations": "19.x",
|
|
6
|
+
"@angular/common": "19.x",
|
|
7
|
+
"@angular/compiler": "19.x",
|
|
8
|
+
"@angular/core": "19.x",
|
|
9
|
+
"@angular/forms": "19.x",
|
|
10
|
+
"@angular/platform-browser": "19.x",
|
|
11
|
+
"@angular/platform-browser-dynamic": "19.x",
|
|
12
|
+
"@angular/router": "19.x",
|
|
13
|
+
"rxjs": "7.x",
|
|
14
|
+
"zone.js": "0.15.x",
|
|
15
|
+
"legacy-angular-formio": "0.x",
|
|
16
|
+
"legacy-ngx-treeview": "0.x",
|
|
17
|
+
"@angular/cdk": "19.x",
|
|
18
|
+
"@angular/elements": "19.x",
|
|
19
|
+
"@angular/localize": "19.x",
|
|
20
|
+
"@types/node": "22.x",
|
|
21
|
+
"@angular/material": "19.x",
|
|
22
|
+
"@angular/material-moment-adapter": "19.x",
|
|
23
|
+
"@busacca/ng-pick-datetime": "13.x",
|
|
24
|
+
"@fortawesome/fontawesome-free": "6.x",
|
|
25
|
+
"@mat-datetimepicker/core": "15.x",
|
|
26
|
+
"@mat-datetimepicker/moment": "15.x",
|
|
27
|
+
"@ng-bootstrap/ng-bootstrap": "18.x",
|
|
28
|
+
"@ng-select/ng-select": "14.x",
|
|
29
|
+
"@ngx-translate/core": "16.x",
|
|
30
|
+
"node-forge": "1.x",
|
|
31
|
+
"@ngx-translate/http-loader": "16.x",
|
|
32
|
+
"@pdftron/webviewer": "^8.12.4",
|
|
33
|
+
"@rxweb/reactive-form-validators": "13.x",
|
|
34
|
+
"@swimlane/ngx-datatable": "21.x",
|
|
35
|
+
"@types/dwt": "16.x",
|
|
36
|
+
"@webcomponents/custom-elements": "1.x",
|
|
37
|
+
"angular-ng-autocomplete": "2.x",
|
|
38
|
+
"bootstrap": "5.x",
|
|
39
|
+
"bootstrap-icons": "1.x",
|
|
40
|
+
"chart.js": "4.x",
|
|
41
|
+
"chartjs-adapter-moment": "1.x",
|
|
42
|
+
"dwt": "17.x",
|
|
43
|
+
"keycloak-angular": "19.x",
|
|
44
|
+
"keycloak-js": "25.x",
|
|
45
|
+
"lodash": "4.x",
|
|
46
|
+
"moment": "2.x",
|
|
47
|
+
"moment-es6": "1.x",
|
|
48
|
+
"moment-hijri": "3.x",
|
|
49
|
+
"ngx-infinite-scroll": "19.x",
|
|
50
|
+
"ngx-moment": "6.x",
|
|
51
|
+
"ngx-toastr": "19.x",
|
|
52
|
+
"nuxeo": "4.x",
|
|
53
|
+
"ts-cacheable": "1.x",
|
|
54
|
+
"webstomp-client": "1.x",
|
|
55
|
+
"file-saver": "2.x",
|
|
56
|
+
"devextreme": "24.x",
|
|
57
|
+
"devextreme-angular": "24.x",
|
|
58
|
+
"ngx-cookie-service": "19.x",
|
|
59
|
+
"rete": "2.x",
|
|
60
|
+
"rete-angular-plugin": "2.x",
|
|
61
|
+
"rete-area-plugin": "2.x",
|
|
62
|
+
"rete-auto-arrange-plugin": "2.x",
|
|
63
|
+
"rete-connection-path-plugin": "2.x",
|
|
64
|
+
"rete-connection-plugin": "2.x",
|
|
65
|
+
"rete-connection-reroute-plugin": "2.x",
|
|
66
|
+
"rete-minimap-plugin": "2.x",
|
|
67
|
+
"rete-readonly-plugin": "2.x",
|
|
68
|
+
"rete-render-utils": "2.x",
|
|
69
|
+
"elkjs": "0.x",
|
|
70
|
+
"d3-shape": "3.x",
|
|
71
|
+
"ngx-mask": "19.x",
|
|
72
|
+
"monaco-editor": "0.52.x",
|
|
73
|
+
"ngx-markdown": "19.x",
|
|
74
|
+
"string-hash": "1.x",
|
|
75
|
+
"crypto-js": "4.x",
|
|
76
|
+
"dompurify": "^3.3.1"
|
|
7
77
|
},
|
|
8
78
|
"dependencies": {
|
|
9
|
-
"tslib": "
|
|
79
|
+
"tslib": "2.x"
|
|
10
80
|
},
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"lib": "lib"
|
|
81
|
+
"module": "fesm2022/nuxeo-development-framework.mjs",
|
|
82
|
+
"typings": "index.d.ts",
|
|
83
|
+
"exports": {
|
|
84
|
+
"./package.json": {
|
|
85
|
+
"default": "./package.json"
|
|
86
|
+
},
|
|
87
|
+
".": {
|
|
88
|
+
"types": "./index.d.ts",
|
|
89
|
+
"default": "./fesm2022/nuxeo-development-framework.mjs"
|
|
90
|
+
}
|
|
22
91
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
},
|
|
26
|
-
"author": "comptechco",
|
|
27
|
-
"license": "ISC"
|
|
28
|
-
}
|
|
92
|
+
"sideEffects": false
|
|
93
|
+
}
|
package/public-api.d.ts
CHANGED
|
@@ -1,3 +1,242 @@
|
|
|
1
|
-
export * from './lib/
|
|
1
|
+
export * from './lib/core/core.module';
|
|
2
|
+
export * from './lib/core/adapters/adapter.service';
|
|
3
|
+
export * from './lib/core/enums/language.enum';
|
|
4
|
+
export * from './lib/core/env/index';
|
|
5
|
+
export * from './lib/core/models';
|
|
6
|
+
export * from './lib/core/services/';
|
|
7
|
+
export * from './lib/core/services/callApi/call-api.service';
|
|
8
|
+
export * from './lib/core/services/extension/action.extensions';
|
|
9
|
+
export * from './lib/core/services/extension/component-register.service';
|
|
10
|
+
export * from './lib/core/services/extension/extenion-utils';
|
|
11
|
+
export * from './lib/core/services/extension/extension-element';
|
|
12
|
+
export * from './lib/core/services/extension/extension-loader.service';
|
|
13
|
+
export * from './lib/core/services/extension/extension.service';
|
|
14
|
+
export * from './lib/core/services/initialization/initialization.service';
|
|
15
|
+
export * from './lib/core/services/localStorag/local-storag.service';
|
|
16
|
+
export * from './lib/core/services/nuxeo/nuxeo.service';
|
|
17
|
+
export * from './lib/core/services/roles/roles.service';
|
|
18
|
+
export * from './lib/core/services/translation/translate-loader.service';
|
|
19
|
+
export * from './lib/core/services/translation/translation.service';
|
|
20
|
+
export * from './lib/core/services/user/user-preferences.service';
|
|
21
|
+
export * from './lib/core/utilities/moment-date-adapter';
|
|
22
|
+
export * from './lib/core/utilities/utility.service';
|
|
23
|
+
export * from './lib/shared-services';
|
|
24
|
+
export * from './lib/shared/constants';
|
|
25
|
+
export * from './lib/shared/services';
|
|
2
26
|
export * from './lib/nuxeo-development-framework.component';
|
|
3
27
|
export * from './lib/nuxeo-development-framework.module';
|
|
28
|
+
export * from './lib/nuxeo-development-framework.service';
|
|
29
|
+
export * from './lib/shared';
|
|
30
|
+
export * from './lib/shared/components';
|
|
31
|
+
export * from './lib/shared/models';
|
|
32
|
+
export * from './lib/components/avatar/avatar.module';
|
|
33
|
+
export * from './lib/components/avatar/avatar/avatar.component';
|
|
34
|
+
export * from './lib/components/card/card.component';
|
|
35
|
+
export * from './lib/components/card/card.module';
|
|
36
|
+
export * from './lib/components/comments/comments.module';
|
|
37
|
+
export * from './lib/components/comments/components/comments-dashlet/comments-dashlet.component';
|
|
38
|
+
export * from './lib/components/comments/components/edit-delete-modal/edit-delete-modal.component';
|
|
39
|
+
export * from './lib/components/confirm-caller/confirm-caller.dialog';
|
|
40
|
+
export * from './lib/components/confirm-caller/confirm-caller.module';
|
|
41
|
+
export * from './lib/components/confirm-caller/confirm-dialog/confirm-dialog.component';
|
|
42
|
+
export * from './lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component';
|
|
43
|
+
export * from './lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component';
|
|
44
|
+
export * from './lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component';
|
|
45
|
+
export * from './lib/components/correspondence-relation/components/versions/versions.component';
|
|
46
|
+
export * from './lib/components/correspondence-relation/correspondence-relation.module';
|
|
47
|
+
export * from './lib/components/correspondence-relation/services/correspondence-realation.service';
|
|
48
|
+
export * from './lib/components/correspondence-relation/services/viewer-files.service';
|
|
49
|
+
export * from './lib/components/create-entity/create-entity.module';
|
|
50
|
+
export * from './lib/components/create-entity/create-entity/create-entity.component';
|
|
51
|
+
export * from './lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component';
|
|
52
|
+
export * from './lib/components/cts-tags/cts-tags.module';
|
|
53
|
+
export * from './lib/components/cts-tags/services/tags-api.service';
|
|
54
|
+
export * from './lib/components/custom-toastr/custom-toastr.module';
|
|
55
|
+
export * from './lib/components/custom-toastr/services/custom-toastr.service';
|
|
56
|
+
export * from './lib/components/documents/components/attachments-list/attachments-list.component';
|
|
57
|
+
export * from './lib/components/documents/components/attachments-page-provider/attachments-page-provider.component';
|
|
58
|
+
export * from './lib/components/documents/components/document-list/documents-list.component';
|
|
59
|
+
export * from './lib/components/documents/components/document-scan/document-scan.component';
|
|
60
|
+
export * from './lib/components/documents/components/document-scan/document-scan.service';
|
|
61
|
+
export * from './lib/components/documents/components/document-upload/document-upload.component';
|
|
62
|
+
export * from './lib/components/documents/components/documents/documents.component';
|
|
63
|
+
export * from './lib/components/documents/constants/document-templates';
|
|
64
|
+
export * from './lib/components/documents/constants/documents';
|
|
65
|
+
export * from './lib/components/documents/documents.module';
|
|
66
|
+
export * from './lib/components/documents/services/document-templates.service';
|
|
67
|
+
export * from './lib/components/documents/services/documents.service';
|
|
68
|
+
export * from './lib/components/dynamic-chart/dynamic-chart.module';
|
|
69
|
+
export * from './lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component';
|
|
70
|
+
export * from './lib/components/dynamic-chart/services/chart-data.service';
|
|
71
|
+
export * from './lib/components/dynamic-filter/dynamic-filter.module';
|
|
72
|
+
export * from './lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component';
|
|
73
|
+
export * from './lib/components/dynamic-form/components/department-form/department-form.component';
|
|
74
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component';
|
|
75
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component';
|
|
76
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component';
|
|
77
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component';
|
|
78
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component';
|
|
79
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service';
|
|
80
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component';
|
|
81
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component';
|
|
82
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component';
|
|
83
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component';
|
|
84
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component';
|
|
85
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component';
|
|
86
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component';
|
|
87
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component';
|
|
88
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component';
|
|
89
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component';
|
|
90
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component';
|
|
91
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component';
|
|
92
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component';
|
|
93
|
+
export * from './lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component';
|
|
94
|
+
export * from './lib/components/dynamic-form/components/dynamic-form/dynamic-form.component';
|
|
95
|
+
export * from './lib/components/dynamic-form/components/dynamic-form/form-builder.service';
|
|
96
|
+
export * from './lib/components/dynamic-form/dynamic-form.module';
|
|
97
|
+
export * from './lib/components/dynamic-search/dynamic-search.module';
|
|
98
|
+
export * from './lib/components/dynamic-search/dynamic-search/dynamic-search.component';
|
|
99
|
+
export * from './lib/components/dynamic-view/boolean-viewer/boolean-viewer.component';
|
|
100
|
+
export * from './lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component';
|
|
101
|
+
export * from './lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component';
|
|
102
|
+
export * from './lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component';
|
|
103
|
+
export * from './lib/components/dynamic-view/data-viewer/data-viewer.component';
|
|
104
|
+
export * from './lib/components/dynamic-view/date-viewer/date-viewer.component';
|
|
105
|
+
export * from './lib/components/dynamic-view/department-viewer/department-viewer.component';
|
|
106
|
+
export * from './lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component';
|
|
107
|
+
export * from './lib/components/dynamic-view/dynamic-view.module';
|
|
108
|
+
export * from './lib/components/dynamic-view/list-viewer/list-viewer.component';
|
|
109
|
+
export * from './lib/components/file-manger/components/add-to-collection/add-to-collection.component';
|
|
110
|
+
export * from './lib/components/file-manger/components/clipboard/clipboard.component';
|
|
111
|
+
export * from './lib/components/file-manger/components/copy/copy.component';
|
|
112
|
+
export * from './lib/components/file-manger/components/create-directory/create-directory.component';
|
|
113
|
+
export * from './lib/components/file-manger/components/create-modal/create-modal.component';
|
|
114
|
+
export * from './lib/components/file-manger/components/creation-type/creation-type.component';
|
|
115
|
+
export * from './lib/components/file-manger/components/delete/delete.component';
|
|
116
|
+
export * from './lib/components/file-manger/components/folder-modal/folder-modal.component';
|
|
117
|
+
export * from './lib/components/file-manger/components/loan-request/loan-request.component';
|
|
118
|
+
export * from './lib/components/file-manger/components/move/move.component';
|
|
119
|
+
export * from './lib/components/file-manger/components/publish-dialog/publish-dialog.component';
|
|
120
|
+
export * from './lib/components/file-manger/components/rename/rename.component';
|
|
121
|
+
export * from './lib/components/file-manger/components/scan-modal/scan-modal.component';
|
|
122
|
+
export * from './lib/components/file-manger/components/share-dialog/share-dialog.component';
|
|
123
|
+
export * from './lib/components/file-manger/components/sidepanel/sidepanel.component';
|
|
124
|
+
export * from './lib/components/file-manger/components/template-modal/template-modal.component';
|
|
125
|
+
export * from './lib/components/file-manger/components/transfer-doc/transfer-doc.component';
|
|
126
|
+
export * from './lib/components/file-manger/components/update-modal/update-modal.component';
|
|
127
|
+
export * from './lib/components/file-manger/directives/file-grid-infinite-scroll.directive';
|
|
128
|
+
export * from './lib/components/file-manger/file-manager.abstract';
|
|
129
|
+
export * from './lib/components/file-manger/file-manger.module';
|
|
130
|
+
export * from './lib/components/file-manger/models';
|
|
131
|
+
export * from './lib/components/filter/filter.module';
|
|
132
|
+
export * from './lib/components/filter/filter/filter.component';
|
|
133
|
+
export * from './lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component';
|
|
134
|
+
export * from './lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component';
|
|
135
|
+
export * from './lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component';
|
|
136
|
+
export * from './lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module';
|
|
137
|
+
export * from './lib/components/hijri-gregorian-datepicker/services/date-formatter.service';
|
|
138
|
+
export * from './lib/components/hijri-gregorian-datepicker/services/date-helper.service';
|
|
139
|
+
export * from './lib/components/hijri-gregorian-datepicker/utils/DATE_FORMAT';
|
|
140
|
+
export * from './lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter';
|
|
141
|
+
export * from './lib/components/latest-activity/components/activity-line/activity-line.component';
|
|
142
|
+
export * from './lib/components/latest-activity/components/latest-activity/latest-activity.component';
|
|
143
|
+
export * from './lib/components/latest-activity/components/single-activity/single-activity.component';
|
|
144
|
+
export * from './lib/components/latest-activity/latest-activity.module';
|
|
145
|
+
export * from './lib/components/pagination/pagination.module';
|
|
146
|
+
export * from './lib/components/pagination/pagination/pagination.component';
|
|
147
|
+
export * from './lib/components/pdf-tron/directives/ndf-tron-extract-text.directive';
|
|
148
|
+
export * from './lib/components/pdf-tron/pdf-tron.module';
|
|
149
|
+
export * from './lib/components/pdf-tron/pdftron/pdftron.component';
|
|
150
|
+
export * from './lib/components/pdf-tron/pdftron/pdftron.service';
|
|
151
|
+
export * from './lib/components/pdf-tron/pdftron/silent-pdftron.service';
|
|
152
|
+
export * from './lib/components/select/select.module';
|
|
153
|
+
export * from './lib/components/select/select/select.component';
|
|
154
|
+
export * from './lib/components/users-card/users-card.component';
|
|
155
|
+
export * from './lib/components/users-card/users-card.module';
|
|
156
|
+
export * from './lib/components/viewer-log/components/viewer-log/viewer-log.component';
|
|
157
|
+
export * from './lib/components/viewer-log/viewer-log.module';
|
|
158
|
+
export * from './lib/components/vocabulary/interfaces/op-type.interface';
|
|
159
|
+
export * from './lib/components/vocabulary/services/vocabulary-api.service';
|
|
160
|
+
export * from './lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component';
|
|
161
|
+
export * from './lib/components/vocabulary/vocabulary.module';
|
|
162
|
+
export * from './lib/components/vocabulary/vocabulary/vocabulary.component';
|
|
163
|
+
export * from './lib/components/display-suitable-icon/display-suitable-icon.module';
|
|
164
|
+
export * from './lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component';
|
|
165
|
+
export * from './lib/components/display-suitable-icon/display-suitable-icon/icon.service';
|
|
166
|
+
export * from './lib/components/attachment-item/attachment-item.module';
|
|
167
|
+
export * from './lib/components/attachment-item/attachment-item/attachment-item.component';
|
|
168
|
+
export * from './lib/components/select-users-by-department/select-users-by-department.module';
|
|
169
|
+
export * from './lib/components/select-users-by-department/select-users-by-departments/department-management.service';
|
|
170
|
+
export * from './lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component';
|
|
171
|
+
export * from './lib/components/spell-checker-field/spell-checker-field.module';
|
|
172
|
+
export * from './lib/components/spell-checker-field/spell-checker-text-field/spell-checker-text-field.component';
|
|
173
|
+
export * from './lib/components/activities-log/activities-log.module';
|
|
174
|
+
export * from './lib/components/activities-log/activities-log/activities-log.component';
|
|
175
|
+
export * from './lib/components/dynamic-tabs/dynamic-tabs.module';
|
|
176
|
+
export * from './lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component';
|
|
177
|
+
export * from './lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component';
|
|
178
|
+
export * from './lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module';
|
|
179
|
+
export * from './lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component';
|
|
180
|
+
export * from './lib/components/permissions/permission.service';
|
|
181
|
+
export * from './lib/components/permissions/permissions-template/permissions-template.component';
|
|
182
|
+
export * from './lib/components/permissions/permissions.module';
|
|
183
|
+
export * from './lib/components/permissions/permissions/permissions.component';
|
|
184
|
+
export * from './lib/components/user/user.module';
|
|
185
|
+
export * from './lib/components/user/user/user.component';
|
|
186
|
+
export * from './lib/components/confirmation-dialog/confirmation-dialog.module';
|
|
187
|
+
export * from './lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component';
|
|
188
|
+
export * from './lib/components/attachment-modal/attachment-modal.module';
|
|
189
|
+
export * from './lib/components/attachment-modal/attachments/attachments.component';
|
|
190
|
+
export * from './lib/components/diagrams';
|
|
191
|
+
export * from './lib/components/notifications';
|
|
192
|
+
export * from './lib/components/toasts';
|
|
193
|
+
export * from './lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module';
|
|
194
|
+
export * from './lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component';
|
|
195
|
+
export * from './lib/shared/components/button/button.component';
|
|
196
|
+
export * from './lib/shared/components/item-list/item-list.component';
|
|
197
|
+
export * from './lib/shared/components/no-data/no-data.component';
|
|
198
|
+
export * from './lib/shared/components/read-more/read-more.component';
|
|
199
|
+
export * from './lib/shared/components/search-autocomplete/search-autocomplete.component';
|
|
200
|
+
export * from './lib/shared/components/spinner/spinner.component';
|
|
201
|
+
export * from './lib/shared/components/user-card/user-card.component';
|
|
202
|
+
export * from './lib/shared/libraryShared.module';
|
|
203
|
+
export * from './lib/pipes/file-size.pipe';
|
|
204
|
+
export * from './lib/pipes/hijri-date.pipe';
|
|
205
|
+
export * from './lib/pipes/localized-date.pipe';
|
|
206
|
+
export * from './lib/pipes/multi-value.pipe';
|
|
207
|
+
export * from './lib/pipes/pipes.module';
|
|
208
|
+
export * from './lib/pipes/secure-html.pipe';
|
|
209
|
+
export * from './lib/pipes/secure.pipe';
|
|
210
|
+
export * from './lib/pipes/time-ago.pipe';
|
|
211
|
+
export * from './lib/directive/app-has-role/app-has-role.directive';
|
|
212
|
+
export * from './lib/directive/clickOutSide/click-outside.directive';
|
|
213
|
+
export * from './lib/directive/directive.module';
|
|
214
|
+
export * from './lib/directive/drag-and-drop/drag-and-drop.directive';
|
|
215
|
+
export * from './lib/directive/permissions/permissions.directive';
|
|
216
|
+
export * from './lib/directive/rtl/set-dir-rtl.directive';
|
|
217
|
+
export * from './lib/directive/rtl/set-rtl.directive';
|
|
218
|
+
export * from './lib/directive/tooltip-if-overflow/tooltip-if-overflow';
|
|
219
|
+
export * from './lib/configuration/app-config.service';
|
|
220
|
+
export * from './lib/configuration/helpers/app-initializer';
|
|
221
|
+
export * from './lib/directive/permissions/evaluators.service';
|
|
222
|
+
export * from './lib/components/comments/services/comment-api.service';
|
|
223
|
+
export * from './lib/components/dynamic-form/utils';
|
|
224
|
+
export * from './lib/components/ndf-config-editor';
|
|
225
|
+
export * from './lib/components/ndf-datepicker';
|
|
226
|
+
export * from './lib/components/ndf-filters';
|
|
227
|
+
export * from './lib/components/ndf-panel';
|
|
228
|
+
export * from './lib/components/ndf-scanner';
|
|
229
|
+
export * from './lib/components/ndf-signer';
|
|
230
|
+
export * from './lib/components/ndf-tabs';
|
|
231
|
+
export * from './lib/components/ndf-uploader';
|
|
232
|
+
export * from './lib/components/no-data-found';
|
|
233
|
+
export * from './lib/components/reports/chart-panel';
|
|
234
|
+
export * from './lib/components/reports/charts';
|
|
235
|
+
export * from './lib/components/reports/ndf-reports';
|
|
236
|
+
export * from './lib/components/skeleton';
|
|
237
|
+
export * from './lib/components/tables';
|
|
238
|
+
export * from './lib/core/tokens';
|
|
239
|
+
export * from './lib/shared/components';
|
|
240
|
+
export * from './lib/shared/constants';
|
|
241
|
+
export * from './lib/shared/directives';
|
|
242
|
+
export * from './lib/shared/evaluator';
|