vcomply-workflow-engine 3.5.3 → 3.5.4
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/esm2022/lib/add-multiple-responsibility/add-multiple-responsibility.component.mjs +897 -0
- package/esm2022/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.mjs +204 -0
- package/esm2022/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.mjs +1569 -0
- package/esm2022/lib/add-multiple-risk/add-multiple-risk.component.mjs +774 -0
- package/esm2022/lib/configurations.mjs +6 -0
- package/esm2022/lib/confirmation-alert/confirmation-alert.component.mjs +28 -0
- package/esm2022/lib/constants/link-responsibility.constants.mjs +9 -0
- package/esm2022/lib/constants/time.constants.mjs +3 -0
- package/esm2022/lib/create-documents/create-documents.component.mjs +145 -0
- package/esm2022/lib/formgroup/cs-checkbox/cs-checkbox.component.mjs +36 -0
- package/esm2022/lib/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.mjs +35 -0
- package/esm2022/lib/formgroup/cs-radio/cs-radio.component.mjs +34 -0
- package/esm2022/lib/formgroup/cs-radio-group/cs-radio-group.component.mjs +14 -0
- package/esm2022/lib/formgroup/cs-select/cs-select.component.mjs +95 -0
- package/esm2022/lib/formgroup/cs-switch/cs-switch.component.mjs +31 -0
- package/esm2022/lib/formgroup/formgroup.module.mjs +56 -0
- package/esm2022/lib/formgroup/pipes/pascal.pipe.mjs +19 -0
- package/esm2022/lib/formgroup/select/cs-option/cs-option.component.mjs +42 -0
- package/esm2022/lib/formgroup/select/cs-select/cs-select.component.mjs +106 -0
- package/esm2022/lib/formgroup/select/select.module.mjs +21 -0
- package/esm2022/lib/formgroup/select/select.service.mjs +48 -0
- package/esm2022/lib/interfaces/categoryList.mjs +2 -0
- package/esm2022/lib/interfaces/confirmation-alert.mjs +2 -0
- package/esm2022/lib/interfaces/issue-data.mjs +2 -0
- package/esm2022/lib/log-an-issue/log-an-issue.component.mjs +1212 -0
- package/esm2022/lib/more-option/more-option.component.mjs +790 -0
- package/esm2022/lib/pipes/data-type.pipe.mjs +16 -0
- package/esm2022/lib/pipes/dom-sanitizer.pipe.mjs +24 -0
- package/esm2022/lib/pipes/filter.pipe.mjs +24 -0
- package/esm2022/lib/pipes/is-read-more.pipe.mjs +21 -0
- package/esm2022/lib/pipes/list-mapper.pipe.mjs +21 -0
- package/esm2022/lib/pipes/pipes.module.mjs +67 -0
- package/esm2022/lib/pipes/search.pipe.mjs +37 -0
- package/esm2022/lib/pipes/space-breaker.pipe.mjs +21 -0
- package/esm2022/lib/pipes/uncategorized-filter.pipe.mjs +21 -0
- package/esm2022/lib/pipes/user-filter.pipe.mjs +30 -0
- package/esm2022/lib/services/bulk-upload.service.mjs +44 -0
- package/esm2022/lib/services/common.service.mjs +41 -0
- package/esm2022/lib/sharedComponents/approval-workflow/approval-create-form/approval-create-form.component.mjs +265 -0
- package/esm2022/lib/sharedComponents/approval-workflow/approval-workflow-list/approval-workflow-list.component.mjs +73 -0
- package/esm2022/lib/sharedComponents/approval-workflow/approval-workflow.component.mjs +83 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/add-logic/add-logic.component.mjs +347 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.mjs +75 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/add-response-set-popup/add-response-set-popup.component.mjs +33 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/add-segment-popup/add-segment-popup.component.mjs +124 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/assessment-settings/assessment-settings.component.mjs +154 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/build.module.mjs +111 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/checkbox/checkbox.component.mjs +37 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/choice-settings-panel/choice-settings-panel.component.mjs +74 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/date-time/date-time.component.mjs +18 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/dropdown/dropdown.component.mjs +37 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/image-choice/image-choice.component.mjs +15 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/matrix-dropdown/matrix-dropdown.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/matrix-rating-scale/matrix-rating-scale.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/multiple-choice/multiple-choice.component.mjs +37 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/multiple-textbox/multiple-textbox.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/ranking/ranking.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/slider/slider.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/star-rating/star-rating.component.mjs +28 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/thank-you/thank-you.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/weightage-selector/weightage-selector.component.mjs +56 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/build/welcome/welcome.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/editor-wrapper/editor-wrapper.component.mjs +179 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/errorInterface/error.mjs +2 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/errorInterface/question.mjs +2 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/errorInterface/validateStructure.mjs +2 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic/logic.component.mjs +104 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-checkbox/logic-checkbox.component.mjs +26 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-comment-box/logic-comment-box.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-date-time/logic-date-time.component.mjs +56 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-dropdown/logic-dropdown.component.mjs +33 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-image-choice/logic-image-choice.component.mjs +17 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-multiple-choice/logic-multiple-choice.component.mjs +26 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-multiple-textbox/logic-multiple-textbox.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-questions.module.mjs +101 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-ranking/logic-ranking.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-single-textbox/logic-single-textbox.component.mjs +24 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-slider/logic-slider.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/logic-questions/logic-star-rating/logic-star-rating.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/move/move.component.mjs +103 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/page-header/page-header.component.mjs +23 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/current-page-question.pipe.mjs +22 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/error-message.pipe.mjs +27 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/formatter.pipe.mjs +21 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/question-filter.pipe.mjs +17 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/question-page-filter.pipe.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/question-parser.pipe.mjs +21 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/pipes/type-of.pipe.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-checkbox/preview-checkbox.component.mjs +28 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-comment-box/preview-comment-box.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-date-time/preview-date-time.component.mjs +49 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-dropdown/preview-dropdown.component.mjs +30 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-file-upload/preview-file-upload.component.mjs +21 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-image-choice/preview-image-choice.component.mjs +17 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-matrix-dropdown/preview-matrix-dropdown.component.mjs +31 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-matrix-rating-scale/preview-matrix-rating-scale.component.mjs +28 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-multiple-choice/preview-multiple-choice.component.mjs +28 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-multiple-textbox/preview-multiple-textbox.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-ranking/preview-ranking.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-single-textbox/preview-single-textbox.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-slider/preview-slider.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-star-rating/preview-star-rating.component.mjs +16 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview-wrapper/preview-wrapper.component.mjs +78 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/preview.module.mjs +152 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/thank-you/thank-you.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/preview/welcome/welcome.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/question-type/question-type.component.mjs +19 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/quick-settings/quick-settings.component.mjs +252 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/response-selector/response-selector.component.mjs +35 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/setting-anonymous/setting-anonymous.component.mjs +61 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/setting-response-segment/setting-response-segment.component.mjs +163 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/single-line-editor/single-line-editor.component.mjs +118 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/toolkit/toolkit.component.mjs +23 -0
- package/esm2022/lib/sharedComponents/assessment-editor/components/welcome-thankyou/welcome-thankyou.component.mjs +97 -0
- package/esm2022/lib/sharedComponents/assessment-editor/create-assessment-container/create-assessment-container.component.mjs +493 -0
- package/esm2022/lib/sharedComponents/assessment-editor/create-assessment.module.mjs +154 -0
- package/esm2022/lib/sharedComponents/assessment-editor/services/editor.service.mjs +635 -0
- package/esm2022/lib/sharedComponents/assessment-editor/services/result-criteria.service.mjs +48 -0
- package/esm2022/lib/sharedComponents/assessment-editor/services/validator.service.mjs +546 -0
- package/esm2022/lib/sharedComponents/assessment-list/assessment-list-loader/assessment-list-loader.component.mjs +15 -0
- package/esm2022/lib/sharedComponents/assessment-list/assessment-list-sub-loader/assessment-list-sub-loader.component.mjs +15 -0
- package/esm2022/lib/sharedComponents/assessment-list/assessment-list.component.mjs +207 -0
- package/esm2022/lib/sharedComponents/assessment-list/service/assessment.interface.mjs +2 -0
- package/esm2022/lib/sharedComponents/assessment-list/service/assessment.service.mjs +31 -0
- package/esm2022/lib/sharedComponents/assessment-preview/assessment-preview.module.mjs +113 -0
- package/esm2022/lib/sharedComponents/assessment-preview/checkbox-question/checkbox-question.component.mjs +33 -0
- package/esm2022/lib/sharedComponents/assessment-preview/date-time/date-time.component.mjs +53 -0
- package/esm2022/lib/sharedComponents/assessment-preview/description-preview/description-preview.component.mjs +24 -0
- package/esm2022/lib/sharedComponents/assessment-preview/device/device.component.mjs +21 -0
- package/esm2022/lib/sharedComponents/assessment-preview/file-upload/file-upload.component.mjs +22 -0
- package/esm2022/lib/sharedComponents/assessment-preview/page-header/page-header.component.mjs +21 -0
- package/esm2022/lib/sharedComponents/assessment-preview/pipes/get-section-order.pipe.mjs +24 -0
- package/esm2022/lib/sharedComponents/assessment-preview/preview/preview.component.mjs +62 -0
- package/esm2022/lib/sharedComponents/assessment-preview/preview-container/preview-container.component.mjs +22 -0
- package/esm2022/lib/sharedComponents/assessment-preview/quick-settings/quick-settings.component.mjs +22 -0
- package/esm2022/lib/sharedComponents/assessment-preview/radio-question/radio-question.component.mjs +33 -0
- package/esm2022/lib/sharedComponents/assessment-preview/section-details/section-details.component.mjs +20 -0
- package/esm2022/lib/sharedComponents/assessment-preview/select-question/select-question.component.mjs +35 -0
- package/esm2022/lib/sharedComponents/assessment-preview/single-textbox/single-textbox.component.mjs +21 -0
- package/esm2022/lib/sharedComponents/assessment-preview/welcome/welcome.component.mjs +17 -0
- package/esm2022/lib/sharedComponents/audit-category-list/audit-category-list.component.mjs +61 -0
- package/esm2022/lib/sharedComponents/audit-category-list/audit-category.model.mjs +2 -0
- package/esm2022/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.mjs +72 -0
- package/esm2022/lib/sharedComponents/bulk-view/bulk-view.component.mjs +75 -0
- package/esm2022/lib/sharedComponents/category-list/category-list.component.mjs +84 -0
- package/esm2022/lib/sharedComponents/category-multiselect/category-multi-select.component.mjs +166 -0
- package/esm2022/lib/sharedComponents/checkbox-list/checkbox-list.component.mjs +92 -0
- package/esm2022/lib/sharedComponents/checkpoint/checkpoints/checkpoints.component.mjs +315 -0
- package/esm2022/lib/sharedComponents/checkpoint/checkpoints-list/checkpoints-list.component.mjs +25 -0
- package/esm2022/lib/sharedComponents/checkpoint/checkpoints-questions/checkpoints-questions.component.mjs +149 -0
- package/esm2022/lib/sharedComponents/checkpoint-floating-bar/checkpoint-floating-bar.component.mjs +48 -0
- package/esm2022/lib/sharedComponents/checkpoint-policy/checkpoints-policy-container/checkpoints-policy-container.component.mjs +77 -0
- package/esm2022/lib/sharedComponents/checkpoint-policy/checkpoints-policy-list/checkpoints-policy-list.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/checkpoint-policy/checkpoints-policy-questions/checkpoints-policy-questions.component.mjs +197 -0
- package/esm2022/lib/sharedComponents/directive/autofocus.directive.mjs +22 -0
- package/esm2022/lib/sharedComponents/directive/conditional-focus.directive.mjs +35 -0
- package/esm2022/lib/sharedComponents/directive/drag-drop.directive.mjs +52 -0
- package/esm2022/lib/sharedComponents/directive/input-trim.directive.mjs +21 -0
- package/esm2022/lib/sharedComponents/directive/scroll-in-view.directive.mjs +35 -0
- package/esm2022/lib/sharedComponents/document-section/document-section.component.mjs +184 -0
- package/esm2022/lib/sharedComponents/floating-bar/floating-bar.component.mjs +122 -0
- package/esm2022/lib/sharedComponents/floating-bar/floating-bar.module.mjs +20 -0
- package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +308 -0
- package/esm2022/lib/sharedComponents/framework-list/framework-integration-interfaces.mjs +2 -0
- package/esm2022/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.mjs +38 -0
- package/esm2022/lib/sharedComponents/framework-list/framework-list.component.mjs +429 -0
- package/esm2022/lib/sharedComponents/framework-list/framework-responsibility-table/framework-responsibility-table.component.mjs +43 -0
- package/esm2022/lib/sharedComponents/framework-list/framework-table-loader/framework-table-loader.component.mjs +15 -0
- package/esm2022/lib/sharedComponents/framework-list/parent-table/parent-table.component.mjs +95 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +297 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +218 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-checkbox-list/frequency-checkbox-list.component.mjs +36 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-container/frequency-container.component.mjs +303 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +152 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-due-date/due-date.contant.mjs +21 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-due-date/frequency-due-date.component.mjs +83 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-lifecycle/frequency-lifecycle.component.mjs +199 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-lifecycle/lifecycl.constant.mjs +12 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +223 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.mjs +170 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +189 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +75 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +214 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-radio-list/frequency-radio-list.component.mjs +36 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +253 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.mjs +213 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-top/frequency-top.component.mjs +133 -0
- package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +200 -0
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +573 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-annual/frequency-dialog-annual.component.mjs +300 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-biannual/frequency-dialog-biannual.component.mjs +216 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-checkbox-list/frequency-dialog-checkbox-list.component.mjs +29 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-container/frequency-dialog-container.component.mjs +296 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-due-date/frequency-dialog-due-date.component.mjs +110 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-monthly/frequency-dialog-monthly.component.mjs +227 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-one-time/frequency-dialog-one-time.component.mjs +213 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-quarterly/frequency-dialog-quarterly.component.mjs +212 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-radio-list/frequency-dialog-radio-list.component.mjs +33 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.mjs +128 -0
- package/esm2022/lib/sharedComponents/frequency-dialog/frequency-dialog-weekly/frequency-dialog-weekly.component.mjs +197 -0
- package/esm2022/lib/sharedComponents/group-users-list/group-users-list.component.mjs +259 -0
- package/esm2022/lib/sharedComponents/link-program/link-program/link-program.component.mjs +472 -0
- package/esm2022/lib/sharedComponents/link-program/link-program/program-list-model.mjs +2 -0
- package/esm2022/lib/sharedComponents/link-program/program-integration-interfaces.mjs +2 -0
- package/esm2022/lib/sharedComponents/link-program/restapi.service.mjs +149 -0
- package/esm2022/lib/sharedComponents/link-program/tooltip-validation.pipe.mjs +28 -0
- package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.component.mjs +221 -0
- package/esm2022/lib/sharedComponents/list-loader/list-loader.component.mjs +15 -0
- package/esm2022/lib/sharedComponents/list-loader/list-loader.module.mjs +18 -0
- package/esm2022/lib/sharedComponents/no-data/no-data.component.mjs +36 -0
- package/esm2022/lib/sharedComponents/no-data/no-data.module.mjs +18 -0
- package/esm2022/lib/sharedComponents/owner-list/owner-list.component.mjs +176 -0
- package/esm2022/lib/sharedComponents/pipes/array-filter.pipe.mjs +18 -0
- package/esm2022/lib/sharedComponents/pipes/filterPipe.mjs +30 -0
- package/esm2022/lib/sharedComponents/pipes/rcTreeToolTip.pipe.mjs +26 -0
- package/esm2022/lib/sharedComponents/pipes/short-merge.pipe.mjs +24 -0
- package/esm2022/lib/sharedComponents/pipes/spaceTrim.pipe.mjs +18 -0
- package/esm2022/lib/sharedComponents/pipes/within-data.pipe.mjs +21 -0
- package/esm2022/lib/sharedComponents/policy-access/policy-access.component.mjs +88 -0
- package/esm2022/lib/sharedComponents/program-listing/program-list-model.mjs +2 -0
- package/esm2022/lib/sharedComponents/program-listing/program-listing.component.mjs +739 -0
- package/esm2022/lib/sharedComponents/radio-list/radio-list.component.mjs +82 -0
- package/esm2022/lib/sharedComponents/radio-list-with-pagination/link-treatment-loader/link-treatment-loader.component.mjs +14 -0
- package/esm2022/lib/sharedComponents/radio-list-with-pagination/radio-list.component.mjs +128 -0
- package/esm2022/lib/sharedComponents/responsibility-centers-list/rc-list.module.mjs +40 -0
- package/esm2022/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.mjs +125 -0
- package/esm2022/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.mjs +81 -0
- package/esm2022/lib/sharedComponents/review-frequency/review-frequency.component.mjs +44 -0
- package/esm2022/lib/sharedComponents/risk-classification/risk-classification.component.mjs +102 -0
- package/esm2022/lib/sharedComponents/roles-list/roles-list.component.mjs +30 -0
- package/esm2022/lib/sharedComponents/select-approvers/select-approvers.component.mjs +78 -0
- package/esm2022/lib/sharedComponents/table-card-loader/table-card-loader.component.mjs +15 -0
- package/esm2022/lib/sharedComponents/users-radio-list/users-radio-list.component.mjs +83 -0
- package/esm2022/lib/sharedComponents/v-loader/loader/loader.component.mjs +21 -0
- package/esm2022/lib/sharedComponents/v-loader/loader-inline/loader-inline.component.mjs +21 -0
- package/esm2022/lib/sharedComponents/v-loader/v-loader.module.mjs +19 -0
- package/esm2022/lib/ui-kit/action-dialog/action-dialog.module.mjs +21 -0
- package/esm2022/lib/ui-kit/action-dialog/active/active.component.mjs +32 -0
- package/esm2022/lib/ui-kit/action-dialog/deactivate/deactivate.component.mjs +33 -0
- package/esm2022/lib/ui-kit/action-dialog/delete/delete.component.mjs +26 -0
- package/esm2022/lib/ui-kit/action-dialog/duplicate/duplicate.component.mjs +28 -0
- package/esm2022/lib/ui-kit/click-outside/click-outside.directive.mjs +29 -0
- package/esm2022/lib/ui-kit/click-outside/click-outside.module.mjs +22 -0
- package/esm2022/lib/ui-kit/dialog/dialog-config.mjs +3 -0
- package/esm2022/lib/ui-kit/dialog/dialog-injector.mjs +14 -0
- package/esm2022/lib/ui-kit/dialog/dialog-ref.mjs +11 -0
- package/esm2022/lib/ui-kit/dialog/dialog.component.mjs +88 -0
- package/esm2022/lib/ui-kit/dialog/dialog.module.mjs +20 -0
- package/esm2022/lib/ui-kit/dialog/dialog.service.mjs +58 -0
- package/esm2022/lib/ui-kit/dialog/insertion.directive.mjs +16 -0
- package/esm2022/lib/ui-kit/directive/directive.module.mjs +24 -0
- package/esm2022/lib/ui-kit/directive/stop-propagation.directive.mjs +20 -0
- package/esm2022/lib/ui-kit/editor-loader/editor-loader/editor-loader.component.mjs +15 -0
- package/esm2022/lib/ui-kit/editor-loader/editor-loader.module.mjs +22 -0
- package/esm2022/lib/ui-kit/format-html.pipe.mjs +20 -0
- package/esm2022/lib/ui-kit/formgroup/click-outside.directive.mjs +29 -0
- package/esm2022/lib/ui-kit/formgroup/cs-checkbox/cs-checkbox.component.mjs +31 -0
- package/esm2022/lib/ui-kit/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.mjs +35 -0
- package/esm2022/lib/ui-kit/formgroup/cs-radio/cs-radio.component.mjs +30 -0
- package/esm2022/lib/ui-kit/formgroup/cs-radio-group/cs-radio-group.component.mjs +14 -0
- package/esm2022/lib/ui-kit/formgroup/cs-select/cs-select.component.mjs +100 -0
- package/esm2022/lib/ui-kit/formgroup/cs-switch/cs-switch.component.mjs +32 -0
- package/esm2022/lib/ui-kit/formgroup/formgroup.module.mjs +60 -0
- package/esm2022/lib/ui-kit/formgroup/pipes/pascal.pipe.mjs +19 -0
- package/esm2022/lib/ui-kit/formgroup/pipes/searchMultiSelect.pipe.mjs +24 -0
- package/esm2022/lib/ui-kit/line-loader/line-loader.component.mjs +15 -0
- package/esm2022/lib/ui-kit/line-loader/line-loader.module.mjs +18 -0
- package/esm2022/lib/ui-kit/no-data/no-data.component.mjs +45 -0
- package/esm2022/lib/ui-kit/no-data/no-data.module.mjs +18 -0
- package/esm2022/lib/ui-kit/pagination/pagination/pagination.component.mjs +116 -0
- package/esm2022/lib/ui-kit/pagination/pagination.module.mjs +28 -0
- package/esm2022/lib/ui-kit/popover/popover-event.directive.mjs +28 -0
- package/esm2022/lib/ui-kit/popover/popover-longpress.directive.mjs +44 -0
- package/esm2022/lib/ui-kit/popover/popover.component.mjs +138 -0
- package/esm2022/lib/ui-kit/popover/popover.directive.mjs +97 -0
- package/esm2022/lib/ui-kit/popover/popover.module.mjs +23 -0
- package/esm2022/lib/ui-kit/popover/popover.service.mjs +15 -0
- package/esm2022/lib/ui-kit/popover-hover/popover-hover.component.mjs +109 -0
- package/esm2022/lib/ui-kit/popover-hover/popover-hover.directive.mjs +34 -0
- package/esm2022/lib/ui-kit/popover-hover/popover-hover.module.mjs +31 -0
- package/esm2022/lib/ui-kit/popover-hover/popover-hover.service.mjs +14 -0
- package/esm2022/lib/ui-kit/smiley-dialog/smiley-dialog.component.mjs +43 -0
- package/esm2022/lib/ui-kit/smiley-dialog/smiley-dialog.module.mjs +18 -0
- package/esm2022/lib/ui-kit/smiley-dialog-inline/smiley-dialog-inline.component.mjs +43 -0
- package/esm2022/lib/ui-kit/smiley-dialog-inline/smiley-dialog-inline.module.mjs +18 -0
- package/esm2022/lib/ui-kit/snack-bar/snack-bar.component.mjs +51 -0
- package/esm2022/lib/ui-kit/snack-bar/snack-bar.module.mjs +18 -0
- package/esm2022/lib/ui-kit/snack-bar/snack-bar.service.mjs +32 -0
- package/esm2022/lib/ui-kit/time-picker/constants/constant.mjs +5 -0
- package/esm2022/lib/ui-kit/time-picker/time-picker/time-picker.component.mjs +220 -0
- package/esm2022/lib/ui-kit/time-picker/time-picker.module.mjs +24 -0
- package/esm2022/lib/ui-kit/tooltip/tooltip.directive.mjs +156 -0
- package/esm2022/lib/ui-kit/tooltip/tooltip.module.mjs +18 -0
- package/esm2022/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +831 -0
- package/esm2022/lib/workflow/grc-object/grc-object.module.mjs +64 -0
- package/esm2022/lib/workflow/shared/components/attributes/attributes-checkbox/attributes-checkbox.component.mjs +95 -0
- package/esm2022/lib/workflow/shared/components/attributes/attributes-dropdown/attributes-dropdown.component.mjs +110 -0
- package/esm2022/lib/workflow/shared/components/attributes/attributes-text-box/attributes-text-box.component.mjs +118 -0
- package/esm2022/lib/workflow/shared/components/attributes/attributes.component.mjs +100 -0
- package/esm2022/lib/workflow/shared/components/attributes/date-picker/date-picker.component.mjs +116 -0
- package/esm2022/lib/workflow/shared/components/edit-mode/edit-mode.component.mjs +216 -0
- package/esm2022/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.mjs +119 -0
- package/esm2022/lib/workflow/shared/components/grc-object-list/grc-object-list.component.mjs +198 -0
- package/esm2022/lib/workflow/shared/components/grc-responsibility-listing/grc-responsibility-listing.component.mjs +202 -0
- package/esm2022/lib/workflow/shared/components/grc-risk-listing/grc-risk-listing.component.mjs +191 -0
- package/esm2022/lib/workflow/shared/components/grc-sub-category-listing/grc-sub-category-listing.component.mjs +86 -0
- package/esm2022/lib/workflow/shared/components/list-popup/list-popup.component.mjs +209 -0
- package/esm2022/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.mjs +411 -0
- package/esm2022/lib/workflow/shared/components/risk-category-risk-listing/risk-category-risk-listing.component.mjs +241 -0
- package/esm2022/lib/workflow/shared/components/table-card/table-card.component.mjs +32 -0
- package/esm2022/lib/workflow/shared/components/text-field/text-field.component.mjs +143 -0
- package/esm2022/lib/workflow/shared/components/text-field-icon/text-field-icon.component.mjs +56 -0
- package/esm2022/lib/workflow/shared/constants/cdn-link.constant.mjs +11 -0
- package/esm2022/lib/workflow/shared/constants/field-text.constant.mjs +17 -0
- package/esm2022/lib/workflow/shared/constants/grcObject.constant.mjs +88 -0
- package/esm2022/lib/workflow/shared/constants/link-responsibility.constant.mjs +19 -0
- package/esm2022/lib/workflow/shared/constants/message.contstant.mjs +5 -0
- package/esm2022/lib/workflow/shared/constants/pagination-limits.constant.mjs +6 -0
- package/esm2022/lib/workflow/shared/constants/svg-link.constant.mjs +4 -0
- package/esm2022/lib/workflow/shared/constants/validation-message.constant.mjs +8 -0
- package/esm2022/lib/workflow/shared/interfaces/add-grc.mjs +2 -0
- package/esm2022/lib/workflow/shared/services/grc.service.mjs +310 -0
- package/esm2022/lib/workflow/shared/workflow-pipes/get-selected-value.pipe.mjs +30 -0
- package/esm2022/lib/workflow/shared/workflow-pipes/is-attributes-valid.pipe.mjs +48 -0
- package/esm2022/lib/workflow/shared/workflow-pipes/unique-responsibilities.pipe.mjs +24 -0
- package/esm2022/lib/workflow/shared/workflow-pipes/workflow-pipes.module.mjs +32 -0
- package/esm2022/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.mjs +668 -0
- package/esm2022/lib/workflow-assessment/workflow-assessment.component.mjs +254 -0
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +3913 -0
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +734 -0
- package/esm2022/lib/workflow-engine.module.mjs +467 -0
- package/esm2022/lib/workflow-engine.service.mjs +14 -0
- package/esm2022/lib/workflow-interfaces/create-policy-form.mjs +2 -0
- package/esm2022/lib/workflow-pagination/workflow-pagination.component.mjs +116 -0
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +1875 -0
- package/esm2022/lib/workflow-program/constants.mjs +51 -0
- package/esm2022/lib/workflow-program/create-program-ui/assessment-picker/assessment-loader/assessment-loader.component.mjs +15 -0
- package/esm2022/lib/workflow-program/create-program-ui/assessment-picker/assessment-picker.component.mjs +292 -0
- package/esm2022/lib/workflow-program/create-program-ui/assessment-picker/assessment-sub-loader/assessment-sub-loader.component.mjs +15 -0
- package/esm2022/lib/workflow-program/create-program-ui/assessment-picker/assessment.service.mjs +43 -0
- package/esm2022/lib/workflow-program/create-program-ui/assessment-picker/selected-assessment.pipe.mjs +22 -0
- package/esm2022/lib/workflow-program/create-program-ui/assessment-picker/workflow-pagination/workflow-pagination.component.mjs +116 -0
- package/esm2022/lib/workflow-program/create-program-ui/checkbox/checkbox.component.mjs +39 -0
- package/esm2022/lib/workflow-program/create-program-ui/create-program-ui.module.mjs +194 -0
- package/esm2022/lib/workflow-program/create-program-ui/cs-switch/cs-switch.component.mjs +44 -0
- package/esm2022/lib/workflow-program/create-program-ui/custom-field/custom-field.component.mjs +82 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/define-framework-listing.component.mjs +267 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/framework.service.mjs +44 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/loader/loader.component.mjs +15 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/pipes/category-all-select.pipe.mjs +23 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/pipes/search.pipe.mjs +23 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/pipes/sub-cat-indeter.pipe.mjs +26 -0
- package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/pipes/tooltip-message.pipe.mjs +68 -0
- package/esm2022/lib/workflow-program/create-program-ui/directives/input-trim.directive.mjs +21 -0
- package/esm2022/lib/workflow-program/create-program-ui/file-pill/file-pill.component.mjs +27 -0
- package/esm2022/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.mjs +106 -0
- package/esm2022/lib/workflow-program/create-program-ui/form-field/form-field.component.mjs +16 -0
- package/esm2022/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.mjs +30 -0
- package/esm2022/lib/workflow-program/create-program-ui/pagination/pagination/pagination.component.mjs +166 -0
- package/esm2022/lib/workflow-program/create-program-ui/pagination/pagination.module.mjs +28 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/array-concat.pipe.mjs +16 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/assessment-resolver.pipe.mjs +27 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/filter.pipe.mjs +30 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/list-to-id.pipe.mjs +16 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/pager.pipe.mjs +21 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/ref-disconnect.pipe.mjs +17 -0
- package/esm2022/lib/workflow-program/create-program-ui/pipes/search.pipe.mjs +23 -0
- package/esm2022/lib/workflow-program/create-program-ui/role-list/loader/loader.component.mjs +15 -0
- package/esm2022/lib/workflow-program/create-program-ui/role-list/role-list.component.mjs +240 -0
- package/esm2022/lib/workflow-program/create-program-ui/tab-selector/tab-selector.component.mjs +43 -0
- package/esm2022/lib/workflow-program/create-program-ui/tick-mark/tick-mark.component.mjs +15 -0
- package/esm2022/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.mjs +434 -0
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +1550 -0
- package/esm2022/lib/workflow-risk/workflow-risk.component.mjs +1642 -0
- package/esm2022/lib/workflow-services/add-risk.service.mjs +150 -0
- package/esm2022/lib/workflow-services/assessment.service.mjs +117 -0
- package/esm2022/lib/workflow-services/auth.service.mjs +229 -0
- package/esm2022/lib/workflow-services/frequency.service.mjs +173 -0
- package/esm2022/lib/workflow-services/log-issue.service.mjs +360 -0
- package/esm2022/lib/workflow-services/policy.service.mjs +163 -0
- package/esm2022/lib/workflow-services/programs.service.mjs +319 -0
- package/esm2022/lib/workflow-services/responsibility.service.mjs +293 -0
- package/esm2022/lib/workflow-services/token-decoder.service.mjs +38 -0
- package/esm2022/lib/workflow-services/ui-kit.service.mjs +17 -0
- package/esm2022/lib/workflow-survey-form/workflow-survey-form.component.mjs +26 -0
- package/esm2022/public-api.mjs +8 -0
- package/esm2022/vcomply-workflow-engine.mjs +5 -0
- package/fesm2022/vcomply-workflow-engine.mjs +44351 -0
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -0
- package/lib/add-multiple-responsibility/add-multiple-responsibility.component.d.ts +1 -1
- package/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.d.ts +1 -1
- package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +1 -1
- package/lib/add-multiple-risk/add-multiple-risk.component.d.ts +1 -1
- package/lib/confirmation-alert/confirmation-alert.component.d.ts +1 -1
- package/lib/create-documents/create-documents.component.d.ts +1 -1
- package/lib/formgroup/cs-checkbox/cs-checkbox.component.d.ts +1 -1
- package/lib/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.d.ts +1 -1
- package/lib/formgroup/cs-radio/cs-radio.component.d.ts +1 -1
- package/lib/formgroup/cs-radio-group/cs-radio-group.component.d.ts +1 -1
- package/lib/formgroup/cs-select/cs-select.component.d.ts +1 -1
- package/lib/formgroup/cs-switch/cs-switch.component.d.ts +1 -1
- package/lib/formgroup/select/cs-option/cs-option.component.d.ts +1 -1
- package/lib/formgroup/select/cs-select/cs-select.component.d.ts +1 -1
- package/lib/log-an-issue/log-an-issue.component.d.ts +7 -3
- package/lib/more-option/more-option.component.d.ts +1 -1
- package/lib/services/common.service.d.ts +14 -0
- package/lib/sharedComponents/approval-workflow/approval-create-form/approval-create-form.component.d.ts +1 -1
- package/lib/sharedComponents/approval-workflow/approval-workflow-list/approval-workflow-list.component.d.ts +1 -1
- package/lib/sharedComponents/approval-workflow/approval-workflow.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/add-logic/add-logic.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/add-response-set-popup/add-response-set-popup.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/add-segment-popup/add-segment-popup.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/assessment-settings/assessment-settings.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/checkbox/checkbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/choice-settings-panel/choice-settings-panel.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/date-time/date-time.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/dropdown/dropdown.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/image-choice/image-choice.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/matrix-dropdown/matrix-dropdown.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/matrix-rating-scale/matrix-rating-scale.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/multiple-choice/multiple-choice.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/multiple-textbox/multiple-textbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/ranking/ranking.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/slider/slider.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/star-rating/star-rating.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/thank-you/thank-you.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/weightage-selector/weightage-selector.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/build/welcome/welcome.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/editor-wrapper/editor-wrapper.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic/logic.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-checkbox/logic-checkbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-comment-box/logic-comment-box.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-date-time/logic-date-time.component.d.ts +7 -3
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-dropdown/logic-dropdown.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-image-choice/logic-image-choice.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-multiple-choice/logic-multiple-choice.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-multiple-textbox/logic-multiple-textbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-ranking/logic-ranking.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-single-textbox/logic-single-textbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-slider/logic-slider.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-star-rating/logic-star-rating.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/move/move.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/page-header/page-header.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-checkbox/preview-checkbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-comment-box/preview-comment-box.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-date-time/preview-date-time.component.d.ts +8 -5
- package/lib/sharedComponents/assessment-editor/components/preview/preview-dropdown/preview-dropdown.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-file-upload/preview-file-upload.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-image-choice/preview-image-choice.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-matrix-dropdown/preview-matrix-dropdown.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-matrix-rating-scale/preview-matrix-rating-scale.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-multiple-choice/preview-multiple-choice.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-multiple-textbox/preview-multiple-textbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-ranking/preview-ranking.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-single-textbox/preview-single-textbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-slider/preview-slider.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-star-rating/preview-star-rating.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/preview-wrapper/preview-wrapper.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/thank-you/thank-you.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/preview/welcome/welcome.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/question-type/question-type.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/quick-settings/quick-settings.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/response-selector/response-selector.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/setting-anonymous/setting-anonymous.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/setting-response-segment/setting-response-segment.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/single-line-editor/single-line-editor.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/toolkit/toolkit.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/components/welcome-thankyou/welcome-thankyou.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-editor/create-assessment-container/create-assessment-container.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-list/assessment-list-loader/assessment-list-loader.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-list/assessment-list-sub-loader/assessment-list-sub-loader.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-list/assessment-list.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/checkbox-question/checkbox-question.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/date-time/date-time.component.d.ts +8 -5
- package/lib/sharedComponents/assessment-preview/description-preview/description-preview.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/device/device.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/file-upload/file-upload.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/page-header/page-header.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/preview/preview.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/preview-container/preview-container.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/quick-settings/quick-settings.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/radio-question/radio-question.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/section-details/section-details.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/select-question/select-question.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/single-textbox/single-textbox.component.d.ts +1 -1
- package/lib/sharedComponents/assessment-preview/welcome/welcome.component.d.ts +1 -1
- package/lib/sharedComponents/audit-category-list/audit-category-list.component.d.ts +1 -1
- package/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.d.ts +1 -1
- package/lib/sharedComponents/bulk-view/bulk-view.component.d.ts +1 -1
- package/lib/sharedComponents/category-list/category-list.component.d.ts +1 -1
- package/lib/sharedComponents/category-multiselect/category-multi-select.component.d.ts +1 -1
- package/lib/sharedComponents/checkbox-list/checkbox-list.component.d.ts +1 -1
- package/lib/sharedComponents/checkpoint/checkpoints/checkpoints.component.d.ts +1 -1
- package/lib/sharedComponents/checkpoint/checkpoints-list/checkpoints-list.component.d.ts +1 -1
- package/lib/sharedComponents/checkpoint/checkpoints-questions/checkpoints-questions.component.d.ts +6 -2
- package/lib/sharedComponents/checkpoint-floating-bar/checkpoint-floating-bar.component.d.ts +1 -1
- package/lib/sharedComponents/checkpoint-policy/checkpoints-policy-container/checkpoints-policy-container.component.d.ts +1 -1
- package/lib/sharedComponents/checkpoint-policy/checkpoints-policy-list/checkpoints-policy-list.component.d.ts +1 -1
- package/lib/sharedComponents/checkpoint-policy/checkpoints-policy-questions/checkpoints-policy-questions.component.d.ts +1 -1
- package/lib/sharedComponents/directive/autofocus.directive.d.ts +1 -1
- package/lib/sharedComponents/directive/conditional-focus.directive.d.ts +1 -1
- package/lib/sharedComponents/directive/drag-drop.directive.d.ts +1 -1
- package/lib/sharedComponents/directive/input-trim.directive.d.ts +1 -1
- package/lib/sharedComponents/directive/scroll-in-view.directive.d.ts +1 -1
- package/lib/sharedComponents/document-section/document-section.component.d.ts +1 -1
- package/lib/sharedComponents/floating-bar/floating-bar.component.d.ts +1 -1
- package/lib/sharedComponents/format-and-evidence/format-and-evidence.component.d.ts +1 -1
- package/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.d.ts +1 -1
- package/lib/sharedComponents/framework-list/framework-list.component.d.ts +1 -1
- package/lib/sharedComponents/framework-list/framework-responsibility-table/framework-responsibility-table.component.d.ts +1 -1
- package/lib/sharedComponents/framework-list/framework-table-loader/framework-table-loader.component.d.ts +1 -1
- package/lib/sharedComponents/framework-list/parent-table/parent-table.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-checkbox-list/frequency-checkbox-list.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-container/frequency-container.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-due-date/frequency-due-date.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-lifecycle/frequency-lifecycle.component.d.ts +10 -4
- package/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.d.ts +9 -5
- package/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-radio-list/frequency-radio-list.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-random/frequency-random.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-top/frequency-top.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.d.ts +1 -1
- package/lib/sharedComponents/frequency/frequency.service.d.ts +1 -0
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-annual/frequency-dialog-annual.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-biannual/frequency-dialog-biannual.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-checkbox-list/frequency-dialog-checkbox-list.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-container/frequency-dialog-container.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-due-date/frequency-dialog-due-date.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-monthly/frequency-dialog-monthly.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-one-time/frequency-dialog-one-time.component.d.ts +10 -5
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-quarterly/frequency-dialog-quarterly.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-radio-list/frequency-dialog-radio-list.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-top/frequency-dialog-top.component.d.ts +1 -1
- package/lib/sharedComponents/frequency-dialog/frequency-dialog-weekly/frequency-dialog-weekly.component.d.ts +1 -1
- package/lib/sharedComponents/group-users-list/group-users-list.component.d.ts +1 -1
- package/lib/sharedComponents/link-program/link-program/link-program.component.d.ts +1 -1
- package/lib/sharedComponents/link-responsibility/link-responsibility.component.d.ts +1 -1
- package/lib/sharedComponents/list-loader/list-loader.component.d.ts +1 -1
- package/lib/sharedComponents/no-data/no-data.component.d.ts +1 -1
- package/lib/sharedComponents/owner-list/owner-list.component.d.ts +1 -1
- package/lib/sharedComponents/policy-access/policy-access.component.d.ts +1 -1
- package/lib/sharedComponents/program-listing/program-listing.component.d.ts +1 -1
- package/lib/sharedComponents/radio-list/radio-list.component.d.ts +1 -1
- package/lib/sharedComponents/radio-list-with-pagination/link-treatment-loader/link-treatment-loader.component.d.ts +1 -1
- package/lib/sharedComponents/radio-list-with-pagination/radio-list.component.d.ts +1 -1
- package/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.d.ts +1 -1
- package/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.d.ts +1 -1
- package/lib/sharedComponents/review-frequency/review-frequency.component.d.ts +1 -1
- package/lib/sharedComponents/risk-classification/risk-classification.component.d.ts +1 -1
- package/lib/sharedComponents/roles-list/roles-list.component.d.ts +1 -1
- package/lib/sharedComponents/select-approvers/select-approvers.component.d.ts +1 -1
- package/lib/sharedComponents/table-card-loader/table-card-loader.component.d.ts +1 -1
- package/lib/sharedComponents/users-radio-list/users-radio-list.component.d.ts +1 -1
- package/lib/sharedComponents/v-loader/loader/loader.component.d.ts +1 -1
- package/lib/sharedComponents/v-loader/loader-inline/loader-inline.component.d.ts +1 -1
- package/lib/ui-kit/action-dialog/active/active.component.d.ts +1 -1
- package/lib/ui-kit/action-dialog/deactivate/deactivate.component.d.ts +1 -1
- package/lib/ui-kit/action-dialog/delete/delete.component.d.ts +1 -1
- package/lib/ui-kit/action-dialog/duplicate/duplicate.component.d.ts +1 -1
- package/lib/ui-kit/click-outside/click-outside.directive.d.ts +1 -1
- package/lib/ui-kit/dialog/dialog-injector.d.ts +2 -2
- package/lib/ui-kit/dialog/dialog.component.d.ts +6 -4
- package/lib/ui-kit/dialog/dialog.service.d.ts +3 -3
- package/lib/ui-kit/dialog/insertion.directive.d.ts +1 -1
- package/lib/ui-kit/directive/stop-propagation.directive.d.ts +1 -1
- package/lib/ui-kit/editor-loader/editor-loader/editor-loader.component.d.ts +1 -1
- package/lib/ui-kit/formgroup/click-outside.directive.d.ts +1 -1
- package/lib/ui-kit/formgroup/cs-checkbox/cs-checkbox.component.d.ts +1 -1
- package/lib/ui-kit/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.d.ts +1 -1
- package/lib/ui-kit/formgroup/cs-radio/cs-radio.component.d.ts +1 -1
- package/lib/ui-kit/formgroup/cs-radio-group/cs-radio-group.component.d.ts +1 -1
- package/lib/ui-kit/formgroup/cs-select/cs-select.component.d.ts +1 -1
- package/lib/ui-kit/formgroup/cs-switch/cs-switch.component.d.ts +1 -1
- package/lib/ui-kit/line-loader/line-loader.component.d.ts +1 -1
- package/lib/ui-kit/no-data/no-data.component.d.ts +1 -1
- package/lib/ui-kit/pagination/pagination/pagination.component.d.ts +1 -1
- package/lib/ui-kit/popover/popover-event.directive.d.ts +1 -1
- package/lib/ui-kit/popover/popover-longpress.directive.d.ts +1 -1
- package/lib/ui-kit/popover/popover.component.d.ts +1 -1
- package/lib/ui-kit/popover/popover.directive.d.ts +1 -1
- package/lib/ui-kit/popover-hover/popover-hover.component.d.ts +1 -1
- package/lib/ui-kit/popover-hover/popover-hover.directive.d.ts +1 -1
- package/lib/ui-kit/smiley-dialog/smiley-dialog.component.d.ts +1 -1
- package/lib/ui-kit/smiley-dialog-inline/smiley-dialog-inline.component.d.ts +1 -1
- package/lib/ui-kit/snack-bar/snack-bar.component.d.ts +1 -1
- package/lib/ui-kit/time-picker/time-picker/time-picker.component.d.ts +1 -1
- package/lib/ui-kit/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +1 -1
- package/lib/workflow/shared/components/attributes/attributes-checkbox/attributes-checkbox.component.d.ts +1 -1
- package/lib/workflow/shared/components/attributes/attributes-dropdown/attributes-dropdown.component.d.ts +1 -1
- package/lib/workflow/shared/components/attributes/attributes-text-box/attributes-text-box.component.d.ts +1 -1
- package/lib/workflow/shared/components/attributes/attributes.component.d.ts +1 -1
- package/lib/workflow/shared/components/attributes/date-picker/date-picker.component.d.ts +1 -1
- package/lib/workflow/shared/components/edit-mode/edit-mode.component.d.ts +1 -1
- package/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.d.ts +1 -1
- package/lib/workflow/shared/components/grc-object-list/grc-object-list.component.d.ts +1 -1
- package/lib/workflow/shared/components/grc-responsibility-listing/grc-responsibility-listing.component.d.ts +1 -1
- package/lib/workflow/shared/components/grc-risk-listing/grc-risk-listing.component.d.ts +1 -1
- package/lib/workflow/shared/components/grc-sub-category-listing/grc-sub-category-listing.component.d.ts +1 -1
- package/lib/workflow/shared/components/list-popup/list-popup.component.d.ts +1 -1
- package/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.d.ts +1 -1
- package/lib/workflow/shared/components/risk-category-risk-listing/risk-category-risk-listing.component.d.ts +1 -1
- package/lib/workflow/shared/components/table-card/table-card.component.d.ts +1 -1
- package/lib/workflow/shared/components/text-field/text-field.component.d.ts +1 -1
- package/lib/workflow/shared/components/text-field-icon/text-field-icon.component.d.ts +1 -1
- package/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.d.ts +1 -1
- package/lib/workflow-assessment/workflow-assessment.component.d.ts +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -1
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -1
- package/lib/workflow-pagination/workflow-pagination.component.d.ts +1 -1
- package/lib/workflow-policy/workflow-policy.component.d.ts +7 -3
- package/lib/workflow-program/create-program-ui/assessment-picker/assessment-loader/assessment-loader.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/assessment-picker/assessment-picker.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/assessment-picker/assessment-sub-loader/assessment-sub-loader.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/assessment-picker/workflow-pagination/workflow-pagination.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/checkbox/checkbox.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/cs-switch/cs-switch.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/custom-field/custom-field.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/define-framework-listing/define-framework-listing.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/define-framework-listing/loader/loader.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/directives/input-trim.directive.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/file-pill/file-pill.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/form-field/form-field.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/pagination/pagination/pagination.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/role-list/loader/loader.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/role-list/role-list.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/tab-selector/tab-selector.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/tick-mark/tick-mark.component.d.ts +1 -1
- package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +1 -1
- package/lib/workflow-program/workflow-program.component.d.ts +1 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/lib/workflow-services/auth.service.d.ts +0 -1
- package/lib/workflow-services/log-issue.service.d.ts +1 -0
- package/lib/workflow-survey-form/workflow-survey-form.component.d.ts +1 -1
- package/package.json +5 -12
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import { Component, EventEmitter, Output } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../../../ui-kit/dialog/dialog-config";
|
|
4
|
+
import * as i2 from "../../../../ui-kit/dialog/dialog-ref";
|
|
5
|
+
import * as i3 from "../../services/result-criteria.service";
|
|
6
|
+
import * as i4 from "../../../../ui-kit/snack-bar/snack-bar.service";
|
|
7
|
+
import * as i5 from "@angular/common";
|
|
8
|
+
import * as i6 from "../../../../ui-kit/tooltip/tooltip.directive";
|
|
9
|
+
import * as i7 from "../setting-anonymous/setting-anonymous.component";
|
|
10
|
+
import * as i8 from "../setting-response-segment/setting-response-segment.component";
|
|
11
|
+
export class AssessmentSettingsComponent {
|
|
12
|
+
closeSegmentPopup() { }
|
|
13
|
+
openSegmentPopup() { }
|
|
14
|
+
editSegment() { }
|
|
15
|
+
clickSegment() { }
|
|
16
|
+
clickMode() { }
|
|
17
|
+
clickResponse() { }
|
|
18
|
+
constructor(config, dialog, criteriaService, snackbar) {
|
|
19
|
+
this.config = config;
|
|
20
|
+
this.dialog = dialog;
|
|
21
|
+
this.criteriaService = criteriaService;
|
|
22
|
+
this.snackbar = snackbar;
|
|
23
|
+
this.description = {
|
|
24
|
+
mode: 'prime',
|
|
25
|
+
placeholder: 'Enter Segment criteria description',
|
|
26
|
+
};
|
|
27
|
+
this.action = new EventEmitter();
|
|
28
|
+
this.forAnimation = false;
|
|
29
|
+
this.settingsJSON = {
|
|
30
|
+
assessmentMode: true,
|
|
31
|
+
defaultScore: 0,
|
|
32
|
+
negativeScoreCriteria: 'FAILED',
|
|
33
|
+
negativeScore: 0,
|
|
34
|
+
weightageEnabled: false
|
|
35
|
+
};
|
|
36
|
+
this.activeSettingType = 'none';
|
|
37
|
+
}
|
|
38
|
+
ngOnInit() {
|
|
39
|
+
this.editorService = this.config.data.service;
|
|
40
|
+
this.settingsData = this.config.data.settings;
|
|
41
|
+
this.forAnimation = true;
|
|
42
|
+
setTimeout(() => {
|
|
43
|
+
this.forAnimation = false;
|
|
44
|
+
}, 1000);
|
|
45
|
+
this.settingsJSON = this.config.data.settingsJSON;
|
|
46
|
+
}
|
|
47
|
+
closePanel(evt) {
|
|
48
|
+
this.dialog.close({});
|
|
49
|
+
}
|
|
50
|
+
manipulateDefault(mode) {
|
|
51
|
+
if (mode === 'INCREASE' && this.settingsJSON.defaultScore >= 0) {
|
|
52
|
+
this.settingsJSON.defaultScore = this.settingsJSON.defaultScore + 1;
|
|
53
|
+
}
|
|
54
|
+
else if (mode === 'DECREASE' && this.settingsJSON.defaultScore >= 1) {
|
|
55
|
+
this.settingsJSON.defaultScore = this.settingsJSON.defaultScore - 1;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
manipulateNegativeScore(mode) {
|
|
59
|
+
if (mode === 'INCREASE' && this.settingsJSON.negativeScore >= 0) {
|
|
60
|
+
this.settingsJSON.negativeScore = this.settingsJSON.negativeScore + 1;
|
|
61
|
+
}
|
|
62
|
+
else if (mode === 'DECREASE' && this.settingsJSON.negativeScore >= 1) {
|
|
63
|
+
this.settingsJSON.negativeScore = this.settingsJSON.negativeScore - 1;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
executeAction(evt) {
|
|
67
|
+
this.dialog.close({
|
|
68
|
+
event: evt,
|
|
69
|
+
data: this.settingsJSON
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
setActiveType(type, index) {
|
|
73
|
+
this.activeSettingType = type;
|
|
74
|
+
if (type === 'ASSESSMENT') {
|
|
75
|
+
this.settingsData.settingsElements[index].isEnabled = true;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
enableStateChanged(e, type) {
|
|
79
|
+
if (type === 'ANONYMOUS') {
|
|
80
|
+
this.editorService.formsPage.anonymousResponse = e;
|
|
81
|
+
}
|
|
82
|
+
if (type === 'RESPONSE_SEGMENT') {
|
|
83
|
+
this.editorService.formsPage.responseSegment['isEnabled'] = e;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
save(evt, index) {
|
|
87
|
+
this.settingsData.settingsElements[index] = evt;
|
|
88
|
+
if (evt.type === 'ASSESSMENT') {
|
|
89
|
+
this.editorService.formsPage.settings.assessmentMode = evt.isEnabled;
|
|
90
|
+
this.editorService.formsPage.settings.defaultScore = evt.defaultScore;
|
|
91
|
+
this.editorService.formsPage.settings.negativeScore = evt.negativeScore;
|
|
92
|
+
this.editorService.formsPage.settings.negativeScoreCriteria = evt.negativeScoreCriteria;
|
|
93
|
+
this.editorService.formsPage.settings.weightageEnabled = evt.weightageEnabled;
|
|
94
|
+
this.settingsData.settingsElements[index] = evt;
|
|
95
|
+
this.activeSettingType = 'none';
|
|
96
|
+
const assessmentEligibleQuestions = ['checkbox', 'multiple-choice', 'dropdown'];
|
|
97
|
+
this.editorService.formsPage.elements.forEach((question) => {
|
|
98
|
+
this.editorService.score.defaultScore = evt.defaultScore;
|
|
99
|
+
this.editorService.score.negativeScore = evt.negativeScore;
|
|
100
|
+
if (assessmentEligibleQuestions.includes(question.type)) {
|
|
101
|
+
question.choices.forEach((element) => {
|
|
102
|
+
if (!element.isFailed) {
|
|
103
|
+
element.score = evt.defaultScore;
|
|
104
|
+
}
|
|
105
|
+
if (element.isFailed && (evt.negativeScoreCriteria === 'FAILED' || evt.negativeScoreCriteria === 'FAILED_SKIPPED')) {
|
|
106
|
+
element.score = evt.negativeScore;
|
|
107
|
+
}
|
|
108
|
+
if (evt.weightageEnabled) {
|
|
109
|
+
if (!question.weightage || question.weightage === undefined) {
|
|
110
|
+
question.weightage = 100;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
else {
|
|
114
|
+
question.weightage = 100;
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
this.editorService.formsPage.responseSegment['maxScore'] = this.criteriaService.calculateMaxScore(this.editorService.formsPage);
|
|
119
|
+
});
|
|
120
|
+
this.snackbar.show("The settings have been updated.", 'success');
|
|
121
|
+
this.activeSettingType = '';
|
|
122
|
+
// } else {
|
|
123
|
+
// this.fd.formsPage.settings.assessmentMode = false;
|
|
124
|
+
// this.settingsData.settingsElements[index].defaultScore = this.fd.settings.defaultScore;
|
|
125
|
+
// this.settingsData.settingsElements[index].negativeScore = this.fd.settings.negativeScore;
|
|
126
|
+
// this.settingsData.settingsElements[index].weightageEnabled = this.fd.settings.weightageEnabled;
|
|
127
|
+
// this.activeSettingType = 'none';
|
|
128
|
+
// this.settingsData.settingsElements[index].isEnabled = false;
|
|
129
|
+
// }
|
|
130
|
+
// });
|
|
131
|
+
}
|
|
132
|
+
if (evt.type === 'RESPONSE_SEGMENT') {
|
|
133
|
+
evt.isEnabled = true;
|
|
134
|
+
if (evt.isEnabled) {
|
|
135
|
+
evt.segmentData.isEnabled = true;
|
|
136
|
+
this.editorService.formsPage.responseSegment = evt.segmentData;
|
|
137
|
+
this.snackbar.show("The settings have been updated.", 'success');
|
|
138
|
+
this.activeSettingType = '';
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
cancel() {
|
|
143
|
+
this.activeSettingType = '';
|
|
144
|
+
}
|
|
145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AssessmentSettingsComponent, deps: [{ token: i1.DialogConfig }, { token: i2.DialogRef }, { token: i3.ResultCriteriaService }, { token: i4.SnackBarService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
146
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AssessmentSettingsComponent, selector: "app-assessment-settings", outputs: { action: "action" }, ngImport: i0, template: "<div class=\"assessment-settings\">\r\n <div class=\"assessment-settings-head vx-pl-4 vx-pr-4 vx-d-flex vx-align-center vx-justify-between\">\r\n <div class=\"vx-d-flex vx-align-center\">\r\n <div class=\"heading vx-fs-14 vx-fw-500 vx-label-txt\">{{settingsData?.panelTitle | titlecase }}</div>\r\n <!-- <i class=\"icons info vx-fs-12 vx-txt-blue vx-ml-1\" [appTooltip]=\"'Assessment Settings info text here...'\" placement=\"bottom\" delay=\"0\" type=\"white\" [tooltipMandatory]=\"true\"></i> -->\r\n </div>\r\n <button (click)=\"closePanel()\" class=\"close vx-fs-16 vx-label-txt vx-p-0 vx-m-0 vx-d-flex vx-align-center\" [appTooltip]=\"'[Esc] to close'\" placement=\"left\" delay=\"0\" type=\"black\" [tooltipMandatory]=\"true\"><i class=\"icons vx-d-flex\"></i></button>\r\n </div>\r\n <div class=\"assessment-settings-body vx-pt-4 vx-pb-4\" #scrolleffect>\r\n <!-- Skeleton loader -->\r\n <ng-container *ngIf=\"false\">\r\n <div class=\"settings-item skeleton-loader vx-mb-4 vx-pl-4 vx-pr-4 vx-d-flex vx-align-center\" *ngFor=\"let data of [1, 1, 1]\">\r\n <div class=\"loader\"></div>\r\n </div>\r\n </ng-container>\r\n <!-- Skeleton loader -->\r\n <ng-container *ngFor=\"let setting of settingsData?.settingsElements;let i = index\">\r\n <!-- <div *ngIf=\"setting.isVisible === true\" class=\"settings-item vx-mb-4 vx-pl-4 vx-pr-4\" [class.active]=\"showResponse\" [class.done]=\"!showResponse\">\r\n <div *ngIf=\"showResponse\" class=\"status edit vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"edit-loader\" viewBox=\"25 25 50 50\">\r\n <circle class=\"loader-path\" cx=\"50\" cy=\"50\" r=\"20\" fill=\"none\" stroke=\"#1e5dd3\" stroke-width=\"3\" />\r\n </svg>\r\n <i class=\"icons vx-fs-14 vx-txt-blue\"></i>\r\n </div>\r\n <div *ngIf=\"!showResponse\" class=\"status done vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"checkIcon\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 52 52\">\r\n <circle class=\"checkIcon__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\" />\r\n <path class=\"checkIcon__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\" />\r\n </svg>\r\n </div>\r\n <div class=\"item-head vx-d-flex vx-align-center vx-justify-between vx-pt-3 vx-pb-3\" (click)=\"clickResponse()\">\r\n <div class=\"name vx-fs-11 vx-fw-500 vx-label-txt vx-tt-uppercase\">ANONYMIZE FORM RESPONSE</div>\r\n <i class=\"icons vx-fs-14 vx-paragraph-txt\">\r\n <ng-container *ngIf=\"!showResponse\"></ng-container>\r\n <ng-container *ngIf=\"showResponse\"></ng-container>\r\n </i>\r\n </div>\r\n <div class=\"item-body vx-pt-3 vx-pb-3\" *ngIf=\"showResponse\">\r\n <app-cs-switch><div class=\"vx-fs-13 vx-paragraph-txt\">Make responses to this form anonymous</div></app-cs-switch>\r\n </div>\r\n </div> -->\r\n <div class=\"settings-item vx-mb-4 vx-pl-4 vx-pr-4\" [class.active]=\"showMode\" [class.done]=\"!showMode\" [class.error]=\"false\">\r\n <div *ngIf=\"false\" class=\"status edit vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"edit-loader\" viewBox=\"25 25 50 50\">\r\n <circle class=\"loader-path\" cx=\"50\" cy=\"50\" r=\"20\" fill=\"none\" stroke=\"#1e5dd3\" stroke-width=\"3\" />\r\n </svg>\r\n <i class=\"icons vx-fs-14 vx-txt-blue\"></i>\r\n </div>\r\n <div *ngIf=\"false\" class=\"status done vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"checkIcon\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 52 52\">\r\n <circle class=\"checkIcon__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\" />\r\n <path class=\"checkIcon__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\" />\r\n </svg>\r\n </div>\r\n <div class=\"item-head vx-d-flex vx-align-center vx-justify-between vx-pt-3 vx-pb-3\" (click)=\"setActiveType(setting.type,i)\">\r\n <div class=\"name vx-fs-11 vx-fw-500 vx-label-txt vx-tt-uppercase\"> <span [innerHTML]=\"setting?.settingTitle\"></span> <i class=\"icons info vx-fs-12 vx-txt-blue vx-ml-1\" [appTooltip]=\"setting?.helpingText\" placement=\"bottom\" delay=\"0\" type=\"white\" [tooltipMandatory]=\"true\"></i></div>\r\n <i class=\"icons vx-fs-14 vx-paragraph-txt\" >\r\n <ng-container *ngIf=\"activeSettingType !== setting?.type\"></ng-container>\r\n <ng-container *ngIf=\"activeSettingType === setting?.type\" ></ng-container>\r\n </i>\r\n </div>\r\n <ng-container *ngIf=\"activeSettingType === setting?.type\">\r\n <app-setting-anonymous (cancelEvt)=\"cancel()\" *ngIf=\"setting?.type === 'ASSESSMENT' && setting.isEnabled === true\" [setting]=\"setting\" (save)=\"save($event,i)\"></app-setting-anonymous>\r\n <app-setting-response-segment (cancelEvt)=\"cancel()\" *ngIf=\"setting?.type === 'RESPONSE_SEGMENT'\" [fd]=\"editorService\" [setting]=\"setting\" (save)=\"save($event,i)\"></app-setting-response-segment>\r\n </ng-container>\r\n \r\n <!-- assessment mode here -->\r\n <!-- <div class=\"item-body vx-pt-3 vx-pb-3\" *ngIf=\"true\">\r\n <app-cs-switch><div class=\"vx-fs-13 vx-paragraph-txt\">Enable assessment mode for this form</div></app-cs-switch>\r\n <div class=\"mode-list vx-mt-3\">\r\n <div class=\"mode-item vx-d-flex vx-align-center vx-justify-between vx-mt-2\" [class.done]=\"false\">\r\n <div class=\"heading vx-fs-13 vx-fw-500 vx-label-txt vx-pl-3\">Set default scores for all questions</div>\r\n <div *ngIf=\"true\" class=\"score-area vx-d-flex vx-align-center vx-pl-3 vx-pr-1\">\r\n <div class=\"vx-fs-12 vx-paragraph-txt vx-mr-2\">Score</div>\r\n <div class=\"input-area vx-d-flex vx-align-center\">\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">-</button>\r\n <input type=\"number\" value='10'>\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">+</button>\r\n </div>\r\n </div>\r\n <div *ngIf=\"false\" class=\"score vx-pl-2 vx-pr-2 vx-lh-6\">\r\n <span class=\"vx-fs-11 vx-fw-500 vx-paragraph-txt vx-tt-uppercase vx-mr-1\">SCORE:</span>\r\n <span class=\"vx-fs-13 vx-txt-blue\">10</span>\r\n </div>\r\n </div>\r\n <div class=\"mode-item vx-mt-2\" [class.done]=\"false\">\r\n <div class=\"vx-d-flex vx-align-center vx-justify-between\">\r\n <div class=\"heading vx-fs-13 vx-fw-500 vx-label-txt vx-pl-3\">Select a criterion for negative scores</div>\r\n <div *ngIf=\"true\" class=\"score-area vx-d-flex vx-align-center vx-pl-3 vx-pr-1\">\r\n <div class=\"vx-fs-12 vx-paragraph-txt vx-mr-2\">Score</div>\r\n <div class=\"input-area vx-d-flex vx-align-center\">\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">-</button>\r\n <input type=\"number\" value='0'>\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">+</button>\r\n </div>\r\n </div>\r\n <div *ngIf=\"false\" class=\"score vx-pl-2 vx-pr-2 vx-lh-6\">\r\n <span class=\"vx-fs-11 vx-fw-500 vx-paragraph-txt vx-tt-uppercase vx-mr-1\">SCORE:</span>\r\n <span class=\"vx-fs-13 vx-txt-blue\">2</span>\r\n </div>\r\n </div>\r\n <div class=\"criteria-list vx-pt-3 vx-pl-3\">\r\n <app-cs-radio><div class=\"name vx-fs-12 vx-paragraph-txt\">Failed Responses</div></app-cs-radio>\r\n <app-cs-radio><div class=\"name vx-fs-12 vx-paragraph-txt\">Skipped Questions</div></app-cs-radio>\r\n <app-cs-radio><div class=\"name vx-fs-12 vx-paragraph-txt\">Skipped Questions & Failed Responses</div></app-cs-radio>\r\n </div>\r\n </div>\r\n <div class=\"mode-item vx-d-flex vx-align-center vx-justify-between vx-mt-2 vx-pl-3 vx-pr-3\">\r\n <app-cs-switch><div class=\"vx-fs-13 vx-label-txt\">Enabled weightage for each question</div></app-cs-switch>\r\n </div>\r\n </div>\r\n </div> -->\r\n </div>\r\n \r\n </ng-container>\r\n </div>\r\n</div>", styles: ["@import\"https://cdn.v-comply.com/design-system/css/icons/icons.css\";@import\"https://cdn.v-comply.com/design-system/css/mixin/mixin.css\";@import\"https://cdn.v-comply.com/design-system/css/display/display.css\";@import\"https://cdn.v-comply.com/design-system/css/alignment/alignment.css\";@import\"https://cdn.v-comply.com/design-system/css/color/color.css\";@import\"https://cdn.v-comply.com/design-system/css/text/text.css\";@import\"https://cdn.v-comply.com/design-system/css/width/width.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-top.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-left.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-right.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-top.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-left.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-right.css\";::ng-deep .assessment-settings{background:#fff;width:31.25rem;height:100vh}::ng-deep .assessment-settings-head{background:#f8f8f8;border-bottom:1px solid #F1F1F1;height:3rem}::ng-deep .assessment-settings-head i.info{cursor:pointer}::ng-deep .assessment-settings-head button.close{background:transparent;border:none;border-radius:0}::ng-deep .assessment-settings-body{padding-left:2.25rem;padding-right:1rem;width:32.25rem;position:relative;left:-1rem;height:calc(100vh - 3.5rem);overflow-y:auto}::ng-deep .assessment-settings-body::-webkit-scrollbar-track{background-color:transparent}::ng-deep .assessment-settings-body .settings-item{border:1px solid #DBDBDB;border-radius:.25rem;position:relative;transition:all .3s ease-in-out}::ng-deep .assessment-settings-body .settings-item:hover,::ng-deep .assessment-settings-body .settings-item.active{border-color:#1e5dd3;box-shadow:0 3px 6px #1e5dd326}::ng-deep .assessment-settings-body .settings-item.done{background:#fbfbfb;border-color:#f1f1f1}::ng-deep .assessment-settings-body .settings-item.done:hover{border-color:#1e5dd3}::ng-deep .assessment-settings-body .settings-item.error{border-color:#d93b41!important}::ng-deep .assessment-settings-body .settings-item.error:hover,::ng-deep .assessment-settings-body .settings-item.error.active{border-color:#d93b41!important;box-shadow:none!important}::ng-deep .assessment-settings-body .settings-item .status{background:#fff;border-radius:50%;position:absolute;left:-2.25rem;top:.35rem;width:1.75rem;height:1.75rem;transition:all .1s ease-in-out;z-index:1}::ng-deep .assessment-settings-body .settings-item .status.done .checkIcon{position:absolute;top:-1px;width:29px;height:29px;border-radius:50%;stroke-width:4;stroke:#34aa44;stroke-miterlimit:10;box-shadow:inset 0 0 #34aa44;animation:fillCheck .4s ease-in-out .4s forwards,scale .3s ease-in-out .9s both}::ng-deep .assessment-settings-body .settings-item .status.done .checkIcon__circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:#34aa44;fill:none;animation:strokeCheck .6s cubic-bezier(.65,0,.45,1) forwards}::ng-deep .assessment-settings-body .settings-item .status.done .checkIcon__check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokeCheck .3s cubic-bezier(.65,0,.45,1) .8s forwards}::ng-deep .assessment-settings-body .settings-item .status.edit .edit-loader{position:absolute;top:-.1875rem;left:-.1875rem;right:0;bottom:0;width:34px;height:34px;transform:rotate(90deg)}::ng-deep .assessment-settings-body .settings-item .status.edit .editmark{width:28px;height:28px;border-radius:50%;stroke-width:4;stroke:#1e5dd3;stroke-miterlimit:10;box-shadow:inset 0 0 #1e5dd3}::ng-deep .assessment-settings-body .settings-item .status.edit .editmark__circle{stroke-dasharray:0;stroke-dashoffset:0;stroke-width:0;stroke-miterlimit:10;stroke:#f1f1f1;fill:none;animation:strokeCheck .6s cubic-bezier(.65,0,.45,1) forwards;transform:scale(.23)}::ng-deep .assessment-settings-body .settings-item .status.edit .editmark__check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;fill:#1e5dd3;transform:scale(.5)}::ng-deep .assessment-settings-body .settings-item .item-head{min-height:2.5rem;width:100%;cursor:pointer}::ng-deep .assessment-settings-body .settings-item .item-head .name I.info{position:relative;top:1px;cursor:pointer}::ng-deep .assessment-settings-body .settings-item .item-body{border-top:1px solid #F1F1F1}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item{border:1px solid #DBDBDB;border-radius:.25rem;min-height:2.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item.done{background:#fbfbfb;border-color:#f1f1f1}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item.done .criteria-list{border-color:#f1f1f1}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score-area{border-left:1px solid #DBDBDB;width:9.5rem;height:2.375rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score-area .input-area button{background:transparent;border:none;border-radius:0;height:1.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score-area .input-area input{background:#fff;border:1px solid #F1F1F1;border-radius:.25rem;color:#747576;font-size:13px;text-align:center;width:44px;height:1.5rem;outline:none}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score{background:#fff;border:1px solid #F1F1F1;border-radius:.125rem;margin:.375rem .375rem .375rem 0;min-width:4.5rem;max-width:5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .criteria-list{border-top:1px solid #DBDBDB}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .criteria-list cs-radio{display:block;margin-bottom:.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item app-cs-switch{width:100%}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item{position:relative;min-height:2.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input{background:#fff;border:1px solid #DBDBDB;border-radius:.25rem;color:#747576;font-size:12px;padding:0 .75rem;height:2.5rem;width:100%;outline:none;transition:all .3s ease-in-out}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input:hover,::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input:focus{border-color:#1e5dd3;box-shadow:0 3px 6px #1e5dd326}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input::placeholder{color:#747576;opacity:1}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item vcomply-editor .editor-container .editable-block{font-size:12px;padding:.5rem .75rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item vcomply-editor .editor-container .editable-block:before{color:#747576!important}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .score-label{background:#f1f1f1;border-radius:.125rem;position:relative;top:-.375rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list{background:#f8f8f8;border-radius:.125rem;height:2rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .left{width:calc(100% - 6.5rem)}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .left .name{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:calc(100% - 2rem)}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .left i.info{cursor:pointer}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right{width:6.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right .score{border-radius:0 .125rem .125rem 0;height:2rem;display:flex}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right .action{height:2rem;display:none}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right .action button{background:transparent;border:none;border-radius:0}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list:hover .right .score{display:none}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list:hover .right .action{display:flex}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list button.segment-close{top:-2.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item button.segment-btn{background:#fff;border:1px solid #1e5dd3;border-radius:.25rem;height:2.5rem;width:100%}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item button.segment-close{background:#1e5dd3;border:.25rem solid #FFFFFF;border-radius:50%;width:36px;height:36px;margin:.125rem auto;position:relative;z-index:3}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .segment-popup{position:absolute;bottom:1.25rem;left:.875rem;width:25rem;z-index:2}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom{background:#fbfbfb;border-top:1px solid #F1F1F1;border-radius:0 0 .1875rem .1875rem;height:2.75rem;margin:0 0 -.75rem -1rem;width:calc(100% + 2rem)}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button{border-radius:.125rem;height:1.875rem;width:5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button.cancel-btn{background:#fff;border:1px solid #DBDBDB}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button.save-btn{background:#1e5dd3;border:none}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button.disabled{background:#f1f1f1;color:#747576;pointer-events:none}::ng-deep .assessment-settings-body .settings-item.skeleton-loader{background:#f8f8f8;border-color:#f1f1f1;height:2.5rem}::ng-deep .assessment-settings-body .settings-item.skeleton-loader .loader{background:#dbdbdb;border-radius:.5rem;height:.5rem;width:12rem}@keyframes strokeCheck{to{stroke-dashoffset:0}}@keyframes fillCheck{to{box-shadow:inset 0 0 0 2px #34aa44}}@keyframes fillEdit{to{box-shadow:inset 0 0 0 2px #1e5dd3}}.circular-loader{animation:rotate 2s linear infinite;height:100%;transform-origin:center center;width:100%;position:absolute;top:0;left:0;margin:auto}.loader-path{stroke-dasharray:150,200;stroke-dashoffset:-10;animation:dash 1.5s ease-in-out infinite,color 6s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35}to{stroke-dasharray:89,200;stroke-dashoffset:-124}}::ng-deep app-cs-switch .cs-switch{cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i6.ToolTipDirective, selector: "[appTooltip]", inputs: ["appTooltip", "placement", "type", "tooltipMandatory", "showTooltip", "animate"] }, { kind: "component", type: i7.SettingAnonymousComponent, selector: "app-setting-anonymous", inputs: ["setting"], outputs: ["save", "cancelEvt"] }, { kind: "component", type: i8.SettingResponseSegmentComponent, selector: "app-setting-response-segment", inputs: ["setting", "formJSON", "fd"], outputs: ["save", "closed", "cancelEvt"] }, { kind: "pipe", type: i5.TitleCasePipe, name: "titlecase" }] }); }
|
|
147
|
+
}
|
|
148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AssessmentSettingsComponent, decorators: [{
|
|
149
|
+
type: Component,
|
|
150
|
+
args: [{ selector: 'app-assessment-settings', template: "<div class=\"assessment-settings\">\r\n <div class=\"assessment-settings-head vx-pl-4 vx-pr-4 vx-d-flex vx-align-center vx-justify-between\">\r\n <div class=\"vx-d-flex vx-align-center\">\r\n <div class=\"heading vx-fs-14 vx-fw-500 vx-label-txt\">{{settingsData?.panelTitle | titlecase }}</div>\r\n <!-- <i class=\"icons info vx-fs-12 vx-txt-blue vx-ml-1\" [appTooltip]=\"'Assessment Settings info text here...'\" placement=\"bottom\" delay=\"0\" type=\"white\" [tooltipMandatory]=\"true\"></i> -->\r\n </div>\r\n <button (click)=\"closePanel()\" class=\"close vx-fs-16 vx-label-txt vx-p-0 vx-m-0 vx-d-flex vx-align-center\" [appTooltip]=\"'[Esc] to close'\" placement=\"left\" delay=\"0\" type=\"black\" [tooltipMandatory]=\"true\"><i class=\"icons vx-d-flex\"></i></button>\r\n </div>\r\n <div class=\"assessment-settings-body vx-pt-4 vx-pb-4\" #scrolleffect>\r\n <!-- Skeleton loader -->\r\n <ng-container *ngIf=\"false\">\r\n <div class=\"settings-item skeleton-loader vx-mb-4 vx-pl-4 vx-pr-4 vx-d-flex vx-align-center\" *ngFor=\"let data of [1, 1, 1]\">\r\n <div class=\"loader\"></div>\r\n </div>\r\n </ng-container>\r\n <!-- Skeleton loader -->\r\n <ng-container *ngFor=\"let setting of settingsData?.settingsElements;let i = index\">\r\n <!-- <div *ngIf=\"setting.isVisible === true\" class=\"settings-item vx-mb-4 vx-pl-4 vx-pr-4\" [class.active]=\"showResponse\" [class.done]=\"!showResponse\">\r\n <div *ngIf=\"showResponse\" class=\"status edit vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"edit-loader\" viewBox=\"25 25 50 50\">\r\n <circle class=\"loader-path\" cx=\"50\" cy=\"50\" r=\"20\" fill=\"none\" stroke=\"#1e5dd3\" stroke-width=\"3\" />\r\n </svg>\r\n <i class=\"icons vx-fs-14 vx-txt-blue\"></i>\r\n </div>\r\n <div *ngIf=\"!showResponse\" class=\"status done vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"checkIcon\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 52 52\">\r\n <circle class=\"checkIcon__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\" />\r\n <path class=\"checkIcon__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\" />\r\n </svg>\r\n </div>\r\n <div class=\"item-head vx-d-flex vx-align-center vx-justify-between vx-pt-3 vx-pb-3\" (click)=\"clickResponse()\">\r\n <div class=\"name vx-fs-11 vx-fw-500 vx-label-txt vx-tt-uppercase\">ANONYMIZE FORM RESPONSE</div>\r\n <i class=\"icons vx-fs-14 vx-paragraph-txt\">\r\n <ng-container *ngIf=\"!showResponse\"></ng-container>\r\n <ng-container *ngIf=\"showResponse\"></ng-container>\r\n </i>\r\n </div>\r\n <div class=\"item-body vx-pt-3 vx-pb-3\" *ngIf=\"showResponse\">\r\n <app-cs-switch><div class=\"vx-fs-13 vx-paragraph-txt\">Make responses to this form anonymous</div></app-cs-switch>\r\n </div>\r\n </div> -->\r\n <div class=\"settings-item vx-mb-4 vx-pl-4 vx-pr-4\" [class.active]=\"showMode\" [class.done]=\"!showMode\" [class.error]=\"false\">\r\n <div *ngIf=\"false\" class=\"status edit vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"edit-loader\" viewBox=\"25 25 50 50\">\r\n <circle class=\"loader-path\" cx=\"50\" cy=\"50\" r=\"20\" fill=\"none\" stroke=\"#1e5dd3\" stroke-width=\"3\" />\r\n </svg>\r\n <i class=\"icons vx-fs-14 vx-txt-blue\"></i>\r\n </div>\r\n <div *ngIf=\"false\" class=\"status done vx-d-flex vx-align-center vx-justify-center\">\r\n <svg class=\"checkIcon\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 52 52\">\r\n <circle class=\"checkIcon__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\" />\r\n <path class=\"checkIcon__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\" />\r\n </svg>\r\n </div>\r\n <div class=\"item-head vx-d-flex vx-align-center vx-justify-between vx-pt-3 vx-pb-3\" (click)=\"setActiveType(setting.type,i)\">\r\n <div class=\"name vx-fs-11 vx-fw-500 vx-label-txt vx-tt-uppercase\"> <span [innerHTML]=\"setting?.settingTitle\"></span> <i class=\"icons info vx-fs-12 vx-txt-blue vx-ml-1\" [appTooltip]=\"setting?.helpingText\" placement=\"bottom\" delay=\"0\" type=\"white\" [tooltipMandatory]=\"true\"></i></div>\r\n <i class=\"icons vx-fs-14 vx-paragraph-txt\" >\r\n <ng-container *ngIf=\"activeSettingType !== setting?.type\"></ng-container>\r\n <ng-container *ngIf=\"activeSettingType === setting?.type\" ></ng-container>\r\n </i>\r\n </div>\r\n <ng-container *ngIf=\"activeSettingType === setting?.type\">\r\n <app-setting-anonymous (cancelEvt)=\"cancel()\" *ngIf=\"setting?.type === 'ASSESSMENT' && setting.isEnabled === true\" [setting]=\"setting\" (save)=\"save($event,i)\"></app-setting-anonymous>\r\n <app-setting-response-segment (cancelEvt)=\"cancel()\" *ngIf=\"setting?.type === 'RESPONSE_SEGMENT'\" [fd]=\"editorService\" [setting]=\"setting\" (save)=\"save($event,i)\"></app-setting-response-segment>\r\n </ng-container>\r\n \r\n <!-- assessment mode here -->\r\n <!-- <div class=\"item-body vx-pt-3 vx-pb-3\" *ngIf=\"true\">\r\n <app-cs-switch><div class=\"vx-fs-13 vx-paragraph-txt\">Enable assessment mode for this form</div></app-cs-switch>\r\n <div class=\"mode-list vx-mt-3\">\r\n <div class=\"mode-item vx-d-flex vx-align-center vx-justify-between vx-mt-2\" [class.done]=\"false\">\r\n <div class=\"heading vx-fs-13 vx-fw-500 vx-label-txt vx-pl-3\">Set default scores for all questions</div>\r\n <div *ngIf=\"true\" class=\"score-area vx-d-flex vx-align-center vx-pl-3 vx-pr-1\">\r\n <div class=\"vx-fs-12 vx-paragraph-txt vx-mr-2\">Score</div>\r\n <div class=\"input-area vx-d-flex vx-align-center\">\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">-</button>\r\n <input type=\"number\" value='10'>\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">+</button>\r\n </div>\r\n </div>\r\n <div *ngIf=\"false\" class=\"score vx-pl-2 vx-pr-2 vx-lh-6\">\r\n <span class=\"vx-fs-11 vx-fw-500 vx-paragraph-txt vx-tt-uppercase vx-mr-1\">SCORE:</span>\r\n <span class=\"vx-fs-13 vx-txt-blue\">10</span>\r\n </div>\r\n </div>\r\n <div class=\"mode-item vx-mt-2\" [class.done]=\"false\">\r\n <div class=\"vx-d-flex vx-align-center vx-justify-between\">\r\n <div class=\"heading vx-fs-13 vx-fw-500 vx-label-txt vx-pl-3\">Select a criterion for negative scores</div>\r\n <div *ngIf=\"true\" class=\"score-area vx-d-flex vx-align-center vx-pl-3 vx-pr-1\">\r\n <div class=\"vx-fs-12 vx-paragraph-txt vx-mr-2\">Score</div>\r\n <div class=\"input-area vx-d-flex vx-align-center\">\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">-</button>\r\n <input type=\"number\" value='0'>\r\n <button class=\"vx-fs-14 vx-fw-500 vx-paragraph-txt vx-p-0 vx-pl-2 vx-pr-2 vx-m-0 vx-d-flex vx-align-center vx-justify-center\">+</button>\r\n </div>\r\n </div>\r\n <div *ngIf=\"false\" class=\"score vx-pl-2 vx-pr-2 vx-lh-6\">\r\n <span class=\"vx-fs-11 vx-fw-500 vx-paragraph-txt vx-tt-uppercase vx-mr-1\">SCORE:</span>\r\n <span class=\"vx-fs-13 vx-txt-blue\">2</span>\r\n </div>\r\n </div>\r\n <div class=\"criteria-list vx-pt-3 vx-pl-3\">\r\n <app-cs-radio><div class=\"name vx-fs-12 vx-paragraph-txt\">Failed Responses</div></app-cs-radio>\r\n <app-cs-radio><div class=\"name vx-fs-12 vx-paragraph-txt\">Skipped Questions</div></app-cs-radio>\r\n <app-cs-radio><div class=\"name vx-fs-12 vx-paragraph-txt\">Skipped Questions & Failed Responses</div></app-cs-radio>\r\n </div>\r\n </div>\r\n <div class=\"mode-item vx-d-flex vx-align-center vx-justify-between vx-mt-2 vx-pl-3 vx-pr-3\">\r\n <app-cs-switch><div class=\"vx-fs-13 vx-label-txt\">Enabled weightage for each question</div></app-cs-switch>\r\n </div>\r\n </div>\r\n </div> -->\r\n </div>\r\n \r\n </ng-container>\r\n </div>\r\n</div>", styles: ["@import\"https://cdn.v-comply.com/design-system/css/icons/icons.css\";@import\"https://cdn.v-comply.com/design-system/css/mixin/mixin.css\";@import\"https://cdn.v-comply.com/design-system/css/display/display.css\";@import\"https://cdn.v-comply.com/design-system/css/alignment/alignment.css\";@import\"https://cdn.v-comply.com/design-system/css/color/color.css\";@import\"https://cdn.v-comply.com/design-system/css/text/text.css\";@import\"https://cdn.v-comply.com/design-system/css/width/width.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-top.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-left.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-right.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-top.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-left.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-right.css\";::ng-deep .assessment-settings{background:#fff;width:31.25rem;height:100vh}::ng-deep .assessment-settings-head{background:#f8f8f8;border-bottom:1px solid #F1F1F1;height:3rem}::ng-deep .assessment-settings-head i.info{cursor:pointer}::ng-deep .assessment-settings-head button.close{background:transparent;border:none;border-radius:0}::ng-deep .assessment-settings-body{padding-left:2.25rem;padding-right:1rem;width:32.25rem;position:relative;left:-1rem;height:calc(100vh - 3.5rem);overflow-y:auto}::ng-deep .assessment-settings-body::-webkit-scrollbar-track{background-color:transparent}::ng-deep .assessment-settings-body .settings-item{border:1px solid #DBDBDB;border-radius:.25rem;position:relative;transition:all .3s ease-in-out}::ng-deep .assessment-settings-body .settings-item:hover,::ng-deep .assessment-settings-body .settings-item.active{border-color:#1e5dd3;box-shadow:0 3px 6px #1e5dd326}::ng-deep .assessment-settings-body .settings-item.done{background:#fbfbfb;border-color:#f1f1f1}::ng-deep .assessment-settings-body .settings-item.done:hover{border-color:#1e5dd3}::ng-deep .assessment-settings-body .settings-item.error{border-color:#d93b41!important}::ng-deep .assessment-settings-body .settings-item.error:hover,::ng-deep .assessment-settings-body .settings-item.error.active{border-color:#d93b41!important;box-shadow:none!important}::ng-deep .assessment-settings-body .settings-item .status{background:#fff;border-radius:50%;position:absolute;left:-2.25rem;top:.35rem;width:1.75rem;height:1.75rem;transition:all .1s ease-in-out;z-index:1}::ng-deep .assessment-settings-body .settings-item .status.done .checkIcon{position:absolute;top:-1px;width:29px;height:29px;border-radius:50%;stroke-width:4;stroke:#34aa44;stroke-miterlimit:10;box-shadow:inset 0 0 #34aa44;animation:fillCheck .4s ease-in-out .4s forwards,scale .3s ease-in-out .9s both}::ng-deep .assessment-settings-body .settings-item .status.done .checkIcon__circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:#34aa44;fill:none;animation:strokeCheck .6s cubic-bezier(.65,0,.45,1) forwards}::ng-deep .assessment-settings-body .settings-item .status.done .checkIcon__check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokeCheck .3s cubic-bezier(.65,0,.45,1) .8s forwards}::ng-deep .assessment-settings-body .settings-item .status.edit .edit-loader{position:absolute;top:-.1875rem;left:-.1875rem;right:0;bottom:0;width:34px;height:34px;transform:rotate(90deg)}::ng-deep .assessment-settings-body .settings-item .status.edit .editmark{width:28px;height:28px;border-radius:50%;stroke-width:4;stroke:#1e5dd3;stroke-miterlimit:10;box-shadow:inset 0 0 #1e5dd3}::ng-deep .assessment-settings-body .settings-item .status.edit .editmark__circle{stroke-dasharray:0;stroke-dashoffset:0;stroke-width:0;stroke-miterlimit:10;stroke:#f1f1f1;fill:none;animation:strokeCheck .6s cubic-bezier(.65,0,.45,1) forwards;transform:scale(.23)}::ng-deep .assessment-settings-body .settings-item .status.edit .editmark__check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;fill:#1e5dd3;transform:scale(.5)}::ng-deep .assessment-settings-body .settings-item .item-head{min-height:2.5rem;width:100%;cursor:pointer}::ng-deep .assessment-settings-body .settings-item .item-head .name I.info{position:relative;top:1px;cursor:pointer}::ng-deep .assessment-settings-body .settings-item .item-body{border-top:1px solid #F1F1F1}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item{border:1px solid #DBDBDB;border-radius:.25rem;min-height:2.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item.done{background:#fbfbfb;border-color:#f1f1f1}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item.done .criteria-list{border-color:#f1f1f1}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score-area{border-left:1px solid #DBDBDB;width:9.5rem;height:2.375rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score-area .input-area button{background:transparent;border:none;border-radius:0;height:1.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score-area .input-area input{background:#fff;border:1px solid #F1F1F1;border-radius:.25rem;color:#747576;font-size:13px;text-align:center;width:44px;height:1.5rem;outline:none}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .score{background:#fff;border:1px solid #F1F1F1;border-radius:.125rem;margin:.375rem .375rem .375rem 0;min-width:4.5rem;max-width:5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .criteria-list{border-top:1px solid #DBDBDB}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item .criteria-list cs-radio{display:block;margin-bottom:.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .mode-item app-cs-switch{width:100%}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item{position:relative;min-height:2.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input{background:#fff;border:1px solid #DBDBDB;border-radius:.25rem;color:#747576;font-size:12px;padding:0 .75rem;height:2.5rem;width:100%;outline:none;transition:all .3s ease-in-out}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input:hover,::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input:focus{border-color:#1e5dd3;box-shadow:0 3px 6px #1e5dd326}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item input::placeholder{color:#747576;opacity:1}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item vcomply-editor .editor-container .editable-block{font-size:12px;padding:.5rem .75rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item vcomply-editor .editor-container .editable-block:before{color:#747576!important}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .score-label{background:#f1f1f1;border-radius:.125rem;position:relative;top:-.375rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list{background:#f8f8f8;border-radius:.125rem;height:2rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .left{width:calc(100% - 6.5rem)}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .left .name{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:calc(100% - 2rem)}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .left i.info{cursor:pointer}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right{width:6.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right .score{border-radius:0 .125rem .125rem 0;height:2rem;display:flex}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right .action{height:2rem;display:none}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list .right .action button{background:transparent;border:none;border-radius:0}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list:hover .right .score{display:none}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list:hover .right .action{display:flex}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .associated-list button.segment-close{top:-2.5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item button.segment-btn{background:#fff;border:1px solid #1e5dd3;border-radius:.25rem;height:2.5rem;width:100%}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item button.segment-close{background:#1e5dd3;border:.25rem solid #FFFFFF;border-radius:50%;width:36px;height:36px;margin:.125rem auto;position:relative;z-index:3}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .form-item .segment-popup{position:absolute;bottom:1.25rem;left:.875rem;width:25rem;z-index:2}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom{background:#fbfbfb;border-top:1px solid #F1F1F1;border-radius:0 0 .1875rem .1875rem;height:2.75rem;margin:0 0 -.75rem -1rem;width:calc(100% + 2rem)}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button{border-radius:.125rem;height:1.875rem;width:5rem}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button.cancel-btn{background:#fff;border:1px solid #DBDBDB}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button.save-btn{background:#1e5dd3;border:none}::ng-deep .assessment-settings-body .settings-item .item-body .segment-form .segment-bottom button.disabled{background:#f1f1f1;color:#747576;pointer-events:none}::ng-deep .assessment-settings-body .settings-item.skeleton-loader{background:#f8f8f8;border-color:#f1f1f1;height:2.5rem}::ng-deep .assessment-settings-body .settings-item.skeleton-loader .loader{background:#dbdbdb;border-radius:.5rem;height:.5rem;width:12rem}@keyframes strokeCheck{to{stroke-dashoffset:0}}@keyframes fillCheck{to{box-shadow:inset 0 0 0 2px #34aa44}}@keyframes fillEdit{to{box-shadow:inset 0 0 0 2px #1e5dd3}}.circular-loader{animation:rotate 2s linear infinite;height:100%;transform-origin:center center;width:100%;position:absolute;top:0;left:0;margin:auto}.loader-path{stroke-dasharray:150,200;stroke-dashoffset:-10;animation:dash 1.5s ease-in-out infinite,color 6s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35}to{stroke-dasharray:89,200;stroke-dashoffset:-124}}::ng-deep app-cs-switch .cs-switch{cursor:pointer}\n"] }]
|
|
151
|
+
}], ctorParameters: function () { return [{ type: i1.DialogConfig }, { type: i2.DialogRef }, { type: i3.ResultCriteriaService }, { type: i4.SnackBarService }]; }, propDecorators: { action: [{
|
|
152
|
+
type: Output
|
|
153
|
+
}] } });
|
|
154
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNzZXNzbWVudC1zZXR0aW5ncy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy92eC13b3JrZmxvdy1lbmdpbmUvc3JjL2xpYi9zaGFyZWRDb21wb25lbnRzL2Fzc2Vzc21lbnQtZWRpdG9yL2NvbXBvbmVudHMvYXNzZXNzbWVudC1zZXR0aW5ncy9hc3Nlc3NtZW50LXNldHRpbmdzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Z4LXdvcmtmbG93LWVuZ2luZS9zcmMvbGliL3NoYXJlZENvbXBvbmVudHMvYXNzZXNzbWVudC1lZGl0b3IvY29tcG9uZW50cy9hc3Nlc3NtZW50LXNldHRpbmdzL2Fzc2Vzc21lbnQtc2V0dGluZ3MuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBYyxZQUFZLEVBQVUsTUFBTSxFQUFhLE1BQU0sZUFBZSxDQUFDOzs7Ozs7Ozs7O0FBYy9GLE1BQU0sT0FBTywyQkFBMkI7SUFpRHRDLGlCQUFpQixLQUFHLENBQUM7SUFDckIsZ0JBQWdCLEtBQUcsQ0FBQztJQUNwQixXQUFXLEtBQUcsQ0FBQztJQUNmLFlBQVksS0FBRyxDQUFDO0lBQ2hCLFNBQVMsS0FBRyxDQUFDO0lBQ2IsYUFBYSxLQUFHLENBQUM7SUFTakIsWUFBbUIsTUFBb0IsRUFBUyxNQUFpQixFQUFTLGVBQXNDLEVBQVMsUUFBd0I7UUFBOUgsV0FBTSxHQUFOLE1BQU0sQ0FBYztRQUFTLFdBQU0sR0FBTixNQUFNLENBQVc7UUFBUyxvQkFBZSxHQUFmLGVBQWUsQ0FBdUI7UUFBUyxhQUFRLEdBQVIsUUFBUSxDQUFnQjtRQVBqSixnQkFBVyxHQUFpQjtZQUN4QixJQUFJLEVBQUUsT0FBTztZQUNiLFdBQVcsRUFBRSxvQ0FBb0M7U0FDbEQsQ0FBQztRQUNNLFdBQU0sR0FBRyxJQUFJLFlBQVksRUFBTyxDQUFDO1FBQzNDLGlCQUFZLEdBQUcsS0FBSyxDQUFDO1FBR3JCLGlCQUFZLEdBQUc7WUFDYixjQUFjLEVBQUUsSUFBSTtZQUNwQixZQUFZLEVBQUUsQ0FBQztZQUNmLHFCQUFxQixFQUFFLFFBQVE7WUFDL0IsYUFBYSxFQUFFLENBQUM7WUFDaEIsZ0JBQWdCLEVBQUUsS0FBSztTQUN4QixDQUFDO1FBRUYsc0JBQWlCLEdBQUcsTUFBTSxDQUFDO0lBVDBILENBQUM7SUFVdEosUUFBUTtRQUNOLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDO1FBQzFDLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQ2xELElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDO1FBQ3pCLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQztRQUM1QixDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFFVCxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQztJQUNwRCxDQUFDO0lBQ0QsVUFBVSxDQUFDLEdBQVE7UUFFakIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7SUFFeEIsQ0FBQztJQUdELGlCQUFpQixDQUFDLElBQVE7UUFDeEIsSUFBSSxJQUFJLEtBQUssVUFBVSxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsWUFBWSxJQUFJLENBQUMsRUFBQztZQUM3RCxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksR0FBSSxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksR0FBRyxDQUFDLENBQUM7U0FDdEU7YUFBTSxJQUFJLElBQUksS0FBSyxVQUFVLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZLElBQUksQ0FBQyxFQUFFO1lBQ3JFLElBQUksQ0FBQyxZQUFZLENBQUMsWUFBWSxHQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsWUFBWSxHQUFHLENBQUMsQ0FBQztTQUN0RTtJQUNILENBQUM7SUFDRCx1QkFBdUIsQ0FBQyxJQUFRO1FBQzlCLElBQUksSUFBSSxLQUFLLFVBQVUsSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsSUFBSSxDQUFDLEVBQUM7WUFDOUQsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLEdBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLEdBQUcsQ0FBQyxDQUFDO1NBQ3hFO2FBQU0sSUFBSSxJQUFJLEtBQUssVUFBVSxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsYUFBYSxJQUFJLENBQUMsRUFBRTtZQUN0RSxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsR0FBSSxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsR0FBRyxDQUFDLENBQUM7U0FDeEU7SUFDSCxDQUFDO0lBRUQsYUFBYSxDQUFDLEdBQU87UUFDbkIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUM7WUFDaEIsS0FBSyxFQUFFLEdBQUc7WUFDVixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVk7U0FDeEIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGFBQWEsQ0FBQyxJQUFRLEVBQUMsS0FBUztRQUM5QixJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDO1FBQzlCLElBQUcsSUFBSSxLQUFLLFlBQVksRUFBQztZQUN0QixJQUFJLENBQUMsWUFBWSxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUE7U0FDNUQ7SUFDSCxDQUFDO0lBRUQsa0JBQWtCLENBQUMsQ0FBSyxFQUFFLElBQVE7UUFDaEMsSUFBSSxJQUFJLEtBQUssV0FBVyxFQUFFO1lBQ3hCLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLGlCQUFpQixHQUFHLENBQUMsQ0FBQztTQUNwRDtRQUNELElBQUksSUFBSSxLQUFLLGtCQUFrQixFQUFFO1lBQy9CLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLGVBQWUsQ0FBQyxXQUFXLENBQUMsR0FBRyxDQUFDLENBQUM7U0FDL0Q7SUFFSCxDQUFDO0lBRUQsSUFBSSxDQUFDLEdBQU8sRUFBRSxLQUFTO1FBQ3JCLElBQUksQ0FBQyxZQUFZLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLEdBQUcsR0FBRyxDQUFDO1FBSWhELElBQUksR0FBRyxDQUFDLElBQUksS0FBSyxZQUFZLEVBQUU7WUFDN0IsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLGNBQWMsR0FBRyxHQUFHLENBQUMsU0FBUyxDQUFDO1lBQ3JFLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxZQUFZLEdBQUcsR0FBRyxDQUFDLFlBQVksQ0FBQztZQUN0RSxJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsYUFBYSxHQUFHLEdBQUcsQ0FBQyxhQUFhLENBQUM7WUFDeEUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLHFCQUFxQixHQUFHLEdBQUcsQ0FBQyxxQkFBcUIsQ0FBQztZQUN4RixJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsZ0JBQWdCLEdBQUcsR0FBRyxDQUFDLGdCQUFnQixDQUFDO1lBQzlFLElBQUksQ0FBQyxZQUFZLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLEdBQUcsR0FBRyxDQUFDO1lBQ2hELElBQUksQ0FBQyxpQkFBaUIsR0FBRyxNQUFNLENBQUM7WUFFaEMsTUFBTSwyQkFBMkIsR0FBRyxDQUFDLFVBQVUsRUFBRSxpQkFBaUIsRUFBRSxVQUFVLENBQUMsQ0FBQztZQUNoRixJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLENBQUMsUUFBWSxFQUFFLEVBQUU7Z0JBQzdELElBQUksQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLFlBQVksR0FBRyxHQUFHLENBQUMsWUFBWSxDQUFDO2dCQUN6RCxJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxhQUFhLEdBQUcsR0FBRyxDQUFDLGFBQWEsQ0FBQztnQkFDM0QsSUFBSSwyQkFBMkIsQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxFQUFFO29CQUN2RCxRQUFRLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDLE9BQVcsRUFBRSxFQUFFO3dCQUN2QyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRTs0QkFDckIsT0FBTyxDQUFDLEtBQUssR0FBRyxHQUFHLENBQUMsWUFBWSxDQUFDO3lCQUNsQzt3QkFDRCxJQUFHLE9BQU8sQ0FBQyxRQUFRLElBQUksQ0FBQyxHQUFHLENBQUMscUJBQXFCLEtBQUssUUFBUSxJQUFJLEdBQUcsQ0FBQyxxQkFBcUIsS0FBSyxnQkFBZ0IsQ0FBQyxFQUFDOzRCQUNoSCxPQUFPLENBQUMsS0FBSyxHQUFHLEdBQUcsQ0FBQyxhQUFhLENBQUM7eUJBQ25DO3dCQUNELElBQUksR0FBRyxDQUFDLGdCQUFnQixFQUFFOzRCQUN4QixJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsSUFBSSxRQUFRLENBQUMsU0FBUyxLQUFLLFNBQVMsRUFBRTtnQ0FDM0QsUUFBUSxDQUFDLFNBQVMsR0FBRyxHQUFHLENBQUM7NkJBQzFCO3lCQUNGOzZCQUFJOzRCQUNILFFBQVEsQ0FBQyxTQUFTLEdBQUcsR0FBRyxDQUFDO3lCQUMxQjtvQkFDSCxDQUFDLENBQUMsQ0FBQztpQkFDSjtnQkFDRCxJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxlQUFlLENBQUMsVUFBVSxDQUFDLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBQ2xJLENBQUMsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsaUNBQWlDLEVBQUUsU0FBUyxDQUFDLENBQUE7WUFDaEUsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEVBQUUsQ0FBQztZQUM1QixXQUFXO1lBQ1gsdURBQXVEO1lBQ3ZELDRGQUE0RjtZQUM1Riw4RkFBOEY7WUFDOUYsb0dBQW9HO1lBQ3BHLHFDQUFxQztZQUNyQywrREFBK0Q7WUFDL0QsSUFBSTtZQUNKLE1BQU07U0FDUDtRQUNELElBQUksR0FBRyxDQUFDLElBQUksS0FBSyxrQkFBa0IsRUFBRTtZQUduQyxHQUFHLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQztZQUNyQixJQUFJLEdBQUcsQ0FBQyxTQUFTLEVBQUU7Z0JBQ2pCLEdBQUcsQ0FBQyxXQUFXLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQztnQkFDakMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsZUFBZSxHQUFHLEdBQUcsQ0FBQyxXQUFXLENBQUM7Z0JBQy9ELElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLGlDQUFpQyxFQUFFLFNBQVMsQ0FBQyxDQUFBO2dCQUNoRSxJQUFJLENBQUMsaUJBQWlCLEdBQUcsRUFBRSxDQUFDO2FBQzdCO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxpQkFBaUIsR0FBQyxFQUFFLENBQUE7SUFDM0IsQ0FBQzsrR0FqTVUsMkJBQTJCO21HQUEzQiwyQkFBMkIsOEZDZHhDLDI4VEFvSE07OzRGRHRHTywyQkFBMkI7a0JBTHZDLFNBQVM7K0JBQ0UseUJBQXlCOzZMQWdFekIsTUFBTTtzQkFBZixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBFdmVudEVtaXR0ZXIsIE9uSW5pdCwgT3V0cHV0LCBWaWV3Q2hpbGQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBEaWFsb2dDb25maWcgfSBmcm9tICcuLi8uLi8uLi8uLi91aS1raXQvZGlhbG9nL2RpYWxvZy1jb25maWcnO1xyXG5pbXBvcnQgeyBEaWFsb2dSZWYgfSBmcm9tICcuLi8uLi8uLi8uLi91aS1raXQvZGlhbG9nL2RpYWxvZy1yZWYnO1xyXG5pbXBvcnQgeyBTbmFja0JhclNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vLi4vdWkta2l0L3NuYWNrLWJhci9zbmFjay1iYXIuc2VydmljZVwiO1xyXG5cclxuaW1wb3J0IHsgRWRpdG9yQ29uZmlnIH0gZnJvbSAndmNvbXBseS1lZGl0b3InO1xyXG5pbXBvcnQgeyBFZGl0b3JTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2VzL2VkaXRvci5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFJlc3VsdENyaXRlcmlhU2VydmljZSB9IGZyb20gXCIuLi8uLi9zZXJ2aWNlcy9yZXN1bHQtY3JpdGVyaWEuc2VydmljZVwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtYXNzZXNzbWVudC1zZXR0aW5ncycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2Fzc2Vzc21lbnQtc2V0dGluZ3MuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2Fzc2Vzc21lbnQtc2V0dGluZ3MuY29tcG9uZW50Lmxlc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQXNzZXNzbWVudFNldHRpbmdzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICAvLyBAVmlld0NoaWxkKCdzY3JvbGxlZmZlY3QnLCB7IHN0YXRpYzogZmFsc2UgfSkgc2Nyb2xsRWxlbWVudCE6IEVsZW1lbnRSZWY7XHJcbiAgLy8gc2hvd1Jlc3BvbnNlID0gZmFsc2U7XHJcbiAgLy8gc2hvd01vZGUgPSBmYWxzZTtcclxuICAvLyBzaG93U2VnbWVudCA9IGZhbHNlO1xyXG4gIC8vIGhpZGVTZWdtZW50UG9wdXAgPSBmYWxzZTtcclxuICAvLyBlZGl0U2VnbWVudFBvcHVwID0gZmFsc2U7XHJcblxyXG4gIC8vIGNvbnN0cnVjdG9yKCkgeyB9XHJcblxyXG4gIC8vIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIC8vIH1cclxuXHJcbiAgLy8gY2xpY2tSZXNwb25zZSgpIHtcclxuICAvLyAgIHRoaXMuc2hvd1Jlc3BvbnNlID0gIXRoaXMuc2hvd1Jlc3BvbnNlO1xyXG4gIC8vIH1cclxuXHJcbiAgLy8gY2xpY2tNb2RlKCkge1xyXG4gIC8vICAgdGhpcy5zaG93TW9kZSA9ICF0aGlzLnNob3dNb2RlO1xyXG4gIC8vIH1cclxuXHJcbiAgLy8gY2xpY2tTZWdtZW50KCkge1xyXG4gIC8vICAgdGhpcy5zaG93U2VnbWVudCA9ICF0aGlzLnNob3dTZWdtZW50O1xyXG4gIC8vICAgc2V0VGltZW91dCAoKCk9PntcclxuICAvLyAgICAgdGhpcy5zY3JvbGxFbGVtZW50Lm5hdGl2ZUVsZW1lbnQuc2Nyb2xsVG9wID0gdGhpcy5zY3JvbGxFbGVtZW50Lm5hdGl2ZUVsZW1lbnQuc2Nyb2xsSGVpZ2h0O1xyXG4gIC8vICAgIH0sMTUwKVxyXG4gIC8vIH1cclxuXHJcbiAgLy8gZWRpdFNlZ21lbnQoKSB7XHJcbiAgLy8gICB0aGlzLmVkaXRTZWdtZW50UG9wdXAgPSAhdGhpcy5lZGl0U2VnbWVudFBvcHVwO1xyXG4gIC8vIH1cclxuXHJcbiAgLy8gZGVzY3JpcHRpb246IEVkaXRvckNvbmZpZyA9IHtcclxuICAvLyAgIG1vZGU6ICdwcmltZScsXHJcbiAgLy8gICBwbGFjZWhvbGRlcjogJ0VudGVyIFNlZ21lbnQgY3JpdGVyaWEgZGVzY3JpcHRpb24nLFxyXG4gIC8vIH07XHJcblxyXG4gIC8vIG9wZW5TZWdtZW50UG9wdXAoKSB7XHJcbiAgLy8gICB0aGlzLmhpZGVTZWdtZW50UG9wdXAgPSB0cnVlO1xyXG4gIC8vIH1cclxuXHJcbiAgLy8gY2xvc2VTZWdtZW50UG9wdXAoKSB7XHJcbiAgLy8gICB0aGlzLmhpZGVTZWdtZW50UG9wdXAgPSBmYWxzZTtcclxuICAvLyAgIHRoaXMuZWRpdFNlZ21lbnRQb3B1cCA9IGZhbHNlO1xyXG4gIC8vIH1cclxuICBzaG93U2VnbWVudCE6YW55O1xyXG4gIGhpZGVTZWdtZW50UG9wdXAgITphbnk7XHJcbiAgZWRpdFNlZ21lbnRQb3B1cCAhOmFueTtcclxuICBzaG93UmVzcG9uc2UgITphbnk7XHJcbiAgY2xvc2VTZWdtZW50UG9wdXAoKXt9XHJcbiAgb3BlblNlZ21lbnRQb3B1cCgpe31cclxuICBlZGl0U2VnbWVudCgpe31cclxuICBjbGlja1NlZ21lbnQoKXt9XHJcbiAgY2xpY2tNb2RlKCl7fVxyXG4gIGNsaWNrUmVzcG9uc2UoKXt9XHJcbiAgc2hvd01vZGUgITphbnk7XHJcbiAgZGVzY3JpcHRpb246IEVkaXRvckNvbmZpZyA9IHtcclxuICAgICAgbW9kZTogJ3ByaW1lJyxcclxuICAgICAgcGxhY2Vob2xkZXI6ICdFbnRlciBTZWdtZW50IGNyaXRlcmlhIGRlc2NyaXB0aW9uJyxcclxuICAgIH07XHJcbiAgQE91dHB1dCgpIGFjdGlvbiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIGZvckFuaW1hdGlvbiA9IGZhbHNlO1xyXG4gIHB1YmxpYyBlZGl0b3JTZXJ2aWNlITphbnk7XHJcbiAgY29uc3RydWN0b3IocHVibGljIGNvbmZpZzogRGlhbG9nQ29uZmlnLCBwdWJsaWMgZGlhbG9nOiBEaWFsb2dSZWYscHJpdmF0ZSBjcml0ZXJpYVNlcnZpY2U6IFJlc3VsdENyaXRlcmlhU2VydmljZSxwcml2YXRlIHNuYWNrYmFyOlNuYWNrQmFyU2VydmljZSkgeyB9XHJcbiAgc2V0dGluZ3NKU09OID0ge1xyXG4gICAgYXNzZXNzbWVudE1vZGU6IHRydWUsXHJcbiAgICBkZWZhdWx0U2NvcmU6IDAsXHJcbiAgICBuZWdhdGl2ZVNjb3JlQ3JpdGVyaWE6ICdGQUlMRUQnLFxyXG4gICAgbmVnYXRpdmVTY29yZTogMCxcclxuICAgIHdlaWdodGFnZUVuYWJsZWQ6IGZhbHNlXHJcbiAgfTtcclxuICBzZXR0aW5nc0RhdGEhOmFueTtcclxuICBhY3RpdmVTZXR0aW5nVHlwZSA9ICdub25lJztcclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuZWRpdG9yU2VydmljZSA9IHRoaXMuY29uZmlnLmRhdGEuc2VydmljZTtcclxuICAgICAgICB0aGlzLnNldHRpbmdzRGF0YSA9IHRoaXMuY29uZmlnLmRhdGEuc2V0dGluZ3M7XHJcbiAgICB0aGlzLmZvckFuaW1hdGlvbiA9IHRydWU7XHJcbiAgICBzZXRUaW1lb3V0KCgpID0+IHtcclxuICAgICAgdGhpcy5mb3JBbmltYXRpb24gPSBmYWxzZTtcclxuICAgIH0sIDEwMDApO1xyXG5cclxuICAgIHRoaXMuc2V0dGluZ3NKU09OID0gdGhpcy5jb25maWcuZGF0YS5zZXR0aW5nc0pTT047XHJcbiAgfVxyXG4gIGNsb3NlUGFuZWwoZXZ0PzphbnkpIHtcclxuICAgIFxyXG4gICAgdGhpcy5kaWFsb2cuY2xvc2Uoe30pO1xyXG5cclxuICB9XHJcblxyXG5cclxuICBtYW5pcHVsYXRlRGVmYXVsdChtb2RlOmFueSl7XHJcbiAgICBpZiAobW9kZSA9PT0gJ0lOQ1JFQVNFJyAmJiB0aGlzLnNldHRpbmdzSlNPTi5kZWZhdWx0U2NvcmUgPj0gMCl7XHJcbiAgICAgIHRoaXMuc2V0dGluZ3NKU09OLmRlZmF1bHRTY29yZSA9ICB0aGlzLnNldHRpbmdzSlNPTi5kZWZhdWx0U2NvcmUgKyAxO1xyXG4gICAgfSBlbHNlIGlmIChtb2RlID09PSAnREVDUkVBU0UnICYmIHRoaXMuc2V0dGluZ3NKU09OLmRlZmF1bHRTY29yZSA+PSAxICl7XHJcbiAgICAgIHRoaXMuc2V0dGluZ3NKU09OLmRlZmF1bHRTY29yZSA9ICB0aGlzLnNldHRpbmdzSlNPTi5kZWZhdWx0U2NvcmUgLSAxO1xyXG4gICAgfVxyXG4gIH1cclxuICBtYW5pcHVsYXRlTmVnYXRpdmVTY29yZShtb2RlOmFueSl7XHJcbiAgICBpZiAobW9kZSA9PT0gJ0lOQ1JFQVNFJyAmJiB0aGlzLnNldHRpbmdzSlNPTi5uZWdhdGl2ZVNjb3JlID49IDApe1xyXG4gICAgICB0aGlzLnNldHRpbmdzSlNPTi5uZWdhdGl2ZVNjb3JlID0gIHRoaXMuc2V0dGluZ3NKU09OLm5lZ2F0aXZlU2NvcmUgKyAxO1xyXG4gICAgfSBlbHNlIGlmIChtb2RlID09PSAnREVDUkVBU0UnICYmIHRoaXMuc2V0dGluZ3NKU09OLm5lZ2F0aXZlU2NvcmUgPj0gMSApe1xyXG4gICAgICB0aGlzLnNldHRpbmdzSlNPTi5uZWdhdGl2ZVNjb3JlID0gIHRoaXMuc2V0dGluZ3NKU09OLm5lZ2F0aXZlU2NvcmUgLSAxO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgZXhlY3V0ZUFjdGlvbihldnQ6YW55KXtcclxuICAgIHRoaXMuZGlhbG9nLmNsb3NlKHtcclxuICAgICAgZXZlbnQ6IGV2dCxcclxuICAgICAgZGF0YTogdGhpcy5zZXR0aW5nc0pTT05cclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgc2V0QWN0aXZlVHlwZSh0eXBlOmFueSxpbmRleDphbnkpe1xyXG4gICAgdGhpcy5hY3RpdmVTZXR0aW5nVHlwZSA9IHR5cGU7XHJcbiAgICBpZih0eXBlID09PSAnQVNTRVNTTUVOVCcpe1xyXG4gICAgICAgdGhpcy5zZXR0aW5nc0RhdGEuc2V0dGluZ3NFbGVtZW50c1tpbmRleF0uaXNFbmFibGVkID0gdHJ1ZSBcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGVuYWJsZVN0YXRlQ2hhbmdlZChlOmFueSwgdHlwZTphbnkpIHtcclxuICAgIGlmICh0eXBlID09PSAnQU5PTllNT1VTJykge1xyXG4gICAgICB0aGlzLmVkaXRvclNlcnZpY2UuZm9ybXNQYWdlLmFub255bW91c1Jlc3BvbnNlID0gZTtcclxuICAgIH1cclxuICAgIGlmICh0eXBlID09PSAnUkVTUE9OU0VfU0VHTUVOVCcpIHtcclxuICAgICAgdGhpcy5lZGl0b3JTZXJ2aWNlLmZvcm1zUGFnZS5yZXNwb25zZVNlZ21lbnRbJ2lzRW5hYmxlZCddID0gZTtcclxuICAgIH1cclxuXHJcbiAgfVxyXG5cclxuICBzYXZlKGV2dDphbnksIGluZGV4OmFueSkge1xyXG4gICAgdGhpcy5zZXR0aW5nc0RhdGEuc2V0dGluZ3NFbGVtZW50c1tpbmRleF0gPSBldnQ7XHJcblxyXG5cclxuICAgIFxyXG4gICAgaWYgKGV2dC50eXBlID09PSAnQVNTRVNTTUVOVCcpIHtcclxuICAgICAgdGhpcy5lZGl0b3JTZXJ2aWNlLmZvcm1zUGFnZS5zZXR0aW5ncy5hc3Nlc3NtZW50TW9kZSA9IGV2dC5pc0VuYWJsZWQ7XHJcbiAgICAgIHRoaXMuZWRpdG9yU2VydmljZS5mb3Jtc1BhZ2Uuc2V0dGluZ3MuZGVmYXVsdFNjb3JlID0gZXZ0LmRlZmF1bHRTY29yZTtcclxuICAgICAgdGhpcy5lZGl0b3JTZXJ2aWNlLmZvcm1zUGFnZS5zZXR0aW5ncy5uZWdhdGl2ZVNjb3JlID0gZXZ0Lm5lZ2F0aXZlU2NvcmU7XHJcbiAgICAgIHRoaXMuZWRpdG9yU2VydmljZS5mb3Jtc1BhZ2Uuc2V0dGluZ3MubmVnYXRpdmVTY29yZUNyaXRlcmlhID0gZXZ0Lm5lZ2F0aXZlU2NvcmVDcml0ZXJpYTtcclxuICAgICAgdGhpcy5lZGl0b3JTZXJ2aWNlLmZvcm1zUGFnZS5zZXR0aW5ncy53ZWlnaHRhZ2VFbmFibGVkID0gZXZ0LndlaWdodGFnZUVuYWJsZWQ7XHJcbiAgICAgIHRoaXMuc2V0dGluZ3NEYXRhLnNldHRpbmdzRWxlbWVudHNbaW5kZXhdID0gZXZ0O1xyXG4gICAgICB0aGlzLmFjdGl2ZVNldHRpbmdUeXBlID0gJ25vbmUnO1xyXG5cclxuICAgICAgY29uc3QgYXNzZXNzbWVudEVsaWdpYmxlUXVlc3Rpb25zID0gWydjaGVja2JveCcsICdtdWx0aXBsZS1jaG9pY2UnLCAnZHJvcGRvd24nXTtcclxuICAgICAgdGhpcy5lZGl0b3JTZXJ2aWNlLmZvcm1zUGFnZS5lbGVtZW50cy5mb3JFYWNoKChxdWVzdGlvbjphbnkpID0+IHtcclxuICAgICAgICB0aGlzLmVkaXRvclNlcnZpY2Uuc2NvcmUuZGVmYXVsdFNjb3JlID0gZXZ0LmRlZmF1bHRTY29yZTtcclxuICAgICAgICB0aGlzLmVkaXRvclNlcnZpY2Uuc2NvcmUubmVnYXRpdmVTY29yZSA9IGV2dC5uZWdhdGl2ZVNjb3JlO1xyXG4gICAgICAgIGlmIChhc3Nlc3NtZW50RWxpZ2libGVRdWVzdGlvbnMuaW5jbHVkZXMocXVlc3Rpb24udHlwZSkpIHtcclxuICAgICAgICAgIHF1ZXN0aW9uLmNob2ljZXMuZm9yRWFjaCgoZWxlbWVudDphbnkpID0+IHtcclxuICAgICAgICAgICAgaWYgKCFlbGVtZW50LmlzRmFpbGVkKSB7XHJcbiAgICAgICAgICAgICAgZWxlbWVudC5zY29yZSA9IGV2dC5kZWZhdWx0U2NvcmU7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgaWYoZWxlbWVudC5pc0ZhaWxlZCAmJiAoZXZ0Lm5lZ2F0aXZlU2NvcmVDcml0ZXJpYSA9PT0gJ0ZBSUxFRCcgfHwgZXZ0Lm5lZ2F0aXZlU2NvcmVDcml0ZXJpYSA9PT0gJ0ZBSUxFRF9TS0lQUEVEJykpe1xyXG4gICAgICAgICAgICAgIGVsZW1lbnQuc2NvcmUgPSBldnQubmVnYXRpdmVTY29yZTtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBpZiAoZXZ0LndlaWdodGFnZUVuYWJsZWQpIHtcclxuICAgICAgICAgICAgICBpZiAoIXF1ZXN0aW9uLndlaWdodGFnZSB8fCBxdWVzdGlvbi53ZWlnaHRhZ2UgPT09IHVuZGVmaW5lZCkge1xyXG4gICAgICAgICAgICAgICAgcXVlc3Rpb24ud2VpZ2h0YWdlID0gMTAwO1xyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfWVsc2V7XHJcbiAgICAgICAgICAgICAgcXVlc3Rpb24ud2VpZ2h0YWdlID0gMTAwO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICB9KTtcclxuICAgICAgICB9XHJcbiAgICAgICAgdGhpcy5lZGl0b3JTZXJ2aWNlLmZvcm1zUGFnZS5yZXNwb25zZVNlZ21lbnRbJ21heFNjb3JlJ10gPSB0aGlzLmNyaXRlcmlhU2VydmljZS5jYWxjdWxhdGVNYXhTY29yZSh0aGlzLmVkaXRvclNlcnZpY2UuZm9ybXNQYWdlKTtcclxuICAgICAgfSk7XHJcbiAgICAgIHRoaXMuc25hY2tiYXIuc2hvdyhcIlRoZSBzZXR0aW5ncyBoYXZlIGJlZW4gdXBkYXRlZC5cIiwgJ3N1Y2Nlc3MnKVxyXG4gICAgICB0aGlzLmFjdGl2ZVNldHRpbmdUeXBlID0gJyc7XHJcbiAgICAgIC8vIH0gZWxzZSB7XHJcbiAgICAgIC8vICAgdGhpcy5mZC5mb3Jtc1BhZ2Uuc2V0dGluZ3MuYXNzZXNzbWVudE1vZGUgPSBmYWxzZTtcclxuICAgICAgLy8gICB0aGlzLnNldHRpbmdzRGF0YS5zZXR0aW5nc0VsZW1lbnRzW2luZGV4XS5kZWZhdWx0U2NvcmUgPSB0aGlzLmZkLnNldHRpbmdzLmRlZmF1bHRTY29yZTtcclxuICAgICAgLy8gICB0aGlzLnNldHRpbmdzRGF0YS5zZXR0aW5nc0VsZW1lbnRzW2luZGV4XS5uZWdhdGl2ZVNjb3JlID0gdGhpcy5mZC5zZXR0aW5ncy5uZWdhdGl2ZVNjb3JlO1xyXG4gICAgICAvLyAgIHRoaXMuc2V0dGluZ3NEYXRhLnNldHRpbmdzRWxlbWVudHNbaW5kZXhdLndlaWdodGFnZUVuYWJsZWQgPSB0aGlzLmZkLnNldHRpbmdzLndlaWdodGFnZUVuYWJsZWQ7XHJcbiAgICAgIC8vICAgdGhpcy5hY3RpdmVTZXR0aW5nVHlwZSA9ICdub25lJztcclxuICAgICAgLy8gdGhpcy5zZXR0aW5nc0RhdGEuc2V0dGluZ3NFbGVtZW50c1tpbmRleF0uaXNFbmFibGVkID0gZmFsc2U7XHJcbiAgICAgIC8vIH1cclxuICAgICAgLy8gfSk7XHJcbiAgICB9XHJcbiAgICBpZiAoZXZ0LnR5cGUgPT09ICdSRVNQT05TRV9TRUdNRU5UJykge1xyXG4gICAgICBcclxuICAgICAgXHJcbiAgICAgIGV2dC5pc0VuYWJsZWQgPSB0cnVlO1xyXG4gICAgICBpZiAoZXZ0LmlzRW5hYmxlZCkge1xyXG4gICAgICAgIGV2dC5zZWdtZW50RGF0YS5pc0VuYWJsZWQgPSB0cnVlO1xyXG4gICAgICAgIHRoaXMuZWRpdG9yU2VydmljZS5mb3Jtc1BhZ2UucmVzcG9uc2VTZWdtZW50ID0gZXZ0LnNlZ21lbnREYXRhO1xyXG4gICAgICAgIHRoaXMuc25hY2tiYXIuc2hvdyhcIlRoZSBzZXR0aW5ncyBoYXZlIGJlZW4gdXBkYXRlZC5cIiwgJ3N1Y2Nlc3MnKVxyXG4gICAgICAgIHRoaXMuYWN0aXZlU2V0dGluZ1R5cGUgPSAnJztcclxuICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgY2FuY2VsKCl7XHJcbiAgICB0aGlzLmFjdGl2ZVNldHRpbmdUeXBlPScnXHJcbiAgfVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJhc3Nlc3NtZW50LXNldHRpbmdzXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiYXNzZXNzbWVudC1zZXR0aW5ncy1oZWFkIHZ4LXBsLTQgdngtcHItNCB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktYmV0d2VlblwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkaW5nIHZ4LWZzLTE0IHZ4LWZ3LTUwMCB2eC1sYWJlbC10eHRcIj57e3NldHRpbmdzRGF0YT8ucGFuZWxUaXRsZSB8IHRpdGxlY2FzZSB9fTwvZGl2PlxyXG4gICAgICAgICAgICA8IS0tIDxpIGNsYXNzPVwiaWNvbnMgaW5mbyB2eC1mcy0xMiB2eC10eHQtYmx1ZSB2eC1tbC0xXCIgW2FwcFRvb2x0aXBdPVwiJ0Fzc2Vzc21lbnQgU2V0dGluZ3MgaW5mbyB0ZXh0IGhlcmUuLi4nXCIgcGxhY2VtZW50PVwiYm90dG9tXCIgZGVsYXk9XCIwXCIgdHlwZT1cIndoaXRlXCIgW3Rvb2x0aXBNYW5kYXRvcnldPVwidHJ1ZVwiPiYjeGU5MzI7PC9pPiAtLT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8YnV0dG9uIChjbGljayk9XCJjbG9zZVBhbmVsKClcIiBjbGFzcz1cImNsb3NlIHZ4LWZzLTE2IHZ4LWxhYmVsLXR4dCB2eC1wLTAgdngtbS0wIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXJcIiBbYXBwVG9vbHRpcF09XCInW0VzY10gdG8gY2xvc2UnXCIgcGxhY2VtZW50PVwibGVmdFwiIGRlbGF5PVwiMFwiIHR5cGU9XCJibGFja1wiIFt0b29sdGlwTWFuZGF0b3J5XT1cInRydWVcIj48aSBjbGFzcz1cImljb25zIHZ4LWQtZmxleFwiPiYjeGU5M2Y7PC9pPjwvYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwiYXNzZXNzbWVudC1zZXR0aW5ncy1ib2R5IHZ4LXB0LTQgdngtcGItNFwiICNzY3JvbGxlZmZlY3Q+XHJcbiAgICAgICAgPCEtLSBTa2VsZXRvbiBsb2FkZXIgLS0+XHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImZhbHNlXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJzZXR0aW5ncy1pdGVtIHNrZWxldG9uLWxvYWRlciB2eC1tYi00IHZ4LXBsLTQgdngtcHItNCB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyXCIgKm5nRm9yPVwibGV0IGRhdGEgb2YgWzEsIDEsIDFdXCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwibG9hZGVyXCI+PC9kaXY+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgIDwhLS0gU2tlbGV0b24gbG9hZGVyIC0tPlxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IHNldHRpbmcgb2Ygc2V0dGluZ3NEYXRhPy5zZXR0aW5nc0VsZW1lbnRzO2xldCBpID0gaW5kZXhcIj5cclxuICAgICAgICAgICAgPCEtLSA8ZGl2ICpuZ0lmPVwic2V0dGluZy5pc1Zpc2libGUgPT09IHRydWVcIiAgY2xhc3M9XCJzZXR0aW5ncy1pdGVtIHZ4LW1iLTQgdngtcGwtNCB2eC1wci00XCIgW2NsYXNzLmFjdGl2ZV09XCJzaG93UmVzcG9uc2VcIiBbY2xhc3MuZG9uZV09XCIhc2hvd1Jlc3BvbnNlXCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwic2hvd1Jlc3BvbnNlXCIgY2xhc3M9XCJzdGF0dXMgZWRpdCB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPHN2ZyBjbGFzcz1cImVkaXQtbG9hZGVyXCIgdmlld0JveD1cIjI1IDI1IDUwIDUwXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgY2xhc3M9XCJsb2FkZXItcGF0aFwiIGN4PVwiNTBcIiBjeT1cIjUwXCIgcj1cIjIwXCIgZmlsbD1cIm5vbmVcIiBzdHJva2U9XCIjMWU1ZGQzXCIgc3Ryb2tlLXdpZHRoPVwiM1wiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9zdmc+XHJcbiAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJpY29ucyB2eC1mcy0xNCB2eC10eHQtYmx1ZVwiPiYjeGU5MGM7PC9pPlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiIXNob3dSZXNwb25zZVwiIGNsYXNzPVwic3RhdHVzIGRvbmUgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxzdmcgY2xhc3M9XCJjaGVja0ljb25cIiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgdmlld0JveD1cIjAgMCA1MiA1MlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8Y2lyY2xlIGNsYXNzPVwiY2hlY2tJY29uX19jaXJjbGVcIiBjeD1cIjI2XCIgY3k9XCIyNlwiIHI9XCIyNVwiIGZpbGw9XCJub25lXCIgLz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggY2xhc3M9XCJjaGVja0ljb25fX2NoZWNrXCIgZmlsbD1cIm5vbmVcIiBkPVwiTTE0LjEgMjcuMmw3LjEgNy4yIDE2LjctMTYuOFwiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9zdmc+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpdGVtLWhlYWQgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWJldHdlZW4gdngtcHQtMyB2eC1wYi0zXCIgKGNsaWNrKT1cImNsaWNrUmVzcG9uc2UoKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJuYW1lIHZ4LWZzLTExIHZ4LWZ3LTUwMCB2eC1sYWJlbC10eHQgdngtdHQtdXBwZXJjYXNlXCI+QU5PTllNSVpFIEZPUk0gUkVTUE9OU0U8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb25zIHZ4LWZzLTE0IHZ4LXBhcmFncmFwaC10eHRcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFzaG93UmVzcG9uc2VcIj4mI3hlOTcwOzwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwic2hvd1Jlc3BvbnNlXCI+JiN4ZTllODs8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgICAgICAgICAgICA8L2k+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpdGVtLWJvZHkgdngtcHQtMyB2eC1wYi0zXCIgKm5nSWY9XCJzaG93UmVzcG9uc2VcIj5cclxuICAgICAgICAgICAgICAgICAgICA8YXBwLWNzLXN3aXRjaD48ZGl2IGNsYXNzPVwidngtZnMtMTMgdngtcGFyYWdyYXBoLXR4dFwiPk1ha2UgcmVzcG9uc2VzIHRvIHRoaXMgZm9ybSBhbm9ueW1vdXM8L2Rpdj48L2FwcC1jcy1zd2l0Y2g+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+IC0tPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic2V0dGluZ3MtaXRlbSB2eC1tYi00IHZ4LXBsLTQgdngtcHItNFwiIFtjbGFzcy5hY3RpdmVdPVwic2hvd01vZGVcIiBbY2xhc3MuZG9uZV09XCIhc2hvd01vZGVcIiBbY2xhc3MuZXJyb3JdPVwiZmFsc2VcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJmYWxzZVwiIGNsYXNzPVwic3RhdHVzIGVkaXQgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxzdmcgY2xhc3M9XCJlZGl0LWxvYWRlclwiIHZpZXdCb3g9XCIyNSAyNSA1MCA1MFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8Y2lyY2xlIGNsYXNzPVwibG9hZGVyLXBhdGhcIiBjeD1cIjUwXCIgY3k9XCI1MFwiIHI9XCIyMFwiIGZpbGw9XCJub25lXCIgc3Ryb2tlPVwiIzFlNWRkM1wiIHN0cm9rZS13aWR0aD1cIjNcIiAvPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvc3ZnPlxyXG4gICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbnMgdngtZnMtMTQgdngtdHh0LWJsdWVcIj4mI3hlOTBjOzwvaT5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPGRpdiAgKm5nSWY9XCJmYWxzZVwiIGNsYXNzPVwic3RhdHVzIGRvbmUgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxzdmcgY2xhc3M9XCJjaGVja0ljb25cIiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgdmlld0JveD1cIjAgMCA1MiA1MlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8Y2lyY2xlIGNsYXNzPVwiY2hlY2tJY29uX19jaXJjbGVcIiBjeD1cIjI2XCIgY3k9XCIyNlwiIHI9XCIyNVwiIGZpbGw9XCJub25lXCIgLz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggY2xhc3M9XCJjaGVja0ljb25fX2NoZWNrXCIgZmlsbD1cIm5vbmVcIiBkPVwiTTE0LjEgMjcuMmw3LjEgNy4yIDE2LjctMTYuOFwiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9zdmc+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpdGVtLWhlYWQgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWJldHdlZW4gdngtcHQtMyB2eC1wYi0zXCIgKGNsaWNrKT1cInNldEFjdGl2ZVR5cGUoc2V0dGluZy50eXBlLGkpXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm5hbWUgdngtZnMtMTEgdngtZnctNTAwIHZ4LWxhYmVsLXR4dCB2eC10dC11cHBlcmNhc2VcIj4gIDxzcGFuIFtpbm5lckhUTUxdPVwic2V0dGluZz8uc2V0dGluZ1RpdGxlXCI+PC9zcGFuPiA8aSBjbGFzcz1cImljb25zIGluZm8gdngtZnMtMTIgdngtdHh0LWJsdWUgdngtbWwtMVwiIFthcHBUb29sdGlwXT1cInNldHRpbmc/LmhlbHBpbmdUZXh0XCIgcGxhY2VtZW50PVwiYm90dG9tXCIgZGVsYXk9XCIwXCIgdHlwZT1cIndoaXRlXCIgW3Rvb2x0aXBNYW5kYXRvcnldPVwidHJ1ZVwiPiYjeGU5MzI7PC9pPjwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbnMgdngtZnMtMTQgdngtcGFyYWdyYXBoLXR4dFwiID5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImFjdGl2ZVNldHRpbmdUeXBlICE9PSBzZXR0aW5nPy50eXBlXCI+JiN4ZTk3MDs8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImFjdGl2ZVNldHRpbmdUeXBlID09PSBzZXR0aW5nPy50eXBlXCIgPiYjeGU5ZTg7PC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9pPlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiYWN0aXZlU2V0dGluZ1R5cGUgPT09IHNldHRpbmc/LnR5cGVcIj5cclxuICAgICAgICAgICAgICAgICAgICA8YXBwLXNldHRpbmctYW5vbnltb3VzIChjYW5jZWxFdnQpPVwiY2FuY2VsKClcIiAqbmdJZj1cInNldHRpbmc/LnR5cGUgPT09ICdBU1NFU1NNRU5UJyAmJiBzZXR0aW5nLmlzRW5hYmxlZCA9PT0gdHJ1ZVwiIFtzZXR0aW5nXT1cInNldHRpbmdcIiAoc2F2ZSk9XCJzYXZlKCRldmVudCxpKVwiPjwvYXBwLXNldHRpbmctYW5vbnltb3VzPlxyXG4gICAgICAgICAgICAgICAgICAgIDxhcHAtc2V0dGluZy1yZXNwb25zZS1zZWdtZW50IChjYW5jZWxFdnQpPVwiY2FuY2VsKClcIiAgKm5nSWY9XCJzZXR0aW5nPy50eXBlID09PSAnUkVTUE9OU0VfU0VHTUVOVCdcIiBbZmRdPVwiZWRpdG9yU2VydmljZVwiIFtzZXR0aW5nXT1cInNldHRpbmdcIiAoc2F2ZSk9XCJzYXZlKCRldmVudCxpKVwiPjwvYXBwLXNldHRpbmctcmVzcG9uc2Utc2VnbWVudD5cclxuICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICA8IS0tIGFzc2Vzc21lbnQgbW9kZSBoZXJlIC0tPlxyXG4gICAgICAgICAgICAgICAgPCEtLSA8ZGl2IGNsYXNzPVwiaXRlbS1ib2R5IHZ4LXB0LTMgdngtcGItM1wiICpuZ0lmPVwidHJ1ZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxhcHAtY3Mtc3dpdGNoPjxkaXYgY2xhc3M9XCJ2eC1mcy0xMyB2eC1wYXJhZ3JhcGgtdHh0XCI+RW5hYmxlIGFzc2Vzc21lbnQgbW9kZSBmb3IgdGhpcyBmb3JtPC9kaXY+PC9hcHAtY3Mtc3dpdGNoPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtb2RlLWxpc3QgdngtbXQtM1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwibW9kZS1pdGVtIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXIgdngtanVzdGlmeS1iZXR3ZWVuIHZ4LW10LTJcIiBbY2xhc3MuZG9uZV09XCJmYWxzZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImhlYWRpbmcgdngtZnMtMTMgdngtZnctNTAwIHZ4LWxhYmVsLXR4dCB2eC1wbC0zXCI+U2V0IGRlZmF1bHQgc2NvcmVzIGZvciBhbGwgcXVlc3Rpb25zPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwidHJ1ZVwiIGNsYXNzPVwic2NvcmUtYXJlYSB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LXBsLTMgdngtcHItMVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ2eC1mcy0xMiB2eC1wYXJhZ3JhcGgtdHh0IHZ4LW1yLTJcIj5TY29yZTwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnB1dC1hcmVhIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBjbGFzcz1cInZ4LWZzLTE0IHZ4LWZ3LTUwMCB2eC1wYXJhZ3JhcGgtdHh0IHZ4LXAtMCB2eC1wbC0yIHZ4LXByLTIgdngtbS0wIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXIgdngtanVzdGlmeS1jZW50ZXJcIj4tPC9idXR0b24+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCB0eXBlPVwibnVtYmVyXCIgdmFsdWU9JzEwJz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBjbGFzcz1cInZ4LWZzLTE0IHZ4LWZ3LTUwMCB2eC1wYXJhZ3JhcGgtdHh0IHZ4LXAtMCB2eC1wbC0yIHZ4LXByLTIgdngtbS0wIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXIgdngtanVzdGlmeS1jZW50ZXJcIj4rPC9idXR0b24+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJmYWxzZVwiIGNsYXNzPVwic2NvcmUgdngtcGwtMiB2eC1wci0yIHZ4LWxoLTZcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInZ4LWZzLTExIHZ4LWZ3LTUwMCB2eC1wYXJhZ3JhcGgtdHh0IHZ4LXR0LXVwcGVyY2FzZSB2eC1tci0xXCI+U0NPUkU6PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidngtZnMtMTMgdngtdHh0LWJsdWVcIj4xMDwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm1vZGUtaXRlbSB2eC1tdC0yXCIgW2NsYXNzLmRvbmVdPVwiZmFsc2VcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktYmV0d2VlblwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkaW5nIHZ4LWZzLTEzIHZ4LWZ3LTUwMCB2eC1sYWJlbC10eHQgdngtcGwtM1wiPlNlbGVjdCBhIGNyaXRlcmlvbiBmb3IgbmVnYXRpdmUgc2NvcmVzPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiAqbmdJZj1cInRydWVcIiBjbGFzcz1cInNjb3JlLWFyZWEgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1wbC0zIHZ4LXByLTFcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInZ4LWZzLTEyIHZ4LXBhcmFncmFwaC10eHQgdngtbXItMlwiPlNjb3JlPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnB1dC1hcmVhIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxidXR0b24gY2xhc3M9XCJ2eC1mcy0xNCB2eC1mdy01MDAgdngtcGFyYWdyYXBoLXR4dCB2eC1wLTAgdngtcGwtMiB2eC1wci0yIHZ4LW0tMCB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktY2VudGVyXCI+LTwvYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IHR5cGU9XCJudW1iZXJcIiB2YWx1ZT0nMCc+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YnV0dG9uIGNsYXNzPVwidngtZnMtMTQgdngtZnctNTAwIHZ4LXBhcmFncmFwaC10eHQgdngtcC0wIHZ4LXBsLTIgdngtcHItMiB2eC1tLTAgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWNlbnRlclwiPis8L2J1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiAqbmdJZj1cImZhbHNlXCIgY2xhc3M9XCJzY29yZSB2eC1wbC0yIHZ4LXByLTIgdngtbGgtNlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInZ4LWZzLTExIHZ4LWZ3LTUwMCB2eC1wYXJhZ3JhcGgtdHh0IHZ4LXR0LXVwcGVyY2FzZSB2eC1tci0xXCI+U0NPUkU6PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInZ4LWZzLTEzIHZ4LXR4dC1ibHVlXCI+Mjwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNyaXRlcmlhLWxpc3QgdngtcHQtMyB2eC1wbC0zXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFwcC1jcy1yYWRpbz48ZGl2IGNsYXNzPVwibmFtZSB2eC1mcy0xMiB2eC1wYXJhZ3JhcGgtdHh0XCI+RmFpbGVkIFJlc3BvbnNlczwvZGl2PjwvYXBwLWNzLXJhZGlvPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhcHAtY3MtcmFkaW8+PGRpdiBjbGFzcz1cIm5hbWUgdngtZnMtMTIgdngtcGFyYWdyYXBoLXR4dFwiPlNraXBwZWQgUXVlc3Rpb25zPC9kaXY+PC9hcHAtY3MtcmFkaW8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFwcC1jcy1yYWRpbz48ZGl2IGNsYXNzPVwibmFtZSB2eC1mcy0xMiB2eC1wYXJhZ3JhcGgtdHh0XCI+U2tpcHBlZCBRdWVzdGlvbnMgJiBGYWlsZWQgUmVzcG9uc2VzPC9kaXY+PC9hcHAtY3MtcmFkaW8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtb2RlLWl0ZW0gdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWJldHdlZW4gdngtbXQtMiB2eC1wbC0zIHZ4LXByLTNcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhcHAtY3Mtc3dpdGNoPjxkaXYgY2xhc3M9XCJ2eC1mcy0xMyB2eC1sYWJlbC10eHRcIj5FbmFibGVkIHdlaWdodGFnZSBmb3IgZWFjaCBxdWVzdGlvbjwvZGl2PjwvYXBwLWNzLXN3aXRjaD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj4gLS0+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgIFxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPC9kaXY+XHJcbjwvZGl2PiJdfQ==
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { MultipleChoiceComponent } from './multiple-choice/multiple-choice.component';
|
|
4
|
+
import { CheckboxComponent } from './checkbox/checkbox.component';
|
|
5
|
+
import { ImageChoiceComponent } from './image-choice/image-choice.component';
|
|
6
|
+
import { StarRatingComponent } from './star-rating/star-rating.component';
|
|
7
|
+
import { MatrixDropdownComponent } from './matrix-dropdown/matrix-dropdown.component';
|
|
8
|
+
import { DropdownComponent } from './dropdown/dropdown.component';
|
|
9
|
+
import { MatrixRatingScaleComponent } from './matrix-rating-scale/matrix-rating-scale.component';
|
|
10
|
+
import { RankingComponent } from './ranking/ranking.component';
|
|
11
|
+
import { SliderComponent } from './slider/slider.component';
|
|
12
|
+
import { MultipleTextboxComponent } from './multiple-textbox/multiple-textbox.component';
|
|
13
|
+
import { DateTimeComponent } from './date-time/date-time.component';
|
|
14
|
+
// import { TooltipModule } from 'projects/ui-components/src/lib/ui-utility/tooltip/tooltip.module';
|
|
15
|
+
// import { FormgroupModule } from 'projects/ui-components/src/lib/ui-utility/formgroup/formgroup.module';
|
|
16
|
+
// import { PopoverModule } from 'projects/ui-components/src/lib/ui-utility/popover/popover.module';
|
|
17
|
+
import { FormsModule } from '@angular/forms';
|
|
18
|
+
import { ChoiceSettingsPanelComponent } from './choice-settings-panel/choice-settings-panel.component';
|
|
19
|
+
import { WelcomeComponent } from './welcome/welcome.component';
|
|
20
|
+
import { ThankYouComponent } from './thank-you/thank-you.component';
|
|
21
|
+
import { WeightageSelectorComponent } from './weightage-selector/weightage-selector.component';
|
|
22
|
+
import { TooltipModule } from '../../../../ui-kit/tooltip/tooltip.module';
|
|
23
|
+
import { PopoverModule } from '../../../../ui-kit/popover/popover.module';
|
|
24
|
+
import { FormgroupModule } from '../../../../ui-kit/formgroup/formgroup.module';
|
|
25
|
+
import * as i0 from "@angular/core";
|
|
26
|
+
export class BuildModule {
|
|
27
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BuildModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
28
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: BuildModule, declarations: [MultipleChoiceComponent,
|
|
29
|
+
CheckboxComponent,
|
|
30
|
+
ImageChoiceComponent,
|
|
31
|
+
StarRatingComponent,
|
|
32
|
+
MatrixDropdownComponent,
|
|
33
|
+
DropdownComponent,
|
|
34
|
+
MatrixRatingScaleComponent,
|
|
35
|
+
RankingComponent,
|
|
36
|
+
SliderComponent,
|
|
37
|
+
MultipleTextboxComponent,
|
|
38
|
+
DateTimeComponent,
|
|
39
|
+
ChoiceSettingsPanelComponent,
|
|
40
|
+
WelcomeComponent,
|
|
41
|
+
ThankYouComponent,
|
|
42
|
+
WeightageSelectorComponent], imports: [CommonModule,
|
|
43
|
+
TooltipModule,
|
|
44
|
+
PopoverModule,
|
|
45
|
+
FormgroupModule,
|
|
46
|
+
FormsModule], exports: [MultipleChoiceComponent,
|
|
47
|
+
CheckboxComponent,
|
|
48
|
+
ImageChoiceComponent,
|
|
49
|
+
StarRatingComponent,
|
|
50
|
+
MatrixDropdownComponent,
|
|
51
|
+
DropdownComponent,
|
|
52
|
+
MatrixRatingScaleComponent,
|
|
53
|
+
RankingComponent,
|
|
54
|
+
SliderComponent,
|
|
55
|
+
MultipleTextboxComponent,
|
|
56
|
+
DateTimeComponent,
|
|
57
|
+
WelcomeComponent,
|
|
58
|
+
ThankYouComponent,
|
|
59
|
+
WeightageSelectorComponent] }); }
|
|
60
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BuildModule, imports: [CommonModule,
|
|
61
|
+
TooltipModule,
|
|
62
|
+
PopoverModule,
|
|
63
|
+
FormgroupModule,
|
|
64
|
+
FormsModule] }); }
|
|
65
|
+
}
|
|
66
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BuildModule, decorators: [{
|
|
67
|
+
type: NgModule,
|
|
68
|
+
args: [{
|
|
69
|
+
declarations: [
|
|
70
|
+
MultipleChoiceComponent,
|
|
71
|
+
CheckboxComponent,
|
|
72
|
+
ImageChoiceComponent,
|
|
73
|
+
StarRatingComponent,
|
|
74
|
+
MatrixDropdownComponent,
|
|
75
|
+
DropdownComponent,
|
|
76
|
+
MatrixRatingScaleComponent,
|
|
77
|
+
RankingComponent,
|
|
78
|
+
SliderComponent,
|
|
79
|
+
MultipleTextboxComponent,
|
|
80
|
+
DateTimeComponent,
|
|
81
|
+
ChoiceSettingsPanelComponent,
|
|
82
|
+
WelcomeComponent,
|
|
83
|
+
ThankYouComponent,
|
|
84
|
+
WeightageSelectorComponent
|
|
85
|
+
],
|
|
86
|
+
imports: [
|
|
87
|
+
CommonModule,
|
|
88
|
+
TooltipModule,
|
|
89
|
+
PopoverModule,
|
|
90
|
+
FormgroupModule,
|
|
91
|
+
FormsModule
|
|
92
|
+
],
|
|
93
|
+
exports: [
|
|
94
|
+
MultipleChoiceComponent,
|
|
95
|
+
CheckboxComponent,
|
|
96
|
+
ImageChoiceComponent,
|
|
97
|
+
StarRatingComponent,
|
|
98
|
+
MatrixDropdownComponent,
|
|
99
|
+
DropdownComponent,
|
|
100
|
+
MatrixRatingScaleComponent,
|
|
101
|
+
RankingComponent,
|
|
102
|
+
SliderComponent,
|
|
103
|
+
MultipleTextboxComponent,
|
|
104
|
+
DateTimeComponent,
|
|
105
|
+
WelcomeComponent,
|
|
106
|
+
ThankYouComponent,
|
|
107
|
+
WeightageSelectorComponent
|
|
108
|
+
]
|
|
109
|
+
}]
|
|
110
|
+
}] });
|
|
111
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVpbGQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdngtd29ya2Zsb3ctZW5naW5lL3NyYy9saWIvc2hhcmVkQ29tcG9uZW50cy9hc3Nlc3NtZW50LWVkaXRvci9jb21wb25lbnRzL2J1aWxkL2J1aWxkLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQUN0RixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUM3RSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMxRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQUN0RixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxxREFBcUQsQ0FBQztBQUNqRyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDNUQsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sK0NBQStDLENBQUM7QUFDekYsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDcEUsb0dBQW9HO0FBQ3BHLDBHQUEwRztBQUMxRyxvR0FBb0c7QUFDcEcsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLHlEQUF5RCxDQUFDO0FBQ3ZHLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQy9ELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3BFLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQy9GLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSwyQ0FBMkMsQ0FBQztBQUMxRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sMkNBQTJDLENBQUM7QUFDMUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLCtDQUErQyxDQUFDOztBQThDaEYsTUFBTSxPQUFPLFdBQVc7K0dBQVgsV0FBVztnSEFBWCxXQUFXLGlCQXhDcEIsdUJBQXVCO1lBQ3ZCLGlCQUFpQjtZQUNqQixvQkFBb0I7WUFDcEIsbUJBQW1CO1lBQ25CLHVCQUF1QjtZQUN2QixpQkFBaUI7WUFDakIsMEJBQTBCO1lBQzFCLGdCQUFnQjtZQUNoQixlQUFlO1lBQ2Ysd0JBQXdCO1lBQ3hCLGlCQUFpQjtZQUNqQiw0QkFBNEI7WUFDNUIsZ0JBQWdCO1lBQ2hCLGlCQUFpQjtZQUNqQiwwQkFBMEIsYUFHMUIsWUFBWTtZQUNaLGFBQWE7WUFDYixhQUFhO1lBQ2IsZUFBZTtZQUNmLFdBQVcsYUFHWCx1QkFBdUI7WUFDdkIsaUJBQWlCO1lBQ2pCLG9CQUFvQjtZQUNwQixtQkFBbUI7WUFDbkIsdUJBQXVCO1lBQ3ZCLGlCQUFpQjtZQUNqQiwwQkFBMEI7WUFDMUIsZ0JBQWdCO1lBQ2hCLGVBQWU7WUFDZix3QkFBd0I7WUFDeEIsaUJBQWlCO1lBQ2pCLGdCQUFnQjtZQUNoQixpQkFBaUI7WUFDakIsMEJBQTBCO2dIQUdqQixXQUFXLFlBdkJwQixZQUFZO1lBQ1osYUFBYTtZQUNiLGFBQWE7WUFDYixlQUFlO1lBQ2YsV0FBVzs7NEZBbUJGLFdBQVc7a0JBMUN2QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWix1QkFBdUI7d0JBQ3ZCLGlCQUFpQjt3QkFDakIsb0JBQW9CO3dCQUNwQixtQkFBbUI7d0JBQ25CLHVCQUF1Qjt3QkFDdkIsaUJBQWlCO3dCQUNqQiwwQkFBMEI7d0JBQzFCLGdCQUFnQjt3QkFDaEIsZUFBZTt3QkFDZix3QkFBd0I7d0JBQ3hCLGlCQUFpQjt3QkFDakIsNEJBQTRCO3dCQUM1QixnQkFBZ0I7d0JBQ2hCLGlCQUFpQjt3QkFDakIsMEJBQTBCO3FCQUMzQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixhQUFhO3dCQUNiLGFBQWE7d0JBQ2IsZUFBZTt3QkFDZixXQUFXO3FCQUNaO29CQUNELE9BQU8sRUFBRTt3QkFDUCx1QkFBdUI7d0JBQ3ZCLGlCQUFpQjt3QkFDakIsb0JBQW9CO3dCQUNwQixtQkFBbUI7d0JBQ25CLHVCQUF1Qjt3QkFDdkIsaUJBQWlCO3dCQUNqQiwwQkFBMEI7d0JBQzFCLGdCQUFnQjt3QkFDaEIsZUFBZTt3QkFDZix3QkFBd0I7d0JBQ3hCLGlCQUFpQjt3QkFDakIsZ0JBQWdCO3dCQUNoQixpQkFBaUI7d0JBQ2pCLDBCQUEwQjtxQkFDM0I7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBNdWx0aXBsZUNob2ljZUNvbXBvbmVudCB9IGZyb20gJy4vbXVsdGlwbGUtY2hvaWNlL211bHRpcGxlLWNob2ljZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDaGVja2JveENvbXBvbmVudCB9IGZyb20gJy4vY2hlY2tib3gvY2hlY2tib3guY29tcG9uZW50JztcclxuaW1wb3J0IHsgSW1hZ2VDaG9pY2VDb21wb25lbnQgfSBmcm9tICcuL2ltYWdlLWNob2ljZS9pbWFnZS1jaG9pY2UuY29tcG9uZW50JztcclxuaW1wb3J0IHsgU3RhclJhdGluZ0NvbXBvbmVudCB9IGZyb20gJy4vc3Rhci1yYXRpbmcvc3Rhci1yYXRpbmcuY29tcG9uZW50JztcclxuaW1wb3J0IHsgTWF0cml4RHJvcGRvd25Db21wb25lbnQgfSBmcm9tICcuL21hdHJpeC1kcm9wZG93bi9tYXRyaXgtZHJvcGRvd24uY29tcG9uZW50JztcclxuaW1wb3J0IHsgRHJvcGRvd25Db21wb25lbnQgfSBmcm9tICcuL2Ryb3Bkb3duL2Ryb3Bkb3duLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IE1hdHJpeFJhdGluZ1NjYWxlQ29tcG9uZW50IH0gZnJvbSAnLi9tYXRyaXgtcmF0aW5nLXNjYWxlL21hdHJpeC1yYXRpbmctc2NhbGUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgUmFua2luZ0NvbXBvbmVudCB9IGZyb20gJy4vcmFua2luZy9yYW5raW5nLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFNsaWRlckNvbXBvbmVudCB9IGZyb20gJy4vc2xpZGVyL3NsaWRlci5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBNdWx0aXBsZVRleHRib3hDb21wb25lbnQgfSBmcm9tICcuL211bHRpcGxlLXRleHRib3gvbXVsdGlwbGUtdGV4dGJveC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBEYXRlVGltZUNvbXBvbmVudCB9IGZyb20gJy4vZGF0ZS10aW1lL2RhdGUtdGltZS5jb21wb25lbnQnO1xyXG4vLyBpbXBvcnQgeyBUb29sdGlwTW9kdWxlIH0gZnJvbSAncHJvamVjdHMvdWktY29tcG9uZW50cy9zcmMvbGliL3VpLXV0aWxpdHkvdG9vbHRpcC90b29sdGlwLm1vZHVsZSc7XHJcbi8vIGltcG9ydCB7IEZvcm1ncm91cE1vZHVsZSB9IGZyb20gJ3Byb2plY3RzL3VpLWNvbXBvbmVudHMvc3JjL2xpYi91aS11dGlsaXR5L2Zvcm1ncm91cC9mb3JtZ3JvdXAubW9kdWxlJztcclxuLy8gaW1wb3J0IHsgUG9wb3Zlck1vZHVsZSB9IGZyb20gJ3Byb2plY3RzL3VpLWNvbXBvbmVudHMvc3JjL2xpYi91aS11dGlsaXR5L3BvcG92ZXIvcG9wb3Zlci5tb2R1bGUnO1xyXG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgQ2hvaWNlU2V0dGluZ3NQYW5lbENvbXBvbmVudCB9IGZyb20gJy4vY2hvaWNlLXNldHRpbmdzLXBhbmVsL2Nob2ljZS1zZXR0aW5ncy1wYW5lbC5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBXZWxjb21lQ29tcG9uZW50IH0gZnJvbSAnLi93ZWxjb21lL3dlbGNvbWUuY29tcG9uZW50JztcclxuaW1wb3J0IHsgVGhhbmtZb3VDb21wb25lbnQgfSBmcm9tICcuL3RoYW5rLXlvdS90aGFuay15b3UuY29tcG9uZW50JztcclxuaW1wb3J0IHsgV2VpZ2h0YWdlU2VsZWN0b3JDb21wb25lbnQgfSBmcm9tICcuL3dlaWdodGFnZS1zZWxlY3Rvci93ZWlnaHRhZ2Utc2VsZWN0b3IuY29tcG9uZW50JztcclxuaW1wb3J0IHsgVG9vbHRpcE1vZHVsZSB9IGZyb20gJy4uLy4uLy4uLy4uL3VpLWtpdC90b29sdGlwL3Rvb2x0aXAubW9kdWxlJztcclxuaW1wb3J0IHsgUG9wb3Zlck1vZHVsZSB9IGZyb20gJy4uLy4uLy4uLy4uL3VpLWtpdC9wb3BvdmVyL3BvcG92ZXIubW9kdWxlJztcclxuaW1wb3J0IHsgRm9ybWdyb3VwTW9kdWxlIH0gZnJvbSAnLi4vLi4vLi4vLi4vdWkta2l0L2Zvcm1ncm91cC9mb3JtZ3JvdXAubW9kdWxlJztcclxuXHJcblxyXG5cclxuQE5nTW9kdWxlKHtcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIE11bHRpcGxlQ2hvaWNlQ29tcG9uZW50LFxyXG4gICAgQ2hlY2tib3hDb21wb25lbnQsXHJcbiAgICBJbWFnZUNob2ljZUNvbXBvbmVudCxcclxuICAgIFN0YXJSYXRpbmdDb21wb25lbnQsXHJcbiAgICBNYXRyaXhEcm9wZG93bkNvbXBvbmVudCxcclxuICAgIERyb3Bkb3duQ29tcG9uZW50LFxyXG4gICAgTWF0cml4UmF0aW5nU2NhbGVDb21wb25lbnQsXHJcbiAgICBSYW5raW5nQ29tcG9uZW50LFxyXG4gICAgU2xpZGVyQ29tcG9uZW50LFxyXG4gICAgTXVsdGlwbGVUZXh0Ym94Q29tcG9uZW50LFxyXG4gICAgRGF0ZVRpbWVDb21wb25lbnQsXHJcbiAgICBDaG9pY2VTZXR0aW5nc1BhbmVsQ29tcG9uZW50LFxyXG4gICAgV2VsY29tZUNvbXBvbmVudCxcclxuICAgIFRoYW5rWW91Q29tcG9uZW50LFxyXG4gICAgV2VpZ2h0YWdlU2VsZWN0b3JDb21wb25lbnRcclxuICBdLFxyXG4gIGltcG9ydHM6IFtcclxuICAgIENvbW1vbk1vZHVsZSxcclxuICAgIFRvb2x0aXBNb2R1bGUsXHJcbiAgICBQb3BvdmVyTW9kdWxlLFxyXG4gICAgRm9ybWdyb3VwTW9kdWxlLFxyXG4gICAgRm9ybXNNb2R1bGVcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIE11bHRpcGxlQ2hvaWNlQ29tcG9uZW50LFxyXG4gICAgQ2hlY2tib3hDb21wb25lbnQsXHJcbiAgICBJbWFnZUNob2ljZUNvbXBvbmVudCxcclxuICAgIFN0YXJSYXRpbmdDb21wb25lbnQsXHJcbiAgICBNYXRyaXhEcm9wZG93bkNvbXBvbmVudCxcclxuICAgIERyb3Bkb3duQ29tcG9uZW50LFxyXG4gICAgTWF0cml4UmF0aW5nU2NhbGVDb21wb25lbnQsXHJcbiAgICBSYW5raW5nQ29tcG9uZW50LFxyXG4gICAgU2xpZGVyQ29tcG9uZW50LFxyXG4gICAgTXVsdGlwbGVUZXh0Ym94Q29tcG9uZW50LFxyXG4gICAgRGF0ZVRpbWVDb21wb25lbnQsXHJcbiAgICBXZWxjb21lQ29tcG9uZW50LFxyXG4gICAgVGhhbmtZb3VDb21wb25lbnQsXHJcbiAgICBXZWlnaHRhZ2VTZWxlY3RvckNvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIEJ1aWxkTW9kdWxlIHsgfVxyXG4iXX0=
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "@angular/forms";
|
|
5
|
+
import * as i3 from "../choice-settings-panel/choice-settings-panel.component";
|
|
6
|
+
export class CheckboxComponent {
|
|
7
|
+
constructor(cdr) {
|
|
8
|
+
this.cdr = cdr;
|
|
9
|
+
this.addOption = new EventEmitter();
|
|
10
|
+
this.deleteOption = new EventEmitter();
|
|
11
|
+
}
|
|
12
|
+
ngOnInit() {
|
|
13
|
+
}
|
|
14
|
+
modifyOption(mode, choiceIndex, type) {
|
|
15
|
+
if (mode === 'ADD') {
|
|
16
|
+
this.addOption.emit({ choiceIndex, type });
|
|
17
|
+
}
|
|
18
|
+
else if (mode === 'DELETE') {
|
|
19
|
+
this.deleteOption.emit({ choiceIndex, type });
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckboxComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
23
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CheckboxComponent, selector: "app-checkbox", inputs: { question: "question", service: "service" }, outputs: { addOption: "addOption", deleteOption: "deleteOption" }, ngImport: i0, template: "<div class=\"checkbox vx-d-flex vx-mb-4\" *ngFor=\"let choice of question?.choices; let choiceIndex = index\">\r\n <div class=\"left\">\r\n <input type=\"text\" placeholder=\"Option\" [attr.id]='\"checkbox-\"+choiceIndex' (keyup.enter)=\"modifyOption('ADD',choiceIndex,'checkbox-')\" [(ngModel)]=\"choice.title\"/>\r\n <div class=\"option-color vx-d-flex vx-align-center vx-justify-center\">\r\n <input type=\"color\">\r\n <i class=\"icons vx-fs-16\" style=\"color: green;\"></i>\r\n </div>\r\n <!-- <button class=\"choice-icon vx-fs-16 vx-txt-blue vx-p-0 vx-m-0 vx-d-flex vx-align-center vx-justify-center\"><i class=\"icons\"></i></button> -->\r\n <app-choice-settings-panel [defaultScore]=\"service.score.defaultScore\" [negativeScore]=\"service.score.negativeScore\" [scoreVisible]='service.formsPage.settings.assessmentMode' [(isFailed)]='choice.isFailed' [(score)]='choice.score'></app-choice-settings-panel>\r\n </div>\r\n <div class=\"right vx-d-flex vx-align-center vx-ml-1\">\r\n <button (click)=\"modifyOption('ADD',choiceIndex,'checkbox-')\" class=\"vx-fs-24 vx-paragraph-txt vx-p-0 vx-m-0 vx-ml-1 vx-d-flex vx-align-center vx-justify-center\">+</button>\r\n <button class=\"vx-fs-24 vx-paragraph-txt vx-p-0 vx-m-0 vx-ml-1 vx-d-flex vx-align-center vx-justify-center\" (click)=\"modifyOption('DELETE',choiceIndex,'radio-')\" [class.disabled]=\"question?.choices?.length === 1\">-</button>\r\n </div>\r\n</div>\r\n<div class=\"checkbox vx-d-flex vx-mb-4\" *ngIf=\"question?.hasOther\">\r\n <div class=\"left\">\r\n <input type=\"text\" disabled placeholder=\"Option\" [(ngModel)]=\"question.otherValue\"/>\r\n <div class=\"option-color vx-d-flex vx-align-center vx-justify-center\">\r\n <input type=\"color\" [(ngModel)]=\"question.otherConfig.color\">\r\n <i class=\"icons vx-fs-16\" [style.color]='question.otherConfig.color'></i>\r\n </div>\r\n <!-- <button class=\"choice-icon vx-fs-16 vx-txt-blue vx-p-0 vx-m-0 vx-d-flex vx-align-center vx-justify-center\"><i class=\"icons\"></i></button> -->\r\n <app-choice-settings-panel [scoreVisible]='service.formsPage.settings.assessmentMode'\r\n [(isFailed)]='question.otherConfig.isFailed'\r\n [defaultScore]=\"service.score.defaultScore\" [negativeScore]=\"service.score.negativeScore\"\r\n [(score)]='question.otherConfig.score'></app-choice-settings-panel>\r\n </div>\r\n \r\n</div>", styles: ["@import\"https://cdn.v-comply.com/design-system/css/icons/icons.css\";@import\"https://cdn.v-comply.com/design-system/css/mixin/mixin.css\";@import\"https://cdn.v-comply.com/design-system/css/display/display.css\";@import\"https://cdn.v-comply.com/design-system/css/alignment/alignment.css\";@import\"https://cdn.v-comply.com/design-system/css/color/color.css\";@import\"https://cdn.v-comply.com/design-system/css/text/text.css\";@import\"https://cdn.v-comply.com/design-system/css/width/width.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-top.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-left.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-right.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-top.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-left.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-right.css\";.checkbox .left{width:calc(100% - 4.75rem);position:relative}.checkbox .left input[type=text]{background:#fff;border:1px solid #DBDBDB;border-radius:.25rem;color:#747576;font-size:12px;padding:.5rem 2.75rem;width:100%;height:2.5rem;outline:none;transition:all .3s ease-in-out}.checkbox .left input[type=text]:focus{border-color:#1e5dd3;box-shadow:0 0 5px #1e5dd345}.checkbox .left .option-color{background:#f1f1f1;border-radius:.125rem;width:1.5rem;height:1.5rem;position:absolute;top:.5rem;left:.5rem}.checkbox .left .option-color input[type=color]{position:absolute;inset:0;margin:0;width:100%;height:100%;cursor:pointer;opacity:0}.checkbox .left button.choice-icon{background:transparent;border:none;border-radius:0;position:absolute;top:.75rem;right:.5rem}.checkbox .left .reponse-choice .choice-item{background:#f8f8f8;border-radius:.25rem;height:2rem}.checkbox .left .reponse-choice .choice-item button.minus-btn,.checkbox .left .reponse-choice .choice-item button.plus-btn{background:transparent;border:none;border-radius:0}.checkbox .left .reponse-choice .choice-item input[type=number]{background:#fff;border:1px solid #DBDBDB;border-radius:.125rem;color:#747576;font-size:11px;padding:0 .25rem;margin:0 .25rem;height:1.25rem;width:2.75rem;text-align:center;outline:none}.checkbox .left .reponse-choice .choice-item i.info{cursor:pointer}.checkbox .right{width:4.5rem;height:2.5rem}.checkbox .right button{background:#f8f8f8;border-radius:50%;border:none;width:2rem;height:2rem}.checkbox .right button.disabled{pointer-events:none;opacity:.5}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.ChoiceSettingsPanelComponent, selector: "app-choice-settings-panel", inputs: ["defaultScore", "negativeScore", "isFailed", "score", "scoreVisible"], outputs: ["isFailedChange", "scoreChange"] }] }); }
|
|
24
|
+
}
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckboxComponent, decorators: [{
|
|
26
|
+
type: Component,
|
|
27
|
+
args: [{ selector: 'app-checkbox', template: "<div class=\"checkbox vx-d-flex vx-mb-4\" *ngFor=\"let choice of question?.choices; let choiceIndex = index\">\r\n <div class=\"left\">\r\n <input type=\"text\" placeholder=\"Option\" [attr.id]='\"checkbox-\"+choiceIndex' (keyup.enter)=\"modifyOption('ADD',choiceIndex,'checkbox-')\" [(ngModel)]=\"choice.title\"/>\r\n <div class=\"option-color vx-d-flex vx-align-center vx-justify-center\">\r\n <input type=\"color\">\r\n <i class=\"icons vx-fs-16\" style=\"color: green;\"></i>\r\n </div>\r\n <!-- <button class=\"choice-icon vx-fs-16 vx-txt-blue vx-p-0 vx-m-0 vx-d-flex vx-align-center vx-justify-center\"><i class=\"icons\"></i></button> -->\r\n <app-choice-settings-panel [defaultScore]=\"service.score.defaultScore\" [negativeScore]=\"service.score.negativeScore\" [scoreVisible]='service.formsPage.settings.assessmentMode' [(isFailed)]='choice.isFailed' [(score)]='choice.score'></app-choice-settings-panel>\r\n </div>\r\n <div class=\"right vx-d-flex vx-align-center vx-ml-1\">\r\n <button (click)=\"modifyOption('ADD',choiceIndex,'checkbox-')\" class=\"vx-fs-24 vx-paragraph-txt vx-p-0 vx-m-0 vx-ml-1 vx-d-flex vx-align-center vx-justify-center\">+</button>\r\n <button class=\"vx-fs-24 vx-paragraph-txt vx-p-0 vx-m-0 vx-ml-1 vx-d-flex vx-align-center vx-justify-center\" (click)=\"modifyOption('DELETE',choiceIndex,'radio-')\" [class.disabled]=\"question?.choices?.length === 1\">-</button>\r\n </div>\r\n</div>\r\n<div class=\"checkbox vx-d-flex vx-mb-4\" *ngIf=\"question?.hasOther\">\r\n <div class=\"left\">\r\n <input type=\"text\" disabled placeholder=\"Option\" [(ngModel)]=\"question.otherValue\"/>\r\n <div class=\"option-color vx-d-flex vx-align-center vx-justify-center\">\r\n <input type=\"color\" [(ngModel)]=\"question.otherConfig.color\">\r\n <i class=\"icons vx-fs-16\" [style.color]='question.otherConfig.color'></i>\r\n </div>\r\n <!-- <button class=\"choice-icon vx-fs-16 vx-txt-blue vx-p-0 vx-m-0 vx-d-flex vx-align-center vx-justify-center\"><i class=\"icons\"></i></button> -->\r\n <app-choice-settings-panel [scoreVisible]='service.formsPage.settings.assessmentMode'\r\n [(isFailed)]='question.otherConfig.isFailed'\r\n [defaultScore]=\"service.score.defaultScore\" [negativeScore]=\"service.score.negativeScore\"\r\n [(score)]='question.otherConfig.score'></app-choice-settings-panel>\r\n </div>\r\n \r\n</div>", styles: ["@import\"https://cdn.v-comply.com/design-system/css/icons/icons.css\";@import\"https://cdn.v-comply.com/design-system/css/mixin/mixin.css\";@import\"https://cdn.v-comply.com/design-system/css/display/display.css\";@import\"https://cdn.v-comply.com/design-system/css/alignment/alignment.css\";@import\"https://cdn.v-comply.com/design-system/css/color/color.css\";@import\"https://cdn.v-comply.com/design-system/css/text/text.css\";@import\"https://cdn.v-comply.com/design-system/css/width/width.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-top.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-left.css\";@import\"https://cdn.v-comply.com/design-system/css/margin/margin-right.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-top.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-bottom.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-left.css\";@import\"https://cdn.v-comply.com/design-system/css/padding/padding-right.css\";.checkbox .left{width:calc(100% - 4.75rem);position:relative}.checkbox .left input[type=text]{background:#fff;border:1px solid #DBDBDB;border-radius:.25rem;color:#747576;font-size:12px;padding:.5rem 2.75rem;width:100%;height:2.5rem;outline:none;transition:all .3s ease-in-out}.checkbox .left input[type=text]:focus{border-color:#1e5dd3;box-shadow:0 0 5px #1e5dd345}.checkbox .left .option-color{background:#f1f1f1;border-radius:.125rem;width:1.5rem;height:1.5rem;position:absolute;top:.5rem;left:.5rem}.checkbox .left .option-color input[type=color]{position:absolute;inset:0;margin:0;width:100%;height:100%;cursor:pointer;opacity:0}.checkbox .left button.choice-icon{background:transparent;border:none;border-radius:0;position:absolute;top:.75rem;right:.5rem}.checkbox .left .reponse-choice .choice-item{background:#f8f8f8;border-radius:.25rem;height:2rem}.checkbox .left .reponse-choice .choice-item button.minus-btn,.checkbox .left .reponse-choice .choice-item button.plus-btn{background:transparent;border:none;border-radius:0}.checkbox .left .reponse-choice .choice-item input[type=number]{background:#fff;border:1px solid #DBDBDB;border-radius:.125rem;color:#747576;font-size:11px;padding:0 .25rem;margin:0 .25rem;height:1.25rem;width:2.75rem;text-align:center;outline:none}.checkbox .left .reponse-choice .choice-item i.info{cursor:pointer}.checkbox .right{width:4.5rem;height:2.5rem}.checkbox .right button{background:#f8f8f8;border-radius:50%;border:none;width:2rem;height:2rem}.checkbox .right button.disabled{pointer-events:none;opacity:.5}\n"] }]
|
|
28
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { question: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], service: [{
|
|
31
|
+
type: Input
|
|
32
|
+
}], addOption: [{
|
|
33
|
+
type: Output
|
|
34
|
+
}], deleteOption: [{
|
|
35
|
+
type: Output
|
|
36
|
+
}] } });
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3guY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdngtd29ya2Zsb3ctZW5naW5lL3NyYy9saWIvc2hhcmVkQ29tcG9uZW50cy9hc3Nlc3NtZW50LWVkaXRvci9jb21wb25lbnRzL2J1aWxkL2NoZWNrYm94L2NoZWNrYm94LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Z4LXdvcmtmbG93LWVuZ2luZS9zcmMvbGliL3NoYXJlZENvbXBvbmVudHMvYXNzZXNzbWVudC1lZGl0b3IvY29tcG9uZW50cy9idWlsZC9jaGVja2JveC9jaGVja2JveC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXFCLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFPbEcsTUFBTSxPQUFPLGlCQUFpQjtJQUs1QixZQUFvQixHQUFzQjtRQUF0QixRQUFHLEdBQUgsR0FBRyxDQUFtQjtRQUZoQyxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUNwQyxpQkFBWSxHQUFHLElBQUksWUFBWSxFQUFPLENBQUM7SUFDSCxDQUFDO0lBRS9DLFFBQVE7SUFDUixDQUFDO0lBQ0QsWUFBWSxDQUFDLElBQVksRUFBRSxXQUFtQixFQUFFLElBQVk7UUFDMUQsSUFBSSxJQUFJLEtBQUssS0FBSyxFQUFDO1lBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsRUFBQyxXQUFXLEVBQUUsSUFBSSxFQUFDLENBQUMsQ0FBQztTQUFFO2FBQzFELElBQUksSUFBSSxLQUFLLFFBQVEsRUFBQztZQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLEVBQUMsV0FBVyxFQUFFLElBQUksRUFBQyxDQUFDLENBQUM7U0FBRTtJQUM5RSxDQUFDOytHQVpZLGlCQUFpQjttR0FBakIsaUJBQWlCLDZLQ1A5QixzL0VBNkJNOzs0RkR0Qk8saUJBQWlCO2tCQUw3QixTQUFTOytCQUNFLGNBQWM7d0dBS2YsUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0ksU0FBUztzQkFBbEIsTUFBTTtnQkFDRyxZQUFZO3NCQUFyQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0b3JSZWYsIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXBwLWNoZWNrYm94JyxcclxuICB0ZW1wbGF0ZVVybDogJy4vY2hlY2tib3guY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2NoZWNrYm94LmNvbXBvbmVudC5sZXNzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIENoZWNrYm94Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBASW5wdXQoKSBxdWVzdGlvbiE6IGFueTtcclxuICBASW5wdXQoKSBzZXJ2aWNlOiBhbnk7XHJcbiAgQE91dHB1dCgpIGFkZE9wdGlvbiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIEBPdXRwdXQoKSBkZWxldGVPcHRpb24gPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHsgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICB9XHJcbiAgbW9kaWZ5T3B0aW9uKG1vZGU6IHN0cmluZywgY2hvaWNlSW5kZXg6IG51bWJlciwgdHlwZTogc3RyaW5nKXtcclxuICAgIGlmIChtb2RlID09PSAnQUREJyl7dGhpcy5hZGRPcHRpb24uZW1pdCh7Y2hvaWNlSW5kZXgsIHR5cGV9KTsgfVxyXG4gICAgZWxzZSBpZiAobW9kZSA9PT0gJ0RFTEVURScpe3RoaXMuZGVsZXRlT3B0aW9uLmVtaXQoe2Nob2ljZUluZGV4LCB0eXBlfSk7IH1cclxufVxyXG5cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiY2hlY2tib3ggdngtZC1mbGV4IHZ4LW1iLTRcIiAqbmdGb3I9XCJsZXQgY2hvaWNlIG9mIHF1ZXN0aW9uPy5jaG9pY2VzOyBsZXQgY2hvaWNlSW5kZXggPSBpbmRleFwiPlxyXG4gICAgPGRpdiBjbGFzcz1cImxlZnRcIj5cclxuICAgICAgICA8aW5wdXQgdHlwZT1cInRleHRcIiBwbGFjZWhvbGRlcj1cIk9wdGlvblwiIFthdHRyLmlkXT0nXCJjaGVja2JveC1cIitjaG9pY2VJbmRleCcgKGtleXVwLmVudGVyKT1cIm1vZGlmeU9wdGlvbignQUREJyxjaG9pY2VJbmRleCwnY2hlY2tib3gtJylcIiBbKG5nTW9kZWwpXT1cImNob2ljZS50aXRsZVwiLz5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwib3B0aW9uLWNvbG9yIHZ4LWQtZmxleCB2eC1hbGlnbi1jZW50ZXIgdngtanVzdGlmeS1jZW50ZXJcIj5cclxuICAgICAgICAgICAgPGlucHV0IHR5cGU9XCJjb2xvclwiPlxyXG4gICAgICAgICAgICA8aSBjbGFzcz1cImljb25zIHZ4LWZzLTE2XCIgc3R5bGU9XCJjb2xvcjogZ3JlZW47XCI+JiN4ZWIwMTs8L2k+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPCEtLSA8YnV0dG9uICBjbGFzcz1cImNob2ljZS1pY29uIHZ4LWZzLTE2IHZ4LXR4dC1ibHVlIHZ4LXAtMCB2eC1tLTAgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWNlbnRlclwiPjxpIGNsYXNzPVwiaWNvbnNcIj4mI3hlOTEzOzwvaT48L2J1dHRvbj4gLS0+XHJcbiAgICAgICAgPGFwcC1jaG9pY2Utc2V0dGluZ3MtcGFuZWwgW2RlZmF1bHRTY29yZV09XCJzZXJ2aWNlLnNjb3JlLmRlZmF1bHRTY29yZVwiIFtuZWdhdGl2ZVNjb3JlXT1cInNlcnZpY2Uuc2NvcmUubmVnYXRpdmVTY29yZVwiIFtzY29yZVZpc2libGVdPSdzZXJ2aWNlLmZvcm1zUGFnZS5zZXR0aW5ncy5hc3Nlc3NtZW50TW9kZScgWyhpc0ZhaWxlZCldPSdjaG9pY2UuaXNGYWlsZWQnIFsoc2NvcmUpXT0nY2hvaWNlLnNjb3JlJz48L2FwcC1jaG9pY2Utc2V0dGluZ3MtcGFuZWw+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJyaWdodCB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LW1sLTFcIj5cclxuICAgICAgICA8YnV0dG9uIChjbGljayk9XCJtb2RpZnlPcHRpb24oJ0FERCcsY2hvaWNlSW5kZXgsJ2NoZWNrYm94LScpXCIgY2xhc3M9XCJ2eC1mcy0yNCB2eC1wYXJhZ3JhcGgtdHh0IHZ4LXAtMCB2eC1tLTAgdngtbWwtMSB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktY2VudGVyXCI+KzwvYnV0dG9uPlxyXG4gICAgICAgIDxidXR0b24gY2xhc3M9XCJ2eC1mcy0yNCB2eC1wYXJhZ3JhcGgtdHh0IHZ4LXAtMCB2eC1tLTAgdngtbWwtMSB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktY2VudGVyXCIgKGNsaWNrKT1cIm1vZGlmeU9wdGlvbignREVMRVRFJyxjaG9pY2VJbmRleCwncmFkaW8tJylcIiBbY2xhc3MuZGlzYWJsZWRdPVwicXVlc3Rpb24/LmNob2ljZXM/Lmxlbmd0aCA9PT0gMVwiPi08L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG48L2Rpdj5cclxuPGRpdiBjbGFzcz1cImNoZWNrYm94IHZ4LWQtZmxleCB2eC1tYi00XCIgKm5nSWY9XCJxdWVzdGlvbj8uaGFzT3RoZXJcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJsZWZ0XCI+XHJcbiAgICAgICAgPGlucHV0IHR5cGU9XCJ0ZXh0XCIgZGlzYWJsZWQgcGxhY2Vob2xkZXI9XCJPcHRpb25cIiBbKG5nTW9kZWwpXT1cInF1ZXN0aW9uLm90aGVyVmFsdWVcIi8+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cIm9wdGlvbi1jb2xvciB2eC1kLWZsZXggdngtYWxpZ24tY2VudGVyIHZ4LWp1c3RpZnktY2VudGVyXCI+XHJcbiAgICAgICAgICAgIDxpbnB1dCB0eXBlPVwiY29sb3JcIiBbKG5nTW9kZWwpXT1cInF1ZXN0aW9uLm90aGVyQ29uZmlnLmNvbG9yXCI+XHJcbiAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbnMgdngtZnMtMTZcIiBbc3R5bGUuY29sb3JdPSdxdWVzdGlvbi5vdGhlckNvbmZpZy5jb2xvcic+JiN4ZWIwMTs8L2k+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPCEtLSA8YnV0dG9uICBjbGFzcz1cImNob2ljZS1pY29uIHZ4LWZzLTE2IHZ4LXR4dC1ibHVlIHZ4LXAtMCB2eC1tLTAgdngtZC1mbGV4IHZ4LWFsaWduLWNlbnRlciB2eC1qdXN0aWZ5LWNlbnRlclwiPjxpIGNsYXNzPVwiaWNvbnNcIj4mI3hlOTEzOzwvaT48L2J1dHRvbj4gLS0+XHJcbiAgICAgICAgPGFwcC1jaG9pY2Utc2V0dGluZ3MtcGFuZWwgW3Njb3JlVmlzaWJsZV09J3NlcnZpY2UuZm9ybXNQYWdlLnNldHRpbmdzLmFzc2Vzc21lbnRNb2RlJ1xyXG4gICAgICAgIFsoaXNGYWlsZWQpXT0ncXVlc3Rpb24ub3RoZXJDb25maWcuaXNGYWlsZWQnXHJcbiAgICAgICAgW2RlZmF1bHRTY29yZV09XCJzZXJ2aWNlLnNjb3JlLmRlZmF1bHRTY29yZVwiIFtuZWdhdGl2ZVNjb3JlXT1cInNlcnZpY2Uuc2NvcmUubmVnYXRpdmVTY29yZVwiXHJcbiAgICAgICAgWyhzY29yZSldPSdxdWVzdGlvbi5vdGhlckNvbmZpZy5zY29yZSc+PC9hcHAtY2hvaWNlLXNldHRpbmdzLXBhbmVsPlxyXG4gICAgPC9kaXY+XHJcbiAgICBcclxuPC9kaXY+Il19
|