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.
Files changed (470) hide show
  1. package/.eslintrc.json +37 -0
  2. package/ng-package.json +7 -0
  3. package/package.json +12 -25
  4. package/src/lib/components/action-centre/action-centre.component.html +607 -0
  5. package/src/lib/components/action-centre/action-centre.component.scss +185 -0
  6. package/src/lib/components/action-centre/action-centre.component.spec.ts +23 -0
  7. package/src/lib/components/action-centre/action-centre.component.ts +279 -0
  8. package/src/lib/components/activity-log/activity-log.component.html +84 -0
  9. package/src/lib/components/activity-log/activity-log.component.scss +33 -0
  10. package/src/lib/components/activity-log/activity-log.component.spec.ts +23 -0
  11. package/src/lib/components/activity-log/activity-log.component.ts +137 -0
  12. package/src/lib/components/activity-log-v2/activity-log-v2.component.html +189 -0
  13. package/src/lib/components/activity-log-v2/activity-log-v2.component.scss +162 -0
  14. package/src/lib/components/activity-log-v2/activity-log-v2.component.spec.ts +23 -0
  15. package/src/lib/components/activity-log-v2/activity-log-v2.component.ts +517 -0
  16. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.html +19 -0
  17. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.scss +148 -0
  18. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.spec.ts +23 -0
  19. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.ts +141 -0
  20. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.html +42 -0
  21. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.scss +49 -0
  22. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.spec.ts +23 -0
  23. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.ts +22 -0
  24. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.html +724 -0
  25. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.scss +217 -0
  26. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.spec.ts +23 -0
  27. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.ts +122 -0
  28. package/src/lib/components/add-checklist/add-checklist.component.html +1459 -0
  29. package/src/lib/components/add-checklist/add-checklist.component.scss +1205 -0
  30. package/src/lib/components/add-checklist/add-checklist.component.spec.ts +23 -0
  31. package/src/lib/components/add-checklist/add-checklist.component.ts +2460 -0
  32. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.html +207 -0
  33. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.scss +213 -0
  34. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.spec.ts +23 -0
  35. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.ts +621 -0
  36. package/src/lib/components/add-checklist/counter/counter.component.html +43 -0
  37. package/src/lib/components/add-checklist/counter/counter.component.scss +49 -0
  38. package/src/lib/components/add-checklist/counter/counter.component.spec.ts +23 -0
  39. package/src/lib/components/add-checklist/counter/counter.component.ts +123 -0
  40. package/src/lib/components/add-multitask/add-multitask.component.html +705 -0
  41. package/src/lib/components/add-multitask/add-multitask.component.scss +296 -0
  42. package/src/lib/components/add-multitask/add-multitask.component.spec.ts +23 -0
  43. package/src/lib/components/add-multitask/add-multitask.component.ts +611 -0
  44. package/src/lib/components/add-multitask/ascending-validator.ts +13 -0
  45. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.html +197 -0
  46. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.scss +31 -0
  47. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.spec.ts +23 -0
  48. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.ts +285 -0
  49. package/src/lib/components/add-multitask/create-task.data.ts +374 -0
  50. package/src/lib/components/add-multitask/create-task.interface.ts +177 -0
  51. package/src/lib/components/add-multitask/unique-string-validator.ts +13 -0
  52. package/src/lib/components/add-multitask/whitespace-validator.ts +11 -0
  53. package/src/lib/components/add-task/add-task.component.html +654 -0
  54. package/src/lib/components/add-task/add-task.component.scss +536 -0
  55. package/src/lib/components/add-task/add-task.component.spec.ts +23 -0
  56. package/src/lib/components/add-task/add-task.component.ts +569 -0
  57. package/src/lib/components/add-task/ascending-validator.ts +13 -0
  58. package/src/lib/components/add-task/create-task.data.ts +374 -0
  59. package/src/lib/components/add-task/create-task.interface.ts +192 -0
  60. package/src/lib/components/add-task/unique-string-validator.ts +13 -0
  61. package/src/lib/components/add-task/whitespace-validator.ts +11 -0
  62. package/src/lib/components/approval-popup/approval-popup.component.html +25 -0
  63. package/src/lib/components/approval-popup/approval-popup.component.scss +3 -0
  64. package/src/lib/components/approval-popup/approval-popup.component.spec.ts +23 -0
  65. package/src/lib/components/approval-popup/approval-popup.component.ts +26 -0
  66. package/src/lib/components/checklist/checklist.component.html +330 -0
  67. package/src/lib/components/checklist/checklist.component.scss +112 -0
  68. package/src/lib/components/checklist/checklist.component.spec.ts +23 -0
  69. package/src/lib/components/checklist/checklist.component.ts +344 -0
  70. package/src/lib/components/checklist-configure/assign/assign.component.html +665 -0
  71. package/src/lib/components/checklist-configure/assign/assign.component.scss +219 -0
  72. package/src/lib/components/checklist-configure/assign/assign.component.spec.ts +23 -0
  73. package/src/lib/components/checklist-configure/assign/assign.component.ts +932 -0
  74. package/src/lib/components/checklist-configure/checklist-configure.component.html +4340 -0
  75. package/src/lib/components/checklist-configure/checklist-configure.component.scss +2338 -0
  76. package/src/lib/components/checklist-configure/checklist-configure.component.spec.ts +23 -0
  77. package/src/lib/components/checklist-configure/checklist-configure.component.ts +4659 -0
  78. package/src/lib/components/checklistlayout/checklistlayout.component.html +30 -0
  79. package/src/lib/components/checklistlayout/checklistlayout.component.scss +15 -0
  80. package/src/lib/components/checklistlayout/checklistlayout.component.spec.ts +23 -0
  81. package/src/lib/components/checklistlayout/checklistlayout.component.ts +47 -0
  82. package/src/lib/components/chip-dropdown/chip-dropdown.component.html +36 -0
  83. package/src/lib/components/chip-dropdown/chip-dropdown.component.scss +97 -0
  84. package/src/lib/components/chip-dropdown/chip-dropdown.component.spec.ts +23 -0
  85. package/src/lib/components/chip-dropdown/chip-dropdown.component.ts +125 -0
  86. package/src/lib/components/create-task/create-task.component.html +2003 -0
  87. package/src/lib/components/create-task/create-task.component.scss +272 -0
  88. package/src/lib/components/create-task/create-task.component.spec.ts +23 -0
  89. package/src/lib/components/create-task/create-task.component.ts +614 -0
  90. package/src/lib/components/create-task/create-task.data.ts +372 -0
  91. package/src/lib/components/create-task/create-task.interface.ts +182 -0
  92. package/src/lib/components/create-task/validators/ascending-validator.ts +13 -0
  93. package/src/lib/components/create-task/validators/unique-string-validator.ts +13 -0
  94. package/src/lib/components/create-task/validators/whitespace-validator.ts +11 -0
  95. package/src/lib/components/custom-select/custom-select.component.html +44 -0
  96. package/src/lib/components/custom-select/custom-select.component.scss +144 -0
  97. package/src/lib/components/custom-select/custom-select.component.spec.ts +23 -0
  98. package/src/lib/components/custom-select/custom-select.component.ts +265 -0
  99. package/src/lib/components/dashboard/dashboard.component.html +1076 -0
  100. package/src/lib/components/dashboard/dashboard.component.scss +237 -0
  101. package/src/lib/components/dashboard/dashboard.component.spec.ts +23 -0
  102. package/src/lib/components/dashboard/dashboard.component.ts +539 -0
  103. package/src/lib/components/dashboard-info/dashboard-info.component.html +1420 -0
  104. package/src/lib/components/dashboard-info/dashboard-info.component.scss +409 -0
  105. package/src/lib/components/dashboard-info/dashboard-info.component.spec.ts +23 -0
  106. package/src/lib/components/dashboard-info/dashboard-info.component.ts +772 -0
  107. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.html +110 -0
  108. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.scss +260 -0
  109. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.spec.ts +23 -0
  110. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.ts +143 -0
  111. package/src/lib/components/dashboard-layout/dashboard-layout.component.html +1 -0
  112. package/src/lib/components/dashboard-layout/dashboard-layout.component.scss +0 -0
  113. package/src/lib/components/dashboard-layout/dashboard-layout.component.spec.ts +23 -0
  114. package/src/lib/components/dashboard-layout/dashboard-layout.component.ts +10 -0
  115. package/src/lib/components/disabled-select/disabled-select.component.html +44 -0
  116. package/src/lib/components/disabled-select/disabled-select.component.scss +149 -0
  117. package/src/lib/components/disabled-select/disabled-select.component.spec.ts +23 -0
  118. package/src/lib/components/disabled-select/disabled-select.component.ts +146 -0
  119. package/src/lib/components/export-gallery/export-gallery.component.html +175 -0
  120. package/src/lib/components/export-gallery/export-gallery.component.scss +200 -0
  121. package/src/lib/components/export-gallery/export-gallery.component.spec.ts +23 -0
  122. package/src/lib/components/export-gallery/export-gallery.component.ts +263 -0
  123. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.html +36 -0
  124. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.scss +97 -0
  125. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.spec.ts +23 -0
  126. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.ts +104 -0
  127. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.html +44 -0
  128. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.scss +144 -0
  129. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.spec.ts +23 -0
  130. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.ts +265 -0
  131. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.html +1804 -0
  132. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.scss +806 -0
  133. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.spec.ts +23 -0
  134. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.ts +1890 -0
  135. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.html +25 -0
  136. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.scss +0 -0
  137. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.spec.ts +23 -0
  138. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.ts +20 -0
  139. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.ts +26 -0
  140. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.html +1 -0
  141. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.scss +0 -0
  142. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.spec.ts +23 -0
  143. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.ts +24 -0
  144. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.ts +44 -0
  145. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.html +490 -0
  146. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.scss +721 -0
  147. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.spec.ts +23 -0
  148. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.ts +1017 -0
  149. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.html +708 -0
  150. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.scss +247 -0
  151. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.spec.ts +23 -0
  152. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.ts +446 -0
  153. package/src/lib/components/eye-test-audit/group-select/group-select.component.html +44 -0
  154. package/src/lib/components/eye-test-audit/group-select/group-select.component.scss +144 -0
  155. package/src/lib/components/eye-test-audit/group-select/group-select.component.spec.ts +23 -0
  156. package/src/lib/components/eye-test-audit/group-select/group-select.component.ts +147 -0
  157. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.html +18 -0
  158. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.scss +49 -0
  159. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.spec.ts +23 -0
  160. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.ts +104 -0
  161. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.html +44 -0
  162. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.scss +144 -0
  163. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.spec.ts +23 -0
  164. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.ts +152 -0
  165. package/src/lib/components/eye-test-audit/services/eye-test-audit.service.spec.ts +16 -0
  166. package/src/lib/components/eye-test-audit/services/eye-test-audit.service.ts +190 -0
  167. package/src/lib/components/flag-layout/flag-layout.component.html +1 -0
  168. package/src/lib/components/flag-layout/flag-layout.component.scss +0 -0
  169. package/src/lib/components/flag-layout/flag-layout.component.spec.ts +23 -0
  170. package/src/lib/components/flag-layout/flag-layout.component.ts +10 -0
  171. package/src/lib/components/flags/flags.component.html +473 -0
  172. package/src/lib/components/flags/flags.component.scss +86 -0
  173. package/src/lib/components/flags/flags.component.spec.ts +23 -0
  174. package/src/lib/components/flags/flags.component.ts +280 -0
  175. package/{lib/components/flags/flags.interface.d.ts → src/lib/components/flags/flags.interface.ts} +73 -65
  176. package/src/lib/components/flags-info/flags-info.component.html +6012 -0
  177. package/src/lib/components/flags-info/flags-info.component.scss +278 -0
  178. package/src/lib/components/flags-info/flags-info.component.spec.ts +23 -0
  179. package/src/lib/components/flags-info/flags-info.component.ts +490 -0
  180. package/src/lib/components/flags-info/flags-info.interface.ts +441 -0
  181. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.html +1 -0
  182. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.scss +4 -0
  183. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.ts +78 -0
  184. package/src/lib/components/flags-new/flags-new.component.html +904 -0
  185. package/src/lib/components/flags-new/flags-new.component.scss +121 -0
  186. package/src/lib/components/flags-new/flags-new.component.spec.ts +23 -0
  187. package/src/lib/components/flags-new/flags-new.component.ts +357 -0
  188. package/{lib/components/flags-new/flags-new.interface.d.ts → src/lib/components/flags-new/flags-new.interface.ts} +90 -81
  189. package/src/lib/components/gallery/gallery.component.html +3660 -0
  190. package/src/lib/components/gallery/gallery.component.scss +930 -0
  191. package/src/lib/components/gallery/gallery.component.ts +3527 -0
  192. package/src/lib/components/group-select/group-select.component.html +44 -0
  193. package/src/lib/components/group-select/group-select.component.scss +144 -0
  194. package/src/lib/components/group-select/group-select.component.spec.ts +23 -0
  195. package/src/lib/components/group-select/group-select.component.ts +145 -0
  196. package/src/lib/components/image-popup/image-popup.component.html +11 -0
  197. package/src/lib/components/image-popup/image-popup.component.scss +5 -0
  198. package/src/lib/components/image-popup/image-popup.component.ts +18 -0
  199. package/src/lib/components/lib/custom-select/custom-select.component.html +42 -0
  200. package/src/lib/components/lib/custom-select/custom-select.component.scss +131 -0
  201. package/src/lib/components/lib/custom-select/custom-select.component.spec.ts +23 -0
  202. package/src/lib/components/lib/custom-select/custom-select.component.ts +151 -0
  203. package/src/lib/components/manage-task/manage-task.component.html +265 -0
  204. package/src/lib/components/manage-task/manage-task.component.scss +69 -0
  205. package/src/lib/components/manage-task/manage-task.component.spec.ts +23 -0
  206. package/src/lib/components/manage-task/manage-task.component.ts +267 -0
  207. package/src/lib/components/managechecklist/managechecklist.component.html +176 -0
  208. package/src/lib/components/managechecklist/managechecklist.component.scss +43 -0
  209. package/src/lib/components/managechecklist/managechecklist.component.spec.ts +23 -0
  210. package/src/lib/components/managechecklist/managechecklist.component.ts +176 -0
  211. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.html +46 -0
  212. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.scss +181 -0
  213. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.spec.ts +23 -0
  214. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.ts +221 -0
  215. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.html +36 -0
  216. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.scss +89 -0
  217. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.spec.ts +23 -0
  218. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.ts +118 -0
  219. package/src/lib/components/orders/orders.component.html +203 -0
  220. package/src/lib/components/orders/orders.component.scss +180 -0
  221. package/src/lib/components/orders/orders.component.spec.ts +25 -0
  222. package/src/lib/components/orders/orders.component.ts +197 -0
  223. package/src/lib/components/pagination/pagination.component.html +28 -0
  224. package/src/lib/components/pagination/pagination.component.scss +6 -0
  225. package/src/lib/components/pagination/pagination.component.spec.ts +23 -0
  226. package/src/lib/components/pagination/pagination.component.ts +54 -0
  227. package/src/lib/components/reactive-select/reactive-select.component.html +18 -0
  228. package/src/lib/components/reactive-select/reactive-select.component.scss +48 -0
  229. package/src/lib/components/reactive-select/reactive-select.component.spec.ts +23 -0
  230. package/src/lib/components/reactive-select/reactive-select.component.ts +104 -0
  231. package/src/lib/components/reports/date-picker/date-picker.component.html +54 -0
  232. package/src/lib/components/reports/date-picker/date-picker.component.scss +156 -0
  233. package/src/lib/components/reports/date-picker/date-picker.component.spec.ts +23 -0
  234. package/src/lib/components/reports/date-picker/date-picker.component.ts +60 -0
  235. package/src/lib/components/reports/reports.component.html +225 -0
  236. package/src/lib/components/reports/reports.component.scss +69 -0
  237. package/src/lib/components/reports/reports.component.spec.ts +23 -0
  238. package/src/lib/components/reports/reports.component.ts +334 -0
  239. package/{lib/components/reports/reports.interface.d.ts → src/lib/components/reports/reports.interface.ts} +50 -46
  240. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.html +1 -0
  241. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.scss +15 -0
  242. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.spec.ts +23 -0
  243. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.ts +31 -0
  244. package/src/lib/components/task/task.component.html +322 -0
  245. package/src/lib/components/task/task.component.scss +169 -0
  246. package/src/lib/components/task/task.component.spec.ts +23 -0
  247. package/src/lib/components/task/task.component.ts +340 -0
  248. package/src/lib/components/task-configure/task-configure.component.html +737 -0
  249. package/src/lib/components/task-configure/task-configure.component.scss +569 -0
  250. package/src/lib/components/task-configure/task-configure.component.spec.ts +23 -0
  251. package/src/lib/components/task-configure/task-configure.component.ts +1603 -0
  252. package/src/lib/components/task-configure/task-configure.interface.ts +138 -0
  253. package/src/lib/components/task-info/task-info.component.html +390 -0
  254. package/src/lib/components/task-info/task-info.component.scss +56 -0
  255. package/src/lib/components/task-info/task-info.component.spec.ts +23 -0
  256. package/src/lib/components/task-info/task-info.component.ts +400 -0
  257. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.html +141 -0
  258. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.scss +460 -0
  259. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.spec.ts +23 -0
  260. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.ts +202 -0
  261. package/src/lib/components/task-layout/task-layout.component.html +1 -0
  262. package/src/lib/components/task-layout/task-layout.component.scss +0 -0
  263. package/src/lib/components/task-layout/task-layout.component.spec.ts +23 -0
  264. package/src/lib/components/task-layout/task-layout.component.ts +10 -0
  265. package/src/lib/components/task-logs/task-logs.component.html +97 -0
  266. package/src/lib/components/task-logs/task-logs.component.scss +301 -0
  267. package/src/lib/components/task-logs/task-logs.component.spec.ts +23 -0
  268. package/src/lib/components/task-logs/task-logs.component.ts +80 -0
  269. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.html +84 -0
  270. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.scss +229 -0
  271. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.spec.ts +23 -0
  272. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.ts +111 -0
  273. package/src/lib/components/trax-store/trax-store.component.html +78 -0
  274. package/src/lib/components/trax-store/trax-store.component.scss +134 -0
  275. package/src/lib/components/trax-store/trax-store.component.spec.ts +23 -0
  276. package/src/lib/components/trax-store/trax-store.component.ts +172 -0
  277. package/src/lib/components/traxpopup/traxpopup.component.html +130 -0
  278. package/src/lib/components/traxpopup/traxpopup.component.scss +225 -0
  279. package/src/lib/components/traxpopup/traxpopup.component.spec.ts +23 -0
  280. package/src/lib/components/traxpopup/traxpopup.component.ts +71 -0
  281. package/src/lib/services/trax.service.spec.ts +16 -0
  282. package/src/lib/services/trax.service.ts +789 -0
  283. package/src/lib/tango-analyse-trax-routing.module.ts +151 -0
  284. package/src/lib/tango-analyse-trax.module.ts +140 -0
  285. package/{public-api.d.ts → src/public-api.ts} +6 -2
  286. package/tsconfig.lib.json +14 -0
  287. package/tsconfig.lib.prod.json +10 -0
  288. package/tsconfig.spec.json +14 -0
  289. package/esm2022/lib/components/action-centre/action-centre.component.mjs +0 -288
  290. package/esm2022/lib/components/activity-log/activity-log.component.mjs +0 -150
  291. package/esm2022/lib/components/activity-log-v2/activity-log-v2.component.mjs +0 -502
  292. package/esm2022/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.mjs +0 -114
  293. package/esm2022/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.mjs +0 -24
  294. package/esm2022/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.mjs +0 -126
  295. package/esm2022/lib/components/add-checklist/add-checklist.component.mjs +0 -2352
  296. package/esm2022/lib/components/add-checklist/checklist-popup/checklist-popup.component.mjs +0 -612
  297. package/esm2022/lib/components/add-checklist/counter/counter.component.mjs +0 -138
  298. package/esm2022/lib/components/add-multitask/add-multitask.component.mjs +0 -604
  299. package/esm2022/lib/components/add-multitask/ascending-validator.mjs +0 -11
  300. package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +0 -297
  301. package/esm2022/lib/components/add-multitask/create-task.data.mjs +0 -372
  302. package/esm2022/lib/components/add-multitask/create-task.interface.mjs +0 -2
  303. package/esm2022/lib/components/add-multitask/unique-string-validator.mjs +0 -10
  304. package/esm2022/lib/components/add-multitask/whitespace-validator.mjs +0 -10
  305. package/esm2022/lib/components/add-task/add-task.component.mjs +0 -561
  306. package/esm2022/lib/components/add-task/ascending-validator.mjs +0 -11
  307. package/esm2022/lib/components/add-task/create-task.data.mjs +0 -372
  308. package/esm2022/lib/components/add-task/create-task.interface.mjs +0 -2
  309. package/esm2022/lib/components/add-task/unique-string-validator.mjs +0 -10
  310. package/esm2022/lib/components/add-task/whitespace-validator.mjs +0 -10
  311. package/esm2022/lib/components/approval-popup/approval-popup.component.mjs +0 -30
  312. package/esm2022/lib/components/checklist/checklist.component.mjs +0 -327
  313. package/esm2022/lib/components/checklist-configure/assign/assign.component.mjs +0 -912
  314. package/esm2022/lib/components/checklist-configure/checklist-configure.component.mjs +0 -4161
  315. package/esm2022/lib/components/checklistlayout/checklistlayout.component.mjs +0 -44
  316. package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +0 -120
  317. package/esm2022/lib/components/create-task/create-task.component.mjs +0 -585
  318. package/esm2022/lib/components/create-task/create-task.data.mjs +0 -372
  319. package/esm2022/lib/components/create-task/create-task.interface.mjs +0 -2
  320. package/esm2022/lib/components/create-task/validators/ascending-validator.mjs +0 -11
  321. package/esm2022/lib/components/create-task/validators/unique-string-validator.mjs +0 -10
  322. package/esm2022/lib/components/create-task/validators/whitespace-validator.mjs +0 -10
  323. package/esm2022/lib/components/custom-select/custom-select.component.mjs +0 -240
  324. package/esm2022/lib/components/dashboard/dashboard.component.mjs +0 -532
  325. package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +0 -741
  326. package/esm2022/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.mjs +0 -155
  327. package/esm2022/lib/components/dashboard-layout/dashboard-layout.component.mjs +0 -12
  328. package/esm2022/lib/components/disabled-select/disabled-select.component.mjs +0 -158
  329. package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +0 -266
  330. package/esm2022/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.mjs +0 -105
  331. package/esm2022/lib/components/eye-test-audit/custom-select/custom-select.component.mjs +0 -240
  332. package/esm2022/lib/components/eye-test-audit/eye-test/eye-test.component.mjs +0 -1733
  333. package/esm2022/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.mjs +0 -24
  334. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.mjs +0 -34
  335. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.mjs +0 -27
  336. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.mjs +0 -71
  337. package/esm2022/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.mjs +0 -823
  338. package/esm2022/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.mjs +0 -412
  339. package/esm2022/lib/components/eye-test-audit/group-select/group-select.component.mjs +0 -157
  340. package/esm2022/lib/components/eye-test-audit/reactive-select/reactive-select.component.mjs +0 -105
  341. package/esm2022/lib/components/eye-test-audit/select-drop/select-drop.component.mjs +0 -162
  342. package/esm2022/lib/components/eye-test-audit/services/eye-test-audit.service.mjs +0 -166
  343. package/esm2022/lib/components/flag-layout/flag-layout.component.mjs +0 -12
  344. package/esm2022/lib/components/flags/flags.component.mjs +0 -263
  345. package/esm2022/lib/components/flags/flags.interface.mjs +0 -2
  346. package/esm2022/lib/components/flags-info/flags-info.component.mjs +0 -452
  347. package/esm2022/lib/components/flags-info/flags-info.interface.mjs +0 -2
  348. package/esm2022/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.mjs +0 -71
  349. package/esm2022/lib/components/flags-new/flags-new.component.mjs +0 -335
  350. package/esm2022/lib/components/flags-new/flags-new.interface.mjs +0 -2
  351. package/esm2022/lib/components/gallery/gallery.component.mjs +0 -3402
  352. package/esm2022/lib/components/group-select/group-select.component.mjs +0 -155
  353. package/esm2022/lib/components/image-popup/image-popup.component.mjs +0 -25
  354. package/esm2022/lib/components/lib/custom-select/custom-select.component.mjs +0 -158
  355. package/esm2022/lib/components/manage-task/manage-task.component.mjs +0 -264
  356. package/esm2022/lib/components/managechecklist/managechecklist.component.mjs +0 -186
  357. package/esm2022/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.mjs +0 -229
  358. package/esm2022/lib/components/multi-date-datepicker/multi-date-datepicker.component.mjs +0 -124
  359. package/esm2022/lib/components/orders/orders.component.mjs +0 -171
  360. package/esm2022/lib/components/pagination/pagination.component.mjs +0 -62
  361. package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +0 -108
  362. package/esm2022/lib/components/reports/date-picker/date-picker.component.mjs +0 -60
  363. package/esm2022/lib/components/reports/reports.component.mjs +0 -300
  364. package/esm2022/lib/components/reports/reports.interface.mjs +0 -2
  365. package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +0 -32
  366. package/esm2022/lib/components/task/task.component.mjs +0 -341
  367. package/esm2022/lib/components/task-configure/task-configure.component.mjs +0 -1532
  368. package/esm2022/lib/components/task-configure/task-configure.interface.mjs +0 -2
  369. package/esm2022/lib/components/task-info/task-info.component.mjs +0 -375
  370. package/esm2022/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.mjs +0 -208
  371. package/esm2022/lib/components/task-layout/task-layout.component.mjs +0 -12
  372. package/esm2022/lib/components/task-logs/task-logs.component.mjs +0 -104
  373. package/esm2022/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.mjs +0 -107
  374. package/esm2022/lib/components/trax-store/trax-store.component.mjs +0 -179
  375. package/esm2022/lib/components/traxpopup/traxpopup.component.mjs +0 -70
  376. package/esm2022/lib/services/trax.service.mjs +0 -559
  377. package/esm2022/lib/tango-analyse-trax-routing.module.mjs +0 -153
  378. package/esm2022/lib/tango-analyse-trax.module.mjs +0 -221
  379. package/esm2022/public-api.mjs +0 -6
  380. package/esm2022/tango-app-ui-analyse-trax.mjs +0 -5
  381. package/fesm2022/tango-app-ui-analyse-trax.mjs +0 -28896
  382. package/fesm2022/tango-app-ui-analyse-trax.mjs.map +0 -1
  383. package/index.d.ts +0 -5
  384. package/lib/components/action-centre/action-centre.component.d.ts +0 -68
  385. package/lib/components/activity-log/activity-log.component.d.ts +0 -39
  386. package/lib/components/activity-log-v2/activity-log-v2.component.d.ts +0 -78
  387. package/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.d.ts +0 -24
  388. package/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.d.ts +0 -9
  389. package/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.d.ts +0 -34
  390. package/lib/components/add-checklist/add-checklist.component.d.ts +0 -121
  391. package/lib/components/add-checklist/checklist-popup/checklist-popup.component.d.ts +0 -45
  392. package/lib/components/add-checklist/counter/counter.component.d.ts +0 -29
  393. package/lib/components/add-multitask/add-multitask.component.d.ts +0 -102
  394. package/lib/components/add-multitask/ascending-validator.d.ts +0 -2
  395. package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +0 -45
  396. package/lib/components/add-multitask/create-task.data.d.ts +0 -293
  397. package/lib/components/add-multitask/create-task.interface.d.ts +0 -159
  398. package/lib/components/add-multitask/unique-string-validator.d.ts +0 -2
  399. package/lib/components/add-multitask/whitespace-validator.d.ts +0 -2
  400. package/lib/components/add-task/add-task.component.d.ts +0 -89
  401. package/lib/components/add-task/ascending-validator.d.ts +0 -2
  402. package/lib/components/add-task/create-task.data.d.ts +0 -293
  403. package/lib/components/add-task/create-task.interface.d.ts +0 -161
  404. package/lib/components/add-task/unique-string-validator.d.ts +0 -2
  405. package/lib/components/add-task/whitespace-validator.d.ts +0 -2
  406. package/lib/components/approval-popup/approval-popup.component.d.ts +0 -14
  407. package/lib/components/checklist/checklist.component.d.ts +0 -40
  408. package/lib/components/checklist-configure/assign/assign.component.d.ts +0 -105
  409. package/lib/components/checklist-configure/checklist-configure.component.d.ts +0 -325
  410. package/lib/components/checklistlayout/checklistlayout.component.d.ts +0 -15
  411. package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +0 -28
  412. package/lib/components/create-task/create-task.component.d.ts +0 -76
  413. package/lib/components/create-task/create-task.data.d.ts +0 -293
  414. package/lib/components/create-task/create-task.interface.d.ts +0 -163
  415. package/lib/components/create-task/validators/ascending-validator.d.ts +0 -2
  416. package/lib/components/create-task/validators/unique-string-validator.d.ts +0 -2
  417. package/lib/components/create-task/validators/whitespace-validator.d.ts +0 -2
  418. package/lib/components/custom-select/custom-select.component.d.ts +0 -35
  419. package/lib/components/dashboard/dashboard.component.d.ts +0 -80
  420. package/lib/components/dashboard-info/dashboard-info.component.d.ts +0 -117
  421. package/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.d.ts +0 -41
  422. package/lib/components/dashboard-layout/dashboard-layout.component.d.ts +0 -5
  423. package/lib/components/disabled-select/disabled-select.component.d.ts +0 -34
  424. package/lib/components/export-gallery/export-gallery.component.d.ts +0 -44
  425. package/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.d.ts +0 -26
  426. package/lib/components/eye-test-audit/custom-select/custom-select.component.d.ts +0 -35
  427. package/lib/components/eye-test-audit/eye-test/eye-test.component.d.ts +0 -218
  428. package/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.d.ts +0 -12
  429. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.d.ts +0 -7
  430. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.d.ts +0 -11
  431. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.d.ts +0 -21
  432. package/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.d.ts +0 -129
  433. package/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.d.ts +0 -86
  434. package/lib/components/eye-test-audit/group-select/group-select.component.d.ts +0 -33
  435. package/lib/components/eye-test-audit/reactive-select/reactive-select.component.d.ts +0 -32
  436. package/lib/components/eye-test-audit/select-drop/select-drop.component.d.ts +0 -33
  437. package/lib/components/eye-test-audit/services/eye-test-audit.service.d.ts +0 -47
  438. package/lib/components/flag-layout/flag-layout.component.d.ts +0 -5
  439. package/lib/components/flags/flags.component.d.ts +0 -52
  440. package/lib/components/flags-info/flags-info.component.d.ts +0 -73
  441. package/lib/components/flags-info/flags-info.interface.d.ts +0 -430
  442. package/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.d.ts +0 -13
  443. package/lib/components/flags-new/flags-new.component.d.ts +0 -60
  444. package/lib/components/gallery/gallery.component.d.ts +0 -261
  445. package/lib/components/group-select/group-select.component.d.ts +0 -33
  446. package/lib/components/image-popup/image-popup.component.d.ts +0 -11
  447. package/lib/components/lib/custom-select/custom-select.component.d.ts +0 -33
  448. package/lib/components/manage-task/manage-task.component.d.ts +0 -47
  449. package/lib/components/managechecklist/managechecklist.component.d.ts +0 -33
  450. package/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.d.ts +0 -40
  451. package/lib/components/multi-date-datepicker/multi-date-datepicker.component.d.ts +0 -27
  452. package/lib/components/orders/orders.component.d.ts +0 -38
  453. package/lib/components/pagination/pagination.component.d.ts +0 -16
  454. package/lib/components/reactive-select/reactive-select.component.d.ts +0 -32
  455. package/lib/components/reports/date-picker/date-picker.component.d.ts +0 -23
  456. package/lib/components/reports/reports.component.d.ts +0 -55
  457. package/lib/components/tango-analyse-trax/tango-analyse-trax.component.d.ts +0 -14
  458. package/lib/components/task/task.component.d.ts +0 -70
  459. package/lib/components/task-configure/task-configure.component.d.ts +0 -142
  460. package/lib/components/task-configure/task-configure.interface.d.ts +0 -128
  461. package/lib/components/task-info/task-info.component.d.ts +0 -76
  462. package/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.d.ts +0 -61
  463. package/lib/components/task-layout/task-layout.component.d.ts +0 -5
  464. package/lib/components/task-logs/task-logs.component.d.ts +0 -27
  465. package/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.d.ts +0 -26
  466. package/lib/components/trax-store/trax-store.component.d.ts +0 -45
  467. package/lib/components/traxpopup/traxpopup.component.d.ts +0 -24
  468. package/lib/services/trax.service.d.ts +0 -175
  469. package/lib/tango-analyse-trax-routing.module.d.ts +0 -7
  470. package/lib/tango-analyse-trax.module.d.ts +0 -68
