nuxeo-development-framework 4.1.4 → 4.1.6
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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +78 -82
- package/src/lib/assets/scss/ej2/material.css +1 -0
- package/src/lib/assets/scss/mixins.scss +38 -0
- package/src/lib/assets/scss/myApp.scss +487 -0
- package/src/lib/assets/scss/variables.scss +62 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.html +20 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.scss +15 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.spec.ts +25 -0
- package/src/lib/components/activities-log/activities-log/activities-log.component.ts +177 -0
- package/src/lib/components/activities-log/activities-log/activities-log.service.ts +30 -0
- package/src/lib/components/activities-log/activities-log.module.ts +23 -0
- package/src/lib/components/activity/activity/activity.component.html +28 -0
- package/src/lib/components/activity/activity/activity.component.scss +33 -0
- package/src/lib/components/activity/activity/activity.component.spec.ts +25 -0
- package/src/lib/components/activity/activity/activity.component.ts +23 -0
- package/src/lib/components/activity/activity.module.ts +24 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.html +36 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.scss +21 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.spec.ts +25 -0
- package/src/lib/components/attachment-item/attachment-item/attachment-item.component.ts +35 -0
- package/src/lib/components/attachment-item/attachment-item.module.ts +26 -0
- package/src/lib/components/attachment-modal/attachment-modal.module.ts +24 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.html +41 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.scss +5 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.spec.ts +25 -0
- package/src/lib/components/attachment-modal/attachments/attachments.component.ts +161 -0
- package/src/lib/components/avatar/avatar/avatar.component.html +13 -0
- package/src/lib/components/avatar/avatar/avatar.component.scss +32 -0
- package/src/lib/components/avatar/avatar/avatar.component.spec.ts +25 -0
- package/src/lib/components/avatar/avatar/avatar.component.ts +50 -0
- package/src/lib/components/avatar/avatar.module.ts +21 -0
- package/src/lib/components/card/card.component.html +35 -0
- package/src/lib/components/card/card.component.scss +81 -0
- package/src/lib/components/card/card.component.spec.ts +25 -0
- package/src/lib/components/card/card.component.ts +38 -0
- package/src/lib/components/card/card.module.ts +15 -0
- package/src/lib/components/comments/comments.module.ts +48 -0
- package/src/lib/components/comments/components/comment-item/comment-item.component.html +31 -0
- package/src/lib/components/comments/components/comment-item/comment-item.component.scss +41 -0
- package/src/lib/components/comments/components/comment-item/comment-item.component.ts +71 -0
- package/src/lib/components/comments/components/comments-dashlet/comments-dashlet.component.html +58 -0
- package/src/lib/components/comments/components/comments-dashlet/comments-dashlet.component.scss +69 -0
- package/src/lib/components/comments/components/comments-dashlet/comments-dashlet.component.ts +79 -0
- package/src/lib/components/comments/components/comments-list/comments-list.component.html +43 -0
- package/src/lib/components/comments/components/comments-list/comments-list.component.scss +103 -0
- package/src/lib/components/comments/components/comments-list/comments-list.component.ts +61 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.html +22 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.scss +48 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.spec.ts +25 -0
- package/src/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.ts +56 -0
- package/src/lib/components/comments/constants/comment.ts +25 -0
- package/src/lib/components/comments/services/comment-api.service.ts +85 -0
- package/src/lib/components/confirm-caller/confirm-caller.dialog.html +29 -0
- package/src/lib/components/confirm-caller/confirm-caller.dialog.scss +38 -0
- package/src/lib/components/confirm-caller/confirm-caller.dialog.ts +68 -0
- package/src/lib/components/confirm-caller/confirm-caller.module.ts +20 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.html +13 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.scss +0 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.spec.ts +25 -0
- package/src/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.ts +18 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.html +24 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.scss +0 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.spec.ts +25 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.ts +19 -0
- package/src/lib/components/confirmation-dialog/confirmation-dialog.module.ts +18 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.html +27 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.scss +34 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.ts +152 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.html +93 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.scss +124 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.ts +159 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.html +33 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.scss +42 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.ts +112 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.html +20 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.scss +9 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.spec.ts +25 -0
- package/src/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.ts +65 -0
- package/src/lib/components/correspondence-relation/components/versions/versions.component.html +89 -0
- package/src/lib/components/correspondence-relation/components/versions/versions.component.scss +49 -0
- package/src/lib/components/correspondence-relation/components/versions/versions.component.ts +92 -0
- package/src/lib/components/correspondence-relation/correspondence-relation.module.ts +59 -0
- package/src/lib/components/correspondence-relation/services/correspondence-realation.service.ts +196 -0
- package/src/lib/components/correspondence-relation/services/viewer-files.service.ts +54 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.html +18 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.scss +90 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.spec.ts +25 -0
- package/src/lib/components/create-entity/create-entity/create-entity.component.ts +57 -0
- package/src/lib/components/create-entity/create-entity.module.ts +22 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.html +60 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.scss +43 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.spec.ts +25 -0
- package/src/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.ts +166 -0
- package/src/lib/components/cts-tags/cts-tags.module.ts +35 -0
- package/src/lib/components/cts-tags/services/tags-api.service.ts +106 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.html +45 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.scss +103 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.spec.ts +25 -0
- package/src/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.ts +88 -0
- package/src/lib/components/custom-toastr/custom-toastr.module.ts +19 -0
- package/src/lib/components/custom-toastr/interfaces/toast-type.interface.ts +1 -0
- package/src/lib/components/custom-toastr/services/custom-toastr.service.ts +118 -0
- package/src/lib/components/diagrams/components/base-node.component.ts +41 -0
- package/src/lib/components/diagrams/components/circle-node/circle-node.component.html +31 -0
- package/src/lib/components/diagrams/components/circle-node/circle-node.component.scss +31 -0
- package/src/lib/components/diagrams/components/circle-node/circle-node.component.ts +9 -0
- package/src/lib/components/diagrams/components/connection-label.component.ts +87 -0
- package/src/lib/components/diagrams/components/content-node/content-node.component.html +32 -0
- package/src/lib/components/diagrams/components/content-node/content-node.component.ts +11 -0
- package/src/lib/components/diagrams/components/custom-connection.component.ts +61 -0
- package/src/lib/components/diagrams/components/custom-socket.component.ts +30 -0
- package/src/lib/components/diagrams/components/gateway-node/gateway-node.component.html +31 -0
- package/src/lib/components/diagrams/components/gateway-node/gateway-node.component.scss +26 -0
- package/src/lib/components/diagrams/components/gateway-node/gateway-node.component.ts +8 -0
- package/src/lib/components/diagrams/components/gateway-ports.component.ts +77 -0
- package/src/lib/components/diagrams/components/node-icon.component.ts +21 -0
- package/src/lib/components/diagrams/components/node-inputs.component.ts +35 -0
- package/src/lib/components/diagrams/components/node-outputs.component.ts +33 -0
- package/src/lib/components/diagrams/components/node-ports.component.ts +54 -0
- package/src/lib/components/diagrams/components/remove-button.component.ts +46 -0
- package/src/lib/components/diagrams/components/status-icon.component.ts +29 -0
- package/src/lib/components/diagrams/components/template-node/template-node.component.html +35 -0
- package/src/lib/components/diagrams/components/template-node/template-node.component.ts +33 -0
- package/src/lib/components/diagrams/components/zoom-control.component.ts +46 -0
- package/src/lib/components/diagrams/constants/defaults.ts +20 -0
- package/src/lib/components/diagrams/constants/direction.ts +6 -0
- package/src/lib/components/diagrams/constants/message-type.ts +4 -0
- package/src/lib/components/diagrams/constants/node-type.ts +7 -0
- package/src/lib/components/diagrams/constants/notify-events.ts +3 -0
- package/src/lib/components/diagrams/constants/sizes.ts +7 -0
- package/src/lib/components/diagrams/constants/status.ts +11 -0
- package/src/lib/components/diagrams/diagrams.module.ts +69 -0
- package/src/lib/components/diagrams/directive/diagram.directive.ts +96 -0
- package/src/lib/components/diagrams/editor/customize.ts +106 -0
- package/src/lib/components/diagrams/editor/editor.ts +152 -0
- package/src/lib/components/diagrams/editor/index.ts +5 -0
- package/src/lib/components/diagrams/editor/overrides/connection-path.transformers.ts +63 -0
- package/src/lib/components/diagrams/editor/path-plugin.ts +29 -0
- package/src/lib/components/diagrams/editor/socket-position-watcher.ts +14 -0
- package/src/lib/components/diagrams/models/base-node.model.ts +59 -0
- package/src/lib/components/diagrams/models/circle-node.model.ts +12 -0
- package/src/lib/components/diagrams/models/connection.model.ts +43 -0
- package/src/lib/components/diagrams/models/content-node.model.ts +12 -0
- package/src/lib/components/diagrams/models/gate-way.model.ts +13 -0
- package/src/lib/components/diagrams/models/ports.model.ts +19 -0
- package/src/lib/components/diagrams/models/socket.model.ts +12 -0
- package/src/lib/components/diagrams/models/template-node.model.ts +16 -0
- package/src/lib/components/diagrams/services/diagram-plugins.service.ts +29 -0
- package/src/lib/components/diagrams/services/diagram.service.ts +327 -0
- package/src/lib/components/diagrams/services/message.service.ts +22 -0
- package/src/lib/components/diagrams/services/workflow.service.ts +322 -0
- package/src/lib/components/diagrams/styles/node.scss +89 -0
- package/src/lib/components/diagrams/styles/ports.scss +169 -0
- package/src/lib/components/diagrams/styles/variables.scss +75 -0
- package/src/lib/components/diagrams/types/common.type.ts +19 -0
- package/src/lib/components/diagrams/types/connection-config.type.ts +13 -0
- package/src/lib/components/diagrams/types/connection-label.type.ts +4 -0
- package/src/lib/components/diagrams/types/customization.type.ts +20 -0
- package/src/lib/components/diagrams/types/diagram-config.type.ts +42 -0
- package/src/lib/components/diagrams/types/diagram-editor.type.ts +28 -0
- package/src/lib/components/diagrams/types/emitter-type.ts +5 -0
- package/src/lib/components/diagrams/types/layout.type.ts +16 -0
- package/src/lib/components/diagrams/types/node-content.ts +9 -0
- package/src/lib/components/diagrams/types/node-definition.ts +21 -0
- package/src/lib/components/diagrams/types/node-status.type.ts +3 -0
- package/src/lib/components/diagrams/types/node.type.ts +3 -0
- package/src/lib/components/diagrams/types/notify-event.type.ts +3 -0
- package/src/lib/components/diagrams/types/path.type.ts +18 -0
- package/src/lib/components/diagrams/types/ports-config.type.ts +12 -0
- package/src/lib/components/diagrams/types/schemes.type.ts +8 -0
- package/src/lib/components/diagrams/types/socket.type.ts +5 -0
- package/src/lib/components/diagrams/utilities/common.ts +42 -0
- package/src/lib/components/diagrams/utilities/random.ts +19 -0
- package/src/lib/components/diagrams/utilities/remove.util.ts +140 -0
- package/src/lib/components/diagrams/utilities/serialize.ts +28 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.html +37 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.scss +73 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.spec.ts +25 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.ts +34 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon/icon.service.ts +107 -0
- package/src/lib/components/display-suitable-icon/display-suitable-icon.module.ts +16 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.html +92 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.scss +65 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.spec.ts +25 -0
- package/src/lib/components/documents/components/attachments-list/attachments-list.component.ts +164 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.html +36 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.scss +44 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.spec.ts +25 -0
- package/src/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.ts +77 -0
- package/src/lib/components/documents/components/document-list/documents-list.component.html +34 -0
- package/src/lib/components/documents/components/document-list/documents-list.component.scss +41 -0
- package/src/lib/components/documents/components/document-list/documents-list.component.ts +245 -0
- package/src/lib/components/documents/components/document-scan/document-scan.component.html +176 -0
- package/src/lib/components/documents/components/document-scan/document-scan.component.scss +725 -0
- package/src/lib/components/documents/components/document-scan/document-scan.component.ts +1156 -0
- package/src/lib/components/documents/components/document-scan/document-scan.service.ts +26 -0
- package/src/lib/components/documents/components/document-upload/document-upload.component.html +19 -0
- package/src/lib/components/documents/components/document-upload/document-upload.component.scss +49 -0
- package/src/lib/components/documents/components/document-upload/document-upload.component.ts +184 -0
- package/src/lib/components/documents/components/documents/documents.component.html +16 -0
- package/src/lib/components/documents/components/documents/documents.component.scss +0 -0
- package/src/lib/components/documents/components/documents/documents.component.ts +49 -0
- package/src/lib/components/documents/constants/document-templates.ts +32 -0
- package/src/lib/components/documents/constants/documents.ts +85 -0
- package/src/lib/components/documents/documents.module.ts +69 -0
- package/src/lib/components/documents/services/document-templates.service.ts +155 -0
- package/src/lib/components/documents/services/documents.service.ts +354 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.html +26 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.scss +35 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.spec.ts +25 -0
- package/src/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.ts +571 -0
- package/src/lib/components/dynamic-chart/dynamic-chart.module.ts +22 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.html +4 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.scss +14 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.spec.ts +25 -0
- package/src/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.ts +178 -0
- package/src/lib/components/dynamic-chart/new-chart-box.ts +0 -0
- package/src/lib/components/dynamic-chart/services/chart-data.service.ts +613 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.html +108 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.scss +0 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.ts +168 -0
- package/src/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.ts +27 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.html +122 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.scss +103 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.spec.ts +25 -0
- package/src/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.ts +124 -0
- package/src/lib/components/dynamic-filter/dynamic-filter.module.ts +19 -0
- package/src/lib/components/dynamic-filter/services/dynamic-filter.service.ts +14 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.html +103 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.scss +38 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/department-form/department-form.component.ts +147 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.html +3 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.scss +51 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.ts +109 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/fields.adapter.ts +123 -0
- package/src/lib/components/dynamic-form/components/dynamic-form/form-builder.service.ts +120 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.html +14 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.scss +2 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.ts +34 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.html +15 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.scss +73 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.ts +161 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.html +10 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.scss +13 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.ts +72 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.html +67 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.scss +105 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.ts +221 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.ts +94 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/constants/department.ts +12 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.html +40 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.scss +11 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.ts +236 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.ts +327 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.ts +129 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.html +1 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.ts +92 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.html +29 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.scss +54 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.ts +152 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.ts +105 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.html +31 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.scss +5 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.ts +32 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.html +56 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.scss +24 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.ts +110 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.html +36 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.scss +100 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.ts +125 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.html +83 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.scss +136 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.ts +199 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.html +103 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.scss +177 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.ts +362 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.ts +75 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.html +92 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.scss +132 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.ts +194 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.html +13 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.scss +19 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.ts +85 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.html +27 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.scss +147 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.ts +213 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.html +69 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.scss +208 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.ts +343 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.ts +84 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.ts +372 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dynamic-form-treeview-select.component.html +136 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-treeview-select/dynamic-form-treeview-select.component.scss +257 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.html +28 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.scss +32 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.ts +45 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.html +35 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.spec.ts +25 -0
- package/src/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.ts +175 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.ts +780 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.html +2 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.ts +33 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.ts +22 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.html +1 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.ts +32 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.ts +20 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.css +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.html +17 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.ts +65 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.ts +34 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.html +10 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.scss +0 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.ts +28 -0
- package/src/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.ts +34 -0
- package/src/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.ts +10 -0
- package/src/lib/components/dynamic-form/dynamic-form.module.scss +13 -0
- package/src/lib/components/dynamic-form/dynamic-form.module.ts +197 -0
- package/src/lib/components/dynamic-form/interfaces/aspect-oriented-config.interface.ts +3 -0
- package/src/lib/components/dynamic-form/interfaces/content-metadata-config.interface.ts +16 -0
- package/src/lib/components/dynamic-form/interfaces/content-metadata.interfaces.ts +26 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-arrayitem-properties.interface.ts +5 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-group.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.ts +16 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.ts +4 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.ts +12 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.ts +11 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.ts +13 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.ts +6 -0
- package/src/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.ts +9 -0
- package/src/lib/components/dynamic-form/interfaces/indifferent-config.interface.ts +1 -0
- package/src/lib/components/dynamic-form/interfaces/layout-oriented-config.interface.ts +17 -0
- package/src/lib/components/dynamic-form/interfaces/organised-property-group.interface.ts +7 -0
- package/src/lib/components/dynamic-form/interfaces/preset-config.interface.ts +8 -0
- package/src/lib/components/dynamic-form/interfaces/property-group.interface.ts +14 -0
- package/src/lib/components/dynamic-form/interfaces/property.interface.ts +12 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-arrayitem.model.ts +26 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-baseitem.model.ts +96 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-boolitem.model.ts +27 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-dateitem.model.ts +39 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.ts +18 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-keyvaluepairs.model.ts +19 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-mapitem.model.ts +17 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-selectitem.model.ts +30 -0
- package/src/lib/components/dynamic-form/models/dynamic-form-textitem.model.ts +47 -0
- package/src/lib/components/dynamic-form/services/card-item-types.service.ts +55 -0
- package/src/lib/components/dynamic-form/services/dynamic-component-mapper.service.ts +86 -0
- package/src/lib/components/dynamic-form/services/dynamic-form-update.service.ts +105 -0
- package/src/lib/components/dynamic-form/services/property-groups-translator.service.ts +159 -0
- package/src/lib/components/dynamic-form/services/vocabulary-api.service.ts +32 -0
- package/src/lib/components/dynamic-form/validators/date-validator.ts +18 -0
- package/src/lib/components/dynamic-form/validators/length-validator.ts +18 -0
- package/src/lib/components/dynamic-form/validators/regex-validator.ts +16 -0
- package/src/lib/components/dynamic-form/validators/required-validator.ts +7 -0
- package/src/lib/components/dynamic-form/validators/value-validator.ts +18 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.html +219 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.scss +195 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.spec.ts +25 -0
- package/src/lib/components/dynamic-search/dynamic-search/dynamic-search.component.ts +331 -0
- package/src/lib/components/dynamic-search/dynamic-search.module.ts +33 -0
- package/src/lib/components/dynamic-table/constants/documents.ts +72 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.html +49 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.scss +33 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.spec.ts +25 -0
- package/src/lib/components/dynamic-table/dynamic-table/dynamic-table.component.ts +244 -0
- package/src/lib/components/dynamic-table/dynamic-table.module.ts +27 -0
- package/src/lib/components/dynamic-table/services/dynamic-table.service.spec.ts +16 -0
- package/src/lib/components/dynamic-table/services/dynamic-table.service.ts +10 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.html +15 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.scss +63 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.spec.ts +25 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.ts +25 -0
- package/src/lib/components/dynamic-tabs/dynamic-tabs.module.ts +20 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.html +4 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.ts +19 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.html +3 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.ts +55 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.html +3 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.ts +65 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.html +14 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.ts +28 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.html +15 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/data-viewer/data-viewer.component.ts +20 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.html +5 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/date-viewer/date-viewer.component.ts +38 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.html +14 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/department-viewer/department-viewer.component.ts +84 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.html +4 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.scss +0 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.ts +54 -0
- package/src/lib/components/dynamic-view/dynamic-view.module.ts +45 -0
- package/src/lib/components/dynamic-view/dynamic-viewe.service.ts +58 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.html +24 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.scss +55 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.spec.ts +25 -0
- package/src/lib/components/dynamic-view/list-viewer/list-viewer.component.ts +27 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.html +48 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.scss +0 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/add-to-collection/add-to-collection.component.ts +181 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.html +88 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.scss +17 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/clipboard/clipboard.component.ts +279 -0
- package/src/lib/components/file-manger/components/copy/copy.component.html +31 -0
- package/src/lib/components/file-manger/components/copy/copy.component.scss +0 -0
- package/src/lib/components/file-manger/components/copy/copy.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/copy/copy.component.ts +172 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.html +65 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.scss +0 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/create-directory/create-directory.component.ts +124 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.html +197 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.scss +34 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/create-modal/create-modal.component.ts +629 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.html +39 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.scss +0 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/creation-type/creation-type.component.ts +19 -0
- package/src/lib/components/file-manger/components/delete/delete.component.html +25 -0
- package/src/lib/components/file-manger/components/delete/delete.component.scss +0 -0
- package/src/lib/components/file-manger/components/delete/delete.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/delete/delete.component.ts +118 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.html +70 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.scss +17 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/folder-modal/folder-modal.component.ts +158 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.html +31 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.scss +0 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/loan-request/loan-request.component.ts +72 -0
- package/src/lib/components/file-manger/components/move/move.component.html +56 -0
- package/src/lib/components/file-manger/components/move/move.component.scss +0 -0
- package/src/lib/components/file-manger/components/move/move.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/move/move.component.ts +159 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.html +85 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.scss +0 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/publish-dialog/publish-dialog.component.ts +164 -0
- package/src/lib/components/file-manger/components/rename/rename.component.html +33 -0
- package/src/lib/components/file-manger/components/rename/rename.component.scss +0 -0
- package/src/lib/components/file-manger/components/rename/rename.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/rename/rename.component.ts +127 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.html +130 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.scss +9 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/scan-modal/scan-modal.component.ts +401 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.html +209 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.scss +38 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/share-dialog/share-dialog.component.ts +371 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.html +350 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.scss +0 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/sidepanel/sidepanel.component.ts +247 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.html +213 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.scss +3 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/template-modal/template-modal.component.ts +55 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.html +26 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.scss +0 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/transfer-doc/transfer-doc.component.ts +74 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.html +103 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.scss +7 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.spec.ts +25 -0
- package/src/lib/components/file-manger/components/update-modal/update-modal.component.ts +371 -0
- package/src/lib/components/file-manger/directives/file-grid-infinite-scroll.directive.ts +72 -0
- package/src/lib/components/file-manger/file-manager.abstract.ts +1625 -0
- package/src/lib/components/file-manger/file-manger.module.ts +166 -0
- package/src/lib/components/file-manger/helpers/btn-loader.helper.ts +40 -0
- package/src/lib/components/file-manger/helpers/index.ts +1 -0
- package/src/lib/components/file-manger/models/file-manager-config.model.ts +16 -0
- package/src/lib/components/file-manger/models/index.ts +3 -0
- package/src/lib/components/file-manger/models/pagination-payload.mode.ts +4 -0
- package/src/lib/components/file-manger/models/pagination-response.model.ts +30 -0
- package/src/lib/components/filter/filter/filter.component.html +79 -0
- package/src/lib/components/filter/filter/filter.component.md +68 -0
- package/src/lib/components/filter/filter/filter.component.scss +50 -0
- package/src/lib/components/filter/filter/filter.component.spec.ts +25 -0
- package/src/lib/components/filter/filter/filter.component.ts +89 -0
- package/src/lib/components/filter/filter.module.ts +27 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-date-picker.component.scss +67 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.html +47 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.ts +99 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-date-picker.component.scss +67 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.html +47 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.ts +102 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.html +29 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.ts +152 -0
- package/src/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.ts +23 -0
- package/src/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.ts +35 -0
- package/src/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.ts +94 -0
- package/src/lib/components/hijri-gregorian-datepicker/services/date-helper.service.ts +28 -0
- package/src/lib/components/hijri-gregorian-datepicker/services/ngx-hijri-gregorian-datepicker.service.ts +9 -0
- package/src/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.ts +35 -0
- package/src/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.ts +26 -0
- package/src/lib/components/hijri-gregorian-datepicker/utils/consts.ts +4 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.html +34 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.scss +13 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.spec.ts +25 -0
- package/src/lib/components/latest-activity/components/activity-line/activity-line.component.ts +79 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.html +36 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.scss +12 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.spec.ts +25 -0
- package/src/lib/components/latest-activity/components/latest-activity/latest-activity.component.ts +84 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.html +42 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.scss +160 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.spec.ts +25 -0
- package/src/lib/components/latest-activity/components/single-activity/single-activity.component.ts +27 -0
- package/src/lib/components/latest-activity/constants/activitylog.ts +80 -0
- package/src/lib/components/latest-activity/latest-activity.module.ts +33 -0
- package/src/lib/components/latest-activity/services/activity-log.service.ts +41 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.html +36 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.scss +32 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.spec.ts +25 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.ts +45 -0
- package/src/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.ts +18 -0
- package/src/lib/components/notifications/components/base-list-notfications.component.ts +204 -0
- package/src/lib/components/notifications/components/base-notifications.component.ts +21 -0
- package/src/lib/components/notifications/components/notification-item/get-icon.pipe.ts +40 -0
- package/src/lib/components/notifications/components/notification-item/notification-item.component.html +65 -0
- package/src/lib/components/notifications/components/notification-item/notification-item.component.scss +87 -0
- package/src/lib/components/notifications/components/notification-item/notification-item.component.ts +49 -0
- package/src/lib/components/notifications/components/notification-source-select/notification-source-select.component.html +38 -0
- package/src/lib/components/notifications/components/notification-source-select/notification-source-select.component.scss +24 -0
- package/src/lib/components/notifications/components/notification-source-select/notification-source-select.component.ts +35 -0
- package/src/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.html +5 -0
- package/src/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.scss +10 -0
- package/src/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.ts +12 -0
- package/src/lib/components/notifications/components/notifications-button/notifications-button.component.html +64 -0
- package/src/lib/components/notifications/components/notifications-button/notifications-button.component.scss +41 -0
- package/src/lib/components/notifications/components/notifications-button/notifications-button.component.ts +143 -0
- package/src/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.html +38 -0
- package/src/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.scss +24 -0
- package/src/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.ts +69 -0
- package/src/lib/components/notifications/components/notifications-list/notifications-list.component.html +94 -0
- package/src/lib/components/notifications/components/notifications-list/notifications-list.component.scss +38 -0
- package/src/lib/components/notifications/components/notifications-list/notifications-list.component.ts +76 -0
- package/src/lib/components/notifications/components/notifications-list/options.ts +25 -0
- package/src/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.html +40 -0
- package/src/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.scss +24 -0
- package/src/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.ts +31 -0
- package/src/lib/components/notifications/components/notifications-settings/check-if-subscribed.pipe.ts +39 -0
- package/src/lib/components/notifications/components/notifications-settings/notifications-settings.adapter.ts +41 -0
- package/src/lib/components/notifications/components/notifications-settings/notifications-settings.component.html +42 -0
- package/src/lib/components/notifications/components/notifications-settings/notifications-settings.component.scss +75 -0
- package/src/lib/components/notifications/components/notifications-settings/notifications-settings.component.ts +222 -0
- package/src/lib/components/notifications/components/notifications-sidebar/notifications-sidebar-content.ts +17 -0
- package/src/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.html +21 -0
- package/src/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.scss +40 -0
- package/src/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.ts +179 -0
- package/src/lib/components/notifications/constants/date.ts +7 -0
- package/src/lib/components/notifications/constants/pagination.ts +4 -0
- package/src/lib/components/notifications/constants/panel.ts +4 -0
- package/src/lib/components/notifications/constants/status.ts +10 -0
- package/src/lib/components/notifications/containers/index.ts +2 -0
- package/src/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.html +133 -0
- package/src/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.scss +56 -0
- package/src/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.ts +116 -0
- package/src/lib/components/notifications/containers/notifications-list-container/options.ts +19 -0
- package/src/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.html +45 -0
- package/src/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.scss +56 -0
- package/src/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.ts +74 -0
- package/src/lib/components/notifications/directives/button.directive.ts +19 -0
- package/src/lib/components/notifications/directives/notification.directive.ts +18 -0
- package/src/lib/components/notifications/models/common.ts +69 -0
- package/src/lib/components/notifications/models/notification-definition.model.ts +19 -0
- package/src/lib/components/notifications/models/notification-message.mode.ts +13 -0
- package/src/lib/components/notifications/models/notification-options.ts +8 -0
- package/src/lib/components/notifications/models/notification-setting.presenter.ts +26 -0
- package/src/lib/components/notifications/models/notification-subscription.model.ts +15 -0
- package/src/lib/components/notifications/models/notification.model.ts +18 -0
- package/src/lib/components/notifications/models/notifications-list-options.ts +40 -0
- package/src/lib/components/notifications/models/paging-response.model.ts +13 -0
- package/src/lib/components/notifications/models/params.model.ts +6 -0
- package/src/lib/components/notifications/models/vocabularies.ts +13 -0
- package/src/lib/components/notifications/notifications.module.ts +98 -0
- package/src/lib/components/notifications/services/listener.service.ts +13 -0
- package/src/lib/components/notifications/services/notifications.service.ts +267 -0
- package/src/lib/components/notifications/services/params.service.ts +44 -0
- package/src/lib/components/notifications/services/response.service.ts +69 -0
- package/src/lib/components/notifications/services/socket.service.ts +77 -0
- package/src/lib/components/notifications/utilities/index.ts +2 -0
- package/src/lib/components/notifications/utilities/response.adapter.ts +16 -0
- package/src/lib/components/pagination/pagination/pagination.component.html +33 -0
- package/src/lib/components/pagination/pagination/pagination.component.scss +46 -0
- package/src/lib/components/pagination/pagination/pagination.component.spec.ts +25 -0
- package/src/lib/components/pagination/pagination/pagination.component.ts +132 -0
- package/src/lib/components/pagination/pagination.module.ts +21 -0
- package/src/lib/components/pdf-tron/pdf-tron.module.ts +16 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.html +1 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.scss +0 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.spec.ts +25 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.component.ts +801 -0
- package/src/lib/components/pdf-tron/pdftron/pdftron.service.ts +239 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.html +114 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.scss +159 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.spec.ts +25 -0
- package/src/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.ts +273 -0
- package/src/lib/components/permissions/permission.service.ts +151 -0
- package/src/lib/components/permissions/permissions/permissions.component.html +129 -0
- package/src/lib/components/permissions/permissions/permissions.component.scss +0 -0
- package/src/lib/components/permissions/permissions/permissions.component.spec.ts +25 -0
- package/src/lib/components/permissions/permissions/permissions.component.ts +230 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.html +54 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.scss +7 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.spec.ts +25 -0
- package/src/lib/components/permissions/permissions-template/permissions-template.component.ts +104 -0
- package/src/lib/components/permissions/permissions.module.ts +47 -0
- package/src/lib/components/select/select/select.component.html +64 -0
- package/src/lib/components/select/select/select.component.scss +144 -0
- package/src/lib/components/select/select/select.component.spec.ts +25 -0
- package/src/lib/components/select/select/select.component.ts +116 -0
- package/src/lib/components/select/select.module.ts +23 -0
- package/src/lib/components/select-users-by-department/select-users-by-department.module.ts +27 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/department-management.service.ts +27 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.html +88 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.scss +15 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.spec.ts +25 -0
- package/src/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.ts +105 -0
- package/src/lib/components/table/dynamic-column/dynamic-column.component.ts +79 -0
- package/src/lib/components/table/table/table.component.html +414 -0
- package/src/lib/components/table/table/table.component.scss +648 -0
- package/src/lib/components/table/table/table.component.spec.ts +25 -0
- package/src/lib/components/table/table/table.component.ts +204 -0
- package/src/lib/components/table/table.module.ts +37 -0
- package/src/lib/components/toasts/components/notification-toast/notification-toast.component.html +66 -0
- package/src/lib/components/toasts/components/notification-toast/notification-toast.component.scss +62 -0
- package/src/lib/components/toasts/components/notification-toast/notification-toast.component.ts +50 -0
- package/src/lib/components/toasts/toasts.module.ts +15 -0
- package/src/lib/components/user/user/user.component.html +15 -0
- package/src/lib/components/user/user/user.component.scss +0 -0
- package/src/lib/components/user/user/user.component.spec.ts +25 -0
- package/src/lib/components/user/user/user.component.ts +19 -0
- package/src/lib/components/user/user.module.ts +18 -0
- package/src/lib/components/users-card/users-card.component.html +20 -0
- package/src/lib/components/users-card/users-card.component.scss +16 -0
- package/src/lib/components/users-card/users-card.component.ts +30 -0
- package/src/lib/components/users-card/users-card.module.ts +19 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.html +11 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.scss +12 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.spec.ts +25 -0
- package/src/lib/components/viewer-log/components/viewer-log/viewer-log.component.ts +28 -0
- package/src/lib/components/viewer-log/viewer-log.module.ts +12 -0
- package/src/lib/components/vocabulary/interfaces/op-type.interface.ts +4 -0
- package/src/lib/components/vocabulary/services/vocabulary-api.service.ts +66 -0
- package/src/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.html +23 -0
- package/src/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.scss +10 -0
- package/src/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.ts +220 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.html +12 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.scss +0 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.spec.ts +25 -0
- package/src/lib/components/vocabulary/vocabulary/vocabulary.component.ts +80 -0
- package/src/lib/components/vocabulary/vocabulary.module.ts +25 -0
- package/src/lib/configuration/app-config.service.ts +26 -0
- package/src/lib/configuration/configuration.module.ts +12 -0
- package/src/lib/configuration/helpers/app-initializer.ts +5 -0
- package/src/lib/core/adapters/adapter.service.ts +46 -0
- package/src/lib/core/core.module.ts +76 -0
- package/src/lib/core/enums/language.enum.ts +4 -0
- package/src/lib/core/env/env-manager.ts +55 -0
- package/src/lib/core/env/index.ts +1 -0
- package/src/lib/core/models/api-response.model.ts +25 -0
- package/src/lib/core/models/automation-response.model.ts +27 -0
- package/src/lib/core/models/base-response.models.ts +14 -0
- package/src/lib/core/models/component.model.ts +11 -0
- package/src/lib/core/services/callApi/call-api.service.ts +31 -0
- package/src/lib/core/services/extension/action.extensions.ts +35 -0
- package/src/lib/core/services/extension/component-register.service.ts +25 -0
- package/src/lib/core/services/extension/extenion-utils.ts +142 -0
- package/src/lib/core/services/extension/extension-element.ts +6 -0
- package/src/lib/core/services/extension/extension-loader.service.ts +160 -0
- package/src/lib/core/services/extension/extension.service.ts +137 -0
- package/src/lib/core/services/initialization/initialization.service.ts +137 -0
- package/src/lib/core/services/localStorag/local-storag.service.ts +125 -0
- package/src/lib/core/services/nuxeo/new-nuxeo-overide.ts +157 -0
- package/src/lib/core/services/nuxeo/nuxeo-override.ts +86 -0
- package/src/lib/core/services/nuxeo/nuxeo.service.ts +160 -0
- package/src/lib/core/services/roles/roles.service.spec.ts +16 -0
- package/src/lib/core/services/roles/roles.service.ts +135 -0
- package/src/lib/core/services/translation/translate-loader.service.ts +173 -0
- package/src/lib/core/services/translation/translation.service.ts +221 -0
- package/src/lib/core/services/user/user-preferences.service.ts +192 -0
- package/src/lib/core/utilities/moment-date-adapter.ts +203 -0
- package/src/lib/core/utilities/moment-dates-format.ts +18 -0
- package/src/lib/core/utilities/utility.service.ts +83 -0
- package/src/lib/directive/app-has-role/app-has-role.directive.ts +62 -0
- package/src/lib/directive/clickOutSide/click-outside.directive.ts +20 -0
- package/src/lib/directive/directive.module.ts +36 -0
- package/src/lib/directive/drag-and-drop/drag-and-drop.directive.ts +37 -0
- package/src/lib/directive/permissions/evaluators.service.ts +148 -0
- package/src/lib/directive/permissions/permissions.directive.ts +74 -0
- package/src/lib/directive/rtl/set-dir-rtl.directive.ts +25 -0
- package/src/lib/directive/rtl/set-rtl.directive.ts +26 -0
- package/src/lib/nuxeo-development-framework.component.ts +20 -0
- package/src/lib/nuxeo-development-framework.module.ts +18 -0
- package/src/lib/nuxeo-development-framework.service.ts +9 -0
- package/src/lib/pipes/file-size.pipe.ts +61 -0
- package/src/lib/pipes/hijri-date.pipe.ts +40 -0
- package/src/lib/pipes/localized-date.pipe.ts +80 -0
- package/src/lib/pipes/multi-value.pipe.ts +39 -0
- package/src/lib/pipes/pipes.module.ts +20 -0
- package/src/lib/pipes/secure-html.pipe.ts +27 -0
- package/src/lib/pipes/secure.pipe.ts +37 -0
- package/src/lib/pipes/time-ago.pipe.ts +68 -0
- package/src/lib/shared/components/base/base-column.component.ts +12 -0
- package/src/lib/shared/components/base/base-dialog.component.ts +24 -0
- package/src/lib/shared/components/base/base-selector.component.ts +116 -0
- package/src/lib/shared/components/base/base.component.ts +69 -0
- package/src/lib/shared/components/base/destroy.subject.ts +11 -0
- package/src/lib/shared/components/button/button.component.html +13 -0
- package/src/lib/shared/components/button/button.component.scss +102 -0
- package/src/lib/shared/components/button/button.component.spec.ts +25 -0
- package/src/lib/shared/components/button/button.component.ts +89 -0
- package/src/lib/shared/components/item-list/item-list.component.html +38 -0
- package/src/lib/shared/components/item-list/item-list.component.scss +65 -0
- package/src/lib/shared/components/item-list/item-list.component.spec.ts +25 -0
- package/src/lib/shared/components/item-list/item-list.component.ts +69 -0
- package/src/lib/shared/components/no-data/no-data.component.html +6 -0
- package/src/lib/shared/components/no-data/no-data.component.scss +16 -0
- package/src/lib/shared/components/no-data/no-data.component.spec.ts +25 -0
- package/src/lib/shared/components/no-data/no-data.component.ts +28 -0
- package/src/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.html +65 -0
- package/src/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.scss +3 -0
- package/src/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.ts +18 -0
- package/src/lib/shared/components/nuxeo-dialog/models/confirm-options.model.ts +51 -0
- package/src/lib/shared/components/nuxeo-dialog/models/dialog-option.model.ts +16 -0
- package/src/lib/shared/components/nuxeo-dialog/nuxeo-dialog.module.ts +23 -0
- package/src/lib/shared/components/nuxeo-dialog/nuxeo.dialog.html +63 -0
- package/src/lib/shared/components/nuxeo-dialog/nuxeo.dialog.scss +17 -0
- package/src/lib/shared/components/nuxeo-dialog/nuxeo.dialog.ts +75 -0
- package/src/lib/shared/components/nuxeo-dialog/services/nuxeo-dialog.service.ts +55 -0
- package/src/lib/shared/components/read-more/read-more.component.ts +86 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.html +24 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.scss +50 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.spec.ts +25 -0
- package/src/lib/shared/components/search-autocomplete/search-autocomplete.component.ts +153 -0
- package/src/lib/shared/components/spinner/spinner.component.html +10 -0
- package/src/lib/shared/components/spinner/spinner.component.scss +11 -0
- package/src/lib/shared/components/spinner/spinner.component.spec.ts +25 -0
- package/src/lib/shared/components/spinner/spinner.component.ts +25 -0
- package/src/lib/shared/components/user-card/user-card.component.html +21 -0
- package/src/lib/shared/components/user-card/user-card.component.scss +42 -0
- package/src/lib/shared/components/user-card/user-card.component.spec.ts +25 -0
- package/src/lib/shared/components/user-card/user-card.component.ts +42 -0
- package/src/lib/shared/libraryShared.module.ts +47 -0
- package/src/lib/shared/models/mapper/nuxeo-mapper.ts +40 -0
- package/src/lib/shared/models/nuxeo-response.model.ts +61 -0
- package/src/lib/shared/models/task.model.ts +76 -0
- package/src/lib/shared/services/base/base.service.ts +248 -0
- package/src/lib/shared/services/base/cache-base.service.ts +384 -0
- package/src/lib/shared/services/base/config/default-ttl-config.ts +9 -0
- package/src/lib/shared/services/base/constants/default-cache-options.ts +30 -0
- package/src/lib/shared/services/base/http-base.service.ts +171 -0
- package/src/lib/shared/services/base/models/cache-info-model.ts +62 -0
- package/src/lib/shared/services/base/models/http-options.model.ts +7 -0
- package/src/lib/shared/services/base/models/operation-options.model.ts +8 -0
- package/src/lib/shared/services/base/models/query-options.model.ts +5 -0
- package/src/lib/shared/services/base/models/request-options.model.ts +7 -0
- package/src/lib/shared-services/dialog-mangment.service.ts +62 -0
- package/src/lib/shared-services/dynamic-form.service.ts +252 -0
- package/src/lib/shared-services/file-manager.adapter.ts +69 -0
- package/src/lib/shared-services/file-manager.service.ts +1529 -0
- package/src/lib/shared-services/global-admin.service.spec.ts +16 -0
- package/src/lib/shared-services/global-admin.service.ts +16 -0
- package/src/lib/shared-services/global-pdftron.service.ts +51 -0
- package/src/lib/shared-services/mainfolder.service.ts +227 -0
- package/src/lib/shared-services/publishing-document.service.ts +242 -0
- package/src/lib/shared-services/recently-viewed.service.ts +55 -0
- package/src/lib/shared-services/shared-docs.service.ts +173 -0
- package/src/lib/shared-services/shared-services.module.ts +12 -0
- package/src/lib/shared-services/upload-file.service.ts +26 -0
- package/src/lib/shared-services/upload-managment.service.ts +148 -0
- package/src/lib/shared-services/user.service.ts +59 -0
- package/src/public-api.ts +261 -0
- package/src/test.ts +26 -0
- package/tsconfig.doc.json +4 -0
- package/tsconfig.lib.json +21 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/tslint.json +17 -0
- package/bundles/nuxeo-development-framework.umd.js +0 -34844
- package/bundles/nuxeo-development-framework.umd.js.map +0 -1
- package/esm2015/lib/components/activities-log/activities-log/activities-log.component.js +0 -188
- package/esm2015/lib/components/activities-log/activities-log/activities-log.service.js +0 -35
- package/esm2015/lib/components/activities-log/activities-log.module.js +0 -41
- package/esm2015/lib/components/activity/activity/activity.component.js +0 -28
- package/esm2015/lib/components/activity/activity.module.js +0 -37
- package/esm2015/lib/components/attachment-item/attachment-item/attachment-item.component.js +0 -54
- package/esm2015/lib/components/attachment-item/attachment-item.module.js +0 -44
- package/esm2015/lib/components/attachment-modal/attachment-modal.module.js +0 -40
- package/esm2015/lib/components/attachment-modal/attachments/attachments.component.js +0 -157
- package/esm2015/lib/components/avatar/avatar/avatar.component.js +0 -55
- package/esm2015/lib/components/avatar/avatar.module.js +0 -32
- package/esm2015/lib/components/card/card.component.js +0 -48
- package/esm2015/lib/components/card/card.module.js +0 -23
- package/esm2015/lib/components/comments/comments.module.js +0 -82
- package/esm2015/lib/components/comments/components/comment-item/comment-item.component.js +0 -87
- package/esm2015/lib/components/comments/components/comments-dashlet/comments-dashlet.component.js +0 -81
- package/esm2015/lib/components/comments/components/comments-list/comments-list.component.js +0 -74
- package/esm2015/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.js +0 -63
- package/esm2015/lib/components/comments/constants/comment.js +0 -25
- package/esm2015/lib/components/comments/services/comment-api.service.js +0 -71
- package/esm2015/lib/components/confirm-caller/confirm-caller.dialog.js +0 -77
- package/esm2015/lib/components/confirm-caller/confirm-caller.module.js +0 -28
- package/esm2015/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.js +0 -29
- package/esm2015/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.js +0 -30
- package/esm2015/lib/components/confirmation-dialog/confirmation-dialog.module.js +0 -30
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.js +0 -148
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.js +0 -152
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.js +0 -111
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.js +0 -69
- package/esm2015/lib/components/correspondence-relation/components/versions/versions.component.js +0 -98
- package/esm2015/lib/components/correspondence-relation/correspondence-relation.module.js +0 -111
- package/esm2015/lib/components/correspondence-relation/services/correspondence-realation.service.js +0 -157
- package/esm2015/lib/components/correspondence-relation/services/viewer-files.service.js +0 -54
- package/esm2015/lib/components/create-entity/create-entity/create-entity.component.js +0 -69
- package/esm2015/lib/components/create-entity/create-entity.module.js +0 -36
- package/esm2015/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.js +0 -180
- package/esm2015/lib/components/cts-tags/cts-tags.module.js +0 -65
- package/esm2015/lib/components/cts-tags/services/tags-api.service.js +0 -86
- package/esm2015/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.js +0 -67
- package/esm2015/lib/components/custom-toastr/custom-toastr.module.js +0 -36
- package/esm2015/lib/components/custom-toastr/interfaces/toast-type.interface.js +0 -2
- package/esm2015/lib/components/custom-toastr/services/custom-toastr.service.js +0 -63
- package/esm2015/lib/components/diagrams/components/base-node.component.js +0 -41
- package/esm2015/lib/components/diagrams/components/circle-node/circle-node.component.js +0 -19
- package/esm2015/lib/components/diagrams/components/connection-label.component.js +0 -92
- package/esm2015/lib/components/diagrams/components/content-node/content-node.component.js +0 -20
- package/esm2015/lib/components/diagrams/components/custom-connection.component.js +0 -84
- package/esm2015/lib/components/diagrams/components/custom-socket.component.js +0 -37
- package/esm2015/lib/components/diagrams/components/gateway-node/gateway-node.component.js +0 -18
- package/esm2015/lib/components/diagrams/components/gateway-ports.component.js +0 -118
- package/esm2015/lib/components/diagrams/components/index.js +0 -16
- package/esm2015/lib/components/diagrams/components/node-icon.component.js +0 -35
- package/esm2015/lib/components/diagrams/components/node-inputs.component.js +0 -61
- package/esm2015/lib/components/diagrams/components/node-outputs.component.js +0 -57
- package/esm2015/lib/components/diagrams/components/node-ports.component.js +0 -98
- package/esm2015/lib/components/diagrams/components/remove-button.component.js +0 -68
- package/esm2015/lib/components/diagrams/components/status-icon.component.js +0 -37
- package/esm2015/lib/components/diagrams/components/template-node/template-node.component.js +0 -40
- package/esm2015/lib/components/diagrams/components/zoom-control.component.js +0 -62
- package/esm2015/lib/components/diagrams/constants/defaults.js +0 -19
- package/esm2015/lib/components/diagrams/constants/direction.js +0 -7
- package/esm2015/lib/components/diagrams/constants/index.js +0 -8
- package/esm2015/lib/components/diagrams/constants/message-type.js +0 -5
- package/esm2015/lib/components/diagrams/constants/node-type.js +0 -8
- package/esm2015/lib/components/diagrams/constants/notify-events.js +0 -4
- package/esm2015/lib/components/diagrams/constants/sizes.js +0 -8
- package/esm2015/lib/components/diagrams/constants/status.js +0 -12
- package/esm2015/lib/components/diagrams/diagrams.module.js +0 -81
- package/esm2015/lib/components/diagrams/directive/diagram.directive.js +0 -86
- package/esm2015/lib/components/diagrams/directive/index.js +0 -2
- package/esm2015/lib/components/diagrams/editor/customize.js +0 -62
- package/esm2015/lib/components/diagrams/editor/editor.js +0 -97
- package/esm2015/lib/components/diagrams/editor/index.js +0 -5
- package/esm2015/lib/components/diagrams/editor/overrides/connection-path.transformers.js +0 -50
- package/esm2015/lib/components/diagrams/editor/overrides/index.js +0 -2
- package/esm2015/lib/components/diagrams/editor/path-plugin.js +0 -18
- package/esm2015/lib/components/diagrams/editor/socket-position-watcher.js +0 -7
- package/esm2015/lib/components/diagrams/index.js +0 -2
- package/esm2015/lib/components/diagrams/models/base-node.model.js +0 -26
- package/esm2015/lib/components/diagrams/models/circle-node.model.js +0 -10
- package/esm2015/lib/components/diagrams/models/connection.model.js +0 -15
- package/esm2015/lib/components/diagrams/models/content-node.model.js +0 -7
- package/esm2015/lib/components/diagrams/models/gate-way.model.js +0 -11
- package/esm2015/lib/components/diagrams/models/index.js +0 -8
- package/esm2015/lib/components/diagrams/models/ports.model.js +0 -14
- package/esm2015/lib/components/diagrams/models/socket.model.js +0 -9
- package/esm2015/lib/components/diagrams/models/template-node.model.js +0 -12
- package/esm2015/lib/components/diagrams/public-api.js +0 -9
- package/esm2015/lib/components/diagrams/services/diagram-plugins.service.js +0 -19
- package/esm2015/lib/components/diagrams/services/diagram.service.js +0 -222
- package/esm2015/lib/components/diagrams/services/index.js +0 -5
- package/esm2015/lib/components/diagrams/services/message.service.js +0 -24
- package/esm2015/lib/components/diagrams/services/workflow.service.js +0 -239
- package/esm2015/lib/components/diagrams/types/common.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/connection-config.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/connection-label.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/customization.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/diagram-config.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/diagram-editor.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/emitter-type.js +0 -2
- package/esm2015/lib/components/diagrams/types/index.js +0 -18
- package/esm2015/lib/components/diagrams/types/layout.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/node-content.js +0 -2
- package/esm2015/lib/components/diagrams/types/node-definition.js +0 -2
- package/esm2015/lib/components/diagrams/types/node-status.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/node.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/notify-event.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/path.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/ports-config.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/schemes.type.js +0 -2
- package/esm2015/lib/components/diagrams/types/socket.type.js +0 -2
- package/esm2015/lib/components/diagrams/utilities/common.js +0 -35
- package/esm2015/lib/components/diagrams/utilities/index.js +0 -5
- package/esm2015/lib/components/diagrams/utilities/random.js +0 -11
- package/esm2015/lib/components/diagrams/utilities/remove.util.js +0 -95
- package/esm2015/lib/components/diagrams/utilities/serialize.js +0 -23
- package/esm2015/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.js +0 -44
- package/esm2015/lib/components/display-suitable-icon/display-suitable-icon/icon.service.js +0 -140
- package/esm2015/lib/components/display-suitable-icon/display-suitable-icon.module.js +0 -24
- package/esm2015/lib/components/documents/components/attachments-list/attachments-list.component.js +0 -159
- package/esm2015/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.js +0 -76
- package/esm2015/lib/components/documents/components/document-list/documents-list.component.js +0 -253
- package/esm2015/lib/components/documents/components/document-scan/document-scan.component.js +0 -975
- package/esm2015/lib/components/documents/components/document-scan/document-scan.service.js +0 -30
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +0 -175
- package/esm2015/lib/components/documents/components/documents/documents.component.js +0 -63
- package/esm2015/lib/components/documents/constants/document-templates.js +0 -32
- package/esm2015/lib/components/documents/constants/documents.js +0 -86
- package/esm2015/lib/components/documents/documents.module.js +0 -123
- package/esm2015/lib/components/documents/services/document-templates.service.js +0 -115
- package/esm2015/lib/components/documents/services/documents.service.js +0 -223
- package/esm2015/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.js +0 -540
- package/esm2015/lib/components/dynamic-chart/dynamic-chart.module.js +0 -34
- package/esm2015/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.js +0 -164
- package/esm2015/lib/components/dynamic-chart/services/chart-data.service.js +0 -552
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.js +0 -189
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.js +0 -47
- package/esm2015/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.js +0 -137
- package/esm2015/lib/components/dynamic-filter/dynamic-filter.module.js +0 -27
- package/esm2015/lib/components/dynamic-form/components/department-form/department-form.component.js +0 -129
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.js +0 -105
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/fields.adapter.js +0 -127
- package/esm2015/lib/components/dynamic-form/components/dynamic-form/form-builder.service.js +0 -107
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.js +0 -35
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.js +0 -165
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.js +0 -71
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.js +0 -213
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.js +0 -78
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/constants/department.js +0 -13
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.js +0 -217
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.js +0 -253
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.js +0 -96
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.js +0 -85
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.js +0 -139
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.js +0 -81
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.js +0 -36
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.js +0 -106
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.js +0 -104
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.js +0 -207
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +0 -337
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.js +0 -64
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.js +0 -191
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.js +0 -81
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.js +0 -180
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.js +0 -316
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.js +0 -79
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.js +0 -336
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.js +0 -54
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.js +0 -178
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.js +0 -768
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.js +0 -35
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.js +0 -17
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.js +0 -34
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.js +0 -17
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.js +0 -74
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.js +0 -30
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.js +0 -32
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.js +0 -30
- package/esm2015/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.js +0 -17
- package/esm2015/lib/components/dynamic-form/dynamic-form.module.js +0 -306
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.js +0 -2
- package/esm2015/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.js +0 -10
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-baseitem.model.js +0 -63
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-boolitem.model.js +0 -20
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-dateitem.model.js +0 -24
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.js +0 -12
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-mapitem.model.js +0 -16
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-selectitem.model.js +0 -17
- package/esm2015/lib/components/dynamic-form/models/dynamic-form-textitem.model.js +0 -32
- package/esm2015/lib/components/dynamic-form/models/dynamic-form.models.js +0 -8
- package/esm2015/lib/components/dynamic-form/services/card-item-types.service.js +0 -46
- package/esm2015/lib/components/dynamic-form/services/dynamic-component-mapper.service.js +0 -60
- package/esm2015/lib/components/dynamic-form/services/dynamic-form-update.service.js +0 -83
- package/esm2015/lib/components/dynamic-form/validators/length-validator.js +0 -15
- package/esm2015/lib/components/dynamic-form/validators/regex-validator.js +0 -15
- package/esm2015/lib/components/dynamic-form/validators/required-validator.js +0 -9
- package/esm2015/lib/components/dynamic-form/validators/value-validator.js +0 -15
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +0 -342
- package/esm2015/lib/components/dynamic-search/dynamic-search.module.js +0 -61
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +0 -249
- package/esm2015/lib/components/dynamic-table/dynamic-table.module.js +0 -44
- package/esm2015/lib/components/dynamic-table/services/dynamic-table.service.js +0 -16
- package/esm2015/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.js +0 -39
- package/esm2015/lib/components/dynamic-tabs/dynamic-tabs.module.js +0 -34
- package/esm2015/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.js +0 -37
- package/esm2015/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.js +0 -59
- package/esm2015/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.js +0 -68
- package/esm2015/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.js +0 -33
- package/esm2015/lib/components/dynamic-view/data-viewer/data-viewer.component.js +0 -36
- package/esm2015/lib/components/dynamic-view/date-viewer/date-viewer.component.js +0 -56
- package/esm2015/lib/components/dynamic-view/department-viewer/department-viewer.component.js +0 -90
- package/esm2015/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.js +0 -72
- package/esm2015/lib/components/dynamic-view/dynamic-view.module.js +0 -70
- package/esm2015/lib/components/dynamic-view/dynamic-viewe.service.js +0 -62
- package/esm2015/lib/components/dynamic-view/list-viewer/list-viewer.component.js +0 -40
- package/esm2015/lib/components/file-manger/components/add-to-collection/add-to-collection.component.js +0 -148
- package/esm2015/lib/components/file-manger/components/clipboard/clipboard.component.js +0 -264
- package/esm2015/lib/components/file-manger/components/copy/copy.component.js +0 -150
- package/esm2015/lib/components/file-manger/components/create-directory/create-directory.component.js +0 -117
- package/esm2015/lib/components/file-manger/components/create-modal/create-modal.component.js +0 -526
- package/esm2015/lib/components/file-manger/components/creation-type/creation-type.component.js +0 -26
- package/esm2015/lib/components/file-manger/components/delete/delete.component.js +0 -74
- package/esm2015/lib/components/file-manger/components/folder-modal/folder-modal.component.js +0 -131
- package/esm2015/lib/components/file-manger/components/loan-request/loan-request.component.js +0 -80
- package/esm2015/lib/components/file-manger/components/move/move.component.js +0 -139
- package/esm2015/lib/components/file-manger/components/publish-dialog/publish-dialog.component.js +0 -152
- package/esm2015/lib/components/file-manger/components/rename/rename.component.js +0 -86
- package/esm2015/lib/components/file-manger/components/scan-modal/scan-modal.component.js +0 -347
- package/esm2015/lib/components/file-manger/components/share-dialog/share-dialog.component.js +0 -294
- package/esm2015/lib/components/file-manger/components/sidepanel/sidepanel.component.js +0 -257
- package/esm2015/lib/components/file-manger/components/template-modal/template-modal.component.js +0 -64
- package/esm2015/lib/components/file-manger/components/transfer-doc/transfer-doc.component.js +0 -71
- package/esm2015/lib/components/file-manger/components/update-modal/update-modal.component.js +0 -366
- package/esm2015/lib/components/file-manger/directives/file-grid-infinite-scroll.directive.js +0 -78
- package/esm2015/lib/components/file-manger/file-manager.abstract.js +0 -1200
- package/esm2015/lib/components/file-manger/file-manger.module.js +0 -304
- package/esm2015/lib/components/file-manger/models/file-manager-config.model.js +0 -7
- package/esm2015/lib/components/file-manger/models/index.js +0 -4
- package/esm2015/lib/components/file-manger/models/pagination-payload.mode.js +0 -2
- package/esm2015/lib/components/file-manger/models/pagination-response.model.js +0 -6
- package/esm2015/lib/components/filter/filter/filter.component.js +0 -102
- package/esm2015/lib/components/filter/filter.module.js +0 -45
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.js +0 -123
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.js +0 -126
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.js +0 -165
- package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.js +0 -32
- package/esm2015/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.js +0 -58
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.js +0 -71
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-helper.service.js +0 -30
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.js +0 -43
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.js +0 -26
- package/esm2015/lib/components/hijri-gregorian-datepicker/utils/consts.js +0 -5
- package/esm2015/lib/components/latest-activity/components/activity-line/activity-line.component.js +0 -80
- package/esm2015/lib/components/latest-activity/components/latest-activity/latest-activity.component.js +0 -77
- package/esm2015/lib/components/latest-activity/components/single-activity/single-activity.component.js +0 -38
- package/esm2015/lib/components/latest-activity/constants/activitylog.js +0 -80
- package/esm2015/lib/components/latest-activity/latest-activity.module.js +0 -57
- package/esm2015/lib/components/latest-activity/services/activity-log.service.js +0 -33
- package/esm2015/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.js +0 -51
- package/esm2015/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.js +0 -30
- package/esm2015/lib/components/notifications/components/base-list-notfications.component.js +0 -156
- package/esm2015/lib/components/notifications/components/base-notifications.component.js +0 -31
- package/esm2015/lib/components/notifications/components/index.js +0 -7
- package/esm2015/lib/components/notifications/components/notification-item/get-icon.pipe.js +0 -44
- package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +0 -55
- package/esm2015/lib/components/notifications/components/notification-source-select/notification-source-select.component.js +0 -38
- package/esm2015/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.js +0 -26
- package/esm2015/lib/components/notifications/components/notifications-button/notifications-button.component.js +0 -128
- package/esm2015/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.js +0 -63
- package/esm2015/lib/components/notifications/components/notifications-list/notifications-list.component.js +0 -69
- package/esm2015/lib/components/notifications/components/notifications-list/options.js +0 -24
- package/esm2015/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.js +0 -43
- package/esm2015/lib/components/notifications/components/notifications-settings/check-if-subscribed.pipe.js +0 -29
- package/esm2015/lib/components/notifications/components/notifications-settings/notifications-settings.adapter.js +0 -30
- package/esm2015/lib/components/notifications/components/notifications-settings/notifications-settings.component.js +0 -163
- package/esm2015/lib/components/notifications/components/notifications-sidebar/notifications-sidebar-content.js +0 -28
- package/esm2015/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.js +0 -158
- package/esm2015/lib/components/notifications/constants/date.js +0 -8
- package/esm2015/lib/components/notifications/constants/index.js +0 -5
- package/esm2015/lib/components/notifications/constants/pagination.js +0 -5
- package/esm2015/lib/components/notifications/constants/panel.js +0 -5
- package/esm2015/lib/components/notifications/constants/status.js +0 -10
- package/esm2015/lib/components/notifications/containers/index.js +0 -3
- package/esm2015/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.js +0 -98
- package/esm2015/lib/components/notifications/containers/notifications-list-container/options.js +0 -18
- package/esm2015/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.js +0 -67
- package/esm2015/lib/components/notifications/directives/button.directive.js +0 -28
- package/esm2015/lib/components/notifications/directives/index.js +0 -3
- package/esm2015/lib/components/notifications/directives/notification.directive.js +0 -28
- package/esm2015/lib/components/notifications/index.js +0 -2
- package/esm2015/lib/components/notifications/models/common.js +0 -2
- package/esm2015/lib/components/notifications/models/index.js +0 -12
- package/esm2015/lib/components/notifications/models/notification-definition.model.js +0 -2
- package/esm2015/lib/components/notifications/models/notification-message.mode.js +0 -2
- package/esm2015/lib/components/notifications/models/notification-options.js +0 -2
- package/esm2015/lib/components/notifications/models/notification-setting.presenter.js +0 -2
- package/esm2015/lib/components/notifications/models/notification-subscription.model.js +0 -2
- package/esm2015/lib/components/notifications/models/notification.model.js +0 -2
- package/esm2015/lib/components/notifications/models/notifications-list-options.js +0 -3
- package/esm2015/lib/components/notifications/models/paging-response.model.js +0 -2
- package/esm2015/lib/components/notifications/models/params.model.js +0 -2
- package/esm2015/lib/components/notifications/models/vocabularies.js +0 -2
- package/esm2015/lib/components/notifications/notifications.module.js +0 -147
- package/esm2015/lib/components/notifications/public-api.js +0 -12
- package/esm2015/lib/components/notifications/services/index.js +0 -2
- package/esm2015/lib/components/notifications/services/listener.service.js +0 -19
- package/esm2015/lib/components/notifications/services/notifications.service.js +0 -172
- package/esm2015/lib/components/notifications/services/params.service.js +0 -31
- package/esm2015/lib/components/notifications/services/response.service.js +0 -65
- package/esm2015/lib/components/notifications/services/socket.service.js +0 -76
- package/esm2015/lib/components/notifications/utilities/index.js +0 -2
- package/esm2015/lib/components/notifications/utilities/response.adapter.js +0 -12
- package/esm2015/lib/components/pagination/pagination/pagination.component.js +0 -124
- package/esm2015/lib/components/pagination/pagination.module.js +0 -32
- package/esm2015/lib/components/pdf-tron/pdf-tron.module.js +0 -24
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.component.js +0 -768
- package/esm2015/lib/components/pdf-tron/pdftron/pdftron.service.js +0 -241
- package/esm2015/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.js +0 -195
- package/esm2015/lib/components/permissions/permission.service.js +0 -118
- package/esm2015/lib/components/permissions/permissions/permissions.component.js +0 -235
- package/esm2015/lib/components/permissions/permissions-template/permissions-template.component.js +0 -117
- package/esm2015/lib/components/permissions/permissions.module.js +0 -87
- package/esm2015/lib/components/select/select/select.component.js +0 -130
- package/esm2015/lib/components/select/select.module.js +0 -39
- package/esm2015/lib/components/select-users-by-department/select-users-by-department.module.js +0 -47
- package/esm2015/lib/components/select-users-by-department/select-users-by-departments/department-management.service.js +0 -27
- package/esm2015/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.js +0 -116
- package/esm2015/lib/components/table/dynamic-column/dynamic-column.component.js +0 -64
- package/esm2015/lib/components/table/table/table.component.js +0 -239
- package/esm2015/lib/components/table/table.module.js +0 -65
- package/esm2015/lib/components/toasts/components/notification-toast/notification-toast.component.js +0 -53
- package/esm2015/lib/components/toasts/index.js +0 -2
- package/esm2015/lib/components/toasts/public-api.js +0 -3
- package/esm2015/lib/components/toasts/toasts.module.js +0 -19
- package/esm2015/lib/components/user/user/user.component.js +0 -31
- package/esm2015/lib/components/user/user.module.js +0 -30
- package/esm2015/lib/components/users-card/users-card.component.js +0 -43
- package/esm2015/lib/components/users-card/users-card.module.js +0 -28
- package/esm2015/lib/components/viewer-log/components/viewer-log/viewer-log.component.js +0 -38
- package/esm2015/lib/components/viewer-log/viewer-log.module.js +0 -20
- package/esm2015/lib/components/vocabulary/interfaces/op-type.interface.js +0 -2
- package/esm2015/lib/components/vocabulary/services/vocabulary-api.service.js +0 -50
- package/esm2015/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.js +0 -217
- package/esm2015/lib/components/vocabulary/vocabulary/vocabulary.component.js +0 -106
- package/esm2015/lib/components/vocabulary/vocabulary.module.js +0 -41
- package/esm2015/lib/configuration/app-config.service.js +0 -30
- package/esm2015/lib/configuration/helpers/app-initializer.js +0 -4
- package/esm2015/lib/core/adapters/adapter.service.js +0 -50
- package/esm2015/lib/core/core.module.js +0 -115
- package/esm2015/lib/core/enums/language.enum.js +0 -6
- package/esm2015/lib/core/env/env-manager.js +0 -7
- package/esm2015/lib/core/env/index.js +0 -2
- package/esm2015/lib/core/models/api-response.model.js +0 -2
- package/esm2015/lib/core/models/automation-response.model.js +0 -2
- package/esm2015/lib/core/models/base-response.models.js +0 -2
- package/esm2015/lib/core/models/component.model.js +0 -8
- package/esm2015/lib/core/models/index.js +0 -5
- package/esm2015/lib/core/services/callApi/call-api.service.js +0 -33
- package/esm2015/lib/core/services/extension/action.extensions.js +0 -9
- package/esm2015/lib/core/services/extension/component-register.service.js +0 -25
- package/esm2015/lib/core/services/extension/extenion-utils.js +0 -115
- package/esm2015/lib/core/services/extension/extension-element.js +0 -2
- package/esm2015/lib/core/services/extension/extension-loader.service.js +0 -127
- package/esm2015/lib/core/services/extension/extension.service.js +0 -120
- package/esm2015/lib/core/services/initialization/initialization.service.js +0 -138
- package/esm2015/lib/core/services/localStorag/local-storag.service.js +0 -123
- package/esm2015/lib/core/services/nuxeo/new-nuxeo-overide.js +0 -146
- package/esm2015/lib/core/services/nuxeo/nuxeo-override.js +0 -82
- package/esm2015/lib/core/services/nuxeo/nuxeo.service.js +0 -155
- package/esm2015/lib/core/services/roles/roles.service.js +0 -130
- package/esm2015/lib/core/services/translation/translate-loader.service.js +0 -150
- package/esm2015/lib/core/services/translation/translation.service.js +0 -174
- package/esm2015/lib/core/services/user/user-preferences.service.js +0 -171
- package/esm2015/lib/core/utilities/moment-date-adapter.js +0 -178
- package/esm2015/lib/core/utilities/utility.service.js +0 -81
- package/esm2015/lib/directive/app-has-role/app-has-role.directive.js +0 -61
- package/esm2015/lib/directive/clickOutSide/click-outside.directive.js +0 -29
- package/esm2015/lib/directive/directive.module.js +0 -52
- package/esm2015/lib/directive/drag-and-drop/drag-and-drop.directive.js +0 -46
- package/esm2015/lib/directive/permissions/evaluators.service.js +0 -152
- package/esm2015/lib/directive/permissions/permissions.directive.js +0 -69
- package/esm2015/lib/directive/rtl/set-dir-rtl.directive.js +0 -28
- package/esm2015/lib/directive/rtl/set-rtl.directive.js +0 -29
- package/esm2015/lib/nuxeo-development-framework.component.js +0 -26
- package/esm2015/lib/nuxeo-development-framework.module.js +0 -20
- package/esm2015/lib/nuxeo-development-framework.service.js +0 -14
- package/esm2015/lib/pipes/file-size.pipe.js +0 -57
- package/esm2015/lib/pipes/hijri-date.pipe.js +0 -46
- package/esm2015/lib/pipes/localized-date.pipe.js +0 -81
- package/esm2015/lib/pipes/multi-value.pipe.js +0 -42
- package/esm2015/lib/pipes/pipes.module.js +0 -29
- package/esm2015/lib/pipes/secure-html.pipe.js +0 -34
- package/esm2015/lib/pipes/secure.pipe.js +0 -40
- package/esm2015/lib/pipes/time-ago.pipe.js +0 -68
- package/esm2015/lib/shared/components/base/base-column.component.js +0 -18
- package/esm2015/lib/shared/components/base/base-dialog.component.js +0 -25
- package/esm2015/lib/shared/components/base/base-selector.component.js +0 -96
- package/esm2015/lib/shared/components/base/base.component.js +0 -57
- package/esm2015/lib/shared/components/base/destroy.subject.js +0 -19
- package/esm2015/lib/shared/components/base/index.js +0 -6
- package/esm2015/lib/shared/components/button/button.component.js +0 -90
- package/esm2015/lib/shared/components/index.js +0 -3
- package/esm2015/lib/shared/components/item-list/item-list.component.js +0 -77
- package/esm2015/lib/shared/components/no-data/no-data.component.js +0 -41
- package/esm2015/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.js +0 -23
- package/esm2015/lib/shared/components/nuxeo-dialog/index.js +0 -6
- package/esm2015/lib/shared/components/nuxeo-dialog/models/confirm-options.model.js +0 -22
- package/esm2015/lib/shared/components/nuxeo-dialog/models/dialog-option.model.js +0 -2
- package/esm2015/lib/shared/components/nuxeo-dialog/nuxeo-dialog.module.js +0 -43
- package/esm2015/lib/shared/components/nuxeo-dialog/nuxeo.dialog.js +0 -82
- package/esm2015/lib/shared/components/nuxeo-dialog/services/nuxeo-dialog.service.js +0 -56
- package/esm2015/lib/shared/components/read-more/read-more.component.js +0 -108
- package/esm2015/lib/shared/components/search-autocomplete/search-autocomplete.component.js +0 -146
- package/esm2015/lib/shared/components/spinner/spinner.component.js +0 -29
- package/esm2015/lib/shared/components/user-card/user-card.component.js +0 -49
- package/esm2015/lib/shared/libraryShared.module.js +0 -81
- package/esm2015/lib/shared/models/index.js +0 -4
- package/esm2015/lib/shared/models/mapper/index.js +0 -2
- package/esm2015/lib/shared/models/mapper/nuxeo-mapper.js +0 -32
- package/esm2015/lib/shared/models/nuxeo-response.model.js +0 -2
- package/esm2015/lib/shared/models/task.model.js +0 -2
- package/esm2015/lib/shared/services/base/base.service.js +0 -157
- package/esm2015/lib/shared/services/base/cache-base.service.js +0 -295
- package/esm2015/lib/shared/services/base/config/default-ttl-config.js +0 -9
- package/esm2015/lib/shared/services/base/config/index.js +0 -2
- package/esm2015/lib/shared/services/base/constants/default-cache-options.js +0 -28
- package/esm2015/lib/shared/services/base/constants/index.js +0 -2
- package/esm2015/lib/shared/services/base/http-base.service.js +0 -115
- package/esm2015/lib/shared/services/base/index.js +0 -3
- package/esm2015/lib/shared/services/base/models/cache-info-model.js +0 -12
- package/esm2015/lib/shared/services/base/models/http-options.model.js +0 -2
- package/esm2015/lib/shared/services/base/models/index.js +0 -6
- package/esm2015/lib/shared/services/base/models/operation-options.model.js +0 -2
- package/esm2015/lib/shared/services/base/models/query-options.model.js +0 -2
- package/esm2015/lib/shared/services/base/models/request-options.model.js +0 -2
- package/esm2015/lib/shared/services/index.js +0 -2
- package/esm2015/lib/shared-services/dialog-mangment.service.js +0 -57
- package/esm2015/lib/shared-services/dynamic-form.service.js +0 -241
- package/esm2015/lib/shared-services/file-manager.adapter.js +0 -74
- package/esm2015/lib/shared-services/file-manager.service.js +0 -1028
- package/esm2015/lib/shared-services/global-admin.service.js +0 -22
- package/esm2015/lib/shared-services/global-pdftron.service.js +0 -51
- package/esm2015/lib/shared-services/mainfolder.service.js +0 -170
- package/esm2015/lib/shared-services/publishing-document.service.js +0 -202
- package/esm2015/lib/shared-services/recently-viewed.service.js +0 -57
- package/esm2015/lib/shared-services/shared-docs.service.js +0 -135
- package/esm2015/lib/shared-services/shared-services.module.js +0 -20
- package/esm2015/lib/shared-services/upload-file.service.js +0 -29
- package/esm2015/lib/shared-services/upload-managment.service.js +0 -151
- package/esm2015/lib/shared-services/user.service.js +0 -64
- package/esm2015/nuxeo-development-framework.js +0 -5
- package/esm2015/public-api.js +0 -243
- package/fesm2015/nuxeo-development-framework.js +0 -32435
- package/fesm2015/nuxeo-development-framework.js.map +0 -1
- package/lib/components/activities-log/activities-log/activities-log.component.d.ts +0 -26
- package/lib/components/activities-log/activities-log/activities-log.service.d.ts +0 -9
- package/lib/components/activities-log/activities-log.module.d.ts +0 -12
- package/lib/components/activity/activity/activity.component.d.ts +0 -13
- package/lib/components/activity/activity.module.d.ts +0 -13
- package/lib/components/attachment-item/attachment-item/attachment-item.component.d.ts +0 -21
- package/lib/components/attachment-item/attachment-item.module.d.ts +0 -13
- package/lib/components/attachment-modal/attachment-modal.module.d.ts +0 -12
- package/lib/components/attachment-modal/attachments/attachments.component.d.ts +0 -50
- package/lib/components/avatar/avatar/avatar.component.d.ts +0 -23
- package/lib/components/avatar/avatar.module.d.ts +0 -13
- package/lib/components/card/card.component.d.ts +0 -32
- package/lib/components/card/card.module.d.ts +0 -12
- package/lib/components/comments/comments.module.d.ts +0 -26
- package/lib/components/comments/components/comment-item/comment-item.component.d.ts +0 -24
- package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +0 -46
- package/lib/components/comments/components/comments-list/comments-list.component.d.ts +0 -28
- package/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.d.ts +0 -22
- package/lib/components/comments/constants/comment.d.ts +0 -25
- package/lib/components/comments/services/comment-api.service.d.ts +0 -16
- package/lib/components/confirm-caller/confirm-caller.dialog.d.ts +0 -46
- package/lib/components/confirm-caller/confirm-caller.module.d.ts +0 -17
- package/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.d.ts +0 -12
- package/lib/components/confirmation-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +0 -12
- package/lib/components/confirmation-dialog/confirmation-dialog.module.d.ts +0 -10
- package/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.d.ts +0 -34
- package/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.d.ts +0 -45
- package/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.d.ts +0 -31
- package/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.d.ts +0 -18
- package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +0 -48
- package/lib/components/correspondence-relation/correspondence-relation.module.d.ts +0 -30
- package/lib/components/correspondence-relation/services/correspondence-realation.service.d.ts +0 -26
- package/lib/components/correspondence-relation/services/viewer-files.service.d.ts +0 -18
- package/lib/components/create-entity/create-entity/create-entity.component.d.ts +0 -17
- package/lib/components/create-entity/create-entity.module.d.ts +0 -11
- package/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.d.ts +0 -43
- package/lib/components/cts-tags/cts-tags.module.d.ts +0 -21
- package/lib/components/cts-tags/services/tags-api.service.d.ts +0 -17
- package/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.d.ts +0 -21
- package/lib/components/custom-toastr/custom-toastr.module.d.ts +0 -12
- package/lib/components/custom-toastr/interfaces/toast-type.interface.d.ts +0 -1
- package/lib/components/custom-toastr/services/custom-toastr.service.d.ts +0 -30
- package/lib/components/diagrams/components/base-node.component.d.ts +0 -30
- package/lib/components/diagrams/components/circle-node/circle-node.component.d.ts +0 -7
- package/lib/components/diagrams/components/connection-label.component.d.ts +0 -19
- package/lib/components/diagrams/components/content-node/content-node.component.d.ts +0 -8
- package/lib/components/diagrams/components/custom-connection.component.d.ts +0 -13
- package/lib/components/diagrams/components/custom-socket.component.d.ts +0 -6
- package/lib/components/diagrams/components/gateway-node/gateway-node.component.d.ts +0 -6
- package/lib/components/diagrams/components/gateway-ports.component.d.ts +0 -12
- package/lib/components/diagrams/components/node-icon.component.d.ts +0 -8
- package/lib/components/diagrams/components/node-inputs.component.d.ts +0 -12
- package/lib/components/diagrams/components/node-outputs.component.d.ts +0 -12
- package/lib/components/diagrams/components/node-ports.component.d.ts +0 -13
- package/lib/components/diagrams/components/remove-button.component.d.ts +0 -7
- package/lib/components/diagrams/components/status-icon.component.d.ts +0 -8
- package/lib/components/diagrams/components/template-node/template-node.component.d.ts +0 -17
- package/lib/components/diagrams/components/zoom-control.component.d.ts +0 -11
- package/lib/components/diagrams/constants/defaults.d.ts +0 -2
- package/lib/components/diagrams/constants/direction.d.ts +0 -6
- package/lib/components/diagrams/constants/message-type.d.ts +0 -4
- package/lib/components/diagrams/constants/node-type.d.ts +0 -7
- package/lib/components/diagrams/constants/notify-events.d.ts +0 -3
- package/lib/components/diagrams/constants/sizes.d.ts +0 -7
- package/lib/components/diagrams/constants/status.d.ts +0 -11
- package/lib/components/diagrams/diagrams.module.d.ts +0 -29
- package/lib/components/diagrams/directive/diagram.directive.d.ts +0 -27
- package/lib/components/diagrams/editor/customize.d.ts +0 -25
- package/lib/components/diagrams/editor/editor.d.ts +0 -3
- package/lib/components/diagrams/editor/index.d.ts +0 -4
- package/lib/components/diagrams/editor/overrides/connection-path.transformers.d.ts +0 -2
- package/lib/components/diagrams/editor/path-plugin.d.ts +0 -4
- package/lib/components/diagrams/editor/socket-position-watcher.d.ts +0 -3
- package/lib/components/diagrams/models/base-node.model.d.ts +0 -22
- package/lib/components/diagrams/models/circle-node.model.d.ts +0 -7
- package/lib/components/diagrams/models/connection.model.d.ts +0 -16
- package/lib/components/diagrams/models/content-node.model.d.ts +0 -5
- package/lib/components/diagrams/models/gate-way.model.d.ts +0 -8
- package/lib/components/diagrams/models/ports.model.d.ts +0 -11
- package/lib/components/diagrams/models/socket.model.d.ts +0 -7
- package/lib/components/diagrams/models/template-node.model.d.ts +0 -8
- package/lib/components/diagrams/services/diagram-plugins.service.d.ts +0 -16
- package/lib/components/diagrams/services/diagram.service.d.ts +0 -53
- package/lib/components/diagrams/services/message.service.d.ts +0 -10
- package/lib/components/diagrams/services/workflow.service.d.ts +0 -80
- package/lib/components/diagrams/types/common.type.d.ts +0 -9
- package/lib/components/diagrams/types/connection-config.type.d.ts +0 -11
- package/lib/components/diagrams/types/connection-label.type.d.ts +0 -4
- package/lib/components/diagrams/types/customization.type.d.ts +0 -10
- package/lib/components/diagrams/types/diagram-config.type.d.ts +0 -42
- package/lib/components/diagrams/types/diagram-editor.type.d.ts +0 -26
- package/lib/components/diagrams/types/emitter-type.d.ts +0 -5
- package/lib/components/diagrams/types/layout.type.d.ts +0 -13
- package/lib/components/diagrams/types/node-content.d.ts +0 -9
- package/lib/components/diagrams/types/node-definition.d.ts +0 -20
- package/lib/components/diagrams/types/node-status.type.d.ts +0 -2
- package/lib/components/diagrams/types/node.type.d.ts +0 -2
- package/lib/components/diagrams/types/notify-event.type.d.ts +0 -2
- package/lib/components/diagrams/types/path.type.d.ts +0 -18
- package/lib/components/diagrams/types/ports-config.type.d.ts +0 -11
- package/lib/components/diagrams/types/schemes.type.d.ts +0 -3
- package/lib/components/diagrams/types/socket.type.d.ts +0 -5
- package/lib/components/diagrams/utilities/common.d.ts +0 -19
- package/lib/components/diagrams/utilities/random.d.ts +0 -1
- package/lib/components/diagrams/utilities/remove.util.d.ts +0 -30
- package/lib/components/diagrams/utilities/serialize.d.ts +0 -15
- package/lib/components/display-suitable-icon/display-suitable-icon/display-suitable-icon.component.d.ts +0 -17
- package/lib/components/display-suitable-icon/display-suitable-icon/icon.service.d.ts +0 -8
- package/lib/components/display-suitable-icon/display-suitable-icon.module.d.ts +0 -8
- package/lib/components/documents/components/attachments-list/attachments-list.component.d.ts +0 -55
- package/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.d.ts +0 -38
- package/lib/components/documents/components/document-list/documents-list.component.d.ts +0 -81
- package/lib/components/documents/components/document-scan/document-scan.component.d.ts +0 -112
- package/lib/components/documents/components/document-scan/document-scan.service.d.ts +0 -14
- package/lib/components/documents/components/document-upload/document-upload.component.d.ts +0 -60
- package/lib/components/documents/components/documents/documents.component.d.ts +0 -27
- package/lib/components/documents/constants/document-templates.d.ts +0 -33
- package/lib/components/documents/constants/documents.d.ts +0 -95
- package/lib/components/documents/documents.module.d.ts +0 -33
- package/lib/components/documents/services/document-templates.service.d.ts +0 -24
- package/lib/components/documents/services/documents.service.d.ts +0 -36
- package/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.d.ts +0 -77
- package/lib/components/dynamic-chart/dynamic-chart.module.d.ts +0 -16
- package/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.d.ts +0 -33
- package/lib/components/dynamic-chart/services/chart-data.service.d.ts +0 -37
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.d.ts +0 -138
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.d.ts +0 -13
- package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +0 -55
- package/lib/components/dynamic-filter/dynamic-filter.module.d.ts +0 -17
- package/lib/components/dynamic-form/components/department-form/department-form.component.d.ts +0 -28
- package/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.d.ts +0 -27
- package/lib/components/dynamic-form/components/dynamic-form/fields.adapter.d.ts +0 -6
- package/lib/components/dynamic-form/components/dynamic-form/form-builder.service.d.ts +0 -21
- package/lib/components/dynamic-form/components/dynamic-form-boolitem/dynamic-form-boolitem.component.d.ts +0 -17
- package/lib/components/dynamic-form/components/dynamic-form-builder/dynamic-form-builder.component.d.ts +0 -57
- package/lib/components/dynamic-form/components/dynamic-form-checkbox-item/dynamic-form-checkbox-item.component.d.ts +0 -35
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/dynamic-form-dateitem.component.d.ts +0 -71
- package/lib/components/dynamic-form/components/dynamic-form-dateitem/owlDateTimeIntl.d.ts +0 -52
- package/lib/components/dynamic-form/components/dynamic-form-department/constants/department.d.ts +0 -12
- package/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.d.ts +0 -81
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-api.service.d.ts +0 -32
- package/lib/components/dynamic-form/components/dynamic-form-department/services/department-management.service.d.ts +0 -21
- package/lib/components/dynamic-form/components/dynamic-form-field/dynamic-form-field.component.d.ts +0 -30
- package/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.d.ts +0 -64
- package/lib/components/dynamic-form/components/dynamic-form-item-dispatcher/dynamic-form-item-dispatcher.component.d.ts +0 -25
- package/lib/components/dynamic-form/components/dynamic-form-mapitem/dynamic-form-mapitem.component.d.ts +0 -15
- package/lib/components/dynamic-form/components/dynamic-form-options/dynamic-form-options.component.d.ts +0 -45
- package/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.d.ts +0 -43
- package/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.d.ts +0 -65
- package/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.d.ts +0 -92
- package/lib/components/dynamic-form/components/dynamic-form-select-users/services/user-api.service.d.ts +0 -16
- package/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.d.ts +0 -80
- package/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.d.ts +0 -40
- package/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.d.ts +0 -71
- package/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.d.ts +0 -94
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.d.ts +0 -21
- package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.d.ts +0 -112
- package/lib/components/dynamic-form/components/dynamic-form-viewer/dynamic-form-viewer.component.d.ts +0 -20
- package/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.d.ts +0 -79
- package/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.d.ts +0 -599
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.d.ts +0 -13
- package/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.component.d.ts +0 -13
- package/lib/components/dynamic-form/components/form-wrappers/toggle-wrapper/toggle-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.d.ts +0 -16
- package/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.d.ts +0 -13
- package/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.formio.d.ts +0 -2
- package/lib/components/dynamic-form/directives/dynamic-form-content-proxy.directive.d.ts +0 -9
- package/lib/components/dynamic-form/dynamic-form.module.d.ts +0 -68
- package/lib/components/dynamic-form/interfaces/dynamic-form-boolitem-properties.interface.d.ts +0 -5
- package/lib/components/dynamic-form/interfaces/dynamic-form-dateitem-properties.interface.d.ts +0 -5
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-properties.interface.d.ts +0 -15
- package/lib/components/dynamic-form/interfaces/dynamic-form-item-validator.interface.d.ts +0 -4
- package/lib/components/dynamic-form/interfaces/dynamic-form-item.interface.d.ts +0 -12
- package/lib/components/dynamic-form/interfaces/dynamic-form-keyvaluepairsitem-properties.interface.d.ts +0 -8
- package/lib/components/dynamic-form/interfaces/dynamic-form-selectitem-properties.interface.d.ts +0 -10
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-pipe-property.interface.d.ts +0 -5
- package/lib/components/dynamic-form/interfaces/dynamic-form-textitem-properties.interface.d.ts +0 -8
- package/lib/components/dynamic-form/models/dynamic-form-baseitem.model.d.ts +0 -21
- package/lib/components/dynamic-form/models/dynamic-form-boolitem.model.d.ts +0 -11
- package/lib/components/dynamic-form/models/dynamic-form-dateitem.model.d.ts +0 -13
- package/lib/components/dynamic-form/models/dynamic-form-datetimeitem.model.d.ts +0 -9
- package/lib/components/dynamic-form/models/dynamic-form-mapitem.model.d.ts +0 -8
- package/lib/components/dynamic-form/models/dynamic-form-selectitem.model.d.ts +0 -11
- package/lib/components/dynamic-form/models/dynamic-form-textitem.model.d.ts +0 -15
- package/lib/components/dynamic-form/services/card-item-types.service.d.ts +0 -13
- package/lib/components/dynamic-form/services/dynamic-component-mapper.service.d.ts +0 -36
- package/lib/components/dynamic-form/services/dynamic-form-update.service.d.ts +0 -25
- package/lib/components/dynamic-form/validators/length-validator.d.ts +0 -7
- package/lib/components/dynamic-form/validators/regex-validator.d.ts +0 -7
- package/lib/components/dynamic-form/validators/required-validator.d.ts +0 -5
- package/lib/components/dynamic-form/validators/value-validator.d.ts +0 -7
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +0 -103
- package/lib/components/dynamic-search/dynamic-search.module.d.ts +0 -20
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +0 -112
- package/lib/components/dynamic-table/dynamic-table.module.d.ts +0 -16
- package/lib/components/dynamic-table/services/dynamic-table.service.d.ts +0 -8
- package/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.d.ts +0 -13
- package/lib/components/dynamic-tabs/dynamic-tabs.module.d.ts +0 -11
- package/lib/components/dynamic-view/boolean-viewer/boolean-viewer.component.d.ts +0 -13
- package/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.d.ts +0 -22
- package/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.d.ts +0 -28
- package/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.d.ts +0 -16
- package/lib/components/dynamic-view/data-viewer/data-viewer.component.d.ts +0 -13
- package/lib/components/dynamic-view/date-viewer/date-viewer.component.d.ts +0 -22
- package/lib/components/dynamic-view/department-viewer/department-viewer.component.d.ts +0 -30
- package/lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component.d.ts +0 -39
- package/lib/components/dynamic-view/dynamic-view.module.d.ts +0 -24
- package/lib/components/dynamic-view/dynamic-viewe.service.d.ts +0 -15
- package/lib/components/dynamic-view/list-viewer/list-viewer.component.d.ts +0 -20
- package/lib/components/file-manger/components/add-to-collection/add-to-collection.component.d.ts +0 -37
- package/lib/components/file-manger/components/clipboard/clipboard.component.d.ts +0 -41
- package/lib/components/file-manger/components/copy/copy.component.d.ts +0 -40
- package/lib/components/file-manger/components/create-directory/create-directory.component.d.ts +0 -29
- package/lib/components/file-manger/components/create-modal/create-modal.component.d.ts +0 -104
- package/lib/components/file-manger/components/creation-type/creation-type.component.d.ts +0 -11
- package/lib/components/file-manger/components/delete/delete.component.d.ts +0 -24
- package/lib/components/file-manger/components/folder-modal/folder-modal.component.d.ts +0 -57
- package/lib/components/file-manger/components/loan-request/loan-request.component.d.ts +0 -23
- package/lib/components/file-manger/components/move/move.component.d.ts +0 -40
- package/lib/components/file-manger/components/publish-dialog/publish-dialog.component.d.ts +0 -37
- package/lib/components/file-manger/components/rename/rename.component.d.ts +0 -24
- package/lib/components/file-manger/components/scan-modal/scan-modal.component.d.ts +0 -96
- package/lib/components/file-manger/components/share-dialog/share-dialog.component.d.ts +0 -58
- package/lib/components/file-manger/components/sidepanel/sidepanel.component.d.ts +0 -62
- package/lib/components/file-manger/components/template-modal/template-modal.component.d.ts +0 -34
- package/lib/components/file-manger/components/transfer-doc/transfer-doc.component.d.ts +0 -23
- package/lib/components/file-manger/components/update-modal/update-modal.component.d.ts +0 -195
- package/lib/components/file-manger/directives/file-grid-infinite-scroll.directive.d.ts +0 -12
- package/lib/components/file-manger/file-manager.abstract.d.ts +0 -186
- package/lib/components/file-manger/file-manger.module.d.ts +0 -61
- package/lib/components/file-manger/models/file-manager-config.model.d.ts +0 -8
- package/lib/components/file-manger/models/index.d.ts +0 -3
- package/lib/components/file-manger/models/pagination-payload.mode.d.ts +0 -3
- package/lib/components/file-manger/models/pagination-response.model.d.ts +0 -30
- package/lib/components/filter/filter/filter.component.d.ts +0 -31
- package/lib/components/filter/filter.module.d.ts +0 -15
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.d.ts +0 -35
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.d.ts +0 -35
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-gregorian-datepicker.component.d.ts +0 -39
- package/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/provide-parent-form.directive.d.ts +0 -9
- package/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.d.ts +0 -15
- package/lib/components/hijri-gregorian-datepicker/services/date-formatter.service.d.ts +0 -15
- package/lib/components/hijri-gregorian-datepicker/services/date-helper.service.d.ts +0 -9
- package/lib/components/hijri-gregorian-datepicker/utils/CustomNgbDateParserFormatter.d.ts +0 -11
- package/lib/components/hijri-gregorian-datepicker/utils/IslamicI18n.d.ts +0 -10
- package/lib/components/hijri-gregorian-datepicker/utils/consts.d.ts +0 -4
- package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts +0 -19
- package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts +0 -23
- package/lib/components/latest-activity/components/single-activity/single-activity.component.d.ts +0 -15
- package/lib/components/latest-activity/constants/activitylog.d.ts +0 -83
- package/lib/components/latest-activity/latest-activity.module.d.ts +0 -19
- package/lib/components/latest-activity/services/activity-log.service.d.ts +0 -12
- package/lib/components/mutiple-dynamic-form-viewer/multiple-dynamic-form-viewer/multiple-dynamic-form-viewer.component.d.ts +0 -17
- package/lib/components/mutiple-dynamic-form-viewer/mutiple-dynamic-form-viewer.module.d.ts +0 -10
- package/lib/components/notifications/components/base-list-notfications.component.d.ts +0 -42
- package/lib/components/notifications/components/base-notifications.component.d.ts +0 -17
- package/lib/components/notifications/components/notification-item/get-icon.pipe.d.ts +0 -8
- package/lib/components/notifications/components/notification-item/notification-item.component.d.ts +0 -24
- package/lib/components/notifications/components/notification-source-select/notification-source-select.component.d.ts +0 -15
- package/lib/components/notifications/components/notification-status-toggle/notification-status-toggle.component.d.ts +0 -8
- package/lib/components/notifications/components/notifications-button/notifications-button.component.d.ts +0 -39
- package/lib/components/notifications/components/notifications-date-select/notifications-date-select.component.d.ts +0 -22
- package/lib/components/notifications/components/notifications-list/notifications-list.component.d.ts +0 -18
- package/lib/components/notifications/components/notifications-list/options.d.ts +0 -2
- package/lib/components/notifications/components/notifications-list-actions/notifications-list-actions.component.d.ts +0 -15
- package/lib/components/notifications/components/notifications-settings/check-if-subscribed.pipe.d.ts +0 -8
- package/lib/components/notifications/components/notifications-settings/notifications-settings.adapter.d.ts +0 -3
- package/lib/components/notifications/components/notifications-settings/notifications-settings.component.d.ts +0 -40
- package/lib/components/notifications/components/notifications-sidebar/notifications-sidebar-content.d.ts +0 -9
- package/lib/components/notifications/components/notifications-sidebar/notifications-sidebar.component.d.ts +0 -43
- package/lib/components/notifications/constants/date.d.ts +0 -7
- package/lib/components/notifications/constants/pagination.d.ts +0 -4
- package/lib/components/notifications/constants/panel.d.ts +0 -4
- package/lib/components/notifications/constants/status.d.ts +0 -9
- package/lib/components/notifications/containers/index.d.ts +0 -2
- package/lib/components/notifications/containers/notifications-list-container/notifications-list-container.component.d.ts +0 -27
- package/lib/components/notifications/containers/notifications-list-container/options.d.ts +0 -2
- package/lib/components/notifications/containers/notifications-settings-container/notifications-settings-container.component.d.ts +0 -22
- package/lib/components/notifications/directives/button.directive.d.ts +0 -9
- package/lib/components/notifications/directives/notification.directive.d.ts +0 -9
- package/lib/components/notifications/models/common.d.ts +0 -64
- package/lib/components/notifications/models/notification-definition.model.d.ts +0 -17
- package/lib/components/notifications/models/notification-message.mode.d.ts +0 -13
- package/lib/components/notifications/models/notification-options.d.ts +0 -7
- package/lib/components/notifications/models/notification-setting.presenter.d.ts +0 -24
- package/lib/components/notifications/models/notification-subscription.model.d.ts +0 -13
- package/lib/components/notifications/models/notification.model.d.ts +0 -16
- package/lib/components/notifications/models/notifications-list-options.d.ts +0 -34
- package/lib/components/notifications/models/paging-response.model.d.ts +0 -12
- package/lib/components/notifications/models/params.model.d.ts +0 -6
- package/lib/components/notifications/models/vocabularies.d.ts +0 -12
- package/lib/components/notifications/notifications.module.d.ts +0 -41
- package/lib/components/notifications/services/listener.service.d.ts +0 -8
- package/lib/components/notifications/services/notifications.service.d.ts +0 -60
- package/lib/components/notifications/services/params.service.d.ts +0 -19
- package/lib/components/notifications/services/response.service.d.ts +0 -19
- package/lib/components/notifications/services/socket.service.d.ts +0 -26
- package/lib/components/notifications/utilities/index.d.ts +0 -1
- package/lib/components/notifications/utilities/response.adapter.d.ts +0 -3
- package/lib/components/pagination/pagination/pagination.component.d.ts +0 -46
- package/lib/components/pagination/pagination.module.d.ts +0 -13
- package/lib/components/pdf-tron/pdf-tron.module.d.ts +0 -8
- package/lib/components/pdf-tron/pdftron/pdftron.component.d.ts +0 -107
- package/lib/components/pdf-tron/pdftron/pdftron.service.d.ts +0 -33
- package/lib/components/permissions/add-permissions-dialog/add-permissions-dialog.component.d.ts +0 -46
- package/lib/components/permissions/permission.service.d.ts +0 -21
- package/lib/components/permissions/permissions/permissions.component.d.ts +0 -48
- package/lib/components/permissions/permissions-template/permissions-template.component.d.ts +0 -22
- package/lib/components/permissions/permissions.module.d.ts +0 -22
- package/lib/components/select/select/select.component.d.ts +0 -43
- package/lib/components/select/select.module.d.ts +0 -12
- package/lib/components/select-users-by-department/select-users-by-department.module.d.ts +0 -13
- package/lib/components/select-users-by-department/select-users-by-departments/department-management.service.d.ts +0 -10
- package/lib/components/select-users-by-department/select-users-by-departments/select-users-by-departments.component.d.ts +0 -33
- package/lib/components/table/dynamic-column/dynamic-column.component.d.ts +0 -19
- package/lib/components/table/table/table.component.d.ts +0 -113
- package/lib/components/table/table.module.d.ts +0 -21
- package/lib/components/toasts/components/notification-toast/notification-toast.component.d.ts +0 -17
- package/lib/components/toasts/toasts.module.d.ts +0 -8
- package/lib/components/user/user/user.component.d.ts +0 -13
- package/lib/components/user/user.module.d.ts +0 -10
- package/lib/components/users-card/users-card.component.d.ts +0 -22
- package/lib/components/users-card/users-card.module.d.ts +0 -17
- package/lib/components/viewer-log/components/viewer-log/viewer-log.component.d.ts +0 -14
- package/lib/components/viewer-log/viewer-log.module.d.ts +0 -10
- package/lib/components/vocabulary/interfaces/op-type.interface.d.ts +0 -1
- package/lib/components/vocabulary/services/vocabulary-api.service.d.ts +0 -19
- package/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.d.ts +0 -81
- package/lib/components/vocabulary/vocabulary/vocabulary.component.d.ts +0 -37
- package/lib/components/vocabulary/vocabulary.module.d.ts +0 -13
- package/lib/configuration/app-config.service.d.ts +0 -14
- package/lib/configuration/helpers/app-initializer.d.ts +0 -2
- package/lib/core/adapters/adapter.service.d.ts +0 -11
- package/lib/core/core.module.d.ts +0 -17
- package/lib/core/enums/language.enum.d.ts +0 -4
- package/lib/core/env/env-manager.d.ts +0 -51
- package/lib/core/env/index.d.ts +0 -1
- package/lib/core/models/api-response.model.d.ts +0 -24
- package/lib/core/models/automation-response.model.d.ts +0 -24
- package/lib/core/models/base-response.models.d.ts +0 -12
- package/lib/core/models/component.model.d.ts +0 -6
- package/lib/core/services/callApi/call-api.service.d.ts +0 -11
- package/lib/core/services/extension/action.extensions.d.ts +0 -31
- package/lib/core/services/extension/component-register.service.d.ts +0 -17
- package/lib/core/services/extension/extenion-utils.d.ts +0 -14
- package/lib/core/services/extension/extension-element.d.ts +0 -5
- package/lib/core/services/extension/extension-loader.service.d.ts +0 -28
- package/lib/core/services/extension/extension.service.d.ts +0 -70
- package/lib/core/services/initialization/initialization.service.d.ts +0 -31
- package/lib/core/services/localStorag/local-storag.service.d.ts +0 -41
- package/lib/core/services/nuxeo/new-nuxeo-overide.d.ts +0 -14
- package/lib/core/services/nuxeo/nuxeo-override.d.ts +0 -8
- package/lib/core/services/nuxeo/nuxeo.service.d.ts +0 -37
- package/lib/core/services/roles/roles.service.d.ts +0 -12
- package/lib/core/services/translation/translate-loader.service.d.ts +0 -26
- package/lib/core/services/translation/translation.service.d.ts +0 -74
- package/lib/core/services/user/user-preferences.service.d.ts +0 -81
- package/lib/core/utilities/moment-date-adapter.d.ts +0 -37
- package/lib/core/utilities/utility.service.d.ts +0 -11
- package/lib/directive/app-has-role/app-has-role.directive.d.ts +0 -18
- package/lib/directive/clickOutSide/click-outside.directive.d.ts +0 -11
- package/lib/directive/directive.module.d.ts +0 -17
- package/lib/directive/drag-and-drop/drag-and-drop.directive.d.ts +0 -11
- package/lib/directive/permissions/evaluators.service.d.ts +0 -37
- package/lib/directive/permissions/permissions.directive.d.ts +0 -42
- package/lib/directive/rtl/set-dir-rtl.directive.d.ts +0 -13
- package/lib/directive/rtl/set-rtl.directive.d.ts +0 -13
- package/lib/nuxeo-development-framework.component.d.ts +0 -8
- package/lib/nuxeo-development-framework.module.d.ts +0 -10
- package/lib/nuxeo-development-framework.service.d.ts +0 -6
- package/lib/pipes/file-size.pipe.d.ts +0 -34
- package/lib/pipes/hijri-date.pipe.d.ts +0 -32
- package/lib/pipes/localized-date.pipe.d.ts +0 -44
- package/lib/pipes/multi-value.pipe.d.ts +0 -32
- package/lib/pipes/pipes.module.d.ts +0 -18
- package/lib/pipes/secure-html.pipe.d.ts +0 -26
- package/lib/pipes/secure.pipe.d.ts +0 -29
- package/lib/pipes/time-ago.pipe.d.ts +0 -34
- package/lib/shared/components/base/base-column.component.d.ts +0 -10
- package/lib/shared/components/base/base-dialog.component.d.ts +0 -12
- package/lib/shared/components/base/base-selector.component.d.ts +0 -43
- package/lib/shared/components/base/base.component.d.ts +0 -34
- package/lib/shared/components/base/destroy.subject.d.ts +0 -9
- package/lib/shared/components/button/button.component.d.ts +0 -39
- package/lib/shared/components/item-list/item-list.component.d.ts +0 -45
- package/lib/shared/components/no-data/no-data.component.d.ts +0 -22
- package/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.d.ts +0 -9
- package/lib/shared/components/nuxeo-dialog/models/confirm-options.model.d.ts +0 -22
- package/lib/shared/components/nuxeo-dialog/models/dialog-option.model.d.ts +0 -16
- package/lib/shared/components/nuxeo-dialog/nuxeo-dialog.module.d.ts +0 -14
- package/lib/shared/components/nuxeo-dialog/nuxeo.dialog.d.ts +0 -22
- package/lib/shared/components/nuxeo-dialog/services/nuxeo-dialog.service.d.ts +0 -13
- package/lib/shared/components/read-more/read-more.component.d.ts +0 -37
- package/lib/shared/components/search-autocomplete/search-autocomplete.component.d.ts +0 -51
- package/lib/shared/components/spinner/spinner.component.d.ts +0 -18
- package/lib/shared/components/user-card/user-card.component.d.ts +0 -30
- package/lib/shared/libraryShared.module.d.ts +0 -26
- package/lib/shared/models/mapper/nuxeo-mapper.d.ts +0 -8
- package/lib/shared/models/nuxeo-response.model.d.ts +0 -61
- package/lib/shared/models/task.model.d.ts +0 -71
- package/lib/shared/services/base/base.service.d.ts +0 -29
- package/lib/shared/services/base/cache-base.service.d.ts +0 -17
- package/lib/shared/services/base/config/default-ttl-config.d.ts +0 -7
- package/lib/shared/services/base/constants/default-cache-options.d.ts +0 -16
- package/lib/shared/services/base/http-base.service.d.ts +0 -15
- package/lib/shared/services/base/models/cache-info-model.d.ts +0 -49
- package/lib/shared/services/base/models/http-options.model.d.ts +0 -7
- package/lib/shared/services/base/models/operation-options.model.d.ts +0 -8
- package/lib/shared/services/base/models/query-options.model.d.ts +0 -5
- package/lib/shared/services/base/models/request-options.model.d.ts +0 -7
- package/lib/shared-services/dialog-mangment.service.d.ts +0 -15
- package/lib/shared-services/dynamic-form.service.d.ts +0 -24
- package/lib/shared-services/file-manager.adapter.d.ts +0 -48
- package/lib/shared-services/file-manager.service.d.ts +0 -102
- package/lib/shared-services/global-admin.service.d.ts +0 -11
- package/lib/shared-services/global-pdftron.service.d.ts +0 -11
- package/lib/shared-services/mainfolder.service.d.ts +0 -32
- package/lib/shared-services/publishing-document.service.d.ts +0 -25
- package/lib/shared-services/recently-viewed.service.d.ts +0 -17
- package/lib/shared-services/shared-docs.service.d.ts +0 -21
- package/lib/shared-services/shared-services.module.d.ts +0 -7
- package/lib/shared-services/upload-file.service.d.ts +0 -10
- package/lib/shared-services/upload-managment.service.d.ts +0 -72
- package/lib/shared-services/user.service.d.ts +0 -12
- package/nuxeo-development-framework.d.ts +0 -5
- package/public-api.d.ts +0 -230
- /package/{lib/components/diagrams/components/index.d.ts → src/lib/components/diagrams/components/index.ts} +0 -0
- /package/{lib/components/diagrams/constants/index.d.ts → src/lib/components/diagrams/constants/index.ts} +0 -0
- /package/{lib/components/diagrams/directive/index.d.ts → src/lib/components/diagrams/directive/index.ts} +0 -0
- /package/{lib/components/diagrams/editor/overrides/index.d.ts → src/lib/components/diagrams/editor/overrides/index.ts} +0 -0
- /package/{lib/components/diagrams/index.d.ts → src/lib/components/diagrams/index.ts} +0 -0
- /package/{lib/components/diagrams/models/index.d.ts → src/lib/components/diagrams/models/index.ts} +0 -0
- /package/{lib/components/diagrams/public-api.d.ts → src/lib/components/diagrams/public-api.ts} +0 -0
- /package/{lib/components/diagrams/services/index.d.ts → src/lib/components/diagrams/services/index.ts} +0 -0
- /package/{lib/components/diagrams/types/index.d.ts → src/lib/components/diagrams/types/index.ts} +0 -0
- /package/{lib/components/diagrams/utilities/index.d.ts → src/lib/components/diagrams/utilities/index.ts} +0 -0
- /package/{lib/components/dynamic-form/interfaces/dynamic-form.interfaces.d.ts → src/lib/components/dynamic-form/interfaces/dynamic-form.interfaces.ts} +0 -0
- /package/{lib/components/dynamic-form/models/dynamic-form.models.d.ts → src/lib/components/dynamic-form/models/dynamic-form.models.ts} +0 -0
- /package/{lib/components/notifications/components/index.d.ts → src/lib/components/notifications/components/index.ts} +0 -0
- /package/{lib/components/notifications/constants/index.d.ts → src/lib/components/notifications/constants/index.ts} +0 -0
- /package/{lib/components/notifications/directives/index.d.ts → src/lib/components/notifications/directives/index.ts} +0 -0
- /package/{lib/components/notifications/index.d.ts → src/lib/components/notifications/index.ts} +0 -0
- /package/{lib/components/notifications/models/index.d.ts → src/lib/components/notifications/models/index.ts} +0 -0
- /package/{lib/components/notifications/public-api.d.ts → src/lib/components/notifications/public-api.ts} +0 -0
- /package/{lib/components/notifications/services/index.d.ts → src/lib/components/notifications/services/index.ts} +0 -0
- /package/{lib/components/toasts/index.d.ts → src/lib/components/toasts/index.ts} +0 -0
- /package/{lib/components/toasts/public-api.d.ts → src/lib/components/toasts/public-api.ts} +0 -0
- /package/{lib/core/models/index.d.ts → src/lib/core/models/index.ts} +0 -0
- /package/{lib/shared/components/base/index.d.ts → src/lib/shared/components/base/index.ts} +0 -0
- /package/{lib/shared/components/index.d.ts → src/lib/shared/components/index.ts} +0 -0
- /package/{lib/shared/components/nuxeo-dialog/index.d.ts → src/lib/shared/components/nuxeo-dialog/index.ts} +0 -0
- /package/{lib/shared/models/index.d.ts → src/lib/shared/models/index.ts} +0 -0
- /package/{lib/shared/models/mapper/index.d.ts → src/lib/shared/models/mapper/index.ts} +0 -0
- /package/{lib/shared/services/base/config/index.d.ts → src/lib/shared/services/base/config/index.ts} +0 -0
- /package/{lib/shared/services/base/constants/index.d.ts → src/lib/shared/services/base/constants/index.ts} +0 -0
- /package/{lib/shared/services/base/index.d.ts → src/lib/shared/services/base/index.ts} +0 -0
- /package/{lib/shared/services/base/models/index.d.ts → src/lib/shared/services/base/models/index.ts} +0 -0
- /package/{lib/shared/services/index.d.ts → src/lib/shared/services/index.ts} +0 -0
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "../../avatar/avatar/avatar.component";
|
|
4
|
-
import * as i2 from "@angular/common";
|
|
5
|
-
import * as i3 from "@ngx-translate/core";
|
|
6
|
-
/**
|
|
7
|
-
* A component to display a list of users
|
|
8
|
-
* @title
|
|
9
|
-
* List Viewer
|
|
10
|
-
*/
|
|
11
|
-
export class ListViewerComponent {
|
|
12
|
-
constructor() {
|
|
13
|
-
/** label to be shown */
|
|
14
|
-
this.label = '';
|
|
15
|
-
/** list of CC user */
|
|
16
|
-
this.data = [];
|
|
17
|
-
/** Further info required */
|
|
18
|
-
this.vertical = false;
|
|
19
|
-
this.show = false;
|
|
20
|
-
}
|
|
21
|
-
ngOnInit() {
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
ListViewerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
-
ListViewerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ListViewerComponent, selector: "cts-list-viewer", inputs: { label: "label", data: "data", vertical: "vertical" }, ngImport: i0, template: "<div class=\"container\">\r\n <div>{{label | translate}}</div>\r\n <span class=\"title\" (click)=\"show = !show\" *ngIf=\"data.length > 1\">\r\n {{\r\n (show ? \"CREATE.SHOW_LESS\" : \"CREATE.SHOW_MORE\")\r\n | translate\r\n }}\r\n </span>\r\n</div>\r\n<div class=\"two-columns\" [class.show]=\"show\" *ngIf=\"data.length \">\r\n <ng-container *ngFor=\"let elem of data\">\r\n <div class=\"wrapper\">\r\n <span class=\"avatar-wrapper\">\r\n <cts-avatar [user]=\"elem\"></cts-avatar>\r\n </span>\r\n <span class=\"fullName\">\r\n {{ elem?.properties?.firstName }} {{ elem?.properties?.lastName }}\r\n </span>\r\n </div>\r\n </ng-container>\r\n</div>\r\n<div class=\"no-data-section\" *ngIf=\"data.length === 0\">\r\n {{\"CREATE.NO_USERS\" | translate}}\r\n</div>\r\n", styles: [".title{font-size:12px;cursor:pointer;font-weight:bold;margin-top:4px;color:#d3d3d3}.container{display:flex;place-content:space-between;padding:0;font-weight:bold;font-size:14px}.two-columns{height:63px;overflow:hidden;width:100%;display:flex;flex-wrap:wrap;padding:0 5px;border:1px solid #d9dce2}.two-columns .wrapper{display:inline-flex;padding:6px;align-items:center;width:50%}.no-data-section{height:63px;border:1px solid #d9dce2;display:flex;justify-content:center;align-items:center;color:gray;font-size:14px}.avatar-wrapper{width:35px;height:35px;margin:5px}.show{overflow:visible;height:auto}.fullName{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100px}\n"], components: [{ type: i1.AvatarComponent, selector: "cts-avatar", inputs: ["user"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "translate": i3.TranslatePipe } });
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ListViewerComponent, decorators: [{
|
|
27
|
-
type: Component,
|
|
28
|
-
args: [{
|
|
29
|
-
selector: 'cts-list-viewer',
|
|
30
|
-
templateUrl: './list-viewer.component.html',
|
|
31
|
-
styleUrls: ['./list-viewer.component.scss']
|
|
32
|
-
}]
|
|
33
|
-
}], ctorParameters: function () { return []; }, propDecorators: { label: [{
|
|
34
|
-
type: Input
|
|
35
|
-
}], data: [{
|
|
36
|
-
type: Input
|
|
37
|
-
}], vertical: [{
|
|
38
|
-
type: Input
|
|
39
|
-
}] } });
|
|
40
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlzdC12aWV3ZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy9keW5hbWljLXZpZXcvbGlzdC12aWV3ZXIvbGlzdC12aWV3ZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy9keW5hbWljLXZpZXcvbGlzdC12aWV3ZXIvbGlzdC12aWV3ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7Ozs7O0FBRXpEOzs7O0dBSUc7QUFNSCxNQUFNLE9BQU8sbUJBQW1CO0lBUzlCO1FBUkEseUJBQXlCO1FBQ2hCLFVBQUssR0FBRyxFQUFFLENBQUM7UUFDcEIsc0JBQXNCO1FBQ2IsU0FBSSxHQUFHLEVBQUUsQ0FBQztRQUNuQiw0QkFBNEI7UUFDbkIsYUFBUSxHQUFHLEtBQUssQ0FBQztRQUMxQixTQUFJLEdBQUcsS0FBSyxDQUFDO0lBRUcsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7aUhBWlUsbUJBQW1CO3FHQUFuQixtQkFBbUIsdUhDWmhDLHl6QkF3QkE7NEZEWmEsbUJBQW1CO2tCQUwvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFdBQVcsRUFBRSw4QkFBOEI7b0JBQzNDLFNBQVMsRUFBRSxDQUFDLDhCQUE4QixDQUFDO2lCQUM1QzswRUFHVSxLQUFLO3NCQUFiLEtBQUs7Z0JBRUcsSUFBSTtzQkFBWixLQUFLO2dCQUVHLFFBQVE7c0JBQWhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbi8qKlxyXG4gKiBBIGNvbXBvbmVudCB0byBkaXNwbGF5IGEgbGlzdCBvZiB1c2Vyc1xyXG4gKiBAdGl0bGVcclxuICogTGlzdCBWaWV3ZXJcclxuICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnY3RzLWxpc3Qtdmlld2VyJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vbGlzdC12aWV3ZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2xpc3Qtdmlld2VyLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIExpc3RWaWV3ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIC8qKiBsYWJlbCB0byBiZSBzaG93biAgKi9cclxuICBASW5wdXQoKSBsYWJlbCA9ICcnO1xyXG4gIC8qKiBsaXN0IG9mIENDIHVzZXIgKi9cclxuICBASW5wdXQoKSBkYXRhID0gW107XHJcbiAgLyoqIEZ1cnRoZXIgaW5mbyByZXF1aXJlZCAqL1xyXG4gIEBJbnB1dCgpIHZlcnRpY2FsID0gZmFsc2U7XHJcbiAgc2hvdyA9IGZhbHNlO1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHsgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICB9XHJcblxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICA8ZGl2Pnt7bGFiZWwgfCB0cmFuc2xhdGV9fTwvZGl2PlxyXG4gIDxzcGFuIGNsYXNzPVwidGl0bGVcIiAoY2xpY2spPVwic2hvdyA9ICFzaG93XCIgKm5nSWY9XCJkYXRhLmxlbmd0aCA+IDFcIj5cclxuICAgIHt7XHJcbiAgICAoc2hvdyA/IFwiQ1JFQVRFLlNIT1dfTEVTU1wiIDogXCJDUkVBVEUuU0hPV19NT1JFXCIpXHJcbiAgICB8IHRyYW5zbGF0ZVxyXG4gICAgfX1cclxuICA8L3NwYW4+XHJcbjwvZGl2PlxyXG48ZGl2IGNsYXNzPVwidHdvLWNvbHVtbnNcIiBbY2xhc3Muc2hvd109XCJzaG93XCIgKm5nSWY9XCJkYXRhLmxlbmd0aCBcIj5cclxuICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBlbGVtIG9mIGRhdGFcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJ3cmFwcGVyXCI+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwiYXZhdGFyLXdyYXBwZXJcIj5cclxuICAgICAgICA8Y3RzLWF2YXRhciBbdXNlcl09XCJlbGVtXCI+PC9jdHMtYXZhdGFyPlxyXG4gICAgICA8L3NwYW4+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwiZnVsbE5hbWVcIj5cclxuICAgICAgICB7eyBlbGVtPy5wcm9wZXJ0aWVzPy5maXJzdE5hbWUgfX0ge3sgZWxlbT8ucHJvcGVydGllcz8ubGFzdE5hbWUgfX1cclxuICAgICAgPC9zcGFuPlxyXG4gICAgPC9kaXY+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbjwvZGl2PlxyXG48ZGl2IGNsYXNzPVwibm8tZGF0YS1zZWN0aW9uXCIgKm5nSWY9XCJkYXRhLmxlbmd0aCA9PT0gMFwiPlxyXG4gIHt7XCJDUkVBVEUuTk9fVVNFUlNcIiB8IHRyYW5zbGF0ZX19XHJcbjwvZGl2PlxyXG4iXX0=
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
|
|
2
|
-
import { DxFormComponent } from 'devextreme-angular';
|
|
3
|
-
import { concat, of, Subject } from 'rxjs';
|
|
4
|
-
import { debounceTime, distinctUntilChanged, switchMap, catchError, tap } from 'rxjs/operators';
|
|
5
|
-
import { NdfNuxeoDialog } from '../../../../shared/components/nuxeo-dialog/nuxeo.dialog';
|
|
6
|
-
import { BaseComponent } from '../../../../shared/components/base/base.component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
import * as i1 from "../../../../shared-services/file-manager.service";
|
|
9
|
-
import * as i2 from "../../../custom-toastr/services/custom-toastr.service";
|
|
10
|
-
import * as i3 from "../../../../shared/components/nuxeo-dialog/services/nuxeo-dialog.service";
|
|
11
|
-
import * as i4 from "devextreme-angular";
|
|
12
|
-
import * as i5 from "devextreme-angular/ui/nested";
|
|
13
|
-
import * as i6 from "@ng-select/ng-select";
|
|
14
|
-
import * as i7 from "@angular/forms";
|
|
15
|
-
import * as i8 from "@angular/common";
|
|
16
|
-
import * as i9 from "@ngx-translate/core";
|
|
17
|
-
export class AddToCollectionComponent extends BaseComponent {
|
|
18
|
-
constructor(fileManagerService, customToastrService, nuxeoDialogService, injector) {
|
|
19
|
-
super(injector);
|
|
20
|
-
this.fileManagerService = fileManagerService;
|
|
21
|
-
this.customToastrService = customToastrService;
|
|
22
|
-
this.nuxeoDialogService = nuxeoDialogService;
|
|
23
|
-
this.visibleChange = new EventEmitter();
|
|
24
|
-
this.rtlEnabled = false;
|
|
25
|
-
this.isSelected = true;
|
|
26
|
-
this.tagsInput$ = new Subject();
|
|
27
|
-
this.tagsLoading = false;
|
|
28
|
-
this._visible = false;
|
|
29
|
-
this.onFormCollectionSubmit = (e) => {
|
|
30
|
-
e.preventDefault();
|
|
31
|
-
this.loading = true;
|
|
32
|
-
return this.fileManagerService
|
|
33
|
-
.addToCollection(this.selectedItems, this.collectionid)
|
|
34
|
-
.pipe(tap((res) => {
|
|
35
|
-
this.loading = false;
|
|
36
|
-
this.form.instance.resetValues();
|
|
37
|
-
this.selectedTags = null;
|
|
38
|
-
this.visible = false;
|
|
39
|
-
this.customToastrService.show('success', 'TOASTER.SUCCESS', 'TOASTER.DOCUMENT_ADDED_TO_COLLECTION');
|
|
40
|
-
}, (err) => {
|
|
41
|
-
this.loading = false;
|
|
42
|
-
this.customToastrService.show('error', 'TOASTER.ERROR', 'TOASTER.DOCUMENT_ADDED_TO_COLLECTION_ERROR');
|
|
43
|
-
}));
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
set visible(value) {
|
|
47
|
-
if (this._visible === value) {
|
|
48
|
-
return;
|
|
49
|
-
}
|
|
50
|
-
if (value) {
|
|
51
|
-
this.openDialog();
|
|
52
|
-
}
|
|
53
|
-
this._visible = value;
|
|
54
|
-
this.visibleChange.emit(this._visible);
|
|
55
|
-
}
|
|
56
|
-
get visible() {
|
|
57
|
-
return this._visible;
|
|
58
|
-
}
|
|
59
|
-
ngOnInit() { }
|
|
60
|
-
openDialog() {
|
|
61
|
-
const options = {
|
|
62
|
-
component: NdfNuxeoDialog,
|
|
63
|
-
config: {
|
|
64
|
-
title: this.translateService.instant('FILE_MANAGER.ADD_TO_COLLECTION'),
|
|
65
|
-
contentTemplate: this.contentTemplate,
|
|
66
|
-
actionsTemplate: this.actionsTemplate
|
|
67
|
-
}
|
|
68
|
-
};
|
|
69
|
-
this.nuxeoDialogService
|
|
70
|
-
.open(options)
|
|
71
|
-
.afterClosed()
|
|
72
|
-
.subscribe((res) => {
|
|
73
|
-
this.visible = false;
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
emitSelection(event) {
|
|
77
|
-
if (this.isSelected) {
|
|
78
|
-
this.fileManagerService
|
|
79
|
-
.createNewCollection(event.displayLabel)
|
|
80
|
-
.subscribe((res) => {
|
|
81
|
-
this.collectionid = res.uid;
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
else
|
|
85
|
-
this.collectionid = event.id;
|
|
86
|
-
}
|
|
87
|
-
loadItems() {
|
|
88
|
-
let searchterm = '';
|
|
89
|
-
this.isSelected = false;
|
|
90
|
-
let mycategories = [];
|
|
91
|
-
this.items$ = concat(this.fileManagerService.getCollectionFromPP(searchterm).pipe(switchMap((res) => {
|
|
92
|
-
res.entries.map((entry) => {
|
|
93
|
-
mycategories.push({
|
|
94
|
-
displayLabel: entry.title,
|
|
95
|
-
id: entry.uid,
|
|
96
|
-
path: entry.path,
|
|
97
|
-
icon: entry.properties['common:icon']
|
|
98
|
-
});
|
|
99
|
-
});
|
|
100
|
-
return of(mycategories);
|
|
101
|
-
})), // default items
|
|
102
|
-
this.tagsInput$.pipe(debounceTime(200), distinctUntilChanged(), tap(() => (this.tagsLoading = true)), switchMap((searchterm) => {
|
|
103
|
-
return this.fileManagerService.getCollectionFromPP(searchterm).pipe(catchError(() => of([])), // empty list on error
|
|
104
|
-
switchMap((searchCat) => {
|
|
105
|
-
let myInerCateg = [];
|
|
106
|
-
this.tagsLoading = false;
|
|
107
|
-
this.isSelected = true;
|
|
108
|
-
searchCat.entries.map((entry) => {
|
|
109
|
-
myInerCateg.push({
|
|
110
|
-
displayLabel: entry.title,
|
|
111
|
-
id: entry.uid,
|
|
112
|
-
path: entry.path,
|
|
113
|
-
icon: entry.properties['common:icon']
|
|
114
|
-
});
|
|
115
|
-
});
|
|
116
|
-
return of(myInerCateg);
|
|
117
|
-
}));
|
|
118
|
-
})));
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
AddToCollectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: AddToCollectionComponent, deps: [{ token: i1.FileManagerService }, { token: i2.CustomToastrService }, { token: i3.NuxeoDialogService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
122
|
-
AddToCollectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: AddToCollectionComponent, selector: "app-add-to-collection", inputs: { visible: "visible", rtlEnabled: "rtlEnabled", selectedItems: "selectedItems" }, outputs: { visibleChange: "visibleChange" }, viewQueries: [{ propertyName: "form", first: true, predicate: DxFormComponent, descendants: true }, { propertyName: "contentTemplate", first: true, predicate: ["contentTemplate"], descendants: true }, { propertyName: "actionsTemplate", first: true, predicate: ["actionsTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<!-- <dx-popup class=\"popUpParent\" [rtlEnabled]=\"rtlEnabled\" id=\"photo-popup\" [width]=\"500\" [height]=\"200\"\r\n (onShown)=\"loadItems()\" closeOnOutsideClick=\"true\" title=\"{{ '' | translate }}\"\r\n [(visible)]=\"visible\">\r\n\r\n</dx-popup>\r\n\r\n\r\n -->\r\n<ng-template #contentTemplate>\r\n\t<form>\r\n\t\t<dx-form\r\n\t\t\tclass=\"collection-form-wrapper\"\r\n\t\t\t#createForm\r\n\t\t\t[formData]=\"formData\"\r\n\t\t\t[disabled]=\"loading\"\r\n\t\t>\r\n\t\t\t<dxi-item editorType=\"dxTextBox\">\r\n\t\t\t\t<ng-select\r\n\t\t\t\t\t[items]=\"items$ | async\"\r\n\t\t\t\t\tbindLabel=\"displayLabel\"\r\n\t\t\t\t\t[addTag]=\"true\"\r\n\t\t\t\t\taddTagText=\"Add collection\"\r\n\t\t\t\t\t[multiple]=\"false\"\r\n\t\t\t\t\t[hideSelected]=\"true\"\r\n\t\t\t\t\t[minTermLength]=\"0\"\r\n\t\t\t\t\t[loading]=\"tagsLoading\"\r\n\t\t\t\t\ttypeToSearchText=\"search\"\r\n\t\t\t\t\t[typeahead]=\"tagsInput$\"\r\n\t\t\t\t\t[(ngModel)]=\"selectedTags\"\r\n\t\t\t\t\trequired\r\n\t\t\t\t\tplaceholder=\"{{ 'VOCABULARY.SELECT_ITEM' | translate }}\"\r\n\t\t\t\t\tname=\"selectedItem\"\r\n\t\t\t\t\t(change)=\"emitSelection($event)\"\r\n\t\t\t\t>\r\n\t\t\t\t</ng-select>\r\n\t\t\t</dxi-item>\r\n\t\t</dx-form>\r\n\t</form>\r\n</ng-template>\r\n\r\n<ng-template #actionsTemplate let-dialog=\"dialog\">\r\n\t<button\r\n\t\tclass=\"submission-button px-5\"\r\n\t\t(click)=\"dialog.executeAction(onFormCollectionSubmit, [$event])\"\r\n\t>\r\n\t\t{{ 'FILE_MANAGER.ADD' | translate }}\r\n\t</button>\r\n</ng-template>\r\n", styles: [""], components: [{ type: i4.DxFormComponent, selector: "dx-form", inputs: ["accessKey", "activeStateEnabled", "alignItemLabels", "alignItemLabelsInAllGroups", "colCount", "colCountByScreen", "customizeItem", "disabled", "elementAttr", "focusStateEnabled", "formData", "height", "hint", "hoverStateEnabled", "items", "labelLocation", "labelMode", "minColWidth", "optionalMark", "readOnly", "requiredMark", "requiredMessage", "rtlEnabled", "screenByWidth", "scrollingEnabled", "showColonAfterLabel", "showOptionalMark", "showRequiredMark", "showValidationSummary", "tabIndex", "validationGroup", "visible", "width"], outputs: ["onContentReady", "onDisposing", "onEditorEnterKey", "onFieldDataChanged", "onInitialized", "onOptionChanged", "accessKeyChange", "activeStateEnabledChange", "alignItemLabelsChange", "alignItemLabelsInAllGroupsChange", "colCountChange", "colCountByScreenChange", "customizeItemChange", "disabledChange", "elementAttrChange", "focusStateEnabledChange", "formDataChange", "heightChange", "hintChange", "hoverStateEnabledChange", "itemsChange", "labelLocationChange", "labelModeChange", "minColWidthChange", "optionalMarkChange", "readOnlyChange", "requiredMarkChange", "requiredMessageChange", "rtlEnabledChange", "screenByWidthChange", "scrollingEnabledChange", "showColonAfterLabelChange", "showOptionalMarkChange", "showRequiredMarkChange", "showValidationSummaryChange", "tabIndexChange", "validationGroupChange", "visibleChange", "widthChange"] }, { type: i5.DxiItemComponent, selector: "dxi-item", inputs: ["disabled", "html", "icon", "template", "text", "title", "titleTemplate", "visible", "onClick", "stylingMode", "type", "baseSize", "box", "ratio", "shrink", "elementAttr", "hint", "beginGroup", "closeMenuOnClick", "items", "selectable", "selected", "colSpan", "cssClass", "dataField", "editorOptions", "editorType", "helpText", "isRequired", "itemType", "label", "name", "validationRules", "visibleIndex", "alignItemLabels", "caption", "colCount", "colCountByScreen", "tabPanelOptions", "tabs", "badge", "tabTemplate", "buttonOptions", "horizontalAlignment", "verticalAlignment", "locateInMenu", "location", "menuItemTemplate", "options", "showText", "widget", "height", "width", "imageAlt", "imageSrc", "acceptedValues", "formatName", "formatValues", "key", "showChevron", "linkAttr", "url", "heightRatio", "widthRatio", "expanded", "hasItems", "id", "parentId"] }, { type: i6.NgSelectComponent, selector: "ng-select", inputs: ["markFirst", "dropdownPosition", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "bufferAmount", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "keyDownFn", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "bindLabel", "placeholder", "notFoundText", "typeToSearchText", "addTagText", "loadingText", "clearAllText", "virtualScroll", "openOnEnter", "appendTo", "bindValue", "appearance", "maxSelectedItems", "groupBy", "groupValue", "tabIndex", "typeahead"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }], directives: [{ type: i7.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i7.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i7.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i7.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { type: i7.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i7.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], pipes: { "async": i8.AsyncPipe, "translate": i9.TranslatePipe } });
|
|
123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: AddToCollectionComponent, decorators: [{
|
|
124
|
-
type: Component,
|
|
125
|
-
args: [{
|
|
126
|
-
selector: 'app-add-to-collection',
|
|
127
|
-
templateUrl: './add-to-collection.component.html',
|
|
128
|
-
styleUrls: ['./add-to-collection.component.scss']
|
|
129
|
-
}]
|
|
130
|
-
}], ctorParameters: function () { return [{ type: i1.FileManagerService }, { type: i2.CustomToastrService }, { type: i3.NuxeoDialogService }, { type: i0.Injector }]; }, propDecorators: { form: [{
|
|
131
|
-
type: ViewChild,
|
|
132
|
-
args: [DxFormComponent, { static: false }]
|
|
133
|
-
}], contentTemplate: [{
|
|
134
|
-
type: ViewChild,
|
|
135
|
-
args: ['contentTemplate']
|
|
136
|
-
}], actionsTemplate: [{
|
|
137
|
-
type: ViewChild,
|
|
138
|
-
args: ['actionsTemplate']
|
|
139
|
-
}], visible: [{
|
|
140
|
-
type: Input
|
|
141
|
-
}], visibleChange: [{
|
|
142
|
-
type: Output
|
|
143
|
-
}], rtlEnabled: [{
|
|
144
|
-
type: Input
|
|
145
|
-
}], selectedItems: [{
|
|
146
|
-
type: Input
|
|
147
|
-
}] } });
|
|
148
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRkLXRvLWNvbGxlY3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy9maWxlLW1hbmdlci9jb21wb25lbnRzL2FkZC10by1jb2xsZWN0aW9uL2FkZC10by1jb2xsZWN0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvZmlsZS1tYW5nZXIvY29tcG9uZW50cy9hZGQtdG8tY29sbGVjdGlvbi9hZGQtdG8tY29sbGVjdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ04sU0FBUyxFQUNULFlBQVksRUFFWixLQUFLLEVBR0wsTUFBTSxFQUdOLFNBQVMsRUFDVCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDckQsT0FBTyxFQUFFLE1BQU0sRUFBYyxFQUFFLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3ZELE9BQU8sRUFDTixZQUFZLEVBQ1osb0JBQW9CLEVBQ3BCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsR0FBRyxFQUVILE1BQU0sZ0JBQWdCLENBQUM7QUFJeEIsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlEQUF5RCxDQUFDO0FBQ3pGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtREFBbUQsQ0FBQzs7Ozs7Ozs7Ozs7QUFTbEYsTUFBTSxPQUFPLHdCQUF5QixTQUFRLGFBQWE7SUFnQzFELFlBQ1Msa0JBQXNDLEVBQ3BDLG1CQUF3QyxFQUMzQyxrQkFBc0MsRUFFN0MsUUFBa0I7UUFFbEIsS0FBSyxDQUFDLFFBQVEsQ0FBQyxDQUFD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QUNFLGVBQWU7c0JBQTVDLFNBQVM7dUJBQUMsaUJBQWlCO2dCQUV4QixPQUFPO3NCQURWLEtBQUs7Z0JBZU4sYUFBYTtzQkFEWixNQUFNO2dCQUdQLFVBQVU7c0JBRFQsS0FBSztnQkFHTixhQUFhO3NCQURaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xyXG5cdENvbXBvbmVudCxcclxuXHRFdmVudEVtaXR0ZXIsXHJcblx0SW5qZWN0b3IsXHJcblx0SW5wdXQsXHJcblx0T25DaGFuZ2VzLFxyXG5cdE9uSW5pdCxcclxuXHRPdXRwdXQsXHJcblx0U2ltcGxlQ2hhbmdlcyxcclxuXHRUZW1wbGF0ZVJlZixcclxuXHRWaWV3Q2hpbGRcclxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRHhGb3JtQ29tcG9uZW50IH0gZnJvbSAnZGV2ZXh0cmVtZS1hbmd1bGFyJztcclxuaW1wb3J0IHsgY29uY2F0LCBPYnNlcnZhYmxlLCBvZiwgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQge1xyXG5cdGRlYm91bmNlVGltZSxcclxuXHRkaXN0aW5jdFVudGlsQ2hhbmdlZCxcclxuXHRzd2l0Y2hNYXAsXHJcblx0Y2F0Y2hFcnJvcixcclxuXHR0YXAsXHJcblx0bWFwXHJcbn0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBDdXN0b21Ub2FzdHJTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vY3VzdG9tLXRvYXN0ci9zZXJ2aWNlcy9jdXN0b20tdG9hc3RyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBGaWxlTWFuYWdlclNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zaGFyZWQtc2VydmljZXMvZmlsZS1tYW5hZ2VyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBEaWFsb2dPcHRpb25zIH0gZnJvbSAnLi4vLi4vLi4vLi4vc2hhcmVkL2NvbXBvbmVudHMvbnV4ZW8tZGlhbG9nL21vZGVscy9kaWFsb2ctb3B0aW9uLm1vZGVsJztcclxuaW1wb3J0IHsgTmRmTnV4ZW9EaWFsb2cgfSBmcm9tICcuLi8uLi8uLi8uLi9zaGFyZWQvY29tcG9uZW50cy9udXhlby1kaWFsb2cvbnV4ZW8uZGlhbG9nJztcclxuaW1wb3J0IHsgQmFzZUNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uL3NoYXJlZC9jb21wb25lbnRzL2Jhc2UvYmFzZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBOdXhlb0RpYWxvZ1NlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zaGFyZWQvY29tcG9uZW50cy9udXhlby1kaWFsb2cvc2VydmljZXMvbnV4ZW8tZGlhbG9nLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBEaWFsb2dBY3Rpb25UeXBlIH0gZnJvbSAnLi4vLi4vLi4vLi4vc2hhcmVkL2NvbXBvbmVudHMvbnV4ZW8tZGlhbG9nL21vZGVscy9kaWFsb2ctb3B0aW9uLm1vZGVsJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG5cdHNlbGVjdG9yOiAnYXBwLWFkZC10by1jb2xsZWN0aW9uJyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vYWRkLXRvLWNvbGxlY3Rpb24uY29tcG9uZW50Lmh0bWwnLFxyXG5cdHN0eWxlVXJsczogWycuL2FkZC10by1jb2xsZWN0aW9uLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIEFkZFRvQ29sbGVjdGlvbkNvbXBvbmVudCBleHRlbmRzIEJhc2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG5cdEBWaWV3Q2hpbGQoRHhGb3JtQ29tcG9uZW50LCB7IHN0YXRpYzogZmFsc2UgfSkgZm9ybTogRHhGb3JtQ29tcG9uZW50O1xyXG5cdEBWaWV3Q2hpbGQoJ2NvbnRlbnRUZW1wbGF0ZScpIGNvbnRlbnRUZW1wbGF0ZSE6IFRlbXBsYXRlUmVmPGFueT47XHJcblx0QFZpZXdDaGlsZCgnYWN0aW9uc1RlbXBsYXRlJykgYWN0aW9uc1RlbXBsYXRlITogVGVtcGxhdGVSZWY8YW55PjtcclxuXHRASW5wdXQoKVxyXG5cdHNldCB2aXNpYmxlKHZhbHVlOiBhbnkpIHtcclxuXHRcdGlmICh0aGlzLl92aXNpYmxlID09PSB2YWx1ZSkge1xyXG5cdFx0XHRyZXR1cm47XHJcblx0XHR9XHJcblx0XHRpZiAodmFsdWUpIHtcclxuXHRcdFx0dGhpcy5vcGVuRGlhbG9nKCk7XHJcblx0XHR9XHJcblx0XHR0aGlzLl92aXNpYmxlID0gdmFsdWU7XHJcblx0XHR0aGlzLnZpc2libGVDaGFuZ2UuZW1pdCh0aGlzLl92aXNpYmxlKTtcclxuXHR9XHJcblx0Z2V0IHZpc2libGUoKSB7XHJcblx0XHRyZXR1cm4gdGhpcy5fdmlzaWJsZTtcclxuXHR9XHJcblx0QE91dHB1dCgpXHJcblx0dmlzaWJsZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG5cdEBJbnB1dCgpXHJcblx0cnRsRW5hYmxlZCA9IGZhbHNlO1xyXG5cdEBJbnB1dCgpXHJcblx0c2VsZWN0ZWRJdGVtczogYW55O1xyXG5cclxuXHRpc1NlbGVjdGVkOiBib29sZWFuID0gdHJ1ZTtcclxuXHRjb2xsZWN0aW9uaWQ6IGFueTtcclxuXHRzZWxlY3RlZFRhZ3M6IGFueTtcclxuXHRpdGVtcyQ6IE9ic2VydmFibGU8YW55W10+O1xyXG5cdHRhZ3NJbnB1dCQgPSBuZXcgU3ViamVjdDxzdHJpbmc+KCk7XHJcblx0dGFnc0xvYWRpbmcgPSBmYWxzZTtcclxuXHRfdmlzaWJsZSA9IGZhbHNlO1xyXG5cdGNvbnN0cnVjdG9yKFxyXG5cdFx0cHJpdmF0ZSBmaWxlTWFuYWdlclNlcnZpY2U6IEZpbGVNYW5hZ2VyU2VydmljZSxcclxuXHRcdHByb3RlY3RlZCBjdXN0b21Ub2FzdHJTZXJ2aWNlOiBDdXN0b21Ub2FzdHJTZXJ2aWNlLFxyXG5cdFx0cHVibGljIG51eGVvRGlhbG9nU2VydmljZTogTnV4ZW9EaWFsb2dTZXJ2aWNlLFxyXG5cclxuXHRcdGluamVjdG9yOiBJbmplY3RvclxyXG5cdCkge1xyXG5cdFx0c3VwZXIoaW5qZWN0b3IpO1xyXG5cdH1cclxuXHJcblx0bmdPbkluaXQoKTogdm9pZCB7fVxyXG5cclxuXHRvcGVuRGlhbG9nKCk6IHZvaWQge1xyXG5cdFx0Y29uc3Qgb3B0aW9uczogRGlhbG9nT3B0aW9ucyA9IHtcclxuXHRcdFx0Y29tcG9uZW50OiBOZGZOdXhlb0RpYWxvZyxcclxuXHRcdFx0Y29uZmlnOiB7XHJcblx0XHRcdFx0dGl0bGU6IHRoaXMudHJhbnNsYXRlU2VydmljZS5pbnN0YW50KCdGSUxFX01BTkFHRVIuQUREX1RPX0NPTExFQ1RJT04nKSxcclxuXHRcdFx0XHRjb250ZW50VGVtcGxhdGU6IHRoaXMuY29udGVudFRlbXBsYXRlLFxyXG5cdFx0XHRcdGFjdGlvbnNUZW1wbGF0ZTogdGhpcy5hY3Rpb25zVGVtcGxhdGVcclxuXHRcdFx0fVxyXG5cdFx0fTtcclxuXHRcdHRoaXMubnV4ZW9EaWFsb2dTZXJ2aWNlXHJcblx0XHRcdC5vcGVuKG9wdGlvbnMpXHJcblx0XHRcdC5hZnRlckNsb3NlZCgpXHJcblx0XHRcdC5zdWJzY3JpYmUoKHJlcykgPT4ge1xyXG5cdFx0XHRcdHRoaXMudmlzaWJsZSA9IGZhbHNlO1xyXG5cdFx0XHR9KTtcclxuXHR9XHJcblxyXG5cdGVtaXRTZWxlY3Rpb24oZXZlbnQpIHtcclxuXHRcdGlmICh0aGlzLmlzU2VsZWN0ZWQpIHtcclxuXHRcdFx0dGhpcy5maWxlTWFuYWdlclNlcnZpY2VcclxuXHRcdFx0XHQuY3JlYXRlTmV3Q29sbGVjdGlvbihldmVudC5kaXNwbGF5TGFiZWwpXHJcblx0XHRcdFx0LnN1YnNjcmliZSgocmVzKSA9PiB7XHJcblx0XHRcdFx0XHR0aGlzLmNvbGxlY3Rpb25pZCA9IHJlcy51aWQ7XHJcblx0XHRcdFx0fSk7XHJcblx0XHR9IGVsc2UgdGhpcy5jb2xsZWN0aW9uaWQgPSBldmVudC5pZDtcclxuXHR9XHJcblxyXG5cdGxvYWRJdGVtcygpIHtcclxuXHRcdGxldCBzZWFyY2h0ZXJtID0gJyc7XHJcblx0XHR0aGlzLmlzU2VsZWN0ZWQgPSBmYWxzZTtcclxuXHRcdGxldCBteWNhdGVnb3JpZXMgPSBbXTtcclxuXHRcdHRoaXMuaXRlbXMkID0gY29uY2F0KFxyXG5cdFx0XHR0aGlzLmZpbGVNYW5hZ2VyU2VydmljZS5nZXRDb2xsZWN0aW9uRnJvbVBQKHNlYXJjaHRlcm0pLnBpcGUoXHJcblx0XHRcdFx0c3dpdGNoTWFwKChyZXM6IGFueSkgPT4ge1xyXG5cdFx0XHRcdFx0cmVzLmVudHJpZXMubWFwKChlbnRyeSkgPT4ge1xyXG5cdFx0XHRcdFx0XHRteWNhdGVnb3JpZXMucHVzaCh7XHJcblx0XHRcdFx0XHRcdFx0ZGlzcGxheUxhYmVsOiBlbnRyeS50aXRsZSxcclxuXHRcdFx0XHRcdFx0XHRpZDogZW50cnkudWlkLFxyXG5cdFx0XHRcdFx0XHRcdHBhdGg6IGVudHJ5LnBhdGgsXHJcblx0XHRcdFx0XHRcdFx0aWNvbjogZW50cnkucHJvcGVydGllc1snY29tbW9uOmljb24nXVxyXG5cdFx0XHRcdFx0XHR9KTtcclxuXHRcdFx0XHRcdH0pO1xyXG5cdFx0XHRcdFx0cmV0dXJuIG9mKG15Y2F0ZWdvcmllcyk7XHJcblx0XHRcdFx0fSlcclxuXHRcdFx0KSwgLy8gZGVmYXVsdCBpdGVtc1xyXG5cdFx0XHR0aGlzLnRhZ3NJbnB1dCQucGlwZShcclxuXHRcdFx0XHRkZWJvdW5jZVRpbWUoMjAwKSxcclxuXHRcdFx0XHRkaXN0aW5jdFVudGlsQ2hhbmdlZCgpLFxyXG5cdFx0XHRcdHRhcCgoKSA9PiAodGhpcy50YWdzTG9hZGluZyA9IHRydWUpKSxcclxuXHRcdFx0XHRzd2l0Y2hNYXAoKHNlYXJjaHRlcm0pID0+IHtcclxuXHRcdFx0XHRcdHJldHVybiB0aGlzLmZpbGVNYW5hZ2VyU2VydmljZS5nZXRDb2xsZWN0aW9uRnJvbVBQKHNlYXJjaHRlcm0pLnBpcGUoXHJcblx0XHRcdFx0XHRcdGNhdGNoRXJyb3IoKCkgPT4gb2YoW10pKSwgLy8gZW1wdHkgbGlzdCBvbiBlcnJvclxyXG5cdFx0XHRcdFx0XHRzd2l0Y2hNYXAoKHNlYXJjaENhdCkgPT4ge1xyXG5cdFx0XHRcdFx0XHRcdGxldCBteUluZXJDYXRlZyA9IFtdO1xyXG5cdFx0XHRcdFx0XHRcdHRoaXMudGFnc0xvYWRpbmcgPSBmYWxzZTtcclxuXHRcdFx0XHRcdFx0XHR0aGlzLmlzU2VsZWN0ZWQgPSB0cnVlO1xyXG5cdFx0XHRcdFx0XHRcdHNlYXJjaENhdC5lbnRyaWVzLm1hcCgoZW50cnkpID0+IHtcclxuXHRcdFx0XHRcdFx0XHRcdG15SW5lckNhdGVnLnB1c2goe1xyXG5cdFx0XHRcdFx0XHRcdFx0XHRkaXNwbGF5TGFiZWw6IGVudHJ5LnRpdGxlLFxyXG5cdFx0XHRcdFx0XHRcdFx0XHRpZDogZW50cnkudWlkLFxyXG5cdFx0XHRcdFx0XHRcdFx0XHRwYXRoOiBlbnRyeS5wYXRoLFxyXG5cdFx0XHRcdFx0XHRcdFx0XHRpY29uOiBlbnRyeS5wcm9wZXJ0aWVzWydjb21tb246aWNvbiddXHJcblx0XHRcdFx0XHRcdFx0XHR9KTtcclxuXHRcdFx0XHRcdFx0XHR9KTtcclxuXHRcdFx0XHRcdFx0XHRyZXR1cm4gb2YobXlJbmVyQ2F0ZWcpO1xyXG5cdFx0XHRcdFx0XHR9KVxyXG5cdFx0XHRcdFx0KTtcclxuXHRcdFx0XHR9KVxyXG5cdFx0XHQpXHJcblx0XHQpO1xyXG5cdH1cclxuXHJcblx0b25Gb3JtQ29sbGVjdGlvblN1Ym1pdDogRGlhbG9nQWN0aW9uVHlwZSA9IChlKSA9PiB7XHJcblx0XHRlLnByZXZlbnREZWZhdWx0KCk7XHJcblx0XHR0aGlzLmxvYWRpbmcgPSB0cnVlO1xyXG5cdFx0cmV0dXJuIHRoaXMuZmlsZU1hbmFnZXJTZXJ2aWNlXHJcblx0XHRcdC5hZGRUb0NvbGxlY3Rpb24odGhpcy5zZWxlY3RlZEl0ZW1zLCB0aGlzLmNvbGxlY3Rpb25pZClcclxuXHRcdFx0LnBpcGUoXHJcblx0XHRcdFx0dGFwKFxyXG5cdFx0XHRcdFx0KHJlcykgPT4ge1xyXG5cdFx0XHRcdFx0XHR0aGlzLmxvYWRpbmcgPSBmYWxzZTtcclxuXHRcdFx0XHRcdFx0dGhpcy5mb3JtLmluc3RhbmNlLnJlc2V0VmFsdWVzKCk7XHJcblx0XHRcdFx0XHRcdHRoaXMuc2VsZWN0ZWRUYWdzID0gbnVsbDtcclxuXHRcdFx0XHRcdFx0dGhpcy52aXNpYmxlID0gZmFsc2U7XHJcblx0XHRcdFx0XHRcdHRoaXMuY3VzdG9tVG9hc3RyU2VydmljZS5zaG93KFxyXG5cdFx0XHRcdFx0XHRcdCdzdWNjZXNzJyxcclxuXHRcdFx0XHRcdFx0XHQnVE9BU1RFUi5TVUNDRVNTJyxcclxuXHRcdFx0XHRcdFx0XHQnVE9BU1RFUi5ET0NVTUVOVF9BRERFRF9UT19DT0xMRUNUSU9OJ1xyXG5cdFx0XHRcdFx0XHQpO1xyXG5cdFx0XHRcdFx0fSxcclxuXHRcdFx0XHRcdChlcnIpID0+IHtcclxuXHRcdFx0XHRcdFx0dGhpcy5sb2FkaW5nID0gZmFsc2U7XHJcblx0XHRcdFx0XHRcdHRoaXMuY3VzdG9tVG9hc3RyU2VydmljZS5zaG93KFxyXG5cdFx0XHRcdFx0XHRcdCdlcnJvcicsXHJcblx0XHRcdFx0XHRcdFx0J1RPQVNURVIuRVJST1InLFxyXG5cdFx0XHRcdFx0XHRcdCdUT0FTVEVSLkRPQ1VNRU5UX0FEREVEX1RPX0NPTExFQ1RJT05fRVJST1InXHJcblx0XHRcdFx0XHRcdCk7XHJcblx0XHRcdFx0XHR9XHJcblx0XHRcdFx0KVxyXG5cdFx0XHQpO1xyXG5cdH07XHJcbn1cclxuIiwiPCEtLSA8ZHgtcG9wdXAgY2xhc3M9XCJwb3BVcFBhcmVudFwiIFtydGxFbmFibGVkXT1cInJ0bEVuYWJsZWRcIiBpZD1cInBob3RvLXBvcHVwXCIgW3dpZHRoXT1cIjUwMFwiIFtoZWlnaHRdPVwiMjAwXCJcclxuICAgIChvblNob3duKT1cImxvYWRJdGVtcygpXCIgY2xvc2VPbk91dHNpZGVDbGljaz1cInRydWVcIiB0aXRsZT1cInt7ICcnIHwgdHJhbnNsYXRlIH19XCJcclxuICAgIFsodmlzaWJsZSldPVwidmlzaWJsZVwiPlxyXG5cclxuPC9keC1wb3B1cD5cclxuXHJcblxyXG4gLS0+XHJcbjxuZy10ZW1wbGF0ZSAjY29udGVudFRlbXBsYXRlPlxyXG5cdDxmb3JtPlxyXG5cdFx0PGR4LWZvcm1cclxuXHRcdFx0Y2xhc3M9XCJjb2xsZWN0aW9uLWZvcm0td3JhcHBlclwiXHJcblx0XHRcdCNjcmVhdGVGb3JtXHJcblx0XHRcdFtmb3JtRGF0YV09XCJmb3JtRGF0YVwiXHJcblx0XHRcdFtkaXNhYmxlZF09XCJsb2FkaW5nXCJcclxuXHRcdD5cclxuXHRcdFx0PGR4aS1pdGVtIGVkaXRvclR5cGU9XCJkeFRleHRCb3hcIj5cclxuXHRcdFx0XHQ8bmctc2VsZWN0XHJcblx0XHRcdFx0XHRbaXRlbXNdPVwiaXRlbXMkIHwgYXN5bmNcIlxyXG5cdFx0XHRcdFx0YmluZExhYmVsPVwiZGlzcGxheUxhYmVsXCJcclxuXHRcdFx0XHRcdFthZGRUYWddPVwidHJ1ZVwiXHJcblx0XHRcdFx0XHRhZGRUYWdUZXh0PVwiQWRkIGNvbGxlY3Rpb25cIlxyXG5cdFx0XHRcdFx0W211bHRpcGxlXT1cImZhbHNlXCJcclxuXHRcdFx0XHRcdFtoaWRlU2VsZWN0ZWRdPVwidHJ1ZVwiXHJcblx0XHRcdFx0XHRbbWluVGVybUxlbmd0aF09XCIwXCJcclxuXHRcdFx0XHRcdFtsb2FkaW5nXT1cInRhZ3NMb2FkaW5nXCJcclxuXHRcdFx0XHRcdHR5cGVUb1NlYXJjaFRleHQ9XCJzZWFyY2hcIlxyXG5cdFx0XHRcdFx0W3R5cGVhaGVhZF09XCJ0YWdzSW5wdXQkXCJcclxuXHRcdFx0XHRcdFsobmdNb2RlbCldPVwic2VsZWN0ZWRUYWdzXCJcclxuXHRcdFx0XHRcdHJlcXVpcmVkXHJcblx0XHRcdFx0XHRwbGFjZWhvbGRlcj1cInt7ICdWT0NBQlVMQVJZLlNFTEVDVF9JVEVNJyB8IHRyYW5zbGF0ZSB9fVwiXHJcblx0XHRcdFx0XHRuYW1lPVwic2VsZWN0ZWRJdGVtXCJcclxuXHRcdFx0XHRcdChjaGFuZ2UpPVwiZW1pdFNlbGVjdGlvbigkZXZlbnQpXCJcclxuXHRcdFx0XHQ+XHJcblx0XHRcdFx0PC9uZy1zZWxlY3Q+XHJcblx0XHRcdDwvZHhpLWl0ZW0+XHJcblx0XHQ8L2R4LWZvcm0+XHJcblx0PC9mb3JtPlxyXG48L25nLXRlbXBsYXRlPlxyXG5cclxuPG5nLXRlbXBsYXRlICNhY3Rpb25zVGVtcGxhdGUgbGV0LWRpYWxvZz1cImRpYWxvZ1wiPlxyXG5cdDxidXR0b25cclxuXHRcdGNsYXNzPVwic3VibWlzc2lvbi1idXR0b24gcHgtNVwiXHJcblx0XHQoY2xpY2spPVwiZGlhbG9nLmV4ZWN1dGVBY3Rpb24ob25Gb3JtQ29sbGVjdGlvblN1Ym1pdCwgWyRldmVudF0pXCJcclxuXHQ+XHJcblx0XHR7eyAnRklMRV9NQU5BR0VSLkFERCcgfCB0cmFuc2xhdGUgfX1cclxuXHQ8L2J1dHRvbj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
|
|
@@ -1,264 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "../../../../shared-services/file-manager.service";
|
|
4
|
-
import * as i2 from "../../../../shared-services/user.service";
|
|
5
|
-
import * as i3 from "../../../custom-toastr/services/custom-toastr.service";
|
|
6
|
-
import * as i4 from "../../../../core/services/user/user-preferences.service";
|
|
7
|
-
import * as i5 from "@angular/material/icon";
|
|
8
|
-
import * as i6 from "@angular/material/progress-bar";
|
|
9
|
-
import * as i7 from "@angular/material/checkbox";
|
|
10
|
-
import * as i8 from "../../../display-suitable-icon/display-suitable-icon/display-suitable-icon.component";
|
|
11
|
-
import * as i9 from "@angular/material/tooltip";
|
|
12
|
-
import * as i10 from "@angular/common";
|
|
13
|
-
import * as i11 from "@angular/forms";
|
|
14
|
-
import * as i12 from "@ngx-translate/core";
|
|
15
|
-
export class ClipboardComponent {
|
|
16
|
-
constructor(fileManagerService, userService, customToastrService, userPreferenceService) {
|
|
17
|
-
this.fileManagerService = fileManagerService;
|
|
18
|
-
this.userService = userService;
|
|
19
|
-
this.customToastrService = customToastrService;
|
|
20
|
-
this.userPreferenceService = userPreferenceService;
|
|
21
|
-
this.onClipboardClose = new EventEmitter();
|
|
22
|
-
this.onRefreshFolderTree = new EventEmitter();
|
|
23
|
-
this.clipboardItems = []; // array of id to items in clipboard
|
|
24
|
-
this.preventedGroups = [];
|
|
25
|
-
this.clipboardDocments = []; // array of documents with full details of items in clipboard
|
|
26
|
-
this.enableCopy = false;
|
|
27
|
-
this.enableMove = false;
|
|
28
|
-
this.clipboardLoading = false;
|
|
29
|
-
this.documentSelectedInClipboard = [];
|
|
30
|
-
}
|
|
31
|
-
ngOnInit() {
|
|
32
|
-
this.refreshClipSubscription = this.fileManagerService.onRefreshClipboard.subscribe(res => {
|
|
33
|
-
this.openClipboard();
|
|
34
|
-
});
|
|
35
|
-
this.openClipboard();
|
|
36
|
-
}
|
|
37
|
-
ngOnDestroy() {
|
|
38
|
-
this.refreshClipSubscription ? this.refreshClipSubscription.unsubscribe() : null;
|
|
39
|
-
}
|
|
40
|
-
closeClipboard() {
|
|
41
|
-
this.onClipboardClose.emit();
|
|
42
|
-
this.clipboardDocments = [];
|
|
43
|
-
}
|
|
44
|
-
openClipboard() {
|
|
45
|
-
this.enableCopy = false;
|
|
46
|
-
this.enableMove = false;
|
|
47
|
-
this.clipboardLoading = true;
|
|
48
|
-
if (this.myCurrecntFolderData.entity.properties['dmsfolder:documentTypeCode'] && this.myCurrecntFolderData.entity.properties['dmsfolder:documentTypeCode'] !== '08112021') {
|
|
49
|
-
// get accepted childerns for my current folder
|
|
50
|
-
// if (this.subtypesService.storedSubtypes[this.myCurrecntFolderData.entity.uid]) {
|
|
51
|
-
// this.myTargetFolderAcceptedChildrens = this.subtypesService.storedSubtypes[this.myCurrecntFolderData.entity.uid];
|
|
52
|
-
// } else {
|
|
53
|
-
this.fileManagerService.getClipboardAcceptedTypes(this.myCurrecntFolderData.entity.uid).subscribe(res => {
|
|
54
|
-
this.myTargetFolderAcceptedChildrens = res;
|
|
55
|
-
}, error => {
|
|
56
|
-
this.clipboardLoading = false;
|
|
57
|
-
this.clipboardDocments = [];
|
|
58
|
-
});
|
|
59
|
-
// }
|
|
60
|
-
}
|
|
61
|
-
if (this.clipboardItems.length > 0) {
|
|
62
|
-
this.fileManagerService.getClipboardDocuments(this.clipboardItems).subscribe(res => {
|
|
63
|
-
res.map(document => {
|
|
64
|
-
document['canCopyToTarget'] = (this.canPerformActionInsideTarget(document) && this.checkIfNotTheSameParent(document) && document.canCopy);
|
|
65
|
-
document['canMoveToTarget'] = (this.canPerformActionInsideTarget(document) && this.checkIfNotTheSameParent(document) && document.canMove);
|
|
66
|
-
});
|
|
67
|
-
this.clipboardDocments = res;
|
|
68
|
-
console.log(this.clipboardDocments);
|
|
69
|
-
this.clipboardLoading = false;
|
|
70
|
-
});
|
|
71
|
-
}
|
|
72
|
-
else {
|
|
73
|
-
this.clipboardDocments = [];
|
|
74
|
-
this.clipboardLoading = false;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
// prevent copying or moving the file to its same place since it is prevented
|
|
78
|
-
// prevent copying or moving the folder inside it self
|
|
79
|
-
checkIfNotTheSameParent(document) {
|
|
80
|
-
// let directory = this.getCurrentDirectory();
|
|
81
|
-
if (document.parentRef !== this.directory.dataItem.id && document.uid !== this.directory.dataItem.id) {
|
|
82
|
-
return true;
|
|
83
|
-
}
|
|
84
|
-
else {
|
|
85
|
-
return false;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
deletefromClipboard(document) {
|
|
89
|
-
let myindex = -1;
|
|
90
|
-
this.clipboardItems.map((id, index) => {
|
|
91
|
-
if (document.uid === id) {
|
|
92
|
-
myindex = index;
|
|
93
|
-
}
|
|
94
|
-
});
|
|
95
|
-
this.clipboardItems.splice(myindex, 1);
|
|
96
|
-
this.customToastrService.show('success', 'TOASTER.SUCCESS', "TOASTER.removed_from_clipboard");
|
|
97
|
-
// let directory = this.getCurrentDirectory();
|
|
98
|
-
// let id =
|
|
99
|
-
// directory.dataItem === undefined
|
|
100
|
-
// ? this.mainFolder
|
|
101
|
-
// : this.getCurrentFolderId(directory);
|
|
102
|
-
// this.reinitializeFolderTree(id, directory);
|
|
103
|
-
this.onRefreshFolderTree.emit();
|
|
104
|
-
this.openClipboard();
|
|
105
|
-
this.userPreferenceService.set('clipboardItems', JSON.stringify(this.clipboardItems));
|
|
106
|
-
}
|
|
107
|
-
// function to check if i can perform action on that target folder or not
|
|
108
|
-
canPerformActionInsideTarget(document) {
|
|
109
|
-
var _a;
|
|
110
|
-
//check if target is 'other' type folder or dms folder
|
|
111
|
-
if (this.myCurrecntFolderData.entity.properties['dmsfolder:documentTypeCode'] === '08112021' && !this.checkIfInPreventedGroups(this.myCurrecntFolderData.entity.path)) {
|
|
112
|
-
// if my folder is from type others and not in prevented groups
|
|
113
|
-
return true;
|
|
114
|
-
}
|
|
115
|
-
else if (this.myCurrecntFolderData.entity.properties['dmsfolder:documentTypeCode'] && this.myCurrecntFolderData.entity.properties['dmsfolder:documentTypeCode'] !== '08112021') {
|
|
116
|
-
//if my folder has code and was not other type folder then check for accepted chilrdrn for that folder to contain this file type
|
|
117
|
-
if (document.isFile === 'File') {
|
|
118
|
-
if (this.myTargetFolderAcceptedChildrens.contextParameters &&
|
|
119
|
-
this.myTargetFolderAcceptedChildrens.contextParameters.accepted_children && Array.isArray(this.myTargetFolderAcceptedChildrens.contextParameters.accepted_children) &&
|
|
120
|
-
this.myTargetFolderAcceptedChildrens.contextParameters.accepted_children.indexOf(document.properties['gdoc:documentTypeCode']) > -1) {
|
|
121
|
-
return true;
|
|
122
|
-
}
|
|
123
|
-
else {
|
|
124
|
-
return false;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
else {
|
|
128
|
-
if (this.myTargetFolderAcceptedChildrens.contextParameters &&
|
|
129
|
-
this.myTargetFolderAcceptedChildrens.contextParameters.accepted_children && Array.isArray(this.myTargetFolderAcceptedChildrens.contextParameters.accepted_children) &&
|
|
130
|
-
((_a = this.myTargetFolderAcceptedChildrens.contextParameters) === null || _a === void 0 ? void 0 : _a.accepted_children.indexOf(document.properties['dmsfolder:documentTypeCode'])) > -1) {
|
|
131
|
-
return true;
|
|
132
|
-
}
|
|
133
|
-
else {
|
|
134
|
-
return false;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
else {
|
|
139
|
-
// prevent action to this target
|
|
140
|
-
return false;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
// function to check if this path not belong to group that is prevented from creating folder of type others
|
|
144
|
-
checkIfInPreventedGroups(path) {
|
|
145
|
-
// if in prevented froup rturn true else return false
|
|
146
|
-
console.log(path);
|
|
147
|
-
let myDepartment = this.userService.getUserDepartmentFromPath(path);
|
|
148
|
-
let exist = this.preventedGroups.indexOf(myDepartment) > -1 ? true : false;
|
|
149
|
-
return exist;
|
|
150
|
-
}
|
|
151
|
-
copyFromInsideClipboard() {
|
|
152
|
-
let clipboardSelectedItems = [];
|
|
153
|
-
let clipboardSelectedItemsLength = 0;
|
|
154
|
-
// seperate selected items in seperate array
|
|
155
|
-
this.clipboardDocments.map((doc, index) => {
|
|
156
|
-
// can't copy file in the same place it exist and can't copy folder inside it self
|
|
157
|
-
if (doc.isSelected && doc.parentRef !== this.directory.dataItem.id && doc.uid !== this.directory.dataItem.id) {
|
|
158
|
-
clipboardSelectedItems.push(doc.uid);
|
|
159
|
-
}
|
|
160
|
-
});
|
|
161
|
-
if (clipboardSelectedItems.length > 0) {
|
|
162
|
-
this.clipboardLoading = true;
|
|
163
|
-
// this.currentPath = '';
|
|
164
|
-
this.fileManagerService
|
|
165
|
-
.copyTo({ id: this.directory.dataItem.id, name: this.directory.dataItem.name }, clipboardSelectedItems.toString())
|
|
166
|
-
.subscribe((res) => {
|
|
167
|
-
// remove selected items from clipboard after action is done
|
|
168
|
-
this.removeItemsAfterActionDone(clipboardSelectedItems);
|
|
169
|
-
this.clipboardLoading = false;
|
|
170
|
-
this.onClipboardClose.emit();
|
|
171
|
-
this.onRefreshFolderTree.emit();
|
|
172
|
-
this.customToastrService.show('success', 'TOASTER.SUCCESS', 'TOASTER.DOCUMENT_COPIED');
|
|
173
|
-
}, (err) => {
|
|
174
|
-
this.clipboardLoading = false;
|
|
175
|
-
this.customToastrService.show('error', 'TOASTER.ERROR', 'TOASTER.DOCUMENT_COPIED_ERROR');
|
|
176
|
-
});
|
|
177
|
-
}
|
|
178
|
-
else {
|
|
179
|
-
this.customToastrService.show('error', 'TOASTER.ERROR', 'TOASTER.DOCUMENT_COPIED_DESTINATION_ERROR');
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
moveFromInsideClipboard() {
|
|
183
|
-
let clipboardSelectedItems = [];
|
|
184
|
-
let clipboardSelectedItemsLength = 0;
|
|
185
|
-
// seperate selected items in seperate array
|
|
186
|
-
this.clipboardDocments.map((doc, index) => {
|
|
187
|
-
// can't move file in the same place it exist and can't move folder inside it self
|
|
188
|
-
if (doc.isSelected && doc.parentRef !== this.directory.dataItem.id && doc.uid !== this.directory.dataItem.id) {
|
|
189
|
-
clipboardSelectedItems.push(doc.uid);
|
|
190
|
-
}
|
|
191
|
-
});
|
|
192
|
-
if (clipboardSelectedItems.length > 0) {
|
|
193
|
-
this.clipboardLoading = true;
|
|
194
|
-
this.fileManagerService
|
|
195
|
-
.moveTo({ id: this.directory.dataItem.id, name: this.directory.dataItem.name }, clipboardSelectedItems.toString())
|
|
196
|
-
.subscribe((res) => {
|
|
197
|
-
// remove selected items from clipboard after action is done
|
|
198
|
-
this.removeItemsAfterActionDone(clipboardSelectedItems);
|
|
199
|
-
this.clipboardLoading = false;
|
|
200
|
-
this.onClipboardClose.emit();
|
|
201
|
-
this.onRefreshFolderTree.emit();
|
|
202
|
-
this.customToastrService.show('success', 'TOASTER.SUCCESS', 'TOASTER.DOCUMENT_MOVED');
|
|
203
|
-
}, (err) => {
|
|
204
|
-
this.clipboardLoading = false;
|
|
205
|
-
this.customToastrService.show('error', 'TOASTER.ERROR', 'TOASTER.DOCUMENT_MOVED_ERROR');
|
|
206
|
-
});
|
|
207
|
-
}
|
|
208
|
-
else
|
|
209
|
-
this.customToastrService.show('error', 'TOASTER.ERROR', 'TOASTER.DOCUMENT_MOVED_DESTINATION_ERROR');
|
|
210
|
-
}
|
|
211
|
-
removeItemsAfterActionDone(selectedItems) {
|
|
212
|
-
this.clipboardItems = this.clipboardItems.filter(function (el) {
|
|
213
|
-
return !selectedItems.includes(el);
|
|
214
|
-
});
|
|
215
|
-
this.userPreferenceService.set('clipboardItems', JSON.stringify(this.clipboardItems));
|
|
216
|
-
}
|
|
217
|
-
checking() {
|
|
218
|
-
this.enableCopy = false;
|
|
219
|
-
this.enableMove = false;
|
|
220
|
-
this.documentSelectedInClipboard = [];
|
|
221
|
-
// console.log(this.clipboardDocments);
|
|
222
|
-
this.clipboardDocments.map(document => {
|
|
223
|
-
// wokring with only selected documents
|
|
224
|
-
if (document.isSelected === true) {
|
|
225
|
-
// document['canCopyToTarget'] = (this.canPerformActionInsideTarget(document) && document.canCopy);
|
|
226
|
-
// document['canMoveToTarget'] = (this.canPerformActionInsideTarget(document) && document.canMove)
|
|
227
|
-
this.documentSelectedInClipboard.push(document);
|
|
228
|
-
}
|
|
229
|
-
});
|
|
230
|
-
if (this.documentSelectedInClipboard.length > 0) {
|
|
231
|
-
this.enableCopy = this.documentSelectedInClipboard.every(item => {
|
|
232
|
-
return item.canCopyToTarget === true;
|
|
233
|
-
});
|
|
234
|
-
this.enableMove = this.documentSelectedInClipboard.every(item => {
|
|
235
|
-
return item.canMoveToTarget === true;
|
|
236
|
-
});
|
|
237
|
-
}
|
|
238
|
-
console.log(this.documentSelectedInClipboard);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
ClipboardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ClipboardComponent, deps: [{ token: i1.FileManagerService }, { token: i2.UserService }, { token: i3.CustomToastrService }, { token: i4.UserPreferencesService }], target: i0.ɵɵFactoryTarget.Component });
|
|
242
|
-
ClipboardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ClipboardComponent, selector: "lib-clipboard", inputs: { clipboardItems: "clipboardItems", myCurrecntFolderData: "myCurrecntFolderData", preventedGroups: "preventedGroups", directory: "directory" }, outputs: { onClipboardClose: "onClipboardClose", onRefreshFolderTree: "onRefreshFolderTree" }, ngImport: i0, template: "<div class=\"clipboard-side-section relative\">\r\n\r\n <div class=\"p-3 h-full\">\r\n <div class=\"clipboard-header flex justify-between items-center border-b-2\">\r\n <span class=\"flex text-gray-500 font-bold items-center\">\r\n <span class=\"text-4xl bi bi-clipboard\"></span>\r\n <span class=\"mx-2 text-xl\">{{'clipboard' | translate}}</span>\r\n </span>\r\n <mat-icon class=\"close-icon text-gray-500 cursor-pointer\" (click)=\"closeClipboard()\"\r\n [matTooltip]=\"'BUTTONS.CLOSE' | translate\">close</mat-icon>\r\n </div>\r\n <!-- <div class=\"h-full font-bold d-flex justify-center items-center\" *ngIf=\"clipboardLoading\">\r\n {{ \"loading\" | translate }}\r\n </div> -->\r\n <div class=\"w-full h-px bg-gray-200 mb-3\" *ngIf=\"clipboardLoading\">\r\n <mat-progress-bar mode=\"indeterminate\"></mat-progress-bar>\r\n </div>\r\n <div class=\"clipboard-content flex flex-col justify-between items-between\">\r\n <div class=\"h-full flex justify-center items-center text-gray-500\"\r\n *ngIf=\"clipboardDocments.length === 0\">{{'no_clipboard_items' | translate}}</div>\r\n\r\n <div class=\"px-2 h-5/6 overflow-y-auto\" *ngIf=\"clipboardDocments.length > 0\">\r\n <div class=\"border-b-2\" *ngFor=\"let document of clipboardDocments\">\r\n <div class=\"py-1 w-82 flex items-center justify-between\">\r\n <div class=\"flex items-center w-5/6\">\r\n <mat-checkbox [(ngModel)]=\"document.isSelected\" (change)=\"checking()\"> </mat-checkbox>\r\n <div class=\"flex w-full\">\r\n <!-- <title-with-icon class=\"w-1/6 -my-1.5\" [context]=\"document\"\r\n [showTitle]=\"false\"></title-with-icon> -->\r\n <app-display-suitable-icon class=\"mx-1\" [data]=\"document\" [size]=\"'40px'\"></app-display-suitable-icon>\r\n\r\n <!-- -->\r\n <div *ngIf=\"document.isFile === 'File'\"\r\n class=\"justify-center flex flex-col flex-1 flex-grow-0 w-5/6\">\r\n <div class=\"text-base text-gray-500 font-bold truncate\"\r\n [title]=\"document.properties?.['file:content']?.['name']\"\r\n [alt]=\"document.properties?.['file:content']?.['name']\">\r\n {{document['title']}}\r\n </div>\r\n <div class=\"text-gray-500 text-sm text-nowrap\">\r\n {{((document.properties?.['file:content']?.['length']) / (1024 *\r\n 1024)).toFixed(2) }}\r\n MB\r\n </div>\r\n </div>\r\n <div class=\"\r\n d-flex\r\n items-center\r\n text-base text-gray-500\r\n font-bold\r\n \" *ngIf=\"document.isFile === 'Folder'\">\r\n {{ document?.title }}\r\n </div>\r\n </div>\r\n </div>\r\n <span [matTooltip]=\"'BUTTONS.REMOVE_CLIPBOARD' | translate\"\r\n class=\"cursor-pointer w-5 h-5 rounded-full border-2 flex justify-center items-center border-gray-500 \"\r\n (click)=\"deletefromClipboard(document)\">\r\n <span class=\"text-gray-500 bi bi-x text-lg flex items-center\"></span>\r\n </span>\r\n </div>\r\n <div class=\"text-md text-gray-500 text-center my-2\">\r\n <span *ngIf=\"document.canCopyToTarget && !document.canMoveToTarget\">{{'can_copy_only' |\r\n translate}}</span>\r\n <span *ngIf=\"!document.canCopyToTarget && document.canMoveToTarget\">{{'can_move_only' |\r\n translate}}</span>\r\n <span *ngIf=\"document.canCopyToTarget && document.canMoveToTarget\">{{'can_copy_and_move' |\r\n translate}}</span>\r\n <span\r\n *ngIf=\"!document.canCopyToTarget && !document.canMoveToTarget\">{{'can_not_copy_and_move'\r\n | translate}}</span>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n <div class=\"h-1/6 flex w-full justify-center items-center\">\r\n <button class=\"submission-button mx-2\" [disabled]=\"!enableCopy\"\r\n (click)=\"copyFromInsideClipboard()\">{{'BUTTONS.COPY' | translate}}</button>\r\n <button class=\"submission-button mx-2\" [disabled]=\"!enableMove\"\r\n (click)=\"moveFromInsideClipboard()\">{{'BUTTONS.MOVE' | translate}}</button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"bg-transparent absolute top-0 bottom-0 left-0 right-0 \" *ngIf=\"clipboardLoading\">\r\n\r\n </div>\r\n</div>", styles: [".clipboard-side-section{width:0px;overflow-x:hidden;height:91vh;background-color:#fff;overflow:hidden;border:1px solid lightgray;z-index:999;transition:.1s ease-in-out;border-bottom:none}.clipboard-side-section .clipboard-header{height:60px}.clipboard-side-section .clipboard-content{height:calc(100% - 60px)}\n"], components: [{ type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i6.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "mode", "value", "bufferValue"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { type: i7.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex", "aria-label", "aria-labelledby", "id", "labelPosition", "name", "required", "checked", "disabled", "indeterminate", "aria-describedby", "value"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { type: i8.DisplaySuitableIconComponent, selector: "app-display-suitable-icon", inputs: ["data", "size", "dataType", "archive"] }], directives: [{ type: i9.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltipPosition", "matTooltipDisabled", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i10.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i11.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], pipes: { "translate": i12.TranslatePipe }, encapsulation: i0.ViewEncapsulation.None });
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ClipboardComponent, decorators: [{
|
|
244
|
-
type: Component,
|
|
245
|
-
args: [{
|
|
246
|
-
selector: 'lib-clipboard',
|
|
247
|
-
templateUrl: './clipboard.component.html',
|
|
248
|
-
styleUrls: ['./clipboard.component.scss'],
|
|
249
|
-
encapsulation: ViewEncapsulation.None
|
|
250
|
-
}]
|
|
251
|
-
}], ctorParameters: function () { return [{ type: i1.FileManagerService }, { type: i2.UserService }, { type: i3.CustomToastrService }, { type: i4.UserPreferencesService }]; }, propDecorators: { onClipboardClose: [{
|
|
252
|
-
type: Output
|
|
253
|
-
}], onRefreshFolderTree: [{
|
|
254
|
-
type: Output
|
|
255
|
-
}], clipboardItems: [{
|
|
256
|
-
type: Input
|
|
257
|
-
}], myCurrecntFolderData: [{
|
|
258
|
-
type: Input
|
|
259
|
-
}], preventedGroups: [{
|
|
260
|
-
type: Input
|
|
261
|
-
}], directory: [{
|
|
262
|
-
type: Input
|
|
263
|
-
}] } });
|
|
264
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xpcGJvYXJkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvZmlsZS1tYW5nZXIvY29tcG9uZW50cy9jbGlwYm9hcmQvY2xpcGJvYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvZmlsZS1tYW5nZXIvY29tcG9uZW50cy9jbGlwYm9hcmQvY2xpcGJvYXJkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBcUIsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7Ozs7Ozs7OztBQWE3RyxNQUFNLE9BQU8sa0JBQWtCO0lBaUI3QixZQUFvQixrQkFBc0MsRUFDaEQsV0FBd0IsRUFDeEIsbUJBQXdDLEVBQ3hDLHFCQUE2QztRQUhuQyx1QkFBa0IsR0FBbEIsa0JBQWtCLENBQW9CO1FBQ2hELGdCQUFXLEdBQVgsV0FBVyxDQUFhO1FBQ3hCLHdCQUFtQixHQUFuQixtQkFBbUIsQ0FBcUI7UUFDeEMsMEJBQXFCLEdBQXJCLHFCQUFxQixDQUF3QjtRQWxCN0MscUJBQWdCLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUN0Qyx3QkFBbUIsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBRTFDLG1CQUFjLEdBQUcsRUFBRSxDQUFDLENBQUMsb0NBQW9DO1FBRXpELG9CQUFlLEdBQUcsRUFBRSxDQUFDO1FBRzlCLHNCQUFpQixHQUFHLEVBQUUsQ0FBQyxDQUFDLDZEQUE2RDtRQUNyRixlQUFVLEdBQUcsS0FBSyxDQUFDO1FBQ25CLGVBQVUsR0FBRyxL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QUNuRyxrR0FBa0c7Z0JBQ2xHLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUE7YUFDaEQ7UUFDSCxDQUFDLENBQUMsQ0FBQTtRQUNGLElBQUksSUFBSSxDQUFDLDJCQUEyQixDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDL0MsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsMkJBQTJCLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxFQUFFO2dCQUM5RCxPQUFPLElBQUksQ0FBQyxlQUFlLEtBQUssSUFBSSxDQUFDO1lBQ3ZDLENBQUMsQ0FBQyxDQUFBO1lBQ0YsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsMkJBQTJCLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxFQUFFO2dCQUM5RCxPQUFPLElBQUksQ0FBQyxlQUFlLEtBQUssSUFBSSxDQUFDO1lBQ3ZDLENBQUMsQ0FBQyxDQUFBO1NBQ0g7UUFDRCxPQUFPLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxDQUFBO0lBQy9DLENBQUM7O2dIQXhRVSxrQkFBa0I7b0dBQWxCLGtCQUFrQiw0U0NiL0IsK2dMQXVGTTs0RkQxRU8sa0JBQWtCO2tCQU45QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxlQUFlO29CQUN6QixXQUFXLEVBQUUsNEJBQTRCO29CQUN6QyxTQUFTLEVBQUUsQ0FBQyw0QkFBNEIsQ0FBQztvQkFDekMsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7aUJBQ3RDOzBNQUdXLGdCQUFnQjtzQkFBekIsTUFBTTtnQkFDRyxtQkFBbUI7c0JBQTVCLE1BQU07Z0JBRUUsY0FBYztzQkFBdEIsS0FBSztnQkFDRyxvQkFBb0I7c0JBQTVCLEtBQUs7Z0JBQ0csZUFBZTtzQkFBdkIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkRlc3Ryb3ksIE9uSW5pdCwgT3V0cHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGaWxlTWFuYWdlclNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zaGFyZWQtc2VydmljZXMvZmlsZS1tYW5hZ2VyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBVc2VyU2VydmljZSB9IGZyb20gJy4uLy4uLy4uLy4uL3NoYXJlZC1zZXJ2aWNlcy91c2VyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBDdXN0b21Ub2FzdHJTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vY3VzdG9tLXRvYXN0ci9zZXJ2aWNlcy9jdXN0b20tdG9hc3RyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBVc2VyUHJlZmVyZW5jZXNTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vY29yZS9zZXJ2aWNlcy91c2VyL3VzZXItcHJlZmVyZW5jZXMuc2VydmljZSc7XHJcbmltcG9ydCB7IFN1YnNjcmlwdGlvbiB9IGZyb20gJ3J4anMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItY2xpcGJvYXJkJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vY2xpcGJvYXJkLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9jbGlwYm9hcmQuY29tcG9uZW50LnNjc3MnXSxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDbGlwYm9hcmRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XHJcblxyXG4gIEBPdXRwdXQoKSBvbkNsaXBib2FyZENsb3NlID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG4gIEBPdXRwdXQoKSBvblJlZnJlc2hGb2xkZXJUcmVlID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG5cclxuICBASW5wdXQoKSBjbGlwYm9hcmRJdGVtcyA9IFtdOyAvLyBhcnJheSBvZiBpZCB0byBpdGVtcyBpbiBjbGlwYm9hcmRcclxuICBASW5wdXQoKSBteUN1cnJlY250Rm9sZGVyRGF0YTtcclxuICBASW5wdXQoKSBwcmV2ZW50ZWRHcm91cHMgPSBbXTtcclxuICBASW5wdXQoKSBkaXJlY3Rvcnk7XHJcblxyXG4gIGNsaXBib2FyZERvY21lbnRzID0gW107IC8vIGFycmF5IG9mIGRvY3VtZW50cyB3aXRoIGZ1bGwgZGV0YWlscyBvZiBpdGVtcyBpbiBjbGlwYm9hcmRcclxuICBlbmFibGVDb3B5ID0gZmFsc2U7XHJcbiAgZW5hYmxlTW92ZSA9IGZhbHNlO1xyXG4gIGNsaXBib2FyZExvYWRpbmcgPSBmYWxzZTtcclxuICBkb2N1bWVudFNlbGVjdGVkSW5DbGlwYm9hcmQgPSBbXTtcclxuICBteVRhcmdldEZvbGRlckFjY2VwdGVkQ2hpbGRyZW5zO1xyXG4gIHJlZnJlc2hDbGlwU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb247XHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBmaWxlTWFuYWdlclNlcnZpY2U6IEZpbGVNYW5hZ2VyU2VydmljZSxcclxuICAgIHByaXZhdGUgdXNlclNlcnZpY2U6IFVzZXJTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBjdXN0b21Ub2FzdHJTZXJ2aWNlOiBDdXN0b21Ub2FzdHJTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSB1c2VyUHJlZmVyZW5jZVNlcnZpY2U6IFVzZXJQcmVmZXJlbmNlc1NlcnZpY2UpIHsgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMucmVmcmVzaENsaXBTdWJzY3JpcHRpb24gPSB0aGlzLmZpbGVNYW5hZ2VyU2VydmljZS5vblJlZnJlc2hDbGlwYm9hcmQuc3Vic2NyaWJlKHJlcyA9PiB7XHJcbiAgICAgIHRoaXMub3BlbkNsaXBib2FyZCgpO1xyXG4gICAgfSlcclxuICAgIHRoaXMub3BlbkNsaXBib2FyZCgpO1xyXG4gIH1cclxuXHJcbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLnJlZnJlc2hDbGlwU3Vic2NyaXB0aW9uID8gdGhpcy5yZWZyZXNoQ2xpcFN1YnNjcmlwdGlvbi51bnN1YnNjcmliZSgpIDogbnVsbDtcclxuICB9XHJcbiAgY2xvc2VDbGlwYm9hcmQoKSB7XHJcbiAgICB0aGlzLm9uQ2xpcGJvYXJkQ2xvc2UuZW1pdCgpO1xyXG4gICAgdGhpcy5jbGlwYm9hcmREb2NtZW50cyA9IFtdO1xyXG4gIH1cclxuXHJcbiAgb3BlbkNsaXBib2FyZCgpIHtcclxuICAgIHRoaXMuZW5hYmxlQ29weSA9IGZhbHNlO1xyXG4gICAgdGhpcy5lbmFibGVNb3ZlID0gZmFsc2U7XHJcbiAgICB0aGlzLmNsaXBib2FyZExvYWRpbmcgPSB0cnVlO1xyXG4gICAgaWYgKHRoaXMubXlDdXJyZWNudEZvbGRlckRhdGEuZW50aXR5LnByb3BlcnRpZXNbJ2Rtc2ZvbGRlcjpkb2N1bWVudFR5cGVDb2RlJ10gJiYgdGhpcy5teUN1cnJlY250Rm9sZGVyRGF0YS5lbnRpdHkucHJvcGVydGllc1snZG1zZm9sZGVyOmRvY3VtZW50VHlwZUNvZGUnXSAhPT0gJzA4MTEyMDIxJykge1xyXG4gICAgICAvLyBnZXQgYWNjZXB0ZWQgY2hpbGRlcm5zIGZvciBteSBjdXJyZW50IGZvbGRlclxyXG4gICAgICAvLyBpZiAodGhpcy5zdWJ0eXBlc1NlcnZpY2Uuc3RvcmVkU3VidHlwZXNbdGhpcy5teUN1cnJlY250Rm9sZGVyRGF0YS5lbnRpdHkudWlkXSkge1xyXG4gICAgICAvLyAgICAgdGhpcy5teVRhcmdldEZvbGRlckFjY2VwdGVkQ2hpbGRyZW5zID0gdGhpcy5zdWJ0eXBlc1NlcnZpY2Uuc3RvcmVkU3VidHlwZXNbdGhpcy5teUN1cnJlY250Rm9sZGVyRGF0YS5lbnRpdHkudWlkXTtcclxuICAgICAgLy8gfSBlbHNlIHtcclxuICAgICAgdGhpcy5maWxlTWFuYWdlclNlcnZpY2UuZ2V0Q2xpcGJvYXJkQWNjZXB0ZWRUeXBlcyh0aGlzLm15Q3VycmVjbnRGb2xkZXJEYXRhLmVudGl0eS51aWQpLnN1YnNjcmliZShyZXMgPT4ge1xyXG4gICAgICAgIHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucyA9IHJlcztcclxuICAgICAgfSwgZXJyb3IgPT4ge1xyXG4gICAgICAgIHRoaXMuY2xpcGJvYXJkTG9hZGluZyA9IGZhbHNlO1xyXG4gICAgICAgIHRoaXMuY2xpcGJvYXJkRG9jbWVudHMgPSBbXTtcclxuICAgICAgfSlcclxuICAgICAgLy8gfVxyXG4gICAgfVxyXG4gICAgaWYgKHRoaXMuY2xpcGJvYXJkSXRlbXMubGVuZ3RoID4gMCkge1xyXG4gICAgICB0aGlzLmZpbGVNYW5hZ2VyU2VydmljZS5nZXRDbGlwYm9hcmREb2N1bWVudHModGhpcy5jbGlwYm9hcmRJdGVtcykuc3Vic2NyaWJlKHJlcyA9PiB7XHJcbiAgICAgICAgcmVzLm1hcChkb2N1bWVudCA9PiB7XHJcbiAgICAgICAgICBkb2N1bWVudFsnY2FuQ29weVRvVGFyZ2V0J10gPSAodGhpcy5jYW5QZXJmb3JtQWN0aW9uSW5zaWRlVGFyZ2V0KGRvY3VtZW50KSAmJiB0aGlzLmNoZWNrSWZOb3RUaGVTYW1lUGFyZW50KGRvY3VtZW50KSAmJiBkb2N1bWVudC5jYW5Db3B5KTtcclxuICAgICAgICAgIGRvY3VtZW50WydjYW5Nb3ZlVG9UYXJnZXQnXSA9ICh0aGlzLmNhblBlcmZvcm1BY3Rpb25JbnNpZGVUYXJnZXQoZG9jdW1lbnQpICYmIHRoaXMuY2hlY2tJZk5vdFRoZVNhbWVQYXJlbnQoZG9jdW1lbnQpICYmIGRvY3VtZW50LmNhbk1vdmUpXHJcbiAgICAgICAgfSlcclxuICAgICAgICB0aGlzLmNsaXBib2FyZERvY21lbnRzID0gcmVzO1xyXG4gICAgICAgIGNvbnNvbGUubG9nKHRoaXMuY2xpcGJvYXJkRG9jbWVudHMpO1xyXG4gICAgICAgIHRoaXMuY2xpcGJvYXJkTG9hZGluZyA9IGZhbHNlO1xyXG4gICAgICB9KVxyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy5jbGlwYm9hcmREb2NtZW50cyA9IFtdO1xyXG4gICAgICB0aGlzLmNsaXBib2FyZExvYWRpbmcgPSBmYWxzZTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8vIHByZXZlbnQgY29weWluZyBvciBtb3ZpbmcgdGhlIGZpbGUgdG8gaXRzIHNhbWUgcGxhY2Ugc2luY2UgaXQgaXMgcHJldmVudGVkIFxyXG4gIC8vIHByZXZlbnQgY29weWluZyBvciBtb3ZpbmcgdGhlIGZvbGRlciBpbnNpZGUgaXQgc2VsZlxyXG4gIGNoZWNrSWZOb3RUaGVTYW1lUGFyZW50KGRvY3VtZW50KSB7XHJcbiAgICAvLyBsZXQgZGlyZWN0b3J5ID0gdGhpcy5nZXRDdXJyZW50RGlyZWN0b3J5KCk7XHJcbiAgICBpZiAoZG9jdW1lbnQucGFyZW50UmVmICE9PSB0aGlzLmRpcmVjdG9yeS5kYXRhSXRlbS5pZCAmJiBkb2N1bWVudC51aWQgIT09IHRoaXMuZGlyZWN0b3J5LmRhdGFJdGVtLmlkKSB7XHJcbiAgICAgIHJldHVybiB0cnVlXHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICByZXR1cm4gZmFsc2VcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGRlbGV0ZWZyb21DbGlwYm9hcmQoZG9jdW1lbnQpIHtcclxuICAgIGxldCBteWluZGV4ID0gLTE7XHJcbiAgICB0aGlzLmNsaXBib2FyZEl0ZW1zLm1hcCgoaWQsIGluZGV4KSA9PiB7XHJcbiAgICAgIGlmIChkb2N1bWVudC51aWQgPT09IGlkKSB7XHJcbiAgICAgICAgbXlpbmRleCA9IGluZGV4XHJcbiAgICAgIH1cclxuICAgIH0pXHJcbiAgICB0aGlzLmNsaXBib2FyZEl0ZW1zLnNwbGljZShteWluZGV4LCAxKTtcclxuICAgIHRoaXMuY3VzdG9tVG9hc3RyU2VydmljZS5zaG93KCdzdWNjZXNzJywgJ1RPQVNURVIuU1VDQ0VTUycsIFwiVE9BU1RFUi5yZW1vdmVkX2Zyb21fY2xpcGJvYXJkXCIpO1xyXG4gICAgLy8gbGV0IGRpcmVjdG9yeSA9IHRoaXMuZ2V0Q3VycmVudERpcmVjdG9yeSgpO1xyXG4gICAgLy8gbGV0IGlkID1cclxuICAgIC8vICAgICBkaXJlY3RvcnkuZGF0YUl0ZW0gPT09IHVuZGVmaW5lZFxyXG4gICAgLy8gICAgICAgICA/IHRoaXMubWFpbkZvbGRlclxyXG4gICAgLy8gICAgICAgICA6IHRoaXMuZ2V0Q3VycmVudEZvbGRlcklkKGRpcmVjdG9yeSk7XHJcbiAgICAvLyB0aGlzLnJlaW5pdGlhbGl6ZUZvbGRlclRyZWUoaWQsIGRpcmVjdG9yeSk7XHJcbiAgICB0aGlzLm9uUmVmcmVzaEZvbGRlclRyZWUuZW1pdCgpO1xyXG4gICAgdGhpcy5vcGVuQ2xpcGJvYXJkKCk7XHJcbiAgICB0aGlzLnVzZXJQcmVmZXJlbmNlU2VydmljZS5zZXQoJ2NsaXBib2FyZEl0ZW1zJywgSlNPTi5zdHJpbmdpZnkodGhpcy5jbGlwYm9hcmRJdGVtcykpO1xyXG4gIH1cclxuXHJcbiAgLy8gZnVuY3Rpb24gdG8gY2hlY2sgaWYgaSBjYW4gcGVyZm9ybSBhY3Rpb24gb24gdGhhdCB0YXJnZXQgZm9sZGVyIG9yIG5vdCBcclxuICBjYW5QZXJmb3JtQWN0aW9uSW5zaWRlVGFyZ2V0KGRvY3VtZW50KSB7XHJcbiAgICAvL2NoZWNrIGlmIHRhcmdldCBpcyAnb3RoZXInIHR5cGUgZm9sZGVyIG9yIGRtcyBmb2xkZXJcclxuICAgIGlmICh0aGlzLm15Q3VycmVjbnRGb2xkZXJEYXRhLmVudGl0eS5wcm9wZXJ0aWVzWydkbXNmb2xkZXI6ZG9jdW1lbnRUeXBlQ29kZSddID09PSAnMDgxMTIwMjEnICYmICF0aGlzLmNoZWNrSWZJblByZXZlbnRlZEdyb3Vwcyh0aGlzLm15Q3VycmVjbnRGb2xkZXJEYXRhLmVudGl0eS5wYXRoKSkge1xyXG4gICAgICAvLyBpZiBteSBmb2xkZXIgaXMgZnJvbSB0eXBlIG90aGVycyBhbmQgbm90IGluIHByZXZlbnRlZCBncm91cHNcclxuICAgICAgcmV0dXJuIHRydWVcclxuICAgIH0gZWxzZSBpZiAodGhpcy5teUN1cnJlY250Rm9sZGVyRGF0YS5lbnRpdHkucHJvcGVydGllc1snZG1zZm9sZGVyOmRvY3VtZW50VHlwZUNvZGUnXSAmJiB0aGlzLm15Q3VycmVjbnRGb2xkZXJEYXRhLmVudGl0eS5wcm9wZXJ0aWVzWydkbXNmb2xkZXI6ZG9jdW1lbnRUeXBlQ29kZSddICE9PSAnMDgxMTIwMjEnKSB7XHJcbiAgICAgIC8vaWYgbXkgZm9sZGVyIGhhcyBjb2RlIGFuZCB3YXMgbm90IG90aGVyIHR5cGUgZm9sZGVyIHRoZW4gY2hlY2sgZm9yIGFjY2VwdGVkIGNoaWxyZHJuIGZvciB0aGF0IGZvbGRlciB0byBjb250YWluIHRoaXMgZmlsZSB0eXBlXHJcbiAgICAgIGlmIChkb2N1bWVudC5pc0ZpbGUgPT09ICdGaWxlJykge1xyXG4gICAgICAgIGlmICh0aGlzLm15VGFyZ2V0Rm9sZGVyQWNjZXB0ZWRDaGlsZHJlbnMuY29udGV4dFBhcmFtZXRlcnMgJiZcclxuICAgICAgICAgIHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucy5jb250ZXh0UGFyYW1ldGVycy5hY2NlcHRlZF9jaGlsZHJlbiAmJiBBcnJheS5pc0FycmF5KHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucy5jb250ZXh0UGFyYW1ldGVycy5hY2NlcHRlZF9jaGlsZHJlbikgJiZcclxuICAgICAgICAgIHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucy5jb250ZXh0UGFyYW1ldGVycy5hY2NlcHRlZF9jaGlsZHJlbi5pbmRleE9mKGRvY3VtZW50LnByb3BlcnRpZXNbJ2dkb2M6ZG9jdW1lbnRUeXBlQ29kZSddKSA+IC0xKSB7XHJcbiAgICAgICAgICByZXR1cm4gdHJ1ZTtcclxuICAgICAgICB9IGVsc2Uge1xyXG4gICAgICAgICAgcmV0dXJuIGZhbHNlXHJcbiAgICAgICAgfVxyXG4gICAgICB9IGVsc2Uge1xyXG4gICAgICAgIGlmICh0aGlzLm15VGFyZ2V0Rm9sZGVyQWNjZXB0ZWRDaGlsZHJlbnMuY29udGV4dFBhcmFtZXRlcnMgJiZcclxuICAgICAgICAgIHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucy5jb250ZXh0UGFyYW1ldGVycy5hY2NlcHRlZF9jaGlsZHJlbiAmJiBBcnJheS5pc0FycmF5KHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucy5jb250ZXh0UGFyYW1ldGVycy5hY2NlcHRlZF9jaGlsZHJlbikgJiZcclxuICAgICAgICAgIHRoaXMubXlUYXJnZXRGb2xkZXJBY2NlcHRlZENoaWxkcmVucy5jb250ZXh0UGFyYW1ldGVycz8uYWNjZXB0ZWRfY2hpbGRyZW4uaW5kZXhPZihkb2N1bWVudC5wcm9wZXJ0aWVzWydkbXNmb2xkZXI6ZG9jdW1lbnRUeXBlQ29kZSddKSA+IC0xKSB7XHJcbiAgICAgICAgICByZXR1cm4gdHJ1ZTtcclxuICAgICAgICB9IGVsc2Uge1xyXG4gICAgICAgICAgcmV0dXJuIGZhbHNlXHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICAvLyBwcmV2ZW50IGFjdGlvbiB0byB0aGlzIHRhcmdldCBcclxuICAgICAgcmV0dXJuIGZhbHNlXHJcbiAgICB9XHJcblxyXG4gIH1cclxuXHJcbiAgLy8gZnVuY3Rpb24gdG8gY2hlY2sgaWYgdGhpcyBwYXRoIG5vdCBiZWxvbmcgdG8gZ3JvdXAgdGhhdCBpcyBwcmV2ZW50ZWQgZnJvbSBjcmVhdGluZyBmb2xkZXIgb2YgdHlwZSBvdGhlcnNcclxuICBjaGVja0lmSW5QcmV2ZW50ZWRHcm91cHMocGF0aCkge1xyXG4gICAgLy8gaWYgaW4gcHJldmVudGVkIGZyb3VwIHJ0dXJuIHRydWUgZWxzZSByZXR1cm4gZmFsc2VcclxuICAgIGNvbnNvbGUubG9nKHBhdGgpO1xyXG4gICAgbGV0IG15RGVwYXJ0bWVudCA9IHRoaXMudXNlclNlcnZpY2UuZ2V0VXNlckRlcGFydG1lbnRGcm9tUGF0aChwYXRoKTtcclxuICAgIGxldCBleGlzdCA9IHRoaXMucHJldmVudGVkR3JvdXBzLmluZGV4T2YobXlEZXBhcnRtZW50KSA+IC0xID8gdHJ1ZSA6IGZhbHNlO1xyXG4gICAgcmV0dXJuIGV4aXN0O1xyXG4gIH1cclxuXHJcbiAgY29weUZyb21JbnNpZGVDbGlwYm9hcmQoKSB7XHJcbiAgICBsZXQgY2xpcGJvYXJkU2VsZWN0ZWRJdGVtcyA9IFtdO1xyXG4gICAgbGV0IGNsaXBib2FyZFNlbGVjdGVkSXRlbXNMZW5ndGggPSAwO1xyXG4gICAgLy8gc2VwZXJhdGUgc2VsZWN0ZWQgaXRlbXMgaW4gc2VwZXJhdGUgYXJyYXkgXHJcbiAgICB0aGlzLmNsaXBib2FyZERvY21lbnRzLm1hcCgoZG9jLCBpbmRleCkgPT4ge1xyXG4gICAgICAvLyBjYW4ndCBjb3B5IGZpbGUgaW4gdGhlIHNhbWUgcGxhY2UgaXQgZXhpc3QgYW5kIGNhbid0IGNvcHkgZm9sZGVyIGluc2lkZSBpdCBzZWxmIFxyXG4gICAgICBpZiAoZG9jLmlzU2VsZWN0ZWQgJiYgZG9jLnBhcmVudFJlZiAhPT0gdGhpcy5kaXJlY3RvcnkuZGF0YUl0ZW0uaWQgJiYgZG9jLnVpZCAhPT0gdGhpcy5kaXJlY3RvcnkuZGF0YUl0ZW0uaWQpIHtcclxuICAgICAgICBjbGlwYm9hcmRTZWxlY3RlZEl0ZW1zLnB1c2goZG9jLnVpZClcclxuICAgICAgfVxyXG4gICAgfSlcclxuXHJcbiAgICBpZiAoY2xpcGJvYXJkU2VsZWN0ZWRJdGVtcy5sZW5ndGggPiAwKSB7XHJcbiAgICAgIHRoaXMuY2xpcGJvYXJkTG9hZGluZyA9IHRydWU7XHJcbiAgICAgIC8vICAgIHRoaXMuY3VycmVudFBhdGggPSAnJztcclxuICAgICAgdGhpcy5maWxlTWFuYWdlclNlcnZpY2VcclxuICAgICAgICAuY29weVRvKHsgaWQ6IHRoaXMuZGlyZWN0b3J5LmRhdGFJdGVtLmlkLCBuYW1lOiB0aGlzLmRpcmVjdG9yeS5kYXRhSXRlbS5uYW1lIH0sIGNsaXBib2FyZFNlbGVjdGVkSXRlbXMudG9TdHJpbmcoKSlcclxuICAgICAgICAuc3Vic2NyaWJlKFxyXG4gICAgICAgICAgKHJlcykgPT4ge1xyXG4gICAgICAgICAgICAvLyByZW1vdmUgc2VsZWN0ZWQgaXRlbXMgZnJvbSBjbGlwYm9hcmQgYWZ0ZXIgYWN0aW9uIGlzIGRvbmVcclxuICAgICAgICAgICAgdGhpcy5yZW1vdmVJdGVtc0FmdGVyQWN0aW9uRG9uZShjbGlwYm9hcmRTZWxlY3RlZEl0ZW1zKTtcclxuICAgICAgICAgICAgdGhpcy5jbGlwYm9hcmRMb2FkaW5nID0gZmFsc2U7XHJcbiAgICAgICAgICAgIHRoaXMub25DbGlwYm9hcmRDbG9zZS5lbWl0KCk7XHJcbiAgICAgICAgICAgIHRoaXMub25SZWZyZXNoRm9sZGVyVHJlZS5lbWl0KCk7XHJcbiAgICAgICAgICAgIHRoaXMuY3VzdG9tVG9hc3RyU2VydmljZS5zaG93KFxyXG4gICAgICAgICAgICAgICdzdWNjZXNzJyxcclxuICAgICAgICAgICAgICAnVE9BU1RFUi5TVUNDRVNTJyxcclxuICAgICAgICAgICAgICAnVE9BU1RFUi5ET0NVTUVOVF9DT1BJRUQnXHJcbiAgICAgICAgICAgICk7XHJcbiAgICAgICAgICB9LFxyXG4gICAgICAgICAgKGVycikgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLmNsaXBib2FyZExvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgICAgICAgdGhpcy5jdXN0b21Ub2FzdHJTZXJ2aWNlLnNob3coXHJcbiAgICAgICAgICAgICAgJ2Vycm9yJyxcclxuICAgICAgICAgICAgICAnVE9BU1RFUi5FUlJPUicsXHJcbiAgICAgICAgICAgICAgJ1RPQVNURVIuRE9DVU1FTlRfQ09QSUVEX0VSUk9SJ1xyXG4gICAgICAgICAgICApO1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgICk7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICB0aGlzLmN1c3RvbVRvYXN0clNlcnZpY2Uuc2hvdyhcclxuICAgICAgICAnZXJyb3InLFxyXG4gICAgICAgICdUT0FTVEVSLkVSUk9SJyxcclxuICAgICAgICAnVE9BU1RFUi5ET0NVTUVOVF9DT1BJRURfREVTVElOQVRJT05fRVJST1InXHJcbiAgICAgICk7XHJcbiAgICB9XHJcblxyXG4gIH1cclxuXHJcbiAgbW92ZUZyb21JbnNpZGVDbGlwYm9hcmQoKSB7XHJcbiAgICBsZXQgY2xpcGJvYXJkU2VsZWN0ZWRJdGVtcyA9IFtdO1xyXG4gICAgbGV0IGNsaXBib2FyZFNlbGVjdGVkSXRlbXNMZW5ndGggPSAwO1xyXG4gICAgLy8gc2VwZXJhdGUgc2VsZWN0ZWQgaXRlbXMgaW4gc2VwZXJhdGUgYXJyYXkgXHJcbiAgICB0aGlzLmNsaXBib2FyZERvY21lbnRzLm1hcCgoZG9jLCBpbmRleCkgPT4ge1xyXG4gICAgICAvLyBjYW4ndCBtb3ZlIGZpbGUgaW4gdGhlIHNhbWUgcGxhY2UgaXQgZXhpc3QgYW5kIGNhbid0IG1vdmUgZm9sZGVyIGluc2lkZSBpdCBzZWxmIFxyXG4gICAgICBpZiAoZG9jLmlzU2VsZWN0ZWQgJiYgZG9jLnBhcmVudFJlZiAhPT0gdGhpcy5kaXJlY3RvcnkuZGF0YUl0ZW0uaWQgJiYgZG9jLnVpZCAhPT0gdGhpcy5kaXJlY3RvcnkuZGF0YUl0ZW0uaWQpIHtcclxuICAgICAgICBjbGlwYm9hcmRTZWxlY3RlZEl0ZW1zLnB1c2goZG9jLnVpZClcclxuICAgICAgfVxyXG4gICAgfSlcclxuXHJcbiAgICBpZiAoY2xpcGJvYXJkU2VsZWN0ZWRJdGVtcy5sZW5ndGggPiAwKSB7XHJcbiAgICAgIHRoaXMuY2xpcGJvYXJkTG9hZGluZyA9IHRydWU7XHJcbiAgICAgIHRoaXMuZmlsZU1hbmFnZXJTZXJ2aWNlXHJcbiAgICAgICAgLm1vdmVUbyh7IGlkOiB0aGlzLmRpcmVjdG9yeS5kYXRhSXRlbS5pZCwgbmFtZTogdGhpcy5kaXJlY3RvcnkuZGF0YUl0ZW0ubmFtZSB9LCBjbGlwYm9hcmRTZWxlY3RlZEl0ZW1zLnRvU3RyaW5nKCkpXHJcbiAgICAgICAgLnN1YnNjcmliZShcclxuICAgICAgICAgIChyZXMpID0+IHtcclxuICAgICAgICAgICAgLy8gcmVtb3ZlIHNlbGVjdGVkIGl0ZW1zIGZyb20gY2xpcGJvYXJkIGFmdGVyIGFjdGlvbiBpcyBkb25lXHJcbiAgICAgICAgICAgIHRoaXMucmVtb3ZlSXRlbXNBZnRlckFjdGlvbkRvbmUoY2xpcGJvYXJkU2VsZWN0ZWRJdGVtcyk7XHJcbiAgICAgICAgICAgIHRoaXMuY2xpcGJvYXJkTG9hZGluZyA9IGZhbHNlO1xyXG4gICAgICAgICAgICB0aGlzLm9uQ2xpcGJvYXJkQ2xvc2UuZW1pdCgpO1xyXG4gICAgICAgICAgICB0aGlzLm9uUmVmcmVzaEZvbGRlclRyZWUuZW1pdCgpO1xyXG4gICAgICAgICAgICB0aGlzLmN1c3RvbVRvYXN0clNlcnZpY2Uuc2hvdyhcclxuICAgICAgICAgICAgICAnc3VjY2VzcycsXHJcbiAgICAgICAgICAgICAgJ1RPQVNURVIuU1VDQ0VTUycsXHJcbiAgICAgICAgICAgICAgJ1RPQVNURVIuRE9DVU1FTlRfTU9WRUQnXHJcbiAgICAgICAgICAgICk7XHJcbiAgICAgICAgICB9LFxyXG4gICAgICAgICAgKGVycikgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLmNsaXBib2FyZExvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgICAgICAgdGhpcy5jdXN0b21Ub2FzdHJTZXJ2aWNlLnNob3coXHJcbiAgICAgICAgICAgICAgJ2Vycm9yJyxcclxuICAgICAgICAgICAgICAnVE9BU1RFUi5FUlJPUicsXHJcbiAgICAgICAgICAgICAgJ1RPQVNURVIuRE9DVU1FTlRfTU9WRURfRVJST1InXHJcbiAgICAgICAgICAgICk7XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgKTtcclxuICAgIH0gZWxzZVxyXG4gICAgICB0aGlzLmN1c3RvbVRvYXN0clNlcnZpY2Uuc2hvdyhcclxuICAgICAgICAnZXJyb3InLFxyXG4gICAgICAgICdUT0FTVEVSLkVSUk9SJyxcclxuICAgICAgICAnVE9BU1RFUi5ET0NVTUVOVF9NT1ZFRF9ERVNUSU5BVElPTl9FUlJPUidcclxuICAgICAgKTtcclxuICB9XHJcblxyXG4gIHJlbW92ZUl0ZW1zQWZ0ZXJBY3Rpb25Eb25lKHNlbGVjdGVkSXRlbXMpIHtcclxuICAgIHRoaXMuY2xpcGJvYXJkSXRlbXMgPSB0aGlzLmNsaXBib2FyZEl0ZW1zLmZpbHRlcihmdW5jdGlvbiAoZWwpIHtcclxuICAgICAgcmV0dXJuICFzZWxlY3RlZEl0ZW1zLmluY2x1ZGVzKGVsKTtcclxuICAgIH0pO1xyXG4gICAgdGhpcy51c2VyUHJlZmVyZW5jZVNlcnZpY2Uuc2V0KCdjbGlwYm9hcmRJdGVtcycsIEpTT04uc3RyaW5naWZ5KHRoaXMuY2xpcGJvYXJkSXRlbXMpKTtcclxuICB9XHJcblxyXG4gIGNoZWNraW5nKCkge1xyXG4gICAgdGhpcy5lbmFibGVDb3B5ID0gZmFsc2U7XHJcbiAgICB0aGlzLmVuYWJsZU1vdmUgPSBmYWxzZTtcclxuICAgIHRoaXMuZG9jdW1lbnRTZWxlY3RlZEluQ2xpcGJvYXJkID0gW107XHJcbiAgICAvLyBjb25zb2xlLmxvZyh0aGlzLmNsaXBib2FyZERvY21lbnRzKTtcclxuICAgIHRoaXMuY2xpcGJvYXJkRG9jbWVudHMubWFwKGRvY3VtZW50ID0+IHtcclxuICAgICAgLy8gd29rcmluZyB3aXRoIG9ubHkgc2VsZWN0ZWQgZG9jdW1lbnRzIFxyXG4gICAgICBpZiAoZG9jdW1lbnQuaXNTZWxlY3RlZCA9PT0gdHJ1ZSkge1xyXG4gICAgICAgIC8vIGRvY3VtZW50WydjYW5Db3B5VG9UYXJnZXQnXSA9ICh0aGlzLmNhblBlcmZvcm1BY3Rpb25JbnNpZGVUYXJnZXQoZG9jdW1lbnQpICYmIGRvY3VtZW50LmNhbkNvcHkpO1xyXG4gICAgICAgIC8vIGRvY3VtZW50WydjYW5Nb3ZlVG9UYXJnZXQnXSA9ICh0aGlzLmNhblBlcmZvcm1BY3Rpb25JbnNpZGVUYXJnZXQoZG9jdW1lbnQpICYmIGRvY3VtZW50LmNhbk1vdmUpXHJcbiAgICAgICAgdGhpcy5kb2N1bWVudFNlbGVjdGVkSW5DbGlwYm9hcmQucHVzaChkb2N1bWVudClcclxuICAgICAgfVxyXG4gICAgfSlcclxuICAgIGlmICh0aGlzLmRvY3VtZW50U2VsZWN0ZWRJbkNsaXBib2FyZC5sZW5ndGggPiAwKSB7XHJcbiAgICAgIHRoaXMuZW5hYmxlQ29weSA9IHRoaXMuZG9jdW1lbnRTZWxlY3RlZEluQ2xpcGJvYXJkLmV2ZXJ5KGl0ZW0gPT4ge1xyXG4gICAgICAgIHJldHVybiBpdGVtLmNhbkNvcHlUb1RhcmdldCA9PT0gdHJ1ZTtcclxuICAgICAgfSlcclxuICAgICAgdGhpcy5lbmFibGVNb3ZlID0gdGhpcy5kb2N1bWVudFNlbGVjdGVkSW5DbGlwYm9hcmQuZXZlcnkoaXRlbSA9PiB7XHJcbiAgICAgICAgcmV0dXJuIGl0ZW0uY2FuTW92ZVRvVGFyZ2V0ID09PSB0cnVlO1xyXG4gICAgICB9KVxyXG4gICAgfVxyXG4gICAgY29uc29sZS5sb2codGhpcy5kb2N1bWVudFNlbGVjdGVkSW5DbGlwYm9hcmQpXHJcbiAgfVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJjbGlwYm9hcmQtc2lkZS1zZWN0aW9uIHJlbGF0aXZlXCI+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cInAtMyBoLWZ1bGxcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiY2xpcGJvYXJkLWhlYWRlciBmbGV4IGp1c3RpZnktYmV0d2VlbiBpdGVtcy1jZW50ZXIgYm9yZGVyLWItMlwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXggdGV4dC1ncmF5LTUwMCBmb250LWJvbGQgaXRlbXMtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInRleHQtNHhsIGJpIGJpLWNsaXBib2FyZFwiPjwvc3Bhbj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibXgtMiB0ZXh0LXhsXCI+e3snY2xpcGJvYXJkJyB8IHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImNsb3NlLWljb24gdGV4dC1ncmF5LTUwMCBjdXJzb3ItcG9pbnRlclwiIChjbGljayk9XCJjbG9zZUNsaXBib2FyZCgpXCJcclxuICAgICAgICAgICAgICAgIFttYXRUb29sdGlwXT1cIidCVVRUT05TLkNMT1NFJyB8IHRyYW5zbGF0ZVwiPmNsb3NlPC9tYXQtaWNvbj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8IS0tIDxkaXYgY2xhc3M9XCJoLWZ1bGwgZm9udC1ib2xkIGQtZmxleCBqdXN0aWZ5LWNlbnRlciBpdGVtcy1jZW50ZXJcIiAqbmdJZj1cImNsaXBib2FyZExvYWRpbmdcIj5cclxuICAgICAgICAgICAge3sgXCJsb2FkaW5nXCIgfCB0cmFuc2xhdGUgfX1cclxuICAgICAgICA8L2Rpdj4gLS0+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInctZnVsbCBoLXB4IGJnLWdyYXktMjAwIG1iLTNcIiAqbmdJZj1cImNsaXBib2FyZExvYWRpbmdcIj5cclxuICAgICAgICAgICAgPG1hdC1wcm9ncmVzcy1iYXIgbW9kZT1cImluZGV0ZXJtaW5hdGVcIj48L21hdC1wcm9ncmVzcy1iYXI+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNsaXBib2FyZC1jb250ZW50IGZsZXggZmxleC1jb2wganVzdGlmeS1iZXR3ZWVuIGl0ZW1zLWJldHdlZW5cIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImgtZnVsbCBmbGV4IGp1c3RpZnktY2VudGVyIGl0ZW1zLWNlbnRlciB0ZXh0LWdyYXktNTAwXCJcclxuICAgICAgICAgICAgICAgICpuZ0lmPVwiY2xpcGJvYXJkRG9jbWVudHMubGVuZ3RoID09PSAwXCI+e3snbm9fY2xpcGJvYXJkX2l0ZW1zJyB8IHRyYW5zbGF0ZX19PC9kaXY+XHJcblxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwicHgtMiBoLTUvNiBvdmVyZmxvdy15LWF1dG9cIiAqbmdJZj1cImNsaXBib2FyZERvY21lbnRzLmxlbmd0aCA+IDBcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJib3JkZXItYi0yXCIgKm5nRm9yPVwibGV0IGRvY3VtZW50IG9mIGNsaXBib2FyZERvY21lbnRzXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInB5LTEgdy04MiBmbGV4ICBpdGVtcy1jZW50ZXIganVzdGlmeS1iZXR3ZWVuXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciB3LTUvNlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPG1hdC1jaGVja2JveCBbKG5nTW9kZWwpXT1cImRvY3VtZW50LmlzU2VsZWN0ZWRcIiAoY2hhbmdlKT1cImNoZWNraW5nKClcIj4gPC9tYXQtY2hlY2tib3g+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCB3LWZ1bGxcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8IS0tIDx0aXRsZS13aXRoLWljb24gY2xhc3M9XCJ3LTEvNiAtbXktMS41XCIgW2NvbnRleHRdPVwiZG9jdW1lbnRcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc2hvd1RpdGxlXT1cImZhbHNlXCI+PC90aXRsZS13aXRoLWljb24+IC0tPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFwcC1kaXNwbGF5LXN1aXRhYmxlLWljb24gY2xhc3M9XCJteC0xXCIgW2RhdGFdPVwiZG9jdW1lbnRcIiBbc2l6ZV09XCInNDBweCdcIj48L2FwcC1kaXNwbGF5LXN1aXRhYmxlLWljb24+XHJcblxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwhLS0gIC0tPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJkb2N1bWVudC5pc0ZpbGUgPT09ICdGaWxlJ1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwianVzdGlmeS1jZW50ZXIgZmxleCBmbGV4LWNvbCBmbGV4LTEgZmxleC1ncm93LTAgdy01LzZcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRleHQtYmFzZSB0ZXh0LWdyYXktNTAwIGZvbnQtYm9sZCB0cnVuY2F0ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbdGl0bGVdPVwiZG9jdW1lbnQucHJvcGVydGllcz8uWydmaWxlOmNvbnRlbnQnXT8uWyduYW1lJ11cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2FsdF09XCJkb2N1bWVudC5wcm9wZXJ0aWVzPy5bJ2ZpbGU6Y29udGVudCddPy5bJ25hbWUnXVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3tkb2N1bWVudFsndGl0bGUnXX19XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidGV4dC1ncmF5LTUwMCB0ZXh0LXNtIHRleHQtbm93cmFwXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7eygoZG9jdW1lbnQucHJvcGVydGllcz8uWydmaWxlOmNvbnRlbnQnXT8uWydsZW5ndGgnXSkgLyAoMTAyNCAqXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAxMDI0KSkudG9GaXhlZCgyKSB9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgTUJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZC1mbGV4XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpdGVtcy1jZW50ZXJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQtYmFzZSB0ZXh0LWdyYXktNTAwXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmb250LWJvbGRcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCIgKm5nSWY9XCJkb2N1bWVudC5pc0ZpbGUgPT09ICdGb2xkZXInXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7IGRvY3VtZW50Py50aXRsZSB9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBbbWF0VG9vbHRpcF09XCInQlVUVE9OUy5SRU1PVkVfQ0xJUEJPQVJEJyB8IHRyYW5zbGF0ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImN1cnNvci1wb2ludGVyIHctNSBoLTUgcm91bmRlZC1mdWxsIGJvcmRlci0yIGZsZXgganVzdGlmeS1jZW50ZXIgaXRlbXMtY2VudGVyIGJvcmRlci1ncmF5LTUwMCBcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImRlbGV0ZWZyb21DbGlwYm9hcmQoZG9jdW1lbnQpXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInRleHQtZ3JheS01MDAgYmkgYmkteCB0ZXh0LWxnIGZsZXggaXRlbXMtY2VudGVyXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRleHQtbWQgdGV4dC1ncmF5LTUwMCB0ZXh0LWNlbnRlciBteS0yXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiZG9jdW1lbnQuY2FuQ29weVRvVGFyZ2V0ICYmICFkb2N1bWVudC5jYW5Nb3ZlVG9UYXJnZXRcIj57eydjYW5fY29weV9vbmx5JyB8XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCIhZG9jdW1lbnQuY2FuQ29weVRvVGFyZ2V0ICYmIGRvY3VtZW50LmNhbk1vdmVUb1RhcmdldFwiPnt7J2Nhbl9tb3ZlX29ubHknIHxcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cImRvY3VtZW50LmNhbkNvcHlUb1RhcmdldCAmJiBkb2N1bWVudC5jYW5Nb3ZlVG9UYXJnZXRcIj57eydjYW5fY29weV9hbmRfbW92ZScgfFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAqbmdJZj1cIiFkb2N1bWVudC5jYW5Db3B5VG9UYXJnZXQgJiYgIWRvY3VtZW50LmNhbk1vdmVUb1RhcmdldFwiPnt7J2Nhbl9ub3RfY29weV9hbmRfbW92ZSdcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwgdHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaC0xLzYgZmxleCB3LWZ1bGwganVzdGlmeS1jZW50ZXIgaXRlbXMtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICA8YnV0dG9uIGNsYXNzPVwic3VibWlzc2lvbi1idXR0b24gbXgtMlwiIFtkaXNhYmxlZF09XCIhZW5hYmxlQ29weVwiXHJcbiAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImNvcHlGcm9tSW5zaWRlQ2xpcGJvYXJkKClcIj57eydCVVRUT05TLkNPUFknIHwgdHJhbnNsYXRlfX08L2J1dHRvbj5cclxuICAgICAgICAgICAgICAgIDxidXR0b24gY2xhc3M9XCJzdWJtaXNzaW9uLWJ1dHRvbiBteC0yXCIgW2Rpc2FibGVkXT1cIiFlbmFibGVNb3ZlXCJcclxuICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwibW92ZUZyb21JbnNpZGVDbGlwYm9hcmQoKVwiPnt7J0JVVFRPTlMuTU9WRScgfCB0cmFuc2xhdGV9fTwvYnV0dG9uPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxkaXYgY2xhc3M9XCJiZy10cmFuc3BhcmVudCBhYnNvbHV0ZSB0b3AtMCBib3R0b20tMCBsZWZ0LTAgcmlnaHQtMCBcIiAqbmdJZj1cImNsaXBib2FyZExvYWRpbmdcIj5cclxuXHJcbiAgICA8L2Rpdj5cclxuPC9kaXY+Il19
|