tango-app-ui-store-builder 1.0.1-beta-2 → 1.0.1-beta-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 (366) hide show
  1. package/esm2022/lib/components/counter-input/counter-input.component.mjs +74 -0
  2. package/esm2022/lib/components/create-fixture/create-fixture.component.mjs +401 -0
  3. package/esm2022/lib/components/create-layout/create-layout.component.mjs +1817 -0
  4. package/esm2022/lib/components/create-layout/popups/add-floor/add-floor.component.mjs +40 -0
  5. package/esm2022/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.mjs +16 -0
  6. package/esm2022/lib/components/create-layout/popups/delete-layout/delete-layout.component.mjs +16 -0
  7. package/esm2022/lib/components/create-product/create-product.component.mjs +11 -0
  8. package/esm2022/lib/components/create-store/create-store.component.mjs +2181 -0
  9. package/esm2022/lib/components/create-vm/create-vm.component.mjs +318 -0
  10. package/esm2022/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.mjs +91 -0
  11. package/esm2022/lib/components/custom-select/custom-select.component.mjs +155 -0
  12. package/esm2022/lib/components/fixture-template/fixture-template.component.mjs +107 -0
  13. package/esm2022/lib/components/fixture-template/template-basic-details/template-basic-details.component.mjs +134 -0
  14. package/esm2022/lib/components/fixture-template/template-products/template-products.component.mjs +545 -0
  15. package/esm2022/lib/components/fixture-template/template-summary/template-summary.component.mjs +401 -0
  16. package/esm2022/lib/components/fixture-template/template-vms/template-vms.component.mjs +288 -0
  17. package/esm2022/lib/components/fixture-template-table/fixture-template-table.component.mjs +309 -0
  18. package/esm2022/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.mjs +47 -0
  19. package/esm2022/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.mjs +90 -0
  20. package/esm2022/lib/components/layout-builder/layout-builder.component.mjs +56 -0
  21. package/esm2022/lib/components/layout-elements/element-form/element-form.component.mjs +241 -0
  22. package/esm2022/lib/components/layout-elements/layout-elements.component.mjs +124 -0
  23. package/esm2022/lib/components/layout-summary/layout-summary.component.mjs +809 -0
  24. package/esm2022/lib/components/layout-summary/popups/complete-layout/complete-layout.component.mjs +16 -0
  25. package/esm2022/lib/components/manage-plano-table/manage-plano-table.component.mjs +260 -0
  26. package/esm2022/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.mjs +47 -0
  27. package/esm2022/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.mjs +41 -0
  28. package/esm2022/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.mjs +43 -0
  29. package/esm2022/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.mjs +491 -0
  30. package/esm2022/lib/components/manage-store-plano/manage-store-plano.component.mjs +2558 -0
  31. package/esm2022/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.mjs +123 -0
  32. package/esm2022/lib/components/manage-store-plano/template-products/template-products.component.mjs +553 -0
  33. package/esm2022/lib/components/manage-store-plano/template-vms/template-vms.component.mjs +288 -0
  34. package/esm2022/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.mjs +165 -0
  35. package/esm2022/lib/components/plano-configurations/custom-filter/custom-filter.component.mjs +179 -0
  36. package/esm2022/lib/components/plano-configurations/plano-configurations.component.mjs +239 -0
  37. package/esm2022/lib/components/plano-configurations/popups/popups.component.mjs +117 -0
  38. package/esm2022/lib/components/plano-library/fixture-library/fixture-library.component.mjs +295 -0
  39. package/esm2022/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.mjs +53 -0
  40. package/esm2022/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.mjs +442 -0
  41. package/esm2022/lib/components/plano-library/plano-library.component.mjs +12 -0
  42. package/esm2022/lib/components/plano-library/product-library/product-library.component.mjs +12 -0
  43. package/esm2022/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.mjs +382 -0
  44. package/esm2022/lib/components/plano-library/vm-library/vm-library.component.mjs +291 -0
  45. package/esm2022/lib/components/popups/complete-confirmation/complete-confirmation.component.mjs +32 -0
  46. package/esm2022/lib/components/popups/delete-confirmation/delete-confirmation.component.mjs +28 -0
  47. package/esm2022/lib/components/popups/exit-confirmation/exit-confirmation.component.mjs +11 -0
  48. package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +130 -0
  49. package/esm2022/lib/components/store-builder/store-builder.component.mjs +56 -0
  50. package/esm2022/lib/components/store-layout-table/store-layout-table.component.mjs +713 -0
  51. package/esm2022/lib/components/store-offcanvas-component/store-offcanvas-component.component.mjs +99 -0
  52. package/esm2022/lib/components/store-plano/store-plano.component.mjs +1008 -0
  53. package/esm2022/lib/components/visualize-vm-data/visualize-vm-data.component.mjs +30 -0
  54. package/esm2022/lib/data/fixture-template.data.mjs +33 -0
  55. package/esm2022/lib/functions/plano.function.mjs +34 -0
  56. package/esm2022/lib/interfaces/fixture-library.interface.mjs +2 -0
  57. package/esm2022/lib/interfaces/fixture-template.interface.mjs +2 -0
  58. package/esm2022/lib/interfaces/layout-builder.interface.mjs +2 -0
  59. package/esm2022/lib/interfaces/plano-general.interface.mjs +2 -0
  60. package/esm2022/lib/interfaces/planogram.interface.mjs +2 -0
  61. package/esm2022/lib/interfaces/vm-library.interface.mjs +14 -0
  62. package/esm2022/lib/pipes/time-ago.pipe.mjs +67 -0
  63. package/esm2022/lib/services/plano-data.service.mjs +89 -0
  64. package/esm2022/lib/services/store-builder.service.mjs +246 -0
  65. package/esm2022/lib/tango-store-builder-routing.module.mjs +158 -0
  66. package/esm2022/lib/tango-store-builder.module.mjs +211 -0
  67. package/esm2022/lib/tango-store-plano.module.mjs +42 -0
  68. package/esm2022/public-api.mjs +6 -0
  69. package/esm2022/tango-app-ui-store-builder.mjs +5 -0
  70. package/fesm2022/tango-app-ui-store-builder.mjs +17333 -0
  71. package/fesm2022/tango-app-ui-store-builder.mjs.map +1 -0
  72. package/index.d.ts +5 -0
  73. package/lib/components/counter-input/counter-input.component.d.ts +22 -0
  74. package/lib/components/create-fixture/create-fixture.component.d.ts +59 -0
  75. package/lib/components/create-layout/create-layout.component.d.ts +197 -0
  76. package/lib/components/create-layout/popups/add-floor/add-floor.component.d.ts +16 -0
  77. package/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.d.ts +8 -0
  78. package/lib/components/create-layout/popups/delete-layout/delete-layout.component.d.ts +8 -0
  79. package/lib/components/create-product/create-product.component.d.ts +5 -0
  80. package/lib/components/create-store/create-store.component.d.ts +202 -0
  81. package/lib/components/create-vm/create-vm.component.d.ts +63 -0
  82. package/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.d.ts +26 -0
  83. package/lib/components/custom-select/custom-select.component.d.ts +33 -0
  84. package/lib/components/fixture-template/fixture-template.component.d.ts +30 -0
  85. package/lib/components/fixture-template/template-basic-details/template-basic-details.component.d.ts +34 -0
  86. package/lib/components/fixture-template/template-products/template-products.component.d.ts +80 -0
  87. package/lib/components/fixture-template/template-summary/template-summary.component.d.ts +62 -0
  88. package/lib/components/fixture-template/template-vms/template-vms.component.d.ts +62 -0
  89. package/lib/components/fixture-template-table/fixture-template-table.component.d.ts +64 -0
  90. package/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.d.ts +14 -0
  91. package/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.d.ts +21 -0
  92. package/lib/components/layout-builder/layout-builder.component.d.ts +18 -0
  93. package/lib/components/layout-elements/element-form/element-form.component.d.ts +32 -0
  94. package/lib/components/layout-elements/layout-elements.component.d.ts +29 -0
  95. package/lib/components/layout-summary/layout-summary.component.d.ts +92 -0
  96. package/lib/components/layout-summary/popups/complete-layout/complete-layout.component.d.ts +8 -0
  97. package/lib/components/manage-plano-table/manage-plano-table.component.d.ts +62 -0
  98. package/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.d.ts +14 -0
  99. package/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.d.ts +20 -0
  100. package/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.d.ts +15 -0
  101. package/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.d.ts +62 -0
  102. package/lib/components/manage-store-plano/manage-store-plano.component.d.ts +102 -0
  103. package/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.d.ts +32 -0
  104. package/lib/components/manage-store-plano/template-products/template-products.component.d.ts +80 -0
  105. package/lib/components/manage-store-plano/template-vms/template-vms.component.d.ts +60 -0
  106. package/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.d.ts +39 -0
  107. package/lib/components/plano-configurations/custom-filter/custom-filter.component.d.ts +38 -0
  108. package/lib/components/plano-configurations/plano-configurations.component.d.ts +45 -0
  109. package/lib/components/plano-configurations/popups/popups.component.d.ts +24 -0
  110. package/lib/components/plano-library/fixture-library/fixture-library.component.d.ts +63 -0
  111. package/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.d.ts +21 -0
  112. package/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.d.ts +53 -0
  113. package/lib/components/plano-library/plano-library.component.d.ts +5 -0
  114. package/lib/components/plano-library/product-library/product-library.component.d.ts +5 -0
  115. package/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.d.ts +54 -0
  116. package/lib/components/plano-library/vm-library/vm-library.component.d.ts +65 -0
  117. package/lib/components/popups/complete-confirmation/complete-confirmation.component.d.ts +13 -0
  118. package/lib/components/popups/delete-confirmation/delete-confirmation.component.d.ts +12 -0
  119. package/lib/components/popups/exit-confirmation/exit-confirmation.component.d.ts +5 -0
  120. package/lib/components/reactive-select/reactive-select.component.d.ts +37 -0
  121. package/lib/components/store-builder/store-builder.component.d.ts +18 -0
  122. package/lib/components/store-layout-table/store-layout-table.component.d.ts +74 -0
  123. package/lib/components/store-offcanvas-component/store-offcanvas-component.component.d.ts +26 -0
  124. package/lib/components/store-plano/store-plano.component.d.ts +51 -0
  125. package/lib/components/visualize-vm-data/visualize-vm-data.component.d.ts +13 -0
  126. package/lib/data/fixture-template.data.d.ts +6 -0
  127. package/lib/functions/plano.function.d.ts +2 -0
  128. package/{src/lib/interfaces/fixture-library.interface.ts → lib/interfaces/fixture-library.interface.d.ts} +59 -64
  129. package/{src/lib/interfaces/fixture-template.interface.ts → lib/interfaces/fixture-template.interface.d.ts} +74 -80
  130. package/{src/lib/interfaces/layout-builder.interface.ts → lib/interfaces/layout-builder.interface.d.ts} +23 -25
  131. package/{src/lib/interfaces/plano-general.interface.ts → lib/interfaces/plano-general.interface.d.ts} +14 -16
  132. package/lib/interfaces/planogram.interface.d.ts +13 -0
  133. package/{src/lib/interfaces/vm-library.interface.ts → lib/interfaces/vm-library.interface.d.ts} +47 -66
  134. package/lib/pipes/time-ago.pipe.d.ts +10 -0
  135. package/lib/services/plano-data.service.d.ts +23 -0
  136. package/lib/services/store-builder.service.d.ts +80 -0
  137. package/lib/tango-store-builder-routing.module.d.ts +7 -0
  138. package/lib/tango-store-builder.module.d.ts +66 -0
  139. package/lib/tango-store-plano.module.d.ts +11 -0
  140. package/package.json +25 -12
  141. package/{src/public-api.ts → public-api.d.ts} +2 -6
  142. package/.eslintrc.json +0 -37
  143. package/ng-package.json +0 -7
  144. package/src/lib/components/counter-input/counter-input.component.html +0 -42
  145. package/src/lib/components/counter-input/counter-input.component.scss +0 -49
  146. package/src/lib/components/counter-input/counter-input.component.spec.ts +0 -23
  147. package/src/lib/components/counter-input/counter-input.component.ts +0 -68
  148. package/src/lib/components/create-fixture/create-fixture.component.html +0 -704
  149. package/src/lib/components/create-fixture/create-fixture.component.scss +0 -112
  150. package/src/lib/components/create-fixture/create-fixture.component.spec.ts +0 -23
  151. package/src/lib/components/create-fixture/create-fixture.component.ts +0 -435
  152. package/src/lib/components/create-layout/create-layout.component.html +0 -861
  153. package/src/lib/components/create-layout/create-layout.component.scss +0 -511
  154. package/src/lib/components/create-layout/create-layout.component.spec.ts +0 -23
  155. package/src/lib/components/create-layout/create-layout.component.ts +0 -2217
  156. package/src/lib/components/create-layout/popups/add-floor/add-floor.component.html +0 -29
  157. package/src/lib/components/create-layout/popups/add-floor/add-floor.component.scss +0 -67
  158. package/src/lib/components/create-layout/popups/add-floor/add-floor.component.ts +0 -48
  159. package/src/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.html +0 -10
  160. package/src/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.scss +0 -21
  161. package/src/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.ts +0 -13
  162. package/src/lib/components/create-layout/popups/delete-layout/delete-layout.component.html +0 -13
  163. package/src/lib/components/create-layout/popups/delete-layout/delete-layout.component.scss +0 -21
  164. package/src/lib/components/create-layout/popups/delete-layout/delete-layout.component.ts +0 -14
  165. package/src/lib/components/create-product/create-product.component.html +0 -1
  166. package/src/lib/components/create-product/create-product.component.scss +0 -0
  167. package/src/lib/components/create-product/create-product.component.spec.ts +0 -23
  168. package/src/lib/components/create-product/create-product.component.ts +0 -10
  169. package/src/lib/components/create-store/create-store.component.html +0 -861
  170. package/src/lib/components/create-store/create-store.component.scss +0 -511
  171. package/src/lib/components/create-store/create-store.component.spec.ts +0 -23
  172. package/src/lib/components/create-store/create-store.component.ts +0 -2656
  173. package/src/lib/components/create-vm/create-vm.component.html +0 -361
  174. package/src/lib/components/create-vm/create-vm.component.scss +0 -101
  175. package/src/lib/components/create-vm/create-vm.component.spec.ts +0 -23
  176. package/src/lib/components/create-vm/create-vm.component.ts +0 -356
  177. package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.html +0 -68
  178. package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.scss +0 -25
  179. package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.spec.ts +0 -23
  180. package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.ts +0 -92
  181. package/src/lib/components/custom-select/custom-select.component.html +0 -42
  182. package/src/lib/components/custom-select/custom-select.component.scss +0 -132
  183. package/src/lib/components/custom-select/custom-select.component.spec.ts +0 -23
  184. package/src/lib/components/custom-select/custom-select.component.ts +0 -149
  185. package/src/lib/components/fixture-template/fixture-template.component.html +0 -176
  186. package/src/lib/components/fixture-template/fixture-template.component.scss +0 -8
  187. package/src/lib/components/fixture-template/fixture-template.component.spec.ts +0 -23
  188. package/src/lib/components/fixture-template/fixture-template.component.ts +0 -113
  189. package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.html +0 -166
  190. package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.scss +0 -21
  191. package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.spec.ts +0 -23
  192. package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.ts +0 -148
  193. package/src/lib/components/fixture-template/template-products/template-products.component.html +0 -626
  194. package/src/lib/components/fixture-template/template-products/template-products.component.scss +0 -241
  195. package/src/lib/components/fixture-template/template-products/template-products.component.spec.ts +0 -23
  196. package/src/lib/components/fixture-template/template-products/template-products.component.ts +0 -646
  197. package/src/lib/components/fixture-template/template-summary/template-summary.component.html +0 -312
  198. package/src/lib/components/fixture-template/template-summary/template-summary.component.scss +0 -233
  199. package/src/lib/components/fixture-template/template-summary/template-summary.component.spec.ts +0 -23
  200. package/src/lib/components/fixture-template/template-summary/template-summary.component.ts +0 -464
  201. package/src/lib/components/fixture-template/template-vms/template-vms.component.html +0 -230
  202. package/src/lib/components/fixture-template/template-vms/template-vms.component.scss +0 -108
  203. package/src/lib/components/fixture-template/template-vms/template-vms.component.spec.ts +0 -23
  204. package/src/lib/components/fixture-template/template-vms/template-vms.component.ts +0 -322
  205. package/src/lib/components/fixture-template-table/fixture-template-table.component.html +0 -469
  206. package/src/lib/components/fixture-template-table/fixture-template-table.component.scss +0 -6
  207. package/src/lib/components/fixture-template-table/fixture-template-table.component.spec.ts +0 -23
  208. package/src/lib/components/fixture-template-table/fixture-template-table.component.ts +0 -341
  209. package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.html +0 -55
  210. package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.scss +0 -60
  211. package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.spec.ts +0 -23
  212. package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.ts +0 -48
  213. package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.html +0 -18
  214. package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.scss +0 -45
  215. package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.spec.ts +0 -23
  216. package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.ts +0 -92
  217. package/src/lib/components/layout-builder/layout-builder.component.html +0 -24
  218. package/src/lib/components/layout-builder/layout-builder.component.scss +0 -78
  219. package/src/lib/components/layout-builder/layout-builder.component.spec.ts +0 -23
  220. package/src/lib/components/layout-builder/layout-builder.component.ts +0 -59
  221. package/src/lib/components/layout-elements/element-form/element-form.component.html +0 -268
  222. package/src/lib/components/layout-elements/element-form/element-form.component.scss +0 -4
  223. package/src/lib/components/layout-elements/element-form/element-form.component.spec.ts +0 -23
  224. package/src/lib/components/layout-elements/element-form/element-form.component.ts +0 -235
  225. package/src/lib/components/layout-elements/element-form/element.data.ts +0 -209
  226. package/src/lib/components/layout-elements/layout-elements.component.html +0 -82
  227. package/src/lib/components/layout-elements/layout-elements.component.scss +0 -36
  228. package/src/lib/components/layout-elements/layout-elements.component.spec.ts +0 -23
  229. package/src/lib/components/layout-elements/layout-elements.component.ts +0 -130
  230. package/src/lib/components/layout-summary/layout-summary.component.html +0 -269
  231. package/src/lib/components/layout-summary/layout-summary.component.scss +0 -223
  232. package/src/lib/components/layout-summary/layout-summary.component.spec.ts +0 -23
  233. package/src/lib/components/layout-summary/layout-summary.component.ts +0 -965
  234. package/src/lib/components/layout-summary/popups/complete-layout/complete-layout.component.html +0 -10
  235. package/src/lib/components/layout-summary/popups/complete-layout/complete-layout.component.scss +0 -21
  236. package/src/lib/components/layout-summary/popups/complete-layout/complete-layout.component.ts +0 -13
  237. package/src/lib/components/manage-plano-table/manage-plano-table.component.html +0 -789
  238. package/src/lib/components/manage-plano-table/manage-plano-table.component.scss +0 -147
  239. package/src/lib/components/manage-plano-table/manage-plano-table.component.spec.ts +0 -23
  240. package/src/lib/components/manage-plano-table/manage-plano-table.component.ts +0 -294
  241. package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.html +0 -55
  242. package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.scss +0 -60
  243. package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.spec.ts +0 -23
  244. package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.ts +0 -48
  245. package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.html +0 -27
  246. package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.scss +0 -21
  247. package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.spec.ts +0 -23
  248. package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.ts +0 -47
  249. package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.html +0 -36
  250. package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.scss +0 -0
  251. package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.spec.ts +0 -23
  252. package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.ts +0 -38
  253. package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.html +0 -1399
  254. package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.scss +0 -255
  255. package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.spec.ts +0 -23
  256. package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.ts +0 -553
  257. package/src/lib/components/manage-store-plano/manage-store-plano.component.html +0 -526
  258. package/src/lib/components/manage-store-plano/manage-store-plano.component.scss +0 -102
  259. package/src/lib/components/manage-store-plano/manage-store-plano.component.spec.ts +0 -23
  260. package/src/lib/components/manage-store-plano/manage-store-plano.component.ts +0 -3057
  261. package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.html +0 -166
  262. package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.scss +0 -21
  263. package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.spec.ts +0 -23
  264. package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.ts +0 -128
  265. package/src/lib/components/manage-store-plano/template-products/template-products.component.html +0 -626
  266. package/src/lib/components/manage-store-plano/template-products/template-products.component.scss +0 -241
  267. package/src/lib/components/manage-store-plano/template-products/template-products.component.spec.ts +0 -23
  268. package/src/lib/components/manage-store-plano/template-products/template-products.component.ts +0 -656
  269. package/src/lib/components/manage-store-plano/template-vms/template-vms.component.html +0 -230
  270. package/src/lib/components/manage-store-plano/template-vms/template-vms.component.scss +0 -108
  271. package/src/lib/components/manage-store-plano/template-vms/template-vms.component.spec.ts +0 -23
  272. package/src/lib/components/manage-store-plano/template-vms/template-vms.component.ts +0 -319
  273. package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.html +0 -68
  274. package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.scss +0 -178
  275. package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.spec.ts +0 -23
  276. package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.ts +0 -160
  277. package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.html +0 -76
  278. package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.scss +0 -0
  279. package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.spec.ts +0 -23
  280. package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.ts +0 -180
  281. package/src/lib/components/plano-configurations/plano-configurations.component.html +0 -257
  282. package/src/lib/components/plano-configurations/plano-configurations.component.scss +0 -119
  283. package/src/lib/components/plano-configurations/plano-configurations.component.spec.ts +0 -23
  284. package/src/lib/components/plano-configurations/plano-configurations.component.ts +0 -286
  285. package/src/lib/components/plano-configurations/popups/popups.component.html +0 -124
  286. package/src/lib/components/plano-configurations/popups/popups.component.scss +0 -92
  287. package/src/lib/components/plano-configurations/popups/popups.component.spec.ts +0 -23
  288. package/src/lib/components/plano-configurations/popups/popups.component.ts +0 -121
  289. package/src/lib/components/plano-library/fixture-library/fixture-library.component.html +0 -589
  290. package/src/lib/components/plano-library/fixture-library/fixture-library.component.scss +0 -1
  291. package/src/lib/components/plano-library/fixture-library/fixture-library.component.spec.ts +0 -23
  292. package/src/lib/components/plano-library/fixture-library/fixture-library.component.ts +0 -326
  293. package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.html +0 -99
  294. package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.scss +0 -45
  295. package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.spec.ts +0 -23
  296. package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.ts +0 -50
  297. package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.html +0 -183
  298. package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.scss +0 -95
  299. package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.spec.ts +0 -23
  300. package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.ts +0 -516
  301. package/src/lib/components/plano-library/plano-library.component.html +0 -17
  302. package/src/lib/components/plano-library/plano-library.component.scss +0 -1
  303. package/src/lib/components/plano-library/plano-library.component.spec.ts +0 -23
  304. package/src/lib/components/plano-library/plano-library.component.ts +0 -9
  305. package/src/lib/components/plano-library/product-library/product-library.component.html +0 -3
  306. package/src/lib/components/plano-library/product-library/product-library.component.scss +0 -1
  307. package/src/lib/components/plano-library/product-library/product-library.component.spec.ts +0 -23
  308. package/src/lib/components/plano-library/product-library/product-library.component.ts +0 -10
  309. package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.html +0 -183
  310. package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.scss +0 -95
  311. package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.spec.ts +0 -23
  312. package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.ts +0 -450
  313. package/src/lib/components/plano-library/vm-library/vm-library.component.html +0 -611
  314. package/src/lib/components/plano-library/vm-library/vm-library.component.scss +0 -12
  315. package/src/lib/components/plano-library/vm-library/vm-library.component.spec.ts +0 -23
  316. package/src/lib/components/plano-library/vm-library/vm-library.component.ts +0 -323
  317. package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.html +0 -11
  318. package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.scss +0 -13
  319. package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.spec.ts +0 -23
  320. package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.ts +0 -25
  321. package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.html +0 -24
  322. package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.scss +0 -13
  323. package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.spec.ts +0 -23
  324. package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.ts +0 -25
  325. package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.html +0 -1
  326. package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.scss +0 -13
  327. package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.spec.ts +0 -23
  328. package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.ts +0 -10
  329. package/src/lib/components/reactive-select/reactive-select.component.html +0 -45
  330. package/src/lib/components/reactive-select/reactive-select.component.scss +0 -52
  331. package/src/lib/components/reactive-select/reactive-select.component.spec.ts +0 -23
  332. package/src/lib/components/reactive-select/reactive-select.component.ts +0 -120
  333. package/src/lib/components/store-builder/store-builder.component.html +0 -24
  334. package/src/lib/components/store-builder/store-builder.component.scss +0 -78
  335. package/src/lib/components/store-builder/store-builder.component.spec.ts +0 -23
  336. package/src/lib/components/store-builder/store-builder.component.ts +0 -56
  337. package/src/lib/components/store-layout-table/store-layout-table.component.html +0 -376
  338. package/src/lib/components/store-layout-table/store-layout-table.component.scss +0 -312
  339. package/src/lib/components/store-layout-table/store-layout-table.component.spec.ts +0 -23
  340. package/src/lib/components/store-layout-table/store-layout-table.component.ts +0 -777
  341. package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.html +0 -124
  342. package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.scss +0 -90
  343. package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.spec.ts +0 -23
  344. package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.ts +0 -90
  345. package/src/lib/components/store-plano/store-plano.component.html +0 -161
  346. package/src/lib/components/store-plano/store-plano.component.scss +0 -77
  347. package/src/lib/components/store-plano/store-plano.component.spec.ts +0 -23
  348. package/src/lib/components/store-plano/store-plano.component.ts +0 -1184
  349. package/src/lib/components/visualize-vm-data/visualize-vm-data.component.html +0 -20
  350. package/src/lib/components/visualize-vm-data/visualize-vm-data.component.scss +0 -50
  351. package/src/lib/components/visualize-vm-data/visualize-vm-data.component.spec.ts +0 -23
  352. package/src/lib/components/visualize-vm-data/visualize-vm-data.component.ts +0 -30
  353. package/src/lib/data/fixture-template.data.ts +0 -32
  354. package/src/lib/functions/plano.function.ts +0 -35
  355. package/src/lib/interfaces/planogram.interface.ts +0 -13
  356. package/src/lib/pipes/time-ago.pipe.ts +0 -59
  357. package/src/lib/services/plano-data.service.ts +0 -95
  358. package/src/lib/services/store-builder.service.ts +0 -299
  359. package/src/lib/styles/fixture-template.scss +0 -442
  360. package/src/lib/styles/library.scss +0 -219
  361. package/src/lib/tango-store-builder-routing.module.ts +0 -151
  362. package/src/lib/tango-store-builder.module.ts +0 -135
  363. package/src/lib/tango-store-plano.module.ts +0 -28
  364. package/tsconfig.lib.json +0 -14
  365. package/tsconfig.lib.prod.json +0 -10
  366. package/tsconfig.spec.json +0 -14
