tango-app-ui-analyse-trax 3.9.2 → 3.9.3
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/.eslintrc.json +37 -0
- package/ng-package.json +7 -0
- package/package.json +12 -25
- package/src/lib/components/action-centre/action-centre.component.html +607 -0
- package/src/lib/components/action-centre/action-centre.component.scss +185 -0
- package/src/lib/components/action-centre/action-centre.component.spec.ts +23 -0
- package/src/lib/components/action-centre/action-centre.component.ts +279 -0
- package/src/lib/components/activity-log/activity-log.component.html +84 -0
- package/src/lib/components/activity-log/activity-log.component.scss +33 -0
- package/src/lib/components/activity-log/activity-log.component.spec.ts +23 -0
- package/src/lib/components/activity-log/activity-log.component.ts +137 -0
- package/src/lib/components/activity-log-v2/activity-log-v2.component.html +189 -0
- package/src/lib/components/activity-log-v2/activity-log-v2.component.scss +162 -0
- package/src/lib/components/activity-log-v2/activity-log-v2.component.spec.ts +23 -0
- package/src/lib/components/activity-log-v2/activity-log-v2.component.ts +517 -0
- package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.html +19 -0
- package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.scss +148 -0
- package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.spec.ts +23 -0
- package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.ts +141 -0
- package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.html +42 -0
- package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.scss +49 -0
- package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.spec.ts +23 -0
- package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.ts +22 -0
- package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.html +724 -0
- package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.scss +217 -0
- package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.spec.ts +23 -0
- package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.ts +122 -0
- package/src/lib/components/add-checklist/add-checklist.component.html +1459 -0
- package/src/lib/components/add-checklist/add-checklist.component.scss +1205 -0
- package/src/lib/components/add-checklist/add-checklist.component.spec.ts +23 -0
- package/src/lib/components/add-checklist/add-checklist.component.ts +2460 -0
- package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.html +207 -0
- package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.scss +213 -0
- package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.spec.ts +23 -0
- package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.ts +621 -0
- package/src/lib/components/add-checklist/counter/counter.component.html +43 -0
- package/src/lib/components/add-checklist/counter/counter.component.scss +49 -0
- package/src/lib/components/add-checklist/counter/counter.component.spec.ts +23 -0
- package/src/lib/components/add-checklist/counter/counter.component.ts +123 -0
- package/src/lib/components/add-multitask/add-multitask.component.html +705 -0
- package/src/lib/components/add-multitask/add-multitask.component.scss +296 -0
- package/src/lib/components/add-multitask/add-multitask.component.spec.ts +23 -0
- package/src/lib/components/add-multitask/add-multitask.component.ts +611 -0
- package/src/lib/components/add-multitask/ascending-validator.ts +13 -0
- package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.html +197 -0
- package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.scss +31 -0
- package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.spec.ts +23 -0
- package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.ts +285 -0
- package/src/lib/components/add-multitask/create-task.data.ts +374 -0
- package/src/lib/components/add-multitask/create-task.interface.ts +177 -0
- package/src/lib/components/add-multitask/unique-string-validator.ts +13 -0
- package/src/lib/components/add-multitask/whitespace-validator.ts +11 -0
- package/src/lib/components/add-task/add-task.component.html +654 -0
- package/src/lib/components/add-task/add-task.component.scss +536 -0
- package/src/lib/components/add-task/add-task.component.spec.ts +23 -0
- package/src/lib/components/add-task/add-task.component.ts +569 -0
- package/src/lib/components/add-task/ascending-validator.ts +13 -0
- package/src/lib/components/add-task/create-task.data.ts +374 -0
- package/src/lib/components/add-task/create-task.interface.ts +192 -0
- package/src/lib/components/add-task/unique-string-validator.ts +13 -0
- package/src/lib/components/add-task/whitespace-validator.ts +11 -0
- package/src/lib/components/approval-popup/approval-popup.component.html +25 -0
- package/src/lib/components/approval-popup/approval-popup.component.scss +3 -0
- package/src/lib/components/approval-popup/approval-popup.component.spec.ts +23 -0
- package/src/lib/components/approval-popup/approval-popup.component.ts +26 -0
- package/src/lib/components/checklist/checklist.component.html +330 -0
- package/src/lib/components/checklist/checklist.component.scss +112 -0
- package/src/lib/components/checklist/checklist.component.spec.ts +23 -0
- package/src/lib/components/checklist/checklist.component.ts +344 -0
- package/src/lib/components/checklist-configure/assign/assign.component.html +665 -0
- package/src/lib/components/checklist-configure/assign/assign.component.scss +219 -0
- package/src/lib/components/checklist-configure/assign/assign.component.spec.ts +23 -0
- package/src/lib/components/checklist-configure/assign/assign.component.ts +932 -0
- package/src/lib/components/checklist-configure/checklist-configure.component.html +4340 -0
- package/src/lib/components/checklist-configure/checklist-configure.component.scss +2338 -0
- package/src/lib/components/checklist-configure/checklist-configure.component.spec.ts +23 -0
- package/src/lib/components/checklist-configure/checklist-configure.component.ts +4659 -0
- package/src/lib/components/checklistlayout/checklistlayout.component.html +30 -0
- package/src/lib/components/checklistlayout/checklistlayout.component.scss +15 -0
- package/src/lib/components/checklistlayout/checklistlayout.component.spec.ts +23 -0
- package/src/lib/components/checklistlayout/checklistlayout.component.ts +47 -0
- package/src/lib/components/chip-dropdown/chip-dropdown.component.html +36 -0
- package/src/lib/components/chip-dropdown/chip-dropdown.component.scss +97 -0
- package/src/lib/components/chip-dropdown/chip-dropdown.component.spec.ts +23 -0
- package/src/lib/components/chip-dropdown/chip-dropdown.component.ts +125 -0
- package/src/lib/components/create-task/create-task.component.html +2003 -0
- package/src/lib/components/create-task/create-task.component.scss +272 -0
- package/src/lib/components/create-task/create-task.component.spec.ts +23 -0
- package/src/lib/components/create-task/create-task.component.ts +614 -0
- package/src/lib/components/create-task/create-task.data.ts +372 -0
- package/src/lib/components/create-task/create-task.interface.ts +182 -0
- package/src/lib/components/create-task/validators/ascending-validator.ts +13 -0
- package/src/lib/components/create-task/validators/unique-string-validator.ts +13 -0
- package/src/lib/components/create-task/validators/whitespace-validator.ts +11 -0
- package/src/lib/components/custom-select/custom-select.component.html +44 -0
- package/src/lib/components/custom-select/custom-select.component.scss +144 -0
- package/src/lib/components/custom-select/custom-select.component.spec.ts +23 -0
- package/src/lib/components/custom-select/custom-select.component.ts +265 -0
- package/src/lib/components/dashboard/dashboard.component.html +1076 -0
- package/src/lib/components/dashboard/dashboard.component.scss +237 -0
- package/src/lib/components/dashboard/dashboard.component.spec.ts +23 -0
- package/src/lib/components/dashboard/dashboard.component.ts +539 -0
- package/src/lib/components/dashboard-info/dashboard-info.component.html +1420 -0
- package/src/lib/components/dashboard-info/dashboard-info.component.scss +409 -0
- package/src/lib/components/dashboard-info/dashboard-info.component.spec.ts +23 -0
- package/src/lib/components/dashboard-info/dashboard-info.component.ts +772 -0
- package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.html +110 -0
- package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.scss +260 -0
- package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.spec.ts +23 -0
- package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.ts +143 -0
- package/src/lib/components/dashboard-layout/dashboard-layout.component.html +1 -0
- package/src/lib/components/dashboard-layout/dashboard-layout.component.scss +0 -0
- package/src/lib/components/dashboard-layout/dashboard-layout.component.spec.ts +23 -0
- package/src/lib/components/dashboard-layout/dashboard-layout.component.ts +10 -0
- package/src/lib/components/disabled-select/disabled-select.component.html +44 -0
- package/src/lib/components/disabled-select/disabled-select.component.scss +149 -0
- package/src/lib/components/disabled-select/disabled-select.component.spec.ts +23 -0
- package/src/lib/components/disabled-select/disabled-select.component.ts +146 -0
- package/src/lib/components/export-gallery/export-gallery.component.html +175 -0
- package/src/lib/components/export-gallery/export-gallery.component.scss +200 -0
- package/src/lib/components/export-gallery/export-gallery.component.spec.ts +23 -0
- package/src/lib/components/export-gallery/export-gallery.component.ts +263 -0
- package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.html +36 -0
- package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.scss +97 -0
- package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.ts +104 -0
- package/src/lib/components/eye-test-audit/custom-select/custom-select.component.html +44 -0
- package/src/lib/components/eye-test-audit/custom-select/custom-select.component.scss +144 -0
- package/src/lib/components/eye-test-audit/custom-select/custom-select.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/custom-select/custom-select.component.ts +265 -0
- package/src/lib/components/eye-test-audit/eye-test/eye-test.component.html +1804 -0
- package/src/lib/components/eye-test-audit/eye-test/eye-test.component.scss +806 -0
- package/src/lib/components/eye-test-audit/eye-test/eye-test.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/eye-test/eye-test.component.ts +1890 -0
- package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.html +25 -0
- package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.scss +0 -0
- package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.ts +20 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.ts +26 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.html +1 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.scss +0 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.ts +24 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.ts +44 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.html +490 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.scss +721 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.ts +1017 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.html +708 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.scss +247 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.ts +446 -0
- package/src/lib/components/eye-test-audit/group-select/group-select.component.html +44 -0
- package/src/lib/components/eye-test-audit/group-select/group-select.component.scss +144 -0
- package/src/lib/components/eye-test-audit/group-select/group-select.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/group-select/group-select.component.ts +147 -0
- package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.html +18 -0
- package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.scss +49 -0
- package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.ts +104 -0
- package/src/lib/components/eye-test-audit/select-drop/select-drop.component.html +44 -0
- package/src/lib/components/eye-test-audit/select-drop/select-drop.component.scss +144 -0
- package/src/lib/components/eye-test-audit/select-drop/select-drop.component.spec.ts +23 -0
- package/src/lib/components/eye-test-audit/select-drop/select-drop.component.ts +152 -0
- package/src/lib/components/eye-test-audit/services/eye-test-audit.service.spec.ts +16 -0
- package/src/lib/components/eye-test-audit/services/eye-test-audit.service.ts +190 -0
- package/src/lib/components/flag-layout/flag-layout.component.html +1 -0
- package/src/lib/components/flag-layout/flag-layout.component.scss +0 -0
- package/src/lib/components/flag-layout/flag-layout.component.spec.ts +23 -0
- package/src/lib/components/flag-layout/flag-layout.component.ts +10 -0
- package/src/lib/components/flags/flags.component.html +473 -0
- package/src/lib/components/flags/flags.component.scss +86 -0
- package/src/lib/components/flags/flags.component.spec.ts +23 -0
- package/src/lib/components/flags/flags.component.ts +280 -0
- package/{lib/components/flags/flags.interface.d.ts → src/lib/components/flags/flags.interface.ts} +73 -65
- package/src/lib/components/flags-info/flags-info.component.html +6012 -0
- package/src/lib/components/flags-info/flags-info.component.scss +278 -0
- package/src/lib/components/flags-info/flags-info.component.spec.ts +23 -0
- package/src/lib/components/flags-info/flags-info.component.ts +490 -0
- package/src/lib/components/flags-info/flags-info.interface.ts +441 -0
- package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.html +1 -0
- package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.scss +4 -0
- package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.ts +78 -0
- package/src/lib/components/flags-new/flags-new.component.html +904 -0
- package/src/lib/components/flags-new/flags-new.component.scss +121 -0
- package/src/lib/components/flags-new/flags-new.component.spec.ts +23 -0
- package/src/lib/components/flags-new/flags-new.component.ts +357 -0
- package/{lib/components/flags-new/flags-new.interface.d.ts → src/lib/components/flags-new/flags-new.interface.ts} +90 -81
- package/src/lib/components/gallery/gallery.component.html +3660 -0
- package/src/lib/components/gallery/gallery.component.scss +930 -0
- package/src/lib/components/gallery/gallery.component.ts +3527 -0
- package/src/lib/components/group-select/group-select.component.html +44 -0
- package/src/lib/components/group-select/group-select.component.scss +144 -0
- package/src/lib/components/group-select/group-select.component.spec.ts +23 -0
- package/src/lib/components/group-select/group-select.component.ts +145 -0
- package/src/lib/components/image-popup/image-popup.component.html +11 -0
- package/src/lib/components/image-popup/image-popup.component.scss +5 -0
- package/src/lib/components/image-popup/image-popup.component.ts +18 -0
- package/src/lib/components/lib/custom-select/custom-select.component.html +42 -0
- package/src/lib/components/lib/custom-select/custom-select.component.scss +131 -0
- package/src/lib/components/lib/custom-select/custom-select.component.spec.ts +23 -0
- package/src/lib/components/lib/custom-select/custom-select.component.ts +151 -0
- package/src/lib/components/manage-task/manage-task.component.html +265 -0
- package/src/lib/components/manage-task/manage-task.component.scss +69 -0
- package/src/lib/components/manage-task/manage-task.component.spec.ts +23 -0
- package/src/lib/components/manage-task/manage-task.component.ts +267 -0
- package/src/lib/components/managechecklist/managechecklist.component.html +176 -0
- package/src/lib/components/managechecklist/managechecklist.component.scss +43 -0
- package/src/lib/components/managechecklist/managechecklist.component.spec.ts +23 -0
- package/src/lib/components/managechecklist/managechecklist.component.ts +176 -0
- package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.html +46 -0
- package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.scss +181 -0
- package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.spec.ts +23 -0
- package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.ts +221 -0
- package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.html +36 -0
- package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.scss +89 -0
- package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.spec.ts +23 -0
- package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.ts +118 -0
- package/src/lib/components/orders/orders.component.html +203 -0
- package/src/lib/components/orders/orders.component.scss +180 -0
- package/src/lib/components/orders/orders.component.spec.ts +25 -0
- package/src/lib/components/orders/orders.component.ts +197 -0
- package/src/lib/components/pagination/pagination.component.html +28 -0
- package/src/lib/components/pagination/pagination.component.scss +6 -0
- package/src/lib/components/pagination/pagination.component.spec.ts +23 -0
- package/src/lib/components/pagination/pagination.component.ts +54 -0
- package/src/lib/components/reactive-select/reactive-select.component.html +18 -0
- package/src/lib/components/reactive-select/reactive-select.component.scss +48 -0
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +23 -0
- package/src/lib/components/reactive-select/reactive-select.component.ts +104 -0
- package/src/lib/components/reports/date-picker/date-picker.component.html +54 -0
- package/src/lib/components/reports/date-picker/date-picker.component.scss +156 -0
- package/src/lib/components/reports/date-picker/date-picker.component.spec.ts +23 -0
- package/src/lib/components/reports/date-picker/date-picker.component.ts +60 -0
- package/src/lib/components/reports/reports.component.html +225 -0
- package/src/lib/components/reports/reports.component.scss +69 -0
- package/src/lib/components/reports/reports.component.spec.ts +23 -0
- package/src/lib/components/reports/reports.component.ts +334 -0
- package/{lib/components/reports/reports.interface.d.ts → src/lib/components/reports/reports.interface.ts} +50 -46
- package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.html +1 -0
- package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.scss +15 -0
- package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.spec.ts +23 -0
- package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.ts +31 -0
- package/src/lib/components/task/task.component.html +322 -0
- package/src/lib/components/task/task.component.scss +169 -0
- package/src/lib/components/task/task.component.spec.ts +23 -0
- package/src/lib/components/task/task.component.ts +340 -0
- package/src/lib/components/task-configure/task-configure.component.html +737 -0
- package/src/lib/components/task-configure/task-configure.component.scss +569 -0
- package/src/lib/components/task-configure/task-configure.component.spec.ts +23 -0
- package/src/lib/components/task-configure/task-configure.component.ts +1603 -0
- package/src/lib/components/task-configure/task-configure.interface.ts +138 -0
- package/src/lib/components/task-info/task-info.component.html +390 -0
- package/src/lib/components/task-info/task-info.component.scss +56 -0
- package/src/lib/components/task-info/task-info.component.spec.ts +23 -0
- package/src/lib/components/task-info/task-info.component.ts +400 -0
- package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.html +141 -0
- package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.scss +460 -0
- package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.spec.ts +23 -0
- package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.ts +202 -0
- package/src/lib/components/task-layout/task-layout.component.html +1 -0
- package/src/lib/components/task-layout/task-layout.component.scss +0 -0
- package/src/lib/components/task-layout/task-layout.component.spec.ts +23 -0
- package/src/lib/components/task-layout/task-layout.component.ts +10 -0
- package/src/lib/components/task-logs/task-logs.component.html +97 -0
- package/src/lib/components/task-logs/task-logs.component.scss +301 -0
- package/src/lib/components/task-logs/task-logs.component.spec.ts +23 -0
- package/src/lib/components/task-logs/task-logs.component.ts +80 -0
- package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.html +84 -0
- package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.scss +229 -0
- package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.spec.ts +23 -0
- package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.ts +111 -0
- package/src/lib/components/trax-store/trax-store.component.html +78 -0
- package/src/lib/components/trax-store/trax-store.component.scss +134 -0
- package/src/lib/components/trax-store/trax-store.component.spec.ts +23 -0
- package/src/lib/components/trax-store/trax-store.component.ts +172 -0
- package/src/lib/components/traxpopup/traxpopup.component.html +130 -0
- package/src/lib/components/traxpopup/traxpopup.component.scss +225 -0
- package/src/lib/components/traxpopup/traxpopup.component.spec.ts +23 -0
- package/src/lib/components/traxpopup/traxpopup.component.ts +71 -0
- package/src/lib/services/trax.service.spec.ts +16 -0
- package/src/lib/services/trax.service.ts +789 -0
- package/src/lib/tango-analyse-trax-routing.module.ts +151 -0
- package/src/lib/tango-analyse-trax.module.ts +140 -0
- package/{public-api.d.ts → src/public-api.ts} +6 -2
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2022/lib/components/action-centre/action-centre.component.mjs +0 -288
- package/esm2022/lib/components/activity-log/activity-log.component.mjs +0 -150
- package/esm2022/lib/components/activity-log-v2/activity-log-v2.component.mjs +0 -502
- package/esm2022/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.mjs +0 -114
- package/esm2022/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.mjs +0 -24
- package/esm2022/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.mjs +0 -126
- package/esm2022/lib/components/add-checklist/add-checklist.component.mjs +0 -2352
- package/esm2022/lib/components/add-checklist/checklist-popup/checklist-popup.component.mjs +0 -612
- package/esm2022/lib/components/add-checklist/counter/counter.component.mjs +0 -138
- package/esm2022/lib/components/add-multitask/add-multitask.component.mjs +0 -604
- package/esm2022/lib/components/add-multitask/ascending-validator.mjs +0 -11
- package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +0 -297
- package/esm2022/lib/components/add-multitask/create-task.data.mjs +0 -372
- package/esm2022/lib/components/add-multitask/create-task.interface.mjs +0 -2
- package/esm2022/lib/components/add-multitask/unique-string-validator.mjs +0 -10
- package/esm2022/lib/components/add-multitask/whitespace-validator.mjs +0 -10
- package/esm2022/lib/components/add-task/add-task.component.mjs +0 -561
- package/esm2022/lib/components/add-task/ascending-validator.mjs +0 -11
- package/esm2022/lib/components/add-task/create-task.data.mjs +0 -372
- package/esm2022/lib/components/add-task/create-task.interface.mjs +0 -2
- package/esm2022/lib/components/add-task/unique-string-validator.mjs +0 -10
- package/esm2022/lib/components/add-task/whitespace-validator.mjs +0 -10
- package/esm2022/lib/components/approval-popup/approval-popup.component.mjs +0 -30
- package/esm2022/lib/components/checklist/checklist.component.mjs +0 -327
- package/esm2022/lib/components/checklist-configure/assign/assign.component.mjs +0 -912
- package/esm2022/lib/components/checklist-configure/checklist-configure.component.mjs +0 -4161
- package/esm2022/lib/components/checklistlayout/checklistlayout.component.mjs +0 -44
- package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +0 -120
- package/esm2022/lib/components/create-task/create-task.component.mjs +0 -585
- package/esm2022/lib/components/create-task/create-task.data.mjs +0 -372
- package/esm2022/lib/components/create-task/create-task.interface.mjs +0 -2
- package/esm2022/lib/components/create-task/validators/ascending-validator.mjs +0 -11
- package/esm2022/lib/components/create-task/validators/unique-string-validator.mjs +0 -10
- package/esm2022/lib/components/create-task/validators/whitespace-validator.mjs +0 -10
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +0 -240
- package/esm2022/lib/components/dashboard/dashboard.component.mjs +0 -532
- package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +0 -741
- package/esm2022/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.mjs +0 -155
- package/esm2022/lib/components/dashboard-layout/dashboard-layout.component.mjs +0 -12
- package/esm2022/lib/components/disabled-select/disabled-select.component.mjs +0 -158
- package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +0 -266
- package/esm2022/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.mjs +0 -105
- package/esm2022/lib/components/eye-test-audit/custom-select/custom-select.component.mjs +0 -240
- package/esm2022/lib/components/eye-test-audit/eye-test/eye-test.component.mjs +0 -1733
- package/esm2022/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.mjs +0 -24
- package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.mjs +0 -34
- package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.mjs +0 -27
- package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.mjs +0 -71
- package/esm2022/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.mjs +0 -823
- package/esm2022/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.mjs +0 -412
- package/esm2022/lib/components/eye-test-audit/group-select/group-select.component.mjs +0 -157
- package/esm2022/lib/components/eye-test-audit/reactive-select/reactive-select.component.mjs +0 -105
- package/esm2022/lib/components/eye-test-audit/select-drop/select-drop.component.mjs +0 -162
- package/esm2022/lib/components/eye-test-audit/services/eye-test-audit.service.mjs +0 -166
- package/esm2022/lib/components/flag-layout/flag-layout.component.mjs +0 -12
- package/esm2022/lib/components/flags/flags.component.mjs +0 -263
- package/esm2022/lib/components/flags/flags.interface.mjs +0 -2
- package/esm2022/lib/components/flags-info/flags-info.component.mjs +0 -452
- package/esm2022/lib/components/flags-info/flags-info.interface.mjs +0 -2
- package/esm2022/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.mjs +0 -71
- package/esm2022/lib/components/flags-new/flags-new.component.mjs +0 -335
- package/esm2022/lib/components/flags-new/flags-new.interface.mjs +0 -2
- package/esm2022/lib/components/gallery/gallery.component.mjs +0 -3402
- package/esm2022/lib/components/group-select/group-select.component.mjs +0 -155
- package/esm2022/lib/components/image-popup/image-popup.component.mjs +0 -25
- package/esm2022/lib/components/lib/custom-select/custom-select.component.mjs +0 -158
- package/esm2022/lib/components/manage-task/manage-task.component.mjs +0 -264
- package/esm2022/lib/components/managechecklist/managechecklist.component.mjs +0 -186
- package/esm2022/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.mjs +0 -229
- package/esm2022/lib/components/multi-date-datepicker/multi-date-datepicker.component.mjs +0 -124
- package/esm2022/lib/components/orders/orders.component.mjs +0 -171
- package/esm2022/lib/components/pagination/pagination.component.mjs +0 -62
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +0 -108
- package/esm2022/lib/components/reports/date-picker/date-picker.component.mjs +0 -60
- package/esm2022/lib/components/reports/reports.component.mjs +0 -300
- package/esm2022/lib/components/reports/reports.interface.mjs +0 -2
- package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +0 -32
- package/esm2022/lib/components/task/task.component.mjs +0 -341
- package/esm2022/lib/components/task-configure/task-configure.component.mjs +0 -1532
- package/esm2022/lib/components/task-configure/task-configure.interface.mjs +0 -2
- package/esm2022/lib/components/task-info/task-info.component.mjs +0 -375
- package/esm2022/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.mjs +0 -208
- package/esm2022/lib/components/task-layout/task-layout.component.mjs +0 -12
- package/esm2022/lib/components/task-logs/task-logs.component.mjs +0 -104
- package/esm2022/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.mjs +0 -107
- package/esm2022/lib/components/trax-store/trax-store.component.mjs +0 -179
- package/esm2022/lib/components/traxpopup/traxpopup.component.mjs +0 -70
- package/esm2022/lib/services/trax.service.mjs +0 -559
- package/esm2022/lib/tango-analyse-trax-routing.module.mjs +0 -153
- package/esm2022/lib/tango-analyse-trax.module.mjs +0 -221
- package/esm2022/public-api.mjs +0 -6
- package/esm2022/tango-app-ui-analyse-trax.mjs +0 -5
- package/fesm2022/tango-app-ui-analyse-trax.mjs +0 -28896
- package/fesm2022/tango-app-ui-analyse-trax.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/action-centre/action-centre.component.d.ts +0 -68
- package/lib/components/activity-log/activity-log.component.d.ts +0 -39
- package/lib/components/activity-log-v2/activity-log-v2.component.d.ts +0 -78
- package/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.d.ts +0 -24
- package/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.d.ts +0 -9
- package/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.d.ts +0 -34
- package/lib/components/add-checklist/add-checklist.component.d.ts +0 -121
- package/lib/components/add-checklist/checklist-popup/checklist-popup.component.d.ts +0 -45
- package/lib/components/add-checklist/counter/counter.component.d.ts +0 -29
- package/lib/components/add-multitask/add-multitask.component.d.ts +0 -102
- package/lib/components/add-multitask/ascending-validator.d.ts +0 -2
- package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +0 -45
- package/lib/components/add-multitask/create-task.data.d.ts +0 -293
- package/lib/components/add-multitask/create-task.interface.d.ts +0 -159
- package/lib/components/add-multitask/unique-string-validator.d.ts +0 -2
- package/lib/components/add-multitask/whitespace-validator.d.ts +0 -2
- package/lib/components/add-task/add-task.component.d.ts +0 -89
- package/lib/components/add-task/ascending-validator.d.ts +0 -2
- package/lib/components/add-task/create-task.data.d.ts +0 -293
- package/lib/components/add-task/create-task.interface.d.ts +0 -161
- package/lib/components/add-task/unique-string-validator.d.ts +0 -2
- package/lib/components/add-task/whitespace-validator.d.ts +0 -2
- package/lib/components/approval-popup/approval-popup.component.d.ts +0 -14
- package/lib/components/checklist/checklist.component.d.ts +0 -40
- package/lib/components/checklist-configure/assign/assign.component.d.ts +0 -105
- package/lib/components/checklist-configure/checklist-configure.component.d.ts +0 -325
- package/lib/components/checklistlayout/checklistlayout.component.d.ts +0 -15
- package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +0 -28
- package/lib/components/create-task/create-task.component.d.ts +0 -76
- package/lib/components/create-task/create-task.data.d.ts +0 -293
- package/lib/components/create-task/create-task.interface.d.ts +0 -163
- package/lib/components/create-task/validators/ascending-validator.d.ts +0 -2
- package/lib/components/create-task/validators/unique-string-validator.d.ts +0 -2
- package/lib/components/create-task/validators/whitespace-validator.d.ts +0 -2
- package/lib/components/custom-select/custom-select.component.d.ts +0 -35
- package/lib/components/dashboard/dashboard.component.d.ts +0 -80
- package/lib/components/dashboard-info/dashboard-info.component.d.ts +0 -117
- package/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.d.ts +0 -41
- package/lib/components/dashboard-layout/dashboard-layout.component.d.ts +0 -5
- package/lib/components/disabled-select/disabled-select.component.d.ts +0 -34
- package/lib/components/export-gallery/export-gallery.component.d.ts +0 -44
- package/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.d.ts +0 -26
- package/lib/components/eye-test-audit/custom-select/custom-select.component.d.ts +0 -35
- package/lib/components/eye-test-audit/eye-test/eye-test.component.d.ts +0 -218
- package/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.d.ts +0 -12
- package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.d.ts +0 -7
- package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.d.ts +0 -11
- package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.d.ts +0 -21
- package/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.d.ts +0 -129
- package/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.d.ts +0 -86
- package/lib/components/eye-test-audit/group-select/group-select.component.d.ts +0 -33
- package/lib/components/eye-test-audit/reactive-select/reactive-select.component.d.ts +0 -32
- package/lib/components/eye-test-audit/select-drop/select-drop.component.d.ts +0 -33
- package/lib/components/eye-test-audit/services/eye-test-audit.service.d.ts +0 -47
- package/lib/components/flag-layout/flag-layout.component.d.ts +0 -5
- package/lib/components/flags/flags.component.d.ts +0 -52
- package/lib/components/flags-info/flags-info.component.d.ts +0 -73
- package/lib/components/flags-info/flags-info.interface.d.ts +0 -430
- package/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.d.ts +0 -13
- package/lib/components/flags-new/flags-new.component.d.ts +0 -60
- package/lib/components/gallery/gallery.component.d.ts +0 -261
- package/lib/components/group-select/group-select.component.d.ts +0 -33
- package/lib/components/image-popup/image-popup.component.d.ts +0 -11
- package/lib/components/lib/custom-select/custom-select.component.d.ts +0 -33
- package/lib/components/manage-task/manage-task.component.d.ts +0 -47
- package/lib/components/managechecklist/managechecklist.component.d.ts +0 -33
- package/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.d.ts +0 -40
- package/lib/components/multi-date-datepicker/multi-date-datepicker.component.d.ts +0 -27
- package/lib/components/orders/orders.component.d.ts +0 -38
- package/lib/components/pagination/pagination.component.d.ts +0 -16
- package/lib/components/reactive-select/reactive-select.component.d.ts +0 -32
- package/lib/components/reports/date-picker/date-picker.component.d.ts +0 -23
- package/lib/components/reports/reports.component.d.ts +0 -55
- package/lib/components/tango-analyse-trax/tango-analyse-trax.component.d.ts +0 -14
- package/lib/components/task/task.component.d.ts +0 -70
- package/lib/components/task-configure/task-configure.component.d.ts +0 -142
- package/lib/components/task-configure/task-configure.interface.d.ts +0 -128
- package/lib/components/task-info/task-info.component.d.ts +0 -76
- package/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.d.ts +0 -61
- package/lib/components/task-layout/task-layout.component.d.ts +0 -5
- package/lib/components/task-logs/task-logs.component.d.ts +0 -27
- package/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.d.ts +0 -26
- package/lib/components/trax-store/trax-store.component.d.ts +0 -45
- package/lib/components/traxpopup/traxpopup.component.d.ts +0 -24
- package/lib/services/trax.service.d.ts +0 -175
- package/lib/tango-analyse-trax-routing.module.d.ts +0 -7
- package/lib/tango-analyse-trax.module.d.ts +0 -68
|
@@ -0,0 +1,569 @@
|
|
|
1
|
+
.c-card {
|
|
2
|
+
padding: 24px;
|
|
3
|
+
background: #FFF;
|
|
4
|
+
border-radius: 16px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.plain-input {
|
|
8
|
+
border: none;
|
|
9
|
+
outline: none;
|
|
10
|
+
background: transparent;
|
|
11
|
+
padding: 0;
|
|
12
|
+
margin: 0;
|
|
13
|
+
width: 100%;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
color: var(--black, #101828);
|
|
16
|
+
text-overflow: ellipsis;
|
|
17
|
+
font-family: Inter;
|
|
18
|
+
font-size: 18px;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
font-weight: 500;
|
|
21
|
+
line-height: 28px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.plain-input:focus {
|
|
25
|
+
border-radius: 0 !important;
|
|
26
|
+
border: white !important;
|
|
27
|
+
outline: none !important;
|
|
28
|
+
box-shadow: none !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.checklist-name {
|
|
32
|
+
font-size: 20px;
|
|
33
|
+
font-weight: 600;
|
|
34
|
+
line-height: 28px;
|
|
35
|
+
text-align: left;
|
|
36
|
+
color: #667085 !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.checklist-desc {
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
line-height: 18px;
|
|
43
|
+
text-align: left;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
:host::ng-deep {
|
|
47
|
+
.date-picker {
|
|
48
|
+
.md-drppicker .btn {
|
|
49
|
+
line-height: 10px !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.daterangepicker-input+.ngx-daterangepicker-material .applyBtn {
|
|
53
|
+
display: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.md-drppicker.drops-down-right.ltr.show-ranges.shown {
|
|
57
|
+
top: 65px !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.md-drppicker.drops-down-right.ltr.double.show-ranges.shown {
|
|
61
|
+
top: 65px !important;
|
|
62
|
+
right: -475px !important;
|
|
63
|
+
left: unset !important;
|
|
64
|
+
height: 400px !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.md-drppicker .btn {
|
|
68
|
+
border-radius: 8px !important;
|
|
69
|
+
border: 1px solid var(--Primary-600, #00A3FF) !important;
|
|
70
|
+
background: var(--Primary-600, #00A3FF) !important;
|
|
71
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
|
|
72
|
+
color: var(--White, #FFF) !important;
|
|
73
|
+
font-size: 14px !important;
|
|
74
|
+
font-weight: 600 !important;
|
|
75
|
+
line-height: 20px;
|
|
76
|
+
text-transform: capitalize;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.md-drppicker .ranges ul li button {
|
|
80
|
+
padding: 12px 16px;
|
|
81
|
+
width: 160px;
|
|
82
|
+
color: var(--Gray-700, #344054);
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
font-weight: 400;
|
|
85
|
+
line-height: 20px;
|
|
86
|
+
background: none;
|
|
87
|
+
border: none;
|
|
88
|
+
text-align: left;
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.md-drppicker td.active,
|
|
93
|
+
.md-drppicker td.active:hover {
|
|
94
|
+
background-color: #029cf4 !important;
|
|
95
|
+
border-radius: 20px !important;
|
|
96
|
+
color: var(--White, #FFF) !important;
|
|
97
|
+
text-align: center !important;
|
|
98
|
+
font-size: 14px !important;
|
|
99
|
+
font-weight: 500 !important;
|
|
100
|
+
line-height: 20px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.md-drppicker.ltr .ranges {
|
|
104
|
+
float: left;
|
|
105
|
+
margin-top: 10px !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.md-drppicker td.in-range {
|
|
109
|
+
background: var(--Primary-50, #EAF8FF);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.md-drppicker .ranges ul li button.active {
|
|
113
|
+
background: var(--Primary-50, #EAF8FF) !important;
|
|
114
|
+
border-radius: 8px !important;
|
|
115
|
+
color: var(--Primary-700, #009BF3);
|
|
116
|
+
font-size: 14px !important;
|
|
117
|
+
font-weight: 500 !important;
|
|
118
|
+
line-height: 20px !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
table th,
|
|
122
|
+
table td {
|
|
123
|
+
width: 40px !important;
|
|
124
|
+
height: 40px !important;
|
|
125
|
+
padding: 10px 8px !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.md-drppicker td.available.prev,
|
|
129
|
+
.md-drppicker th.available.prev {
|
|
130
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMy43IDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMuNyA2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0zLjcsMC43TDEuNCwzbDIuMywyLjNMMyw2TDAsM2wzLTNMMy43LDAuN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) !important;
|
|
131
|
+
background-repeat: no-repeat !important;
|
|
132
|
+
background-size: 0.5em !important;
|
|
133
|
+
background-position: center !important;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.md-drppicker td.available.next,
|
|
137
|
+
.md-drppicker th.available.next {
|
|
138
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMy43IDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMuNyA2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0zLjcsMC43TDEuNCwzbDIuMywyLjNMMyw2TDAsM2wzLTNMMy43LDAuN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) !important;
|
|
139
|
+
background-repeat: no-repeat !important;
|
|
140
|
+
background-size: 0.5em !important;
|
|
141
|
+
background-position: center !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
table th {
|
|
145
|
+
border-bottom: 0px solid var(--Gray-200, #EAECF0) !important;
|
|
146
|
+
background: transparent !important;
|
|
147
|
+
color: var(--Gray-700, #344054) !important;
|
|
148
|
+
text-align: center;
|
|
149
|
+
font-size: 16px !important;
|
|
150
|
+
font-weight: 500 !important;
|
|
151
|
+
line-height: 24px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.md-drppicker td.available.invalid-date {
|
|
155
|
+
text-decoration: line-through;
|
|
156
|
+
pointer-events: none;
|
|
157
|
+
color: darkgray;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.md-drppicker td.available.today:not(.invalid-date) {
|
|
161
|
+
text-decoration: unset;
|
|
162
|
+
pointer-events: unset;
|
|
163
|
+
color: unset;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.md-drppicker .btn.btn-default {
|
|
167
|
+
border-radius: 8px !important;
|
|
168
|
+
border: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
169
|
+
background: var(--White, #FFF) !important;
|
|
170
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
|
|
171
|
+
color: var(--Gray-700, #344054) !important;
|
|
172
|
+
font-size: 14px !important;
|
|
173
|
+
font-weight: 600 !important;
|
|
174
|
+
line-height: 20px;
|
|
175
|
+
text-transform: capitalize;
|
|
176
|
+
margin-right: 10px !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.md-drppicker td.available.invalid-date {
|
|
180
|
+
text-decoration: line-through;
|
|
181
|
+
pointer-events: none;
|
|
182
|
+
color: darkgray;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.md-drppicker td.available.today:not(.invalid-date) {
|
|
186
|
+
text-decoration: unset;
|
|
187
|
+
pointer-events: unset;
|
|
188
|
+
color: unset;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.assignpadding {
|
|
196
|
+
padding: 0px 40px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.uploadpadding {
|
|
200
|
+
padding: 0px 20% 9px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.orposition{
|
|
204
|
+
top:0px;
|
|
205
|
+
left: 50%;
|
|
206
|
+
transform: translate(-50%,-50%);
|
|
207
|
+
text-align: center;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.storetext {
|
|
211
|
+
color: var(--Gray-500, #667085);
|
|
212
|
+
font-size: 14px;
|
|
213
|
+
font-weight: 500;
|
|
214
|
+
line-height: 20px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.storeAssign {
|
|
218
|
+
color: var(--Gray-700, #344054);
|
|
219
|
+
font-family: Inter;
|
|
220
|
+
font-size: 14px;
|
|
221
|
+
font-style: normal;
|
|
222
|
+
font-weight: 500;
|
|
223
|
+
line-height: 20px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.storeAssign{
|
|
227
|
+
a:hover{
|
|
228
|
+
text-decoration: underline !important;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.border-primary{
|
|
233
|
+
border: 1px dashed var(--Primary-500, #33B5FF) !important;
|
|
234
|
+
background: var(--Primary-25, #F6FCFF) !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.template-dropdown{
|
|
238
|
+
background: var(--Gray-100, #F2F4F7);
|
|
239
|
+
color: var(--Gray-700, #344054);
|
|
240
|
+
font-size: 14px;
|
|
241
|
+
font-weight: 500;
|
|
242
|
+
line-height: 20px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.uploadtext {
|
|
246
|
+
color: var(--gray-700, #344054);
|
|
247
|
+
font-family: 'Inter';
|
|
248
|
+
font-size: 16px;
|
|
249
|
+
font-style: normal;
|
|
250
|
+
font-weight: 600;
|
|
251
|
+
line-height: 24px;
|
|
252
|
+
/* 150% */
|
|
253
|
+
text-transform: capitalize;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.subtext {
|
|
257
|
+
color: var(--gray-500, #667085);
|
|
258
|
+
font-family: 'Inter';
|
|
259
|
+
font-size: 14px;
|
|
260
|
+
font-weight: 400;
|
|
261
|
+
line-height: 20px;
|
|
262
|
+
align-items: center;
|
|
263
|
+
gap: 8px;
|
|
264
|
+
align-self: stretch;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.selectstore {
|
|
268
|
+
color: var(--primary-700, #009BF3);
|
|
269
|
+
font-family: 'Inter';
|
|
270
|
+
font-size: 14px;
|
|
271
|
+
font-style: normal;
|
|
272
|
+
font-weight: 600;
|
|
273
|
+
line-height: 20px;
|
|
274
|
+
/* 142.857% */
|
|
275
|
+
text-decoration-line: underline;
|
|
276
|
+
text-transform: capitalize;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.sub {
|
|
280
|
+
color: var(--gray-700, #101828);
|
|
281
|
+
font-family: 'Inter';
|
|
282
|
+
font-size: 16px;
|
|
283
|
+
font-style: normal;
|
|
284
|
+
font-weight: 500;
|
|
285
|
+
line-height: 24px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.subopen {
|
|
289
|
+
color: var(--black, #101828);
|
|
290
|
+
font-family: 'Inter';
|
|
291
|
+
font-size: 16px;
|
|
292
|
+
font-style: normal;
|
|
293
|
+
font-weight: 500;
|
|
294
|
+
line-height: 24px;
|
|
295
|
+
/* 150% */
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.headeralign {
|
|
299
|
+
color: var(--gray-500, #667085);
|
|
300
|
+
font-family: 'Inter';
|
|
301
|
+
font-size: 12px;
|
|
302
|
+
font-style: normal;
|
|
303
|
+
font-weight: 500;
|
|
304
|
+
line-height: 18px;
|
|
305
|
+
/* 150% */
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.selected-radio{
|
|
309
|
+
width: 1.5rem !important;
|
|
310
|
+
height: 1.5rem !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.subtitle {
|
|
314
|
+
font-family: 'Inter';
|
|
315
|
+
font-size: 14px;
|
|
316
|
+
font-weight: 400;
|
|
317
|
+
line-height: 20px;
|
|
318
|
+
letter-spacing: 0em;
|
|
319
|
+
text-align: left;
|
|
320
|
+
color: #667085;
|
|
321
|
+
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.form-control.form-control-solid {
|
|
325
|
+
display: flex;
|
|
326
|
+
padding: 11px 14px;
|
|
327
|
+
align-items: center;
|
|
328
|
+
gap: 8px;
|
|
329
|
+
align-self: stretch;
|
|
330
|
+
border-radius: 8px;
|
|
331
|
+
border: 1px solid var(--gray-500, #D0D5DD);
|
|
332
|
+
background: var(--white, #FFF);
|
|
333
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.outer-container {
|
|
337
|
+
position: relative;
|
|
338
|
+
|
|
339
|
+
.form-control {
|
|
340
|
+
padding-top: 0;
|
|
341
|
+
padding-bottom: 0;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.input-container {
|
|
345
|
+
border: 1px solid black;
|
|
346
|
+
height: 100%;
|
|
347
|
+
width: 100%;
|
|
348
|
+
display: flex;
|
|
349
|
+
flex-wrap: wrap;
|
|
350
|
+
border: 1px solid #D0D5DD;
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
input {
|
|
354
|
+
all: unset;
|
|
355
|
+
flex: 1;
|
|
356
|
+
min-width: 50px;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.chip {
|
|
360
|
+
border-radius: 20px;
|
|
361
|
+
margin: 10px 0px 10px 10px;
|
|
362
|
+
padding: 3px 10px;
|
|
363
|
+
border-radius: 16px;
|
|
364
|
+
background: var(--Gray-100, #F2F4F7);
|
|
365
|
+
color: var(--Gray-700, #344054);
|
|
366
|
+
font-family: Inter;
|
|
367
|
+
font-size: 14px;
|
|
368
|
+
font-weight: 500;
|
|
369
|
+
line-height: 20px;
|
|
370
|
+
|
|
371
|
+
.initials {
|
|
372
|
+
color: var(--Primary-600, #00A3FF);
|
|
373
|
+
font-size: 12px;
|
|
374
|
+
font-weight: 500;
|
|
375
|
+
line-height: 18px;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.chip:nth-child(1) {
|
|
380
|
+
margin-left: 0;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.toggle-card {
|
|
387
|
+
padding: 16px;
|
|
388
|
+
display: flex;
|
|
389
|
+
align-items: center;
|
|
390
|
+
border-radius: 8px;
|
|
391
|
+
border: 1px solid #EAECF0;
|
|
392
|
+
background: #FFF;
|
|
393
|
+
|
|
394
|
+
.header {
|
|
395
|
+
color: #344054;
|
|
396
|
+
font-size: 16px;
|
|
397
|
+
font-weight: 500;
|
|
398
|
+
line-height: 24px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.desc {
|
|
402
|
+
color: var(--Gray-500, #667085);
|
|
403
|
+
font-size: 14px;
|
|
404
|
+
font-weight: 400;
|
|
405
|
+
line-height: 20px;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
&.selected {
|
|
409
|
+
border: 1px solid #6BCAFF;
|
|
410
|
+
|
|
411
|
+
.header {
|
|
412
|
+
color: #008EDF;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.desc {
|
|
416
|
+
color: #00A3FF;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.sub-txt {
|
|
422
|
+
color: #667085;
|
|
423
|
+
font-size: 14px;
|
|
424
|
+
font-weight: 400;
|
|
425
|
+
line-height: 20px;
|
|
426
|
+
gap: 8px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.cstm-blu-btn {
|
|
430
|
+
padding: 8px 14px;
|
|
431
|
+
border-radius: 8px;
|
|
432
|
+
border: 1px solid #EAF8FF;
|
|
433
|
+
background: #EAF8FF;
|
|
434
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
435
|
+
color: #009BF3;
|
|
436
|
+
font-size: 14px;
|
|
437
|
+
font-weight: 600;
|
|
438
|
+
line-height: 20px;
|
|
439
|
+
cursor: pointer;
|
|
440
|
+
display: flex;
|
|
441
|
+
align-items: center;
|
|
442
|
+
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.schedule-text {
|
|
446
|
+
color: #344054;
|
|
447
|
+
font-size: 16px;
|
|
448
|
+
font-weight: 500;
|
|
449
|
+
line-height: 24px;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
input[type='checkbox'].c-checkbox {
|
|
453
|
+
width: 16px !important;
|
|
454
|
+
height: 16px !important;
|
|
455
|
+
margin: 5px;
|
|
456
|
+
border-radius: 4px !important;
|
|
457
|
+
-webkit-appearance: none;
|
|
458
|
+
-moz-appearance: none;
|
|
459
|
+
-o-appearance: none;
|
|
460
|
+
appearance: none;
|
|
461
|
+
outline: 1px solid var(--gray-600, #D0D5DD) !important;
|
|
462
|
+
box-shadow: none;
|
|
463
|
+
font-size: 0.5em;
|
|
464
|
+
text-align: center;
|
|
465
|
+
line-height: 1em;
|
|
466
|
+
background: white;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
input[type='checkbox'].c-checkbox:checked {
|
|
470
|
+
outline: 1px solid var(--primary-600, #00A3FF) !important;
|
|
471
|
+
background-color: var(--primary-50, #EAF8FF);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
input[type='checkbox'].c-checkbox:checked:after {
|
|
475
|
+
content: '';
|
|
476
|
+
transform: rotate(45deg);
|
|
477
|
+
border-bottom: 2px solid #00A3FF;
|
|
478
|
+
border-right: 2px solid #00A3FF;
|
|
479
|
+
display: inline-block;
|
|
480
|
+
width: 0.5em;
|
|
481
|
+
padding-left: 3px;
|
|
482
|
+
padding-top: 10px;
|
|
483
|
+
padding-right: 0px;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.reminder-header {
|
|
487
|
+
color: #101828;
|
|
488
|
+
font-size: 20px;
|
|
489
|
+
font-weight: 600;
|
|
490
|
+
line-height: 30px;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.reminder-description {
|
|
494
|
+
color: #344054;
|
|
495
|
+
font-size: 14px;
|
|
496
|
+
font-weight: 500;
|
|
497
|
+
line-height: 20px;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.reminder-sub {
|
|
501
|
+
color: #101828;
|
|
502
|
+
font-size: 16px;
|
|
503
|
+
font-weight: 500;
|
|
504
|
+
line-height: 24px;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.table-header{
|
|
508
|
+
color: var(--Gray-800, #1D2939);
|
|
509
|
+
font-size: 16px;
|
|
510
|
+
font-weight: 600;
|
|
511
|
+
line-height: 24px;
|
|
512
|
+
}
|
|
513
|
+
.text-error{
|
|
514
|
+
color: var(--Error-700, #B42318) !important;
|
|
515
|
+
font-size: 14px;
|
|
516
|
+
font-weight: 500;
|
|
517
|
+
line-height: 20px;
|
|
518
|
+
}
|
|
519
|
+
.excel-error{
|
|
520
|
+
color: var(--Error-600, #D92D20);
|
|
521
|
+
font-size: 14px;
|
|
522
|
+
font-weight: 500;
|
|
523
|
+
line-height: 20px;
|
|
524
|
+
}
|
|
525
|
+
.error-heading{
|
|
526
|
+
color: var(--Error-600, #D92D20);
|
|
527
|
+
font-size: 20px;
|
|
528
|
+
font-weight: 500;
|
|
529
|
+
line-height: 30px;
|
|
530
|
+
}
|
|
531
|
+
.border-error{
|
|
532
|
+
border: 1px solid var(--Error-300, #FDA29B) !important;
|
|
533
|
+
background: var(--Error-25, #FFFBFA) !important;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.popup-card{
|
|
537
|
+
border-radius: 6px;
|
|
538
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
539
|
+
background: #FFF;
|
|
540
|
+
box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.nav {
|
|
544
|
+
display: flex;
|
|
545
|
+
align-items: center;
|
|
546
|
+
gap: 16px;
|
|
547
|
+
flex: 1 0 0;
|
|
548
|
+
align-self: stretch;
|
|
549
|
+
--bs-nav-link-color: none;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.nav-item{
|
|
553
|
+
.nav-link{
|
|
554
|
+
color: var(--Gray-500, #667085);
|
|
555
|
+
font-size: 16px;
|
|
556
|
+
font-weight: 500;
|
|
557
|
+
}
|
|
558
|
+
.nav-link:hover{
|
|
559
|
+
border-bottom: none !important;
|
|
560
|
+
}
|
|
561
|
+
.nav-link.active{
|
|
562
|
+
border-radius: 10px !important;
|
|
563
|
+
border-bottom: none !important;
|
|
564
|
+
}
|
|
565
|
+
.bg-light-primary{
|
|
566
|
+
background: var(--Primary-50, #EAF8FF) !important;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { TaskConfigureComponent } from './task-configure.component';
|
|
4
|
+
|
|
5
|
+
describe('TaskConfigureComponent', () => {
|
|
6
|
+
let component: TaskConfigureComponent;
|
|
7
|
+
let fixture: ComponentFixture<TaskConfigureComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
declarations: [TaskConfigureComponent]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
|
|
15
|
+
fixture = TestBed.createComponent(TaskConfigureComponent);
|
|
16
|
+
component = fixture.componentInstance;
|
|
17
|
+
fixture.detectChanges();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it('should create', () => {
|
|
21
|
+
expect(component).toBeTruthy();
|
|
22
|
+
});
|
|
23
|
+
});
|