@@ -0,0 +1,665 @@
1
+ <div class="card-body bg-white mt-3 rounded-4 px-7">
2
+ <div>
3
+ <div class="d-flex justify-content-between">
4
+ <div>
5
+ <h2 class="section-leftheading ">Assign Stores
6
+ <!-- <span class="mx-2"><svg xmlns="http://www.w3.org/2000/svg" width="16"
7
+ height="16" viewBox="0 0 16 16" fill="none">
8
+ <g clip-path="url(#clip0_1874_66195)">
9
+ <path
10
+ d="M8.00016 10.6673V8.00065M8.00016 5.33398H8.00683M14.6668 8.00065C14.6668 11.6826 11.6821 14.6673 8.00016 14.6673C4.31826 14.6673 1.3335 11.6826 1.3335 8.00065C1.3335 4.31875 4.31826 1.33398 8.00016 1.33398C11.6821 1.33398 14.6668 4.31875 14.6668 8.00065Z"
11
+ stroke="#667085" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
12
+ </g>
13
+ <defs>
14
+ <clipPath id="clip0_1874_66195">
15
+ <rect width="16" height="16" fill="white" />
16
+ </clipPath>
17
+ </defs>
18
+ </svg></span> -->
19
+ </h2>
20
+ <p>Select stores to assign</p>
21
+ </div>
22
+ </div>
23
+
24
+ <div class="mt-5 ms-5 storeAssign sopTable d-flex">
25
+ <div><input class="form-check-input h-14px w-14px mx-1" type="checkbox" name="flag"
26
+ [(ngModel)]="configData.enableNewDeployedStore"></div> <div>
27
+ <span class="ms-2 lineHeight">Auto assign to newly deployed stores</span>
28
+ </div>
29
+ </div>
30
+
31
+ <div class="w-100 ms-5">
32
+ <div *ngIf="this.configData?.aiConfig?.assignConfig !=='store'" class="d-flex align-items-center my-5 w-20">
33
+ <div class="flex-grow-2">
34
+ <div class="sub">Selected <span>Stores</span> </div>
35
+ </div>
36
+ </div>
37
+ <!-- *ngIf="!['cluster','team'].includes(assignType)" -->
38
+ <div class="w-100 pe-5">
39
+ <lib-multi-chip-dropdown *ngIf="storeList" [items]="storeList" [multi]="true" [searchField]="['storeName','openTime','closeTime','storeId']" [searchKey]="searchKey" [idField]="'_id'"
40
+ (selected)="updateAssign($event)" (removed)="removedChip($event)" [selectedValues]="configData?.storeList" [assignType]="configData?.aiConfig?.assignConfig"></lib-multi-chip-dropdown>
41
+ </div>
42
+ <!-- <div *ngIf="['cluster','team'].includes(assignType)" class="w-100 pe-5">
43
+ <lib-multi-chip-dropdown *ngIf="storeList" [items]="storeList" [multi]="true" [searchField]="['storeName','clusterName','storeId','userName','teamName']" [searchKey]="searchKey" [idField]="'_id'"
44
+ (selected)="updateAssign($event)" (removed)="removedChip($event)" [selectedValues]="configData?.checkListDetails?.assign"></lib-multi-chip-dropdown>
45
+ </div> -->
46
+ </div>
47
+
48
+ <div class="" *ngIf="tableData.length || tableFilter.length || !showImage">
49
+
50
+ <div *ngIf="!tableLoading && tableArray?.length" class="card-body px-0 mt-0 pt-0 pb-0 mx-4 mb-5">
51
+ <div class="w-100">
52
+ <div class="table-header mt-5 d-flex align-items-center justify-content-between">
53
+ <div class="table-title">Selected <span>Stores</span> List</div>
54
+ <div class="d-flex align-items-center justify-content-start">
55
+ <div class="me-3">
56
+ <input type="text" data-kt-subscription-table-filter="search" (change)="searchTableData()" [(ngModel)]="tableFilter"
57
+ class="form-control form-control-solid w-200px ps-5 mx-1 me-4" autocomplete="off"
58
+ autocapitalize="none"
59
+ spellcheck="false" style="text-transform: none" placeholder="Search...">
60
+ </div>
61
+
62
+ <div class="position-relative w-100 mt-5 mb-5">
63
+ <button type="button"
64
+ class="btn py-3 btn-default w-100 btn-outline btn-outline-default rounded-3 text-nowrap border-val d-flex justify-content-between">
65
+ <span class="me-3 cursor-pointer" #upload (click)="file.click()"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
66
+ <path 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" stroke="#344054" stroke-width="1.67" stroke-linecap="round" stroke-linejoin="round"/>
67
+ </svg> <span class="template-dropdown bg-white ms-3">BulkUpload </span>
68
+ </span>
69
+ <span><input style="display: none;" type="file" #file
70
+ id="kt_account_team_size_select_1" (change)="onFileUpload($event)" /></span>
71
+ <span class="subtitle mx-3 me-2"> | </span>
72
+ <span class="cursor-pointer" (click)="openDropdown($event)"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
73
+ <path d="M6 9L12 15L18 9" stroke="#344054" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
74
+ </svg></span>
75
+ </button>
76
+
77
+ <div *ngIf="dropDown" class="card template-dropdown h-40px w-100 position-absolute rounded-3 z-1 top-50px end-0">
78
+ <ul class="list-unstyled mb-0 w-auto cursor-pointer" (click)="bulkuploadModel()">
79
+ <li class="px-5 fw-semibold cursor-pointer py-2">Download Template</li>
80
+ </ul>
81
+ </div>
82
+ </div>
83
+ <!-- <div *ngIf="['cluster','team'].includes(assignType)">
84
+ <button type="button"
85
+ class="btn py-3 btn-default w-100 btn-outline btn-outline-default rounded-3 text-nowrap border-val d-flex justify-content-between" (click)="downloadTemplateV2()">
86
+ <span class="me-3 cursor-pointer"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
87
+ <path d="M8.125 13.125H16.3562L14.7438 14.7438L15.625 15.625L18.75 12.5L15.625 9.375L14.7438 10.2562L16.3562 11.875H8.125V13.125Z" fill="black"/>
88
+ <path d="M13.75 8.75001V6.25001C13.7505 6.16776 13.7347 6.08622 13.7036 6.01007C13.6725 5.93392 13.6267 5.86466 13.5688 5.80626L9.19375 1.43126C9.13535 1.37333 9.06609 1.32751 8.98994 1.2964C8.91379 1.2653 8.83225 1.24953 8.75 1.25001H2.5C2.16848 1.25001 1.85054 1.38171 1.61612 1.61613C1.3817 1.85055 1.25 2.16849 1.25 2.50001V17.5C1.25 17.8315 1.3817 18.1495 1.61612 18.3839C1.85054 18.6183 2.16848 18.75 2.5 18.75H12.5C12.8315 18.75 13.1495 18.6183 13.3839 18.3839C13.6183 18.1495 13.75 17.8315 13.75 17.5V16.25H12.5V17.5H2.5V2.50001H7.5V6.25001C7.5 6.58153 7.6317 6.89947 7.86612 7.13389C8.10054 7.36831 8.41848 7.50001 8.75 7.50001H12.5V8.75001H13.75ZM8.75 6.25001V2.75626L12.2438 6.25001H8.75Z" fill="black"/>
89
+ </svg> <span class="template-dropdown bg-white ms-3">Export </span>
90
+ </span>
91
+ </button>
92
+ </div> -->
93
+
94
+ </div>
95
+ </div>
96
+ <div class="d-flex p-3 bg-light align-items-center justify-content-between ">
97
+ <div class="d-flex">
98
+ <span><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
99
+ <g clip-path="url(#clip0_9558_104867)">
100
+ <path d="M9.9974 13.3346V10.0013M9.9974 6.66797H10.0057M18.3307 10.0013C18.3307 14.6037 14.5998 18.3346 9.9974 18.3346C5.39502 18.3346 1.66406 14.6037 1.66406 10.0013C1.66406 5.39893 5.39502 1.66797 9.9974 1.66797C14.5998 1.66797 18.3307 5.39893 18.3307 10.0013Z" stroke="#009BF3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
101
+ </g>
102
+ <defs>
103
+ <clipPath id="clip0_9558_104867">
104
+ <rect width="20" height="20" fill="white"/>
105
+ </clipPath>
106
+ </defs>
107
+ </svg></span>
108
+ <span class="text-primary fw-semibold ms-3">Incase, you want to change the Store Open and Close time</span>
109
+ </div>
110
+ <div routerLink="/manage/settings/configuration" class="btn btn-sm bg-light-primary">
111
+ <span><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
112
+ <g clip-path="url(#clip0_10234_43824)">
113
+ <path d="M9.16406 3.33417H3.33073C2.8887 3.33417 2.46478 3.50977 2.15222 3.82233C1.83966 4.13489 1.66406 4.55881 1.66406 5.00084V16.6675C1.66406 17.1095 1.83966 17.5335 2.15222 17.846C2.46478 18.1586 2.8887 18.3342 3.33073 18.3342H14.9974C15.4394 18.3342 15.8633 18.1586 16.1759 17.846C16.4885 17.5335 16.6641 17.1095 16.6641 16.6675V10.8342M15.4141 2.08417C15.7456 1.75265 16.1952 1.56641 16.6641 1.56641C17.1329 1.56641 17.5825 1.75265 17.9141 2.08417C18.2456 2.41569 18.4318 2.86533 18.4318 3.33417C18.4318 3.80301 18.2456 4.25265 17.9141 4.58417L9.9974 12.5008L6.66406 13.3342L7.4974 10.0008L15.4141 2.08417Z" stroke="#009BF3" stroke-width="1.67" stroke-linecap="round" stroke-linejoin="round"/>
114
+ </g>
115
+ <defs>
116
+ <clipPath id="clip0_10234_43824">
117
+ <rect width="20" height="20" fill="white"/>
118
+ </clipPath>
119
+ </defs>
120
+ </svg></span> <span class="ms-3 text-light-primary">Edit Store Time</span>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ <div class="row mt-2">
126
+ <div class="col-lg-12" *ngIf="!tableData?.length && !tableFilter && !showImage">
127
+ <div class="card-body my-8 d-flex justify-content-center align-items-center flex-column">
128
+ <img class="img-src" src="./assets/tango/Icons/Nodata1.svg" alt="">
129
+ <div class="nodata-title">No data found</div>
130
+ <div class="nodata-sub">There is no result for the <span>{{assignType}}</span></div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <div class="pt-0 mx-4" *ngIf="tableArray?.length">
136
+ <div class="sopTable table-responsive overflow-hidden">
137
+ <div *ngIf="tableLoading" class="row loader d-flex justify-content-center align-items-center">
138
+ <div class="shimmer">
139
+ <div class="wrapper">
140
+ <div class="stroke animate title"></div>
141
+ <div class="stroke animate link"></div>
142
+ <div class="stroke animate description"></div>
143
+ </div>
144
+ </div>
145
+ <div class="shimmer">
146
+ <div class="wrapper">
147
+ <div class="stroke animate title"></div>
148
+ <div class="stroke animate link"></div>
149
+ <div class="stroke animate description"></div>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ <div class="col-lg-12" *ngIf="tableFilter && !tableData?.length">
154
+ <div class="card-body my-8 d-flex justify-content-center align-items-center flex-column">
155
+ <img class="img-src" src="./assets/tango/Icons/Nodata1.svg" alt="">
156
+ <div class="nodata-title">No data found</div>
157
+ <div class="nodata-sub">There is no result for the <span>{{assignType}}</span></div>
158
+ </div>
159
+ </div>
160
+ <div class="card-body-sop" *ngIf="tableData.length && !tableLoading">
161
+ <div class="table-responsive" >
162
+ <table class="w-100 table bottom-border text-nowrap">
163
+ <thead>
164
+ <tr>
165
+ <th class="text-align-left">
166
+ <div class="cursor-pointer" (click)="sortData('storeName')">
167
+ Store Name
168
+ <span
169
+ *ngIf="sortColumn === 'storeName' && sortBy !== 1 || sortColumn !== 'storeName' ">
170
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
171
+ xmlns="http://www.w3.org/2000/svg">
172
+ <path
173
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
174
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
175
+ stroke-linejoin="round" />
176
+ </svg>
177
+ </span>
178
+ <span *ngIf="sortColumn === 'storeName' && sortBy !== -1">
179
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
180
+ xmlns="http://www.w3.org/2000/svg">
181
+ <path
182
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
183
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
184
+ stroke-linejoin="round" />
185
+ </svg>
186
+ </span>
187
+ </div>
188
+ </th>
189
+
190
+ <th class="text-align-left">
191
+ <div class="cursor-pointer" (click)="sortData('openTime')">
192
+ Open Time
193
+ <span
194
+ *ngIf="sortColumn === 'openTime' && sortBy !== 1 || sortColumn !== 'openTime' ">
195
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
196
+ xmlns="http://www.w3.org/2000/svg">
197
+ <path
198
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
199
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
200
+ stroke-linejoin="round" />
201
+ </svg>
202
+ </span>
203
+ <span *ngIf="sortColumn === 'openTime' && sortBy !== -1">
204
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
205
+ xmlns="http://www.w3.org/2000/svg">
206
+ <path
207
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
208
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
209
+ stroke-linejoin="round" />
210
+ </svg>
211
+ </span>
212
+ </div>
213
+ </th>
214
+ <th class="text-align-left">
215
+ <div class="cursor-pointer" (click)="sortData('closeTime')">
216
+ Close Time
217
+ <span
218
+ *ngIf="sortColumn === 'closeTime' && sortBy !== 1 || sortColumn !== 'closeTime' ">
219
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
220
+ xmlns="http://www.w3.org/2000/svg">
221
+ <path
222
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
223
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
224
+ stroke-linejoin="round" />
225
+ </svg>
226
+ </span>
227
+ <span *ngIf="sortColumn === 'closeTime' && sortBy !== -1">
228
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
229
+ xmlns="http://www.w3.org/2000/svg">
230
+ <path
231
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
232
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
233
+ stroke-linejoin="round" />
234
+ </svg>
235
+ </span>
236
+ </div>
237
+ </th>
238
+ <th *ngIf="configData?.aiConfig?.assignConfig === 'store'" class="text-align-left">
239
+ <div class="cursor-pointer" (click)="sortData('startTime1')">
240
+ Huddle Start Time 1
241
+ <span
242
+ *ngIf="sortColumn === 'startTime1' && sortBy !== 1 || sortColumn !== 'startTime1' ">
243
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
244
+ xmlns="http://www.w3.org/2000/svg">
245
+ <path
246
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
247
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
248
+ stroke-linejoin="round" />
249
+ </svg>
250
+ </span>
251
+ <span *ngIf="sortColumn === 'startTime1' && sortBy !== -1">
252
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
253
+ xmlns="http://www.w3.org/2000/svg">
254
+ <path
255
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
256
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
257
+ stroke-linejoin="round" />
258
+ </svg>
259
+ </span>
260
+ </div>
261
+ </th>
262
+ <th *ngIf="configData?.aiConfig?.assignConfig === 'store'" class="text-align-left">
263
+ <div class="cursor-pointer" (click)="sortData('configTime1')">
264
+ Huddle Duration 1
265
+ <span
266
+ *ngIf="sortColumn === 'configTime1' && sortBy !== 1 || sortColumn !== 'configTime1' ">
267
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
268
+ xmlns="http://www.w3.org/2000/svg">
269
+ <path
270
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
271
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
272
+ stroke-linejoin="round" />
273
+ </svg>
274
+ </span>
275
+ <span *ngIf="sortColumn === 'configTime1' && sortBy !== -1">
276
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
277
+ xmlns="http://www.w3.org/2000/svg">
278
+ <path
279
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
280
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
281
+ stroke-linejoin="round" />
282
+ </svg>
283
+ </span>
284
+ </div>
285
+ </th>
286
+ <th *ngIf="configData?.aiConfig?.assignConfig === 'store'" class="text-align-left">
287
+ <div class="cursor-pointer" (click)="sortData('startTime2')">
288
+ Huddle Start Time 2
289
+ <span
290
+ *ngIf="sortColumn === 'startTime2' && sortBy !== 1 || sortColumn !== 'startTime2' ">
291
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
292
+ xmlns="http://www.w3.org/2000/svg">
293
+ <path
294
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
295
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
296
+ stroke-linejoin="round" />
297
+ </svg>
298
+ </span>
299
+ <span *ngIf="sortColumn === 'startTime2' && sortBy !== -1">
300
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
301
+ xmlns="http://www.w3.org/2000/svg">
302
+ <path
303
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
304
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
305
+ stroke-linejoin="round" />
306
+ </svg>
307
+ </span>
308
+ </div>
309
+ </th>
310
+ <th *ngIf="configData?.aiConfig?.assignConfig === 'store'" class="text-align-left">
311
+ <div class="cursor-pointer" (click)="sortData('configTime2')">
312
+ Huddle Duration 2
313
+ <span
314
+ *ngIf="sortColumn === 'configTime2' && sortBy !== 1 || sortColumn !== 'configTime2' ">
315
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
316
+ xmlns="http://www.w3.org/2000/svg">
317
+ <path
318
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
319
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
320
+ stroke-linejoin="round" />
321
+ </svg>
322
+ </span>
323
+ <span *ngIf="sortColumn === 'configTime2' && sortBy !== -1">
324
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
325
+ xmlns="http://www.w3.org/2000/svg">
326
+ <path
327
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
328
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
329
+ stroke-linejoin="round" />
330
+ </svg>
331
+ </span>
332
+ </div>
333
+ </th>
334
+ <th *ngIf="configData?.aiConfig?.assignConfig === 'store'" class="text-align-left">
335
+ <div class="cursor-pointer" (click)="sortData('startTime3')">
336
+ Huddle Start Time 3
337
+ <span
338
+ *ngIf="sortColumn === 'startTime3' && sortBy !== 1 || sortColumn !== 'startTime3' ">
339
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
340
+ xmlns="http://www.w3.org/2000/svg">
341
+ <path
342
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
343
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
344
+ stroke-linejoin="round" />
345
+ </svg>
346
+ </span>
347
+ <span *ngIf="sortColumn === 'startTime3' && sortBy !== -1">
348
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
349
+ xmlns="http://www.w3.org/2000/svg">
350
+ <path
351
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
352
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
353
+ stroke-linejoin="round" />
354
+ </svg>
355
+ </span>
356
+ </div>
357
+ </th>
358
+ <th *ngIf="configData?.aiConfig?.assignConfig === 'store'" class="text-align-left">
359
+ <div class="cursor-pointer" (click)="sortData('configTime3')">
360
+ Huddle Duration 3
361
+ <span
362
+ *ngIf="sortColumn === 'configTime3' && sortBy !== 1 || sortColumn !== 'configTime3' ">
363
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
364
+ xmlns="http://www.w3.org/2000/svg">
365
+ <path
366
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
367
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
368
+ stroke-linejoin="round" />
369
+ </svg>
370
+ </span>
371
+ <span *ngIf="sortColumn === 'configTime3' && sortBy !== -1">
372
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
373
+ xmlns="http://www.w3.org/2000/svg">
374
+ <path
375
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
376
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
377
+ stroke-linejoin="round" />
378
+ </svg>
379
+ </span>
380
+ </div>
381
+ </th>
382
+ </tr>
383
+ </thead>
384
+ <tbody>
385
+ <tr *ngFor="let data of tableData;let i=index">
386
+ <td>{{data.storeName}}
387
+ </td>
388
+ <td>{{data.openTime ? data.openTime : '--'}}</td>
389
+ <td>{{data.closeTime ? data.closeTime : '--'}}</td>
390
+ <td *ngIf="configData?.aiConfig?.assignConfig === 'store'">{{data.startTime1 ? data.startTime1 : '--'}}</td>
391
+ <td *ngIf="configData?.aiConfig?.assignConfig === 'store'">{{data.configTime1 ? data.configTime1 : '--'}}</td>
392
+ <td *ngIf="configData?.aiConfig?.assignConfig === 'store'">{{data.startTime2 ? data.startTime2 : '--'}}</td>
393
+ <td *ngIf="configData?.aiConfig?.assignConfig === 'store'">{{data.configTime2 ? data.configTime2 : '--'}}</td>
394
+ <td *ngIf="configData?.aiConfig?.assignConfig === 'store'">{{data.startTime3 ? data.startTime3 : '--'}}</td>
395
+ <td *ngIf="configData?.aiConfig?.assignConfig === 'store'">{{data.configTime3 ? data.configTime3 : '--'}}</td>
396
+ </tbody>
397
+ </table>
398
+ <!-- <table *ngIf="userCoverage" class="w-100 table bottom-border text-nowrap">
399
+ <thead>
400
+ <tr>
401
+ <th class="text-align-left">
402
+ <div class="cursor-pointer" (click)="sortData('userName')">
403
+ User Name
404
+ <span
405
+ *ngIf="sortColumn === 'userName' && sortBy !== 1 || sortColumn !== 'userName' ">
406
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
407
+ xmlns="http://www.w3.org/2000/svg">
408
+ <path
409
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
410
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
411
+ stroke-linejoin="round" />
412
+ </svg>
413
+ </span>
414
+ <span *ngIf="sortColumn === 'userName' && sortBy !== -1">
415
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
416
+ xmlns="http://www.w3.org/2000/svg">
417
+ <path
418
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
419
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
420
+ stroke-linejoin="round" />
421
+ </svg>
422
+ </span>
423
+ </div>
424
+ </th>
425
+ <th class="text-align-left">
426
+ <div class="cursor-pointer" (click)="sortData('userEmail')">
427
+ User Email
428
+ <span
429
+ *ngIf="sortColumn === 'userEmail' && sortBy !== 1 || sortColumn !== 'userEmail' ">
430
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
431
+ xmlns="http://www.w3.org/2000/svg">
432
+ <path
433
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
434
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
435
+ stroke-linejoin="round" />
436
+ </svg>
437
+ </span>
438
+ <span *ngIf="sortColumn === 'userEmail' && sortBy !== -1">
439
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
440
+ xmlns="http://www.w3.org/2000/svg">
441
+ <path
442
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
443
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
444
+ stroke-linejoin="round" />
445
+ </svg>
446
+ </span>
447
+ </div>
448
+ </th>
449
+ <th *ngIf="assignType ==='team'" class="text-align-left">
450
+ <div class="cursor-pointer" (click)="sortData('teamName')">
451
+ Teams Name
452
+ <span
453
+ *ngIf="sortColumn === 'teamName' && sortBy !== 1 || sortColumn !== 'teamName' ">
454
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
455
+ xmlns="http://www.w3.org/2000/svg">
456
+ <path
457
+ d="M6.00016 1.33337V10.6667M6.00016 10.6667L10.6668 6.00004M6.00016 10.6667L1.3335 6.00004"
458
+ stroke="#667085" stroke-width="1.33333" stroke-linecap="round"
459
+ stroke-linejoin="round" />
460
+ </svg>
461
+ </span>
462
+ <span *ngIf="sortColumn === 'teamName' && sortBy !== -1">
463
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none"
464
+ xmlns="http://www.w3.org/2000/svg">
465
+ <path
466
+ d="M6.00016 10.6667L6.00016 1.33337M6.00016 1.33337L1.3335 6.00004M6.00016 1.33337L10.6668 6.00004"
467
+ stroke="#00A3FF" stroke-width="1.33333" stroke-linecap="round"
468
+ stroke-linejoin="round" />
469
+ </svg>
470
+ </span>
471
+ </div>
472
+ </th>
473
+
474
+ </tr>
475
+ </thead>
476
+ <tbody>
477
+ <tr *ngFor="let data of tableData;let i=index">
478
+ <td>
479
+ <span class="form-check-label mx-4 line-height">{{data.userName}}</span>
480
+ </td>
481
+ <td>{{data.userEmail ? data.userEmail : '--'}}</td>
482
+ <td *ngIf="assignType ==='team'">{{data.teamName ? data.teamName : '--'}}</td>
483
+ </tbody>
484
+ </table> -->
485
+ </div>
486
+ <lib-pagination [itemsPerPage]="size" [currentPage]="currentValue" [totalItems]="recordsTotal"
487
+ [paginationSizes]="paginationSize" [pageSize]="size" (pageChange)="onPageChange($event)"
488
+ (pageSizeChange)="onPageSizeChange($event)"></lib-pagination>
489
+ </div>
490
+ </div>
491
+ <br>
492
+ </div>
493
+ </div>
494
+
495
+ <div *ngIf="tableLoading1 && showImage" class="row loader d-flex justify-content-center align-items-center">
496
+ <div class="shimmer">
497
+ <div class="wrapper">
498
+ <div class="stroke animate title"></div>
499
+ <div class="stroke animate link"></div>
500
+ <div class="stroke animate description"></div>
501
+ </div>
502
+ </div>
503
+ <div class="shimmer">
504
+ <div class="wrapper">
505
+ <div class="stroke animate title"></div>
506
+ <div class="stroke animate link"></div>
507
+ <div class="stroke animate description"></div>
508
+ </div>
509
+ </div>
510
+ </div>
511
+ <div>
512
+ <!-- !configData.storeList -->
513
+ <div *ngIf="!tableArray?.length && !tableLoading1 && !tableFilter?.length && showImage" class="row mb-6">
514
+ <div class="col-lg-12 assignpadding mb-10 mt-10">
515
+ <div class="row">
516
+ <div class="hr w-100 border border-1 position-relative">
517
+ <div class="position-absolute template-dropdown orposition bg-white w-100px">or</div>
518
+ </div>
519
+ <div class="uploadpadding mt-10">
520
+ <ul class="subtext list-unstyled d-flex flex-column align-items-center mx-4">
521
+ <li>Use the template to upload multiple stores at once.</li>
522
+ <li> Download the template here - <span (click)="downloadTemplateV2()" class="cursor-pointer"><span class="me-3"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
523
+ <path 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.5M5.83333 8.33333L10 12.5M10 12.5L14.1667 8.33333M10 12.5V2.5" stroke="#009BF3" stroke-width="1.67" stroke-linecap="round" stroke-linejoin="round"/>
524
+ </svg></span><span class="text-primary">Download Template</span></span></li>
525
+ <li> Add your data to the Template File</li>
526
+ </ul>
527
+ </div>
528
+ <div class="w-100 border border-2 text-center border-dashed rounded-3 border-primary p-5" (dragover)="onDragOver($event)"
529
+ (dragleave)="onDragLeave($event)"
530
+ (drop)="onDrop($event)"
531
+ (click)="file.click()">
532
+ <div class=""><svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 46 46" fill="none">
533
+ <rect x="3" y="3" width="40" height="40" rx="20" fill="#F2F4F7"/>
534
+ <rect x="3" y="3" width="40" height="40" rx="20" stroke="#F9FAFB" stroke-width="6"/>
535
+ <g clip-path="url(#clip0_7979_5202)">
536
+ <path d="M26.3335 26.3332L23.0002 22.9999M23.0002 22.9999L19.6669 26.3332M23.0002 22.9999V30.4999M29.9919 28.3249C30.8047 27.8818 31.4467 27.1806 31.8168 26.3321C32.1868 25.4835 32.2637 24.5359 32.0354 23.6388C31.807 22.7417 31.2865 21.9462 30.5558 21.3778C29.8251 20.8094 28.9259 20.5005 28.0002 20.4999H26.9502C26.698 19.5243 26.2278 18.6185 25.5752 17.8507C24.9225 17.0829 24.1042 16.4731 23.182 16.0671C22.2597 15.661 21.2573 15.4694 20.2503 15.5065C19.2433 15.5436 18.2578 15.8085 17.3679 16.2813C16.4779 16.7541 15.7068 17.4225 15.1124 18.2362C14.518 19.05 14.1158 19.9879 13.936 20.9794C13.7563 21.9709 13.8036 22.9903 14.0746 23.961C14.3455 24.9316 14.8329 25.8281 15.5002 26.5832" stroke="#475467" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
537
+ </g>
538
+ <defs>
539
+ <clipPath id="clip0_7979_5202">
540
+ <rect width="20" height="20" fill="white" transform="translate(13 13)"/>
541
+ </clipPath>
542
+ </defs>
543
+ </svg></div>
544
+ <div class="storetext cursor-pointer mb-2 fw-bold"><span class="text-primary text-decoration-underline">Click To Upload</span>
545
+ or drag and drop
546
+ </div>
547
+ <div class="headeralign fw-400">the data added template file for processing.</div>
548
+ <input style="visibility: hidden;" type="file" #file
549
+ id="kt_account_team_size_select_1" (change)="onFileUpload($event)" />
550
+ </div>
551
+ </div>
552
+
553
+ </div>
554
+ </div>
555
+ <div *ngIf="!tableArray?.length && !tableLoading1 && !tableFilter?.length && showImage && !configData.storeList" class="row loader d-flex justify-content-center align-items-center">
556
+ <div class="card-body my-8 d-flex justify-content-center align-items-center flex-column">
557
+ <img class="img-src" src="./assets/tango/Icons/Nodata1.svg" alt="">
558
+ <div class="nodata-title">No data found</div>
559
+ <div class="nodata-sub">There is no result for the <span>Stores</span></div>
560
+ </div>
561
+ </div>
562
+ </div>
563
+ </div>
564
+ </div>
565
+
566
+ <ng-template #bulkupload let-model>
567
+ <div class="card border-0">
568
+ <div class="card-header border-0 mt-5">
569
+ <div class="card-title mt-3">
570
+ <div class="bg-light-primary rounded-5 w-40px h-40px d-flex justify-content-center align-items-center">
571
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
572
+ <path 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" stroke="#00A3FF" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
573
+ </svg>
574
+ </div> <span class="config-heading fw-semibold ms-5 w-auto">Bulk Upload</span>
575
+ </div>
576
+ </div>
577
+ <div class="card-body pt-0">
578
+ <div class="flex-column">
579
+ <div class="storeAssign mt-3" style="font-weight: 400">Step 1 - <a class="text-decoration-underline cursor-pointer" (click)="downloadTemplateV2()">Download the template here</a></div>
580
+ <div class="storeAssign mt-3" style="font-weight: 400">Step2 - Add your data to the Template File with existing store data</div>
581
+ <div class="storeAssign mt-3" style="font-weight: 400">Step3 - Upload it below for processing</div>
582
+
583
+ <div class="fw-bold storeAssign mt-10">**Note : On upload, all the existing data will be replaced</div>
584
+ </div>
585
+ </div>
586
+ <div class="card-footer border-0 text-end pt-0">
587
+ <button class="btn btn-md btn-default btn-outline" (click)="model.close()">Cancel</button>
588
+ <button class="btn btn-md py-3 btn-default ms-3 btn-primary" (click)="file1.click()">Upload</button>
589
+ <input style="visibility: hidden;" #file1 type="file" id="kt_account_team_size_select_2"
590
+ (change)="onFileUpload($event)" />
591
+ </div>
592
+ </div>
593
+ </ng-template>
594
+
595
+ <ng-template #afterValidation let-model>
596
+ <div class="card border-0">
597
+ <div class="card-header border-0 mt-0">
598
+ <div class="card-title mt-3"><span class="config-heading fw-semibold w-auto">Assign Stores</span></div>
599
+ </div>
600
+ <div class="card-body pt-0">
601
+ <div class="row">
602
+ <div class="col-sm-4">
603
+ <div class="popup-card rounded-3 p-3 flex-column h-80px">
604
+ <div class="fw-semibold config-heading w-100">{{getStoreCounts(excelData)}}</div>
605
+ <div class="fw-semibold subtitle mt-1">Total Stores</div>
606
+ </div>
607
+ </div>
608
+ <div class="col-sm-4">
609
+ <div class="popup-card rounded-3 p-3 flex-column h-80px">
610
+ <div class="fw-semibold config-heading w-100">{{excelData?.length}}</div>
611
+ <div class="fw-semibold subtitle mt-1">Rows processed</div>
612
+ </div>
613
+ </div>
614
+ <div class="col-sm-4">
615
+ <div class="popup-card rounded-3 p-3 flex-column h-80px">
616
+ <div [ngClass]="excelError ? 'error-heading':''" class="fw-semibold config-heading w-100">{{excelError?.error?.length || 0}}</div>
617
+ <div [ngClass]="excelError ? 'excel-error':''" class="fw-semibold subtitle mt-1">Error</div>
618
+ </div>
619
+ </div>
620
+ </div>
621
+ <div *ngIf="!excelError" class="table-header mt-5" style="font-weight: 400;">
622
+ <div *ngIf="!showStore&&!showInactive">You're about to assign {{getStoreCounts(excelData)}} stores to the checklist. Are you sure want to proceed?</div>
623
+ <div *ngIf="showStore" class="mt-3">Store <span *ngFor="let store of validatedStore;let last = last" class="fw-semibold config-heading">{{store}}<span *ngIf="!last">,</span></span> that I’m looking for isn’t available, <a routerLink="/manage/stores" [queryParams]="{type: 'stores'}" class="text-decoration-underline cursor-pointer" (click)="closeactivepopup()">Onboard Stores</a></div>
624
+ <div *ngIf="showInactive" class="mt-3">Store <span *ngFor="let store of inactiveStores;let last = last" class="fw-semibold config-heading">{{store}}<span *ngIf="!last">,</span></span> that I’m looking for is inactive, <a routerLink="/manage/stores" [queryParams]="{type: 'stores'}" class="text-decoration-underline cursor-pointer" (click)="closeactivepopup()">Onboard Stores</a></div>
625
+ </div>
626
+ <div *ngIf="excelError" class="flex-column mt-5">
627
+ <div class="config-heading fw-bold">Invalid Details !</div>
628
+ <div class="subtitle mt-5">Please provide correct and complete layout information.</div>
629
+ <div class="p-5 w-100 rounded-3 border-error mt-5 flex-column">
630
+ <div *ngFor="let error of excelError?.error; let i = index; let last = last" [ngClass]="!last ? 'mb-2' : ''" class="text-error">{{i + 1}}) {{error}}</div>
631
+ </div>
632
+ </div>
633
+
634
+ </div>
635
+ <div class="card-footer border-0 text-end pt-0">
636
+ <button class="btn btn-md btn-default btn-outline" (click)="closeactivepopup()">Cancel</button>
637
+ <button *ngIf="!excelError&&!showStore&&!showInactive" class="btn btn-md py-3 btn-default ms-3 btn-primary" (click)="confirmUserpopup();closeactivepopup()">Proceed</button>
638
+ <button *ngIf="excelError||showStore|| showInactive" class="btn py-3 btn-md btn-default ms-3 btn-danger" (click)="Reupload();">Reupload</button>
639
+ <input style="visibility: hidden;" #file1 type="file" id="kt_account_team_size_select_2"
640
+ (change)="onFileUpload($event,'reupload')" />
641
+ </div>
642
+ </div>
643
+ </ng-template>
644
+
645
+ <ng-template #confirmUser let-model>
646
+ <div class="card border-0">
647
+ <div class="card-header border-0 mt-5">
648
+ <div class="card-title d-flex flex-column mt-3">
649
+ <div class="bg-light-primary rounded-5 w-40px h-40px d-flex justify-content-center align-items-center">
650
+ <svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none"><rect x="4" y="4" width="48" height="48" rx="24" fill="#FEF0C7"/><path d="M27.9998 24.0012V28.0012M27.9998 32.0012H28.0098M26.2898 18.8612L17.8198 33.0012C17.6451 33.3036 17.5527 33.6465 17.5518 33.9957C17.5508 34.3449 17.6413 34.6883 17.8142 34.9917C17.9871 35.2951 18.2365 35.5479 18.5375 35.725C18.8385 35.9021 19.1806 35.9973 19.5298 36.0012H36.4698C36.819 35.9973 37.1611 35.9021 37.4621 35.725C37.7631 35.5479 38.0124 35.2951 38.1854 34.9917C38.3583 34.6883 38.4488 34.3449 38.4478 33.9957C38.4468 33.6465 38.3544 33.3036 38.1798 33.0012L29.7098 18.8612C29.5315 18.5673 29.2805 18.3243 28.981 18.1557C28.6814 17.987 28.3435 17.8984 27.9998 17.8984C27.656 17.8984 27.3181 17.987 27.0186 18.1557C26.7191 18.3243 26.468 18.5673 26.2898 18.8612Z" stroke="#DC6803" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><rect x="4" y="4" width="48" height="48" rx="24" stroke="#FFFAEB" stroke-width="8"/></svg>
651
+ </div><br>
652
+ <div class="config-heading fw-semibold w-auto">New User found in uploaded file</div>
653
+ </div>
654
+ </div>
655
+ <div class="card-body pt-0">
656
+ <div class="flex-column">
657
+ <div class="storeAssign mt-3" style="font-weight: 400">This CSV contains a new User. Add new User in the User Management under Manage menu.</div>
658
+ </div>
659
+ </div>
660
+ <div class="card-footer border-0 text-end pt-0">
661
+ <!-- <button class="btn btn-md btn-default btn-outline" routerLink="/manage/users/client" (click)="closeactivepopup()">Skip New Entries</button> -->
662
+ <button class="btn btn-md py-4 btn-default ms-3 btn-primary" (click)="model.close('confirm')">Invite Selected</button>
663
+ </div>
664
+ </div>
665
+ </ng-template>