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.
- package/esm2022/lib/components/counter-input/counter-input.component.mjs +74 -0
- package/esm2022/lib/components/create-fixture/create-fixture.component.mjs +401 -0
- package/esm2022/lib/components/create-layout/create-layout.component.mjs +1817 -0
- package/esm2022/lib/components/create-layout/popups/add-floor/add-floor.component.mjs +40 -0
- package/esm2022/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.mjs +16 -0
- package/esm2022/lib/components/create-layout/popups/delete-layout/delete-layout.component.mjs +16 -0
- package/esm2022/lib/components/create-product/create-product.component.mjs +11 -0
- package/esm2022/lib/components/create-store/create-store.component.mjs +2181 -0
- package/esm2022/lib/components/create-vm/create-vm.component.mjs +318 -0
- package/esm2022/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.mjs +91 -0
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +155 -0
- package/esm2022/lib/components/fixture-template/fixture-template.component.mjs +107 -0
- package/esm2022/lib/components/fixture-template/template-basic-details/template-basic-details.component.mjs +134 -0
- package/esm2022/lib/components/fixture-template/template-products/template-products.component.mjs +545 -0
- package/esm2022/lib/components/fixture-template/template-summary/template-summary.component.mjs +401 -0
- package/esm2022/lib/components/fixture-template/template-vms/template-vms.component.mjs +288 -0
- package/esm2022/lib/components/fixture-template-table/fixture-template-table.component.mjs +309 -0
- package/esm2022/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.mjs +47 -0
- package/esm2022/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.mjs +90 -0
- package/esm2022/lib/components/layout-builder/layout-builder.component.mjs +56 -0
- package/esm2022/lib/components/layout-elements/element-form/element-form.component.mjs +241 -0
- package/esm2022/lib/components/layout-elements/layout-elements.component.mjs +124 -0
- package/esm2022/lib/components/layout-summary/layout-summary.component.mjs +809 -0
- package/esm2022/lib/components/layout-summary/popups/complete-layout/complete-layout.component.mjs +16 -0
- package/esm2022/lib/components/manage-plano-table/manage-plano-table.component.mjs +260 -0
- package/esm2022/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.mjs +47 -0
- package/esm2022/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.mjs +41 -0
- package/esm2022/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.mjs +43 -0
- package/esm2022/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.mjs +491 -0
- package/esm2022/lib/components/manage-store-plano/manage-store-plano.component.mjs +2558 -0
- package/esm2022/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.mjs +123 -0
- package/esm2022/lib/components/manage-store-plano/template-products/template-products.component.mjs +553 -0
- package/esm2022/lib/components/manage-store-plano/template-vms/template-vms.component.mjs +288 -0
- package/esm2022/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.mjs +165 -0
- package/esm2022/lib/components/plano-configurations/custom-filter/custom-filter.component.mjs +179 -0
- package/esm2022/lib/components/plano-configurations/plano-configurations.component.mjs +239 -0
- package/esm2022/lib/components/plano-configurations/popups/popups.component.mjs +117 -0
- package/esm2022/lib/components/plano-library/fixture-library/fixture-library.component.mjs +295 -0
- package/esm2022/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.mjs +53 -0
- package/esm2022/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.mjs +442 -0
- package/esm2022/lib/components/plano-library/plano-library.component.mjs +12 -0
- package/esm2022/lib/components/plano-library/product-library/product-library.component.mjs +12 -0
- package/esm2022/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.mjs +382 -0
- package/esm2022/lib/components/plano-library/vm-library/vm-library.component.mjs +291 -0
- package/esm2022/lib/components/popups/complete-confirmation/complete-confirmation.component.mjs +32 -0
- package/esm2022/lib/components/popups/delete-confirmation/delete-confirmation.component.mjs +28 -0
- package/esm2022/lib/components/popups/exit-confirmation/exit-confirmation.component.mjs +11 -0
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +130 -0
- package/esm2022/lib/components/store-builder/store-builder.component.mjs +56 -0
- package/esm2022/lib/components/store-layout-table/store-layout-table.component.mjs +713 -0
- package/esm2022/lib/components/store-offcanvas-component/store-offcanvas-component.component.mjs +99 -0
- package/esm2022/lib/components/store-plano/store-plano.component.mjs +1008 -0
- package/esm2022/lib/components/visualize-vm-data/visualize-vm-data.component.mjs +30 -0
- package/esm2022/lib/data/fixture-template.data.mjs +33 -0
- package/esm2022/lib/functions/plano.function.mjs +34 -0
- package/esm2022/lib/interfaces/fixture-library.interface.mjs +2 -0
- package/esm2022/lib/interfaces/fixture-template.interface.mjs +2 -0
- package/esm2022/lib/interfaces/layout-builder.interface.mjs +2 -0
- package/esm2022/lib/interfaces/plano-general.interface.mjs +2 -0
- package/esm2022/lib/interfaces/planogram.interface.mjs +2 -0
- package/esm2022/lib/interfaces/vm-library.interface.mjs +14 -0
- package/esm2022/lib/pipes/time-ago.pipe.mjs +67 -0
- package/esm2022/lib/services/plano-data.service.mjs +89 -0
- package/esm2022/lib/services/store-builder.service.mjs +246 -0
- package/esm2022/lib/tango-store-builder-routing.module.mjs +158 -0
- package/esm2022/lib/tango-store-builder.module.mjs +211 -0
- package/esm2022/lib/tango-store-plano.module.mjs +42 -0
- package/esm2022/public-api.mjs +6 -0
- package/esm2022/tango-app-ui-store-builder.mjs +5 -0
- package/fesm2022/tango-app-ui-store-builder.mjs +17333 -0
- package/fesm2022/tango-app-ui-store-builder.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/counter-input/counter-input.component.d.ts +22 -0
- package/lib/components/create-fixture/create-fixture.component.d.ts +59 -0
- package/lib/components/create-layout/create-layout.component.d.ts +197 -0
- package/lib/components/create-layout/popups/add-floor/add-floor.component.d.ts +16 -0
- package/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.d.ts +8 -0
- package/lib/components/create-layout/popups/delete-layout/delete-layout.component.d.ts +8 -0
- package/lib/components/create-product/create-product.component.d.ts +5 -0
- package/lib/components/create-store/create-store.component.d.ts +202 -0
- package/lib/components/create-vm/create-vm.component.d.ts +63 -0
- package/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.d.ts +26 -0
- package/lib/components/custom-select/custom-select.component.d.ts +33 -0
- package/lib/components/fixture-template/fixture-template.component.d.ts +30 -0
- package/lib/components/fixture-template/template-basic-details/template-basic-details.component.d.ts +34 -0
- package/lib/components/fixture-template/template-products/template-products.component.d.ts +80 -0
- package/lib/components/fixture-template/template-summary/template-summary.component.d.ts +62 -0
- package/lib/components/fixture-template/template-vms/template-vms.component.d.ts +62 -0
- package/lib/components/fixture-template-table/fixture-template-table.component.d.ts +64 -0
- package/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.d.ts +14 -0
- package/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.d.ts +21 -0
- package/lib/components/layout-builder/layout-builder.component.d.ts +18 -0
- package/lib/components/layout-elements/element-form/element-form.component.d.ts +32 -0
- package/lib/components/layout-elements/layout-elements.component.d.ts +29 -0
- package/lib/components/layout-summary/layout-summary.component.d.ts +92 -0
- package/lib/components/layout-summary/popups/complete-layout/complete-layout.component.d.ts +8 -0
- package/lib/components/manage-plano-table/manage-plano-table.component.d.ts +62 -0
- package/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.d.ts +14 -0
- package/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.d.ts +20 -0
- package/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.d.ts +15 -0
- package/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.d.ts +62 -0
- package/lib/components/manage-store-plano/manage-store-plano.component.d.ts +102 -0
- package/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.d.ts +32 -0
- package/lib/components/manage-store-plano/template-products/template-products.component.d.ts +80 -0
- package/lib/components/manage-store-plano/template-vms/template-vms.component.d.ts +60 -0
- package/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.d.ts +39 -0
- package/lib/components/plano-configurations/custom-filter/custom-filter.component.d.ts +38 -0
- package/lib/components/plano-configurations/plano-configurations.component.d.ts +45 -0
- package/lib/components/plano-configurations/popups/popups.component.d.ts +24 -0
- package/lib/components/plano-library/fixture-library/fixture-library.component.d.ts +63 -0
- package/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.d.ts +21 -0
- package/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.d.ts +53 -0
- package/lib/components/plano-library/plano-library.component.d.ts +5 -0
- package/lib/components/plano-library/product-library/product-library.component.d.ts +5 -0
- package/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.d.ts +54 -0
- package/lib/components/plano-library/vm-library/vm-library.component.d.ts +65 -0
- package/lib/components/popups/complete-confirmation/complete-confirmation.component.d.ts +13 -0
- package/lib/components/popups/delete-confirmation/delete-confirmation.component.d.ts +12 -0
- package/lib/components/popups/exit-confirmation/exit-confirmation.component.d.ts +5 -0
- package/lib/components/reactive-select/reactive-select.component.d.ts +37 -0
- package/lib/components/store-builder/store-builder.component.d.ts +18 -0
- package/lib/components/store-layout-table/store-layout-table.component.d.ts +74 -0
- package/lib/components/store-offcanvas-component/store-offcanvas-component.component.d.ts +26 -0
- package/lib/components/store-plano/store-plano.component.d.ts +51 -0
- package/lib/components/visualize-vm-data/visualize-vm-data.component.d.ts +13 -0
- package/lib/data/fixture-template.data.d.ts +6 -0
- package/lib/functions/plano.function.d.ts +2 -0
- package/{src/lib/interfaces/fixture-library.interface.ts → lib/interfaces/fixture-library.interface.d.ts} +59 -64
- package/{src/lib/interfaces/fixture-template.interface.ts → lib/interfaces/fixture-template.interface.d.ts} +74 -80
- package/{src/lib/interfaces/layout-builder.interface.ts → lib/interfaces/layout-builder.interface.d.ts} +23 -25
- package/{src/lib/interfaces/plano-general.interface.ts → lib/interfaces/plano-general.interface.d.ts} +14 -16
- package/lib/interfaces/planogram.interface.d.ts +13 -0
- package/{src/lib/interfaces/vm-library.interface.ts → lib/interfaces/vm-library.interface.d.ts} +47 -66
- package/lib/pipes/time-ago.pipe.d.ts +10 -0
- package/lib/services/plano-data.service.d.ts +23 -0
- package/lib/services/store-builder.service.d.ts +80 -0
- package/lib/tango-store-builder-routing.module.d.ts +7 -0
- package/lib/tango-store-builder.module.d.ts +66 -0
- package/lib/tango-store-plano.module.d.ts +11 -0
- package/package.json +25 -12
- package/{src/public-api.ts → public-api.d.ts} +2 -6
- package/.eslintrc.json +0 -37
- package/ng-package.json +0 -7
- package/src/lib/components/counter-input/counter-input.component.html +0 -42
- package/src/lib/components/counter-input/counter-input.component.scss +0 -49
- package/src/lib/components/counter-input/counter-input.component.spec.ts +0 -23
- package/src/lib/components/counter-input/counter-input.component.ts +0 -68
- package/src/lib/components/create-fixture/create-fixture.component.html +0 -704
- package/src/lib/components/create-fixture/create-fixture.component.scss +0 -112
- package/src/lib/components/create-fixture/create-fixture.component.spec.ts +0 -23
- package/src/lib/components/create-fixture/create-fixture.component.ts +0 -435
- package/src/lib/components/create-layout/create-layout.component.html +0 -861
- package/src/lib/components/create-layout/create-layout.component.scss +0 -511
- package/src/lib/components/create-layout/create-layout.component.spec.ts +0 -23
- package/src/lib/components/create-layout/create-layout.component.ts +0 -2217
- package/src/lib/components/create-layout/popups/add-floor/add-floor.component.html +0 -29
- package/src/lib/components/create-layout/popups/add-floor/add-floor.component.scss +0 -67
- package/src/lib/components/create-layout/popups/add-floor/add-floor.component.ts +0 -48
- package/src/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.html +0 -10
- package/src/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.scss +0 -21
- package/src/lib/components/create-layout/popups/clear-all-steps/clear-all-steps.component.ts +0 -13
- package/src/lib/components/create-layout/popups/delete-layout/delete-layout.component.html +0 -13
- package/src/lib/components/create-layout/popups/delete-layout/delete-layout.component.scss +0 -21
- package/src/lib/components/create-layout/popups/delete-layout/delete-layout.component.ts +0 -14
- package/src/lib/components/create-product/create-product.component.html +0 -1
- package/src/lib/components/create-product/create-product.component.scss +0 -0
- package/src/lib/components/create-product/create-product.component.spec.ts +0 -23
- package/src/lib/components/create-product/create-product.component.ts +0 -10
- package/src/lib/components/create-store/create-store.component.html +0 -861
- package/src/lib/components/create-store/create-store.component.scss +0 -511
- package/src/lib/components/create-store/create-store.component.spec.ts +0 -23
- package/src/lib/components/create-store/create-store.component.ts +0 -2656
- package/src/lib/components/create-vm/create-vm.component.html +0 -361
- package/src/lib/components/create-vm/create-vm.component.scss +0 -101
- package/src/lib/components/create-vm/create-vm.component.spec.ts +0 -23
- package/src/lib/components/create-vm/create-vm.component.ts +0 -356
- package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.html +0 -68
- package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.scss +0 -25
- package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.spec.ts +0 -23
- package/src/lib/components/create-vm/popups/add-vm-type/add-vm-type.component.ts +0 -92
- package/src/lib/components/custom-select/custom-select.component.html +0 -42
- package/src/lib/components/custom-select/custom-select.component.scss +0 -132
- package/src/lib/components/custom-select/custom-select.component.spec.ts +0 -23
- package/src/lib/components/custom-select/custom-select.component.ts +0 -149
- package/src/lib/components/fixture-template/fixture-template.component.html +0 -176
- package/src/lib/components/fixture-template/fixture-template.component.scss +0 -8
- package/src/lib/components/fixture-template/fixture-template.component.spec.ts +0 -23
- package/src/lib/components/fixture-template/fixture-template.component.ts +0 -113
- package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.html +0 -166
- package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.scss +0 -21
- package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.spec.ts +0 -23
- package/src/lib/components/fixture-template/template-basic-details/template-basic-details.component.ts +0 -148
- package/src/lib/components/fixture-template/template-products/template-products.component.html +0 -626
- package/src/lib/components/fixture-template/template-products/template-products.component.scss +0 -241
- package/src/lib/components/fixture-template/template-products/template-products.component.spec.ts +0 -23
- package/src/lib/components/fixture-template/template-products/template-products.component.ts +0 -646
- package/src/lib/components/fixture-template/template-summary/template-summary.component.html +0 -312
- package/src/lib/components/fixture-template/template-summary/template-summary.component.scss +0 -233
- package/src/lib/components/fixture-template/template-summary/template-summary.component.spec.ts +0 -23
- package/src/lib/components/fixture-template/template-summary/template-summary.component.ts +0 -464
- package/src/lib/components/fixture-template/template-vms/template-vms.component.html +0 -230
- package/src/lib/components/fixture-template/template-vms/template-vms.component.scss +0 -108
- package/src/lib/components/fixture-template/template-vms/template-vms.component.spec.ts +0 -23
- package/src/lib/components/fixture-template/template-vms/template-vms.component.ts +0 -322
- package/src/lib/components/fixture-template-table/fixture-template-table.component.html +0 -469
- package/src/lib/components/fixture-template-table/fixture-template-table.component.scss +0 -6
- package/src/lib/components/fixture-template-table/fixture-template-table.component.spec.ts +0 -23
- package/src/lib/components/fixture-template-table/fixture-template-table.component.ts +0 -341
- package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.html +0 -55
- package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.scss +0 -60
- package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.spec.ts +0 -23
- package/src/lib/components/fixture-template-table/popups/bulk-upload-fixture-template/bulk-upload-fixture-template.component.ts +0 -48
- package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.html +0 -18
- package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.scss +0 -45
- package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.spec.ts +0 -23
- package/src/lib/components/fixture-template-table/popups/create-fixture-template/create-fixture-template.component.ts +0 -92
- package/src/lib/components/layout-builder/layout-builder.component.html +0 -24
- package/src/lib/components/layout-builder/layout-builder.component.scss +0 -78
- package/src/lib/components/layout-builder/layout-builder.component.spec.ts +0 -23
- package/src/lib/components/layout-builder/layout-builder.component.ts +0 -59
- package/src/lib/components/layout-elements/element-form/element-form.component.html +0 -268
- package/src/lib/components/layout-elements/element-form/element-form.component.scss +0 -4
- package/src/lib/components/layout-elements/element-form/element-form.component.spec.ts +0 -23
- package/src/lib/components/layout-elements/element-form/element-form.component.ts +0 -235
- package/src/lib/components/layout-elements/element-form/element.data.ts +0 -209
- package/src/lib/components/layout-elements/layout-elements.component.html +0 -82
- package/src/lib/components/layout-elements/layout-elements.component.scss +0 -36
- package/src/lib/components/layout-elements/layout-elements.component.spec.ts +0 -23
- package/src/lib/components/layout-elements/layout-elements.component.ts +0 -130
- package/src/lib/components/layout-summary/layout-summary.component.html +0 -269
- package/src/lib/components/layout-summary/layout-summary.component.scss +0 -223
- package/src/lib/components/layout-summary/layout-summary.component.spec.ts +0 -23
- package/src/lib/components/layout-summary/layout-summary.component.ts +0 -965
- package/src/lib/components/layout-summary/popups/complete-layout/complete-layout.component.html +0 -10
- package/src/lib/components/layout-summary/popups/complete-layout/complete-layout.component.scss +0 -21
- package/src/lib/components/layout-summary/popups/complete-layout/complete-layout.component.ts +0 -13
- package/src/lib/components/manage-plano-table/manage-plano-table.component.html +0 -789
- package/src/lib/components/manage-plano-table/manage-plano-table.component.scss +0 -147
- package/src/lib/components/manage-plano-table/manage-plano-table.component.spec.ts +0 -23
- package/src/lib/components/manage-plano-table/manage-plano-table.component.ts +0 -294
- package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.html +0 -55
- package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.scss +0 -60
- package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.spec.ts +0 -23
- package/src/lib/components/manage-plano-table/popups/bulk-upload-planogram/bulk-upload-planogram.component.ts +0 -48
- package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.html +0 -27
- package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.scss +0 -21
- package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.spec.ts +0 -23
- package/src/lib/components/manage-plano-table/popups/create-planogram/create-planogram.component.ts +0 -47
- package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.html +0 -36
- package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.scss +0 -0
- package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.spec.ts +0 -23
- package/src/lib/components/manage-store-plano/confirmation-popup/confirmation-popup.component.ts +0 -38
- package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.html +0 -1399
- package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.scss +0 -255
- package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.spec.ts +0 -23
- package/src/lib/components/manage-store-plano/manage-store-plano-feedback/manage-store-plano-feedback.component.ts +0 -553
- package/src/lib/components/manage-store-plano/manage-store-plano.component.html +0 -526
- package/src/lib/components/manage-store-plano/manage-store-plano.component.scss +0 -102
- package/src/lib/components/manage-store-plano/manage-store-plano.component.spec.ts +0 -23
- package/src/lib/components/manage-store-plano/manage-store-plano.component.ts +0 -3057
- package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.html +0 -166
- package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.scss +0 -21
- package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.spec.ts +0 -23
- package/src/lib/components/manage-store-plano/template-basic-details/template-basic-details.component.ts +0 -128
- package/src/lib/components/manage-store-plano/template-products/template-products.component.html +0 -626
- package/src/lib/components/manage-store-plano/template-products/template-products.component.scss +0 -241
- package/src/lib/components/manage-store-plano/template-products/template-products.component.spec.ts +0 -23
- package/src/lib/components/manage-store-plano/template-products/template-products.component.ts +0 -656
- package/src/lib/components/manage-store-plano/template-vms/template-vms.component.html +0 -230
- package/src/lib/components/manage-store-plano/template-vms/template-vms.component.scss +0 -108
- package/src/lib/components/manage-store-plano/template-vms/template-vms.component.spec.ts +0 -23
- package/src/lib/components/manage-store-plano/template-vms/template-vms.component.ts +0 -319
- package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.html +0 -68
- package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.scss +0 -178
- package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.spec.ts +0 -23
- package/src/lib/components/multiselect-chip-dropdown/multiselect-chip-dropdown.component.ts +0 -160
- package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.html +0 -76
- package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.scss +0 -0
- package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.spec.ts +0 -23
- package/src/lib/components/plano-configurations/custom-filter/custom-filter.component.ts +0 -180
- package/src/lib/components/plano-configurations/plano-configurations.component.html +0 -257
- package/src/lib/components/plano-configurations/plano-configurations.component.scss +0 -119
- package/src/lib/components/plano-configurations/plano-configurations.component.spec.ts +0 -23
- package/src/lib/components/plano-configurations/plano-configurations.component.ts +0 -286
- package/src/lib/components/plano-configurations/popups/popups.component.html +0 -124
- package/src/lib/components/plano-configurations/popups/popups.component.scss +0 -92
- package/src/lib/components/plano-configurations/popups/popups.component.spec.ts +0 -23
- package/src/lib/components/plano-configurations/popups/popups.component.ts +0 -121
- package/src/lib/components/plano-library/fixture-library/fixture-library.component.html +0 -589
- package/src/lib/components/plano-library/fixture-library/fixture-library.component.scss +0 -1
- package/src/lib/components/plano-library/fixture-library/fixture-library.component.spec.ts +0 -23
- package/src/lib/components/plano-library/fixture-library/fixture-library.component.ts +0 -326
- package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.html +0 -99
- package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.scss +0 -45
- package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.spec.ts +0 -23
- package/src/lib/components/plano-library/fixture-library/popups/create-fixture-modal/create-fixture-modal.component.ts +0 -50
- package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.html +0 -183
- package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.scss +0 -95
- package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.spec.ts +0 -23
- package/src/lib/components/plano-library/fixture-library/popups/fixture-bulk-upload/fixture-bulk-upload.component.ts +0 -516
- package/src/lib/components/plano-library/plano-library.component.html +0 -17
- package/src/lib/components/plano-library/plano-library.component.scss +0 -1
- package/src/lib/components/plano-library/plano-library.component.spec.ts +0 -23
- package/src/lib/components/plano-library/plano-library.component.ts +0 -9
- package/src/lib/components/plano-library/product-library/product-library.component.html +0 -3
- package/src/lib/components/plano-library/product-library/product-library.component.scss +0 -1
- package/src/lib/components/plano-library/product-library/product-library.component.spec.ts +0 -23
- package/src/lib/components/plano-library/product-library/product-library.component.ts +0 -10
- package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.html +0 -183
- package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.scss +0 -95
- package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.spec.ts +0 -23
- package/src/lib/components/plano-library/vm-library/popups/vm-bulk-upload/vm-bulk-upload.component.ts +0 -450
- package/src/lib/components/plano-library/vm-library/vm-library.component.html +0 -611
- package/src/lib/components/plano-library/vm-library/vm-library.component.scss +0 -12
- package/src/lib/components/plano-library/vm-library/vm-library.component.spec.ts +0 -23
- package/src/lib/components/plano-library/vm-library/vm-library.component.ts +0 -323
- package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.html +0 -11
- package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.scss +0 -13
- package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.spec.ts +0 -23
- package/src/lib/components/popups/complete-confirmation/complete-confirmation.component.ts +0 -25
- package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.html +0 -24
- package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.scss +0 -13
- package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.spec.ts +0 -23
- package/src/lib/components/popups/delete-confirmation/delete-confirmation.component.ts +0 -25
- package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.html +0 -1
- package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.scss +0 -13
- package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.spec.ts +0 -23
- package/src/lib/components/popups/exit-confirmation/exit-confirmation.component.ts +0 -10
- package/src/lib/components/reactive-select/reactive-select.component.html +0 -45
- package/src/lib/components/reactive-select/reactive-select.component.scss +0 -52
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +0 -23
- package/src/lib/components/reactive-select/reactive-select.component.ts +0 -120
- package/src/lib/components/store-builder/store-builder.component.html +0 -24
- package/src/lib/components/store-builder/store-builder.component.scss +0 -78
- package/src/lib/components/store-builder/store-builder.component.spec.ts +0 -23
- package/src/lib/components/store-builder/store-builder.component.ts +0 -56
- package/src/lib/components/store-layout-table/store-layout-table.component.html +0 -376
- package/src/lib/components/store-layout-table/store-layout-table.component.scss +0 -312
- package/src/lib/components/store-layout-table/store-layout-table.component.spec.ts +0 -23
- package/src/lib/components/store-layout-table/store-layout-table.component.ts +0 -777
- package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.html +0 -124
- package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.scss +0 -90
- package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.spec.ts +0 -23
- package/src/lib/components/store-offcanvas-component/store-offcanvas-component.component.ts +0 -90
- package/src/lib/components/store-plano/store-plano.component.html +0 -161
- package/src/lib/components/store-plano/store-plano.component.scss +0 -77
- package/src/lib/components/store-plano/store-plano.component.spec.ts +0 -23
- package/src/lib/components/store-plano/store-plano.component.ts +0 -1184
- package/src/lib/components/visualize-vm-data/visualize-vm-data.component.html +0 -20
- package/src/lib/components/visualize-vm-data/visualize-vm-data.component.scss +0 -50
- package/src/lib/components/visualize-vm-data/visualize-vm-data.component.spec.ts +0 -23
- package/src/lib/components/visualize-vm-data/visualize-vm-data.component.ts +0 -30
- package/src/lib/data/fixture-template.data.ts +0 -32
- package/src/lib/functions/plano.function.ts +0 -35
- package/src/lib/interfaces/planogram.interface.ts +0 -13
- package/src/lib/pipes/time-ago.pipe.ts +0 -59
- package/src/lib/services/plano-data.service.ts +0 -95
- package/src/lib/services/store-builder.service.ts +0 -299
- package/src/lib/styles/fixture-template.scss +0 -442
- package/src/lib/styles/library.scss +0 -219
- package/src/lib/tango-store-builder-routing.module.ts +0 -151
- package/src/lib/tango-store-builder.module.ts +0 -135
- package/src/lib/tango-store-plano.module.ts +0 -28
- package/tsconfig.lib.json +0 -14
- package/tsconfig.lib.prod.json +0 -10
- 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==
|