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,473 @@
|
|
|
1
|
+
<div class="col-md-12">
|
|
2
|
+
<div class="row">
|
|
3
|
+
<div class="col-12 px-2">
|
|
4
|
+
<div class="card card-border pt-2 h-100">
|
|
5
|
+
<ng-container >
|
|
6
|
+
<div class="card-header ellipse1 border-0 px-3">
|
|
7
|
+
<div class="card-title d-flex align-items-start flex-column">
|
|
8
|
+
<div class="d-flex">
|
|
9
|
+
<div class="cardcount">
|
|
10
|
+
{{(cardMetricsData?.flagCards?.totalFlag === 0 ||
|
|
11
|
+
cardMetricsData?.flagCards?.totalFlag) ?
|
|
12
|
+
cardMetricsData?.flagCards?.totalFlag?.toLocaleString('en-IN') : '--'}}
|
|
13
|
+
</div>
|
|
14
|
+
<div class="cardtext mx-3 mt-3">Total Flags</div>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="card-body p-0">
|
|
20
|
+
<div class="row g-0 h-100px py-3 ">
|
|
21
|
+
<div class="col-11" >
|
|
22
|
+
<div class="row">
|
|
23
|
+
<div class="col-md-4">
|
|
24
|
+
<div class="d-flex flex-column align-items-center" >
|
|
25
|
+
<div class="cardsubcount my-2">{{(cardMetricsData?.flagCards?.questionFlag?.count === 0 ||
|
|
26
|
+
cardMetricsData?.flagCards?.questionFlag?.count) ?
|
|
27
|
+
cardMetricsData?.flagCards?.questionFlag?.count?.toLocaleString('en-IN') : '--'}}</div>
|
|
28
|
+
<div class="cardtext ">Question Flags</div>
|
|
29
|
+
<div class="mt-2"><span *ngIf="cardMetricsComparisonData?.flagComparisonCards?.questionComparisonFlag?.comparisonData" class="mt-2">
|
|
30
|
+
<svg *ngIf="cardMetricsComparisonData?.flagComparisonCards?.questionComparisonFlag?.ComparisonFlag"
|
|
31
|
+
xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8"
|
|
32
|
+
fill="none">
|
|
33
|
+
<path
|
|
34
|
+
d="M11.832 1L7.08203 5.75L4.58203 3.25L0.832031 7M11.832 1H8.83203M11.832 1V4"
|
|
35
|
+
stroke="#039855" stroke-width="1.5" stroke-linecap="round"
|
|
36
|
+
stroke-linejoin="round" />
|
|
37
|
+
</svg>
|
|
38
|
+
<svg *ngIf="!cardMetricsComparisonData?.flagComparisonCards?.questionComparisonFlag?.ComparisonFlag"
|
|
39
|
+
xmlns="http://www.w3.org/2000/svg" width="18" height="18"
|
|
40
|
+
viewBox="0 0 18 18" fill="none" class="ng-star-inserted">
|
|
41
|
+
<g clip-path="url(#clip0_2328_4654)">
|
|
42
|
+
<path d="M11.5 9L6.75 4.25L4.25 6.75L0.5 3M11.5 9H8.5M11.5 9V6"
|
|
43
|
+
stroke="#D92D20" stroke-width="1.5" stroke-linecap="round"
|
|
44
|
+
stroke-linejoin="round"></path>
|
|
45
|
+
</g>
|
|
46
|
+
<defs>
|
|
47
|
+
<clipPath id="clip0_2328_4654">
|
|
48
|
+
<rect width="12" height="12" fill="white">
|
|
49
|
+
</rect>
|
|
50
|
+
</clipPath>
|
|
51
|
+
</defs>
|
|
52
|
+
</svg>
|
|
53
|
+
</span><span class="mt-2 ms-2"><span
|
|
54
|
+
class="percent-value">
|
|
55
|
+
{{(cardMetricsComparisonData?.flagComparisonCards?.questionComparisonFlag?.comparisonData === 0 ||
|
|
56
|
+
cardMetricsComparisonData?.flagComparisonCards?.questionComparisonFlag?.comparisonData) ?
|
|
57
|
+
cardMetricsComparisonData?.flagComparisonCards?.questionComparisonFlag?.comparisonData?.toLocaleString('en-IN') : '--'}}
|
|
58
|
+
%</span><span
|
|
59
|
+
class="week-font"> vs
|
|
60
|
+
last {{dateComparisonType === 'weekly' ? 'week' : 'day'}}</span></span></div>
|
|
61
|
+
</div>
|
|
62
|
+
|
|
63
|
+
</div>
|
|
64
|
+
<div class="col-md-4 ">
|
|
65
|
+
<div class="d-flex flex-column align-items-center">
|
|
66
|
+
<div class="cardsubcount my-2">{{(cardMetricsData?.flagCards?.delayInSubmission?.count === 0 ||
|
|
67
|
+
cardMetricsData?.flagCards?.delayInSubmission?.count) ? cardMetricsData?.flagCards?.delayInSubmission?.count?.toLocaleString('en-IN')
|
|
68
|
+
: '--'}}</div>
|
|
69
|
+
<div class="cardtext">Delay In Submission</div>
|
|
70
|
+
<div class="mt-2"><span *ngIf="cardMetricsComparisonData?.flagComparisonCards?.delayInSubmissionComparisonFlag?.comparisonData" class="mt-2">
|
|
71
|
+
<svg *ngIf="cardMetricsComparisonData?.flagComparisonCards?.delayInSubmissionComparisonFlag?.ComparisonFlag"
|
|
72
|
+
xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8"
|
|
73
|
+
fill="none">
|
|
74
|
+
<path
|
|
75
|
+
d="M11.832 1L7.08203 5.75L4.58203 3.25L0.832031 7M11.832 1H8.83203M11.832 1V4"
|
|
76
|
+
stroke="#039855" stroke-width="1.5" stroke-linecap="round"
|
|
77
|
+
stroke-linejoin="round" />
|
|
78
|
+
</svg>
|
|
79
|
+
<svg *ngIf="!cardMetricsComparisonData?.flagComparisonCards?.delayInSubmissionComparisonFlag?.ComparisonFlag"
|
|
80
|
+
xmlns="http://www.w3.org/2000/svg" width="18" height="18"
|
|
81
|
+
viewBox="0 0 18 18" fill="none" class="ng-star-inserted">
|
|
82
|
+
<g clip-path="url(#clip0_2328_4654)">
|
|
83
|
+
<path d="M11.5 9L6.75 4.25L4.25 6.75L0.5 3M11.5 9H8.5M11.5 9V6"
|
|
84
|
+
stroke="#D92D20" stroke-width="1.5" stroke-linecap="round"
|
|
85
|
+
stroke-linejoin="round"></path>
|
|
86
|
+
</g>
|
|
87
|
+
<defs>
|
|
88
|
+
<clipPath id="clip0_2328_4654">
|
|
89
|
+
<rect width="12" height="12" fill="white">
|
|
90
|
+
</rect>
|
|
91
|
+
</clipPath>
|
|
92
|
+
</defs>
|
|
93
|
+
</svg>
|
|
94
|
+
</span><span class="mt-2 ms-2"><span
|
|
95
|
+
class="percent-value">
|
|
96
|
+
{{(cardMetricsComparisonData?.flagComparisonCards?.delayInSubmissionComparisonFlag?.comparisonData === 0 ||
|
|
97
|
+
cardMetricsComparisonData?.flagComparisonCards?.delayInSubmissionComparisonFlag?.comparisonData) ?
|
|
98
|
+
cardMetricsComparisonData?.flagComparisonCards?.delayInSubmissionComparisonFlag?.comparisonData?.toLocaleString('en-IN') : '--'}}
|
|
99
|
+
%</span><span
|
|
100
|
+
class="week-font"> vs
|
|
101
|
+
last {{dateComparisonType === 'weekly' ? 'week' : 'day'}}</span></span></div>
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
</div>
|
|
105
|
+
<div class="col-md-4">
|
|
106
|
+
<div class="d-flex flex-column align-items-center" >
|
|
107
|
+
<div class="cardsubcount my-2">{{(cardMetricsData?.flagCards?.detectionFlag?.count === 0 ||
|
|
108
|
+
cardMetricsData?.flagCards?.detectionFlag?.count) ?
|
|
109
|
+
cardMetricsData?.flagCards?.detectionFlag?.count?.toLocaleString('en-IN') : '--'}}</div>
|
|
110
|
+
<div class="cardtext ">Detection Flags</div>
|
|
111
|
+
<div class="mt-2"><span *ngIf="cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData" class="mt-2">
|
|
112
|
+
<svg *ngIf="cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.ComparisonFlag"
|
|
113
|
+
xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8"
|
|
114
|
+
fill="none">
|
|
115
|
+
<path
|
|
116
|
+
d="M11.832 1L7.08203 5.75L4.58203 3.25L0.832031 7M11.832 1H8.83203M11.832 1V4"
|
|
117
|
+
stroke="#039855" stroke-width="1.5" stroke-linecap="round"
|
|
118
|
+
stroke-linejoin="round" />
|
|
119
|
+
</svg>
|
|
120
|
+
<svg *ngIf="!cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.ComparisonFlag"
|
|
121
|
+
xmlns="http://www.w3.org/2000/svg" width="18" height="18"
|
|
122
|
+
viewBox="0 0 18 18" fill="none" class="ng-star-inserted">
|
|
123
|
+
<g clip-path="url(#clip0_2328_4654)">
|
|
124
|
+
<path d="M11.5 9L6.75 4.25L4.25 6.75L0.5 3M11.5 9H8.5M11.5 9V6"
|
|
125
|
+
stroke="#D92D20" stroke-width="1.5" stroke-linecap="round"
|
|
126
|
+
stroke-linejoin="round"></path>
|
|
127
|
+
</g>
|
|
128
|
+
<defs>
|
|
129
|
+
<clipPath id="clip0_2328_4654">
|
|
130
|
+
<rect width="12" height="12" fill="white">
|
|
131
|
+
</rect>
|
|
132
|
+
</clipPath>
|
|
133
|
+
</defs>
|
|
134
|
+
</svg>
|
|
135
|
+
</span><span class="mt-2 ms-2"><span
|
|
136
|
+
class="percent-value">
|
|
137
|
+
{{(cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData === 0 ||
|
|
138
|
+
cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData) ?
|
|
139
|
+
cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData?.toLocaleString('en-IN') : '--'}}
|
|
140
|
+
%</span><span
|
|
141
|
+
class="week-font"> vs
|
|
142
|
+
last {{dateComparisonType === 'weekly' ? 'week' : 'day'}}</span></span></div>
|
|
143
|
+
</div>
|
|
144
|
+
|
|
145
|
+
</div>
|
|
146
|
+
<div class="col-md-4">
|
|
147
|
+
<div class="d-flex flex-column align-items-center" >
|
|
148
|
+
<div class="cardsubcount my-2">{{(cardMetricsData?.flagCards?.detectionFlag?.count === 0 ||
|
|
149
|
+
cardMetricsData?.flagCards?.detectionFlag?.count) ?
|
|
150
|
+
cardMetricsData?.flagCards?.detectionFlag?.count?.toLocaleString('en-IN') : '--'}}</div>
|
|
151
|
+
<div class="cardtext ">Detection Flags</div>
|
|
152
|
+
<div class="mt-2"><span *ngIf="cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData" class="mt-2">
|
|
153
|
+
<svg *ngIf="cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.ComparisonFlag"
|
|
154
|
+
xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8"
|
|
155
|
+
fill="none">
|
|
156
|
+
<path
|
|
157
|
+
d="M11.832 1L7.08203 5.75L4.58203 3.25L0.832031 7M11.832 1H8.83203M11.832 1V4"
|
|
158
|
+
stroke="#039855" stroke-width="1.5" stroke-linecap="round"
|
|
159
|
+
stroke-linejoin="round" />
|
|
160
|
+
</svg>
|
|
161
|
+
<svg *ngIf="!cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.ComparisonFlag"
|
|
162
|
+
xmlns="http://www.w3.org/2000/svg" width="18" height="18"
|
|
163
|
+
viewBox="0 0 18 18" fill="none" class="ng-star-inserted">
|
|
164
|
+
<g clip-path="url(#clip0_2328_4654)">
|
|
165
|
+
<path d="M11.5 9L6.75 4.25L4.25 6.75L0.5 3M11.5 9H8.5M11.5 9V6"
|
|
166
|
+
stroke="#D92D20" stroke-width="1.5" stroke-linecap="round"
|
|
167
|
+
stroke-linejoin="round"></path>
|
|
168
|
+
</g>
|
|
169
|
+
<defs>
|
|
170
|
+
<clipPath id="clip0_2328_4654">
|
|
171
|
+
<rect width="12" height="12" fill="white">
|
|
172
|
+
</rect>
|
|
173
|
+
</clipPath>
|
|
174
|
+
</defs>
|
|
175
|
+
</svg>
|
|
176
|
+
</span><span class="mt-2 ms-2"><span
|
|
177
|
+
class="percent-value">
|
|
178
|
+
{{(cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData === 0 ||
|
|
179
|
+
cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData) ?
|
|
180
|
+
cardMetricsComparisonData?.flagComparisonCards?.detectionComparisonFlag?.comparisonData?.toLocaleString('en-IN') : '--'}}
|
|
181
|
+
%</span><span
|
|
182
|
+
class="week-font"> vs
|
|
183
|
+
last {{dateComparisonType === 'weekly' ? 'week' : 'day'}}</span></span></div>
|
|
184
|
+
</div>
|
|
185
|
+
|
|
186
|
+
</div>
|
|
187
|
+
</div>
|
|
188
|
+
|
|
189
|
+
</div>
|
|
190
|
+
<div class="col-1">
|
|
191
|
+
<div class="row">
|
|
192
|
+
<div class="col-12 mt-3">
|
|
193
|
+
<div class="d-flex flex-column align-items-end justify-content-center me-5" >
|
|
194
|
+
<div class="mt-1 cursor-pointer fs-5" [ngClass]="dateComparisonType ==='daily' ? 'text-primary' :''" (click)="dateComparisonValueChange('daily')">1D</div>
|
|
195
|
+
<div class="mt-1 cursor-pointer fs-5" [ngClass]="dateComparisonType ==='weekly' ? 'text-primary' :''" (click)="dateComparisonValueChange('weekly')">1W</div>
|
|
196
|
+
<!-- <div class="mt-1 cursor-pointer fs-5" [ngClass]="dateType ==='monthly' ? 'text-primary' :''" (click)="dateValue('monthly')">1M</div> -->
|
|
197
|
+
</div>
|
|
198
|
+
|
|
199
|
+
</div>
|
|
200
|
+
</div>
|
|
201
|
+
|
|
202
|
+
</div>
|
|
203
|
+
|
|
204
|
+
</div>
|
|
205
|
+
</div>
|
|
206
|
+
</ng-container>
|
|
207
|
+
<!-- <ng-container *ngIf="(cardMetricsApiState | async) === 'loading' || (cardMetricsApiState | async) === 'initial'">
|
|
208
|
+
<div class="row loader d-flex justify-content-center align-items-center">
|
|
209
|
+
<div class="shimmer">
|
|
210
|
+
<div class="wrapper">
|
|
211
|
+
<div class="stroke animate title"></div>
|
|
212
|
+
<div class="stroke animate link"></div>
|
|
213
|
+
<div class="stroke animate description"></div>
|
|
214
|
+
</div>
|
|
215
|
+
</div>
|
|
216
|
+
<div class="shimmer">
|
|
217
|
+
<div class="wrapper">
|
|
218
|
+
<div class="stroke animate title"></div>
|
|
219
|
+
<div class="stroke animate link"></div>
|
|
220
|
+
<div class="stroke animate description"></div>
|
|
221
|
+
</div>
|
|
222
|
+
</div>
|
|
223
|
+
</div>
|
|
224
|
+
</ng-container> -->
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
</div>
|
|
228
|
+
</div>
|
|
229
|
+
</div>
|
|
230
|
+
|
|
231
|
+
<div class="row mt-3">
|
|
232
|
+
<div class="col-lg-12">
|
|
233
|
+
<div class="card">
|
|
234
|
+
<div class="card-header border-0 pt-4 px-4">
|
|
235
|
+
<h3 class="card-title align-items-start flex-column">
|
|
236
|
+
<span class="card-label mb-2 me-3">Checklist Flags <span *ngIf="totalItems" class="badge badge-light-primary ">{{totalItems}}
|
|
237
|
+
total</span></span>
|
|
238
|
+
<span class="text-sub mb-2"> Based on {{ headerData?.date?.startDate | date: 'MMM d' }} - {{
|
|
239
|
+
headerData?.date?.endDate | date: 'MMM d, y' }}
|
|
240
|
+
</span>
|
|
241
|
+
</h3>
|
|
242
|
+
<div *ngIf="(flagsTableApiState | async) === 'loaded'" class="card-toolbar">
|
|
243
|
+
<div class="d-flex">
|
|
244
|
+
<div class="d-flex align-items-center position-relative my-1">
|
|
245
|
+
<span class="svg-icon footfallsearch svg-icon-1 position-absolute ms-8">
|
|
246
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
247
|
+
fill="none">
|
|
248
|
+
<rect opacity="0.5" x="17.0365" y="15.1223" width="8.15546" height="2" rx="1"
|
|
249
|
+
transform="rotate(45 17.0365 15.1223)" fill="currentColor">
|
|
250
|
+
</rect>
|
|
251
|
+
<path
|
|
252
|
+
d="M11 19C6.55556 19 3 15.4444 3 11C3 6.55556 6.55556 3 11 3C15.4444 3 19 6.55556 19 11C19 15.4444 15.4444 19 11 19ZM11 5C7.53333 5 5 7.53333 5 11C5 14.4667 7.53333 17 11 17C14.4667 17 17 14.4667 17 11C17 7.53333 14.4667 5 11 5Z"
|
|
253
|
+
fill="currentColor"></path>
|
|
254
|
+
</svg>
|
|
255
|
+
</span>
|
|
256
|
+
<input [formControl]="searchInput" type="text"
|
|
257
|
+
class="form-control ps-14 ms-4 me-4 footfallsearch" placeholder="Search"
|
|
258
|
+
autocomplete="off" />
|
|
259
|
+
<lib-reactive-select [formControl]="filterInput" [idField]="'value'"
|
|
260
|
+
[nameField]="'label'" [data]="filterValues" class="w-100">
|
|
261
|
+
</lib-reactive-select>
|
|
262
|
+
<button *ngIf="flagsTableData?.length" [disabled]="(flagsTableApiState | async) === 'loading'" type="button" (click)="onFlagsTableExport()" type="button"
|
|
263
|
+
class="btn-outline btn align-items-end text-nowrap invheader ms-4">
|
|
264
|
+
<!-- Export Icon -->
|
|
265
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"
|
|
266
|
+
fill="none">
|
|
267
|
+
<path
|
|
268
|
+
d="M17.5 12.5V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V12.5M14.1667 6.66667L10 2.5M10 2.5L5.83333 6.66667M10 2.5V12.5"
|
|
269
|
+
stroke="#344054" stroke-width="1.67" stroke-linecap="round"
|
|
270
|
+
stroke-linejoin="round"></path>
|
|
271
|
+
</svg>
|
|
272
|
+
<span class="ms-2"></span> Export
|
|
273
|
+
</button>
|
|
274
|
+
</div>
|
|
275
|
+
</div>
|
|
276
|
+
</div>
|
|
277
|
+
</div>
|
|
278
|
+
<div class="card-body p-0">
|
|
279
|
+
<ng-container *ngIf="(flagsTableApiState | async) === 'loaded'" >
|
|
280
|
+
<div class="table-responsive px-4">
|
|
281
|
+
<table class="table text-nowrap bottom-border">
|
|
282
|
+
<thead>
|
|
283
|
+
<tr>
|
|
284
|
+
<th class="cursor-pointer" (click)="sortData('checkListName')">Checklist Name
|
|
285
|
+
<svg
|
|
286
|
+
[ngClass]="sortColumName === 'checkListName' && sortDirection === 1 ? 'rotate' : ''"
|
|
287
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
288
|
+
viewBox="0 0 16 16" fill="none">
|
|
289
|
+
<path
|
|
290
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
291
|
+
[attr.stroke]="sortColumName === 'checkListName' ? '#00A3FF' : '#667085'"
|
|
292
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
293
|
+
</svg>
|
|
294
|
+
</th>
|
|
295
|
+
<th class="cursor-pointer" (click)="sortData('checkListType')">Flag Type<svg
|
|
296
|
+
[ngClass]="sortColumName === 'checkListType' && sortDirection === 1 ? 'rotate' : ''"
|
|
297
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
298
|
+
viewBox="0 0 16 16" fill="none">
|
|
299
|
+
<path
|
|
300
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
301
|
+
[attr.stroke]="sortColumName === 'checkListType' ? '#00A3FF' : '#667085'"
|
|
302
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
303
|
+
</svg></th>
|
|
304
|
+
<th class="cursor-pointer" (click)="sortData('coverage')">Coverage<svg
|
|
305
|
+
[ngClass]="sortColumName === 'coverage' && sortDirection === 1 ? 'rotate' : ''"
|
|
306
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
307
|
+
viewBox="0 0 16 16" fill="none">
|
|
308
|
+
<path
|
|
309
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
310
|
+
[attr.stroke]="sortColumName === 'coverage' ? '#00A3FF' : '#667085'"
|
|
311
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
312
|
+
</svg></th>
|
|
313
|
+
<th class="cursor-pointer" (click)="sortData('assignedStores')">Assigned Stores<svg
|
|
314
|
+
[ngClass]="sortColumName === 'assignedStores' && sortDirection === 1 ? 'rotate' : ''"
|
|
315
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
316
|
+
viewBox="0 0 16 16" fill="none">
|
|
317
|
+
<path
|
|
318
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
319
|
+
[attr.stroke]="sortColumName === 'assignedStores' ? '#00A3FF' : '#667085'"
|
|
320
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
321
|
+
</svg></th>
|
|
322
|
+
<th class="cursor-pointer" (click)="sortData('flaggedStores')">Flagged Stores<svg
|
|
323
|
+
[ngClass]="sortColumName === 'flaggedStores' && sortDirection === 1 ? 'rotate' : ''"
|
|
324
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
325
|
+
viewBox="0 0 16 16" fill="none">
|
|
326
|
+
<path
|
|
327
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
328
|
+
[attr.stroke]="sortColumName === 'flaggedStores' ? '#00A3FF' : '#667085'"
|
|
329
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
330
|
+
</svg></th>
|
|
331
|
+
<th style="width: 200px;" class="cursor-pointer" (click)="sortData('flagCount')">Flagged<svg
|
|
332
|
+
[ngClass]="sortColumName === 'flagCount' && sortDirection === 1 ? 'rotate' : ''"
|
|
333
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
334
|
+
viewBox="0 0 16 16" fill="none">
|
|
335
|
+
<path
|
|
336
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
337
|
+
[attr.stroke]="sortColumName === 'flagCount' ? '#00A3FF' : '#667085'"
|
|
338
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
339
|
+
</svg></th>
|
|
340
|
+
<th class="cursor-pointer" (click)="sortData('Compliance')">Compliance %<svg
|
|
341
|
+
[ngClass]="sortColumName === 'Compliance' && sortDirection === 1 ? 'rotate' : ''"
|
|
342
|
+
xmlns="http://www.w3.org/2000/svg" width="16" height="16"
|
|
343
|
+
viewBox="0 0 16 16" fill="none">
|
|
344
|
+
<path
|
|
345
|
+
d="M8.00016 3.33337V12.6667M8.00016 12.6667L12.6668 8.00004M8.00016 12.6667L3.3335 8.00004"
|
|
346
|
+
[attr.stroke]="sortColumName === 'Compliance' ? '#00A3FF' : '#667085'"
|
|
347
|
+
stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round" />
|
|
348
|
+
</svg></th>
|
|
349
|
+
<th>Actions</th>
|
|
350
|
+
</tr>
|
|
351
|
+
</thead>
|
|
352
|
+
<tbody>
|
|
353
|
+
<!-- *ngFor="let store of checklistPerformance" -->
|
|
354
|
+
<tr *ngFor="let data of flagsTableData">
|
|
355
|
+
<td>
|
|
356
|
+
<div>
|
|
357
|
+
<div class="symbol symbol-35px symbol-circle">
|
|
358
|
+
<span class="symbol-label bg-light-primary text-primary me-2">
|
|
359
|
+
{{data?.checkListChar || '--' }} </span>
|
|
360
|
+
</div><span (click)="viewInDetail(data?.sourceCheckList_id)"
|
|
361
|
+
class="table-title-primary cursor-pointer">{{data?.checkListName ? data?.checkListName : '--'}}</span> <span *ngIf="data?.checkListType !== 'custom'"
|
|
362
|
+
class="mx-2">✨</span>
|
|
363
|
+
</div>
|
|
364
|
+
</td>
|
|
365
|
+
<td>
|
|
366
|
+
<div class="table-title">
|
|
367
|
+
<span *ngIf="data?.checkListType === 'custom'" >Questions</span>
|
|
368
|
+
<span *ngIf="data?.checkListType !== 'custom'">Detections</span>
|
|
369
|
+
</div>
|
|
370
|
+
</td>
|
|
371
|
+
<td class="table-title">{{ data?.coverage ? data?.coverage : '--' }}</td>
|
|
372
|
+
<td class="table-title">{{ data.checkListType === 'custom' ? ((data?.assignedStores || data?.assignedStores === 0) ? data?.assignedStores : '--') : ((data?.assignedStoresAi || data?.assignedStoresAi === 0) ? data?.assignedStoresAi : '--')}}</td>
|
|
373
|
+
<td class="table-title">{{ (data?.flaggedStores || data?.flaggedStores === 0) ? data?.flaggedStores : '--' }}</td>
|
|
374
|
+
<td class="table-title-primary">
|
|
375
|
+
|
|
376
|
+
<!-- <div class="d-flex justify-content-between">
|
|
377
|
+
<span class="cursor-pointer" (click)="viewInDetail(data?.sourceCheckList_id)">{{(data?.flagCount || data?.flagCount === 0) ? data?.flagCount?.toLocaleString('en-IN') : '--'}} </span>
|
|
378
|
+
<span class="badge badge-light-default mx-3" *ngIf="data?.checkListType === 'custom'" >Questions</span>
|
|
379
|
+
<span class="badge badge-light-default mx-3" *ngIf="data?.checkListType !== 'custom'">Detections</span>
|
|
380
|
+
</div> -->
|
|
381
|
+
|
|
382
|
+
<ng-container *ngIf="data?.checkListType === 'custom'" >
|
|
383
|
+
<div *ngIf="filterInput.value === 'all' || filterInput.value === 'question'" class="d-flex justify-content-between mb-2">
|
|
384
|
+
<span class="cursor-pointer" (click)="viewInDetail(data?.sourceCheckList_id, 'question')" >{{(data?.customQuestionFlagCount || data?.customQuestionFlagCount === 0) ? data?.customQuestionFlagCount?.toLocaleString('en-IN') : '--'}} </span>
|
|
385
|
+
<span class="badge badge-light-default mx-3" >Questions</span>
|
|
386
|
+
</div>
|
|
387
|
+
|
|
388
|
+
<div *ngIf="filterInput.value === 'all' || filterInput.value === 'time'" class="d-flex justify-content-between">
|
|
389
|
+
<span class="cursor-pointer" (click)="viewInDetail(data?.sourceCheckList_id, 'time')" >{{(data?.customTimeFlagCount || data?.customTimeFlagCount === 0) ? data?.customTimeFlagCount?.toLocaleString('en-IN') : '--'}} </span>
|
|
390
|
+
<span class="badge badge-light-default mx-3" >Not Submitted</span>
|
|
391
|
+
</div>
|
|
392
|
+
</ng-container>
|
|
393
|
+
|
|
394
|
+
<div *ngIf="data?.checkListType !== 'custom'" class="d-flex justify-content-between">
|
|
395
|
+
<span class="cursor-pointer" (click)="viewInDetail(data?.sourceCheckList_id)" >{{(data?.flagCount || data?.flagCount === 0) ? data?.flagCount?.toLocaleString('en-IN') : '--'}} </span>
|
|
396
|
+
<span class="badge badge-light-default mx-3" >Detections</span>
|
|
397
|
+
</div>
|
|
398
|
+
|
|
399
|
+
</td>
|
|
400
|
+
<td class="table-title">
|
|
401
|
+
<div class="d-flex">
|
|
402
|
+
<div class="h-5px w-100 bg-light mt-4">
|
|
403
|
+
<div role="progressbar" aria-valuemin="20" aria-valuemax="100"
|
|
404
|
+
class="bg-primary rounded h-5px "
|
|
405
|
+
[style.width]="data?.complianceRate + '%'"> </div>
|
|
406
|
+
</div>
|
|
407
|
+
<div class="text-end table-title"><span class="my-1 mx-1 text-end">
|
|
408
|
+
{{data?.complianceRate?.toLocaleString('en-US', { minimumFractionDigits: 0 })
|
|
409
|
+
|| '--'}}%</span></div>
|
|
410
|
+
</div>
|
|
411
|
+
</td>
|
|
412
|
+
<td>
|
|
413
|
+
<div class="table-title">
|
|
414
|
+
<div (click)="viewInDetail(data?.sourceCheckList_id)" class="table-title-primary cursor-pointer">View</div>
|
|
415
|
+
</div>
|
|
416
|
+
</td>
|
|
417
|
+
|
|
418
|
+
</tr>
|
|
419
|
+
|
|
420
|
+
</tbody>
|
|
421
|
+
</table>
|
|
422
|
+
|
|
423
|
+
</div>
|
|
424
|
+
<div *ngIf="(flagsTableApiState | async) === 'loaded' && flagsTableData?.length">
|
|
425
|
+
<lib-pagination [itemsPerPage]="itemsPerPage" [currentPage]="currentPage"
|
|
426
|
+
[totalItems]="totalItems" [paginationSizes]="paginationSizes" [pageSize]="pageSize"
|
|
427
|
+
(pageChange)="onPageChange($event)"
|
|
428
|
+
(pageSizeChange)="onPageSizeChange($event)"></lib-pagination>
|
|
429
|
+
</div>
|
|
430
|
+
</ng-container>
|
|
431
|
+
<ng-container *ngIf="(flagsTableApiState | async) === 'loading' || (flagsTableApiState | async) === 'initial'">
|
|
432
|
+
<div class="row loader d-flex justify-content-center align-items-center">
|
|
433
|
+
<div class="shimmer">
|
|
434
|
+
<div class="wrapper">
|
|
435
|
+
<div class="stroke animate title"></div>
|
|
436
|
+
<div class="stroke animate link"></div>
|
|
437
|
+
<div class="stroke animate description"></div>
|
|
438
|
+
</div>
|
|
439
|
+
</div>
|
|
440
|
+
<div class="shimmer">
|
|
441
|
+
<div class="wrapper">
|
|
442
|
+
<div class="stroke animate title"></div>
|
|
443
|
+
<div class="stroke animate link"></div>
|
|
444
|
+
<div class="stroke animate description"></div>
|
|
445
|
+
</div>
|
|
446
|
+
</div>
|
|
447
|
+
<div class="shimmer">
|
|
448
|
+
<div class="wrapper">
|
|
449
|
+
<div class="stroke animate title"></div>
|
|
450
|
+
<div class="stroke animate link"></div>
|
|
451
|
+
<div class="stroke animate description"></div>
|
|
452
|
+
</div>
|
|
453
|
+
</div>
|
|
454
|
+
</div>
|
|
455
|
+
</ng-container>
|
|
456
|
+
<ng-container *ngIf="(flagsTableApiState | async) === 'loaded' && !flagsTableData?.length">
|
|
457
|
+
<div class="row">
|
|
458
|
+
<div class="col-lg-12 my-6">
|
|
459
|
+
<div
|
|
460
|
+
class="card-body d-flex justify-content-center align-items-center flex-column">
|
|
461
|
+
<img class="img-src" src="./assets/tango/Icons/Nodata1.svg" alt="">
|
|
462
|
+
<div class="nodatamaintext mt-3">No data found</div>
|
|
463
|
+
<div class="nodatasubtext">There is no result for Flags Table</div>
|
|
464
|
+
</div>
|
|
465
|
+
</div>
|
|
466
|
+
</div>
|
|
467
|
+
</ng-container>
|
|
468
|
+
|
|
469
|
+
</div>
|
|
470
|
+
</div>
|
|
471
|
+
</div>
|
|
472
|
+
</div>
|
|
473
|
+
</div>
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
.ellipse1 {
|
|
2
|
+
border-radius: 6px;
|
|
3
|
+
border-bottom: 2px solid var(--Gray-200, #EAECF0);
|
|
4
|
+
background: radial-gradient(206.89% 107.47% at 16.16% 32.77%, rgba(255, 255, 255, 0.40) 0%, rgba(69, 187, 254, 0.20) 100%), #F2F4F7;
|
|
5
|
+
|
|
6
|
+
/* Shadow/Soft Shadow */
|
|
7
|
+
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.card-border {
|
|
11
|
+
padding: 8px;
|
|
12
|
+
border-radius: 12px;
|
|
13
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
14
|
+
background: var(--White, #FFF);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.cardcount {
|
|
18
|
+
color: var(--Black, #101828);
|
|
19
|
+
font-size: 30px;
|
|
20
|
+
font-style: normal;
|
|
21
|
+
font-weight: 600;
|
|
22
|
+
line-height: 38px; /* 126.667% */
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cardtext {
|
|
26
|
+
color: var(--Gray-700, #344054);
|
|
27
|
+
font-size: 14px;
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 500;
|
|
30
|
+
line-height: 20px;
|
|
31
|
+
}
|
|
32
|
+
.cardsubcount{
|
|
33
|
+
color: var(--Black, #101828);
|
|
34
|
+
font-size: 20px;
|
|
35
|
+
font-style: normal;
|
|
36
|
+
font-weight: 700;
|
|
37
|
+
line-height: 30px; /* 150% */
|
|
38
|
+
}
|
|
39
|
+
.card-border {
|
|
40
|
+
padding: 8px;
|
|
41
|
+
border-radius: 12px;
|
|
42
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
43
|
+
background: var(--White, #FFF);
|
|
44
|
+
}
|
|
45
|
+
.percent-value{
|
|
46
|
+
color: var(--Gray-500, #667085);
|
|
47
|
+
text-align: center;
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
font-style: normal;
|
|
50
|
+
font-weight: 600;
|
|
51
|
+
line-height: 18px; /* 112.5% */
|
|
52
|
+
}
|
|
53
|
+
.week-font{
|
|
54
|
+
color: var(--Gray-800, #1D2939);
|
|
55
|
+
font-size: 12px;
|
|
56
|
+
font-style: normal;
|
|
57
|
+
font-weight: 400;
|
|
58
|
+
line-height: 18px; /* 150% */
|
|
59
|
+
}
|
|
60
|
+
.flagcard{
|
|
61
|
+
padding: 0px 0px 0px 15%;
|
|
62
|
+
}
|
|
63
|
+
.table-title-primary{
|
|
64
|
+
color: var(--Primary-700, #009BF3) !important;
|
|
65
|
+
font-size: 14px;
|
|
66
|
+
font-style: normal;
|
|
67
|
+
font-weight: 500 !important;
|
|
68
|
+
line-height: 30px;
|
|
69
|
+
text-decoration-line: underline;
|
|
70
|
+
}
|
|
71
|
+
.table-title{
|
|
72
|
+
color: var(--Gray-500, #667085);
|
|
73
|
+
font-size: 14px;
|
|
74
|
+
font-style: normal;
|
|
75
|
+
font-weight: 500 !important;
|
|
76
|
+
line-height: 20px; /* 142.857% */
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.rotate {
|
|
80
|
+
rotate: 180deg;
|
|
81
|
+
transition: 1s;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
td{
|
|
85
|
+
vertical-align: middle;
|
|
86
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { FlagsComponent } from './flags.component';
|
|
4
|
+
|
|
5
|
+
describe('FlagsComponent', () => {
|
|
6
|
+
let component: FlagsComponent;
|
|
7
|
+
let fixture: ComponentFixture<FlagsComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
declarations: [FlagsComponent]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
|
|
15
|
+
fixture = TestBed.createComponent(FlagsComponent);
|
|
16
|
+
component = fixture.componentInstance;
|
|
17
|
+
fixture.detectChanges();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it('should create', () => {
|
|
21
|
+
expect(component).toBeTruthy();
|
|
22
|
+
});
|
|
23
|
+
});
|