kitchen-simulator 5.0.0-test.5 → 5.0.0-test.7
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/package.json +34 -41
- package/src/@history.js +3 -0
- package/src/AppContext.js +5 -0
- package/src/KitchenConfigurator.jsx +1517 -0
- package/src/KitchenConfiguratorApp.jsx +443 -0
- package/src/actions/area-actions.js +15 -0
- package/src/actions/export.js +38 -0
- package/src/actions/groups-actions.js +102 -0
- package/src/actions/holes-actions.js +152 -0
- package/src/actions/items-actions.js +393 -0
- package/src/actions/lines-actions.js +103 -0
- package/src/actions/project-actions.js +391 -0
- package/src/actions/scene-actions.js +44 -0
- package/src/actions/user-actions.js +75 -0
- package/src/actions/vertices-actions.js +34 -0
- package/src/actions/viewer2d-actions.js +79 -0
- package/src/actions/viewer3d-actions.js +32 -0
- package/src/catalog/areas/area/planner-element.jsx +43 -0
- package/src/catalog/catalog.js +258 -0
- package/src/catalog/factories/area-factory-3d.js +252 -0
- package/src/catalog/factories/area-factory.jsx +102 -0
- package/src/catalog/factories/export.js +9 -0
- package/src/catalog/factories/wall-factory-3d.js +296 -0
- package/src/catalog/factories/wall-factory.jsx +321 -0
- package/src/catalog/holes/door-closet/planner-element.jsx +251 -0
- package/src/catalog/holes/door-double/planner-element.jsx +391 -0
- package/src/catalog/holes/door-exterior/planner-element.jsx +245 -0
- package/src/catalog/holes/door-interior/planner-element.jsx +256 -0
- package/src/catalog/holes/door-panic/planner-element.jsx +594 -0
- package/src/catalog/holes/door-panic-double/planner-element.jsx +574 -0
- package/src/catalog/holes/door-sliding/planner-element.jsx +256 -0
- package/src/catalog/holes/doorway-framed/planner-element.jsx +169 -0
- package/src/catalog/holes/doorway-frameless/planner-element.jsx +116 -0
- package/src/catalog/holes/window-clear/planner-element.jsx +181 -0
- package/src/catalog/holes/window-cross/planner-element.jsx +180 -0
- package/src/catalog/holes/window-double-hung/planner-element.jsx +366 -0
- package/src/catalog/holes/window-vertical/planner-element.jsx +290 -0
- package/src/catalog/lines/wall/planner-element.jsx +73 -0
- package/src/catalog/molding/molding-dcm/planner-element.jsx +35 -0
- package/src/catalog/molding/molding-fbm/planner-element.jsx +35 -0
- package/src/catalog/molding/molding-lrm/planner-element.jsx +35 -0
- package/src/catalog/properties/export.js +33 -0
- package/src/catalog/properties/property-checkbox.jsx +123 -0
- package/src/catalog/properties/property-color.jsx +52 -0
- package/src/catalog/properties/property-enum.jsx +87 -0
- package/src/catalog/properties/property-hidden.jsx +22 -0
- package/src/catalog/properties/property-lenght-measure.jsx +113 -0
- package/src/catalog/properties/property-length-measure.jsx +129 -0
- package/src/catalog/properties/property-length-measure_hole.jsx +110 -0
- package/src/catalog/properties/property-number.jsx +63 -0
- package/src/catalog/properties/property-read-only.jsx +37 -0
- package/src/catalog/properties/property-string.jsx +59 -0
- package/src/catalog/properties/property-toggle.jsx +51 -0
- package/src/catalog/properties/shared-property-style.js +13 -0
- package/src/catalog/utils/FuseUtils.js +61 -0
- package/src/catalog/utils/exporter.js +173 -0
- package/src/catalog/utils/geom-utils.js +301 -0
- package/src/catalog/utils/item-loader.jsx +2122 -0
- package/src/catalog/utils/load-obj.js +113 -0
- package/src/catalog/utils/mtl-loader.js +462 -0
- package/src/catalog/utils/obj-loader.js +544 -0
- package/src/class/FuseUtils.js +61 -0
- package/src/class/area.js +159 -0
- package/src/class/export.js +37 -0
- package/src/class/group.js +565 -0
- package/src/class/guide.js +44 -0
- package/src/class/hole.js +1359 -0
- package/src/class/item.js +2050 -0
- package/src/class/layer.js +926 -0
- package/src/class/line.js +1780 -0
- package/src/class/project.js +875 -0
- package/src/class/vertex.js +409 -0
- package/src/components/atoms/Snackbar/index.jsx +43 -0
- package/src/components/atoms/radio-button/index.jsx +20 -0
- package/src/components/atoms/radio-button/styles.js +56 -0
- package/src/components/button/MainButton.jsx +157 -0
- package/src/components/button/ToggleMeasureButton.jsx +65 -0
- package/src/components/catalog-view/catalog-breadcrumb.jsx +53 -0
- package/src/components/catalog-view/catalog-item.jsx +229 -0
- package/src/components/catalog-view/catalog-list.jsx +173 -0
- package/src/components/catalog-view/catalog-page-item.jsx +110 -0
- package/src/components/catalog-view/catalog-turn-back-page-item.jsx +80 -0
- package/src/components/configurator/custom-configurator.jsx +77 -0
- package/src/components/configurator/project-configurator.jsx +120 -0
- package/src/components/content.jsx +136 -0
- package/src/components/export.js +36 -0
- package/src/components/firstsetting/button/styles.js +223 -0
- package/src/components/firstsetting/export.js +9 -0
- package/src/components/firstsetting/firstsetting-content-button.jsx +198 -0
- package/src/components/firstsetting/firstsetting-toggle-button.jsx +101 -0
- package/src/components/firstsetting/firstsetting.jsx +814 -0
- package/src/components/footerbar/button/ControlButton.jsx +43 -0
- package/src/components/footerbar/button/DirectionButton.jsx +54 -0
- package/src/components/footerbar/button/DirectionPanSpinButton.jsx +36 -0
- package/src/components/footerbar/button/ToggleButton.jsx +58 -0
- package/src/components/footerbar/button/ToggleConvertButton.jsx +48 -0
- package/src/components/footerbar/button/ToggleMeasureButton.jsx +33 -0
- package/src/components/footerbar/button/styles.js +217 -0
- package/src/components/footerbar/export.js +9 -0
- package/src/components/footerbar/footer-content-button.jsx +198 -0
- package/src/components/footerbar/footer-toggle-button.jsx +101 -0
- package/src/components/footerbar/footerbar.jsx +1103 -0
- package/src/components/footerbar/styles.js +263 -0
- package/src/components/header/button/MenuButton.jsx +46 -0
- package/src/components/header/button/SaveButton.jsx +54 -0
- package/src/components/header/button/styles.js +181 -0
- package/src/components/header/export.js +5 -0
- package/src/components/header/header.jsx +631 -0
- package/src/components/header/styles.js +320 -0
- package/src/components/login/Login.js +77 -0
- package/src/components/login/LoginForm/index.js +108 -0
- package/src/components/login/Register.js +83 -0
- package/src/components/login/RegisterForm/index.js +171 -0
- package/src/components/login/jwtService.js +201 -0
- package/src/components/molecules/slider/index.jsx +15 -0
- package/src/components/molecules/slider/styles.js +0 -0
- package/src/components/myprojects/export.js +5 -0
- package/src/components/myprojects/index.jsx +445 -0
- package/src/components/myprojects/styles.js +241 -0
- package/src/components/sidebar/custom-accordion.jsx +48 -0
- package/src/components/sidebar/export.js +15 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.jsx +73 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.jsx +101 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.jsx +149 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.jsx +316 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.jsx +108 -0
- package/src/components/sidebar/panel-element-editor/element-editor.jsx +1070 -0
- package/src/components/sidebar/panel-element-editor/multi-elements-editor.jsx +0 -0
- package/src/components/sidebar/panel-element-editor/panel-element-editor.jsx +104 -0
- package/src/components/sidebar/panel-element-editor/panel-multi-elements-editor.jsx +155 -0
- package/src/components/sidebar/panel-group-editor.jsx +272 -0
- package/src/components/sidebar/panel-groups.jsx +310 -0
- package/src/components/sidebar/panel-guides.jsx +192 -0
- package/src/components/sidebar/panel-layer-elements.jsx +298 -0
- package/src/components/sidebar/panel-layers.jsx +381 -0
- package/src/components/sidebar/panel.jsx +71 -0
- package/src/components/sidebar/sidebar.jsx +106 -0
- package/src/components/sidebar/toolbar-panel.jsx +139 -0
- package/src/components/sign/export.js +7 -0
- package/src/components/sign/main/index.jsx +523 -0
- package/src/components/sign/main/styles.js +163 -0
- package/src/components/style/button.jsx +95 -0
- package/src/components/style/cancel-button.jsx +20 -0
- package/src/components/style/content-container.jsx +29 -0
- package/src/components/style/content-title.jsx +20 -0
- package/src/components/style/delete-button.jsx +23 -0
- package/src/components/style/export.jsx +48 -0
- package/src/components/style/form-block.jsx +13 -0
- package/src/components/style/form-color-input.jsx +27 -0
- package/src/components/style/form-label.jsx +15 -0
- package/src/components/style/form-number-input.jsx +196 -0
- package/src/components/style/form-number-input_2.jsx +191 -0
- package/src/components/style/form-select.jsx +38 -0
- package/src/components/style/form-slider.jsx +36 -0
- package/src/components/style/form-submit-button.jsx +23 -0
- package/src/components/style/form-text-input.jsx +65 -0
- package/src/components/toolbar/button/ControlButton.jsx +41 -0
- package/src/components/toolbar/button/DirectionButton.jsx +34 -0
- package/src/components/toolbar/button/RightButton.jsx +103 -0
- package/src/components/toolbar/button/ToggleButton.jsx +41 -0
- package/src/components/toolbar/button/index.jsx +55 -0
- package/src/components/toolbar/button/styles.js +127 -0
- package/src/components/toolbar/components/DoorStyleMenu.jsx +103 -0
- package/src/components/toolbar/components/Pricing.jsx +126 -0
- package/src/components/toolbar/components/ReviewForQuote.jsx +635 -0
- package/src/components/toolbar/export.js +21 -0
- package/src/components/toolbar/main/Alert.js +122 -0
- package/src/components/toolbar/main/TakePictureModal.jsx +104 -0
- package/src/components/toolbar/main/confirm-popup.jsx +99 -0
- package/src/components/toolbar/main/index.jsx +5627 -0
- package/src/components/toolbar/main/myComponents.js +123 -0
- package/src/components/toolbar/main/styles.js +696 -0
- package/src/components/toolbar/plugin-item.jsx +123 -0
- package/src/components/toolbar/popup/appliance/appliance-category/index.jsx +73 -0
- package/src/components/toolbar/popup/appliance/choose-appliance/index.jsx +102 -0
- package/src/components/toolbar/popup/appliance/index.jsx +83 -0
- package/src/components/toolbar/popup/autosaveprompt/index.jsx +150 -0
- package/src/components/toolbar/popup/autosaveprompt/styles.js +40 -0
- package/src/components/toolbar/popup/cabinet/cabinet-category/index.jsx +73 -0
- package/src/components/toolbar/popup/cabinet/choose-product/index.jsx +119 -0
- package/src/components/toolbar/popup/cabinet/index.jsx +85 -0
- package/src/components/toolbar/popup/doorStyle/choose-style/index.jsx +63 -0
- package/src/components/toolbar/popup/doorStyle/index.jsx +71 -0
- package/src/components/toolbar/popup/doorStyle/style-category/index.jsx +139 -0
- package/src/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +2 -0
- package/src/components/toolbar/popup/downloadsummary/downloadSummaryTemp.jsx +157 -0
- package/src/components/toolbar/popup/downloadsummary/index.jsx +643 -0
- package/src/components/toolbar/popup/downloadsummary/show2D/show2DView.jsx +51 -0
- package/src/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.jsx +175 -0
- package/src/components/toolbar/popup/downloadsummary/show3D/show3DView.jsx +283 -0
- package/src/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.jsx +2257 -0
- package/src/components/toolbar/popup/downloadsummary/showCabinetInfo.js +93 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/showElevationView.jsx +132 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.jsx +2198 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.jsx +152 -0
- package/src/components/toolbar/popup/downloadsummary/showWarranty.jsx +149 -0
- package/src/components/toolbar/popup/downloadsummary/styles.js +453 -0
- package/src/components/toolbar/popup/finishingtouch/category/index.jsx +34 -0
- package/src/components/toolbar/popup/finishingtouch/index.jsx +58 -0
- package/src/components/toolbar/popup/finishingtouch/material-edit.jsx +112 -0
- package/src/components/toolbar/popup/finishingtouch/product/index.jsx +116 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/confirm-popup.jsx +101 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/index.jsx +254 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/styles.js +86 -0
- package/src/components/toolbar/popup/floorplan/floor-category/index.jsx +109 -0
- package/src/components/toolbar/popup/floorplan/index.jsx +60 -0
- package/src/components/toolbar/popup/index.jsx +241 -0
- package/src/components/toolbar/popup/newproject/index.jsx +59 -0
- package/src/components/toolbar/popup/newproject/styles.js +41 -0
- package/src/components/toolbar/popup/product/appliance.jsx +54 -0
- package/src/components/toolbar/popup/product/cabinetproduct.jsx +15 -0
- package/src/components/toolbar/popup/product/doorstyle.jsx +58 -0
- package/src/components/toolbar/popup/product/doorstyleproduct.jsx +47 -0
- package/src/components/toolbar/popup/product/floor.jsx +36 -0
- package/src/components/toolbar/popup/product/floorproduct.jsx +42 -0
- package/src/components/toolbar/popup/product/index.jsx +36 -0
- package/src/components/toolbar/popup/product/primary.jsx +77 -0
- package/src/components/toolbar/popup/product/productline.jsx +93 -0
- package/src/components/toolbar/popup/product/reviewItem.jsx +427 -0
- package/src/components/toolbar/popup/product/reviewMolding.jsx +310 -0
- package/src/components/toolbar/popup/product/styles.js +260 -0
- package/src/components/toolbar/popup/savedesign/FullPictureForm.jsx +146 -0
- package/src/components/toolbar/popup/savedesign/index.jsx +495 -0
- package/src/components/toolbar/popup/savedesign/styles.js +151 -0
- package/src/components/toolbar/popup/setDoorStyleOption/index.jsx +87 -0
- package/src/components/toolbar/popup/styles.js +909 -0
- package/src/components/toolbar/popup/submitforquote/AddToCartOptions.jsx +192 -0
- package/src/components/toolbar/popup/submitforquote/CustomerRequestsForm.jsx +96 -0
- package/src/components/toolbar/popup/submitforquote/SkipDesignerReview.jsx +54 -0
- package/src/components/toolbar/popup/submitforquote/StepDots.jsx +25 -0
- package/src/components/toolbar/popup/submitforquote/cart-choice.jsx +116 -0
- package/src/components/toolbar/popup/submitforquote/doorstyle-menus.js +38 -0
- package/src/components/toolbar/popup/submitforquote/index.jsx +698 -0
- package/src/components/toolbar/popup/submitforquote/styles.js +294 -0
- package/src/components/toolbar/popup/submitprompt/index.jsx +89 -0
- package/src/components/toolbar/popup/submitprompt/styles.js +42 -0
- package/src/components/toolbar/toolbar-button.jsx +90 -0
- package/src/components/toolbar/toolbar-load-button.jsx +36 -0
- package/src/components/toolbar/toolbar-save-button.jsx +32 -0
- package/src/components/tutorial-view/Modal.jsx +584 -0
- package/src/components/tutorial-view/styles.js +65 -0
- package/src/components/viewer2d/area.jsx +98 -0
- package/src/components/viewer2d/export.js +48 -0
- package/src/components/viewer2d/grids/grid-horizontal-streak.jsx +40 -0
- package/src/components/viewer2d/grids/grid-streak.jsx +32 -0
- package/src/components/viewer2d/grids/grid-vertical-streak.jsx +41 -0
- package/src/components/viewer2d/grids/grids.jsx +30 -0
- package/src/components/viewer2d/group.jsx +57 -0
- package/src/components/viewer2d/item.jsx +618 -0
- package/src/components/viewer2d/layer.jsx +214 -0
- package/src/components/viewer2d/line.jsx +1358 -0
- package/src/components/viewer2d/ruler.jsx +136 -0
- package/src/components/viewer2d/rulerDist.jsx +192 -0
- package/src/components/viewer2d/rulerX.jsx +141 -0
- package/src/components/viewer2d/rulerY.jsx +138 -0
- package/src/components/viewer2d/scene.jsx +94 -0
- package/src/components/viewer2d/snap.jsx +118 -0
- package/src/components/viewer2d/state.jsx +77 -0
- package/src/components/viewer2d/utils.js +195 -0
- package/src/components/viewer2d/vertex.jsx +76 -0
- package/src/components/viewer2d/viewer2d.jsx +1830 -0
- package/src/components/viewer3d/camera-controls-module/camera-controls.module.js +3078 -0
- package/src/components/viewer3d/dcm.js +226 -0
- package/src/components/viewer3d/fbm.js +383 -0
- package/src/components/viewer3d/front3D.jsx +63 -0
- package/src/components/viewer3d/grid-creator.js +25 -0
- package/src/components/viewer3d/grids/grid-horizontal-streak.js +41 -0
- package/src/components/viewer3d/grids/grid-streak.js +34 -0
- package/src/components/viewer3d/grids/grid-vertical-streak.js +42 -0
- package/src/components/viewer3d/libs/first-person-controls.js +70 -0
- package/src/components/viewer3d/libs/helvetiker_regular.typeface.js +1265 -0
- package/src/components/viewer3d/libs/mtl-loader.js +462 -0
- package/src/components/viewer3d/libs/obj-loader.js +653 -0
- package/src/components/viewer3d/libs/orbit-controls.js +945 -0
- package/src/components/viewer3d/libs/pointer-lock-controls.js +67 -0
- package/src/components/viewer3d/lrm.js +358 -0
- package/src/components/viewer3d/model.js +830 -0
- package/src/components/viewer3d/pointer-lock-navigation.js +140 -0
- package/src/components/viewer3d/ruler-utils/itemRect.jsx +91 -0
- package/src/components/viewer3d/ruler-utils/layer3D.jsx +528 -0
- package/src/components/viewer3d/ruler-utils/ruler3D.jsx +218 -0
- package/src/components/viewer3d/ruler-utils/scene3D.jsx +87 -0
- package/src/components/viewer3d/ruler-utils/state3D.jsx +25 -0
- package/src/components/viewer3d/scene-creator.js +5169 -0
- package/src/components/viewer3d/three-memory-cleaner.js +65 -0
- package/src/components/viewer3d/viewer3d-first-person.js +395 -0
- package/src/components/viewer3d/viewer3d.js +3376 -0
- package/src/components/wizardstep/button/styles.js +677 -0
- package/src/components/wizardstep/export.js +5 -0
- package/src/components/wizardstep/index.jsx +1372 -0
- package/src/components/wizardstep/styles.js +688 -0
- package/src/components/wizardstep/wizardstep-content-button.jsx +198 -0
- package/src/components/wizardstep/wizardstep-toggle-button.jsx +101 -0
- package/src/constants.js +731 -0
- package/src/index.js +32 -0
- package/src/models.js +541 -0
- package/src/plugins/SVGLoader.js +1991 -0
- package/src/plugins/autosave.js +39 -0
- package/src/plugins/console-debugger.js +36 -0
- package/src/plugins/export.js +11 -0
- package/src/plugins/keyboard.js +194 -0
- package/src/reducers/areas-reducer.js +13 -0
- package/src/reducers/export.js +39 -0
- package/src/reducers/groups-reducer.js +73 -0
- package/src/reducers/holes-reducer.js +125 -0
- package/src/reducers/items-reducer.js +286 -0
- package/src/reducers/lines-reducer.js +96 -0
- package/src/reducers/project-reducer.js +239 -0
- package/src/reducers/reducer.js +59 -0
- package/src/reducers/scene-reducer.js +41 -0
- package/src/reducers/user-reducer.js +30 -0
- package/src/reducers/vertices-reducer.js +34 -0
- package/src/reducers/viewer2d-reducer.js +81 -0
- package/src/reducers/viewer3d-reducer.js +65 -0
- package/src/shared-style.js +72 -0
- package/src/translator/en.js +106 -0
- package/src/translator/it.js +80 -0
- package/src/translator/ru.js +80 -0
- package/src/translator/translator.js +81 -0
- package/src/utils/browser.js +36 -0
- package/src/utils/email-validator.js +5 -0
- package/src/utils/export.js +39 -0
- package/src/utils/geometry.js +2572 -0
- package/src/utils/get-edges-of-subgraphs.js +29 -0
- package/src/utils/graph-cycles.js +259 -0
- package/src/utils/graph-inner-cycles.js +49 -0
- package/src/utils/graph.js +147 -0
- package/src/utils/helper.js +431 -0
- package/src/utils/history.js +37 -0
- package/src/utils/id-broker.js +9 -0
- package/src/utils/logger.js +8 -0
- package/src/utils/math.js +51 -0
- package/src/utils/molding.js +973 -0
- package/src/utils/name-generator.js +5 -0
- package/src/utils/objects-utils.js +56 -0
- package/src/utils/phone-validator.js +4 -0
- package/src/utils/process-black-list.js +10 -0
- package/src/utils/react-if.jsx +20 -0
- package/src/utils/snap-scene.js +102 -0
- package/src/utils/snap.js +184 -0
- package/src/utils/threeCSG.es6.js +578 -0
- package/src/version.js +1 -0
- package/es/@history.js +0 -3
- package/es/@history.js.map +0 -1
- package/es/AppContext.js +0 -4
- package/es/AppContext.js.map +0 -1
- package/es/KitchenConfigurator.js +0 -1345
- package/es/KitchenConfigurator.js.map +0 -1
- package/es/KitchenConfiguratorApp.js +0 -532
- package/es/KitchenConfiguratorApp.js.map +0 -1
- package/es/actions/area-actions.js +0 -15
- package/es/actions/area-actions.js.map +0 -1
- package/es/actions/export.js +0 -26
- package/es/actions/export.js.map +0 -1
- package/es/actions/groups-actions.js +0 -90
- package/es/actions/groups-actions.js.map +0 -1
- package/es/actions/holes-actions.js +0 -120
- package/es/actions/holes-actions.js.map +0 -1
- package/es/actions/items-actions.js +0 -314
- package/es/actions/items-actions.js.map +0 -1
- package/es/actions/lines-actions.js +0 -83
- package/es/actions/lines-actions.js.map +0 -1
- package/es/actions/project-actions.js +0 -282
- package/es/actions/project-actions.js.map +0 -1
- package/es/actions/scene-actions.js +0 -34
- package/es/actions/scene-actions.js.map +0 -1
- package/es/actions/user-actions.js +0 -59
- package/es/actions/user-actions.js.map +0 -1
- package/es/actions/vertices-actions.js +0 -28
- package/es/actions/vertices-actions.js.map +0 -1
- package/es/actions/viewer2d-actions.js +0 -59
- package/es/actions/viewer2d-actions.js.map +0 -1
- package/es/actions/viewer3d-actions.js +0 -24
- package/es/actions/viewer3d-actions.js.map +0 -1
- package/es/catalog/areas/area/planner-element.js +0 -41
- package/es/catalog/areas/area/planner-element.js.map +0 -1
- package/es/catalog/catalog.js +0 -278
- package/es/catalog/catalog.js.map +0 -1
- package/es/catalog/factories/area-factory-3d.js +0 -183
- package/es/catalog/factories/area-factory-3d.js.map +0 -1
- package/es/catalog/factories/area-factory.js +0 -82
- package/es/catalog/factories/area-factory.js.map +0 -1
- package/es/catalog/factories/export.js +0 -8
- package/es/catalog/factories/export.js.map +0 -1
- package/es/catalog/factories/wall-factory-3d.js +0 -203
- package/es/catalog/factories/wall-factory-3d.js.map +0 -1
- package/es/catalog/factories/wall-factory.js +0 -269
- package/es/catalog/factories/wall-factory.js.map +0 -1
- package/es/catalog/holes/door-closet/planner-element.js +0 -223
- package/es/catalog/holes/door-closet/planner-element.js.map +0 -1
- package/es/catalog/holes/door-double/planner-element.js +0 -316
- package/es/catalog/holes/door-double/planner-element.js.map +0 -1
- package/es/catalog/holes/door-exterior/planner-element.js +0 -216
- package/es/catalog/holes/door-exterior/planner-element.js.map +0 -1
- package/es/catalog/holes/door-interior/planner-element.js +0 -228
- package/es/catalog/holes/door-interior/planner-element.js.map +0 -1
- package/es/catalog/holes/door-panic/planner-element.js +0 -504
- package/es/catalog/holes/door-panic/planner-element.js.map +0 -1
- package/es/catalog/holes/door-panic-double/planner-element.js +0 -464
- package/es/catalog/holes/door-panic-double/planner-element.js.map +0 -1
- package/es/catalog/holes/door-sliding/planner-element.js +0 -226
- package/es/catalog/holes/door-sliding/planner-element.js.map +0 -1
- package/es/catalog/holes/doorway-framed/planner-element.js +0 -146
- package/es/catalog/holes/doorway-framed/planner-element.js.map +0 -1
- package/es/catalog/holes/doorway-frameless/planner-element.js +0 -105
- package/es/catalog/holes/doorway-frameless/planner-element.js.map +0 -1
- package/es/catalog/holes/window-clear/planner-element.js +0 -167
- package/es/catalog/holes/window-clear/planner-element.js.map +0 -1
- package/es/catalog/holes/window-cross/planner-element.js +0 -166
- package/es/catalog/holes/window-cross/planner-element.js.map +0 -1
- package/es/catalog/holes/window-double-hung/planner-element.js +0 -304
- package/es/catalog/holes/window-double-hung/planner-element.js.map +0 -1
- package/es/catalog/holes/window-vertical/planner-element.js +0 -277
- package/es/catalog/holes/window-vertical/planner-element.js.map +0 -1
- package/es/catalog/lines/wall/planner-element.js +0 -71
- package/es/catalog/lines/wall/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-dcm/planner-element.js +0 -30
- package/es/catalog/molding/molding-dcm/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-fbm/planner-element.js +0 -30
- package/es/catalog/molding/molding-fbm/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-lrm/planner-element.js +0 -30
- package/es/catalog/molding/molding-lrm/planner-element.js.map +0 -1
- package/es/catalog/properties/export.js +0 -22
- package/es/catalog/properties/export.js.map +0 -1
- package/es/catalog/properties/property-checkbox.js +0 -72
- package/es/catalog/properties/property-checkbox.js.map +0 -1
- package/es/catalog/properties/property-color.js +0 -40
- package/es/catalog/properties/property-color.js.map +0 -1
- package/es/catalog/properties/property-enum.js +0 -56
- package/es/catalog/properties/property-enum.js.map +0 -1
- package/es/catalog/properties/property-hidden.js +0 -20
- package/es/catalog/properties/property-hidden.js.map +0 -1
- package/es/catalog/properties/property-lenght-measure.js +0 -102
- package/es/catalog/properties/property-lenght-measure.js.map +0 -1
- package/es/catalog/properties/property-length-measure.js +0 -86
- package/es/catalog/properties/property-length-measure.js.map +0 -1
- package/es/catalog/properties/property-length-measure_hole.js +0 -102
- package/es/catalog/properties/property-length-measure_hole.js.map +0 -1
- package/es/catalog/properties/property-number.js +0 -49
- package/es/catalog/properties/property-number.js.map +0 -1
- package/es/catalog/properties/property-read-only.js +0 -27
- package/es/catalog/properties/property-read-only.js.map +0 -1
- package/es/catalog/properties/property-string.js +0 -49
- package/es/catalog/properties/property-string.js.map +0 -1
- package/es/catalog/properties/property-toggle.js +0 -40
- package/es/catalog/properties/property-toggle.js.map +0 -1
- package/es/catalog/properties/shared-property-style.js +0 -15
- package/es/catalog/properties/shared-property-style.js.map +0 -1
- package/es/catalog/utils/FuseUtils.js +0 -83
- package/es/catalog/utils/FuseUtils.js.map +0 -1
- package/es/catalog/utils/exporter.js +0 -149
- package/es/catalog/utils/exporter.js.map +0 -1
- package/es/catalog/utils/geom-utils.js +0 -190
- package/es/catalog/utils/geom-utils.js.map +0 -1
- package/es/catalog/utils/item-loader.js +0 -1522
- package/es/catalog/utils/item-loader.js.map +0 -1
- package/es/catalog/utils/load-obj.js +0 -92
- package/es/catalog/utils/load-obj.js.map +0 -1
- package/es/catalog/utils/mtl-loader.js +0 -358
- package/es/catalog/utils/mtl-loader.js.map +0 -1
- package/es/catalog/utils/obj-loader.js +0 -477
- package/es/catalog/utils/obj-loader.js.map +0 -1
- package/es/class/FuseUtils.js +0 -83
- package/es/class/FuseUtils.js.map +0 -1
- package/es/class/area.js +0 -146
- package/es/class/area.js.map +0 -1
- package/es/class/export.js +0 -25
- package/es/class/export.js.map +0 -1
- package/es/class/group.js +0 -441
- package/es/class/group.js.map +0 -1
- package/es/class/guide.js +0 -63
- package/es/class/guide.js.map +0 -1
- package/es/class/hole.js +0 -931
- package/es/class/hole.js.map +0 -1
- package/es/class/item.js +0 -1888
- package/es/class/item.js.map +0 -1
- package/es/class/layer.js +0 -668
- package/es/class/layer.js.map +0 -1
- package/es/class/line.js +0 -1290
- package/es/class/line.js.map +0 -1
- package/es/class/project.js +0 -823
- package/es/class/project.js.map +0 -1
- package/es/class/vertex.js +0 -267
- package/es/class/vertex.js.map +0 -1
- package/es/components/atoms/Snackbar/index.js +0 -50
- package/es/components/atoms/Snackbar/index.js.map +0 -1
- package/es/components/atoms/radio-button/index.js +0 -26
- package/es/components/atoms/radio-button/index.js.map +0 -1
- package/es/components/atoms/radio-button/styles.js +0 -5
- package/es/components/atoms/radio-button/styles.js.map +0 -1
- package/es/components/button/MainButton.js +0 -92
- package/es/components/button/MainButton.js.map +0 -1
- package/es/components/button/ToggleMeasureButton.js +0 -56
- package/es/components/button/ToggleMeasureButton.js.map +0 -1
- package/es/components/catalog-view/catalog-breadcrumb.js +0 -53
- package/es/components/catalog-view/catalog-breadcrumb.js.map +0 -1
- package/es/components/catalog-view/catalog-item.js +0 -226
- package/es/components/catalog-view/catalog-item.js.map +0 -1
- package/es/components/catalog-view/catalog-list.js +0 -182
- package/es/components/catalog-view/catalog-list.js.map +0 -1
- package/es/components/catalog-view/catalog-page-item.js +0 -130
- package/es/components/catalog-view/catalog-page-item.js.map +0 -1
- package/es/components/catalog-view/catalog-turn-back-page-item.js +0 -106
- package/es/components/catalog-view/catalog-turn-back-page-item.js.map +0 -1
- package/es/components/configurator/custom-configurator.js +0 -94
- package/es/components/configurator/custom-configurator.js.map +0 -1
- package/es/components/configurator/project-configurator.js +0 -131
- package/es/components/configurator/project-configurator.js.map +0 -1
- package/es/components/content.js +0 -123
- package/es/components/content.js.map +0 -1
- package/es/components/export.js +0 -24
- package/es/components/export.js.map +0 -1
- package/es/components/firstsetting/button/styles.js +0 -27
- package/es/components/firstsetting/button/styles.js.map +0 -1
- package/es/components/firstsetting/export.js +0 -9
- package/es/components/firstsetting/export.js.map +0 -1
- package/es/components/firstsetting/firstsetting-content-button.js +0 -217
- package/es/components/firstsetting/firstsetting-content-button.js.map +0 -1
- package/es/components/firstsetting/firstsetting-toggle-button.js +0 -126
- package/es/components/firstsetting/firstsetting-toggle-button.js.map +0 -1
- package/es/components/firstsetting/firstsetting.js +0 -626
- package/es/components/firstsetting/firstsetting.js.map +0 -1
- package/es/components/footerbar/button/ControlButton.js +0 -72
- package/es/components/footerbar/button/ControlButton.js.map +0 -1
- package/es/components/footerbar/button/DirectionButton.js +0 -69
- package/es/components/footerbar/button/DirectionButton.js.map +0 -1
- package/es/components/footerbar/button/DirectionPanSpinButton.js +0 -50
- package/es/components/footerbar/button/DirectionPanSpinButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleButton.js +0 -76
- package/es/components/footerbar/button/ToggleButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleConvertButton.js +0 -73
- package/es/components/footerbar/button/ToggleConvertButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleMeasureButton.js +0 -52
- package/es/components/footerbar/button/ToggleMeasureButton.js.map +0 -1
- package/es/components/footerbar/button/styles.js +0 -22
- package/es/components/footerbar/button/styles.js.map +0 -1
- package/es/components/footerbar/export.js +0 -9
- package/es/components/footerbar/export.js.map +0 -1
- package/es/components/footerbar/footer-content-button.js +0 -217
- package/es/components/footerbar/footer-content-button.js.map +0 -1
- package/es/components/footerbar/footer-toggle-button.js +0 -126
- package/es/components/footerbar/footer-toggle-button.js.map +0 -1
- package/es/components/footerbar/footerbar.js +0 -801
- package/es/components/footerbar/footerbar.js.map +0 -1
- package/es/components/footerbar/styles.js +0 -34
- package/es/components/footerbar/styles.js.map +0 -1
- package/es/components/header/button/MenuButton.js +0 -70
- package/es/components/header/button/MenuButton.js.map +0 -1
- package/es/components/header/button/SaveButton.js +0 -48
- package/es/components/header/button/SaveButton.js.map +0 -1
- package/es/components/header/button/styles.js +0 -59
- package/es/components/header/button/styles.js.map +0 -1
- package/es/components/header/export.js +0 -5
- package/es/components/header/export.js.map +0 -1
- package/es/components/header/header.js +0 -550
- package/es/components/header/header.js.map +0 -1
- package/es/components/header/styles.js +0 -41
- package/es/components/header/styles.js.map +0 -1
- package/es/components/login/Login.js +0 -86
- package/es/components/login/Login.js.map +0 -1
- package/es/components/login/LoginForm/index.js +0 -132
- package/es/components/login/LoginForm/index.js.map +0 -1
- package/es/components/login/Register.js +0 -96
- package/es/components/login/Register.js.map +0 -1
- package/es/components/login/RegisterForm/index.js +0 -230
- package/es/components/login/RegisterForm/index.js.map +0 -1
- package/es/components/login/jwtService.js +0 -232
- package/es/components/login/jwtService.js.map +0 -1
- package/es/components/molecules/slider/index.js +0 -13
- package/es/components/molecules/slider/index.js.map +0 -1
- package/es/components/molecules/slider/styles.js +0 -2
- package/es/components/molecules/slider/styles.js.map +0 -1
- package/es/components/myprojects/export.js +0 -5
- package/es/components/myprojects/export.js.map +0 -1
- package/es/components/myprojects/index.js +0 -446
- package/es/components/myprojects/index.js.map +0 -1
- package/es/components/myprojects/styles.js +0 -24
- package/es/components/myprojects/styles.js.map +0 -1
- package/es/components/sidebar/custom-accordion.js +0 -38
- package/es/components/sidebar/custom-accordion.js.map +0 -1
- package/es/components/sidebar/export.js +0 -14
- package/es/components/sidebar/export.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.js +0 -65
- package/es/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.js +0 -116
- package/es/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.js +0 -126
- package/es/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.js +0 -251
- package/es/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.js +0 -75
- package/es/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/element-editor.js +0 -878
- package/es/components/sidebar/panel-element-editor/element-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/multi-elements-editor.js +0 -2
- package/es/components/sidebar/panel-element-editor/multi-elements-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/panel-element-editor.js +0 -49
- package/es/components/sidebar/panel-element-editor/panel-element-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/panel-multi-elements-editor.js +0 -118
- package/es/components/sidebar/panel-element-editor/panel-multi-elements-editor.js.map +0 -1
- package/es/components/sidebar/panel-group-editor.js +0 -211
- package/es/components/sidebar/panel-group-editor.js.map +0 -1
- package/es/components/sidebar/panel-groups.js +0 -267
- package/es/components/sidebar/panel-groups.js.map +0 -1
- package/es/components/sidebar/panel-guides.js +0 -185
- package/es/components/sidebar/panel-guides.js.map +0 -1
- package/es/components/sidebar/panel-layer-elements.js +0 -251
- package/es/components/sidebar/panel-layer-elements.js.map +0 -1
- package/es/components/sidebar/panel-layers.js +0 -340
- package/es/components/sidebar/panel-layers.js.map +0 -1
- package/es/components/sidebar/panel.js +0 -103
- package/es/components/sidebar/panel.js.map +0 -1
- package/es/components/sidebar/sidebar.js +0 -109
- package/es/components/sidebar/sidebar.js.map +0 -1
- package/es/components/sidebar/toolbar-panel.js +0 -164
- package/es/components/sidebar/toolbar-panel.js.map +0 -1
- package/es/components/sign/export.js +0 -6
- package/es/components/sign/export.js.map +0 -1
- package/es/components/sign/main/index.js +0 -560
- package/es/components/sign/main/index.js.map +0 -1
- package/es/components/sign/main/styles.js +0 -20
- package/es/components/sign/main/styles.js.map +0 -1
- package/es/components/style/button.js +0 -114
- package/es/components/style/button.js.map +0 -1
- package/es/components/style/cancel-button.js +0 -23
- package/es/components/style/cancel-button.js.map +0 -1
- package/es/components/style/content-container.js +0 -34
- package/es/components/style/content-container.js.map +0 -1
- package/es/components/style/content-title.js +0 -30
- package/es/components/style/content-title.js.map +0 -1
- package/es/components/style/delete-button.js +0 -26
- package/es/components/style/delete-button.js.map +0 -1
- package/es/components/style/export.js +0 -32
- package/es/components/style/export.js.map +0 -1
- package/es/components/style/form-block.js +0 -25
- package/es/components/style/form-block.js.map +0 -1
- package/es/components/style/form-color-input.js +0 -28
- package/es/components/style/form-color-input.js.map +0 -1
- package/es/components/style/form-label.js +0 -27
- package/es/components/style/form-label.js.map +0 -1
- package/es/components/style/form-number-input.js +0 -190
- package/es/components/style/form-number-input.js.map +0 -1
- package/es/components/style/form-number-input_2.js +0 -207
- package/es/components/style/form-number-input_2.js.map +0 -1
- package/es/components/style/form-select.js +0 -21
- package/es/components/style/form-select.js.map +0 -1
- package/es/components/style/form-slider.js +0 -46
- package/es/components/style/form-slider.js.map +0 -1
- package/es/components/style/form-submit-button.js +0 -27
- package/es/components/style/form-submit-button.js.map +0 -1
- package/es/components/style/form-text-input.js +0 -77
- package/es/components/style/form-text-input.js.map +0 -1
- package/es/components/toolbar/button/ControlButton.js +0 -69
- package/es/components/toolbar/button/ControlButton.js.map +0 -1
- package/es/components/toolbar/button/DirectionButton.js +0 -50
- package/es/components/toolbar/button/DirectionButton.js.map +0 -1
- package/es/components/toolbar/button/RightButton.js +0 -133
- package/es/components/toolbar/button/RightButton.js.map +0 -1
- package/es/components/toolbar/button/ToggleButton.js +0 -59
- package/es/components/toolbar/button/ToggleButton.js.map +0 -1
- package/es/components/toolbar/button/index.js +0 -88
- package/es/components/toolbar/button/index.js.map +0 -1
- package/es/components/toolbar/button/styles.js +0 -14
- package/es/components/toolbar/button/styles.js.map +0 -1
- package/es/components/toolbar/components/DoorStyleMenu.js +0 -105
- package/es/components/toolbar/components/DoorStyleMenu.js.map +0 -1
- package/es/components/toolbar/components/Pricing.js +0 -101
- package/es/components/toolbar/components/Pricing.js.map +0 -1
- package/es/components/toolbar/components/ReviewForQuote.js +0 -476
- package/es/components/toolbar/components/ReviewForQuote.js.map +0 -1
- package/es/components/toolbar/export.js +0 -14
- package/es/components/toolbar/export.js.map +0 -1
- package/es/components/toolbar/main/Alert.js +0 -125
- package/es/components/toolbar/main/Alert.js.map +0 -1
- package/es/components/toolbar/main/TakePictureModal.js +0 -100
- package/es/components/toolbar/main/TakePictureModal.js.map +0 -1
- package/es/components/toolbar/main/confirm-popup.js +0 -88
- package/es/components/toolbar/main/confirm-popup.js.map +0 -1
- package/es/components/toolbar/main/index.js +0 -4612
- package/es/components/toolbar/main/index.js.map +0 -1
- package/es/components/toolbar/main/myComponents.js +0 -118
- package/es/components/toolbar/main/myComponents.js.map +0 -1
- package/es/components/toolbar/main/styles.js +0 -64
- package/es/components/toolbar/main/styles.js.map +0 -1
- package/es/components/toolbar/plugin-item.js +0 -150
- package/es/components/toolbar/plugin-item.js.map +0 -1
- package/es/components/toolbar/popup/appliance/appliance-category/index.js +0 -77
- package/es/components/toolbar/popup/appliance/appliance-category/index.js.map +0 -1
- package/es/components/toolbar/popup/appliance/choose-appliance/index.js +0 -76
- package/es/components/toolbar/popup/appliance/choose-appliance/index.js.map +0 -1
- package/es/components/toolbar/popup/appliance/index.js +0 -81
- package/es/components/toolbar/popup/appliance/index.js.map +0 -1
- package/es/components/toolbar/popup/autosaveprompt/index.js +0 -91
- package/es/components/toolbar/popup/autosaveprompt/index.js.map +0 -1
- package/es/components/toolbar/popup/autosaveprompt/styles.js +0 -9
- package/es/components/toolbar/popup/autosaveprompt/styles.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/cabinet-category/index.js +0 -77
- package/es/components/toolbar/popup/cabinet/cabinet-category/index.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/choose-product/index.js +0 -98
- package/es/components/toolbar/popup/cabinet/choose-product/index.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/index.js +0 -83
- package/es/components/toolbar/popup/cabinet/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/choose-style/index.js +0 -50
- package/es/components/toolbar/popup/doorStyle/choose-style/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/index.js +0 -61
- package/es/components/toolbar/popup/doorStyle/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/style-category/index.js +0 -143
- package/es/components/toolbar/popup/doorStyle/style-category/index.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +0 -3
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryContext.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryTemp.js +0 -119
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryTemp.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/index.js +0 -564
- package/es/components/toolbar/popup/downloadsummary/index.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show2D/show2DView.js +0 -51
- package/es/components/toolbar/popup/downloadsummary/show2D/show2DView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.js +0 -191
- package/es/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show3D/show3DView.js +0 -245
- package/es/components/toolbar/popup/downloadsummary/show3D/show3DView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.js +0 -1758
- package/es/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showCabinetInfo.js +0 -87
- package/es/components/toolbar/popup/downloadsummary/showCabinetInfo.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/showElevationView.js +0 -116
- package/es/components/toolbar/popup/downloadsummary/showElevation/showElevationView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.js +0 -1710
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.js +0 -175
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showWarranty.js +0 -106
- package/es/components/toolbar/popup/downloadsummary/showWarranty.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/styles.js +0 -40
- package/es/components/toolbar/popup/downloadsummary/styles.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/category/index.js +0 -35
- package/es/components/toolbar/popup/finishingtouch/category/index.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/index.js +0 -47
- package/es/components/toolbar/popup/finishingtouch/index.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/material-edit.js +0 -156
- package/es/components/toolbar/popup/finishingtouch/material-edit.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/product/index.js +0 -56
- package/es/components/toolbar/popup/finishingtouch/product/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/confirm-popup.js +0 -116
- package/es/components/toolbar/popup/floorplan/choose-floor/confirm-popup.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/index.js +0 -246
- package/es/components/toolbar/popup/floorplan/choose-floor/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/styles.js +0 -11
- package/es/components/toolbar/popup/floorplan/choose-floor/styles.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/floor-category/index.js +0 -90
- package/es/components/toolbar/popup/floorplan/floor-category/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/index.js +0 -49
- package/es/components/toolbar/popup/floorplan/index.js.map +0 -1
- package/es/components/toolbar/popup/index.js +0 -188
- package/es/components/toolbar/popup/index.js.map +0 -1
- package/es/components/toolbar/popup/newproject/index.js +0 -67
- package/es/components/toolbar/popup/newproject/index.js.map +0 -1
- package/es/components/toolbar/popup/newproject/styles.js +0 -9
- package/es/components/toolbar/popup/newproject/styles.js.map +0 -1
- package/es/components/toolbar/popup/product/appliance.js +0 -65
- package/es/components/toolbar/popup/product/appliance.js.map +0 -1
- package/es/components/toolbar/popup/product/cabinetproduct.js +0 -25
- package/es/components/toolbar/popup/product/cabinetproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/doorstyle.js +0 -50
- package/es/components/toolbar/popup/product/doorstyle.js.map +0 -1
- package/es/components/toolbar/popup/product/doorstyleproduct.js +0 -51
- package/es/components/toolbar/popup/product/doorstyleproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/floor.js +0 -52
- package/es/components/toolbar/popup/product/floor.js.map +0 -1
- package/es/components/toolbar/popup/product/floorproduct.js +0 -61
- package/es/components/toolbar/popup/product/floorproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/index.js +0 -52
- package/es/components/toolbar/popup/product/index.js.map +0 -1
- package/es/components/toolbar/popup/product/primary.js +0 -63
- package/es/components/toolbar/popup/product/primary.js.map +0 -1
- package/es/components/toolbar/popup/product/productline.js +0 -120
- package/es/components/toolbar/popup/product/productline.js.map +0 -1
- package/es/components/toolbar/popup/product/reviewItem.js +0 -338
- package/es/components/toolbar/popup/product/reviewItem.js.map +0 -1
- package/es/components/toolbar/popup/product/reviewMolding.js +0 -282
- package/es/components/toolbar/popup/product/reviewMolding.js.map +0 -1
- package/es/components/toolbar/popup/product/styles.js +0 -71
- package/es/components/toolbar/popup/product/styles.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/FullPictureForm.js +0 -161
- package/es/components/toolbar/popup/savedesign/FullPictureForm.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/index.js +0 -508
- package/es/components/toolbar/popup/savedesign/index.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/styles.js +0 -19
- package/es/components/toolbar/popup/savedesign/styles.js.map +0 -1
- package/es/components/toolbar/popup/setDoorStyleOption/index.js +0 -57
- package/es/components/toolbar/popup/setDoorStyleOption/index.js.map +0 -1
- package/es/components/toolbar/popup/styles.js +0 -98
- package/es/components/toolbar/popup/styles.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/AddToCartOptions.js +0 -157
- package/es/components/toolbar/popup/submitforquote/AddToCartOptions.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/CustomerRequestsForm.js +0 -85
- package/es/components/toolbar/popup/submitforquote/CustomerRequestsForm.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/SkipDesignerReview.js +0 -36
- package/es/components/toolbar/popup/submitforquote/SkipDesignerReview.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/StepDots.js +0 -33
- package/es/components/toolbar/popup/submitforquote/StepDots.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/cart-choice.js +0 -132
- package/es/components/toolbar/popup/submitforquote/cart-choice.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/doorstyle-menus.js +0 -43
- package/es/components/toolbar/popup/submitforquote/doorstyle-menus.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/index.js +0 -690
- package/es/components/toolbar/popup/submitforquote/index.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/styles.js +0 -31
- package/es/components/toolbar/popup/submitforquote/styles.js.map +0 -1
- package/es/components/toolbar/popup/submitprompt/index.js +0 -71
- package/es/components/toolbar/popup/submitprompt/index.js.map +0 -1
- package/es/components/toolbar/popup/submitprompt/styles.js +0 -9
- package/es/components/toolbar/popup/submitprompt/styles.js.map +0 -1
- package/es/components/toolbar/toolbar-button.js +0 -105
- package/es/components/toolbar/toolbar-button.js.map +0 -1
- package/es/components/toolbar/toolbar-load-button.js +0 -29
- package/es/components/toolbar/toolbar-load-button.js.map +0 -1
- package/es/components/toolbar/toolbar-save-button.js +0 -27
- package/es/components/toolbar/toolbar-save-button.js.map +0 -1
- package/es/components/tutorial-view/Modal.js +0 -498
- package/es/components/tutorial-view/Modal.js.map +0 -1
- package/es/components/tutorial-view/styles.js +0 -6
- package/es/components/tutorial-view/styles.js.map +0 -1
- package/es/components/viewer2d/area.js +0 -83
- package/es/components/viewer2d/area.js.map +0 -1
- package/es/components/viewer2d/export.js +0 -32
- package/es/components/viewer2d/export.js.map +0 -1
- package/es/components/viewer2d/grids/grid-horizontal-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-horizontal-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grid-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grid-vertical-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-vertical-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grids.js +0 -36
- package/es/components/viewer2d/grids/grids.js.map +0 -1
- package/es/components/viewer2d/group.js +0 -54
- package/es/components/viewer2d/group.js.map +0 -1
- package/es/components/viewer2d/item.js +0 -514
- package/es/components/viewer2d/item.js.map +0 -1
- package/es/components/viewer2d/layer.js +0 -165
- package/es/components/viewer2d/layer.js.map +0 -1
- package/es/components/viewer2d/line.js +0 -889
- package/es/components/viewer2d/line.js.map +0 -1
- package/es/components/viewer2d/ruler.js +0 -101
- package/es/components/viewer2d/ruler.js.map +0 -1
- package/es/components/viewer2d/rulerDist.js +0 -147
- package/es/components/viewer2d/rulerDist.js.map +0 -1
- package/es/components/viewer2d/rulerX.js +0 -152
- package/es/components/viewer2d/rulerX.js.map +0 -1
- package/es/components/viewer2d/rulerY.js +0 -154
- package/es/components/viewer2d/rulerY.js.map +0 -1
- package/es/components/viewer2d/scene.js +0 -141
- package/es/components/viewer2d/scene.js.map +0 -1
- package/es/components/viewer2d/snap.js +0 -75
- package/es/components/viewer2d/snap.js.map +0 -1
- package/es/components/viewer2d/state.js +0 -79
- package/es/components/viewer2d/state.js.map +0 -1
- package/es/components/viewer2d/utils.js +0 -163
- package/es/components/viewer2d/utils.js.map +0 -1
- package/es/components/viewer2d/vertex.js +0 -67
- package/es/components/viewer2d/vertex.js.map +0 -1
- package/es/components/viewer2d/viewer2d.js +0 -1402
- package/es/components/viewer2d/viewer2d.js.map +0 -1
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +0 -2593
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js.map +0 -1
- package/es/components/viewer3d/dcm.js +0 -402
- package/es/components/viewer3d/dcm.js.map +0 -1
- package/es/components/viewer3d/fbm.js +0 -415
- package/es/components/viewer3d/fbm.js.map +0 -1
- package/es/components/viewer3d/front3D.js +0 -67
- package/es/components/viewer3d/front3D.js.map +0 -1
- package/es/components/viewer3d/grid-creator.js +0 -26
- package/es/components/viewer3d/grid-creator.js.map +0 -1
- package/es/components/viewer3d/grids/grid-horizontal-streak.js +0 -37
- package/es/components/viewer3d/grids/grid-horizontal-streak.js.map +0 -1
- package/es/components/viewer3d/grids/grid-streak.js +0 -28
- package/es/components/viewer3d/grids/grid-streak.js.map +0 -1
- package/es/components/viewer3d/grids/grid-vertical-streak.js +0 -37
- package/es/components/viewer3d/grids/grid-vertical-streak.js.map +0 -1
- package/es/components/viewer3d/libs/first-person-controls.js +0 -68
- package/es/components/viewer3d/libs/first-person-controls.js.map +0 -1
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js +0 -1282
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js.map +0 -1
- package/es/components/viewer3d/libs/mtl-loader.js +0 -358
- package/es/components/viewer3d/libs/mtl-loader.js.map +0 -1
- package/es/components/viewer3d/libs/obj-loader.js +0 -463
- package/es/components/viewer3d/libs/obj-loader.js.map +0 -1
- package/es/components/viewer3d/libs/orbit-controls.js +0 -699
- package/es/components/viewer3d/libs/orbit-controls.js.map +0 -1
- package/es/components/viewer3d/libs/pointer-lock-controls.js +0 -46
- package/es/components/viewer3d/libs/pointer-lock-controls.js.map +0 -1
- package/es/components/viewer3d/lrm.js +0 -306
- package/es/components/viewer3d/lrm.js.map +0 -1
- package/es/components/viewer3d/model.js +0 -709
- package/es/components/viewer3d/model.js.map +0 -1
- package/es/components/viewer3d/pointer-lock-navigation.js +0 -116
- package/es/components/viewer3d/pointer-lock-navigation.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/itemRect.js +0 -62
- package/es/components/viewer3d/ruler-utils/itemRect.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/layer3D.js +0 -496
- package/es/components/viewer3d/ruler-utils/layer3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/ruler3D.js +0 -228
- package/es/components/viewer3d/ruler-utils/ruler3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/scene3D.js +0 -62
- package/es/components/viewer3d/ruler-utils/scene3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/state3D.js +0 -19
- package/es/components/viewer3d/ruler-utils/state3D.js.map +0 -1
- package/es/components/viewer3d/scene-creator.js +0 -3607
- package/es/components/viewer3d/scene-creator.js.map +0 -1
- package/es/components/viewer3d/three-memory-cleaner.js +0 -52
- package/es/components/viewer3d/three-memory-cleaner.js.map +0 -1
- package/es/components/viewer3d/viewer3d-first-person.js +0 -316
- package/es/components/viewer3d/viewer3d-first-person.js.map +0 -1
- package/es/components/viewer3d/viewer3d.js +0 -2504
- package/es/components/viewer3d/viewer3d.js.map +0 -1
- package/es/components/wizardstep/button/styles.js +0 -60
- package/es/components/wizardstep/button/styles.js.map +0 -1
- package/es/components/wizardstep/export.js +0 -5
- package/es/components/wizardstep/export.js.map +0 -1
- package/es/components/wizardstep/index.js +0 -971
- package/es/components/wizardstep/index.js.map +0 -1
- package/es/components/wizardstep/styles.js +0 -61
- package/es/components/wizardstep/styles.js.map +0 -1
- package/es/components/wizardstep/wizardstep-content-button.js +0 -217
- package/es/components/wizardstep/wizardstep-content-button.js.map +0 -1
- package/es/components/wizardstep/wizardstep-toggle-button.js +0 -126
- package/es/components/wizardstep/wizardstep-toggle-button.js.map +0 -1
- package/es/constants.js +0 -637
- package/es/constants.js.map +0 -1
- package/es/hooks/useCheckCart.js +0 -53
- package/es/hooks/useCheckCart.js.map +0 -1
- package/es/hooks/useGetPricesBySku.js +0 -74
- package/es/hooks/useGetPricesBySku.js.map +0 -1
- package/es/hooks/useValidateToken.js +0 -201
- package/es/hooks/useValidateToken.js.map +0 -1
- package/es/index.js +0 -17
- package/es/index.js.map +0 -1
- package/es/models.js +0 -511
- package/es/models.js.map +0 -1
- package/es/plugins/SVGLoader.js +0 -1413
- package/es/plugins/SVGLoader.js.map +0 -1
- package/es/plugins/autosave.js +0 -34
- package/es/plugins/autosave.js.map +0 -1
- package/es/plugins/console-debugger.js +0 -38
- package/es/plugins/console-debugger.js.map +0 -1
- package/es/plugins/export.js +0 -10
- package/es/plugins/export.js.map +0 -1
- package/es/plugins/keyboard.js +0 -102
- package/es/plugins/keyboard.js.map +0 -1
- package/es/reducers/areas-reducer.js +0 -13
- package/es/reducers/areas-reducer.js.map +0 -1
- package/es/reducers/export.js +0 -26
- package/es/reducers/export.js.map +0 -1
- package/es/reducers/groups-reducer.js +0 -39
- package/es/reducers/groups-reducer.js.map +0 -1
- package/es/reducers/holes-reducer.js +0 -63
- package/es/reducers/holes-reducer.js.map +0 -1
- package/es/reducers/items-reducer.js +0 -144
- package/es/reducers/items-reducer.js.map +0 -1
- package/es/reducers/lines-reducer.js +0 -46
- package/es/reducers/lines-reducer.js.map +0 -1
- package/es/reducers/project-reducer.js +0 -130
- package/es/reducers/project-reducer.js.map +0 -1
- package/es/reducers/reducer.js +0 -20
- package/es/reducers/reducer.js.map +0 -1
- package/es/reducers/scene-reducer.js +0 -29
- package/es/reducers/scene-reducer.js.map +0 -1
- package/es/reducers/user-reducer.js +0 -42
- package/es/reducers/user-reducer.js.map +0 -1
- package/es/reducers/vertices-reducer.js +0 -20
- package/es/reducers/vertices-reducer.js.map +0 -1
- package/es/reducers/viewer2d-reducer.js +0 -76
- package/es/reducers/viewer2d-reducer.js.map +0 -1
- package/es/reducers/viewer3d-reducer.js +0 -57
- package/es/reducers/viewer3d-reducer.js.map +0 -1
- package/es/shared-style.js +0 -67
- package/es/shared-style.js.map +0 -1
- package/es/styles/export.js +0 -6
- package/es/styles/export.js.map +0 -1
- package/es/styles/tabs.css +0 -40
- package/es/translator/en.js +0 -105
- package/es/translator/en.js.map +0 -1
- package/es/translator/it.js +0 -80
- package/es/translator/it.js.map +0 -1
- package/es/translator/ru.js +0 -80
- package/es/translator/ru.js.map +0 -1
- package/es/translator/translator.js +0 -85
- package/es/translator/translator.js.map +0 -1
- package/es/utils/browser.js +0 -34
- package/es/utils/browser.js.map +0 -1
- package/es/utils/email-validator.js +0 -5
- package/es/utils/email-validator.js.map +0 -1
- package/es/utils/export.js +0 -26
- package/es/utils/export.js.map +0 -1
- package/es/utils/geometry.js +0 -2237
- package/es/utils/geometry.js.map +0 -1
- package/es/utils/get-edges-of-subgraphs.js +0 -27
- package/es/utils/get-edges-of-subgraphs.js.map +0 -1
- package/es/utils/graph-cycles.js +0 -239
- package/es/utils/graph-cycles.js.map +0 -1
- package/es/utils/graph-inner-cycles.js +0 -47
- package/es/utils/graph-inner-cycles.js.map +0 -1
- package/es/utils/graph.js +0 -150
- package/es/utils/graph.js.map +0 -1
- package/es/utils/helper.js +0 -337
- package/es/utils/helper.js.map +0 -1
- package/es/utils/history.js +0 -30
- package/es/utils/history.js.map +0 -1
- package/es/utils/id-broker.js +0 -20
- package/es/utils/id-broker.js.map +0 -1
- package/es/utils/logger.js +0 -9
- package/es/utils/logger.js.map +0 -1
- package/es/utils/math.js +0 -51
- package/es/utils/math.js.map +0 -1
- package/es/utils/molding.js +0 -840
- package/es/utils/molding.js.map +0 -1
- package/es/utils/name-generator.js +0 -19
- package/es/utils/name-generator.js.map +0 -1
- package/es/utils/objects-utils.js +0 -51
- package/es/utils/objects-utils.js.map +0 -1
- package/es/utils/phone-validator.js +0 -5
- package/es/utils/phone-validator.js.map +0 -1
- package/es/utils/process-black-list.js +0 -19
- package/es/utils/process-black-list.js.map +0 -1
- package/es/utils/react-if.js +0 -19
- package/es/utils/react-if.js.map +0 -1
- package/es/utils/snap-scene.js +0 -100
- package/es/utils/snap-scene.js.map +0 -1
- package/es/utils/snap.js +0 -238
- package/es/utils/snap.js.map +0 -1
- package/es/utils/threeCSG.es6.js +0 -499
- package/es/utils/threeCSG.es6.js.map +0 -1
- package/es/version.js +0 -2
- package/es/version.js.map +0 -1
- /package/{es → src}/catalog/areas/area/textures/ceramic-tile.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/grass.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/parquet.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/strand-porcelain.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/tile1.jpg +0 -0
- /package/{es → src}/catalog/back.png +0 -0
- /package/{es → src}/catalog/doors.png +0 -0
- /package/{es → src}/catalog/doorways.png +0 -0
- /package/{es → src}/catalog/envMap/nx.hdr +0 -0
- /package/{es → src}/catalog/envMap/ny.hdr +0 -0
- /package/{es → src}/catalog/envMap/nz.hdr +0 -0
- /package/{es → src}/catalog/envMap/px.hdr +0 -0
- /package/{es → src}/catalog/envMap/py.hdr +0 -0
- /package/{es → src}/catalog/envMap/pz.hdr +0 -0
- /package/{es → src}/catalog/holes/door-double/door_double.png +0 -0
- /package/{es → src}/catalog/holes/door-panic/panicDoor.png +0 -0
- /package/{es → src}/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- /package/{es → src}/catalog/holes/gate/gate.jpg +0 -0
- /package/{es → src}/catalog/holes/window-clear/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-cross/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-double-hung/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-vertical/texture.png +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks-normal2.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks2.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks3.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/morden-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/morden.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/painted-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/painted.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/plaster-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/plaster.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/wall.png +0 -0
- /package/{es → src}/catalog/molding/molding-dcm/texture.png +0 -0
- /package/{es → src}/catalog/molding/molding-fbm/texture.png +0 -0
- /package/{es → src}/catalog/molding/molding-lrm/texture.png +0 -0
- /package/{es → src}/catalog/windows.png +0 -0
- /package/{es → src}/components/header/header.style.css +0 -0
- /package/{es → src}/components/login/style.css +0 -0
- /package/{es → src}/components/login/style.scss +0 -0
- /package/{es → src}/components/molecules/slider/styles.scss +0 -0
- /package/{es → src}/components/toolbar/main/lShaped.json +0 -0
- /package/{es → src}/components/toolbar/main/longNarrow.json +0 -0
- /package/{es → src}/components/toolbar/main/oRectangle.json +0 -0
- /package/{es → src}/components/toolbar/main/rectangle.json +0 -0
- /package/{es → src}/components/toolbar/main/style.css +0 -0
- /package/{es → src}/components/toolbar/popup/autosaveprompt/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/downloadsummary/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/lShaped.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/longNarrow.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/oRectangle.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/rectangle.json +0 -0
- /package/{es → src}/components/toolbar/popup/newproject/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/product/style.css +0 -0
- /package/{es → src}/components/toolbar/popup/savedesign/savedesign.style.css +0 -0
- /package/{es → src}/components/toolbar/popup/submitforquote/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/submitprompt/styles.css +0 -0
- /package/{es → src}/components/tutorial-view/style.css +0 -0
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { SELECT_AREA, SET_FLOOR_STYLES } from '../constants';
|
|
2
|
-
export function selectArea(layerID, areaID) {
|
|
3
|
-
return {
|
|
4
|
-
type: SELECT_AREA,
|
|
5
|
-
layerID: layerID,
|
|
6
|
-
areaID: areaID
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
export function setFloorStyles(texture) {
|
|
10
|
-
return {
|
|
11
|
-
type: SET_FLOOR_STYLES,
|
|
12
|
-
texture: texture
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=area-actions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"area-actions.js","names":["SELECT_AREA","SET_FLOOR_STYLES","selectArea","layerID","areaID","type","setFloorStyles","texture"],"sources":["../../src/actions/area-actions.js"],"sourcesContent":["import { SELECT_AREA, SET_FLOOR_STYLES } from '../constants';\r\n\r\nexport function selectArea(layerID, areaID) {\r\n return {\r\n type: SELECT_AREA,\r\n layerID,\r\n areaID\r\n };\r\n}\r\nexport function setFloorStyles(texture) {\r\n return {\r\n type: SET_FLOOR_STYLES,\r\n texture\r\n };\r\n}\r\n"],"mappings":"AAAA,SAASA,WAAW,EAAEC,gBAAgB,QAAQ,cAAc;AAE5D,OAAO,SAASC,UAAUA,CAACC,OAAO,EAAEC,MAAM,EAAE;EAC1C,OAAO;IACLC,IAAI,EAAEL,WAAW;IACjBG,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA;EACF,CAAC;AACH;AACA,OAAO,SAASE,cAAcA,CAACC,OAAO,EAAE;EACtC,OAAO;IACLF,IAAI,EAAEJ,gBAAgB;IACtBM,OAAO,EAAPA;EACF,CAAC;AACH","ignoreList":[]}
|
package/es/actions/export.js
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import * as projectActions from './project-actions';
|
|
2
|
-
import * as viewer2DActions from './viewer2d-actions';
|
|
3
|
-
import * as viewer3DActions from './viewer3d-actions';
|
|
4
|
-
import * as linesActions from './lines-actions';
|
|
5
|
-
import * as holesActions from './holes-actions';
|
|
6
|
-
import * as sceneActions from './scene-actions';
|
|
7
|
-
import * as verticesActions from './vertices-actions';
|
|
8
|
-
import * as itemsActions from './items-actions';
|
|
9
|
-
import * as areaActions from './area-actions';
|
|
10
|
-
import * as groupsActions from './groups-actions';
|
|
11
|
-
import * as userActions from './user-actions';
|
|
12
|
-
export { projectActions, viewer2DActions, viewer3DActions, linesActions, holesActions, sceneActions, verticesActions, itemsActions, areaActions, groupsActions, userActions };
|
|
13
|
-
export default {
|
|
14
|
-
projectActions: projectActions,
|
|
15
|
-
viewer2DActions: viewer2DActions,
|
|
16
|
-
viewer3DActions: viewer3DActions,
|
|
17
|
-
linesActions: linesActions,
|
|
18
|
-
holesActions: holesActions,
|
|
19
|
-
sceneActions: sceneActions,
|
|
20
|
-
verticesActions: verticesActions,
|
|
21
|
-
itemsActions: itemsActions,
|
|
22
|
-
areaActions: areaActions,
|
|
23
|
-
groupsActions: groupsActions,
|
|
24
|
-
userActions: userActions
|
|
25
|
-
};
|
|
26
|
-
//# sourceMappingURL=export.js.map
|
package/es/actions/export.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"export.js","names":["projectActions","viewer2DActions","viewer3DActions","linesActions","holesActions","sceneActions","verticesActions","itemsActions","areaActions","groupsActions","userActions"],"sources":["../../src/actions/export.js"],"sourcesContent":["import * as projectActions from './project-actions';\r\nimport * as viewer2DActions from './viewer2d-actions';\r\nimport * as viewer3DActions from './viewer3d-actions';\r\nimport * as linesActions from './lines-actions';\r\nimport * as holesActions from './holes-actions';\r\nimport * as sceneActions from './scene-actions';\r\nimport * as verticesActions from './vertices-actions';\r\nimport * as itemsActions from './items-actions';\r\nimport * as areaActions from './area-actions';\r\nimport * as groupsActions from './groups-actions';\r\nimport * as userActions from './user-actions';\r\nexport {\r\n projectActions,\r\n viewer2DActions,\r\n viewer3DActions,\r\n linesActions,\r\n holesActions,\r\n sceneActions,\r\n verticesActions,\r\n itemsActions,\r\n areaActions,\r\n groupsActions,\r\n userActions\r\n};\r\n\r\nexport default {\r\n projectActions,\r\n viewer2DActions,\r\n viewer3DActions,\r\n linesActions,\r\n holesActions,\r\n sceneActions,\r\n verticesActions,\r\n itemsActions,\r\n areaActions,\r\n groupsActions,\r\n userActions\r\n};\r\n"],"mappings":"AAAA,OAAO,KAAKA,cAAc,MAAM,mBAAmB;AACnD,OAAO,KAAKC,eAAe,MAAM,oBAAoB;AACrD,OAAO,KAAKC,eAAe,MAAM,oBAAoB;AACrD,OAAO,KAAKC,YAAY,MAAM,iBAAiB;AAC/C,OAAO,KAAKC,YAAY,MAAM,iBAAiB;AAC/C,OAAO,KAAKC,YAAY,MAAM,iBAAiB;AAC/C,OAAO,KAAKC,eAAe,MAAM,oBAAoB;AACrD,OAAO,KAAKC,YAAY,MAAM,iBAAiB;AAC/C,OAAO,KAAKC,WAAW,MAAM,gBAAgB;AAC7C,OAAO,KAAKC,aAAa,MAAM,kBAAkB;AACjD,OAAO,KAAKC,WAAW,MAAM,gBAAgB;AAC7C,SACEV,cAAc,EACdC,eAAe,EACfC,eAAe,EACfC,YAAY,EACZC,YAAY,EACZC,YAAY,EACZC,eAAe,EACfC,YAAY,EACZC,WAAW,EACXC,aAAa,EACbC,WAAW;AAGb,eAAe;EACbV,cAAc,EAAdA,cAAc;EACdC,eAAe,EAAfA,eAAe;EACfC,eAAe,EAAfA,eAAe;EACfC,YAAY,EAAZA,YAAY;EACZC,YAAY,EAAZA,YAAY;EACZC,YAAY,EAAZA,YAAY;EACZC,eAAe,EAAfA,eAAe;EACfC,YAAY,EAAZA,YAAY;EACZC,WAAW,EAAXA,WAAW;EACXC,aAAa,EAAbA,aAAa;EACbC,WAAW,EAAXA;AACF,CAAC","ignoreList":[]}
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
import { GROUP_ACTIONS } from '../constants';
|
|
2
|
-
export function addGroup() {
|
|
3
|
-
return {
|
|
4
|
-
type: GROUP_ACTIONS.ADD_GROUP
|
|
5
|
-
};
|
|
6
|
-
}
|
|
7
|
-
export function addGroupFromSelected() {
|
|
8
|
-
return {
|
|
9
|
-
type: GROUP_ACTIONS.ADD_GROUP_FROM_SELECTED
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
export function selectGroup(groupID) {
|
|
13
|
-
return {
|
|
14
|
-
type: GROUP_ACTIONS.SELECT_GROUP,
|
|
15
|
-
groupID: groupID
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
export function unselectGroup(groupID) {
|
|
19
|
-
return {
|
|
20
|
-
type: GROUP_ACTIONS.UNSELECT_GROUP,
|
|
21
|
-
groupID: groupID
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
export function addToGroup(groupID, layerID, elementPrototype, elementID) {
|
|
25
|
-
return {
|
|
26
|
-
type: GROUP_ACTIONS.ADD_TO_GROUP,
|
|
27
|
-
groupID: groupID,
|
|
28
|
-
layerID: layerID,
|
|
29
|
-
elementPrototype: elementPrototype,
|
|
30
|
-
elementID: elementID
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
export function removeFromGroup(groupID, layerID, elementPrototype, elementID) {
|
|
34
|
-
return {
|
|
35
|
-
type: GROUP_ACTIONS.REMOVE_FROM_GROUP,
|
|
36
|
-
groupID: groupID,
|
|
37
|
-
layerID: layerID,
|
|
38
|
-
elementPrototype: elementPrototype,
|
|
39
|
-
elementID: elementID
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
export function setGroupAttributes(groupID, attributes) {
|
|
43
|
-
return {
|
|
44
|
-
type: GROUP_ACTIONS.SET_GROUP_ATTRIBUTES,
|
|
45
|
-
groupID: groupID,
|
|
46
|
-
attributes: attributes
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
|
-
export function setGroupProperties(groupID, properties) {
|
|
50
|
-
return {
|
|
51
|
-
type: GROUP_ACTIONS.SET_GROUP_PROPERTIES,
|
|
52
|
-
groupID: groupID,
|
|
53
|
-
properties: properties
|
|
54
|
-
};
|
|
55
|
-
}
|
|
56
|
-
export function setGroupBarycenter(groupID, barycenter) {
|
|
57
|
-
return {
|
|
58
|
-
type: GROUP_ACTIONS.SET_GROUP_BARYCENTER,
|
|
59
|
-
groupID: groupID,
|
|
60
|
-
barycenter: barycenter
|
|
61
|
-
};
|
|
62
|
-
}
|
|
63
|
-
export function removeGroup(groupID) {
|
|
64
|
-
return {
|
|
65
|
-
type: GROUP_ACTIONS.REMOVE_GROUP,
|
|
66
|
-
groupID: groupID
|
|
67
|
-
};
|
|
68
|
-
}
|
|
69
|
-
export function removeGroupAndDeleteElements(groupID) {
|
|
70
|
-
return {
|
|
71
|
-
type: GROUP_ACTIONS.REMOVE_GROUP_AND_DELETE_ELEMENTS,
|
|
72
|
-
groupID: groupID
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
export function groupTranslate(groupID, x, y) {
|
|
76
|
-
return {
|
|
77
|
-
type: GROUP_ACTIONS.GROUP_TRANSLATE,
|
|
78
|
-
groupID: groupID,
|
|
79
|
-
x: x,
|
|
80
|
-
y: y
|
|
81
|
-
};
|
|
82
|
-
}
|
|
83
|
-
export function groupRotate(groupID, rotation) {
|
|
84
|
-
return {
|
|
85
|
-
type: GROUP_ACTIONS.GROUP_ROTATE,
|
|
86
|
-
groupID: groupID,
|
|
87
|
-
rotation: rotation
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
|
-
//# sourceMappingURL=groups-actions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"groups-actions.js","names":["GROUP_ACTIONS","addGroup","type","ADD_GROUP","addGroupFromSelected","ADD_GROUP_FROM_SELECTED","selectGroup","groupID","SELECT_GROUP","unselectGroup","UNSELECT_GROUP","addToGroup","layerID","elementPrototype","elementID","ADD_TO_GROUP","removeFromGroup","REMOVE_FROM_GROUP","setGroupAttributes","attributes","SET_GROUP_ATTRIBUTES","setGroupProperties","properties","SET_GROUP_PROPERTIES","setGroupBarycenter","barycenter","SET_GROUP_BARYCENTER","removeGroup","REMOVE_GROUP","removeGroupAndDeleteElements","REMOVE_GROUP_AND_DELETE_ELEMENTS","groupTranslate","x","y","GROUP_TRANSLATE","groupRotate","rotation","GROUP_ROTATE"],"sources":["../../src/actions/groups-actions.js"],"sourcesContent":["import { GROUP_ACTIONS } from '../constants';\r\n\r\nexport function addGroup() {\r\n return {\r\n type: GROUP_ACTIONS.ADD_GROUP\r\n };\r\n}\r\n\r\nexport function addGroupFromSelected() {\r\n return {\r\n type: GROUP_ACTIONS.ADD_GROUP_FROM_SELECTED\r\n };\r\n}\r\n\r\nexport function selectGroup(groupID) {\r\n return {\r\n type: GROUP_ACTIONS.SELECT_GROUP,\r\n groupID\r\n };\r\n}\r\n\r\nexport function unselectGroup(groupID) {\r\n return {\r\n type: GROUP_ACTIONS.UNSELECT_GROUP,\r\n groupID\r\n };\r\n}\r\n\r\nexport function addToGroup(groupID, layerID, elementPrototype, elementID) {\r\n return {\r\n type: GROUP_ACTIONS.ADD_TO_GROUP,\r\n groupID,\r\n layerID,\r\n elementPrototype,\r\n elementID\r\n };\r\n}\r\n\r\nexport function removeFromGroup(groupID, layerID, elementPrototype, elementID) {\r\n return {\r\n type: GROUP_ACTIONS.REMOVE_FROM_GROUP,\r\n groupID,\r\n layerID,\r\n elementPrototype,\r\n elementID\r\n };\r\n}\r\n\r\nexport function setGroupAttributes(groupID, attributes) {\r\n return {\r\n type: GROUP_ACTIONS.SET_GROUP_ATTRIBUTES,\r\n groupID,\r\n attributes\r\n };\r\n}\r\n\r\nexport function setGroupProperties(groupID, properties) {\r\n return {\r\n type: GROUP_ACTIONS.SET_GROUP_PROPERTIES,\r\n groupID,\r\n properties\r\n };\r\n}\r\n\r\nexport function setGroupBarycenter(groupID, barycenter) {\r\n return {\r\n type: GROUP_ACTIONS.SET_GROUP_BARYCENTER,\r\n groupID,\r\n barycenter\r\n };\r\n}\r\n\r\nexport function removeGroup(groupID) {\r\n return {\r\n type: GROUP_ACTIONS.REMOVE_GROUP,\r\n groupID\r\n };\r\n}\r\n\r\nexport function removeGroupAndDeleteElements(groupID) {\r\n return {\r\n type: GROUP_ACTIONS.REMOVE_GROUP_AND_DELETE_ELEMENTS,\r\n groupID\r\n };\r\n}\r\n\r\nexport function groupTranslate(groupID, x, y) {\r\n return {\r\n type: GROUP_ACTIONS.GROUP_TRANSLATE,\r\n groupID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function groupRotate(groupID, rotation) {\r\n return {\r\n type: GROUP_ACTIONS.GROUP_ROTATE,\r\n groupID,\r\n rotation\r\n };\r\n}\r\n"],"mappings":"AAAA,SAASA,aAAa,QAAQ,cAAc;AAE5C,OAAO,SAASC,QAAQA,CAAA,EAAG;EACzB,OAAO;IACLC,IAAI,EAAEF,aAAa,CAACG;EACtB,CAAC;AACH;AAEA,OAAO,SAASC,oBAAoBA,CAAA,EAAG;EACrC,OAAO;IACLF,IAAI,EAAEF,aAAa,CAACK;EACtB,CAAC;AACH;AAEA,OAAO,SAASC,WAAWA,CAACC,OAAO,EAAE;EACnC,OAAO;IACLL,IAAI,EAAEF,aAAa,CAACQ,YAAY;IAChCD,OAAO,EAAPA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,aAAaA,CAACF,OAAO,EAAE;EACrC,OAAO;IACLL,IAAI,EAAEF,aAAa,CAACU,cAAc;IAClCH,OAAO,EAAPA;EACF,CAAC;AACH;AAEA,OAAO,SAASI,UAAUA,CAACJ,OAAO,EAAEK,OAAO,EAAEC,gBAAgB,EAAEC,SAAS,EAAE;EACxE,OAAO;IACLZ,IAAI,EAAEF,aAAa,CAACe,YAAY;IAChCR,OAAO,EAAPA,OAAO;IACPK,OAAO,EAAPA,OAAO;IACPC,gBAAgB,EAAhBA,gBAAgB;IAChBC,SAAS,EAATA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,eAAeA,CAACT,OAAO,EAAEK,OAAO,EAAEC,gBAAgB,EAAEC,SAAS,EAAE;EAC7E,OAAO;IACLZ,IAAI,EAAEF,aAAa,CAACiB,iBAAiB;IACrCV,OAAO,EAAPA,OAAO;IACPK,OAAO,EAAPA,OAAO;IACPC,gBAAgB,EAAhBA,gBAAgB;IAChBC,SAAS,EAATA;EACF,CAAC;AACH;AAEA,OAAO,SAASI,kBAAkBA,CAACX,OAAO,EAAEY,UAAU,EAAE;EACtD,OAAO;IACLjB,IAAI,EAAEF,aAAa,CAACoB,oBAAoB;IACxCb,OAAO,EAAPA,OAAO;IACPY,UAAU,EAAVA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,kBAAkBA,CAACd,OAAO,EAAEe,UAAU,EAAE;EACtD,OAAO;IACLpB,IAAI,EAAEF,aAAa,CAACuB,oBAAoB;IACxChB,OAAO,EAAPA,OAAO;IACPe,UAAU,EAAVA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,kBAAkBA,CAACjB,OAAO,EAAEkB,UAAU,EAAE;EACtD,OAAO;IACLvB,IAAI,EAAEF,aAAa,CAAC0B,oBAAoB;IACxCnB,OAAO,EAAPA,OAAO;IACPkB,UAAU,EAAVA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,WAAWA,CAACpB,OAAO,EAAE;EACnC,OAAO;IACLL,IAAI,EAAEF,aAAa,CAAC4B,YAAY;IAChCrB,OAAO,EAAPA;EACF,CAAC;AACH;AAEA,OAAO,SAASsB,4BAA4BA,CAACtB,OAAO,EAAE;EACpD,OAAO;IACLL,IAAI,EAAEF,aAAa,CAAC8B,gCAAgC;IACpDvB,OAAO,EAAPA;EACF,CAAC;AACH;AAEA,OAAO,SAASwB,cAAcA,CAACxB,OAAO,EAAEyB,CAAC,EAAEC,CAAC,EAAE;EAC5C,OAAO;IACL/B,IAAI,EAAEF,aAAa,CAACkC,eAAe;IACnC3B,OAAO,EAAPA,OAAO;IACPyB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,WAAWA,CAAC5B,OAAO,EAAE6B,QAAQ,EAAE;EAC7C,OAAO;IACLlC,IAAI,EAAEF,aAAa,CAACqC,YAAY;IAChC9B,OAAO,EAAPA,OAAO;IACP6B,QAAQ,EAARA;EACF,CAAC;AACH","ignoreList":[]}
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
import { SELECT_HOLE, SELECT_TOOL_DRAWING_HOLE, SELECT_TOOL_DRAWING_HOLE_3D, UPDATE_DRAWING_HOLE, UPDATE_DRAWING_HOLE_3D, END_DRAWING_HOLE, BEGIN_DRAGGING_HOLE, BEGIN_DRAGGING_HOLE_3D, UPDATE_DRAGGING_HOLE, END_DRAGGING_HOLE, END_DRAGGING_HOLE_3D, END_CREATING_HOLE, UPDATE_POPUP_OPEN, UPDATE_DRAGGING_HOLE_CHANGED, UPDATE_DRAGGING_HOLE_RULER_CHANGED, END_DRAWING_HOLE_3D } from '../constants';
|
|
2
|
-
export function endCreatingHole() {
|
|
3
|
-
return {
|
|
4
|
-
type: END_CREATING_HOLE
|
|
5
|
-
};
|
|
6
|
-
}
|
|
7
|
-
export function updatePopupOpen(value) {
|
|
8
|
-
return {
|
|
9
|
-
type: UPDATE_POPUP_OPEN,
|
|
10
|
-
value: value
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
export function selectHole(layerID, holeID) {
|
|
14
|
-
return {
|
|
15
|
-
type: SELECT_HOLE,
|
|
16
|
-
layerID: layerID,
|
|
17
|
-
holeID: holeID
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
export function selectToolDrawingHole(sceneComponentType) {
|
|
21
|
-
return {
|
|
22
|
-
type: SELECT_TOOL_DRAWING_HOLE,
|
|
23
|
-
sceneComponentType: sceneComponentType
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
export function selectToolDrawingHole3D(sceneComponentType) {
|
|
27
|
-
return {
|
|
28
|
-
type: SELECT_TOOL_DRAWING_HOLE_3D,
|
|
29
|
-
sceneComponentType: sceneComponentType
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
export function updateDrawingHole(layerID, x, y) {
|
|
33
|
-
return {
|
|
34
|
-
type: UPDATE_DRAWING_HOLE,
|
|
35
|
-
layerID: layerID,
|
|
36
|
-
x: x,
|
|
37
|
-
y: y
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
export function updateDrawingHole3D(layerID, x, y) {
|
|
41
|
-
return {
|
|
42
|
-
type: UPDATE_DRAWING_HOLE_3D,
|
|
43
|
-
layerID: layerID,
|
|
44
|
-
x: x,
|
|
45
|
-
y: y
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
export function endDrawingHole(layerID, x, y) {
|
|
49
|
-
return {
|
|
50
|
-
type: END_DRAWING_HOLE,
|
|
51
|
-
layerID: layerID,
|
|
52
|
-
x: x,
|
|
53
|
-
y: y
|
|
54
|
-
};
|
|
55
|
-
}
|
|
56
|
-
export function endDrawingHole3D(layerID, x, y) {
|
|
57
|
-
return {
|
|
58
|
-
type: END_DRAWING_HOLE_3D,
|
|
59
|
-
layerID: layerID,
|
|
60
|
-
x: x,
|
|
61
|
-
y: y
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
export function beginDraggingHole(layerID, holeID, x, y) {
|
|
65
|
-
return {
|
|
66
|
-
type: BEGIN_DRAGGING_HOLE,
|
|
67
|
-
layerID: layerID,
|
|
68
|
-
holeID: holeID,
|
|
69
|
-
x: x,
|
|
70
|
-
y: y
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
export function beginDraggingHole3D(layerID, holeID, x, y) {
|
|
74
|
-
return {
|
|
75
|
-
type: BEGIN_DRAGGING_HOLE_3D,
|
|
76
|
-
layerID: layerID,
|
|
77
|
-
holeID: holeID,
|
|
78
|
-
x: x,
|
|
79
|
-
y: y
|
|
80
|
-
};
|
|
81
|
-
}
|
|
82
|
-
export function updateDraggingHole(x, y) {
|
|
83
|
-
return {
|
|
84
|
-
type: UPDATE_DRAGGING_HOLE,
|
|
85
|
-
x: x,
|
|
86
|
-
y: y
|
|
87
|
-
};
|
|
88
|
-
}
|
|
89
|
-
export function endDraggingHole(x, y) {
|
|
90
|
-
return {
|
|
91
|
-
type: END_DRAGGING_HOLE,
|
|
92
|
-
x: x,
|
|
93
|
-
y: y
|
|
94
|
-
};
|
|
95
|
-
}
|
|
96
|
-
export function endDraggingHole3D(x, y) {
|
|
97
|
-
return {
|
|
98
|
-
type: END_DRAGGING_HOLE_3D,
|
|
99
|
-
x: x,
|
|
100
|
-
y: y
|
|
101
|
-
};
|
|
102
|
-
}
|
|
103
|
-
export function updateDraggingHoleChanged(x, y, layerID, holeID) {
|
|
104
|
-
return {
|
|
105
|
-
type: UPDATE_DRAGGING_HOLE_CHANGED,
|
|
106
|
-
x: x,
|
|
107
|
-
y: y,
|
|
108
|
-
layerID: layerID,
|
|
109
|
-
holeID: holeID
|
|
110
|
-
};
|
|
111
|
-
}
|
|
112
|
-
export function updateDraggingHoleRulerChanged(width, layerID, holeID) {
|
|
113
|
-
return {
|
|
114
|
-
type: UPDATE_DRAGGING_HOLE_RULER_CHANGED,
|
|
115
|
-
width: width,
|
|
116
|
-
layerID: layerID,
|
|
117
|
-
holeID: holeID
|
|
118
|
-
};
|
|
119
|
-
}
|
|
120
|
-
//# sourceMappingURL=holes-actions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"holes-actions.js","names":["SELECT_HOLE","SELECT_TOOL_DRAWING_HOLE","SELECT_TOOL_DRAWING_HOLE_3D","UPDATE_DRAWING_HOLE","UPDATE_DRAWING_HOLE_3D","END_DRAWING_HOLE","BEGIN_DRAGGING_HOLE","BEGIN_DRAGGING_HOLE_3D","UPDATE_DRAGGING_HOLE","END_DRAGGING_HOLE","END_DRAGGING_HOLE_3D","END_CREATING_HOLE","UPDATE_POPUP_OPEN","UPDATE_DRAGGING_HOLE_CHANGED","UPDATE_DRAGGING_HOLE_RULER_CHANGED","END_DRAWING_HOLE_3D","endCreatingHole","type","updatePopupOpen","value","selectHole","layerID","holeID","selectToolDrawingHole","sceneComponentType","selectToolDrawingHole3D","updateDrawingHole","x","y","updateDrawingHole3D","endDrawingHole","endDrawingHole3D","beginDraggingHole","beginDraggingHole3D","updateDraggingHole","endDraggingHole","endDraggingHole3D","updateDraggingHoleChanged","updateDraggingHoleRulerChanged","width"],"sources":["../../src/actions/holes-actions.js"],"sourcesContent":["import {\r\n SELECT_HOLE,\r\n SELECT_TOOL_DRAWING_HOLE,\r\n SELECT_TOOL_DRAWING_HOLE_3D,\r\n UPDATE_DRAWING_HOLE,\r\n UPDATE_DRAWING_HOLE_3D,\r\n END_DRAWING_HOLE,\r\n BEGIN_DRAGGING_HOLE,\r\n BEGIN_DRAGGING_HOLE_3D,\r\n UPDATE_DRAGGING_HOLE,\r\n END_DRAGGING_HOLE,\r\n END_DRAGGING_HOLE_3D,\r\n END_CREATING_HOLE,\r\n UPDATE_POPUP_OPEN,\r\n UPDATE_DRAGGING_HOLE_CHANGED,\r\n UPDATE_DRAGGING_HOLE_RULER_CHANGED,\r\n END_DRAWING_HOLE_3D\r\n} from '../constants';\r\n\r\nexport function endCreatingHole() {\r\n return {\r\n type: END_CREATING_HOLE\r\n };\r\n}\r\n\r\nexport function updatePopupOpen(value) {\r\n return {\r\n type: UPDATE_POPUP_OPEN,\r\n value\r\n };\r\n}\r\n\r\nexport function selectHole(layerID, holeID) {\r\n return {\r\n type: SELECT_HOLE,\r\n layerID,\r\n holeID\r\n };\r\n}\r\n\r\nexport function selectToolDrawingHole(sceneComponentType) {\r\n return {\r\n type: SELECT_TOOL_DRAWING_HOLE,\r\n sceneComponentType\r\n };\r\n}\r\n\r\nexport function selectToolDrawingHole3D(sceneComponentType) {\r\n return {\r\n type: SELECT_TOOL_DRAWING_HOLE_3D,\r\n sceneComponentType\r\n };\r\n}\r\n\r\nexport function updateDrawingHole(layerID, x, y) {\r\n return {\r\n type: UPDATE_DRAWING_HOLE,\r\n layerID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function updateDrawingHole3D(layerID, x, y) {\r\n return {\r\n type: UPDATE_DRAWING_HOLE_3D,\r\n layerID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endDrawingHole(layerID, x, y) {\r\n return {\r\n type: END_DRAWING_HOLE,\r\n layerID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endDrawingHole3D(layerID, x, y) {\r\n return {\r\n type: END_DRAWING_HOLE_3D,\r\n layerID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function beginDraggingHole(layerID, holeID, x, y) {\r\n return {\r\n type: BEGIN_DRAGGING_HOLE,\r\n layerID,\r\n holeID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function beginDraggingHole3D(layerID, holeID, x, y) {\r\n return {\r\n type: BEGIN_DRAGGING_HOLE_3D,\r\n layerID,\r\n holeID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function updateDraggingHole(x, y) {\r\n return {\r\n type: UPDATE_DRAGGING_HOLE,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endDraggingHole(x, y) {\r\n return {\r\n type: END_DRAGGING_HOLE,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endDraggingHole3D(x, y) {\r\n return {\r\n type: END_DRAGGING_HOLE_3D,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function updateDraggingHoleChanged(x, y, layerID, holeID) {\r\n return {\r\n type: UPDATE_DRAGGING_HOLE_CHANGED,\r\n x,\r\n y,\r\n layerID,\r\n holeID\r\n };\r\n}\r\n\r\nexport function updateDraggingHoleRulerChanged(width, layerID, holeID) {\r\n return {\r\n type: UPDATE_DRAGGING_HOLE_RULER_CHANGED,\r\n width,\r\n layerID,\r\n holeID\r\n };\r\n}\r\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,314 +0,0 @@
|
|
|
1
|
-
import { TOGGLE_LOADING_CABINET, SELECT_ITEM, SELECT_TOOL_DRAWING_ITEM, UPDATE_DRAWING_ITEM, END_DRAWING_ITEM, BEGIN_DRAGGING_ITEM, BEGIN_DRAGGING_ITEM_3D, UPDATE_DRAGGING_ITEM, UPDATE_DRAGGING_ITEM_3DX, UPDATE_DRAGGING_ITEM_3DY, END_DRAGGING_ITEM, END_DRAGGING_ITEM_3D, UPDATE_DRAGGING_ITEM_CHANGED, UPDATE_ROTATING_ITEM_CHANGED, BEGIN_ROTATING_ITEM, BEGIN_ROTATING_ITEM_3D, UPDATE_ROTATING_ITEM, UPDATE_ROTATING, END_ROTATING_ITEM, END_ROTATING_ITEM_3D, REPLACE_SUBMODULE, ANIMATE_OBJECT, REMOVE_REPLACE_SUBMODULE, ITEM_MOVE_UP, SELECT_TOOL_DRAWING_ITEM_3D, SET_DOOR_STYLE, SET_HANDLE_MATERIAL, SET_INITIAL_DOOR_STYLE, SET_DISTANT, SET_DOOR_HANDLE, SET_WALL_COLOR, END_CREATING_CABINET, UPDATE_POPUP_OPEN, SET_MODELLING, SET_COUNTER_TOP, SET_BACKSPLASH, SET_BACKSPLASH_VISIBLE, SET_APPLIANCE_MATERIAL, DUPLICATE_SELECTED, EDIT_WIDTH, END_LOADING, STORE_DIST_ARRAY, SET_MOLDING, UPDATE_MOLDING, VALIDATE_ITEM_POSTIONS, REPLACE_ITEM, SET_MOVE_STATUS, SET_ROTATE_STATUS } from '../constants';
|
|
2
|
-
export function storeDistArray(layerID, itemID, distArray) {
|
|
3
|
-
return {
|
|
4
|
-
type: STORE_DIST_ARRAY,
|
|
5
|
-
layerID: layerID,
|
|
6
|
-
itemID: itemID,
|
|
7
|
-
distArray: distArray
|
|
8
|
-
};
|
|
9
|
-
}
|
|
10
|
-
export function validateItemPositions(layerID) {
|
|
11
|
-
return {
|
|
12
|
-
type: VALIDATE_ITEM_POSTIONS,
|
|
13
|
-
layerID: layerID
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
export function endLoading() {
|
|
17
|
-
return {
|
|
18
|
-
type: END_LOADING
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
export function toggleLoadingCabinet() {
|
|
22
|
-
return {
|
|
23
|
-
type: TOGGLE_LOADING_CABINET
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
export function editWidth(newWidth, layerID, itemID) {
|
|
27
|
-
return {
|
|
28
|
-
type: EDIT_WIDTH,
|
|
29
|
-
newWidth: newWidth,
|
|
30
|
-
layerID: layerID,
|
|
31
|
-
itemID: itemID
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
export function duplicateSelected(currentObject) {
|
|
35
|
-
return {
|
|
36
|
-
type: DUPLICATE_SELECTED,
|
|
37
|
-
currentObject: currentObject
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
export function replaceItem(selectedPos, currentObject, selectedObject) {
|
|
41
|
-
return {
|
|
42
|
-
type: REPLACE_ITEM,
|
|
43
|
-
selectedPos: selectedPos,
|
|
44
|
-
currentObject: currentObject,
|
|
45
|
-
selectedObject: selectedObject
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
export function selectItem(layerID, itemID) {
|
|
49
|
-
return {
|
|
50
|
-
type: SELECT_ITEM,
|
|
51
|
-
layerID: layerID,
|
|
52
|
-
itemID: itemID
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
export function endCreatingCabinet() {
|
|
56
|
-
return {
|
|
57
|
-
type: END_CREATING_CABINET
|
|
58
|
-
};
|
|
59
|
-
}
|
|
60
|
-
export function updatePopupOpen(value) {
|
|
61
|
-
return {
|
|
62
|
-
type: UPDATE_POPUP_OPEN,
|
|
63
|
-
value: value
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
export function selectToolDrawingItem(sceneComponentType) {
|
|
67
|
-
return {
|
|
68
|
-
type: SELECT_TOOL_DRAWING_ITEM,
|
|
69
|
-
sceneComponentType: sceneComponentType
|
|
70
|
-
};
|
|
71
|
-
}
|
|
72
|
-
export function selectToolDrawingItem3D(sceneComponentType) {
|
|
73
|
-
return {
|
|
74
|
-
type: SELECT_TOOL_DRAWING_ITEM_3D,
|
|
75
|
-
sceneComponentType: sceneComponentType
|
|
76
|
-
};
|
|
77
|
-
}
|
|
78
|
-
export function updateDrawingItem(layerID, x, y) {
|
|
79
|
-
return {
|
|
80
|
-
type: UPDATE_DRAWING_ITEM,
|
|
81
|
-
layerID: layerID,
|
|
82
|
-
x: x,
|
|
83
|
-
y: y
|
|
84
|
-
};
|
|
85
|
-
}
|
|
86
|
-
export function endDrawingItem(layerID, x, y) {
|
|
87
|
-
return {
|
|
88
|
-
type: END_DRAWING_ITEM,
|
|
89
|
-
layerID: layerID,
|
|
90
|
-
x: x,
|
|
91
|
-
y: y
|
|
92
|
-
};
|
|
93
|
-
}
|
|
94
|
-
export function beginDraggingItem(layerID, itemID, x, y) {
|
|
95
|
-
return {
|
|
96
|
-
type: BEGIN_DRAGGING_ITEM,
|
|
97
|
-
layerID: layerID,
|
|
98
|
-
itemID: itemID,
|
|
99
|
-
x: x,
|
|
100
|
-
y: y
|
|
101
|
-
};
|
|
102
|
-
}
|
|
103
|
-
export function beginDraggingItem3D(layerID, itemID, x, y) {
|
|
104
|
-
return {
|
|
105
|
-
type: BEGIN_DRAGGING_ITEM_3D,
|
|
106
|
-
layerID: layerID,
|
|
107
|
-
itemID: itemID,
|
|
108
|
-
x: x,
|
|
109
|
-
y: y
|
|
110
|
-
};
|
|
111
|
-
}
|
|
112
|
-
export function updateDraggingItem(x, y) {
|
|
113
|
-
return {
|
|
114
|
-
type: UPDATE_DRAGGING_ITEM,
|
|
115
|
-
x: x,
|
|
116
|
-
y: y
|
|
117
|
-
};
|
|
118
|
-
}
|
|
119
|
-
export function updateDraggingItemChanged(x, y, layerID, itemID) {
|
|
120
|
-
return {
|
|
121
|
-
type: UPDATE_DRAGGING_ITEM_CHANGED,
|
|
122
|
-
x: x,
|
|
123
|
-
y: y,
|
|
124
|
-
layerID: layerID,
|
|
125
|
-
itemID: itemID
|
|
126
|
-
};
|
|
127
|
-
}
|
|
128
|
-
export function updateDraggingItem3DX(x) {
|
|
129
|
-
return {
|
|
130
|
-
type: UPDATE_DRAGGING_ITEM_3DX,
|
|
131
|
-
x: x
|
|
132
|
-
};
|
|
133
|
-
}
|
|
134
|
-
export function updateDraggingItem3DY(y) {
|
|
135
|
-
return {
|
|
136
|
-
type: UPDATE_DRAGGING_ITEM_3DY,
|
|
137
|
-
y: y
|
|
138
|
-
};
|
|
139
|
-
}
|
|
140
|
-
export function endDraggingItem(x, y) {
|
|
141
|
-
return {
|
|
142
|
-
type: END_DRAGGING_ITEM,
|
|
143
|
-
x: x,
|
|
144
|
-
y: y
|
|
145
|
-
};
|
|
146
|
-
}
|
|
147
|
-
export function endDraggingItem3D() {
|
|
148
|
-
return {
|
|
149
|
-
type: END_DRAGGING_ITEM_3D
|
|
150
|
-
};
|
|
151
|
-
}
|
|
152
|
-
export function beginRotatingItem(layerID, itemID, x, y) {
|
|
153
|
-
return {
|
|
154
|
-
type: BEGIN_ROTATING_ITEM,
|
|
155
|
-
layerID: layerID,
|
|
156
|
-
itemID: itemID,
|
|
157
|
-
x: x,
|
|
158
|
-
y: y
|
|
159
|
-
};
|
|
160
|
-
}
|
|
161
|
-
export function beginRotatingItem3D(layerID, itemID, x, y, centerX, centerY) {
|
|
162
|
-
return {
|
|
163
|
-
type: BEGIN_ROTATING_ITEM_3D,
|
|
164
|
-
layerID: layerID,
|
|
165
|
-
itemID: itemID,
|
|
166
|
-
x: x,
|
|
167
|
-
y: y,
|
|
168
|
-
centerX: centerX,
|
|
169
|
-
centerY: centerY
|
|
170
|
-
};
|
|
171
|
-
}
|
|
172
|
-
export function updateRotatingItem(x, y) {
|
|
173
|
-
return {
|
|
174
|
-
type: UPDATE_ROTATING_ITEM,
|
|
175
|
-
x: x,
|
|
176
|
-
y: y
|
|
177
|
-
};
|
|
178
|
-
}
|
|
179
|
-
export function updateRotatingItemChanged(rotation, layerID, itemID) {
|
|
180
|
-
return {
|
|
181
|
-
type: UPDATE_ROTATING_ITEM_CHANGED,
|
|
182
|
-
rotation: rotation,
|
|
183
|
-
layerID: layerID,
|
|
184
|
-
itemID: itemID
|
|
185
|
-
};
|
|
186
|
-
}
|
|
187
|
-
export function endRotatingItem(x, y) {
|
|
188
|
-
return {
|
|
189
|
-
type: END_ROTATING_ITEM,
|
|
190
|
-
x: x,
|
|
191
|
-
y: y
|
|
192
|
-
};
|
|
193
|
-
}
|
|
194
|
-
export function endRotatingItem3D(x, y) {
|
|
195
|
-
return {
|
|
196
|
-
type: END_ROTATING_ITEM_3D,
|
|
197
|
-
x: x,
|
|
198
|
-
y: y
|
|
199
|
-
};
|
|
200
|
-
}
|
|
201
|
-
export function replaceSubmodule(url) {
|
|
202
|
-
return {
|
|
203
|
-
type: REPLACE_SUBMODULE,
|
|
204
|
-
url: url
|
|
205
|
-
};
|
|
206
|
-
}
|
|
207
|
-
export function animateObject(value) {
|
|
208
|
-
return {
|
|
209
|
-
type: ANIMATE_OBJECT,
|
|
210
|
-
value: value
|
|
211
|
-
};
|
|
212
|
-
}
|
|
213
|
-
export function removeReplacingSupport() {
|
|
214
|
-
return {
|
|
215
|
-
type: REMOVE_REPLACE_SUBMODULE
|
|
216
|
-
};
|
|
217
|
-
}
|
|
218
|
-
export function updateItemsAltitude(layerID, itemID, value) {
|
|
219
|
-
return {
|
|
220
|
-
type: ITEM_MOVE_UP,
|
|
221
|
-
layerID: layerID,
|
|
222
|
-
itemID: itemID,
|
|
223
|
-
value: value
|
|
224
|
-
};
|
|
225
|
-
}
|
|
226
|
-
export function setDoorStyle(doorStyle, pathes, isAll) {
|
|
227
|
-
return {
|
|
228
|
-
type: SET_DOOR_STYLE,
|
|
229
|
-
doorStyle: doorStyle,
|
|
230
|
-
pathes: pathes,
|
|
231
|
-
isAll: isAll
|
|
232
|
-
};
|
|
233
|
-
}
|
|
234
|
-
export function setCounterTop(counterTop) {
|
|
235
|
-
return {
|
|
236
|
-
type: SET_COUNTER_TOP,
|
|
237
|
-
counterTop: counterTop
|
|
238
|
-
};
|
|
239
|
-
}
|
|
240
|
-
export function setHandleMaterial(material) {
|
|
241
|
-
return {
|
|
242
|
-
type: SET_HANDLE_MATERIAL,
|
|
243
|
-
material: material
|
|
244
|
-
};
|
|
245
|
-
}
|
|
246
|
-
export function setDoorHandle(texture) {
|
|
247
|
-
return {
|
|
248
|
-
type: SET_DOOR_HANDLE,
|
|
249
|
-
doorHandle: texture
|
|
250
|
-
};
|
|
251
|
-
}
|
|
252
|
-
export function setWallColor(texture) {
|
|
253
|
-
return {
|
|
254
|
-
type: SET_WALL_COLOR,
|
|
255
|
-
wallColor: texture
|
|
256
|
-
};
|
|
257
|
-
}
|
|
258
|
-
export function setMolding(texture, isAll) {
|
|
259
|
-
return {
|
|
260
|
-
type: SET_MOLDING,
|
|
261
|
-
molding: texture,
|
|
262
|
-
isAll: isAll
|
|
263
|
-
};
|
|
264
|
-
}
|
|
265
|
-
export function updateMolding() {
|
|
266
|
-
return {
|
|
267
|
-
type: UPDATE_MOLDING
|
|
268
|
-
};
|
|
269
|
-
}
|
|
270
|
-
export function setBacksplash(texture) {
|
|
271
|
-
return {
|
|
272
|
-
type: SET_BACKSPLASH,
|
|
273
|
-
backsplash: texture
|
|
274
|
-
};
|
|
275
|
-
}
|
|
276
|
-
export function setBacksplashVisible(itemID, value) {
|
|
277
|
-
return {
|
|
278
|
-
type: SET_BACKSPLASH_VISIBLE,
|
|
279
|
-
backsplashVisible: value,
|
|
280
|
-
itemID: itemID
|
|
281
|
-
};
|
|
282
|
-
}
|
|
283
|
-
export function setApplianceMaterial(material) {
|
|
284
|
-
return {
|
|
285
|
-
type: SET_APPLIANCE_MATERIAL,
|
|
286
|
-
material: material
|
|
287
|
-
};
|
|
288
|
-
}
|
|
289
|
-
export function setModelling(model) {
|
|
290
|
-
return {
|
|
291
|
-
type: SET_MODELLING,
|
|
292
|
-
model: model
|
|
293
|
-
};
|
|
294
|
-
}
|
|
295
|
-
export function setInitialDoorStyle(doorStyle, oStyle) {
|
|
296
|
-
return {
|
|
297
|
-
type: SET_INITIAL_DOOR_STYLE,
|
|
298
|
-
doorStyle: doorStyle,
|
|
299
|
-
oStyle: oStyle
|
|
300
|
-
};
|
|
301
|
-
}
|
|
302
|
-
export function setMoveStatus(status) {
|
|
303
|
-
return {
|
|
304
|
-
type: SET_MOVE_STATUS,
|
|
305
|
-
status: status
|
|
306
|
-
};
|
|
307
|
-
}
|
|
308
|
-
export function setRotateStatus(status) {
|
|
309
|
-
return {
|
|
310
|
-
type: SET_ROTATE_STATUS,
|
|
311
|
-
status: status
|
|
312
|
-
};
|
|
313
|
-
}
|
|
314
|
-
//# sourceMappingURL=items-actions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"items-actions.js","names":["TOGGLE_LOADING_CABINET","SELECT_ITEM","SELECT_TOOL_DRAWING_ITEM","UPDATE_DRAWING_ITEM","END_DRAWING_ITEM","BEGIN_DRAGGING_ITEM","BEGIN_DRAGGING_ITEM_3D","UPDATE_DRAGGING_ITEM","UPDATE_DRAGGING_ITEM_3DX","UPDATE_DRAGGING_ITEM_3DY","END_DRAGGING_ITEM","END_DRAGGING_ITEM_3D","UPDATE_DRAGGING_ITEM_CHANGED","UPDATE_ROTATING_ITEM_CHANGED","BEGIN_ROTATING_ITEM","BEGIN_ROTATING_ITEM_3D","UPDATE_ROTATING_ITEM","UPDATE_ROTATING","END_ROTATING_ITEM","END_ROTATING_ITEM_3D","REPLACE_SUBMODULE","ANIMATE_OBJECT","REMOVE_REPLACE_SUBMODULE","ITEM_MOVE_UP","SELECT_TOOL_DRAWING_ITEM_3D","SET_DOOR_STYLE","SET_HANDLE_MATERIAL","SET_INITIAL_DOOR_STYLE","SET_DISTANT","SET_DOOR_HANDLE","SET_WALL_COLOR","END_CREATING_CABINET","UPDATE_POPUP_OPEN","SET_MODELLING","SET_COUNTER_TOP","SET_BACKSPLASH","SET_BACKSPLASH_VISIBLE","SET_APPLIANCE_MATERIAL","DUPLICATE_SELECTED","EDIT_WIDTH","END_LOADING","STORE_DIST_ARRAY","SET_MOLDING","UPDATE_MOLDING","VALIDATE_ITEM_POSTIONS","REPLACE_ITEM","SET_MOVE_STATUS","SET_ROTATE_STATUS","storeDistArray","layerID","itemID","distArray","type","validateItemPositions","endLoading","toggleLoadingCabinet","editWidth","newWidth","duplicateSelected","currentObject","replaceItem","selectedPos","selectedObject","selectItem","endCreatingCabinet","updatePopupOpen","value","selectToolDrawingItem","sceneComponentType","selectToolDrawingItem3D","updateDrawingItem","x","y","endDrawingItem","beginDraggingItem","beginDraggingItem3D","updateDraggingItem","updateDraggingItemChanged","updateDraggingItem3DX","updateDraggingItem3DY","endDraggingItem","endDraggingItem3D","beginRotatingItem","beginRotatingItem3D","centerX","centerY","updateRotatingItem","updateRotatingItemChanged","rotation","endRotatingItem","endRotatingItem3D","replaceSubmodule","url","animateObject","removeReplacingSupport","updateItemsAltitude","setDoorStyle","doorStyle","pathes","isAll","setCounterTop","counterTop","setHandleMaterial","material","setDoorHandle","texture","doorHandle","setWallColor","wallColor","setMolding","molding","updateMolding","setBacksplash","backsplash","setBacksplashVisible","backsplashVisible","setApplianceMaterial","setModelling","model","setInitialDoorStyle","oStyle","setMoveStatus","status","setRotateStatus"],"sources":["../../src/actions/items-actions.js"],"sourcesContent":["import {\r\n TOGGLE_LOADING_CABINET,\r\n SELECT_ITEM,\r\n SELECT_TOOL_DRAWING_ITEM,\r\n UPDATE_DRAWING_ITEM,\r\n END_DRAWING_ITEM,\r\n BEGIN_DRAGGING_ITEM,\r\n BEGIN_DRAGGING_ITEM_3D,\r\n UPDATE_DRAGGING_ITEM,\r\n UPDATE_DRAGGING_ITEM_3DX,\r\n UPDATE_DRAGGING_ITEM_3DY,\r\n END_DRAGGING_ITEM,\r\n END_DRAGGING_ITEM_3D,\r\n UPDATE_DRAGGING_ITEM_CHANGED,\r\n UPDATE_ROTATING_ITEM_CHANGED,\r\n BEGIN_ROTATING_ITEM,\r\n BEGIN_ROTATING_ITEM_3D,\r\n UPDATE_ROTATING_ITEM,\r\n UPDATE_ROTATING,\r\n END_ROTATING_ITEM,\r\n END_ROTATING_ITEM_3D,\r\n REPLACE_SUBMODULE,\r\n ANIMATE_OBJECT,\r\n REMOVE_REPLACE_SUBMODULE,\r\n ITEM_MOVE_UP,\r\n SELECT_TOOL_DRAWING_ITEM_3D,\r\n SET_DOOR_STYLE,\r\n SET_HANDLE_MATERIAL,\r\n SET_INITIAL_DOOR_STYLE,\r\n SET_DISTANT,\r\n SET_DOOR_HANDLE,\r\n SET_WALL_COLOR,\r\n END_CREATING_CABINET,\r\n UPDATE_POPUP_OPEN,\r\n SET_MODELLING,\r\n SET_COUNTER_TOP,\r\n SET_BACKSPLASH,\r\n SET_BACKSPLASH_VISIBLE,\r\n SET_APPLIANCE_MATERIAL,\r\n DUPLICATE_SELECTED,\r\n EDIT_WIDTH,\r\n END_LOADING,\r\n STORE_DIST_ARRAY,\r\n SET_MOLDING,\r\n UPDATE_MOLDING,\r\n VALIDATE_ITEM_POSTIONS,\r\n REPLACE_ITEM,\r\n SET_MOVE_STATUS,\r\n SET_ROTATE_STATUS\r\n} from '../constants';\r\n\r\nexport function storeDistArray(layerID, itemID, distArray) {\r\n return {\r\n type: STORE_DIST_ARRAY,\r\n layerID,\r\n itemID,\r\n distArray\r\n };\r\n}\r\n\r\nexport function validateItemPositions(layerID) {\r\n return {\r\n type: VALIDATE_ITEM_POSTIONS,\r\n layerID\r\n };\r\n}\r\n\r\nexport function endLoading() {\r\n return {\r\n type: END_LOADING\r\n };\r\n}\r\n\r\nexport function toggleLoadingCabinet() {\r\n return {\r\n type: TOGGLE_LOADING_CABINET\r\n };\r\n}\r\n\r\nexport function editWidth(newWidth, layerID, itemID) {\r\n return {\r\n type: EDIT_WIDTH,\r\n newWidth,\r\n layerID,\r\n itemID\r\n };\r\n}\r\n\r\nexport function duplicateSelected(currentObject) {\r\n return {\r\n type: DUPLICATE_SELECTED,\r\n currentObject\r\n };\r\n}\r\n\r\nexport function replaceItem(selectedPos, currentObject, selectedObject) {\r\n return {\r\n type: REPLACE_ITEM,\r\n selectedPos,\r\n currentObject,\r\n selectedObject\r\n };\r\n}\r\n\r\nexport function selectItem(layerID, itemID) {\r\n return {\r\n type: SELECT_ITEM,\r\n layerID,\r\n itemID\r\n };\r\n}\r\n\r\nexport function endCreatingCabinet() {\r\n return {\r\n type: END_CREATING_CABINET\r\n };\r\n}\r\nexport function updatePopupOpen(value) {\r\n return {\r\n type: UPDATE_POPUP_OPEN,\r\n value\r\n };\r\n}\r\n\r\nexport function selectToolDrawingItem(sceneComponentType) {\r\n return {\r\n type: SELECT_TOOL_DRAWING_ITEM,\r\n sceneComponentType\r\n };\r\n}\r\n\r\nexport function selectToolDrawingItem3D(sceneComponentType) {\r\n return {\r\n type: SELECT_TOOL_DRAWING_ITEM_3D,\r\n sceneComponentType\r\n };\r\n}\r\n\r\nexport function updateDrawingItem(layerID, x, y) {\r\n return {\r\n type: UPDATE_DRAWING_ITEM,\r\n layerID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endDrawingItem(layerID, x, y) {\r\n return {\r\n type: END_DRAWING_ITEM,\r\n layerID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function beginDraggingItem(layerID, itemID, x, y) {\r\n return {\r\n type: BEGIN_DRAGGING_ITEM,\r\n layerID,\r\n itemID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function beginDraggingItem3D(layerID, itemID, x, y) {\r\n return {\r\n type: BEGIN_DRAGGING_ITEM_3D,\r\n layerID,\r\n itemID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function updateDraggingItem(x, y) {\r\n return {\r\n type: UPDATE_DRAGGING_ITEM,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function updateDraggingItemChanged(x, y, layerID, itemID) {\r\n return {\r\n type: UPDATE_DRAGGING_ITEM_CHANGED,\r\n x,\r\n y,\r\n layerID,\r\n itemID\r\n };\r\n}\r\n\r\nexport function updateDraggingItem3DX(x) {\r\n return {\r\n type: UPDATE_DRAGGING_ITEM_3DX,\r\n x\r\n };\r\n}\r\nexport function updateDraggingItem3DY(y) {\r\n return {\r\n type: UPDATE_DRAGGING_ITEM_3DY,\r\n y\r\n };\r\n}\r\nexport function endDraggingItem(x, y) {\r\n return {\r\n type: END_DRAGGING_ITEM,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endDraggingItem3D() {\r\n return {\r\n type: END_DRAGGING_ITEM_3D\r\n };\r\n}\r\n\r\nexport function beginRotatingItem(layerID, itemID, x, y) {\r\n return {\r\n type: BEGIN_ROTATING_ITEM,\r\n layerID,\r\n itemID,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function beginRotatingItem3D(layerID, itemID, x, y, centerX, centerY) {\r\n return {\r\n type: BEGIN_ROTATING_ITEM_3D,\r\n layerID,\r\n itemID,\r\n x,\r\n y,\r\n centerX,\r\n centerY\r\n };\r\n}\r\n\r\nexport function updateRotatingItem(x, y) {\r\n return {\r\n type: UPDATE_ROTATING_ITEM,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function updateRotatingItemChanged(rotation, layerID, itemID) {\r\n return {\r\n type: UPDATE_ROTATING_ITEM_CHANGED,\r\n rotation,\r\n layerID,\r\n itemID\r\n };\r\n}\r\n\r\nexport function endRotatingItem(x, y) {\r\n return {\r\n type: END_ROTATING_ITEM,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function endRotatingItem3D(x, y) {\r\n return {\r\n type: END_ROTATING_ITEM_3D,\r\n x,\r\n y\r\n };\r\n}\r\n\r\nexport function replaceSubmodule(url) {\r\n return {\r\n type: REPLACE_SUBMODULE,\r\n url: url\r\n };\r\n}\r\n\r\nexport function animateObject(value) {\r\n return {\r\n type: ANIMATE_OBJECT,\r\n value: value\r\n };\r\n}\r\n\r\nexport function removeReplacingSupport() {\r\n return {\r\n type: REMOVE_REPLACE_SUBMODULE\r\n };\r\n}\r\n\r\nexport function updateItemsAltitude(layerID, itemID, value) {\r\n return {\r\n type: ITEM_MOVE_UP,\r\n layerID: layerID,\r\n itemID: itemID,\r\n value: value\r\n };\r\n}\r\nexport function setDoorStyle(doorStyle, pathes, isAll) {\r\n return {\r\n type: SET_DOOR_STYLE,\r\n doorStyle: doorStyle,\r\n pathes: pathes,\r\n isAll: isAll\r\n };\r\n}\r\nexport function setCounterTop(counterTop) {\r\n return {\r\n type: SET_COUNTER_TOP,\r\n counterTop\r\n };\r\n}\r\nexport function setHandleMaterial(material) {\r\n return {\r\n type: SET_HANDLE_MATERIAL,\r\n material\r\n };\r\n}\r\nexport function setDoorHandle(texture) {\r\n return {\r\n type: SET_DOOR_HANDLE,\r\n doorHandle: texture\r\n };\r\n}\r\nexport function setWallColor(texture) {\r\n return {\r\n type: SET_WALL_COLOR,\r\n wallColor: texture\r\n };\r\n}\r\nexport function setMolding(texture, isAll) {\r\n return {\r\n type: SET_MOLDING,\r\n molding: texture,\r\n isAll: isAll\r\n };\r\n}\r\nexport function updateMolding() {\r\n return {\r\n type: UPDATE_MOLDING\r\n };\r\n}\r\nexport function setBacksplash(texture) {\r\n return {\r\n type: SET_BACKSPLASH,\r\n backsplash: texture\r\n };\r\n}\r\nexport function setBacksplashVisible(itemID, value) {\r\n return {\r\n type: SET_BACKSPLASH_VISIBLE,\r\n backsplashVisible: value,\r\n itemID\r\n };\r\n}\r\nexport function setApplianceMaterial(material) {\r\n return {\r\n type: SET_APPLIANCE_MATERIAL,\r\n material\r\n };\r\n}\r\nexport function setModelling(model) {\r\n return {\r\n type: SET_MODELLING,\r\n model: model\r\n };\r\n}\r\nexport function setInitialDoorStyle(doorStyle, oStyle) {\r\n return {\r\n type: SET_INITIAL_DOOR_STYLE,\r\n doorStyle: doorStyle,\r\n oStyle: oStyle\r\n };\r\n}\r\n\r\nexport function setMoveStatus(status) {\r\n return {\r\n type: SET_MOVE_STATUS,\r\n status: status\r\n };\r\n}\r\n\r\nexport function setRotateStatus(status) {\r\n return {\r\n type: SET_ROTATE_STATUS,\r\n status: status\r\n };\r\n}\r\n"],"mappings":"AAAA,SACEA,sBAAsB,EACtBC,WAAW,EACXC,wBAAwB,EACxBC,mBAAmB,EACnBC,gBAAgB,EAChBC,mBAAmB,EACnBC,sBAAsB,EACtBC,oBAAoB,EACpBC,wBAAwB,EACxBC,wBAAwB,EACxBC,iBAAiB,EACjBC,oBAAoB,EACpBC,4BAA4B,EAC5BC,4BAA4B,EAC5BC,mBAAmB,EACnBC,sBAAsB,EACtBC,oBAAoB,EACpBC,eAAe,EACfC,iBAAiB,EACjBC,oBAAoB,EACpBC,iBAAiB,EACjBC,cAAc,EACdC,wBAAwB,EACxBC,YAAY,EACZC,2BAA2B,EAC3BC,cAAc,EACdC,mBAAmB,EACnBC,sBAAsB,EACtBC,WAAW,EACXC,eAAe,EACfC,cAAc,EACdC,oBAAoB,EACpBC,iBAAiB,EACjBC,aAAa,EACbC,eAAe,EACfC,cAAc,EACdC,sBAAsB,EACtBC,sBAAsB,EACtBC,kBAAkB,EAClBC,UAAU,EACVC,WAAW,EACXC,gBAAgB,EAChBC,WAAW,EACXC,cAAc,EACdC,sBAAsB,EACtBC,YAAY,EACZC,eAAe,EACfC,iBAAiB,QACZ,cAAc;AAErB,OAAO,SAASC,cAAcA,CAACC,OAAO,EAAEC,MAAM,EAAEC,SAAS,EAAE;EACzD,OAAO;IACLC,IAAI,EAAEX,gBAAgB;IACtBQ,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA,MAAM;IACNC,SAAS,EAATA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,qBAAqBA,CAACJ,OAAO,EAAE;EAC7C,OAAO;IACLG,IAAI,EAAER,sBAAsB;IAC5BK,OAAO,EAAPA;EACF,CAAC;AACH;AAEA,OAAO,SAASK,UAAUA,CAAA,EAAG;EAC3B,OAAO;IACLF,IAAI,EAAEZ;EACR,CAAC;AACH;AAEA,OAAO,SAASe,oBAAoBA,CAAA,EAAG;EACrC,OAAO;IACLH,IAAI,EAAEpD;EACR,CAAC;AACH;AAEA,OAAO,SAASwD,SAASA,CAACC,QAAQ,EAAER,OAAO,EAAEC,MAAM,EAAE;EACnD,OAAO;IACLE,IAAI,EAAEb,UAAU;IAChBkB,QAAQ,EAARA,QAAQ;IACRR,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA;EACF,CAAC;AACH;AAEA,OAAO,SAASQ,iBAAiBA,CAACC,aAAa,EAAE;EAC/C,OAAO;IACLP,IAAI,EAAEd,kBAAkB;IACxBqB,aAAa,EAAbA;EACF,CAAC;AACH;AAEA,OAAO,SAASC,WAAWA,CAACC,WAAW,EAAEF,aAAa,EAAEG,cAAc,EAAE;EACtE,OAAO;IACLV,IAAI,EAAEP,YAAY;IAClBgB,WAAW,EAAXA,WAAW;IACXF,aAAa,EAAbA,aAAa;IACbG,cAAc,EAAdA;EACF,CAAC;AACH;AAEA,OAAO,SAASC,UAAUA,CAACd,OAAO,EAAEC,MAAM,EAAE;EAC1C,OAAO;IACLE,IAAI,EAAEnD,WAAW;IACjBgD,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA;EACF,CAAC;AACH;AAEA,OAAO,SAASc,kBAAkBA,CAAA,EAAG;EACnC,OAAO;IACLZ,IAAI,EAAErB;EACR,CAAC;AACH;AACA,OAAO,SAASkC,eAAeA,CAACC,KAAK,EAAE;EACrC,OAAO;IACLd,IAAI,EAAEpB,iBAAiB;IACvBkC,KAAK,EAALA;EACF,CAAC;AACH;AAEA,OAAO,SAASC,qBAAqBA,CAACC,kBAAkB,EAAE;EACxD,OAAO;IACLhB,IAAI,EAAElD,wBAAwB;IAC9BkE,kBAAkB,EAAlBA;EACF,CAAC;AACH;AAEA,OAAO,SAASC,uBAAuBA,CAACD,kBAAkB,EAAE;EAC1D,OAAO;IACLhB,IAAI,EAAE5B,2BAA2B;IACjC4C,kBAAkB,EAAlBA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,iBAAiBA,CAACrB,OAAO,EAAEsB,CAAC,EAAEC,CAAC,EAAE;EAC/C,OAAO;IACLpB,IAAI,EAAEjD,mBAAmB;IACzB8C,OAAO,EAAPA,OAAO;IACPsB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASC,cAAcA,CAACxB,OAAO,EAAEsB,CAAC,EAAEC,CAAC,EAAE;EAC5C,OAAO;IACLpB,IAAI,EAAEhD,gBAAgB;IACtB6C,OAAO,EAAPA,OAAO;IACPsB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASE,iBAAiBA,CAACzB,OAAO,EAAEC,MAAM,EAAEqB,CAAC,EAAEC,CAAC,EAAE;EACvD,OAAO;IACLpB,IAAI,EAAE/C,mBAAmB;IACzB4C,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA,MAAM;IACNqB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASG,mBAAmBA,CAAC1B,OAAO,EAAEC,MAAM,EAAEqB,CAAC,EAAEC,CAAC,EAAE;EACzD,OAAO;IACLpB,IAAI,EAAE9C,sBAAsB;IAC5B2C,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA,MAAM;IACNqB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASI,kBAAkBA,CAACL,CAAC,EAAEC,CAAC,EAAE;EACvC,OAAO;IACLpB,IAAI,EAAE7C,oBAAoB;IAC1BgE,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASK,yBAAyBA,CAACN,CAAC,EAAEC,CAAC,EAAEvB,OAAO,EAAEC,MAAM,EAAE;EAC/D,OAAO;IACLE,IAAI,EAAExC,4BAA4B;IAClC2D,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA,CAAC;IACDvB,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA;EACF,CAAC;AACH;AAEA,OAAO,SAAS4B,qBAAqBA,CAACP,CAAC,EAAE;EACvC,OAAO;IACLnB,IAAI,EAAE5C,wBAAwB;IAC9B+D,CAAC,EAADA;EACF,CAAC;AACH;AACA,OAAO,SAASQ,qBAAqBA,CAACP,CAAC,EAAE;EACvC,OAAO;IACLpB,IAAI,EAAE3C,wBAAwB;IAC9B+D,CAAC,EAADA;EACF,CAAC;AACH;AACA,OAAO,SAASQ,eAAeA,CAACT,CAAC,EAAEC,CAAC,EAAE;EACpC,OAAO;IACLpB,IAAI,EAAE1C,iBAAiB;IACvB6D,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASS,iBAAiBA,CAAA,EAAG;EAClC,OAAO;IACL7B,IAAI,EAAEzC;EACR,CAAC;AACH;AAEA,OAAO,SAASuE,iBAAiBA,CAACjC,OAAO,EAAEC,MAAM,EAAEqB,CAAC,EAAEC,CAAC,EAAE;EACvD,OAAO;IACLpB,IAAI,EAAEtC,mBAAmB;IACzBmC,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA,MAAM;IACNqB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASW,mBAAmBA,CAAClC,OAAO,EAAEC,MAAM,EAAEqB,CAAC,EAAEC,CAAC,EAAEY,OAAO,EAAEC,OAAO,EAAE;EAC3E,OAAO;IACLjC,IAAI,EAAErC,sBAAsB;IAC5BkC,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA,MAAM;IACNqB,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA,CAAC;IACDY,OAAO,EAAPA,OAAO;IACPC,OAAO,EAAPA;EACF,CAAC;AACH;AAEA,OAAO,SAASC,kBAAkBA,CAACf,CAAC,EAAEC,CAAC,EAAE;EACvC,OAAO;IACLpB,IAAI,EAAEpC,oBAAoB;IAC1BuD,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASe,yBAAyBA,CAACC,QAAQ,EAAEvC,OAAO,EAAEC,MAAM,EAAE;EACnE,OAAO;IACLE,IAAI,EAAEvC,4BAA4B;IAClC2E,QAAQ,EAARA,QAAQ;IACRvC,OAAO,EAAPA,OAAO;IACPC,MAAM,EAANA;EACF,CAAC;AACH;AAEA,OAAO,SAASuC,eAAeA,CAAClB,CAAC,EAAEC,CAAC,EAAE;EACpC,OAAO;IACLpB,IAAI,EAAElC,iBAAiB;IACvBqD,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASkB,iBAAiBA,CAACnB,CAAC,EAAEC,CAAC,EAAE;EACtC,OAAO;IACLpB,IAAI,EAAEjC,oBAAoB;IAC1BoD,CAAC,EAADA,CAAC;IACDC,CAAC,EAADA;EACF,CAAC;AACH;AAEA,OAAO,SAASmB,gBAAgBA,CAACC,GAAG,EAAE;EACpC,OAAO;IACLxC,IAAI,EAAEhC,iBAAiB;IACvBwE,GAAG,EAAEA;EACP,CAAC;AACH;AAEA,OAAO,SAASC,aAAaA,CAAC3B,KAAK,EAAE;EACnC,OAAO;IACLd,IAAI,EAAE/B,cAAc;IACpB6C,KAAK,EAAEA;EACT,CAAC;AACH;AAEA,OAAO,SAAS4B,sBAAsBA,CAAA,EAAG;EACvC,OAAO;IACL1C,IAAI,EAAE9B;EACR,CAAC;AACH;AAEA,OAAO,SAASyE,mBAAmBA,CAAC9C,OAAO,EAAEC,MAAM,EAAEgB,KAAK,EAAE;EAC1D,OAAO;IACLd,IAAI,EAAE7B,YAAY;IAClB0B,OAAO,EAAEA,OAAO;IAChBC,MAAM,EAAEA,MAAM;IACdgB,KAAK,EAAEA;EACT,CAAC;AACH;AACA,OAAO,SAAS8B,YAAYA,CAACC,SAAS,EAAEC,MAAM,EAAEC,KAAK,EAAE;EACrD,OAAO;IACL/C,IAAI,EAAE3B,cAAc;IACpBwE,SAAS,EAAEA,SAAS;IACpBC,MAAM,EAAEA,MAAM;IACdC,KAAK,EAAEA;EACT,CAAC;AACH;AACA,OAAO,SAASC,aAAaA,CAACC,UAAU,EAAE;EACxC,OAAO;IACLjD,IAAI,EAAElB,eAAe;IACrBmE,UAAU,EAAVA;EACF,CAAC;AACH;AACA,OAAO,SAASC,iBAAiBA,CAACC,QAAQ,EAAE;EAC1C,OAAO;IACLnD,IAAI,EAAE1B,mBAAmB;IACzB6E,QAAQ,EAARA;EACF,CAAC;AACH;AACA,OAAO,SAASC,aAAaA,CAACC,OAAO,EAAE;EACrC,OAAO;IACLrD,IAAI,EAAEvB,eAAe;IACrB6E,UAAU,EAAED;EACd,CAAC;AACH;AACA,OAAO,SAASE,YAAYA,CAACF,OAAO,EAAE;EACpC,OAAO;IACLrD,IAAI,EAAEtB,cAAc;IACpB8E,SAAS,EAAEH;EACb,CAAC;AACH;AACA,OAAO,SAASI,UAAUA,CAACJ,OAAO,EAAEN,KAAK,EAAE;EACzC,OAAO;IACL/C,IAAI,EAAEV,WAAW;IACjBoE,OAAO,EAAEL,OAAO;IAChBN,KAAK,EAAEA;EACT,CAAC;AACH;AACA,OAAO,SAASY,aAAaA,CAAA,EAAG;EAC9B,OAAO;IACL3D,IAAI,EAAET;EACR,CAAC;AACH;AACA,OAAO,SAASqE,aAAaA,CAACP,OAAO,EAAE;EACrC,OAAO;IACLrD,IAAI,EAAEjB,cAAc;IACpB8E,UAAU,EAAER;EACd,CAAC;AACH;AACA,OAAO,SAASS,oBAAoBA,CAAChE,MAAM,EAAEgB,KAAK,EAAE;EAClD,OAAO;IACLd,IAAI,EAAEhB,sBAAsB;IAC5B+E,iBAAiB,EAAEjD,KAAK;IACxBhB,MAAM,EAANA;EACF,CAAC;AACH;AACA,OAAO,SAASkE,oBAAoBA,CAACb,QAAQ,EAAE;EAC7C,OAAO;IACLnD,IAAI,EAAEf,sBAAsB;IAC5BkE,QAAQ,EAARA;EACF,CAAC;AACH;AACA,OAAO,SAASc,YAAYA,CAACC,KAAK,EAAE;EAClC,OAAO;IACLlE,IAAI,EAAEnB,aAAa;IACnBqF,KAAK,EAAEA;EACT,CAAC;AACH;AACA,OAAO,SAASC,mBAAmBA,CAACtB,SAAS,EAAEuB,MAAM,EAAE;EACrD,OAAO;IACLpE,IAAI,EAAEzB,sBAAsB;IAC5BsE,SAAS,EAAEA,SAAS;IACpBuB,MAAM,EAAEA;EACV,CAAC;AACH;AAEA,OAAO,SAASC,aAAaA,CAACC,MAAM,EAAE;EACpC,OAAO;IACLtE,IAAI,EAAEN,eAAe;IACrB4E,MAAM,EAAEA;EACV,CAAC;AACH;AAEA,OAAO,SAASC,eAAeA,CAACD,MAAM,EAAE;EACtC,OAAO;IACLtE,IAAI,EAAEL,iBAAiB;IACvB2E,MAAM,EAAEA;EACV,CAAC;AACH","ignoreList":[]}
|