@colijnit/homedecorator 255.1.1
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/_variables.scss +1 -0
- package/app/app.component.scss +30 -0
- package/app/app.version.d.ts +5 -0
- package/app/bundle/threedselector-bundle/threedselector-bundle.component.scss +24 -0
- package/app/bundle/threedselector-bundle/threedselector-selections-bundle.component.scss +4 -0
- package/app/core/components/debug/debug.component.d.ts +17 -0
- package/app/core/components/debug/debug.component.scss +27 -0
- package/app/core/components/error/error-message.component.d.ts +14 -0
- package/app/core/components/error/error-message.component.scss +18 -0
- package/app/core/components/tooltip/tooltip.component.d.ts +17 -0
- package/app/core/components/tooltip/tooltip.component.scss +34 -0
- package/app/core/const/dimensioning.d.ts +24 -0
- package/app/core/core.module.d.ts +27 -0
- package/app/core/directive/autofocus.directive.d.ts +11 -0
- package/app/core/directive/tooltip.directive.d.ts +21 -0
- package/app/core/directive/visibility-observer-master.directive.d.ts +12 -0
- package/app/core/directive/visibility-observer.directive.d.ts +16 -0
- package/app/core/enum/configuration-key.enum.d.ts +35 -0
- package/app/core/enum/export-type.enum.d.ts +5 -0
- package/app/core/enum/google-tag-manager-event.enum.d.ts +12 -0
- package/app/core/enum/icon-name.enum.d.ts +15 -0
- package/app/core/enum/icon.enum.d.ts +33 -0
- package/app/core/enum/light.enum.d.ts +7 -0
- package/app/core/enum/message-type.enum.d.ts +69 -0
- package/app/core/enum/model-type.enum.d.ts +6 -0
- package/app/core/enum/output-encoding.enum.d.ts +4 -0
- package/app/core/enum/shadow-map-type.enum.d.ts +6 -0
- package/app/core/enum/user-role-type.enum.d.ts +18 -0
- package/app/core/enum/view-mode.enum.d.ts +9 -0
- package/app/core/enum/xr-mode.enum.d.ts +4 -0
- package/app/core/interface/adjustable-element.interface.d.ts +5 -0
- package/app/core/interface/category.interface.d.ts +9 -0
- package/app/core/interface/changes.interface.d.ts +9 -0
- package/app/core/interface/child-params.interface.d.ts +3 -0
- package/app/core/interface/configuration-data.interface.d.ts +36 -0
- package/app/core/interface/external-settings.interface.d.ts +6 -0
- package/app/core/interface/info-dialog-data.interface.d.ts +4 -0
- package/app/core/interface/light-preset.interface.d.ts +18 -0
- package/app/core/interface/loading-overlay-data.interface.d.ts +4 -0
- package/app/core/interface/media-resource.interface.d.ts +6 -0
- package/app/core/interface/message-with-payload.interface.d.ts +81 -0
- package/app/core/interface/message-without-payload.interface.d.ts +35 -0
- package/app/core/interface/preset.interface.d.ts +8 -0
- package/app/core/interface/selected-floor-event.interface.d.ts +5 -0
- package/app/core/interface/selected-wall-event.interface.d.ts +6 -0
- package/app/core/interface/texture.interface.d.ts +37 -0
- package/app/core/interface/toolbar-icon.interface.d.ts +8 -0
- package/app/core/model/ar-position-indicator.d.ts +4 -0
- package/app/core/model/camera-settings.d.ts +12 -0
- package/app/core/model/category.d.ts +12 -0
- package/app/core/model/custom-button.d.ts +10 -0
- package/app/core/model/error-message.d.ts +8 -0
- package/app/core/model/export-object.d.ts +5 -0
- package/app/core/model/from-intersection-observer.d.ts +7 -0
- package/app/core/model/homedecorator-settings-options.d.ts +46 -0
- package/app/core/model/homedecorator-settings.d.ts +54 -0
- package/app/core/model/icon.d.ts +4 -0
- package/app/core/model/light-preset.d.ts +27 -0
- package/app/core/model/light-properties.d.ts +25 -0
- package/app/core/model/media-resource.d.ts +7 -0
- package/app/core/model/preset.d.ts +10 -0
- package/app/core/model/ral-color.d.ts +19 -0
- package/app/core/model/shadow-properties.d.ts +7 -0
- package/app/core/model/texture-type.d.ts +6 -0
- package/app/core/model/texture.d.ts +43 -0
- package/app/core/model/three-object.d.ts +1 -0
- package/app/core/model/toast-type.d.ts +5 -0
- package/app/core/model/toast.d.ts +5 -0
- package/app/core/model/xr-reticle.d.ts +17 -0
- package/app/core/pipe/append.pipe.d.ts +7 -0
- package/app/core/pipe/cm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/filter.pipe.d.ts +7 -0
- package/app/core/pipe/keys.pipe.d.ts +7 -0
- package/app/core/pipe/localize.pipe.d.ts +10 -0
- package/app/core/pipe/m-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/prepend.pipe.d.ts +7 -0
- package/app/core/pipe/scm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/sm-to-measure.pipe.d.ts +10 -0
- package/app/core/pipe/strip-html.pipe.d.ts +7 -0
- package/app/core/service/3dm-api.d.ts +65 -0
- package/app/core/service/app-state.service.d.ts +49 -0
- package/app/core/service/configuration.service.d.ts +15 -0
- package/app/core/service/debug.service.d.ts +16 -0
- package/app/core/service/dimensioning.service.d.ts +14 -0
- package/app/core/service/dynamic-camera.service.d.ts +23 -0
- package/app/core/service/environment.service.d.ts +8 -0
- package/app/core/service/error.service.d.ts +11 -0
- package/app/core/service/export.service.d.ts +18 -0
- package/app/core/service/file.service.d.ts +9 -0
- package/app/core/service/homedecorator-app-event.service.d.ts +23 -0
- package/app/core/service/homedecorator-app.service.d.ts +58 -0
- package/app/core/service/homedecorator-connector-adapter.service.d.ts +90 -0
- package/app/core/service/homedecorator-connector.service.d.ts +127 -0
- package/app/core/service/homedecorator-dictionary.service.d.ts +15 -0
- package/app/core/service/homedecorator-icon-cache.service.d.ts +21 -0
- package/app/core/service/homedecorator-settings.service.d.ts +23 -0
- package/app/core/service/homedecorator.service.d.ts +14 -0
- package/app/core/service/integration.service.d.ts +16 -0
- package/app/core/service/item-serialization.service.d.ts +78 -0
- package/app/core/service/json-utils.service.d.ts +7 -0
- package/app/core/service/message-bus.service.d.ts +21 -0
- package/app/core/service/permanent-store.service.d.ts +37 -0
- package/app/core/service/presets.service.d.ts +50 -0
- package/app/core/service/progress.service.d.ts +17 -0
- package/app/core/service/ral.service.d.ts +17 -0
- package/app/core/service/skip-button-info.service.d.ts +19 -0
- package/app/core/service/toast.service.d.ts +12 -0
- package/app/core/service/utils.service.d.ts +68 -0
- package/app/core/service/view-mode.service.d.ts +27 -0
- package/app/core/service/web-worker.service.d.ts +18 -0
- package/app/core/utils/clone-utils.d.ts +5 -0
- package/app/core/utils/color.utils.d.ts +7 -0
- package/app/core/utils/file.utils.d.ts +36 -0
- package/app/core/utils/function/is-empty.function.d.ts +1 -0
- package/app/core/utils/function/is-nill.function.d.ts +1 -0
- package/app/core/utils/material.utils.d.ts +33 -0
- package/app/core/utils/object.utils.d.ts +14 -0
- package/app/core/utils/relative-position.utils.d.ts +12 -0
- package/app/core/utils/variation-utils.d.ts +12 -0
- package/app/core/workers/enum/web-worker-message.enum.d.ts +4 -0
- package/app/core/workers/enum/web-worker-type.enum.d.ts +3 -0
- package/app/development/components/selected-child-material-texture.component.d.ts +58 -0
- package/app/development/components/selected-child-material-texture.component.scss +122 -0
- package/app/development/components/selected-child-material.component.d.ts +73 -0
- package/app/development/components/selected-child-material.component.scss +45 -0
- package/app/development/components/selected-child.component.d.ts +8 -0
- package/app/development/components/selected-child.component.scss +40 -0
- package/app/development/components/selected-object-base.d.ts +32 -0
- package/app/development/components/selected-object.component.d.ts +20 -0
- package/app/development/components/selected-object.component.scss +13 -0
- package/app/development/development.module.d.ts +19 -0
- package/app/development/directive/development.directive.d.ts +19 -0
- package/app/development/service/development.service.d.ts +49 -0
- package/app/homedecorator.component.d.ts +42 -0
- package/app/homedecorator.component.scss +34 -0
- package/app/homedecorator.module.d.ts +18 -0
- package/app/plugins/core3d/collision-manager/collision-manager.service.d.ts +23 -0
- package/app/plugins/core3d/collision-manager/floorplan-collision-detection.d.ts +9 -0
- package/app/plugins/core3d/collision-manager/snapping-collision.service.d.ts +47 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.d.ts +17 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.scss +30 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.d.ts +25 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.scss +13 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.d.ts +21 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.scss +6 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.d.ts +11 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.scss +19 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.d.ts +16 -0
- package/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.scss +23 -0
- package/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.d.ts +46 -0
- package/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.scss +93 -0
- package/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.d.ts +24 -0
- package/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.scss +93 -0
- package/app/plugins/core3d/components/lightplan/lightplan.component.d.ts +60 -0
- package/app/plugins/core3d/components/lightplan/lightplan.component.scss +102 -0
- package/app/plugins/core3d/components/scene-options/scene-options.component.d.ts +17 -0
- package/app/plugins/core3d/components/scene-options/scene-options.component.scss +54 -0
- package/app/plugins/core3d/core/angles.d.ts +8 -0
- package/app/plugins/core3d/core/corner-utils.d.ts +8 -0
- package/app/plugins/core3d/core/dimensioning.d.ts +19 -0
- package/app/plugins/core3d/core/utils.d.ts +147 -0
- package/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.d.ts +49 -0
- package/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.scss +3 -0
- package/app/plugins/core3d/core3d/core3d.component.d.ts +76 -0
- package/app/plugins/core3d/core3d/core3d.component.scss +27 -0
- package/app/plugins/core3d/core3d.module.d.ts +38 -0
- package/app/plugins/core3d/directive/scene.directive.d.ts +26 -0
- package/app/plugins/core3d/enum/ar-feature.enum.d.ts +12 -0
- package/app/plugins/core3d/enum/direction.enum.d.ts +8 -0
- package/app/plugins/core3d/enum/result-type.enum.d.ts +19 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/bounding-box-measurement.d.ts +28 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/box-measurement.d.ts +17 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/door-or-window-box-measurement.d.ts +29 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/measurable.d.ts +8 -0
- package/app/plugins/core3d/hud/bounding-measurement-box/measurement-utils.d.ts +9 -0
- package/app/plugins/core3d/hud/custom-shape-name-label.d.ts +15 -0
- package/app/plugins/core3d/hud/floor-indicator.d.ts +20 -0
- package/app/plugins/core3d/hud/furniture-measurements.d.ts +12 -0
- package/app/plugins/core3d/hud/indicator-factory.d.ts +7 -0
- package/app/plugins/core3d/hud/measurements.d.ts +46 -0
- package/app/plugins/core3d/hud/on-wall-measurements.d.ts +18 -0
- package/app/plugins/core3d/hud/opening-symbol.d.ts +11 -0
- package/app/plugins/core3d/hud/rotation-helper.d.ts +44 -0
- package/app/plugins/core3d/hud/utils.d.ts +3 -0
- package/app/plugins/core3d/interface/dragged-data.interface.d.ts +10 -0
- package/app/plugins/core3d/interface/edge-visibility-changes.d.ts +5 -0
- package/app/plugins/core3d/interface/model.interface.d.ts +42 -0
- package/app/plugins/core3d/interface/opening.interface.d.ts +6 -0
- package/app/plugins/core3d/interface/scene-option-button.interface.d.ts +17 -0
- package/app/plugins/core3d/interface/scene-update.interface.d.ts +5 -0
- package/app/plugins/core3d/items/base-item.d.ts +97 -0
- package/app/plugins/core3d/items/custom-cylinder-floor-item.d.ts +12 -0
- package/app/plugins/core3d/items/custom-cylinder-wall-item.d.ts +13 -0
- package/app/plugins/core3d/items/custom-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/custom-objects.d.ts +55 -0
- package/app/plugins/core3d/items/custom-shape-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/custom-shape-wall-item.d.ts +10 -0
- package/app/plugins/core3d/items/custom-wall-floor-item.d.ts +19 -0
- package/app/plugins/core3d/items/custom-wall-item.d.ts +9 -0
- package/app/plugins/core3d/items/factory.d.ts +24 -0
- package/app/plugins/core3d/items/floor-item.d.ts +13 -0
- package/app/plugins/core3d/items/floor-pin.d.ts +11 -0
- package/app/plugins/core3d/items/floor-plane-item.d.ts +30 -0
- package/app/plugins/core3d/items/furniture.d.ts +3 -0
- package/app/plugins/core3d/items/in-wall-floor-item.d.ts +9 -0
- package/app/plugins/core3d/items/item-group.d.ts +51 -0
- package/app/plugins/core3d/items/item-type.d.ts +21 -0
- package/app/plugins/core3d/items/item.d.ts +84 -0
- package/app/plugins/core3d/items/metadata.d.ts +74 -0
- package/app/plugins/core3d/items/on-floor-item.d.ts +8 -0
- package/app/plugins/core3d/items/pin.d.ts +5 -0
- package/app/plugins/core3d/items/three-mesh.d.ts +8 -0
- package/app/plugins/core3d/items/wall-floor-item.d.ts +8 -0
- package/app/plugins/core3d/items/wall-objects.d.ts +512 -0
- package/app/plugins/core3d/items/wall-pin.d.ts +8 -0
- package/app/plugins/core3d/model/ar-parameters.d.ts +9 -0
- package/app/plugins/core3d/model/box-skin-default.d.ts +5 -0
- package/app/plugins/core3d/model/collision-info.d.ts +6 -0
- package/app/plugins/core3d/model/custom-floor-group-result.d.ts +18 -0
- package/app/plugins/core3d/model/cylinder-skin-default.d.ts +4 -0
- package/app/plugins/core3d/model/dragged-status.d.ts +18 -0
- package/app/plugins/core3d/model/face.d.ts +11 -0
- package/app/plugins/core3d/model/geometry.d.ts +11 -0
- package/app/plugins/core3d/model/scene-event.enum.d.ts +10 -0
- package/app/plugins/core3d/model/skin.d.ts +15 -0
- package/app/plugins/core3d/model/threed-model.d.ts +47 -0
- package/app/plugins/core3d/service/ar.service.d.ts +121 -0
- package/app/plugins/core3d/service/camera.service.d.ts +70 -0
- package/app/plugins/core3d/service/ceiling.service.d.ts +25 -0
- package/app/plugins/core3d/service/controls.d.ts +11 -0
- package/app/plugins/core3d/service/drag-and-drop.service.d.ts +73 -0
- package/app/plugins/core3d/service/error-glow.service.d.ts +18 -0
- package/app/plugins/core3d/service/floor.service.d.ts +43 -0
- package/app/plugins/core3d/service/font.service.d.ts +10 -0
- package/app/plugins/core3d/service/hud.service.d.ts +79 -0
- package/app/plugins/core3d/service/intersection.service.d.ts +10 -0
- package/app/plugins/core3d/service/item-group.service.d.ts +33 -0
- package/app/plugins/core3d/service/item.service.d.ts +37 -0
- package/app/plugins/core3d/service/light-presets.service.d.ts +46 -0
- package/app/plugins/core3d/service/lights.service.d.ts +38 -0
- package/app/plugins/core3d/service/message-board.service.d.ts +18 -0
- package/app/plugins/core3d/service/models.service.d.ts +37 -0
- package/app/plugins/core3d/service/outline.service.d.ts +40 -0
- package/app/plugins/core3d/service/rotation.service.d.ts +57 -0
- package/app/plugins/core3d/service/scene-event.service.d.ts +131 -0
- package/app/plugins/core3d/service/scene-options.service.d.ts +11 -0
- package/app/plugins/core3d/service/scene.service.d.ts +74 -0
- package/app/plugins/core3d/service/vr.service.d.ts +44 -0
- package/app/plugins/core3d/service/wall-measurements.service.d.ts +23 -0
- package/app/plugins/core3d/service/xr.service.d.ts +56 -0
- package/app/plugins/core3d/textures/DepthDataTexture.d.ts +5 -0
- package/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.d.ts +19 -0
- package/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.scss +7 -0
- package/app/plugins/furniture-manager/furniture-library/furniture-library.component.d.ts +27 -0
- package/app/plugins/furniture-manager/furniture-library/furniture-library.component.scss +20 -0
- package/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.d.ts +91 -0
- package/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.scss +57 -0
- package/app/plugins/furniture-manager/furniture-manager.module.d.ts +23 -0
- package/app/plugins/help/help/help.component.d.ts +21 -0
- package/app/plugins/help/help/help.component.scss +0 -0
- package/app/plugins/help/help-dialog/help-dialog.component.d.ts +20 -0
- package/app/plugins/help/help-dialog/help-dialog.component.scss +28 -0
- package/app/plugins/help/help.module.d.ts +12 -0
- package/app/plugins/lite-selector/lite-selector/component/animation/animation.component.d.ts +19 -0
- package/app/plugins/lite-selector/lite-selector/component/animation/animation.component.scss +0 -0
- package/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.d.ts +41 -0
- package/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.scss +25 -0
- package/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.d.ts +72 -0
- package/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.scss +146 -0
- package/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.d.ts +19 -0
- package/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.scss +37 -0
- package/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.d.ts +28 -0
- package/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.scss +127 -0
- package/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.d.ts +9 -0
- package/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.scss +47 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.d.ts +31 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.scss +11 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.d.ts +38 -0
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.scss +80 -0
- package/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.d.ts +8 -0
- package/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.scss +10 -0
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.d.ts +40 -0
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.scss +10 -0
- package/app/plugins/lite-selector/lite-selector/service/customizer.service.d.ts +44 -0
- package/app/plugins/lite-selector/lite-selector.module.d.ts +22 -0
- package/app/plugins/model-uploader/model-previewer/model-preview.component.d.ts +57 -0
- package/app/plugins/model-uploader/model-previewer/model-preview.component.scss +75 -0
- package/app/plugins/model-uploader/model-uploader/model-upload.component.scss +34 -0
- package/app/plugins/model-uploader/model-uploader/model-uploader.component.d.ts +23 -0
- package/app/plugins/model-uploader/model-uploader.module.d.ts +16 -0
- package/app/plugins/plugin-interface.d.ts +5 -0
- package/app/plugins/plugins.module.d.ts +15 -0
- package/app/plugins/presets/presets/presets.component.d.ts +22 -0
- package/app/plugins/presets/presets/presets.component.scss +0 -0
- package/app/plugins/presets/presets.module.d.ts +10 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.d.ts +19 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.scss +4 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.module.d.ts +10 -0
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.d.ts +70 -0
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.scss +128 -0
- package/app/plugins/product-catalog/product-catalog.module.d.ts +16 -0
- package/app/plugins/render/enum/connection-status.d.ts +6 -0
- package/app/plugins/render/enum/render-modes.d.ts +5 -0
- package/app/plugins/render/enum/render-status.d.ts +7 -0
- package/app/plugins/render/model/camera-position.d.ts +7 -0
- package/app/plugins/render/model/image-size.d.ts +6 -0
- package/app/plugins/render/model/lightning.d.ts +5 -0
- package/app/plugins/render/model/render-data.d.ts +15 -0
- package/app/plugins/render/model/render-environment.d.ts +6 -0
- package/app/plugins/render/model/render-parameters.d.ts +15 -0
- package/app/plugins/render/model/render-queue-item.d.ts +14 -0
- package/app/plugins/render/model/render-settings.d.ts +9 -0
- package/app/plugins/render/model/render.d.ts +14 -0
- package/app/plugins/render/render-controls/render-controls.component.d.ts +27 -0
- package/app/plugins/render/render-controls/render-controls.component.scss +51 -0
- package/app/plugins/render/render-dialog/render-dialog.component.d.ts +59 -0
- package/app/plugins/render/render-dialog/render-dialog.component.scss +320 -0
- package/app/plugins/render/render.module.d.ts +20 -0
- package/app/plugins/render/service/new-render.service.d.ts +65 -0
- package/app/plugins/render/service/render.service.d.ts +104 -0
- package/app/plugins/room-planner/components/appearance-section/appearance-section.component.d.ts +43 -0
- package/app/plugins/room-planner/components/appearance-section/appearance-section.component.scss +14 -0
- package/app/plugins/room-planner/components/color-picker/color-picker.component.d.ts +11 -0
- package/app/plugins/room-planner/components/color-picker/color-picker.component.scss +0 -0
- package/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.d.ts +49 -0
- package/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.scss +19 -0
- package/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.d.ts +49 -0
- package/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.scss +24 -0
- package/app/plugins/room-planner/components/dimension-input/dimension-input.component.d.ts +22 -0
- package/app/plugins/room-planner/components/dimension-input/dimension-input.component.scss +14 -0
- package/app/plugins/room-planner/components/edit-apply/edit-apply.component.d.ts +19 -0
- package/app/plugins/room-planner/components/edit-apply/edit-apply.component.scss +0 -0
- package/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.d.ts +28 -0
- package/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.scss +23 -0
- package/app/plugins/room-planner/components/file-drop/file-drop.component.d.ts +21 -0
- package/app/plugins/room-planner/components/file-drop/file-drop.component.scss +31 -0
- package/app/plugins/room-planner/components/floorplanner/const/defaults.d.ts +48 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner-mode.d.ts +9 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.d.ts +172 -0
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.scss +48 -0
- package/app/plugins/room-planner/components/floorplanner/service/floorplan.service.d.ts +103 -0
- package/app/plugins/room-planner/components/floorplanner/service/room.service.d.ts +75 -0
- package/app/plugins/room-planner/components/floorplanner/snap-indicator-mode.d.ts +5 -0
- package/app/plugins/room-planner/components/floorplanner/utils/context.utils.d.ts +5 -0
- package/app/plugins/room-planner/components/object-library/object-library.component.d.ts +23 -0
- package/app/plugins/room-planner/components/object-library/object-library.component.scss +43 -0
- package/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.d.ts +22 -0
- package/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.scss +55 -0
- package/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.d.ts +11 -0
- package/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.scss +10 -0
- package/app/plugins/room-planner/components/selected-floor/selected-floor.component.d.ts +16 -0
- package/app/plugins/room-planner/components/selected-floor/selected-floor.component.scss +16 -0
- package/app/plugins/room-planner/components/selected-object/selected-object.component.d.ts +44 -0
- package/app/plugins/room-planner/components/selected-object/selected-object.component.scss +21 -0
- package/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.d.ts +57 -0
- package/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.scss +35 -0
- package/app/plugins/room-planner/components/selected-wall/selected-wall.component.d.ts +45 -0
- package/app/plugins/room-planner/components/selected-wall/selected-wall.component.scss +31 -0
- package/app/plugins/room-planner/components/settings/settings-options.component.d.ts +18 -0
- package/app/plugins/room-planner/components/settings/settings-options.component.scss +46 -0
- package/app/plugins/room-planner/components/settings/settings.component.d.ts +63 -0
- package/app/plugins/room-planner/components/settings/settings.component.scss +42 -0
- package/app/plugins/room-planner/components/texture-editor/texture-editor.component.d.ts +125 -0
- package/app/plugins/room-planner/components/texture-editor/texture-editor.component.scss +38 -0
- package/app/plugins/room-planner/components/texture-picker/texture-picker.component.d.ts +25 -0
- package/app/plugins/room-planner/components/texture-picker/texture-picker.component.scss +49 -0
- package/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.d.ts +16 -0
- package/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.scss +5 -0
- package/app/plugins/room-planner/const/key.d.ts +10 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.d.ts +236 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.scss +167 -0
- package/app/plugins/room-planner/room-planner.module.d.ts +59 -0
- package/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.d.ts +18 -0
- package/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.scss +7 -0
- package/app/plugins/threed-in-photo/components/upload-image/upload-image.component.d.ts +18 -0
- package/app/plugins/threed-in-photo/components/upload-image/upload-image.component.scss +7 -0
- package/app/plugins/threed-in-photo/components/view-control/view-control.component.d.ts +30 -0
- package/app/plugins/threed-in-photo/components/view-control/view-control.component.scss +40 -0
- package/app/plugins/threed-in-photo/models/model-output.d.ts +14 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-build.service.d.ts +37 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-connection.service.d.ts +8 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-control.service.d.ts +14 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-event-listeners.service.d.ts +15 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-event.service.d.ts +9 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-initializer.service.d.ts +27 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-render.service.d.ts +20 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-scene.service.d.ts +12 -0
- package/app/plugins/threed-in-photo/services/threed-in-photo-view.service.d.ts +8 -0
- package/app/plugins/threed-in-photo/threed-in-photo.module.d.ts +17 -0
- package/app/plugins/threed-in-photo/utils/utils.d.ts +6 -0
- package/app/plugins/threedselector/element-buttons/element-buttons.component.d.ts +31 -0
- package/app/plugins/threedselector/element-buttons/element-buttons.component.scss +61 -0
- package/app/plugins/threedselector/element-slider/element-slider.component.d.ts +14 -0
- package/app/plugins/threedselector/element-slider/element-slider.component.scss +47 -0
- package/app/plugins/threedselector/element-toolbar/element-toolbar.component.d.ts +26 -0
- package/app/plugins/threedselector/element-toolbar/element-toolbar.component.scss +142 -0
- package/app/plugins/threedselector/threedselector/model/furniture-connected-part-integration.d.ts +7 -0
- package/app/plugins/threedselector/threedselector/model/furniture-integration.d.ts +12 -0
- package/app/plugins/threedselector/threedselector/model/furniture-part-integration.d.ts +14 -0
- package/app/plugins/threedselector/threedselector/model/furniture-part-variation.d.ts +7 -0
- package/app/plugins/threedselector/threedselector/model/material.d.ts +41 -0
- package/app/plugins/threedselector/threedselector/model/variation-settings.d.ts +53 -0
- package/app/plugins/threedselector/threedselector/model/variation.d.ts +11 -0
- package/app/plugins/threedselector/threedselector/service/animation.service.d.ts +22 -0
- package/app/plugins/threedselector/threedselector/service/build-furniture.service.d.ts +186 -0
- package/app/plugins/threedselector/threedselector/service/dimensions.service.d.ts +33 -0
- package/app/plugins/threedselector/threedselector/service/element.service.d.ts +45 -0
- package/app/plugins/threedselector/threedselector/service/light-creation.service.d.ts +9 -0
- package/app/plugins/threedselector/threedselector/service/load-furniture.service.d.ts +74 -0
- package/app/plugins/threedselector/threedselector/service/resize.service.d.ts +13 -0
- package/app/plugins/threedselector/threedselector/service/third-party-model.service.d.ts +66 -0
- package/app/plugins/threedselector/threedselector/service/threedselector.service.d.ts +22 -0
- package/app/plugins/threedselector/threedselector/service/variation-cache.service.d.ts +23 -0
- package/app/plugins/threedselector/threedselector/service/variation.service.d.ts +23 -0
- package/app/plugins/threedselector/threedselector/threedselector.component.d.ts +188 -0
- package/app/plugins/threedselector/threedselector/threedselector.component.scss +82 -0
- package/app/plugins/threedselector/threedselector/utils/asset.utils.d.ts +19 -0
- package/app/plugins/threedselector/threedselector/utils/image.utils.d.ts +6 -0
- package/app/plugins/threedselector/threedselector/utils/json-parser.utils.d.ts +9 -0
- package/app/plugins/threedselector/threedselector/utils/scene-3d.utils.d.ts +10 -0
- package/app/plugins/threedselector/threedselector.module.d.ts +31 -0
- package/app/plugins/toolbar/download-dialog/download-dialog.component.d.ts +14 -0
- package/app/plugins/toolbar/download-dialog/download-dialog.component.scss +22 -0
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.d.ts +66 -0
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.scss +97 -0
- package/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.d.ts +8 -0
- package/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.scss +0 -0
- package/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.d.ts +36 -0
- package/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.scss +71 -0
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.d.ts +36 -0
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.scss +3 -0
- package/app/plugins/toolbar/open-dialog/open-dialog.component.d.ts +23 -0
- package/app/plugins/toolbar/open-dialog/open-dialog.component.scss +0 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.d.ts +34 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.scss +17 -0
- package/app/plugins/toolbar/save-dialog/save-dialog.component.d.ts +38 -0
- package/app/plugins/toolbar/save-dialog/save-dialog.component.scss +33 -0
- package/app/plugins/toolbar/saved-dialog/saved-dialog.component.d.ts +24 -0
- package/app/plugins/toolbar/saved-dialog/saved-dialog.component.scss +7 -0
- package/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.d.ts +9 -0
- package/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.scss +10 -0
- package/app/plugins/toolbar/toolbar/toolbar.component.d.ts +101 -0
- package/app/plugins/toolbar/toolbar/toolbar.component.scss +251 -0
- package/app/plugins/toolbar/toolbar.module.d.ts +44 -0
- package/app/root/root.component.scss +0 -0
- package/app/service/dynamic-script.service.d.ts +8 -0
- package/app/service/google-tag-manager.service.d.ts +19 -0
- package/app/service/local-storage.service.d.ts +18 -0
- package/app/service/service-locator.service.d.ts +4 -0
- package/app/shared/base64-images.d.ts +4 -0
- package/app/shared/button-elevation/button-elevation.component.d.ts +40 -0
- package/app/shared/button-elevation/button-elevation.component.scss +109 -0
- package/app/shared/button-elevation/button-elevation.module.d.ts +16 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.d.ts +24 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.scss +30 -0
- package/app/shared/camera-settings-dialog/camera-settings-dialog.module.d.ts +16 -0
- package/app/shared/category-library/category-library.component.d.ts +10 -0
- package/app/shared/category-library/category-library.component.scss +16 -0
- package/app/shared/category-library/category-library.module.d.ts +11 -0
- package/app/shared/context-menu/context-menu.component.d.ts +12 -0
- package/app/shared/context-menu/context-menu.component.scss +25 -0
- package/app/shared/context-menu/context-menu.module.d.ts +14 -0
- package/app/shared/context-menu/item-context-menu/item-context-menu.component.d.ts +30 -0
- package/app/shared/context-menu/item-context-menu/item-context-menu.component.scss +32 -0
- package/app/shared/dialog/dialog.component.d.ts +26 -0
- package/app/shared/dialog/dialog.component.scss +25 -0
- package/app/shared/dialog/dialog.module.d.ts +12 -0
- package/app/shared/dialog/enum/dialog-type.enum.d.ts +6 -0
- package/app/shared/dialog/interface/dialog-config.interface.d.ts +7 -0
- package/app/shared/dialog/service/dialog.service.d.ts +11 -0
- package/app/shared/error-dialog/error-dialog.component.d.ts +11 -0
- package/app/shared/error-dialog/error-dialog.component.scss +0 -0
- package/app/shared/error-dialog/error-dialog.module.d.ts +10 -0
- package/app/shared/export-dialog/export-dialog.component.d.ts +11 -0
- package/app/shared/export-dialog/export-dialog.component.scss +19 -0
- package/app/shared/export-dialog/export-dialog.module.d.ts +11 -0
- package/app/shared/info-dialog/info-dialog.component.d.ts +9 -0
- package/app/shared/info-dialog/info-dialog.component.scss +15 -0
- package/app/shared/info-dialog/info-dialog.module.d.ts +12 -0
- package/app/shared/loader/hd-loader.component.d.ts +6 -0
- package/app/shared/loader/hd-loader.component.scss +44 -0
- package/app/shared/loader/hd-loader.module.d.ts +9 -0
- package/app/shared/loader/loader.component.scss +42 -0
- package/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.d.ts +8 -0
- package/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.scss +3 -0
- package/app/shared/loading-overlay/loading-overlay.component.d.ts +19 -0
- package/app/shared/loading-overlay/loading-overlay.component.scss +9 -0
- package/app/shared/loading-overlay/loading-overlay.module.d.ts +11 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.d.ts +35 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.scss +221 -0
- package/app/shared/model-dialog/model-dialog.component.d.ts +31 -0
- package/app/shared/model-dialog/model-dialog.component.scss +22 -0
- package/app/shared/model-dialog/model-dialog.module.d.ts +16 -0
- package/app/shared/progress-bar/progress-bar.component.d.ts +9 -0
- package/app/shared/progress-bar/progress-bar.component.scss +11 -0
- package/app/shared/progress-bar/progress-bar.module.d.ts +9 -0
- package/app/shared/register-dialog/register-dialog.component.d.ts +26 -0
- package/app/shared/register-dialog/register-dialog.component.scss +21 -0
- package/app/shared/screen-size-analysis/device-size-type.d.ts +5 -0
- package/app/shared/screen-size-analysis/navigator-type.enum.d.ts +4 -0
- package/app/shared/screen-size-analysis/screen-size-analysis.service.d.ts +27 -0
- package/app/shared/screen-size-analysis/screen-size-config.d.ts +5 -0
- package/app/shared/screen-size-analysis/screen-size-info.d.ts +10 -0
- package/app/shared/slider-input/slider-input.component.d.ts +13 -0
- package/app/shared/slider-input/slider-input.component.scss +12 -0
- package/app/shared/slider-input/slider-input.module.d.ts +13 -0
- package/app/shared/toolbar-icon/toolbar-icon.component.d.ts +12 -0
- package/app/shared/toolbar-icon/toolbar-icon.component.scss +8 -0
- package/app/shared/toolbar-icon/toolbar-icon.module.d.ts +11 -0
- package/app/shared/zoom-controls/zoom-controls.component.d.ts +16 -0
- package/app/shared/zoom-controls/zoom-controls.component.scss +0 -0
- package/app/shared/zoom-controls/zoom-controls.module.d.ts +10 -0
- package/assets/.gitkeep +0 -0
- package/assets/3d-models/pin.mtl +12 -0
- package/assets/3d-models/pin.obj +1083 -0
- package/assets/colors/ral.json +2345 -0
- package/assets/cursors/pencil.png +0 -0
- package/assets/cursors/pencil.svg +1 -0
- package/assets/fonts/helvetiker_regular.ttf +0 -0
- package/assets/fonts/helvetiker_regular.typeface.json +1 -0
- package/assets/fonts/helvetiker_regular.woff +0 -0
- package/assets/fonts/optimer_regular.typeface.json +1 -0
- package/assets/hdri/TSStudio3Point.hdr +135 -0
- package/assets/hdri/ground_MASK.jpg +0 -0
- package/assets/hdri/std_env_v2_A.hdr +0 -0
- package/assets/hdri/std_env_v2_B.hdr +0 -0
- package/assets/hdri/std_env_v2_C.hdr +0 -0
- package/assets/hdri/std_env_v2_D.hdr +0 -0
- package/assets/hdri/std_env_v2_E.hdr +46 -0
- package/assets/icons/add-button.svg +10 -0
- package/assets/icons/ar_circle.svg +7 -0
- package/assets/icons/arrow_point_down.svg +6 -0
- package/assets/icons/brush.svg +1 -0
- package/assets/icons/cart-shopping-regular.svg +1 -0
- package/assets/icons/check.svg +6 -0
- package/assets/icons/cit_powered_white.svg +92 -0
- package/assets/icons/conf_frame.svg +1 -0
- package/assets/icons/conf_plane.svg +1 -0
- package/assets/icons/cross.svg +1 -0
- package/assets/icons/cube-outline.svg +1 -0
- package/assets/icons/cube-unfolded.svg +1 -0
- package/assets/icons/delete-button.svg +16 -0
- package/assets/icons/download.svg +4 -0
- package/assets/icons/edit-button.svg +18 -0
- package/assets/icons/google-cardboard-orange.svg +1 -0
- package/assets/icons/google-cardboard.svg +1 -0
- package/assets/icons/hand-pointer.svg +1 -0
- package/assets/icons/height_adjust.svg +1 -0
- package/assets/icons/magic-wand.svg +57 -0
- package/assets/icons/magnifier.svg +12 -0
- package/assets/icons/measurements.svg +1 -0
- package/assets/icons/move-phone-ar.svg +4 -0
- package/assets/icons/qrcode.svg +1 -0
- package/assets/icons/street-view-orange.svg +5 -0
- package/assets/icons/street-view.svg +6 -0
- package/assets/icons/swap-button.svg +12 -0
- package/assets/icons/tilt-phone.svg +29 -0
- package/assets/icons/triangle_down.svg +1 -0
- package/assets/icons/triangle_up.svg +1 -0
- package/assets/images/colijn-logo.webp +0 -0
- package/assets/images/favicon.ico +0 -0
- package/assets/images/favicon.png +0 -0
- package/assets/images/ione360-logo.webp +0 -0
- package/assets/images/logo.svg +35 -0
- package/assets/workers/indexedDB-web-worker.js +74 -0
- package/bundle-styles.scss +267 -0
- package/bundles/colijnit-homedecorator.umd.js +47374 -0
- package/bundles/colijnit-homedecorator.umd.js.map +1 -0
- package/colijnit-homedecorator.d.ts +5 -0
- package/environments/environment.d.ts +11 -0
- package/esm2015/app/app.version.js +9 -0
- package/esm2015/app/core/components/debug/debug.component.js +57 -0
- package/esm2015/app/core/components/error/error-message.component.js +55 -0
- package/esm2015/app/core/components/tooltip/tooltip.component.js +73 -0
- package/esm2015/app/core/const/dimensioning.js +28 -0
- package/esm2015/app/core/core.module.js +159 -0
- package/esm2015/app/core/directive/autofocus.directive.js +26 -0
- package/esm2015/app/core/directive/tooltip.directive.js +64 -0
- package/esm2015/app/core/directive/visibility-observer-master.directive.js +53 -0
- package/esm2015/app/core/directive/visibility-observer.directive.js +54 -0
- package/esm2015/app/core/enum/configuration-key.enum.js +37 -0
- package/esm2015/app/core/enum/export-type.enum.js +7 -0
- package/esm2015/app/core/enum/google-tag-manager-event.enum.js +14 -0
- package/esm2015/app/core/enum/icon-name.enum.js +17 -0
- package/esm2015/app/core/enum/icon.enum.js +35 -0
- package/esm2015/app/core/enum/light.enum.js +9 -0
- package/esm2015/app/core/enum/message-type.enum.js +71 -0
- package/esm2015/app/core/enum/model-type.enum.js +8 -0
- package/esm2015/app/core/enum/output-encoding.enum.js +6 -0
- package/esm2015/app/core/enum/shadow-map-type.enum.js +8 -0
- package/esm2015/app/core/enum/user-role-type.enum.js +22 -0
- package/esm2015/app/core/enum/view-mode.enum.js +11 -0
- package/esm2015/app/core/enum/xr-mode.enum.js +6 -0
- package/esm2015/app/core/interface/adjustable-element.interface.js +2 -0
- package/esm2015/app/core/interface/category.interface.js +2 -0
- package/esm2015/app/core/interface/changes.interface.js +2 -0
- package/esm2015/app/core/interface/child-params.interface.js +2 -0
- package/esm2015/app/core/interface/configuration-data.interface.js +2 -0
- package/esm2015/app/core/interface/external-settings.interface.js +2 -0
- package/esm2015/app/core/interface/info-dialog-data.interface.js +2 -0
- package/esm2015/app/core/interface/light-preset.interface.js +2 -0
- package/esm2015/app/core/interface/loading-overlay-data.interface.js +2 -0
- package/esm2015/app/core/interface/media-resource.interface.js +2 -0
- package/esm2015/app/core/interface/message-with-payload.interface.js +2 -0
- package/esm2015/app/core/interface/message-without-payload.interface.js +2 -0
- package/esm2015/app/core/interface/preset.interface.js +2 -0
- package/esm2015/app/core/interface/selected-floor-event.interface.js +2 -0
- package/esm2015/app/core/interface/selected-wall-event.interface.js +2 -0
- package/esm2015/app/core/interface/texture.interface.js +2 -0
- package/esm2015/app/core/interface/toolbar-icon.interface.js +2 -0
- package/esm2015/app/core/model/ar-position-indicator.js +21 -0
- package/esm2015/app/core/model/camera-settings.js +14 -0
- package/esm2015/app/core/model/category.js +15 -0
- package/esm2015/app/core/model/custom-button.js +16 -0
- package/esm2015/app/core/model/error-message.js +9 -0
- package/esm2015/app/core/model/export-object.js +3 -0
- package/esm2015/app/core/model/from-intersection-observer.js +64 -0
- package/esm2015/app/core/model/homedecorator-settings-options.js +49 -0
- package/esm2015/app/core/model/homedecorator-settings.js +22 -0
- package/esm2015/app/core/model/icon.js +34 -0
- package/esm2015/app/core/model/light-preset.js +59 -0
- package/esm2015/app/core/model/light-properties.js +45 -0
- package/esm2015/app/core/model/media-resource.js +10 -0
- package/esm2015/app/core/model/preset.js +15 -0
- package/esm2015/app/core/model/ral-color.js +2 -0
- package/esm2015/app/core/model/shadow-properties.js +10 -0
- package/esm2015/app/core/model/texture-type.js +8 -0
- package/esm2015/app/core/model/texture.js +58 -0
- package/esm2015/app/core/model/three-object.js +2 -0
- package/esm2015/app/core/model/toast-type.js +7 -0
- package/esm2015/app/core/model/toast.js +7 -0
- package/esm2015/app/core/model/xr-reticle.js +87 -0
- package/esm2015/app/core/pipe/append.pipe.js +21 -0
- package/esm2015/app/core/pipe/cm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/filter.pipe.js +20 -0
- package/esm2015/app/core/pipe/keys.pipe.js +22 -0
- package/esm2015/app/core/pipe/localize.pipe.js +28 -0
- package/esm2015/app/core/pipe/m-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/prepend.pipe.js +21 -0
- package/esm2015/app/core/pipe/scm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/sm-to-measure.pipe.js +20 -0
- package/esm2015/app/core/pipe/strip-html.pipe.js +17 -0
- package/esm2015/app/core/service/3dm-api.js +246 -0
- package/esm2015/app/core/service/app-state.service.js +128 -0
- package/esm2015/app/core/service/configuration.service.js +72 -0
- package/esm2015/app/core/service/debug.service.js +45 -0
- package/esm2015/app/core/service/dimensioning.service.js +45 -0
- package/esm2015/app/core/service/dynamic-camera.service.js +107 -0
- package/esm2015/app/core/service/environment.service.js +17 -0
- package/esm2015/app/core/service/error.service.js +30 -0
- package/esm2015/app/core/service/export.service.js +97 -0
- package/esm2015/app/core/service/file.service.js +44 -0
- package/esm2015/app/core/service/homedecorator-app-event.service.js +27 -0
- package/esm2015/app/core/service/homedecorator-app.service.js +201 -0
- package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +455 -0
- package/esm2015/app/core/service/homedecorator-connector.service.js +604 -0
- package/esm2015/app/core/service/homedecorator-dictionary.service.js +73 -0
- package/esm2015/app/core/service/homedecorator-icon-cache.service.js +43 -0
- package/esm2015/app/core/service/homedecorator-settings.service.js +146 -0
- package/esm2015/app/core/service/homedecorator.service.js +37 -0
- package/esm2015/app/core/service/integration.service.js +56 -0
- package/esm2015/app/core/service/item-serialization.service.js +188 -0
- package/esm2015/app/core/service/json-utils.service.js +56 -0
- package/esm2015/app/core/service/message-bus.service.js +28 -0
- package/esm2015/app/core/service/permanent-store.service.js +135 -0
- package/esm2015/app/core/service/presets.service.js +297 -0
- package/esm2015/app/core/service/progress.service.js +74 -0
- package/esm2015/app/core/service/ral.service.js +98 -0
- package/esm2015/app/core/service/skip-button-info.service.js +60 -0
- package/esm2015/app/core/service/toast.service.js +23 -0
- package/esm2015/app/core/service/utils.service.js +566 -0
- package/esm2015/app/core/service/view-mode.service.js +61 -0
- package/esm2015/app/core/service/web-worker.service.js +44 -0
- package/esm2015/app/core/utils/clone-utils.js +41 -0
- package/esm2015/app/core/utils/color.utils.js +20 -0
- package/esm2015/app/core/utils/file.utils.js +234 -0
- package/esm2015/app/core/utils/function/is-empty.function.js +5 -0
- package/esm2015/app/core/utils/function/is-nill.function.js +5 -0
- package/esm2015/app/core/utils/material.utils.js +407 -0
- package/esm2015/app/core/utils/object.utils.js +191 -0
- package/esm2015/app/core/utils/relative-position.utils.js +74 -0
- package/esm2015/app/core/utils/variation-utils.js +314 -0
- package/esm2015/app/core/workers/enum/web-worker-message.enum.js +6 -0
- package/esm2015/app/core/workers/enum/web-worker-type.enum.js +5 -0
- package/esm2015/app/development/components/selected-child-material-texture.component.js +467 -0
- package/esm2015/app/development/components/selected-child-material.component.js +863 -0
- package/esm2015/app/development/components/selected-child.component.js +64 -0
- package/esm2015/app/development/components/selected-object-base.js +127 -0
- package/esm2015/app/development/components/selected-object.component.js +98 -0
- package/esm2015/app/development/development.module.js +74 -0
- package/esm2015/app/development/directive/development.directive.js +92 -0
- package/esm2015/app/development/service/development.service.js +212 -0
- package/esm2015/app/homedecorator.component.js +285 -0
- package/esm2015/app/homedecorator.module.js +60 -0
- package/esm2015/app/plugins/core3d/collision-manager/collision-manager.service.js +119 -0
- package/esm2015/app/plugins/core3d/collision-manager/floorplan-collision-detection.js +158 -0
- package/esm2015/app/plugins/core3d/collision-manager/snapping-collision.service.js +234 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-buttons/ar-gui-buttons.component.js +36 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-configurator/ar-gui-configurator.component.js +49 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-context-menu/ar-gui-context-menu.component.js +77 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-elements/ar-gui-notifications/ar-gui-notifications.component.js +26 -0
- package/esm2015/app/plugins/core3d/components/ar-gui/ar-gui-root/ar-gui-root.component.js +46 -0
- package/esm2015/app/plugins/core3d/components/lightplan/edit-light/edit-light.component.js +197 -0
- package/esm2015/app/plugins/core3d/components/lightplan/edit-lightplan/edit-lightplan.component.js +197 -0
- package/esm2015/app/plugins/core3d/components/lightplan/lightplan.component.js +512 -0
- package/esm2015/app/plugins/core3d/components/scene-options/scene-options.component.js +88 -0
- package/esm2015/app/plugins/core3d/core/angles.js +19 -0
- package/esm2015/app/plugins/core3d/core/corner-utils.js +9 -0
- package/esm2015/app/plugins/core3d/core/dimensioning.js +79 -0
- package/esm2015/app/plugins/core3d/core/utils.js +606 -0
- package/esm2015/app/plugins/core3d/core3d/components/scenecontrol/scene-control.component.js +289 -0
- package/esm2015/app/plugins/core3d/core3d/core3d.component.js +243 -0
- package/esm2015/app/plugins/core3d/core3d.module.js +201 -0
- package/esm2015/app/plugins/core3d/directive/scene.directive.js +41 -0
- package/esm2015/app/plugins/core3d/enum/ar-feature.enum.js +14 -0
- package/esm2015/app/plugins/core3d/enum/direction.enum.js +10 -0
- package/esm2015/app/plugins/core3d/enum/result-type.enum.js +21 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/bounding-box-measurement.js +99 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/box-measurement.js +35 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/door-or-window-box-measurement.js +95 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/measurable.js +2 -0
- package/esm2015/app/plugins/core3d/hud/bounding-measurement-box/measurement-utils.js +22 -0
- package/esm2015/app/plugins/core3d/hud/custom-shape-name-label.js +31 -0
- package/esm2015/app/plugins/core3d/hud/floor-indicator.js +80 -0
- package/esm2015/app/plugins/core3d/hud/furniture-measurements.js +44 -0
- package/esm2015/app/plugins/core3d/hud/indicator-factory.js +49 -0
- package/esm2015/app/plugins/core3d/hud/measurements.js +165 -0
- package/esm2015/app/plugins/core3d/hud/on-wall-measurements.js +80 -0
- package/esm2015/app/plugins/core3d/hud/opening-symbol.js +74 -0
- package/esm2015/app/plugins/core3d/hud/rotation-helper.js +263 -0
- package/esm2015/app/plugins/core3d/hud/utils.js +30 -0
- package/esm2015/app/plugins/core3d/interface/dragged-data.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/edge-visibility-changes.js +2 -0
- package/esm2015/app/plugins/core3d/interface/model.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/opening.interface.js +2 -0
- package/esm2015/app/plugins/core3d/interface/scene-option-button.interface.js +6 -0
- package/esm2015/app/plugins/core3d/interface/scene-update.interface.js +2 -0
- package/esm2015/app/plugins/core3d/items/base-item.js +233 -0
- package/esm2015/app/plugins/core3d/items/custom-cylinder-floor-item.js +41 -0
- package/esm2015/app/plugins/core3d/items/custom-cylinder-wall-item.js +45 -0
- package/esm2015/app/plugins/core3d/items/custom-floor-item.js +11 -0
- package/esm2015/app/plugins/core3d/items/custom-objects.js +295 -0
- package/esm2015/app/plugins/core3d/items/custom-shape-floor-item.js +45 -0
- package/esm2015/app/plugins/core3d/items/custom-shape-wall-item.js +37 -0
- package/esm2015/app/plugins/core3d/items/custom-wall-floor-item.js +84 -0
- package/esm2015/app/plugins/core3d/items/custom-wall-item.js +11 -0
- package/esm2015/app/plugins/core3d/items/factory.js +130 -0
- package/esm2015/app/plugins/core3d/items/floor-item.js +29 -0
- package/esm2015/app/plugins/core3d/items/floor-pin.js +31 -0
- package/esm2015/app/plugins/core3d/items/floor-plane-item.js +95 -0
- package/esm2015/app/plugins/core3d/items/furniture.js +2 -0
- package/esm2015/app/plugins/core3d/items/in-wall-floor-item.js +14 -0
- package/esm2015/app/plugins/core3d/items/item-group.js +160 -0
- package/esm2015/app/plugins/core3d/items/item-type.js +23 -0
- package/esm2015/app/plugins/core3d/items/item.js +388 -0
- package/esm2015/app/plugins/core3d/items/metadata.js +2 -0
- package/esm2015/app/plugins/core3d/items/on-floor-item.js +10 -0
- package/esm2015/app/plugins/core3d/items/pin.js +2 -0
- package/esm2015/app/plugins/core3d/items/three-mesh.js +17 -0
- package/esm2015/app/plugins/core3d/items/wall-floor-item.js +9 -0
- package/esm2015/app/plugins/core3d/items/wall-objects.js +2381 -0
- package/esm2015/app/plugins/core3d/items/wall-pin.js +25 -0
- package/esm2015/app/plugins/core3d/model/ar-parameters.js +12 -0
- package/esm2015/app/plugins/core3d/model/box-skin-default.js +17 -0
- package/esm2015/app/plugins/core3d/model/collision-info.js +2 -0
- package/esm2015/app/plugins/core3d/model/custom-floor-group-result.js +13 -0
- package/esm2015/app/plugins/core3d/model/cylinder-skin-default.js +14 -0
- package/esm2015/app/plugins/core3d/model/dragged-status.js +51 -0
- package/esm2015/app/plugins/core3d/model/face.js +18 -0
- package/esm2015/app/plugins/core3d/model/geometry.js +52 -0
- package/esm2015/app/plugins/core3d/model/scene-event.enum.js +12 -0
- package/esm2015/app/plugins/core3d/model/skin.js +2 -0
- package/esm2015/app/plugins/core3d/model/threed-model.js +49 -0
- package/esm2015/app/plugins/core3d/service/ar.service.js +844 -0
- package/esm2015/app/plugins/core3d/service/camera.service.js +340 -0
- package/esm2015/app/plugins/core3d/service/ceiling.service.js +104 -0
- package/esm2015/app/plugins/core3d/service/controls.js +763 -0
- package/esm2015/app/plugins/core3d/service/drag-and-drop.service.js +369 -0
- package/esm2015/app/plugins/core3d/service/error-glow.service.js +131 -0
- package/esm2015/app/plugins/core3d/service/floor.service.js +229 -0
- package/esm2015/app/plugins/core3d/service/font.service.js +27 -0
- package/esm2015/app/plugins/core3d/service/hud.service.js +404 -0
- package/esm2015/app/plugins/core3d/service/intersection.service.js +55 -0
- package/esm2015/app/plugins/core3d/service/item-group.service.js +117 -0
- package/esm2015/app/plugins/core3d/service/item.service.js +205 -0
- package/esm2015/app/plugins/core3d/service/light-presets.service.js +296 -0
- package/esm2015/app/plugins/core3d/service/lights.service.js +190 -0
- package/esm2015/app/plugins/core3d/service/message-board.service.js +60 -0
- package/esm2015/app/plugins/core3d/service/models.service.js +146 -0
- package/esm2015/app/plugins/core3d/service/outline.service.js +150 -0
- package/esm2015/app/plugins/core3d/service/rotation.service.js +183 -0
- package/esm2015/app/plugins/core3d/service/scene-event.service.js +1000 -0
- package/esm2015/app/plugins/core3d/service/scene-options.service.js +24 -0
- package/esm2015/app/plugins/core3d/service/scene.service.js +351 -0
- package/esm2015/app/plugins/core3d/service/vr.service.js +198 -0
- package/esm2015/app/plugins/core3d/service/wall-measurements.service.js +79 -0
- package/esm2015/app/plugins/core3d/service/xr.service.js +397 -0
- package/esm2015/app/plugins/core3d/textures/DepthDataTexture.js +17 -0
- package/esm2015/app/plugins/core3d/walkthrough-camera-controls/walkthrough-camera-controls.component.js +54 -0
- package/esm2015/app/plugins/furniture-manager/furniture-library/furniture-library.component.js +92 -0
- package/esm2015/app/plugins/furniture-manager/furniture-manager/furniture-manager.component.js +458 -0
- package/esm2015/app/plugins/furniture-manager/furniture-manager.module.js +100 -0
- package/esm2015/app/plugins/help/help/help.component.js +71 -0
- package/esm2015/app/plugins/help/help-dialog/help-dialog.component.js +83 -0
- package/esm2015/app/plugins/help/help.module.js +35 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/animation/animation.component.js +36 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/answer-card/answer-card.component.js +187 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/answers-slideout/answers-slideout.component.js +417 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/color-filter/color-filter.component.js +44 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/customizer/customizer.component.js +82 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/image-zoom/image-zoom.component.js +27 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.js +148 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.js +167 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/component/tag-filter/tag-filter.component.js +25 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/lite-selector.component.js +150 -0
- package/esm2015/app/plugins/lite-selector/lite-selector/service/customizer.service.js +222 -0
- package/esm2015/app/plugins/lite-selector/lite-selector.module.js +108 -0
- package/esm2015/app/plugins/model-uploader/model-previewer/model-preview.component.js +470 -0
- package/esm2015/app/plugins/model-uploader/model-uploader/model-uploader.component.js +132 -0
- package/esm2015/app/plugins/model-uploader/model-uploader.module.js +60 -0
- package/esm2015/app/plugins/plugin-interface.js +2 -0
- package/esm2015/app/plugins/plugins.module.js +80 -0
- package/esm2015/app/plugins/presets/presets/presets.component.js +72 -0
- package/esm2015/app/plugins/presets/presets.module.js +33 -0
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.js +57 -0
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.module.js +34 -0
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +428 -0
- package/esm2015/app/plugins/product-catalog/product-catalog.module.js +61 -0
- package/esm2015/app/plugins/render/enum/connection-status.js +8 -0
- package/esm2015/app/plugins/render/enum/render-modes.js +7 -0
- package/esm2015/app/plugins/render/enum/render-status.js +9 -0
- package/esm2015/app/plugins/render/model/camera-position.js +6 -0
- package/esm2015/app/plugins/render/model/image-size.js +3 -0
- package/esm2015/app/plugins/render/model/lightning.js +3 -0
- package/esm2015/app/plugins/render/model/render-data.js +6 -0
- package/esm2015/app/plugins/render/model/render-environment.js +3 -0
- package/esm2015/app/plugins/render/model/render-parameters.js +15 -0
- package/esm2015/app/plugins/render/model/render-queue-item.js +11 -0
- package/esm2015/app/plugins/render/model/render-settings.js +12 -0
- package/esm2015/app/plugins/render/model/render.js +10 -0
- package/esm2015/app/plugins/render/render-controls/render-controls.component.js +89 -0
- package/esm2015/app/plugins/render/render-dialog/render-dialog.component.js +318 -0
- package/esm2015/app/plugins/render/render.module.js +85 -0
- package/esm2015/app/plugins/render/service/new-render.service.js +302 -0
- package/esm2015/app/plugins/render/service/render.service.js +650 -0
- package/esm2015/app/plugins/room-planner/components/appearance-section/appearance-section.component.js +190 -0
- package/esm2015/app/plugins/room-planner/components/color-picker/color-picker.component.js +32 -0
- package/esm2015/app/plugins/room-planner/components/custom-cylinder-creator/custom-cylinder-creator.component.js +219 -0
- package/esm2015/app/plugins/room-planner/components/custome-shape-creator/custom-shape-creator.component.js +257 -0
- package/esm2015/app/plugins/room-planner/components/dimension-input/dimension-input.component.js +66 -0
- package/esm2015/app/plugins/room-planner/components/edit-apply/edit-apply.component.js +57 -0
- package/esm2015/app/plugins/room-planner/components/edit-parameter/edit-parameter.component.js +79 -0
- package/esm2015/app/plugins/room-planner/components/file-drop/file-drop.component.js +107 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/const/defaults.js +57 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner-mode.js +11 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner.component.js +1303 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/floorplan.service.js +536 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/room.service.js +330 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/snap-indicator-mode.js +7 -0
- package/esm2015/app/plugins/room-planner/components/floorplanner/utils/context.utils.js +53 -0
- package/esm2015/app/plugins/room-planner/components/object-library/object-library.component.js +63 -0
- package/esm2015/app/plugins/room-planner/components/ral-color-picker/ral-color-picker.component.js +128 -0
- package/esm2015/app/plugins/room-planner/components/rgb-color-picker/rgb-color-picker.component.js +37 -0
- package/esm2015/app/plugins/room-planner/components/selected-floor/selected-floor.component.js +36 -0
- package/esm2015/app/plugins/room-planner/components/selected-object/selected-object.component.js +203 -0
- package/esm2015/app/plugins/room-planner/components/selected-threed-object/selected-threed-object.component.js +139 -0
- package/esm2015/app/plugins/room-planner/components/selected-wall/selected-wall.component.js +102 -0
- package/esm2015/app/plugins/room-planner/components/settings/settings-options.component.js +152 -0
- package/esm2015/app/plugins/room-planner/components/settings/settings.component.js +188 -0
- package/esm2015/app/plugins/room-planner/components/texture-editor/texture-editor.component.js +617 -0
- package/esm2015/app/plugins/room-planner/components/texture-picker/texture-picker.component.js +74 -0
- package/esm2015/app/plugins/room-planner/components/wall-length-input/wall-length-input.component.js +48 -0
- package/esm2015/app/plugins/room-planner/const/key.js +12 -0
- package/esm2015/app/plugins/room-planner/room-planner/room-planner.component.js +1681 -0
- package/esm2015/app/plugins/room-planner/room-planner.module.js +233 -0
- package/esm2015/app/plugins/threed-in-photo/components/threed-in-photo-scene/threed-in-photo-scene.component.js +43 -0
- package/esm2015/app/plugins/threed-in-photo/components/upload-image/upload-image.component.js +61 -0
- package/esm2015/app/plugins/threed-in-photo/components/view-control/view-control.component.js +164 -0
- package/esm2015/app/plugins/threed-in-photo/models/model-output.js +18 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-build.service.js +243 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-connection.service.js +50 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-control.service.js +33 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-event-listeners.service.js +36 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-event.service.js +19 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-initializer.service.js +53 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-render.service.js +61 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-scene.service.js +37 -0
- package/esm2015/app/plugins/threed-in-photo/services/threed-in-photo-view.service.js +21 -0
- package/esm2015/app/plugins/threed-in-photo/threed-in-photo.module.js +67 -0
- package/esm2015/app/plugins/threed-in-photo/utils/utils.js +21 -0
- package/esm2015/app/plugins/threedselector/element-buttons/element-buttons.component.js +95 -0
- package/esm2015/app/plugins/threedselector/element-slider/element-slider.component.js +28 -0
- package/esm2015/app/plugins/threedselector/element-toolbar/element-toolbar.component.js +80 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-connected-part-integration.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-integration.js +13 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-part-integration.js +6 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/furniture-part-variation.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/material.js +11 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/variation-settings.js +11 -0
- package/esm2015/app/plugins/threedselector/threedselector/model/variation.js +3 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/animation.service.js +65 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/build-furniture.service.js +1343 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/dimensions.service.js +183 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/element.service.js +373 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/light-creation.service.js +35 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/load-furniture.service.js +291 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/resize.service.js +70 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/third-party-model.service.js +156 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/threedselector.service.js +101 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/variation-cache.service.js +133 -0
- package/esm2015/app/plugins/threedselector/threedselector/service/variation.service.js +436 -0
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +1116 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/asset.utils.js +128 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/image.utils.js +33 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/json-parser.utils.js +188 -0
- package/esm2015/app/plugins/threedselector/threedselector/utils/scene-3d.utils.js +159 -0
- package/esm2015/app/plugins/threedselector/threedselector.module.js +129 -0
- package/esm2015/app/plugins/toolbar/download-dialog/download-dialog.component.js +33 -0
- package/esm2015/app/plugins/toolbar/draw-dialog/draw-dialog.component.js +279 -0
- package/esm2015/app/plugins/toolbar/edit-preset-dialog/edit-preset-dialog.component.js +22 -0
- package/esm2015/app/plugins/toolbar/landing-screen-modal/landing-screen-modal.component.js +123 -0
- package/esm2015/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.js +140 -0
- package/esm2015/app/plugins/toolbar/open-dialog/open-dialog.component.js +83 -0
- package/esm2015/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.js +92 -0
- package/esm2015/app/plugins/toolbar/save-dialog/save-dialog.component.js +146 -0
- package/esm2015/app/plugins/toolbar/saved-dialog/saved-dialog.component.js +66 -0
- package/esm2015/app/plugins/toolbar/toolbar/limited-mode-message-component/limited-mode-message.component.js +26 -0
- package/esm2015/app/plugins/toolbar/toolbar/toolbar.component.js +676 -0
- package/esm2015/app/plugins/toolbar/toolbar.module.js +177 -0
- package/esm2015/app/service/dynamic-script.service.js +56 -0
- package/esm2015/app/service/google-tag-manager.service.js +89 -0
- package/esm2015/app/service/local-storage.service.js +93 -0
- package/esm2015/app/service/service-locator.service.js +4 -0
- package/esm2015/app/shared/base64-images.js +6 -0
- package/esm2015/app/shared/button-elevation/button-elevation.component.js +279 -0
- package/esm2015/app/shared/button-elevation/button-elevation.module.js +60 -0
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.component.js +197 -0
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.module.js +58 -0
- package/esm2015/app/shared/category-library/category-library.component.js +27 -0
- package/esm2015/app/shared/category-library/category-library.module.js +39 -0
- package/esm2015/app/shared/context-menu/context-menu.component.js +35 -0
- package/esm2015/app/shared/context-menu/context-menu.module.js +49 -0
- package/esm2015/app/shared/context-menu/item-context-menu/item-context-menu.component.js +93 -0
- package/esm2015/app/shared/dialog/dialog.component.js +119 -0
- package/esm2015/app/shared/dialog/dialog.module.js +45 -0
- package/esm2015/app/shared/dialog/enum/dialog-type.enum.js +8 -0
- package/esm2015/app/shared/dialog/interface/dialog-config.interface.js +2 -0
- package/esm2015/app/shared/dialog/service/dialog.service.js +21 -0
- package/esm2015/app/shared/error-dialog/error-dialog.component.js +24 -0
- package/esm2015/app/shared/error-dialog/error-dialog.module.js +30 -0
- package/esm2015/app/shared/export-dialog/export-dialog.component.js +68 -0
- package/esm2015/app/shared/export-dialog/export-dialog.module.js +35 -0
- package/esm2015/app/shared/info-dialog/info-dialog.component.js +54 -0
- package/esm2015/app/shared/info-dialog/info-dialog.module.js +37 -0
- package/esm2015/app/shared/loader/hd-loader.component.js +24 -0
- package/esm2015/app/shared/loader/hd-loader.module.js +33 -0
- package/esm2015/app/shared/loading-overlay/dialog/loading-overlay-dialog.component.js +26 -0
- package/esm2015/app/shared/loading-overlay/loading-overlay.component.js +55 -0
- package/esm2015/app/shared/loading-overlay/loading-overlay.module.js +42 -0
- package/esm2015/app/shared/model-dialog/model-dialog-furniture-list.component.js +325 -0
- package/esm2015/app/shared/model-dialog/model-dialog.component.js +104 -0
- package/esm2015/app/shared/model-dialog/model-dialog.module.js +64 -0
- package/esm2015/app/shared/progress-bar/progress-bar.component.js +39 -0
- package/esm2015/app/shared/progress-bar/progress-bar.module.js +33 -0
- package/esm2015/app/shared/register-dialog/register-dialog.component.js +112 -0
- package/esm2015/app/shared/screen-size-analysis/device-size-type.js +7 -0
- package/esm2015/app/shared/screen-size-analysis/navigator-type.enum.js +6 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-analysis.service.js +93 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-config.js +7 -0
- package/esm2015/app/shared/screen-size-analysis/screen-size-info.js +2 -0
- package/esm2015/app/shared/slider-input/slider-input.component.js +35 -0
- package/esm2015/app/shared/slider-input/slider-input.module.js +46 -0
- package/esm2015/app/shared/toolbar-icon/toolbar-icon.component.js +95 -0
- package/esm2015/app/shared/toolbar-icon/toolbar-icon.module.js +38 -0
- package/esm2015/app/shared/zoom-controls/zoom-controls.component.js +47 -0
- package/esm2015/app/shared/zoom-controls/zoom-controls.module.js +34 -0
- package/esm2015/colijnit-homedecorator.js +5 -0
- package/esm2015/environments/environment.js +17 -0
- package/esm2015/public_api.js +4 -0
- package/fesm2015/colijnit-homedecorator.js +45086 -0
- package/fesm2015/colijnit-homedecorator.js.map +1 -0
- package/homedecorator-globals.scss +361 -0
- package/package.json +48 -0
- package/palette.scss +32 -0
- package/public_api.d.ts +3 -0
- package/styles.scss +377 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { Euler, MathUtils } from 'three';
|
|
3
|
+
import { IconEnum } from '../../../../core/enum/icon.enum';
|
|
4
|
+
import { ConfigurationKey } from '../../../../core/enum/configuration-key.enum';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../../../../core/service/message-bus.service";
|
|
7
|
+
import * as i2 from "../../../core3d/service/item.service";
|
|
8
|
+
import * as i3 from "../../../core3d/service/scene.service";
|
|
9
|
+
import * as i4 from "../../../core3d/service/hud.service";
|
|
10
|
+
import * as i5 from "../../../core3d/service/rotation.service";
|
|
11
|
+
import * as i6 from "../../../../core/service/configuration.service";
|
|
12
|
+
import * as i7 from "../../../../core/service/homedecorator-icon-cache.service";
|
|
13
|
+
import * as i8 from "@angular/material/slider";
|
|
14
|
+
import * as i9 from "@angular/material/button";
|
|
15
|
+
import * as i10 from "@angular/material/icon";
|
|
16
|
+
import * as i11 from "@angular/material/divider";
|
|
17
|
+
import * as i12 from "@angular/common";
|
|
18
|
+
import * as i13 from "@angular/forms";
|
|
19
|
+
import * as i14 from "@angular/material/input";
|
|
20
|
+
import * as i15 from "@angular/material/tooltip";
|
|
21
|
+
import * as i16 from "../../../../core/pipe/localize.pipe";
|
|
22
|
+
const placeholderRegExp = new RegExp('assets/models/js/placeholder');
|
|
23
|
+
export class SelectedThreedObjectComponent {
|
|
24
|
+
constructor(_messageService, _sceneItemService, _sceneService, _hudService, _rotationService, _configService, iconService) {
|
|
25
|
+
this._messageService = _messageService;
|
|
26
|
+
this._sceneItemService = _sceneItemService;
|
|
27
|
+
this._sceneService = _sceneService;
|
|
28
|
+
this._hudService = _hudService;
|
|
29
|
+
this._rotationService = _rotationService;
|
|
30
|
+
this._configService = _configService;
|
|
31
|
+
this.iconService = iconService;
|
|
32
|
+
this.icon = IconEnum;
|
|
33
|
+
this.onSelectedObjectChange = new EventEmitter();
|
|
34
|
+
this.step = 1;
|
|
35
|
+
this._subs = [];
|
|
36
|
+
}
|
|
37
|
+
ngOnDestroy() {
|
|
38
|
+
this._subs.forEach(s => s.unsubscribe());
|
|
39
|
+
}
|
|
40
|
+
ngOnInit() {
|
|
41
|
+
this._subs.push(this._rotationService.objectRotated.subscribe(() => {
|
|
42
|
+
if (this.object) {
|
|
43
|
+
this.rotationY = this._fixRotation();
|
|
44
|
+
}
|
|
45
|
+
}));
|
|
46
|
+
if (this.object) {
|
|
47
|
+
this.rotationX = Math.round(MathUtils.radToDeg(this.object.rotation.x));
|
|
48
|
+
this.rotationY = this._fixRotation();
|
|
49
|
+
this.rotationZ = Math.round(MathUtils.radToDeg(this.object.rotation.z));
|
|
50
|
+
this._orgRotationX = this.rotationX;
|
|
51
|
+
this._orgRotationY = this.rotationY;
|
|
52
|
+
this._orgRotationZ = this.rotationZ;
|
|
53
|
+
}
|
|
54
|
+
this.step = this._configService.getValue(ConfigurationKey.RotationSnappingEnabled) ? 15 : 1;
|
|
55
|
+
}
|
|
56
|
+
handleUpdateRotationX(sliderChange) {
|
|
57
|
+
this._updateRotationX(sliderChange.value);
|
|
58
|
+
}
|
|
59
|
+
handleUpdateRotationXValue(value) {
|
|
60
|
+
this._updateRotationX(value);
|
|
61
|
+
}
|
|
62
|
+
handleUpdateRotationY(sliderChange) {
|
|
63
|
+
this._updateRotationY(sliderChange.value);
|
|
64
|
+
}
|
|
65
|
+
handleUpdateRotationYValue(value) {
|
|
66
|
+
this._updateRotationY(value);
|
|
67
|
+
}
|
|
68
|
+
handleUpdateRotationZ(sliderChange) {
|
|
69
|
+
this._updateRotationZ(sliderChange.value);
|
|
70
|
+
}
|
|
71
|
+
handleUpdateRotationZValue(value) {
|
|
72
|
+
this._updateRotationZ(value);
|
|
73
|
+
}
|
|
74
|
+
resetRotationX() {
|
|
75
|
+
this._updateRotationX(this._orgRotationX);
|
|
76
|
+
}
|
|
77
|
+
resetRotationY() {
|
|
78
|
+
this._updateRotationY(this._orgRotationY);
|
|
79
|
+
}
|
|
80
|
+
resetRotationZ() {
|
|
81
|
+
this._updateRotationZ(this._orgRotationZ);
|
|
82
|
+
}
|
|
83
|
+
copyObject() {
|
|
84
|
+
this._sceneItemService.copyItem.next(this.object);
|
|
85
|
+
}
|
|
86
|
+
removeObject() {
|
|
87
|
+
this._sceneItemService.deleteItem.next(this.object);
|
|
88
|
+
}
|
|
89
|
+
toggleLockObject() {
|
|
90
|
+
this.object.locked = !this.object.locked;
|
|
91
|
+
}
|
|
92
|
+
_updateRotationX(value) {
|
|
93
|
+
this.rotationX = value;
|
|
94
|
+
this.object.rotation.x = MathUtils.degToRad(value);
|
|
95
|
+
this._updateObject();
|
|
96
|
+
}
|
|
97
|
+
_updateRotationY(value) {
|
|
98
|
+
this.rotationY = value;
|
|
99
|
+
this.object.rotation.y = MathUtils.degToRad(value);
|
|
100
|
+
this._updateObject();
|
|
101
|
+
}
|
|
102
|
+
_updateRotationZ(value) {
|
|
103
|
+
this.rotationZ = value;
|
|
104
|
+
this.object.rotation.z = MathUtils.degToRad(value);
|
|
105
|
+
this._updateObject();
|
|
106
|
+
}
|
|
107
|
+
_updateObject() {
|
|
108
|
+
this.onSelectedObjectChange.next(this.object);
|
|
109
|
+
this._sceneService.needsRender = true;
|
|
110
|
+
}
|
|
111
|
+
// rotation should be of the form -180 - 180 degrees
|
|
112
|
+
_fixRotation() {
|
|
113
|
+
const euler = new Euler();
|
|
114
|
+
const rotation = euler.setFromQuaternion(this.object.quaternion, 'YXZ');
|
|
115
|
+
const degrees = Math.round(MathUtils.radToDeg(rotation.y));
|
|
116
|
+
return degrees;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
SelectedThreedObjectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SelectedThreedObjectComponent, deps: [{ token: i1.MessageBusService }, { token: i2.ItemService }, { token: i3.SceneService }, { token: i4.HudService }, { token: i5.RotationService }, { token: i6.ConfigurationService }, { token: i7.HomedecoratorIconCacheService }], target: i0.ɵɵFactoryTarget.Component });
|
|
120
|
+
SelectedThreedObjectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SelectedThreedObjectComponent, selector: "rp-selected-threed-object", inputs: { object: "object", showCopy: "showCopy", showDelete: "showDelete", showLock: "showLock" }, outputs: { onSelectedObjectChange: "onSelectedObjectChange" }, ngImport: i0, template: "<section *ngIf=\"object\">\r\n <h3 class=\"mat-subheading-2\">{{object.name | localize}}</h3>\r\n <p class=\"mat-body\" *ngIf=\"object.description\">{{object.description | localize}}</p>\r\n\r\n <div>\r\n <h3 class=\"mat-subheading-2\">{{'ROTATION' | localize}}</h3>\r\n <div class=\"rotation-wrapper\" *ngIf=\"object.canRotateX\">\r\n <span [textContent]=\"'x'\"></span>\r\n <mat-slider class=\"value\" thumbLabel min=\"-180\" max=\"180\"\r\n [step]=\"step\"\r\n [ngModel]=\"rotationX\"\r\n [disabled]=\"object.locked\"\r\n (input)=\"handleUpdateRotationX($event)\"></mat-slider>\r\n <input matInput type=\"number\" min=\"-180\" max=\"180\"\r\n [step]=\"step\"\r\n [ngModel]=\"rotationX\"\r\n [disabled]=\"object.locked\"\r\n (ngModelChange)=\"handleUpdateRotationXValue($event)\">\r\n <button mat-mini-fab primary (click)=\"resetRotationX()\" matTooltip=\"{{'RESET' | localize}}\" [disabled]=\"object.locked\">\r\n <mat-icon class=\"homedecorator-material-icons\">cached</mat-icon>\r\n </button>\r\n </div>\r\n <div class=\"rotation-wrapper\" *ngIf=\"object.canRotateY\">\r\n <span [textContent]=\"'y'\"></span>\r\n <mat-slider class=\"value\" thumbLabel min=\"-180\" max=\"180\"\r\n [step]=\"step\"\r\n [ngModel]=\"rotationY\"\r\n [disabled]=\"object.locked\"\r\n (input)=\"handleUpdateRotationY($event)\"></mat-slider>\r\n <input matInput type=\"number\" min=\"-180\" max=\"180\"\r\n [step]=\"step\"\r\n [ngModel]=\"rotationY\"\r\n [disabled]=\"object.locked\"\r\n (ngModelChange)=\"handleUpdateRotationYValue($event)\">\r\n <button mat-mini-fab primary (click)=\"resetRotationY()\" matTooltip=\"{{'RESET' | localize}}\" [disabled]=\"object.locked\">\r\n <mat-icon class=\"homedecorator-material-icons\">cached</mat-icon>\r\n </button>\r\n </div>\r\n <div class=\"rotation-wrapper\" *ngIf=\"object.canRotateZ\">\r\n <span [textContent]=\"'z'\"></span>\r\n <mat-slider class=\"value\" thumbLabel min=\"-180\" max=\"180\"\r\n [step]=\"step\"\r\n [ngModel]=\"rotationZ\"\r\n [disabled]=\"object.locked\"\r\n (input)=\"handleUpdateRotationZ($event)\"></mat-slider>\r\n <input matInput type=\"number\" min=\"-180\" max=\"180\"\r\n [step]=\"step\"\r\n [ngModel]=\"rotationZ\"\r\n [disabled]=\"object.locked\"\r\n (ngModelChange)=\"handleUpdateRotationZValue($event)\">\r\n <button mat-mini-fab primary (click)=\"resetRotationZ()\" matTooltip=\"{{'RESET' | localize}}\" [disabled]=\"object.locked\">\r\n <mat-icon class=\"homedecorator-material-icons\">cached</mat-icon>\r\n </button>\r\n </div>\r\n <mat-divider></mat-divider>\r\n <div class=\"button-wrapper\">\r\n <button *ngIf=\"showCopy\" mat-mini-fab primary (click)=\"copyObject()\" matTooltip=\"{{'COPY' | localize}}\">\r\n <mat-icon class=\"homedecorator-material-icons\">file_copy</mat-icon>\r\n </button>\r\n <button *ngIf=\"showDelete\" mat-mini-fab (click)=\"removeObject()\" matTooltip=\"{{'REMOVE' | localize}}\">\r\n <mat-icon class=\"homedecorator-material-icons\">delete</mat-icon>\r\n </button>\r\n <button *ngIf=\"showLock\" mat-mini-fab (click)=\"toggleLockObject()\" matTooltip=\"{{(object.locked ? 'UNLOCK' : 'LOCK') | localize}}\">\r\n <mat-icon class=\"homedecorator-material-icons\" [textContent]=\"object.locked ? 'lock' : 'lock_open'\"></mat-icon>\r\n </button>\r\n </div>\r\n <mat-divider></mat-divider>\r\n </div>\r\n</section>\r\n", styles: [":host{overflow:hidden}:host section{overflow-y:auto;height:100%}:host .rotation-wrapper{display:flex;align-items:center}:host .rotation-wrapper mat-slider{width:72%}:host .rotation-wrapper input{width:15%}:host .rotation-wrapper button{display:flex;align-items:center;justify-content:center;width:30px;height:30px;background-color:#fff;color:#000}:host .button-wrapper{padding:0 100px;display:flex;justify-content:space-between}:host .button-wrapper button{background-color:#fff;color:#000}\n"], components: [{ type: i8.MatSlider, selector: "mat-slider", inputs: ["disabled", "color", "tabIndex", "invert", "max", "min", "step", "thumbLabel", "tickInterval", "value", "vertical", "displayWith", "valueText"], outputs: ["change", "input", "valueChange"], exportAs: ["matSlider"] }, { type: i9.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i10.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i11.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }], directives: [{ type: i12.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i13.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i13.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i14.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["id", "disabled", "required", "type", "value", "readonly", "placeholder", "errorStateMatcher", "aria-describedby"], exportAs: ["matInput"] }, { type: i13.MinValidator, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: ["min"] }, { type: i13.MaxValidator, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: ["max"] }, { type: i13.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { type: i13.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i15.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }], pipes: { "localize": i16.LocalizePipe } });
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SelectedThreedObjectComponent, decorators: [{
|
|
122
|
+
type: Component,
|
|
123
|
+
args: [{
|
|
124
|
+
selector: 'rp-selected-threed-object',
|
|
125
|
+
templateUrl: './selected-threed-object.component.html',
|
|
126
|
+
styleUrls: ['./selected-threed-object.component.scss']
|
|
127
|
+
}]
|
|
128
|
+
}], ctorParameters: function () { return [{ type: i1.MessageBusService }, { type: i2.ItemService }, { type: i3.SceneService }, { type: i4.HudService }, { type: i5.RotationService }, { type: i6.ConfigurationService }, { type: i7.HomedecoratorIconCacheService }]; }, propDecorators: { object: [{
|
|
129
|
+
type: Input
|
|
130
|
+
}], showCopy: [{
|
|
131
|
+
type: Input
|
|
132
|
+
}], showDelete: [{
|
|
133
|
+
type: Input
|
|
134
|
+
}], showLock: [{
|
|
135
|
+
type: Input
|
|
136
|
+
}], onSelectedObjectChange: [{
|
|
137
|
+
type: Output
|
|
138
|
+
}] } });
|
|
139
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0ZWQtdGhyZWVkLW9iamVjdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvY2xpZW50L2FwcC9wbHVnaW5zL3Jvb20tcGxhbm5lci9jb21wb25lbnRzL3NlbGVjdGVkLXRocmVlZC1vYmplY3Qvc2VsZWN0ZWQtdGhyZWVkLW9iamVjdC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvY2xpZW50L2FwcC9wbHVnaW5zL3Jvb20tcGxhbm5lci9jb21wb25lbnRzL3NlbGVjdGVkLXRocmVlZC1vYmplY3Qvc2VsZWN0ZWQtdGhyZWVkLW9iamVjdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQXFCLE1BQU0sRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUV4RixPQUFPLEVBQUMsS0FBSyxFQUFFLFNBQVMsRUFBQyxNQUFNLE9BQU8sQ0FBQztBQUl2QyxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0saUNBQWlDLENBQUM7QUFRekQsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUU5RSxNQUFNLGlCQUFpQixHQUFHLElBQUksTUFBTSxDQUFDLDhCQUE4QixDQUFDLENBQUM7QUFPckUsTUFBTSxPQUFPLDZCQUE2QjtJQTZCeEMsWUFDVSxlQUFrQyxFQUNsQyxpQkFBOEIsRUFDOUIsYUFBMkIsRUFDM0IsV0FBdUIsRUFDdkIsZ0JBQWlDLEVBQ2pDLGNBQW9DLEVBQ3JDLFdBQTBDO1FBTnpDLG9CQUFlLEdBQWYsZUFBZSxDQUFtQjtRQUNsQyxzQkFBaUIsR0FBakIsaUJBQWlCLENBQWE7UUFDOUIsa0JBQWEsR0FBYixhQUFhLENBQWM7UUFDM0IsZ0JBQVcsR0FBWCxXQUFXLENBQVk7UUFDdkIscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFpQjtRQUNqQyxtQkFBYyxHQUFkLGNBQWMsQ0FBc0I7UUFDckMsZ0JBQVcsR0FBWCxXQUFXLENBQStCO1FBbkNuQyxTQUFJLEdBQW9CLFFBQVEsQ0FBQztRQWUxQywyQkFBc0IsR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQU10RSxTQUFJLEdBQVcsQ0FBQyxDQUFDO1FBS2hCLFVBQUssR0FBbUIsRUFBRSxDQUFDO0lBVWhDLENBQUM7SUFFSixXQUFXO1FBQ1QsSUFBSSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsV0FBVyxFQUFFLENBQUMsQ0FBQztJQUMzQyxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUNiLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRTtZQUNqRCxJQUFJLElBQUksQ0FBQyxNQUFNLEVBQUU7Z0JBQ2YsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7YUFDdEM7UUFDSCxDQUFDLENBQUMsQ0FDSCxDQUFDO1FBQ0YsSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFO1lBQ2YsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUN4RSxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUNyQyxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3hFLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQztZQUNwQyxJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUM7WUFDcEMsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDO1NBQ3JDO1FBQ0QsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsY0FBYyxDQUFDLFFBQVEsQ0FBQyxnQkFBZ0IsQ0FBQyx1QkFBdUIsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUM5RixDQUFDO0lBRU0scUJBQXFCLENBQUMsWUFBNkI7UUFDeEQsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM1QyxDQUFDO0lBRU0sMEJBQTBCLENBQUMsS0FBYTtRQUM3QyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUVNLHFCQUFxQixDQUFDLFlBQTZCO1FBQ3hELElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVNLDBCQUEwQixDQUFDLEtBQWE7UUFDN0MsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQy9CLENBQUM7SUFFTSxxQkFBcUIsQ0FBQyxZQUE2QjtRQUN4RCxJQUFJLENBQUMsZ0JBQWdCLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFFTSwwQkFBMEIsQ0FBQyxLQUFhO1FBQzdDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMvQixDQUFDO0lBRU0sY0FBYztRQUNuQixJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFFTSxjQUFjO1FBQ25CLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVNLGNBQWM7UUFDbkIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQztJQUM1QyxDQUFDO0lBRU0sVUFBVTtRQUNmLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUNwRCxDQUFDO0lBRU0sWUFBWTtRQUNqQixJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDdEQsQ0FBQztJQUVNLGdCQUFnQjtRQUNyQixJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDO0lBQzNDLENBQUM7SUFFTyxnQkFBZ0IsQ0FBQyxLQUFhO1FBQ3BDLElBQUksQ0FBQyxTQUFTLEdBQUcsS0FBSyxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUMsR0FBRyxTQUFTLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ25ELElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN2QixDQUFDO0lBRU8sZ0JBQWdCLENBQUMsS0FBYTtRQUNwQyxJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQztRQUN2QixJQUFJLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEdBQUcsU0FBUyxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNuRCxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDdkIsQ0FBQztJQUVPLGdCQUFnQixDQUFDLEtBQWE7UUFDcEMsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLENBQUM7UUFDdkIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDbkQsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQ3ZCLENBQUM7SUFFTyxhQUFhO1FBQ25CLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQzlDLElBQUksQ0FBQyxhQUFhLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztJQUN4QyxDQUFDO0lBRUQsb0RBQW9EO0lBQzVDLFlBQVk7UUFDbEIsTUFBTSxLQUFLLEdBQVUsSUFBSSxLQUFLLEVBQUUsQ0FBQztRQUNqQyxNQUFNLFFBQVEsR0FBVSxLQUFLLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDL0UsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzNELE9BQU8sT0FBTyxDQUFDO0lBQ2pCLENBQUM7OzJIQTNJVSw2QkFBNkI7K0dBQTdCLDZCQUE2QixvT0N2QjFDLGt3SEFxRUE7NEZEOUNhLDZCQUE2QjtrQkFMekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxXQUFXLEVBQUUseUNBQXlDO29CQUN0RCxTQUFTLEVBQUUsQ0FBQyx5Q0FBeUMsQ0FBQztpQkFDdkQ7bVNBS1EsTUFBTTtzQkFEWixLQUFLO2dCQUlDLFFBQVE7c0JBRGQsS0FBSztnQkFJQyxVQUFVO3NCQURoQixLQUFLO2dCQUlDLFFBQVE7c0JBRGQsS0FBSztnQkFJQyxzQkFBc0I7c0JBRDVCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25EZXN0cm95LCBPbkluaXQsIE91dHB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQge0V1bGVyLCBNYXRoVXRpbHN9IGZyb20gJ3RocmVlJztcclxuaW1wb3J0IHtNYXRTbGlkZXJDaGFuZ2V9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NsaWRlcic7XHJcbmltcG9ydCB7U3Vic2NyaXB0aW9ufSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHtNZXNzYWdlQnVzU2VydmljZX0gZnJvbSAnLi4vLi4vLi4vLi4vY29yZS9zZXJ2aWNlL21lc3NhZ2UtYnVzLnNlcnZpY2UnO1xyXG5pbXBvcnQge0ljb25FbnVtfSBmcm9tICcuLi8uLi8uLi8uLi9jb3JlL2VudW0vaWNvbi5lbnVtJztcclxuaW1wb3J0IHtJdGVtfSBmcm9tICcuLi8uLi8uLi9jb3JlM2QvaXRlbXMvaXRlbSc7XHJcbmltcG9ydCB7SXRlbVNlcnZpY2V9IGZyb20gJy4uLy4uLy4uL2NvcmUzZC9zZXJ2aWNlL2l0ZW0uc2VydmljZSc7XHJcbmltcG9ydCB7U2NlbmVTZXJ2aWNlfSBmcm9tICcuLi8uLi8uLi9jb3JlM2Qvc2VydmljZS9zY2VuZS5zZXJ2aWNlJztcclxuaW1wb3J0IHtIdWRTZXJ2aWNlfSBmcm9tICcuLi8uLi8uLi9jb3JlM2Qvc2VydmljZS9odWQuc2VydmljZSc7XHJcbmltcG9ydCB7Um90YXRpb25TZXJ2aWNlfSBmcm9tICcuLi8uLi8uLi9jb3JlM2Qvc2VydmljZS9yb3RhdGlvbi5zZXJ2aWNlJztcclxuaW1wb3J0IHtDb25maWd1cmF0aW9uU2VydmljZX0gZnJvbSAnLi4vLi4vLi4vLi4vY29yZS9zZXJ2aWNlL2NvbmZpZ3VyYXRpb24uc2VydmljZSc7XHJcbmltcG9ydCB7SG9tZWRlY29yYXRvckljb25DYWNoZVNlcnZpY2V9IGZyb20gJy4uLy4uLy4uLy4uL2NvcmUvc2VydmljZS9ob21lZGVjb3JhdG9yLWljb24tY2FjaGUuc2VydmljZSc7XHJcbmltcG9ydCB7Q29uZmlndXJhdGlvbktleX0gZnJvbSAnLi4vLi4vLi4vLi4vY29yZS9lbnVtL2NvbmZpZ3VyYXRpb24ta2V5LmVudW0nO1xyXG5cclxuY29uc3QgcGxhY2Vob2xkZXJSZWdFeHAgPSBuZXcgUmVnRXhwKCdhc3NldHMvbW9kZWxzL2pzL3BsYWNlaG9sZGVyJyk7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3JwLXNlbGVjdGVkLXRocmVlZC1vYmplY3QnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWxlY3RlZC10aHJlZWQtb2JqZWN0LmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9zZWxlY3RlZC10aHJlZWQtb2JqZWN0LmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFNlbGVjdGVkVGhyZWVkT2JqZWN0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xyXG4gIHB1YmxpYyByZWFkb25seSBpY29uOiB0eXBlb2YgSWNvbkVudW0gPSBJY29uRW51bTtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgb2JqZWN0OiBJdGVtO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBzaG93Q29weTogYm9vbGVhbjtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgc2hvd0RlbGV0ZTogYm9vbGVhbjtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgc2hvd0xvY2s6IGJvb2xlYW47XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyBvblNlbGVjdGVkT2JqZWN0Q2hhbmdlOiBFdmVudEVtaXR0ZXI8SXRlbT4gPSBuZXcgRXZlbnRFbWl0dGVyPEl0ZW0+KCk7XHJcblxyXG4gIHB1YmxpYyByb3RhdGlvblg6IG51bWJlcjtcclxuICBwdWJsaWMgcm90YXRpb25ZOiBudW1iZXI7XHJcbiAgcHVibGljIHJvdGF0aW9uWjogbnVtYmVyO1xyXG5cclxuICBwdWJsaWMgc3RlcDogbnVtYmVyID0gMTtcclxuXHJcbiAgcHJpdmF0ZSBfb3JnUm90YXRpb25YOiBudW1iZXI7XHJcbiAgcHJpdmF0ZSBfb3JnUm90YXRpb25ZOiBudW1iZXI7XHJcbiAgcHJpdmF0ZSBfb3JnUm90YXRpb25aOiBudW1iZXI7XHJcbiAgcHJpdmF0ZSBfc3ViczogU3Vic2NyaXB0aW9uW10gPSBbXTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwcml2YXRlIF9tZXNzYWdlU2VydmljZTogTWVzc2FnZUJ1c1NlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9zY2VuZUl0ZW1TZXJ2aWNlOiBJdGVtU2VydmljZSxcclxuICAgIHByaXZhdGUgX3NjZW5lU2VydmljZTogU2NlbmVTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfaHVkU2VydmljZTogSHVkU2VydmljZSxcclxuICAgIHByaXZhdGUgX3JvdGF0aW9uU2VydmljZTogUm90YXRpb25TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfY29uZmlnU2VydmljZTogQ29uZmlndXJhdGlvblNlcnZpY2UsXHJcbiAgICBwdWJsaWMgaWNvblNlcnZpY2U6IEhvbWVkZWNvcmF0b3JJY29uQ2FjaGVTZXJ2aWNlXHJcbiAgKSB7fVxyXG5cclxuICBuZ09uRGVzdHJveSgpIHtcclxuICAgIHRoaXMuX3N1YnMuZm9yRWFjaChzID0+IHMudW5zdWJzY3JpYmUoKSk7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpIHtcclxuICAgIHRoaXMuX3N1YnMucHVzaChcclxuICAgICAgdGhpcy5fcm90YXRpb25TZXJ2aWNlLm9iamVjdFJvdGF0ZWQuc3Vic2NyaWJlKCgpID0+IHtcclxuICAgICAgICBpZiAodGhpcy5vYmplY3QpIHtcclxuICAgICAgICAgIHRoaXMucm90YXRpb25ZID0gdGhpcy5fZml4Um90YXRpb24oKTtcclxuICAgICAgICB9XHJcbiAgICAgIH0pXHJcbiAgICApO1xyXG4gICAgaWYgKHRoaXMub2JqZWN0KSB7XHJcbiAgICAgIHRoaXMucm90YXRpb25YID0gTWF0aC5yb3VuZChNYXRoVXRpbHMucmFkVG9EZWcodGhpcy5vYmplY3Qucm90YXRpb24ueCkpO1xyXG4gICAgICB0aGlzLnJvdGF0aW9uWSA9IHRoaXMuX2ZpeFJvdGF0aW9uKCk7XHJcbiAgICAgIHRoaXMucm90YXRpb25aID0gTWF0aC5yb3VuZChNYXRoVXRpbHMucmFkVG9EZWcodGhpcy5vYmplY3Qucm90YXRpb24ueikpO1xyXG4gICAgICB0aGlzLl9vcmdSb3RhdGlvblggPSB0aGlzLnJvdGF0aW9uWDtcclxuICAgICAgdGhpcy5fb3JnUm90YXRpb25ZID0gdGhpcy5yb3RhdGlvblk7XHJcbiAgICAgIHRoaXMuX29yZ1JvdGF0aW9uWiA9IHRoaXMucm90YXRpb25aO1xyXG4gICAgfVxyXG4gICAgdGhpcy5zdGVwID0gdGhpcy5fY29uZmlnU2VydmljZS5nZXRWYWx1ZShDb25maWd1cmF0aW9uS2V5LlJvdGF0aW9uU25hcHBpbmdFbmFibGVkKSA/IDE1IDogMTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVVcGRhdGVSb3RhdGlvblgoc2xpZGVyQ2hhbmdlOiBNYXRTbGlkZXJDaGFuZ2UpOiB2b2lkIHtcclxuICAgIHRoaXMuX3VwZGF0ZVJvdGF0aW9uWChzbGlkZXJDaGFuZ2UudmFsdWUpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZVVwZGF0ZVJvdGF0aW9uWFZhbHVlKHZhbHVlOiBudW1iZXIpOiB2b2lkIHtcclxuICAgIHRoaXMuX3VwZGF0ZVJvdGF0aW9uWCh2YWx1ZSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFuZGxlVXBkYXRlUm90YXRpb25ZKHNsaWRlckNoYW5nZTogTWF0U2xpZGVyQ2hhbmdlKTogdm9pZCB7XHJcbiAgICB0aGlzLl91cGRhdGVSb3RhdGlvblkoc2xpZGVyQ2hhbmdlLnZhbHVlKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVVcGRhdGVSb3RhdGlvbllWYWx1ZSh2YWx1ZTogbnVtYmVyKTogdm9pZCB7XHJcbiAgICB0aGlzLl91cGRhdGVSb3RhdGlvblkodmFsdWUpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZVVwZGF0ZVJvdGF0aW9uWihzbGlkZXJDaGFuZ2U6IE1hdFNsaWRlckNoYW5nZSk6IHZvaWQge1xyXG4gICAgdGhpcy5fdXBkYXRlUm90YXRpb25aKHNsaWRlckNoYW5nZS52YWx1ZSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFuZGxlVXBkYXRlUm90YXRpb25aVmFsdWUodmFsdWU6IG51bWJlcik6IHZvaWQge1xyXG4gICAgdGhpcy5fdXBkYXRlUm90YXRpb25aKHZhbHVlKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyByZXNldFJvdGF0aW9uWCgpOiB2b2lkIHtcclxuICAgIHRoaXMuX3VwZGF0ZVJvdGF0aW9uWCh0aGlzLl9vcmdSb3RhdGlvblgpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHJlc2V0Um90YXRpb25ZKCk6IHZvaWQge1xyXG4gICAgdGhpcy5fdXBkYXRlUm90YXRpb25ZKHRoaXMuX29yZ1JvdGF0aW9uWSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgcmVzZXRSb3RhdGlvblooKTogdm9pZCB7XHJcbiAgICB0aGlzLl91cGRhdGVSb3RhdGlvbloodGhpcy5fb3JnUm90YXRpb25aKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBjb3B5T2JqZWN0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5fc2NlbmVJdGVtU2VydmljZS5jb3B5SXRlbS5uZXh0KHRoaXMub2JqZWN0KTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyByZW1vdmVPYmplY3QoKTogdm9pZCB7XHJcbiAgICB0aGlzLl9zY2VuZUl0ZW1TZXJ2aWNlLmRlbGV0ZUl0ZW0ubmV4dCh0aGlzLm9iamVjdCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgdG9nZ2xlTG9ja09iamVjdCgpOiB2b2lkIHtcclxuICAgIHRoaXMub2JqZWN0LmxvY2tlZCA9ICF0aGlzLm9iamVjdC5sb2NrZWQ7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF91cGRhdGVSb3RhdGlvblgodmFsdWU6IG51bWJlcik6IHZvaWQge1xyXG4gICAgdGhpcy5yb3RhdGlvblggPSB2YWx1ZTtcclxuICAgIHRoaXMub2JqZWN0LnJvdGF0aW9uLnggPSBNYXRoVXRpbHMuZGVnVG9SYWQodmFsdWUpO1xyXG4gICAgdGhpcy5fdXBkYXRlT2JqZWN0KCk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF91cGRhdGVSb3RhdGlvblkodmFsdWU6IG51bWJlcik6IHZvaWQge1xyXG4gICAgdGhpcy5yb3RhdGlvblkgPSB2YWx1ZTtcclxuICAgIHRoaXMub2JqZWN0LnJvdGF0aW9uLnkgPSBNYXRoVXRpbHMuZGVnVG9SYWQodmFsdWUpO1xyXG4gICAgdGhpcy5fdXBkYXRlT2JqZWN0KCk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF91cGRhdGVSb3RhdGlvbloodmFsdWU6IG51bWJlcik6IHZvaWQge1xyXG4gICAgdGhpcy5yb3RhdGlvblogPSB2YWx1ZTtcclxuICAgIHRoaXMub2JqZWN0LnJvdGF0aW9uLnogPSBNYXRoVXRpbHMuZGVnVG9SYWQodmFsdWUpO1xyXG4gICAgdGhpcy5fdXBkYXRlT2JqZWN0KCk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF91cGRhdGVPYmplY3QoKTogdm9pZCB7XHJcbiAgICB0aGlzLm9uU2VsZWN0ZWRPYmplY3RDaGFuZ2UubmV4dCh0aGlzLm9iamVjdCk7XHJcbiAgICB0aGlzLl9zY2VuZVNlcnZpY2UubmVlZHNSZW5kZXIgPSB0cnVlO1xyXG4gIH1cclxuXHJcbiAgLy8gcm90YXRpb24gc2hvdWxkIGJlIG9mIHRoZSBmb3JtIC0xODAgLSAxODAgZGVncmVlc1xyXG4gIHByaXZhdGUgX2ZpeFJvdGF0aW9uKCk6IG51bWJlciB7XHJcbiAgICBjb25zdCBldWxlcjogRXVsZXIgPSBuZXcgRXVsZXIoKTtcclxuICAgIGNvbnN0IHJvdGF0aW9uOiBFdWxlciA9IGV1bGVyLnNldEZyb21RdWF0ZXJuaW9uKHRoaXMub2JqZWN0LnF1YXRlcm5pb24sICdZWFonKTtcclxuICAgIGNvbnN0IGRlZ3JlZXMgPSBNYXRoLnJvdW5kKE1hdGhVdGlscy5yYWRUb0RlZyhyb3RhdGlvbi55KSk7XHJcbiAgICByZXR1cm4gZGVncmVlcztcclxuICB9XHJcbn1cclxuIiwiPHNlY3Rpb24gKm5nSWY9XCJvYmplY3RcIj5cclxuICA8aDMgY2xhc3M9XCJtYXQtc3ViaGVhZGluZy0yXCI+e3tvYmplY3QubmFtZSB8IGxvY2FsaXplfX08L2gzPlxyXG4gIDxwIGNsYXNzPVwibWF0LWJvZHlcIiAqbmdJZj1cIm9iamVjdC5kZXNjcmlwdGlvblwiPnt7b2JqZWN0LmRlc2NyaXB0aW9uIHwgbG9jYWxpemV9fTwvcD5cclxuXHJcbiAgPGRpdj5cclxuICAgIDxoMyBjbGFzcz1cIm1hdC1zdWJoZWFkaW5nLTJcIj57eydST1RBVElPTicgfCBsb2NhbGl6ZX19PC9oMz5cclxuICAgIDxkaXYgY2xhc3M9XCJyb3RhdGlvbi13cmFwcGVyXCIgKm5nSWY9XCJvYmplY3QuY2FuUm90YXRlWFwiPlxyXG4gICAgICA8c3BhbiBbdGV4dENvbnRlbnRdPVwiJ3gnXCI+PC9zcGFuPlxyXG4gICAgICA8bWF0LXNsaWRlciBjbGFzcz1cInZhbHVlXCIgdGh1bWJMYWJlbCBtaW49XCItMTgwXCIgbWF4PVwiMTgwXCJcclxuICAgICAgICAgICAgICAgICAgW3N0ZXBdPVwic3RlcFwiXHJcbiAgICAgICAgICAgICAgICAgIFtuZ01vZGVsXT1cInJvdGF0aW9uWFwiXHJcbiAgICAgICAgICAgICAgICAgIFtkaXNhYmxlZF09XCJvYmplY3QubG9ja2VkXCJcclxuICAgICAgICAgICAgICAgICAgKGlucHV0KT1cImhhbmRsZVVwZGF0ZVJvdGF0aW9uWCgkZXZlbnQpXCI+PC9tYXQtc2xpZGVyPlxyXG4gICAgICA8aW5wdXQgbWF0SW5wdXQgdHlwZT1cIm51bWJlclwiIG1pbj1cIi0xODBcIiBtYXg9XCIxODBcIlxyXG4gICAgICAgICAgICAgW3N0ZXBdPVwic3RlcFwiXHJcbiAgICAgICAgICAgICBbbmdNb2RlbF09XCJyb3RhdGlvblhcIlxyXG4gICAgICAgICAgICAgW2Rpc2FibGVkXT1cIm9iamVjdC5sb2NrZWRcIlxyXG4gICAgICAgICAgICAgKG5nTW9kZWxDaGFuZ2UpPVwiaGFuZGxlVXBkYXRlUm90YXRpb25YVmFsdWUoJGV2ZW50KVwiPlxyXG4gICAgICA8YnV0dG9uIG1hdC1taW5pLWZhYiBwcmltYXJ5IChjbGljayk9XCJyZXNldFJvdGF0aW9uWCgpXCIgbWF0VG9vbHRpcD1cInt7J1JFU0VUJyB8IGxvY2FsaXplfX1cIiBbZGlzYWJsZWRdPVwib2JqZWN0LmxvY2tlZFwiPlxyXG4gICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImhvbWVkZWNvcmF0b3ItbWF0ZXJpYWwtaWNvbnNcIj5jYWNoZWQ8L21hdC1pY29uPlxyXG4gICAgICA8L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cInJvdGF0aW9uLXdyYXBwZXJcIiAqbmdJZj1cIm9iamVjdC5jYW5Sb3RhdGVZXCI+XHJcbiAgICAgIDxzcGFuIFt0ZXh0Q29udGVudF09XCIneSdcIj48L3NwYW4+XHJcbiAgICAgIDxtYXQtc2xpZGVyIGNsYXNzPVwidmFsdWVcIiB0aHVtYkxhYmVsIG1pbj1cIi0xODBcIiBtYXg9XCIxODBcIlxyXG4gICAgICAgICAgICAgICAgICBbc3RlcF09XCJzdGVwXCJcclxuICAgICAgICAgICAgICAgICAgW25nTW9kZWxdPVwicm90YXRpb25ZXCJcclxuICAgICAgICAgICAgICAgICAgW2Rpc2FibGVkXT1cIm9iamVjdC5sb2NrZWRcIlxyXG4gICAgICAgICAgICAgICAgICAoaW5wdXQpPVwiaGFuZGxlVXBkYXRlUm90YXRpb25ZKCRldmVudClcIj48L21hdC1zbGlkZXI+XHJcbiAgICAgIDxpbnB1dCBtYXRJbnB1dCB0eXBlPVwibnVtYmVyXCIgbWluPVwiLTE4MFwiIG1heD1cIjE4MFwiXHJcbiAgICAgICAgICAgICBbc3RlcF09XCJzdGVwXCJcclxuICAgICAgICAgICAgIFtuZ01vZGVsXT1cInJvdGF0aW9uWVwiXHJcbiAgICAgICAgICAgICBbZGlzYWJsZWRdPVwib2JqZWN0LmxvY2tlZFwiXHJcbiAgICAgICAgICAgICAobmdNb2RlbENoYW5nZSk9XCJoYW5kbGVVcGRhdGVSb3RhdGlvbllWYWx1ZSgkZXZlbnQpXCI+XHJcbiAgICAgIDxidXR0b24gbWF0LW1pbmktZmFiIHByaW1hcnkgKGNsaWNrKT1cInJlc2V0Um90YXRpb25ZKClcIiBtYXRUb29sdGlwPVwie3snUkVTRVQnIHwgbG9jYWxpemV9fVwiIFtkaXNhYmxlZF09XCJvYmplY3QubG9ja2VkXCI+XHJcbiAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiPmNhY2hlZDwvbWF0LWljb24+XHJcbiAgICAgIDwvYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwicm90YXRpb24td3JhcHBlclwiICpuZ0lmPVwib2JqZWN0LmNhblJvdGF0ZVpcIj5cclxuICAgICAgPHNwYW4gW3RleHRDb250ZW50XT1cIid6J1wiPjwvc3Bhbj5cclxuICAgICAgPG1hdC1zbGlkZXIgY2xhc3M9XCJ2YWx1ZVwiIHRodW1iTGFiZWwgbWluPVwiLTE4MFwiIG1heD1cIjE4MFwiXHJcbiAgICAgICAgICAgICAgICAgIFtzdGVwXT1cInN0ZXBcIlxyXG4gICAgICAgICAgICAgICAgICBbbmdNb2RlbF09XCJyb3RhdGlvblpcIlxyXG4gICAgICAgICAgICAgICAgICBbZGlzYWJsZWRdPVwib2JqZWN0LmxvY2tlZFwiXHJcbiAgICAgICAgICAgICAgICAgIChpbnB1dCk9XCJoYW5kbGVVcGRhdGVSb3RhdGlvblooJGV2ZW50KVwiPjwvbWF0LXNsaWRlcj5cclxuICAgICAgPGlucHV0IG1hdElucHV0IHR5cGU9XCJudW1iZXJcIiBtaW49XCItMTgwXCIgbWF4PVwiMTgwXCJcclxuICAgICAgICAgICAgIFtzdGVwXT1cInN0ZXBcIlxyXG4gICAgICAgICAgICAgW25nTW9kZWxdPVwicm90YXRpb25aXCJcclxuICAgICAgICAgICAgIFtkaXNhYmxlZF09XCJvYmplY3QubG9ja2VkXCJcclxuICAgICAgICAgICAgIChuZ01vZGVsQ2hhbmdlKT1cImhhbmRsZVVwZGF0ZVJvdGF0aW9uWlZhbHVlKCRldmVudClcIj5cclxuICAgICAgPGJ1dHRvbiBtYXQtbWluaS1mYWIgcHJpbWFyeSAoY2xpY2spPVwicmVzZXRSb3RhdGlvblooKVwiIG1hdFRvb2x0aXA9XCJ7eydSRVNFVCcgfCBsb2NhbGl6ZX19XCIgW2Rpc2FibGVkXT1cIm9iamVjdC5sb2NrZWRcIj5cclxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJob21lZGVjb3JhdG9yLW1hdGVyaWFsLWljb25zXCI+Y2FjaGVkPC9tYXQtaWNvbj5cclxuICAgICAgPC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxtYXQtZGl2aWRlcj48L21hdC1kaXZpZGVyPlxyXG4gICAgPGRpdiBjbGFzcz1cImJ1dHRvbi13cmFwcGVyXCI+XHJcbiAgICAgIDxidXR0b24gKm5nSWY9XCJzaG93Q29weVwiIG1hdC1taW5pLWZhYiBwcmltYXJ5IChjbGljayk9XCJjb3B5T2JqZWN0KClcIiBtYXRUb29sdGlwPVwie3snQ09QWScgfCBsb2NhbGl6ZX19XCI+XHJcbiAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiPmZpbGVfY29weTwvbWF0LWljb24+XHJcbiAgICAgIDwvYnV0dG9uPlxyXG4gICAgICA8YnV0dG9uICpuZ0lmPVwic2hvd0RlbGV0ZVwiIG1hdC1taW5pLWZhYiAoY2xpY2spPVwicmVtb3ZlT2JqZWN0KClcIiBtYXRUb29sdGlwPVwie3snUkVNT1ZFJyB8IGxvY2FsaXplfX1cIj5cclxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJob21lZGVjb3JhdG9yLW1hdGVyaWFsLWljb25zXCI+ZGVsZXRlPC9tYXQtaWNvbj5cclxuICAgICAgPC9idXR0b24+XHJcbiAgICAgIDxidXR0b24gKm5nSWY9XCJzaG93TG9ja1wiIG1hdC1taW5pLWZhYiAoY2xpY2spPVwidG9nZ2xlTG9ja09iamVjdCgpXCIgbWF0VG9vbHRpcD1cInt7KG9iamVjdC5sb2NrZWQgPyAnVU5MT0NLJyA6ICdMT0NLJykgfCBsb2NhbGl6ZX19XCI+XHJcbiAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiIFt0ZXh0Q29udGVudF09XCJvYmplY3QubG9ja2VkID8gJ2xvY2snIDogJ2xvY2tfb3BlbidcIj48L21hdC1pY29uPlxyXG4gICAgICA8L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gICAgPG1hdC1kaXZpZGVyPjwvbWF0LWRpdmlkZXI+XHJcbiAgPC9kaXY+XHJcbjwvc2VjdGlvbj5cclxuIl19
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { TextureEditorOptions } from '../texture-editor/texture-editor.component';
|
|
3
|
+
import { ViewMode } from '../../../../core/enum/view-mode.enum';
|
|
4
|
+
import { ConfigurationKey } from '../../../../core/enum/configuration-key.enum';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../../../../core/service/message-bus.service";
|
|
7
|
+
import * as i2 from "../../../../core/service/configuration.service";
|
|
8
|
+
import * as i3 from "../../../../core/service/view-mode.service";
|
|
9
|
+
import * as i4 from "@angular/material/button";
|
|
10
|
+
import * as i5 from "@angular/material/icon";
|
|
11
|
+
import * as i6 from "../dimension-input/dimension-input.component";
|
|
12
|
+
import * as i7 from "@angular/material/slide-toggle";
|
|
13
|
+
import * as i8 from "@angular/material/divider";
|
|
14
|
+
import * as i9 from "../appearance-section/appearance-section.component";
|
|
15
|
+
import * as i10 from "@angular/common";
|
|
16
|
+
import * as i11 from "@angular/flex-layout/flex";
|
|
17
|
+
import * as i12 from "../../../../core/pipe/localize.pipe";
|
|
18
|
+
export class SelectedWallComponent {
|
|
19
|
+
constructor(messageService, _configurationService, viewModeService) {
|
|
20
|
+
this.messageService = messageService;
|
|
21
|
+
this._configurationService = _configurationService;
|
|
22
|
+
this.viewModeService = viewModeService;
|
|
23
|
+
this.viewModes = ViewMode;
|
|
24
|
+
this.remove = new EventEmitter();
|
|
25
|
+
this.setLength = new EventEmitter();
|
|
26
|
+
this.setHeight = new EventEmitter();
|
|
27
|
+
this.setThickness = new EventEmitter();
|
|
28
|
+
this.selectCorner = new EventEmitter();
|
|
29
|
+
this.setTexture = new EventEmitter();
|
|
30
|
+
this.setColor = new EventEmitter();
|
|
31
|
+
this.wallDirectionReversed = false;
|
|
32
|
+
this.detailedWallMeasurementsMode = false;
|
|
33
|
+
this.Options = TextureEditorOptions;
|
|
34
|
+
}
|
|
35
|
+
ngOnInit() {
|
|
36
|
+
this.detailedWallMeasurementsMode = this._configurationService.getValue(ConfigurationKey.ShowDetailedWallMeasurements);
|
|
37
|
+
}
|
|
38
|
+
reverseWallDirection(reverse) {
|
|
39
|
+
this.wallDirectionReversed = reverse;
|
|
40
|
+
this.markCorner();
|
|
41
|
+
}
|
|
42
|
+
deselectCorner() {
|
|
43
|
+
this.selectCorner.emit(null);
|
|
44
|
+
}
|
|
45
|
+
markCorner() {
|
|
46
|
+
if (this.wallDirectionReversed) {
|
|
47
|
+
this.selectCorner.emit(this.wall.getStart());
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
this.selectCorner.emit(this.wall.getEnd());
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
lengthChanged(length, edge) {
|
|
54
|
+
this.setLength.emit({
|
|
55
|
+
length: length / 100,
|
|
56
|
+
atEnd: !this.wallDirectionReversed,
|
|
57
|
+
edge
|
|
58
|
+
});
|
|
59
|
+
this.deselectCorner();
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
SelectedWallComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SelectedWallComponent, deps: [{ token: i1.MessageBusService }, { token: i2.ConfigurationService }, { token: i3.ViewModeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
63
|
+
SelectedWallComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SelectedWallComponent, selector: "rp-selected-wall", inputs: { wall: "wall", texturePlane: "texturePlane", color: "color", minWallHeight: "minWallHeight", maxWallHeight: "maxWallHeight", maxWallThickness: "maxWallThickness", maxWallLength: "maxWallLength", minWallLength: "minWallLength" }, outputs: { remove: "remove", setLength: "setLength", setHeight: "setHeight", setThickness: "setThickness", selectCorner: "selectCorner", setTexture: "setTexture", setColor: "setColor" }, ngImport: i0, template: "<section *ngIf=\"wall\">\r\n\r\n <button *ngIf=\"viewModeService.viewMode === viewModes.FloorPlan2D\"\r\n mat-raised-button\r\n class=\"remove\"\r\n (click)=\"remove.emit(wall)\">\r\n <mat-icon class=\"homedecorator-material-icons\">delete</mat-icon>\r\n {{'REMOVE' | localize}}\r\n </button>\r\n\r\n <h3 class=\"mat-subheading-2\"> {{ 'MEASUREMENTS' | localize}}</h3>\r\n <div>\r\n <ng-container *ngIf=\"!detailedWallMeasurementsMode\">\r\n <rp-dimension-input\r\n [sourceValue]=\"wall.length * 100\"\r\n [maxValue]=\"maxWallLength\"\r\n [minValue]=\"minWallLength\"\r\n title=\"{{'LENGTH' | localize}}\"\r\n (focus)=\"markCorner()\"\r\n (blur)=\"deselectCorner()\"\r\n (dimensionChanged)=\"lengthChanged($event)\"\r\n >\r\n </rp-dimension-input>\r\n </ng-container>\r\n <ng-container *ngIf=\"wall.backEdge && detailedWallMeasurementsMode\">\r\n <rp-dimension-input\r\n [sourceValue]=\"wall.backEdge.interiorDistance() * 100\"\r\n [maxValue]=\"maxWallLength\"\r\n [minValue]=\"minWallLength\"\r\n title=\"{{wall.frontEdge ? 'OUTER_LENGTH' : 'LENGTH' | localize}}\"\r\n (focus)=\"markCorner()\"\r\n (blur)=\"deselectCorner()\"\r\n (dimensionChanged)=\"lengthChanged($event, wall.backEdge)\"\r\n >\r\n </rp-dimension-input>\r\n </ng-container>\r\n <ng-container *ngIf=\"wall.frontEdge && detailedWallMeasurementsMode\">\r\n <rp-dimension-input\r\n [sourceValue]=\"wall.frontEdge.interiorDistance() * 100\"\r\n [maxValue]=\"maxWallLength\"\r\n [minValue]=\"minWallLength\"\r\n title=\"{{wall.backEdge ? 'INNER_LENGTH' : 'LENGTH' | localize}}\"\r\n (focus)=\"markCorner()\"\r\n (blur)=\"deselectCorner()\"\r\n (dimensionChanged)=\"lengthChanged($event, wall.frontEdge)\"\r\n >\r\n </rp-dimension-input>\r\n </ng-container>\r\n\r\n <div class=\"wall-direction-toggle\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\">\r\n <span class=\"mat-body-2\">{{'REVERSE_WALL_DIRECTION' | localize}}</span>\r\n <mat-slide-toggle\r\n min=\"0\"\r\n max=\"1\"\r\n [checked]=\"wallDirectionReversed\"\r\n (focusout)=\"deselectCorner()\"\r\n (change)=\"reverseWallDirection($event.checked)\"\r\n >\r\n </mat-slide-toggle>\r\n </div>\r\n\r\n <rp-dimension-input\r\n [sourceValue]=\"wall.height * 100\"\r\n [minValue]=\"minWallHeight\"\r\n [maxValue]=\"maxWallHeight\"\r\n title=\"{{'HEIGHT' | localize}}\"\r\n (dimensionChanged)=\"setHeight.emit($event / 100)\"\r\n >\r\n </rp-dimension-input>\r\n <rp-dimension-input\r\n [sourceValue]=\"wall.thickness * 100\"\r\n [maxValue]=\"maxWallThickness\"\r\n title=\"{{'THICKNESS' | localize}}\"\r\n (dimensionChanged)=\"setThickness.emit($event / 100)\"\r\n >\r\n </rp-dimension-input>\r\n </div>\r\n\r\n <div *ngIf=\"viewModeService.viewMode === viewModes.RoomPlan3D || viewModes.FloorPlan2D\">\r\n <mat-divider></mat-divider>\r\n\r\n <h3 class=\"mat-subheading-2\">{{'APPEARANCE' | localize}}</h3>\r\n <rp-appearance-section\r\n type=\"wall\"\r\n [texturePlane]=\"texturePlane\"\r\n [color]=\"color\"\r\n [textureWidth]=\"wall.length * 100\"\r\n [textureHeight]=\"wall.height * 100\"\r\n [photoOptions]=\"Options.Both\"\r\n (setTexture)=\"setTexture.emit($event)\"\r\n (setColor)=\"setColor.emit($event)\"\r\n >\r\n </rp-appearance-section>\r\n </div>\r\n</section>\r\n", styles: [":host{overflow:hidden}:host section{overflow-y:auto;height:100%}h1{margin-bottom:.25em}mat-icon.size-16{width:16px;height:16px;line-height:16px}button.remove{position:absolute;top:15px;right:70px}.wall-direction-toggle{margin:5px 7px 20px 0}mat-form-field input{text-align:right}\n"], components: [{ type: i4.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i6.DimensionInputComponent, selector: "rp-dimension-input", inputs: ["minValue", "maxValue", "sourceValue", "title"], outputs: ["dimensionChanged", "focus", "blur"] }, { type: i7.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["disabled", "disableRipple", "color", "tabIndex", "name", "id", "labelPosition", "aria-label", "aria-labelledby", "required", "checked", "aria-describedby"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { type: i8.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { type: i9.AppearanceSectionComponent, selector: "rp-appearance-section", inputs: ["type", "hideTextureTab", "hideColorTab", "hidePhotoTab", "showGlassOption", "texturePlane", "plainTexture", "color", "textureWidth", "textureHeight", "photoOptions", "glassMaterial"], outputs: ["setTexture", "setColor", "setMaterial"] }], directives: [{ type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i11.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }], pipes: { "localize": i12.LocalizePipe } });
|
|
64
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SelectedWallComponent, decorators: [{
|
|
65
|
+
type: Component,
|
|
66
|
+
args: [{
|
|
67
|
+
selector: 'rp-selected-wall',
|
|
68
|
+
templateUrl: './selected-wall.component.html',
|
|
69
|
+
styleUrls: ['./selected-wall.component.scss']
|
|
70
|
+
}]
|
|
71
|
+
}], ctorParameters: function () { return [{ type: i1.MessageBusService }, { type: i2.ConfigurationService }, { type: i3.ViewModeService }]; }, propDecorators: { wall: [{
|
|
72
|
+
type: Input
|
|
73
|
+
}], texturePlane: [{
|
|
74
|
+
type: Input
|
|
75
|
+
}], color: [{
|
|
76
|
+
type: Input
|
|
77
|
+
}], minWallHeight: [{
|
|
78
|
+
type: Input
|
|
79
|
+
}], maxWallHeight: [{
|
|
80
|
+
type: Input
|
|
81
|
+
}], maxWallThickness: [{
|
|
82
|
+
type: Input
|
|
83
|
+
}], maxWallLength: [{
|
|
84
|
+
type: Input
|
|
85
|
+
}], minWallLength: [{
|
|
86
|
+
type: Input
|
|
87
|
+
}], remove: [{
|
|
88
|
+
type: Output
|
|
89
|
+
}], setLength: [{
|
|
90
|
+
type: Output
|
|
91
|
+
}], setHeight: [{
|
|
92
|
+
type: Output
|
|
93
|
+
}], setThickness: [{
|
|
94
|
+
type: Output
|
|
95
|
+
}], selectCorner: [{
|
|
96
|
+
type: Output
|
|
97
|
+
}], setTexture: [{
|
|
98
|
+
type: Output
|
|
99
|
+
}], setColor: [{
|
|
100
|
+
type: Output
|
|
101
|
+
}] } });
|
|
102
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0ZWQtd2FsbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvY2xpZW50L2FwcC9wbHVnaW5zL3Jvb20tcGxhbm5lci9jb21wb25lbnRzL3NlbGVjdGVkLXdhbGwvc2VsZWN0ZWQtd2FsbC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvY2xpZW50L2FwcC9wbHVnaW5zL3Jvb20tcGxhbm5lci9jb21wb25lbnRzL3NlbGVjdGVkLXdhbGwvc2VsZWN0ZWQtd2FsbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBRTdFLE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLDRDQUE0QyxDQUFDO0FBQ2hGLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxzQ0FBc0MsQ0FBQztBQU05RCxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSw4Q0FBOEMsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7QUFPOUUsTUFBTSxPQUFPLHFCQUFxQjtJQTJCaEMsWUFDVSxjQUFpQyxFQUNqQyxxQkFBMkMsRUFDNUMsZUFBZ0M7UUFGL0IsbUJBQWMsR0FBZCxjQUFjLENBQW1CO1FBQ2pDLDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBc0I7UUFDNUMsb0JBQWUsR0FBZixlQUFlLENBQWlCO1FBN0J6QixjQUFTLEdBQW9CLFFBQVEsQ0FBQztRQWE1QyxXQUFNLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUNsQyxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQXFELENBQUM7UUFDbEYsY0FBUyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUM7UUFDdkMsaUJBQVksR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBQzFDLGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUMxQyxlQUFVLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUN6QyxhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUVoRCwwQkFBcUIsR0FBWSxLQUFLLENBQUM7UUFDdkMsaUNBQTRCLEdBQVksS0FBSyxDQUFDO1FBRTlDLFlBQU8sR0FBRyxvQkFBb0IsQ0FBQztJQU8vQixDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyw0QkFBNEIsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsUUFBUSxDQUFDLGdCQUFnQixDQUFDLDRCQUE0QixDQUFDLENBQUM7SUFDekgsQ0FBQztJQUVELG9CQUFvQixDQUFDLE9BQWdCO1FBQ25DLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxPQUFPLENBQUM7UUFDckMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBQ3BCLENBQUM7SUFFRCxjQUFjO1FBQ1osSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUVELFVBQVU7UUFDUixJQUFJLElBQUksQ0FBQyxxQkFBcUIsRUFBRTtZQUM5QixJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7U0FDOUM7YUFBTTtZQUNMLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUMsQ0FBQztTQUM1QztJQUNILENBQUM7SUFFRCxhQUFhLENBQUMsTUFBYyxFQUFFLElBQWU7UUFDM0MsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUM7WUFDbEIsTUFBTSxFQUFFLE1BQU0sR0FBRyxHQUFHO1lBQ3BCLEtBQUssRUFBRSxDQUFDLElBQUksQ0FBQyxxQkFBcUI7WUFDbEMsSUFBSTtTQUNMLENBQUMsQ0FBQztRQUNILElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUN4QixDQUFDOzttSEE5RFUscUJBQXFCO3VHQUFyQixxQkFBcUIsaWVDaEJsQyxraUhBK0ZBOzRGRC9FYSxxQkFBcUI7a0JBTGpDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGtCQUFrQjtvQkFDNUIsV0FBVyxFQUFFLGdDQUFnQztvQkFDN0MsU0FBUyxFQUFFLENBQUMsZ0NBQWdDLENBQUM7aUJBQzlDO3lLQUlVLElBQUk7c0JBQVosS0FBSztnQkFDRyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFFRyxhQUFhO3NCQUFyQixLQUFLO2dCQUVHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBQ0csZ0JBQWdCO3NCQUF4QixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSztnQkFFSSxNQUFNO3NCQUFmLE1BQU07Z0JBQ0csU0FBUztzQkFBbEIsTUFBTTtnQkFDRyxTQUFTO3NCQUFsQixNQUFNO2dCQUNHLFlBQVk7c0JBQXJCLE1BQU07Z0JBQ0csWUFBWTtzQkFBckIsTUFBTTtnQkFDRyxVQUFVO3NCQUFuQixNQUFNO2dCQUNHLFFBQVE7c0JBQWpCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHtUZXh0dXJlRWRpdG9yT3B0aW9uc30gZnJvbSAnLi4vdGV4dHVyZS1lZGl0b3IvdGV4dHVyZS1lZGl0b3IuY29tcG9uZW50JztcclxuaW1wb3J0IHtWaWV3TW9kZX0gZnJvbSAnLi4vLi4vLi4vLi4vY29yZS9lbnVtL3ZpZXctbW9kZS5lbnVtJztcclxuaW1wb3J0IHtDb3JuZXIsIEhhbGZFZGdlLCBXYWxsfSBmcm9tICcuLi8uLi8uLi9jb3JlM2QvaXRlbXMvd2FsbC1vYmplY3RzJztcclxuaW1wb3J0IHtUZXh0dXJlfSBmcm9tICcuLi8uLi8uLi8uLi9jb3JlL21vZGVsL3RleHR1cmUnO1xyXG5pbXBvcnQge01lc3NhZ2VCdXNTZXJ2aWNlfSBmcm9tICcuLi8uLi8uLi8uLi9jb3JlL3NlcnZpY2UvbWVzc2FnZS1idXMuc2VydmljZSc7XHJcbmltcG9ydCB7Q29uZmlndXJhdGlvblNlcnZpY2V9IGZyb20gJy4uLy4uLy4uLy4uL2NvcmUvc2VydmljZS9jb25maWd1cmF0aW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQge1ZpZXdNb2RlU2VydmljZX0gZnJvbSAnLi4vLi4vLi4vLi4vY29yZS9zZXJ2aWNlL3ZpZXctbW9kZS5zZXJ2aWNlJztcclxuaW1wb3J0IHtDb25maWd1cmF0aW9uS2V5fSBmcm9tICcuLi8uLi8uLi8uLi9jb3JlL2VudW0vY29uZmlndXJhdGlvbi1rZXkuZW51bSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3JwLXNlbGVjdGVkLXdhbGwnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWxlY3RlZC13YWxsLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9zZWxlY3RlZC13YWxsLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFNlbGVjdGVkV2FsbENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgcHVibGljIHJlYWRvbmx5IHZpZXdNb2RlczogdHlwZW9mIFZpZXdNb2RlID0gVmlld01vZGU7XHJcblxyXG4gIEBJbnB1dCgpIHdhbGw6IFdhbGw7XHJcbiAgQElucHV0KCkgdGV4dHVyZVBsYW5lO1xyXG4gIEBJbnB1dCgpIGNvbG9yOiBudW1iZXI7XHJcblxyXG4gIEBJbnB1dCgpIG1pbldhbGxIZWlnaHQ6IG51bWJlcjtcclxuXHJcbiAgQElucHV0KCkgbWF4V2FsbEhlaWdodDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIG1heFdhbGxUaGlja25lc3M6IG51bWJlcjtcclxuICBASW5wdXQoKSBtYXhXYWxsTGVuZ3RoOiBudW1iZXI7XHJcbiAgQElucHV0KCkgbWluV2FsbExlbmd0aDogbnVtYmVyO1xyXG5cclxuICBAT3V0cHV0KCkgcmVtb3ZlID0gbmV3IEV2ZW50RW1pdHRlcjxXYWxsPigpO1xyXG4gIEBPdXRwdXQoKSBzZXRMZW5ndGggPSBuZXcgRXZlbnRFbWl0dGVyPHtsZW5ndGg6IG51bWJlciwgYXRFbmQ6IGJvb2xlYW4sIGVkZ2U/OiBIYWxmRWRnZX0+KCk7XHJcbiAgQE91dHB1dCgpIHNldEhlaWdodCA9IG5ldyBFdmVudEVtaXR0ZXI8bnVtYmVyPigpO1xyXG4gIEBPdXRwdXQoKSBzZXRUaGlja25lc3MgPSBuZXcgRXZlbnRFbWl0dGVyPG51bWJlcj4oKTtcclxuICBAT3V0cHV0KCkgc2VsZWN0Q29ybmVyID0gbmV3IEV2ZW50RW1pdHRlcjxDb3JuZXI+KCk7XHJcbiAgQE91dHB1dCgpIHNldFRleHR1cmUgPSBuZXcgRXZlbnRFbWl0dGVyPFRleHR1cmU+KCk7XHJcbiAgQE91dHB1dCgpIHNldENvbG9yID0gbmV3IEV2ZW50RW1pdHRlcjxudW1iZXI+KCk7XHJcblxyXG4gIHdhbGxEaXJlY3Rpb25SZXZlcnNlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIGRldGFpbGVkV2FsbE1lYXN1cmVtZW50c01vZGU6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgT3B0aW9ucyA9IFRleHR1cmVFZGl0b3JPcHRpb25zO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHByaXZhdGUgbWVzc2FnZVNlcnZpY2U6IE1lc3NhZ2VCdXNTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfY29uZmlndXJhdGlvblNlcnZpY2U6IENvbmZpZ3VyYXRpb25TZXJ2aWNlLFxyXG4gICAgcHVibGljIHZpZXdNb2RlU2VydmljZTogVmlld01vZGVTZXJ2aWNlXHJcbiAgKSB7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuZGV0YWlsZWRXYWxsTWVhc3VyZW1lbnRzTW9kZSA9IHRoaXMuX2NvbmZpZ3VyYXRpb25TZXJ2aWNlLmdldFZhbHVlKENvbmZpZ3VyYXRpb25LZXkuU2hvd0RldGFpbGVkV2FsbE1lYXN1cmVtZW50cyk7XHJcbiAgfVxyXG5cclxuICByZXZlcnNlV2FsbERpcmVjdGlvbihyZXZlcnNlOiBib29sZWFuKSB7XHJcbiAgICB0aGlzLndhbGxEaXJlY3Rpb25SZXZlcnNlZCA9IHJldmVyc2U7XHJcbiAgICB0aGlzLm1hcmtDb3JuZXIoKTtcclxuICB9XHJcblxyXG4gIGRlc2VsZWN0Q29ybmVyKCkge1xyXG4gICAgdGhpcy5zZWxlY3RDb3JuZXIuZW1pdChudWxsKTtcclxuICB9XHJcblxyXG4gIG1hcmtDb3JuZXIoKSB7XHJcbiAgICBpZiAodGhpcy53YWxsRGlyZWN0aW9uUmV2ZXJzZWQpIHtcclxuICAgICAgdGhpcy5zZWxlY3RDb3JuZXIuZW1pdCh0aGlzLndhbGwuZ2V0U3RhcnQoKSk7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICB0aGlzLnNlbGVjdENvcm5lci5lbWl0KHRoaXMud2FsbC5nZXRFbmQoKSk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBsZW5ndGhDaGFuZ2VkKGxlbmd0aDogbnVtYmVyLCBlZGdlPzogSGFsZkVkZ2UpIHtcclxuICAgIHRoaXMuc2V0TGVuZ3RoLmVtaXQoe1xyXG4gICAgICBsZW5ndGg6IGxlbmd0aCAvIDEwMCxcclxuICAgICAgYXRFbmQ6ICF0aGlzLndhbGxEaXJlY3Rpb25SZXZlcnNlZCxcclxuICAgICAgZWRnZVxyXG4gICAgfSk7XHJcbiAgICB0aGlzLmRlc2VsZWN0Q29ybmVyKCk7XHJcbiAgfVxyXG59XHJcbiIsIjxzZWN0aW9uICpuZ0lmPVwid2FsbFwiPlxyXG5cclxuICA8YnV0dG9uICpuZ0lmPVwidmlld01vZGVTZXJ2aWNlLnZpZXdNb2RlID09PSB2aWV3TW9kZXMuRmxvb3JQbGFuMkRcIlxyXG4gICAgbWF0LXJhaXNlZC1idXR0b25cclxuICAgIGNsYXNzPVwicmVtb3ZlXCJcclxuICAgIChjbGljayk9XCJyZW1vdmUuZW1pdCh3YWxsKVwiPlxyXG4gICAgICA8bWF0LWljb24gY2xhc3M9XCJob21lZGVjb3JhdG9yLW1hdGVyaWFsLWljb25zXCI+ZGVsZXRlPC9tYXQtaWNvbj5cclxuICAgICAge3snUkVNT1ZFJyB8IGxvY2FsaXplfX1cclxuICA8L2J1dHRvbj5cclxuXHJcbiAgPGgzIGNsYXNzPVwibWF0LXN1YmhlYWRpbmctMlwiPiB7eyAnTUVBU1VSRU1FTlRTJyB8IGxvY2FsaXplfX08L2gzPlxyXG4gIDxkaXY+XHJcbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIWRldGFpbGVkV2FsbE1lYXN1cmVtZW50c01vZGVcIj5cclxuICAgICAgPHJwLWRpbWVuc2lvbi1pbnB1dFxyXG4gICAgICAgIFtzb3VyY2VWYWx1ZV09XCJ3YWxsLmxlbmd0aCAqIDEwMFwiXHJcbiAgICAgICAgW21heFZhbHVlXT1cIm1heFdhbGxMZW5ndGhcIlxyXG4gICAgICAgIFttaW5WYWx1ZV09XCJtaW5XYWxsTGVuZ3RoXCJcclxuICAgICAgICB0aXRsZT1cInt7J0xFTkdUSCcgfCBsb2NhbGl6ZX19XCJcclxuICAgICAgICAoZm9jdXMpPVwibWFya0Nvcm5lcigpXCJcclxuICAgICAgICAoYmx1cik9XCJkZXNlbGVjdENvcm5lcigpXCJcclxuICAgICAgICAoZGltZW5zaW9uQ2hhbmdlZCk9XCJsZW5ndGhDaGFuZ2VkKCRldmVudClcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvcnAtZGltZW5zaW9uLWlucHV0PlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwid2FsbC5iYWNrRWRnZSAmJiBkZXRhaWxlZFdhbGxNZWFzdXJlbWVudHNNb2RlXCI+XHJcbiAgICAgIDxycC1kaW1lbnNpb24taW5wdXRcclxuICAgICAgICBbc291cmNlVmFsdWVdPVwid2FsbC5iYWNrRWRnZS5pbnRlcmlvckRpc3RhbmNlKCkgKiAxMDBcIlxyXG4gICAgICAgIFttYXhWYWx1ZV09XCJtYXhXYWxsTGVuZ3RoXCJcclxuICAgICAgICBbbWluVmFsdWVdPVwibWluV2FsbExlbmd0aFwiXHJcbiAgICAgICAgdGl0bGU9XCJ7e3dhbGwuZnJvbnRFZGdlID8gJ09VVEVSX0xFTkdUSCcgOiAnTEVOR1RIJyB8IGxvY2FsaXplfX1cIlxyXG4gICAgICAgIChmb2N1cyk9XCJtYXJrQ29ybmVyKClcIlxyXG4gICAgICAgIChibHVyKT1cImRlc2VsZWN0Q29ybmVyKClcIlxyXG4gICAgICAgIChkaW1lbnNpb25DaGFuZ2VkKT1cImxlbmd0aENoYW5nZWQoJGV2ZW50LCB3YWxsLmJhY2tFZGdlKVwiXHJcbiAgICAgID5cclxuICAgICAgPC9ycC1kaW1lbnNpb24taW5wdXQ+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ3YWxsLmZyb250RWRnZSAmJiBkZXRhaWxlZFdhbGxNZWFzdXJlbWVudHNNb2RlXCI+XHJcbiAgICAgIDxycC1kaW1lbnNpb24taW5wdXRcclxuICAgICAgICBbc291cmNlVmFsdWVdPVwid2FsbC5mcm9udEVkZ2UuaW50ZXJpb3JEaXN0YW5jZSgpICogMTAwXCJcclxuICAgICAgICBbbWF4VmFsdWVdPVwibWF4V2FsbExlbmd0aFwiXHJcbiAgICAgICAgW21pblZhbHVlXT1cIm1pbldhbGxMZW5ndGhcIlxyXG4gICAgICAgIHRpdGxlPVwie3t3YWxsLmJhY2tFZGdlID8gJ0lOTkVSX0xFTkdUSCcgOiAnTEVOR1RIJyB8IGxvY2FsaXplfX1cIlxyXG4gICAgICAgIChmb2N1cyk9XCJtYXJrQ29ybmVyKClcIlxyXG4gICAgICAgIChibHVyKT1cImRlc2VsZWN0Q29ybmVyKClcIlxyXG4gICAgICAgIChkaW1lbnNpb25DaGFuZ2VkKT1cImxlbmd0aENoYW5nZWQoJGV2ZW50LCB3YWxsLmZyb250RWRnZSlcIlxyXG4gICAgICA+XHJcbiAgICAgIDwvcnAtZGltZW5zaW9uLWlucHV0PlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cIndhbGwtZGlyZWN0aW9uLXRvZ2dsZVwiIGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cInNwYWNlLWJldHdlZW4gY2VudGVyXCI+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwibWF0LWJvZHktMlwiPnt7J1JFVkVSU0VfV0FMTF9ESVJFQ1RJT04nIHwgbG9jYWxpemV9fTwvc3Bhbj5cclxuICAgICAgPG1hdC1zbGlkZS10b2dnbGVcclxuICAgICAgICBtaW49XCIwXCJcclxuICAgICAgICBtYXg9XCIxXCJcclxuICAgICAgICBbY2hlY2tlZF09XCJ3YWxsRGlyZWN0aW9uUmV2ZXJzZWRcIlxyXG4gICAgICAgIChmb2N1c291dCk9XCJkZXNlbGVjdENvcm5lcigpXCJcclxuICAgICAgICAoY2hhbmdlKT1cInJldmVyc2VXYWxsRGlyZWN0aW9uKCRldmVudC5jaGVja2VkKVwiXHJcbiAgICAgID5cclxuICAgICAgPC9tYXQtc2xpZGUtdG9nZ2xlPlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPHJwLWRpbWVuc2lvbi1pbnB1dFxyXG4gICAgICBbc291cmNlVmFsdWVdPVwid2FsbC5oZWlnaHQgKiAxMDBcIlxyXG4gICAgICBbbWluVmFsdWVdPVwibWluV2FsbEhlaWdodFwiXHJcbiAgICAgIFttYXhWYWx1ZV09XCJtYXhXYWxsSGVpZ2h0XCJcclxuICAgICAgdGl0bGU9XCJ7eydIRUlHSFQnIHwgbG9jYWxpemV9fVwiXHJcbiAgICAgIChkaW1lbnNpb25DaGFuZ2VkKT1cInNldEhlaWdodC5lbWl0KCRldmVudCAvIDEwMClcIlxyXG4gICAgPlxyXG4gICAgPC9ycC1kaW1lbnNpb24taW5wdXQ+XHJcbiAgICA8cnAtZGltZW5zaW9uLWlucHV0XHJcbiAgICAgIFtzb3VyY2VWYWx1ZV09XCJ3YWxsLnRoaWNrbmVzcyAqIDEwMFwiXHJcbiAgICAgIFttYXhWYWx1ZV09XCJtYXhXYWxsVGhpY2tuZXNzXCJcclxuICAgICAgdGl0bGU9XCJ7eydUSElDS05FU1MnIHwgbG9jYWxpemV9fVwiXHJcbiAgICAgIChkaW1lbnNpb25DaGFuZ2VkKT1cInNldFRoaWNrbmVzcy5lbWl0KCRldmVudCAvIDEwMClcIlxyXG4gICAgPlxyXG4gICAgPC9ycC1kaW1lbnNpb24taW5wdXQ+XHJcbiAgPC9kaXY+XHJcblxyXG4gIDxkaXYgKm5nSWY9XCJ2aWV3TW9kZVNlcnZpY2Uudmlld01vZGUgPT09IHZpZXdNb2Rlcy5Sb29tUGxhbjNEIHx8IHZpZXdNb2Rlcy5GbG9vclBsYW4yRFwiPlxyXG4gICAgPG1hdC1kaXZpZGVyPjwvbWF0LWRpdmlkZXI+XHJcblxyXG4gICAgPGgzIGNsYXNzPVwibWF0LXN1YmhlYWRpbmctMlwiPnt7J0FQUEVBUkFOQ0UnIHwgbG9jYWxpemV9fTwvaDM+XHJcbiAgICA8cnAtYXBwZWFyYW5jZS1zZWN0aW9uXHJcbiAgICAgIHR5cGU9XCJ3YWxsXCJcclxuICAgICAgW3RleHR1cmVQbGFuZV09XCJ0ZXh0dXJlUGxhbmVcIlxyXG4gICAgICBbY29sb3JdPVwiY29sb3JcIlxyXG4gICAgICBbdGV4dHVyZVdpZHRoXT1cIndhbGwubGVuZ3RoICogMTAwXCJcclxuICAgICAgW3RleHR1cmVIZWlnaHRdPVwid2FsbC5oZWlnaHQgKiAxMDBcIlxyXG4gICAgICBbcGhvdG9PcHRpb25zXT1cIk9wdGlvbnMuQm90aFwiXHJcbiAgICAgIChzZXRUZXh0dXJlKT1cInNldFRleHR1cmUuZW1pdCgkZXZlbnQpXCJcclxuICAgICAgKHNldENvbG9yKT1cInNldENvbG9yLmVtaXQoJGV2ZW50KVwiXHJcbiAgICA+XHJcbiAgICA8L3JwLWFwcGVhcmFuY2Utc2VjdGlvbj5cclxuICA8L2Rpdj5cclxuPC9zZWN0aW9uPlxyXG4iXX0=
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { Component, ElementRef, EventEmitter, HostListener, Output, ViewChild } from '@angular/core';
|
|
2
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../../../core/service/homedecorator-settings.service";
|
|
5
|
+
import * as i2 from "@angular/material/button";
|
|
6
|
+
import * as i3 from "@angular/material/icon";
|
|
7
|
+
import * as i4 from "@angular/material/slide-toggle";
|
|
8
|
+
import * as i5 from "../../../../core/pipe/localize.pipe";
|
|
9
|
+
export class SettingsOptionsComponent {
|
|
10
|
+
constructor(settingsService) {
|
|
11
|
+
this.settingsService = settingsService;
|
|
12
|
+
this.onclose = new EventEmitter();
|
|
13
|
+
this._enableMoveDialog = false;
|
|
14
|
+
}
|
|
15
|
+
moveDialog(event) {
|
|
16
|
+
if (this._enableMoveDialog) {
|
|
17
|
+
this.left += event.movementX;
|
|
18
|
+
this.top += event.movementY;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
cancelMoveDialog(event) {
|
|
22
|
+
this._enableMoveDialog = false;
|
|
23
|
+
}
|
|
24
|
+
handleTitleMouseDown(event) {
|
|
25
|
+
if (event.buttons === 1) {
|
|
26
|
+
if (this.dialogElement && this.dialogElement.nativeElement) {
|
|
27
|
+
const styles = getComputedStyle(this.dialogElement.nativeElement);
|
|
28
|
+
this.left = parseInt(styles.left, 0);
|
|
29
|
+
this.top = parseInt(styles.top, 0);
|
|
30
|
+
}
|
|
31
|
+
this._enableMoveDialog = true;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
hidePopup() {
|
|
35
|
+
this.onclose.next();
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
SettingsOptionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SettingsOptionsComponent, deps: [{ token: i1.HomedecoratorSettingsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
39
|
+
SettingsOptionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SettingsOptionsComponent, selector: "settings-options", outputs: { onclose: "onclose" }, host: { listeners: { "document:mousemove": "moveDialog($event)", "document:mouseup": "cancelMoveDialog($event)" } }, viewQueries: [{ propertyName: "dialogElement", first: true, predicate: ["dialog"], descendants: true, read: ElementRef, static: true }], ngImport: i0, template: `
|
|
40
|
+
<div class="edit-popup" #dialog @showHideDialog [style.top.px]="top" [style.left.px]="left">
|
|
41
|
+
<div class="title-bar">
|
|
42
|
+
<div class="title-bar-move" (mousedown)="handleTitleMouseDown($event)">
|
|
43
|
+
<div class="title-description" [textContent]="'OPTIONS' | localize"></div>
|
|
44
|
+
</div>
|
|
45
|
+
<button mat-icon-button class="hide-dialog" (click)="hidePopup()">
|
|
46
|
+
<mat-icon class="homedecorator-material-icons" aria-hidden="true">close</mat-icon>
|
|
47
|
+
</button>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="popup-content">
|
|
50
|
+
<span class="section-title" [textContent]="'GENERAL' | localize"></span>
|
|
51
|
+
<div class="section-content">
|
|
52
|
+
<span class="option-label key" [textContent]="'VR_ENABLED' | localize"></span>
|
|
53
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.vrEnabled"
|
|
54
|
+
(change)="settingsService.settings.options.vrEnabled = $event.checked"
|
|
55
|
+
></mat-slide-toggle>
|
|
56
|
+
<span class="option-label key" [textContent]="'AR_ENABLED' | localize"></span>
|
|
57
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.arEnabled"
|
|
58
|
+
(change)="settingsService.settings.options.arEnabled = $event.checked"
|
|
59
|
+
></mat-slide-toggle>
|
|
60
|
+
<span class="option-label key" [textContent]="'SHOW_DOWNLOAD_BUTTON' | localize"></span>
|
|
61
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.showDownloadButton"
|
|
62
|
+
(change)="settingsService.settings.options.showDownloadButton = $event.checked"
|
|
63
|
+
></mat-slide-toggle>
|
|
64
|
+
</div>
|
|
65
|
+
<span class="section-title" [textContent]="'CONFIGURATOR' | localize"></span>
|
|
66
|
+
<div class="section-content">
|
|
67
|
+
<span class="option-label key" [textContent]="'INLINE_ANSWERS' | localize"></span>
|
|
68
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.inlineAnswers"
|
|
69
|
+
(change)="settingsService.settings.options.inlineAnswers = $event.checked"
|
|
70
|
+
></mat-slide-toggle>
|
|
71
|
+
<span class="option-label key" [textContent]="'INSTANT_EDIT_MENU' | localize"></span>
|
|
72
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.instantEditMenu"
|
|
73
|
+
(change)="settingsService.settings.options.instantEditMenu = $event.checked"
|
|
74
|
+
></mat-slide-toggle>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
`, isInline: true, styles: [":host .edit-popup{position:fixed;min-height:200px;min-width:400px;top:50%;left:50%;transform:translate(-50%,-50%);background:white;box-shadow:0 0 5px 1px #00000080}:host .title-bar{display:flex;justify-content:space-between;background:#3760a1;color:#fff;padding-left:10px}:host .title-bar .title-bar-move{display:flex;flex-basis:100%;align-items:center}:host .title-bar .title-bar-move .title-description{-webkit-user-select:none;user-select:none}:host .title-bar mat-icon{color:#fff}:host .popup-content{padding:20px}:host .section-title{font-size:12px;font-weight:bold}:host .section-content{margin-top:10px;font-size:12px;display:grid;grid-template-columns:80% 20%}\n"], components: [{ type: i2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i4.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["disabled", "disableRipple", "color", "tabIndex", "name", "id", "labelPosition", "aria-label", "aria-labelledby", "required", "checked", "aria-describedby"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }], pipes: { "localize": i5.LocalizePipe }, animations: [
|
|
79
|
+
trigger('showHideDialog', [
|
|
80
|
+
state('void', style({ opacity: 0 })),
|
|
81
|
+
state('*', style({ opacity: 1 })),
|
|
82
|
+
transition('void <=> *', animate(200))
|
|
83
|
+
])
|
|
84
|
+
] });
|
|
85
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SettingsOptionsComponent, decorators: [{
|
|
86
|
+
type: Component,
|
|
87
|
+
args: [{
|
|
88
|
+
selector: 'settings-options',
|
|
89
|
+
template: `
|
|
90
|
+
<div class="edit-popup" #dialog @showHideDialog [style.top.px]="top" [style.left.px]="left">
|
|
91
|
+
<div class="title-bar">
|
|
92
|
+
<div class="title-bar-move" (mousedown)="handleTitleMouseDown($event)">
|
|
93
|
+
<div class="title-description" [textContent]="'OPTIONS' | localize"></div>
|
|
94
|
+
</div>
|
|
95
|
+
<button mat-icon-button class="hide-dialog" (click)="hidePopup()">
|
|
96
|
+
<mat-icon class="homedecorator-material-icons" aria-hidden="true">close</mat-icon>
|
|
97
|
+
</button>
|
|
98
|
+
</div>
|
|
99
|
+
<div class="popup-content">
|
|
100
|
+
<span class="section-title" [textContent]="'GENERAL' | localize"></span>
|
|
101
|
+
<div class="section-content">
|
|
102
|
+
<span class="option-label key" [textContent]="'VR_ENABLED' | localize"></span>
|
|
103
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.vrEnabled"
|
|
104
|
+
(change)="settingsService.settings.options.vrEnabled = $event.checked"
|
|
105
|
+
></mat-slide-toggle>
|
|
106
|
+
<span class="option-label key" [textContent]="'AR_ENABLED' | localize"></span>
|
|
107
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.arEnabled"
|
|
108
|
+
(change)="settingsService.settings.options.arEnabled = $event.checked"
|
|
109
|
+
></mat-slide-toggle>
|
|
110
|
+
<span class="option-label key" [textContent]="'SHOW_DOWNLOAD_BUTTON' | localize"></span>
|
|
111
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.showDownloadButton"
|
|
112
|
+
(change)="settingsService.settings.options.showDownloadButton = $event.checked"
|
|
113
|
+
></mat-slide-toggle>
|
|
114
|
+
</div>
|
|
115
|
+
<span class="section-title" [textContent]="'CONFIGURATOR' | localize"></span>
|
|
116
|
+
<div class="section-content">
|
|
117
|
+
<span class="option-label key" [textContent]="'INLINE_ANSWERS' | localize"></span>
|
|
118
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.inlineAnswers"
|
|
119
|
+
(change)="settingsService.settings.options.inlineAnswers = $event.checked"
|
|
120
|
+
></mat-slide-toggle>
|
|
121
|
+
<span class="option-label key" [textContent]="'INSTANT_EDIT_MENU' | localize"></span>
|
|
122
|
+
<mat-slide-toggle class="value" min="0" max="1" [checked]="settingsService.settings.options.instantEditMenu"
|
|
123
|
+
(change)="settingsService.settings.options.instantEditMenu = $event.checked"
|
|
124
|
+
></mat-slide-toggle>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
`,
|
|
129
|
+
styleUrls: [
|
|
130
|
+
'./settings-options.component.scss'
|
|
131
|
+
],
|
|
132
|
+
animations: [
|
|
133
|
+
trigger('showHideDialog', [
|
|
134
|
+
state('void', style({ opacity: 0 })),
|
|
135
|
+
state('*', style({ opacity: 1 })),
|
|
136
|
+
transition('void <=> *', animate(200))
|
|
137
|
+
])
|
|
138
|
+
]
|
|
139
|
+
}]
|
|
140
|
+
}], ctorParameters: function () { return [{ type: i1.HomedecoratorSettingsService }]; }, propDecorators: { dialogElement: [{
|
|
141
|
+
type: ViewChild,
|
|
142
|
+
args: ['dialog', { read: ElementRef, static: true }]
|
|
143
|
+
}], onclose: [{
|
|
144
|
+
type: Output
|
|
145
|
+
}], moveDialog: [{
|
|
146
|
+
type: HostListener,
|
|
147
|
+
args: ['document:mousemove', ['$event']]
|
|
148
|
+
}], cancelMoveDialog: [{
|
|
149
|
+
type: HostListener,
|
|
150
|
+
args: ['document:mouseup', ['$event']]
|
|
151
|
+
}] } });
|
|
152
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2V0dGluZ3Mtb3B0aW9ucy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvY2xpZW50L2FwcC9wbHVnaW5zL3Jvb20tcGxhbm5lci9jb21wb25lbnRzL3NldHRpbmdzL3NldHRpbmdzLW9wdGlvbnMuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsVUFBVSxFQUFFLFlBQVksRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNuRyxPQUFPLEVBQUMsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDOzs7Ozs7O0FBeUQvRSxNQUFNLE9BQU8sd0JBQXdCO0lBeUJuQyxZQUFtQixlQUE2QztRQUE3QyxvQkFBZSxHQUFmLGVBQWUsQ0FBOEI7UUFwQnpELFlBQU8sR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUt0RCxzQkFBaUIsR0FBWSxLQUFLLENBQUM7SUFnQjNDLENBQUM7SUFiTSxVQUFVLENBQUMsS0FBaUI7UUFDakMsSUFBSSxJQUFJLENBQUMsaUJBQWlCLEVBQUU7WUFDMUIsSUFBSSxDQUFDLElBQUksSUFBSSxLQUFLLENBQUMsU0FBUyxDQUFDO1lBQzdCLElBQUksQ0FBQyxHQUFHLElBQUksS0FBSyxDQUFDLFNBQVMsQ0FBQztTQUM3QjtJQUNILENBQUM7SUFHTSxnQkFBZ0IsQ0FBQyxLQUFpQjtRQUN2QyxJQUFJLENBQUMsaUJBQWlCLEdBQUcsS0FBSyxDQUFDO0lBQ2pDLENBQUM7SUFLTSxvQkFBb0IsQ0FBQyxLQUFpQjtRQUMzQyxJQUFJLEtBQUssQ0FBQyxPQUFPLEtBQUssQ0FBQyxFQUFFO1lBQ3ZCLElBQUksSUFBSSxDQUFDLGFBQWEsSUFBSSxJQUFJLENBQUMsYUFBYSxDQUFDLGFBQWEsRUFBRTtnQkFDMUQsTUFBTSxNQUFNLEdBQUcsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsQ0FBQztnQkFDbEUsSUFBSSxDQUFDLElBQUksR0FBRyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQztnQkFDckMsSUFBSSxDQUFDLEdBQUcsR0FBRyxRQUFRLENBQUMsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQzthQUNwQztZQUNELElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUM7U0FDL0I7SUFDSCxDQUFDO0lBRU0sU0FBUztRQUNkLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDdEIsQ0FBQzs7c0hBekNVLHdCQUF3QjswR0FBeEIsd0JBQXdCLGtTQUNOLFVBQVUsMkNBckQ3Qjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBdUNULGc5Q0FJVztRQUNWLE9BQU8sQ0FBQyxnQkFBZ0IsRUFBRTtZQUN4QixLQUFLLENBQUMsTUFBTSxFQUFFLEtBQUssQ0FBQyxFQUFDLE9BQU8sRUFBRSxDQUFDLEVBQUMsQ0FBQyxDQUFDO1lBQ2xDLEtBQUssQ0FBQyxHQUFHLEVBQUUsS0FBSyxDQUFDLEVBQUMsT0FBTyxFQUFFLENBQUMsRUFBQyxDQUFDLENBQUM7WUFDL0IsVUFBVSxDQUFDLFlBQVksRUFBRSxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUM7U0FDdkMsQ0FBQztLQUNIOzRGQUdVLHdCQUF3QjtrQkF0RHBDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGtCQUFrQjtvQkFDNUIsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0F1Q1Q7b0JBQ0QsU0FBUyxFQUFFO3dCQUNULG1DQUFtQztxQkFDcEM7b0JBQ0QsVUFBVSxFQUFFO3dCQUNWLE9BQU8sQ0FBQyxnQkFBZ0IsRUFBRTs0QkFDeEIsS0FBSyxDQUFDLE1BQU0sRUFBRSxLQUFLLENBQUMsRUFBQyxPQUFPLEVBQUUsQ0FBQyxFQUFDLENBQUMsQ0FBQzs0QkFDbEMsS0FBSyxDQUFDLEdBQUcsRUFBRSxLQUFLLENBQUMsRUFBQyxPQUFPLEVBQUUsQ0FBQyxFQUFDLENBQUMsQ0FBQzs0QkFDL0IsVUFBVSxDQUFDLFlBQVksRUFBRSxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUM7eUJBQ3ZDLENBQUM7cUJBQ0g7aUJBQ0Y7bUhBSVEsYUFBYTtzQkFEbkIsU0FBUzt1QkFBQyxRQUFRLEVBQUUsRUFBRSxJQUFJLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUU7Z0JBSWhELE9BQU87c0JBRGIsTUFBTTtnQkFTQSxVQUFVO3NCQURoQixZQUFZO3VCQUFDLG9CQUFvQixFQUFFLENBQUMsUUFBUSxDQUFDO2dCQVN2QyxnQkFBZ0I7c0JBRHRCLFlBQVk7dUJBQUMsa0JBQWtCLEVBQUUsQ0FBQyxRQUFRLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgRWxlbWVudFJlZiwgRXZlbnRFbWl0dGVyLCBIb3N0TGlzdGVuZXIsIE91dHB1dCwgVmlld0NoaWxkfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHthbmltYXRlLCBzdGF0ZSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXJ9IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xyXG5pbXBvcnQge0hvbWVkZWNvcmF0b3JTZXR0aW5nc1NlcnZpY2V9IGZyb20gJy4uLy4uLy4uLy4uL2NvcmUvc2VydmljZS9ob21lZGVjb3JhdG9yLXNldHRpbmdzLnNlcnZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdzZXR0aW5ncy1vcHRpb25zJyxcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGRpdiBjbGFzcz1cImVkaXQtcG9wdXBcIiAjZGlhbG9nIEBzaG93SGlkZURpYWxvZyBbc3R5bGUudG9wLnB4XT1cInRvcFwiIFtzdHlsZS5sZWZ0LnB4XT1cImxlZnRcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cInRpdGxlLWJhclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0aXRsZS1iYXItbW92ZVwiIChtb3VzZWRvd24pPVwiaGFuZGxlVGl0bGVNb3VzZURvd24oJGV2ZW50KVwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cInRpdGxlLWRlc2NyaXB0aW9uXCIgW3RleHRDb250ZW50XT1cIidPUFRJT05TJyB8IGxvY2FsaXplXCI+PC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gY2xhc3M9XCJoaWRlLWRpYWxvZ1wiIChjbGljayk9XCJoaWRlUG9wdXAoKVwiPlxyXG4gICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiIGFyaWEtaGlkZGVuPVwidHJ1ZVwiPmNsb3NlPC9tYXQtaWNvbj5cclxuICAgICAgICA8L2J1dHRvbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJwb3B1cC1jb250ZW50XCI+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJzZWN0aW9uLXRpdGxlXCIgW3RleHRDb250ZW50XT1cIidHRU5FUkFMJyB8IGxvY2FsaXplXCI+PC9zcGFuPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJzZWN0aW9uLWNvbnRlbnRcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwib3B0aW9uLWxhYmVsIGtleVwiIFt0ZXh0Q29udGVudF09XCInVlJfRU5BQkxFRCcgfCBsb2NhbGl6ZVwiPjwvc3Bhbj5cclxuICAgICAgICAgIDxtYXQtc2xpZGUtdG9nZ2xlIGNsYXNzPVwidmFsdWVcIiBtaW49XCIwXCIgbWF4PVwiMVwiIFtjaGVja2VkXT1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5vcHRpb25zLnZyRW5hYmxlZFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAoY2hhbmdlKT1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5vcHRpb25zLnZyRW5hYmxlZCA9ICRldmVudC5jaGVja2VkXCJcclxuICAgICAgICAgID48L21hdC1zbGlkZS10b2dnbGU+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cIm9wdGlvbi1sYWJlbCBrZXlcIiBbdGV4dENvbnRlbnRdPVwiJ0FSX0VOQUJMRUQnIHwgbG9jYWxpemVcIj48L3NwYW4+XHJcbiAgICAgICAgICA8bWF0LXNsaWRlLXRvZ2dsZSBjbGFzcz1cInZhbHVlXCIgbWluPVwiMFwiIG1heD1cIjFcIiBbY2hlY2tlZF09XCJzZXR0aW5nc1NlcnZpY2Uuc2V0dGluZ3Mub3B0aW9ucy5hckVuYWJsZWRcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNoYW5nZSk9XCJzZXR0aW5nc1NlcnZpY2Uuc2V0dGluZ3Mub3B0aW9ucy5hckVuYWJsZWQgPSAkZXZlbnQuY2hlY2tlZFwiXHJcbiAgICAgICAgICA+PC9tYXQtc2xpZGUtdG9nZ2xlPlxyXG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJvcHRpb24tbGFiZWwga2V5XCIgW3RleHRDb250ZW50XT1cIidTSE9XX0RPV05MT0FEX0JVVFRPTicgfCBsb2NhbGl6ZVwiPjwvc3Bhbj5cclxuICAgICAgICAgIDxtYXQtc2xpZGUtdG9nZ2xlIGNsYXNzPVwidmFsdWVcIiBtaW49XCIwXCIgbWF4PVwiMVwiIFtjaGVja2VkXT1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5vcHRpb25zLnNob3dEb3dubG9hZEJ1dHRvblwiXHJcbiAgICAgICAgICAgIChjaGFuZ2UpPVwic2V0dGluZ3NTZXJ2aWNlLnNldHRpbmdzLm9wdGlvbnMuc2hvd0Rvd25sb2FkQnV0dG9uID0gJGV2ZW50LmNoZWNrZWRcIlxyXG4gICAgICAgICAgPjwvbWF0LXNsaWRlLXRvZ2dsZT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8c3BhbiBjbGFzcz1cInNlY3Rpb24tdGl0bGVcIiBbdGV4dENvbnRlbnRdPVwiJ0NPTkZJR1VSQVRPUicgfCBsb2NhbGl6ZVwiPjwvc3Bhbj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwic2VjdGlvbi1jb250ZW50XCI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cIm9wdGlvbi1sYWJlbCBrZXlcIiBbdGV4dENvbnRlbnRdPVwiJ0lOTElORV9BTlNXRVJTJyB8IGxvY2FsaXplXCI+PC9zcGFuPlxyXG4gICAgICAgICAgPG1hdC1zbGlkZS10b2dnbGUgY2xhc3M9XCJ2YWx1ZVwiIG1pbj1cIjBcIiBtYXg9XCIxXCIgW2NoZWNrZWRdPVwic2V0dGluZ3NTZXJ2aWNlLnNldHRpbmdzLm9wdGlvbnMuaW5saW5lQW5zd2Vyc1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAoY2hhbmdlKT1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5vcHRpb25zLmlubGluZUFuc3dlcnMgPSAkZXZlbnQuY2hlY2tlZFwiXHJcbiAgICAgICAgICA+PC9tYXQtc2xpZGUtdG9nZ2xlPlxyXG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJvcHRpb24tbGFiZWwga2V5XCIgW3RleHRDb250ZW50XT1cIidJTlNUQU5UX0VESVRfTUVOVScgfCBsb2NhbGl6ZVwiPjwvc3Bhbj5cclxuICAgICAgICAgIDxtYXQtc2xpZGUtdG9nZ2xlIGNsYXNzPVwidmFsdWVcIiBtaW49XCIwXCIgbWF4PVwiMVwiIFtjaGVja2VkXT1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5vcHRpb25zLmluc3RhbnRFZGl0TWVudVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAoY2hhbmdlKT1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5vcHRpb25zLmluc3RhbnRFZGl0TWVudSA9ICRldmVudC5jaGVja2VkXCJcclxuICAgICAgICAgID48L21hdC1zbGlkZS10b2dnbGU+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgYCxcclxuICBzdHlsZVVybHM6IFtcclxuICAgICcuL3NldHRpbmdzLW9wdGlvbnMuY29tcG9uZW50LnNjc3MnXHJcbiAgXSxcclxuICBhbmltYXRpb25zOiBbXHJcbiAgICB0cmlnZ2VyKCdzaG93SGlkZURpYWxvZycsIFtcclxuICAgICAgc3RhdGUoJ3ZvaWQnLCBzdHlsZSh7b3BhY2l0eTogMH0pKSxcclxuICAgICAgc3RhdGUoJyonLCBzdHlsZSh7b3BhY2l0eTogMX0pKSxcclxuICAgICAgdHJhbnNpdGlvbigndm9pZCA8PT4gKicsIGFuaW1hdGUoMjAwKSlcclxuICAgIF0pXHJcbiAgXVxyXG59KVxyXG5cclxuZXhwb3J0IGNsYXNzIFNldHRpbmdzT3B0aW9uc0NvbXBvbmVudCB7XHJcbiAgQFZpZXdDaGlsZCgnZGlhbG9nJywgeyByZWFkOiBFbGVtZW50UmVmLCBzdGF0aWM6IHRydWUgfSlcclxuICBwdWJsaWMgZGlhbG9nRWxlbWVudDogRWxlbWVudFJlZjtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIG9uY2xvc2U6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgcHVibGljIHRvcDogbnVtYmVyO1xyXG4gIHB1YmxpYyBsZWZ0OiBudW1iZXI7XHJcblxyXG4gIHByaXZhdGUgX2VuYWJsZU1vdmVEaWFsb2c6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQEhvc3RMaXN0ZW5lcignZG9jdW1lbnQ6bW91c2Vtb3ZlJywgWyckZXZlbnQnXSlcclxuICBwdWJsaWMgbW92ZURpYWxvZyhldmVudDogTW91c2VFdmVudCk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMuX2VuYWJsZU1vdmVEaWFsb2cpIHtcclxuICAgICAgdGhpcy5sZWZ0ICs9IGV2ZW50Lm1vdmVtZW50WDtcclxuICAgICAgdGhpcy50b3AgKz0gZXZlbnQubW92ZW1lbnRZO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgQEhvc3RMaXN0ZW5lcignZG9jdW1lbnQ6bW91c2V1cCcsIFsnJGV2ZW50J10pXHJcbiAgcHVibGljIGNhbmNlbE1vdmVEaWFsb2coZXZlbnQ6IE1vdXNlRXZlbnQpOiB2b2lkIHtcclxuICAgIHRoaXMuX2VuYWJsZU1vdmVEaWFsb2cgPSBmYWxzZTtcclxuICB9XHJcblxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBzZXR0aW5nc1NlcnZpY2U6IEhvbWVkZWNvcmF0b3JTZXR0aW5nc1NlcnZpY2UpIHtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVUaXRsZU1vdXNlRG93bihldmVudDogTW91c2VFdmVudCk6IHZvaWQge1xyXG4gICAgaWYgKGV2ZW50LmJ1dHRvbnMgPT09IDEpIHtcclxuICAgICAgaWYgKHRoaXMuZGlhbG9nRWxlbWVudCAmJiB0aGlzLmRpYWxvZ0VsZW1lbnQubmF0aXZlRWxlbWVudCkge1xyXG4gICAgICAgIGNvbnN0IHN0eWxlcyA9IGdldENvbXB1dGVkU3R5bGUodGhpcy5kaWFsb2dFbGVtZW50Lm5hdGl2ZUVsZW1lbnQpO1xyXG4gICAgICAgIHRoaXMubGVmdCA9IHBhcnNlSW50KHN0eWxlcy5sZWZ0LCAwKTtcclxuICAgICAgICB0aGlzLnRvcCA9IHBhcnNlSW50KHN0eWxlcy50b3AsIDApO1xyXG4gICAgICB9XHJcbiAgICAgIHRoaXMuX2VuYWJsZU1vdmVEaWFsb2cgPSB0cnVlO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcHVibGljIGhpZGVQb3B1cCgpOiB2b2lkIHtcclxuICAgIHRoaXMub25jbG9zZS5uZXh0KCk7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|