@@ -0,0 +1,74 @@
1
+ import { Component, EventEmitter, forwardRef, Input, Output } from '@angular/core';
2
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export class CounterInputComponent {
5
+ step = 1;
6
+ placeholder = '0';
7
+ onIncrement = new EventEmitter();
8
+ onDecrement = new EventEmitter();
9
+ value = 0;
10
+ disabled = false;
11
+ onChange = (value) => { };
12
+ onTouched = () => { };
13
+ increment() {
14
+ if (!this.disabled) {
15
+ this.value += this.step;
16
+ this.onChange(this.value);
17
+ this.onIncrement.emit(this.value);
18
+ }
19
+ }
20
+ decrement() {
21
+ if (!this.disabled) {
22
+ if (this.value <= this.step)
23
+ return;
24
+ this.value -= this.step;
25
+ this.onChange(this.value);
26
+ this.onDecrement.emit(this.value);
27
+ }
28
+ }
29
+ onInput(event) {
30
+ const val = event.target.valueAsNumber;
31
+ this.value = isNaN(val) ? 0 : val;
32
+ this.onChange(this.value);
33
+ }
34
+ // ControlValueAccessor interface methods
35
+ writeValue(value) {
36
+ this.value = value || 0;
37
+ }
38
+ registerOnChange(fn) {
39
+ this.onChange = fn;
40
+ }
41
+ registerOnTouched(fn) {
42
+ this.onTouched = fn;
43
+ }
44
+ setDisabledState(isDisabled) {
45
+ this.disabled = isDisabled;
46
+ }
47
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CounterInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: CounterInputComponent, selector: "counter-input", inputs: { step: "step", placeholder: "placeholder" }, outputs: { onIncrement: "onIncrement", onDecrement: "onDecrement" }, providers: [
49
+ {
50
+ provide: NG_VALUE_ACCESSOR,
51
+ useExisting: forwardRef(() => CounterInputComponent),
52
+ multi: true
53
+ }
54
+ ], ngImport: i0, template: "<div class=\"counter-container\" [class.disable-counter]=\"disabled\">\r\n <svg\r\n role=\"button\"\r\n width=\"15\"\r\n height=\"14\"\r\n viewBox=\"0 0 15 14\"\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n (click)=\"decrement()\"\r\n >\r\n <path d=\"M3.76294 7H11.9296\" stroke=\"#667085\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n\r\n <input\r\n type=\"number\"\r\n class=\"center\"\r\n [value]=\"value\"\r\n [min]=\"step\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\"\r\n (input)=\"onInput($event)\"\r\n (blur)=\"onTouched()\"\r\n />\r\n\r\n <svg\r\n role=\"button\"\r\n width=\"15\"\r\n height=\"14\"\r\n viewBox=\"0 0 15 14\"\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n (click)=\"increment()\"\r\n >\r\n <path\r\n d=\"M7.15389 2.9165V11.0832M3.07056 6.99984H11.2372\"\r\n stroke=\"#667085\"\r\n stroke-width=\"2\"\r\n stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\"\r\n />\r\n </svg>\r\n</div>\r\n", styles: [".counter-container{display:flex;align-items:center;justify-content:center;border-radius:8px;background-color:#fff;border:.49px solid #d0d5dd;padding:10px;justify-content:space-between}.counter-container input{border:none;text-align:center;vertical-align:middle;background-color:transparent;min-width:20px;width:100%}.counter-container input::-webkit-outer-spin-button,.counter-container input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.counter-container input[type=number]{-moz-appearance:textfield;appearance:textfield}.counter-container input:focus{outline:0;box-shadow:none}.disable-counter{color:var(--bs-gray-500)!important;background-color:var(--bs-gray-200)!important;border-color:var(--bs-gray-300)!important;pointer-events:none;opacity:1}\n"] });
55
+ }
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: CounterInputComponent, decorators: [{
57
+ type: Component,
58
+ args: [{ selector: 'counter-input', providers: [
59
+ {
60
+ provide: NG_VALUE_ACCESSOR,
61
+ useExisting: forwardRef(() => CounterInputComponent),
62
+ multi: true
63
+ }
64
+ ], template: "<div class=\"counter-container\" [class.disable-counter]=\"disabled\">\r\n <svg\r\n role=\"button\"\r\n width=\"15\"\r\n height=\"14\"\r\n viewBox=\"0 0 15 14\"\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n (click)=\"decrement()\"\r\n >\r\n <path d=\"M3.76294 7H11.9296\" stroke=\"#667085\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />\r\n </svg>\r\n\r\n <input\r\n type=\"number\"\r\n class=\"center\"\r\n [value]=\"value\"\r\n [min]=\"step\"\r\n [placeholder]=\"placeholder\"\r\n [disabled]=\"disabled\"\r\n (input)=\"onInput($event)\"\r\n (blur)=\"onTouched()\"\r\n />\r\n\r\n <svg\r\n role=\"button\"\r\n width=\"15\"\r\n height=\"14\"\r\n viewBox=\"0 0 15 14\"\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n (click)=\"increment()\"\r\n >\r\n <path\r\n d=\"M7.15389 2.9165V11.0832M3.07056 6.99984H11.2372\"\r\n stroke=\"#667085\"\r\n stroke-width=\"2\"\r\n stroke-linecap=\"round\"\r\n stroke-linejoin=\"round\"\r\n />\r\n </svg>\r\n</div>\r\n", styles: [".counter-container{display:flex;align-items:center;justify-content:center;border-radius:8px;background-color:#fff;border:.49px solid #d0d5dd;padding:10px;justify-content:space-between}.counter-container input{border:none;text-align:center;vertical-align:middle;background-color:transparent;min-width:20px;width:100%}.counter-container input::-webkit-outer-spin-button,.counter-container input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.counter-container input[type=number]{-moz-appearance:textfield;appearance:textfield}.counter-container input:focus{outline:0;box-shadow:none}.disable-counter{color:var(--bs-gray-500)!important;background-color:var(--bs-gray-200)!important;border-color:var(--bs-gray-300)!important;pointer-events:none;opacity:1}\n"] }]
65
+ }], propDecorators: { step: [{
66
+ type: Input
67
+ }], placeholder: [{
68
+ type: Input
69
+ }], onIncrement: [{
70
+ type: Output
71
+ }], onDecrement: [{
72
+ type: Output
73
+ }] } });
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY291bnRlci1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90YW5nby1zdG9yZS1idWlsZGVyL3NyYy9saWIvY29tcG9uZW50cy9jb3VudGVyLWlucHV0L2NvdW50ZXItaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdGFuZ28tc3RvcmUtYnVpbGRlci9zcmMvbGliL2NvbXBvbmVudHMvY291bnRlci1pbnB1dC9jb3VudGVyLWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ25GLE9BQU8sRUFBd0IsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFjekUsTUFBTSxPQUFPLHFCQUFxQjtJQUN2QixJQUFJLEdBQVcsQ0FBQyxDQUFDO0lBQ2pCLFdBQVcsR0FBVyxHQUFHLENBQUM7SUFFekIsV0FBVyxHQUFHLElBQUksWUFBWSxFQUFPLENBQUM7SUFDdEMsV0FBVyxHQUFHLElBQUksWUFBWSxFQUFPLENBQUM7SUFFaEQsS0FBSyxHQUFXLENBQUMsQ0FBQztJQUNsQixRQUFRLEdBQUcsS0FBSyxDQUFDO0lBRWpCLFFBQVEsR0FBRyxDQUFDLEtBQWEsRUFBRSxFQUFFLEdBQUcsQ0FBQyxDQUFDO0lBQ2xDLFNBQVMsR0FBRyxHQUFHLEVBQUUsR0FBRyxDQUFDLENBQUM7SUFFdEIsU0FBUztRQUNQLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2xCLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQztZQUN4QixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUMxQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDbkM7SUFDSCxDQUFDO0lBRUQsU0FBUztRQUNQLElBQUksQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2xCLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsSUFBSTtnQkFBRSxPQUFPO1lBQ3BDLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQztZQUN4QixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUMxQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDbkM7SUFDSCxDQUFDO0lBRUQsT0FBTyxDQUFDLEtBQVk7UUFDbEIsTUFBTSxHQUFHLEdBQUksS0FBSyxDQUFDLE1BQTJCLENBQUMsYUFBYSxDQUFDO1FBQzdELElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQztRQUNsQyxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM1QixDQUFDO0lBRUQseUNBQXlDO0lBQ3pDLFVBQVUsQ0FBQyxLQUFhO1FBQ3RCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxJQUFJLENBQUMsQ0FBQztJQUMxQixDQUFDO0lBRUQsZ0JBQWdCLENBQUMsRUFBTztRQUN0QixJQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQztJQUNyQixDQUFDO0lBRUQsaUJBQWlCLENBQUMsRUFBTztRQUN2QixJQUFJLENBQUMsU0FBUyxHQUFHLEVBQUUsQ0FBQztJQUN0QixDQUFDO0lBRUQsZ0JBQWdCLENBQUUsVUFBbUI7UUFDbkMsSUFBSSxDQUFDLFFBQVEsR0FBRyxVQUFVLENBQUM7SUFDN0IsQ0FBQzt3R0FuRFUscUJBQXFCOzRGQUFyQixxQkFBcUIsbUtBUnJCO1lBQ1Q7Z0JBQ0UsT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztnQkFDcEQsS0FBSyxFQUFFLElBQUk7YUFDWjtTQUNGLDBCQ2JILDhsQ0EwQ0E7OzRGRDNCYSxxQkFBcUI7a0JBWmpDLFNBQVM7K0JBQ0UsZUFBZSxhQUdkO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLHNCQUFzQixDQUFDOzRCQUNwRCxLQUFLLEVBQUUsSUFBSTt5QkFDWjtxQkFDRjs4QkFHUSxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFFSSxXQUFXO3NCQUFwQixNQUFNO2dCQUNHLFdBQVc7c0JBQXBCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgZm9yd2FyZFJlZiwgSW5wdXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb250cm9sVmFsdWVBY2Nlc3NvciwgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvdW50ZXItaW5wdXQnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9jb3VudGVyLWlucHV0LmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vY291bnRlci1pbnB1dC5jb21wb25lbnQuc2NzcycsXHJcbiAgcHJvdmlkZXJzOiBbXHJcbiAgICB7XHJcbiAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxyXG4gICAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBDb3VudGVySW5wdXRDb21wb25lbnQpLFxyXG4gICAgICBtdWx0aTogdHJ1ZVxyXG4gICAgfVxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIENvdW50ZXJJbnB1dENvbXBvbmVudCBpbXBsZW1lbnRzIENvbnRyb2xWYWx1ZUFjY2Vzc29yIHtcclxuICBASW5wdXQoKSBzdGVwOiBudW1iZXIgPSAxO1xyXG4gIEBJbnB1dCgpIHBsYWNlaG9sZGVyOiBzdHJpbmcgPSAnMCc7XHJcblxyXG4gIEBPdXRwdXQoKSBvbkluY3JlbWVudCA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIEBPdXRwdXQoKSBvbkRlY3JlbWVudCA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG5cclxuICB2YWx1ZTogbnVtYmVyID0gMDtcclxuICBkaXNhYmxlZCA9IGZhbHNlO1xyXG5cclxuICBvbkNoYW5nZSA9ICh2YWx1ZTogbnVtYmVyKSA9PiB7IH07XHJcbiAgb25Ub3VjaGVkID0gKCkgPT4geyB9O1xyXG5cclxuICBpbmNyZW1lbnQoKSB7XHJcbiAgICBpZiAoIXRoaXMuZGlzYWJsZWQpIHtcclxuICAgICAgdGhpcy52YWx1ZSArPSB0aGlzLnN0ZXA7XHJcbiAgICAgIHRoaXMub25DaGFuZ2UodGhpcy52YWx1ZSk7XHJcbiAgICAgIHRoaXMub25JbmNyZW1lbnQuZW1pdCh0aGlzLnZhbHVlKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGRlY3JlbWVudCgpIHtcclxuICAgIGlmICghdGhpcy5kaXNhYmxlZCkge1xyXG4gICAgICBpZiAodGhpcy52YWx1ZSA8PSB0aGlzLnN0ZXApIHJldHVybjtcclxuICAgICAgdGhpcy52YWx1ZSAtPSB0aGlzLnN0ZXA7XHJcbiAgICAgIHRoaXMub25DaGFuZ2UodGhpcy52YWx1ZSk7XHJcbiAgICAgIHRoaXMub25EZWNyZW1lbnQuZW1pdCh0aGlzLnZhbHVlKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIG9uSW5wdXQoZXZlbnQ6IEV2ZW50KSB7XHJcbiAgICBjb25zdCB2YWwgPSAoZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQpLnZhbHVlQXNOdW1iZXI7XHJcbiAgICB0aGlzLnZhbHVlID0gaXNOYU4odmFsKSA/IDAgOiB2YWw7XHJcbiAgICB0aGlzLm9uQ2hhbmdlKHRoaXMudmFsdWUpO1xyXG4gIH1cclxuXHJcbiAgLy8gQ29udHJvbFZhbHVlQWNjZXNzb3IgaW50ZXJmYWNlIG1ldGhvZHNcclxuICB3cml0ZVZhbHVlKHZhbHVlOiBudW1iZXIpOiB2b2lkIHtcclxuICAgIHRoaXMudmFsdWUgPSB2YWx1ZSB8fCAwO1xyXG4gIH1cclxuXHJcbiAgcmVnaXN0ZXJPbkNoYW5nZShmbjogYW55KTogdm9pZCB7XHJcbiAgICB0aGlzLm9uQ2hhbmdlID0gZm47XHJcbiAgfVxyXG5cclxuICByZWdpc3Rlck9uVG91Y2hlZChmbjogYW55KTogdm9pZCB7XHJcbiAgICB0aGlzLm9uVG91Y2hlZCA9IGZuO1xyXG4gIH1cclxuXHJcbiAgc2V0RGlzYWJsZWRTdGF0ZT8oaXNEaXNhYmxlZDogYm9vbGVhbik6IHZvaWQge1xyXG4gICAgdGhpcy5kaXNhYmxlZCA9IGlzRGlzYWJsZWQ7XHJcbiAgfVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJjb3VudGVyLWNvbnRhaW5lclwiIFtjbGFzcy5kaXNhYmxlLWNvdW50ZXJdPVwiZGlzYWJsZWRcIj5cclxuICA8c3ZnXHJcbiAgICByb2xlPVwiYnV0dG9uXCJcclxuICAgIHdpZHRoPVwiMTVcIlxyXG4gICAgaGVpZ2h0PVwiMTRcIlxyXG4gICAgdmlld0JveD1cIjAgMCAxNSAxNFwiXHJcbiAgICBmaWxsPVwibm9uZVwiXHJcbiAgICB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCJcclxuICAgIChjbGljayk9XCJkZWNyZW1lbnQoKVwiXHJcbiAgPlxyXG4gICAgPHBhdGggZD1cIk0zLjc2Mjk0IDdIMTEuOTI5NlwiIHN0cm9rZT1cIiM2NjcwODVcIiBzdHJva2Utd2lkdGg9XCIyXCIgc3Ryb2tlLWxpbmVjYXA9XCJyb3VuZFwiIHN0cm9rZS1saW5lam9pbj1cInJvdW5kXCIgLz5cclxuICA8L3N2Zz5cclxuXHJcbiAgPGlucHV0XHJcbiAgICB0eXBlPVwibnVtYmVyXCJcclxuICAgIGNsYXNzPVwiY2VudGVyXCJcclxuICAgIFt2YWx1ZV09XCJ2YWx1ZVwiXHJcbiAgICBbbWluXT1cInN0ZXBcIlxyXG4gICAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcclxuICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXHJcbiAgICAoaW5wdXQpPVwib25JbnB1dCgkZXZlbnQpXCJcclxuICAgIChibHVyKT1cIm9uVG91Y2hlZCgpXCJcclxuICAvPlxyXG5cclxuICA8c3ZnXHJcbiAgICByb2xlPVwiYnV0dG9uXCJcclxuICAgIHdpZHRoPVwiMTVcIlxyXG4gICAgaGVpZ2h0PVwiMTRcIlxyXG4gICAgdmlld0JveD1cIjAgMCAxNSAxNFwiXHJcbiAgICBmaWxsPVwibm9uZVwiXHJcbiAgICB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCJcclxuICAgIChjbGljayk9XCJpbmNyZW1lbnQoKVwiXHJcbiAgPlxyXG4gICAgPHBhdGhcclxuICAgICAgZD1cIk03LjE1Mzg5IDIuOTE2NVYxMS4wODMyTTMuMDcwNTYgNi45OTk4NEgxMS4yMzcyXCJcclxuICAgICAgc3Ryb2tlPVwiIzY2NzA4NVwiXHJcbiAgICAgIHN0cm9rZS13aWR0aD1cIjJcIlxyXG4gICAgICBzdHJva2UtbGluZWNhcD1cInJvdW5kXCJcclxuICAgICAgc3Ryb2tlLWxpbmVqb2luPVwicm91bmRcIlxyXG4gICAgLz5cclxuICA8L3N2Zz5cclxuPC9kaXY+XHJcbiJdfQ==