@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,467 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
|
|
11
|
+
import { AlphaFormat, ByteType, ClampToEdgeWrapping, CubeReflectionMapping, CubeRefractionMapping, CubeUVReflectionMapping, DepthFormat, DepthStencilFormat, EquirectangularReflectionMapping, EquirectangularRefractionMapping, FloatType, HalfFloatType, IntType, LinearFilter, LinearMipMapLinearFilter, LinearMipmapLinearFilter, LinearMipMapNearestFilter, LinearMipmapNearestFilter, LuminanceAlphaFormat, LuminanceFormat, MirroredRepeatWrapping, NearestFilter, NearestMipMapLinearFilter, NearestMipmapLinearFilter, NearestMipMapNearestFilter, NearestMipmapNearestFilter, RedFormat, RedIntegerFormat, RepeatWrapping, RGBAFormat, RGBAIntegerFormat, RGFormat, RGIntegerFormat, ShortType, SRGBColorSpace, TextureLoader, UnsignedByteType, UnsignedInt248Type, UnsignedIntType, UnsignedShort4444Type, UnsignedShort5551Type, UnsignedShortType, UVMapping } from 'three';
|
|
12
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
13
|
+
import { LinearSRGBColorSpace } from 'three/src/constants';
|
|
14
|
+
import { IconEnum } from '../../core/enum/icon.enum';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
16
|
+
import * as i1 from "../../core/service/homedecorator-icon-cache.service";
|
|
17
|
+
import * as i2 from "../../plugins/core3d/service/scene.service";
|
|
18
|
+
import * as i3 from "@colijnit/corecomponents";
|
|
19
|
+
import * as i4 from "@angular/material/form-field";
|
|
20
|
+
import * as i5 from "@angular/material/select";
|
|
21
|
+
import * as i6 from "@angular/material/core";
|
|
22
|
+
import * as i7 from "@angular/common";
|
|
23
|
+
import * as i8 from "@angular/forms";
|
|
24
|
+
export class SelectedChildMaterialTextureComponent {
|
|
25
|
+
constructor(iconService, _sceneService) {
|
|
26
|
+
this.iconService = iconService;
|
|
27
|
+
this._sceneService = _sceneService;
|
|
28
|
+
this.icon = IconEnum;
|
|
29
|
+
this.mapChange = new EventEmitter();
|
|
30
|
+
this.mappingList = [
|
|
31
|
+
{ id: UVMapping, description: 'UVMapping' },
|
|
32
|
+
{ id: CubeReflectionMapping, description: 'CubeReflectionMapping' },
|
|
33
|
+
{ id: CubeRefractionMapping, description: 'CubeRefractionMapping' },
|
|
34
|
+
{ id: EquirectangularReflectionMapping, description: 'EquirectangularReflectionMapping' },
|
|
35
|
+
{ id: EquirectangularRefractionMapping, description: 'EquirectangularRefractionMapping' },
|
|
36
|
+
{ id: CubeUVReflectionMapping, description: 'CubeUVReflectionMapping' }
|
|
37
|
+
];
|
|
38
|
+
this.textureFilterList = [
|
|
39
|
+
{ id: NearestFilter, description: 'NearestFilter' },
|
|
40
|
+
{ id: NearestMipmapNearestFilter, description: 'NearestMipmapNearestFilter' },
|
|
41
|
+
{ id: NearestMipMapNearestFilter, description: 'NearestMipMapNearestFilter' },
|
|
42
|
+
{ id: NearestMipmapLinearFilter, description: 'NearestMipmapLinearFilter' },
|
|
43
|
+
{ id: NearestMipMapLinearFilter, description: 'NearestMipMapLinearFilter' },
|
|
44
|
+
{ id: LinearFilter, description: 'LinearFilter' },
|
|
45
|
+
{ id: LinearMipmapNearestFilter, description: 'LinearMipmapNearestFilter' },
|
|
46
|
+
{ id: LinearMipMapNearestFilter, description: 'LinearMipMapNearestFilter' },
|
|
47
|
+
{ id: LinearMipmapLinearFilter, description: 'LinearMipmapLinearFilter' },
|
|
48
|
+
{ id: LinearMipMapLinearFilter, description: 'LinearMipMapLinearFilter' }
|
|
49
|
+
];
|
|
50
|
+
this.textureEncodingList = [
|
|
51
|
+
{ id: LinearSRGBColorSpace, description: 'LinearSRGBColorSpace' },
|
|
52
|
+
{ id: SRGBColorSpace, description: 'SRGBColorSpace' }
|
|
53
|
+
// {id: LogLuvEncoding, description: 'LogLuvEncoding'},
|
|
54
|
+
];
|
|
55
|
+
this.pixelFormatList = [
|
|
56
|
+
{ id: AlphaFormat, description: 'AlphaFormat' },
|
|
57
|
+
{ id: RGBAFormat, description: 'RGBAFormat' },
|
|
58
|
+
{ id: LuminanceFormat, description: 'LuminanceFormat' },
|
|
59
|
+
{ id: LuminanceAlphaFormat, description: 'LuminanceAlphaFormat' },
|
|
60
|
+
{ id: DepthFormat, description: 'DepthFormat' },
|
|
61
|
+
{ id: DepthStencilFormat, description: 'DepthStencilFormat' },
|
|
62
|
+
{ id: RedFormat, description: 'RedFormat' },
|
|
63
|
+
{ id: RedIntegerFormat, description: 'RedIntegerFormat' },
|
|
64
|
+
{ id: RGFormat, description: 'RGFormat' },
|
|
65
|
+
{ id: RGIntegerFormat, description: 'RGIntegerFormat' },
|
|
66
|
+
{ id: RGBAIntegerFormat, description: 'RGBAIntegerFormat' }
|
|
67
|
+
];
|
|
68
|
+
this.typeList = [
|
|
69
|
+
{ id: UnsignedByteType, description: 'UnsignedByteType' },
|
|
70
|
+
{ id: ByteType, description: 'ByteType' },
|
|
71
|
+
{ id: ShortType, description: 'ShortType' },
|
|
72
|
+
{ id: UnsignedShortType, description: 'UnsignedShortType' },
|
|
73
|
+
{ id: IntType, description: 'IntType' },
|
|
74
|
+
{ id: UnsignedIntType, description: 'UnsignedIntType' },
|
|
75
|
+
{ id: FloatType, description: 'FloatType' },
|
|
76
|
+
{ id: HalfFloatType, description: 'HalfFloatType' },
|
|
77
|
+
{ id: UnsignedShort4444Type, description: 'UnsignedShort4444Type' },
|
|
78
|
+
{ id: UnsignedShort5551Type, description: 'UnsignedShort5551Type' },
|
|
79
|
+
{ id: UnsignedInt248Type, description: 'UnsignedInt248Type' }
|
|
80
|
+
];
|
|
81
|
+
this.wrappingList = [
|
|
82
|
+
{ id: RepeatWrapping, description: 'RepeatWrapping' },
|
|
83
|
+
{ id: ClampToEdgeWrapping, description: 'ClampToEdgeWrapping' },
|
|
84
|
+
{ id: MirroredRepeatWrapping, description: 'MirroredRepeatWrapping' }
|
|
85
|
+
];
|
|
86
|
+
this.showContent = false;
|
|
87
|
+
this.showZoomImage = false;
|
|
88
|
+
}
|
|
89
|
+
set map(value) {
|
|
90
|
+
this._map = value;
|
|
91
|
+
if (this._map && this._map.image) {
|
|
92
|
+
this._loadedImage = this.map.image;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
get map() {
|
|
96
|
+
return this._map;
|
|
97
|
+
}
|
|
98
|
+
showLargeImage() {
|
|
99
|
+
if (this.map.image && this.map.image.currentSrc) {
|
|
100
|
+
this.viewImageSrc = this.map.image.currentSrc;
|
|
101
|
+
this.showZoomImage = true;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
hideZoomImage(event) {
|
|
105
|
+
event.preventDefault();
|
|
106
|
+
event.stopPropagation();
|
|
107
|
+
event.stopImmediatePropagation();
|
|
108
|
+
this.viewImageSrc = undefined;
|
|
109
|
+
this.showZoomImage = false;
|
|
110
|
+
}
|
|
111
|
+
uploadImage(map) {
|
|
112
|
+
if (this.input && this.input.nativeElement) {
|
|
113
|
+
this.input.nativeElement.click();
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
render() {
|
|
117
|
+
this.mapChange.next(this.map);
|
|
118
|
+
this._sceneService.needsRender = true;
|
|
119
|
+
}
|
|
120
|
+
changeFlip(value) {
|
|
121
|
+
this.map.flipY = value;
|
|
122
|
+
if (this.map.image) {
|
|
123
|
+
this._reloadImage(this.map.image.currentSrc);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
handleFileChange(event) {
|
|
127
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
128
|
+
if (event && event.target && event.target.files && event.target.files.length === 1) {
|
|
129
|
+
const reader = new FileReader();
|
|
130
|
+
const file = event.target.files[0];
|
|
131
|
+
reader.readAsDataURL(file);
|
|
132
|
+
reader.onloadend = (loadEvent) => __awaiter(this, void 0, void 0, function* () {
|
|
133
|
+
if (loadEvent.target.readyState === 2) {
|
|
134
|
+
this._reloadImage(loadEvent.target.result);
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
deleteMap() {
|
|
141
|
+
if (this.map) {
|
|
142
|
+
this.map.dispose();
|
|
143
|
+
this.map = undefined;
|
|
144
|
+
}
|
|
145
|
+
// this.map = new Texture();
|
|
146
|
+
// this.map.needsUpdate = true;
|
|
147
|
+
this.mapChange.next(this.map);
|
|
148
|
+
}
|
|
149
|
+
_reloadImage(src) {
|
|
150
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
151
|
+
let newMap;
|
|
152
|
+
const texture = yield this._loadTexture(src);
|
|
153
|
+
if (this.map) {
|
|
154
|
+
newMap = this.map.clone();
|
|
155
|
+
newMap.image = texture.image;
|
|
156
|
+
this.map.dispose();
|
|
157
|
+
}
|
|
158
|
+
else {
|
|
159
|
+
newMap = texture;
|
|
160
|
+
}
|
|
161
|
+
this.map = newMap;
|
|
162
|
+
this.map.needsUpdate = true;
|
|
163
|
+
this.mapChange.next(this.map);
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
_loadTexture(src) {
|
|
167
|
+
return new Promise((resolve) => {
|
|
168
|
+
const loader = new TextureLoader();
|
|
169
|
+
loader.load(src, (texture) => {
|
|
170
|
+
resolve(texture);
|
|
171
|
+
});
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
SelectedChildMaterialTextureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SelectedChildMaterialTextureComponent, deps: [{ token: i1.HomedecoratorIconCacheService }, { token: i2.SceneService }], target: i0.ɵɵFactoryTarget.Component });
|
|
176
|
+
SelectedChildMaterialTextureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SelectedChildMaterialTextureComponent, selector: "development-selected-child-material-texture", inputs: { map: "map", title: "title" }, outputs: { mapChange: "mapChange" }, viewQueries: [{ propertyName: "input", first: true, predicate: ["inputFile"], descendants: true, static: true }], ngImport: i0, template: `
|
|
177
|
+
<div class="map-title-wrapper">
|
|
178
|
+
<div class="map-title" [textContent]="title"></div>
|
|
179
|
+
<div class="collapse-wrapper">
|
|
180
|
+
<div class="collapse-handle" [class.expanded]="showContent" *ngIf="map" (click)="showContent = !showContent">
|
|
181
|
+
<co-icon class="collapse-handle-icon" [iconData]="iconService.getIcon(icon.ArrowPointDown)"></co-icon>
|
|
182
|
+
</div>
|
|
183
|
+
<div class="zoom-button" [class.expanded]="showContent" *ngIf="map" (click)="showLargeImage()">
|
|
184
|
+
<co-icon [iconData]="iconService.getIcon(icon.Magnifier)"></co-icon>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="delete-button" *ngIf="map" (click)="deleteMap()">
|
|
187
|
+
<co-icon [iconData]="iconService.getIcon(icon.Cross)"></co-icon>
|
|
188
|
+
</div>
|
|
189
|
+
<div class="map-image" (click)="uploadImage('map')">
|
|
190
|
+
<div class="no-image" *ngIf="!map || !map.image || !map.image.currentSrc"></div>
|
|
191
|
+
<img class="value" *ngIf="map && map.image && map.image.currentSrc" [src]="map.image.currentSrc">
|
|
192
|
+
</div>
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
<div class="map-content" *ngIf="showContent" @showHideMapContent>
|
|
196
|
+
<div class="label" [textContent]="'anisotrophy'"></div>
|
|
197
|
+
<div class="value">
|
|
198
|
+
<input type="number" [(ngModel)]="map.anisotropy" (ngModelChange)="render()">
|
|
199
|
+
</div>
|
|
200
|
+
<div class="label" [textContent]="'center'"></div>
|
|
201
|
+
<div class="value">
|
|
202
|
+
<span>x:</span><input type="number" [(ngModel)]="map.center.x" (ngModelChange)="render()">
|
|
203
|
+
<span>y:</span><input type="number" [(ngModel)]="map.center.y" (ngModelChange)="render()">
|
|
204
|
+
</div>
|
|
205
|
+
<div class="label" [textContent]="'encoding'"></div>
|
|
206
|
+
<!-- <mat-form-field class="value">-->
|
|
207
|
+
<!-- <mat-select [(value)]="map.encoding">-->
|
|
208
|
+
<!-- <mat-option *ngFor="let encoding of textureEncodingList" [value]="encoding.id" (click)="render()">-->
|
|
209
|
+
<!-- {{ encoding.description }}-->
|
|
210
|
+
<!-- </mat-option>-->
|
|
211
|
+
<!-- </mat-select>-->
|
|
212
|
+
<!-- </mat-form-field>-->
|
|
213
|
+
<div class="label" [textContent]="'flipY'"></div>
|
|
214
|
+
<div class="value">
|
|
215
|
+
<input type="checkbox" [ngModel]="map.flipY" (ngModelChange)="changeFlip($event)">
|
|
216
|
+
</div>
|
|
217
|
+
<div class="label" [textContent]="'format'"></div>
|
|
218
|
+
<mat-form-field class="value">
|
|
219
|
+
<mat-select [(value)]="map.format">
|
|
220
|
+
<mat-option *ngFor="let format of pixelFormatList" [value]="format.id" (click)="render()">
|
|
221
|
+
{{ format.description }}
|
|
222
|
+
</mat-option>
|
|
223
|
+
</mat-select>
|
|
224
|
+
</mat-form-field>
|
|
225
|
+
<div class="label" [textContent]="'generateMipmaps'"></div>
|
|
226
|
+
<div class="value">
|
|
227
|
+
<input type="checkbox" [(ngModel)]="map.generateMipmaps" (ngModelChange)="render()">
|
|
228
|
+
</div>
|
|
229
|
+
<div class="label" [textContent]="'magFilter'"></div>
|
|
230
|
+
<mat-form-field class="value">
|
|
231
|
+
<mat-select [(value)]="map.magFilter">
|
|
232
|
+
<mat-option *ngFor="let filter of textureFilterList" [value]="filter.id" (click)="render()">
|
|
233
|
+
{{ filter.description }}
|
|
234
|
+
</mat-option>
|
|
235
|
+
</mat-select>
|
|
236
|
+
</mat-form-field>
|
|
237
|
+
<div class="label" [textContent]="'mapping'"></div>
|
|
238
|
+
<mat-form-field class="value">
|
|
239
|
+
<mat-select [(value)]="map.mapping">
|
|
240
|
+
<mat-option *ngFor="let mapping of mappingList" [value]="mapping.id" (click)="render()">
|
|
241
|
+
{{ mapping.description }}
|
|
242
|
+
</mat-option>
|
|
243
|
+
</mat-select>
|
|
244
|
+
</mat-form-field>
|
|
245
|
+
<div class="label" [textContent]="'minFilter'"></div>
|
|
246
|
+
<mat-form-field class="value">
|
|
247
|
+
<mat-select [(value)]="map.minFilter">
|
|
248
|
+
<mat-option *ngFor="let filter of textureFilterList" [value]="filter.id" (click)="render()">
|
|
249
|
+
{{ filter.description }}
|
|
250
|
+
</mat-option>
|
|
251
|
+
</mat-select>
|
|
252
|
+
</mat-form-field>
|
|
253
|
+
<div class="label" [textContent]="'offset'"></div>
|
|
254
|
+
<div class="value">
|
|
255
|
+
<span>x:</span><input type="number" [(ngModel)]="map.offset.x" [min]="0" [max]="1" [step]="0.01" (ngModelChange)="render()">
|
|
256
|
+
<span>y:</span><input type="number" [(ngModel)]="map.offset.y" [min]="0" [max]="1" [step]="0.01" (ngModelChange)="render()">
|
|
257
|
+
</div>
|
|
258
|
+
<div class="label" [textContent]="'premultiplyAlpha'"></div>
|
|
259
|
+
<div class="value">
|
|
260
|
+
<input type="checkbox" [(ngModel)]="map.premultiplyAlpha" (ngModelChange)="render()">
|
|
261
|
+
</div>
|
|
262
|
+
<div class="label" [textContent]="'repeat'"></div>
|
|
263
|
+
<div class="value">
|
|
264
|
+
<span>x:</span><input type="number" [(ngModel)]="map.repeat.x" [min]="0" [step]="0.01" (ngModelChange)="render()">
|
|
265
|
+
<span>y:</span><input type="number" [(ngModel)]="map.repeat.y" [min]="0" [step]="0.01" (ngModelChange)="render()">
|
|
266
|
+
</div>
|
|
267
|
+
<div class="label" [textContent]="'rotation'"></div>
|
|
268
|
+
<div class="value">
|
|
269
|
+
<input type="number" [(ngModel)]="map.rotation" [step]="0.01" (ngModelChange)="render()">
|
|
270
|
+
</div>
|
|
271
|
+
<div class="label" [textContent]="'type'"></div>
|
|
272
|
+
<mat-form-field class="value">
|
|
273
|
+
<mat-select [(value)]="map.type">
|
|
274
|
+
<mat-option *ngFor="let type of typeList" [value]="type.id" (click)="render()">
|
|
275
|
+
{{ type.description }}
|
|
276
|
+
</mat-option>
|
|
277
|
+
</mat-select>
|
|
278
|
+
</mat-form-field>
|
|
279
|
+
<div class="label" [textContent]="'wrapS'"></div>
|
|
280
|
+
<mat-form-field class="value">
|
|
281
|
+
<mat-select [(value)]="map.wrapS">
|
|
282
|
+
<mat-option *ngFor="let wrapping of wrappingList" [value]="wrapping.id" (click)="render()">
|
|
283
|
+
{{ wrapping.description }}
|
|
284
|
+
</mat-option>
|
|
285
|
+
</mat-select>
|
|
286
|
+
</mat-form-field>
|
|
287
|
+
<div class="label" [textContent]="'wrapT'"></div>
|
|
288
|
+
<mat-form-field class="value">
|
|
289
|
+
<mat-select [(value)]="map.wrapT">
|
|
290
|
+
<mat-option *ngFor="let wrapping of wrappingList" [value]="wrapping.id" (click)="render()">
|
|
291
|
+
{{ wrapping.description }}
|
|
292
|
+
</mat-option>
|
|
293
|
+
</mat-select>
|
|
294
|
+
</mat-form-field>
|
|
295
|
+
</div>
|
|
296
|
+
<div class="large-image-viewer" *ngIf="showZoomImage && viewImageSrc" (click)="hideZoomImage($event)">
|
|
297
|
+
<div class="large-image-viewer-content">
|
|
298
|
+
<img [src]="viewImageSrc">
|
|
299
|
+
<div class="large-image-viewer-close" (click)="hideZoomImage($event)">
|
|
300
|
+
<co-icon [iconData]="iconService.getIcon(icon.Cross)"></co-icon>
|
|
301
|
+
</div>
|
|
302
|
+
</div>
|
|
303
|
+
</div>
|
|
304
|
+
<input #inputFile [accept]="'image/*'" (change)="handleFileChange($event)" type="file" hidden/>
|
|
305
|
+
`, isInline: true, styles: [".map-title-wrapper{display:flex;flex-direction:row;justify-content:space-between;height:30px}.map-title-wrapper .map-title{display:flex;align-items:center;font-size:12px}.map-title-wrapper .map-title img{height:30px;width:30px}.map-title-wrapper .collapse-wrapper{display:flex;flex-direction:row;grid-column-gap:10px;column-gap:10px}.map-title-wrapper .collapse-wrapper .collapse-handle.expanded{transition:all .2s}.map-title-wrapper .collapse-wrapper .collapse-handle.expanded .collapse-handle-icon{transform:rotate(180deg)}.map-title-wrapper img{height:30px;width:30px}.map-title-wrapper .no-image,.map-title-wrapper img{cursor:pointer;display:flex;height:30px;width:30px;border:1px solid;position:relative}.map-title-wrapper .no-image:before,.map-title-wrapper .no-image:after,.map-title-wrapper img:before,.map-title-wrapper img:after{content:\"\";position:absolute;width:42px;height:42px}.map-title-wrapper .no-image:after,.map-title-wrapper img:after{border-bottom:1px solid;transform:rotate(135deg);top:8px;left:9px}.map-title-wrapper .no-image:before,.map-title-wrapper img:before{border-top:1px solid;transform:rotate(45deg);top:8px;left:-21px}.map-content{display:grid;grid-template-areas:\"label value\";grid-template-columns:175px 1fr;margin-left:10px}.map-content .label{grid-area:label;grid-row:auto;display:flex;align-items:center;border-bottom:1px solid #d3d3d3}.map-content .value{grid-area:value;grid-row:auto;display:flex;height:35px;align-items:center;border-bottom:1px solid #d3d3d3}.map-content .value>*{display:flex;flex-basis:auto;flex-grow:1;flex-shrink:1;width:100%}.map-content .no-image,.map-content img{height:50px;width:50px;border:1px solid}.large-image-viewer{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:999}.large-image-viewer .large-image-viewer-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);max-height:100vh;max-width:100vw}.large-image-viewer .large-image-viewer-content img{border:1px solid white}.large-image-viewer .large-image-viewer-content .large-image-viewer-close{cursor:pointer;position:absolute;top:0;right:0;background:rgba(255,255,255,.5)}\n"], components: [{ type: i3.ɵb, selector: "co-icon", inputs: ["icon", "iconData"] }, { type: i4.MatFormField, selector: "mat-form-field", inputs: ["color", "floatLabel", "appearance", "hideRequiredMarker", "hintLabel"], exportAs: ["matFormField"] }, { type: i5.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { type: i6.MatOption, selector: "mat-option", exportAs: ["matOption"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { type: i8.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: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i8.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i7.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i8.MinValidator, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: ["min"] }, { type: i8.MaxValidator, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: ["max"] }], animations: [
|
|
306
|
+
trigger('showHideMapContent', [
|
|
307
|
+
state('void', style({ 'height': '0', opacity: 0 })),
|
|
308
|
+
state('*', style({ 'height': '*', opacity: 1 })),
|
|
309
|
+
transition('void <=> *', animate(200))
|
|
310
|
+
])
|
|
311
|
+
] });
|
|
312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SelectedChildMaterialTextureComponent, decorators: [{
|
|
313
|
+
type: Component,
|
|
314
|
+
args: [{
|
|
315
|
+
selector: 'development-selected-child-material-texture',
|
|
316
|
+
template: `
|
|
317
|
+
<div class="map-title-wrapper">
|
|
318
|
+
<div class="map-title" [textContent]="title"></div>
|
|
319
|
+
<div class="collapse-wrapper">
|
|
320
|
+
<div class="collapse-handle" [class.expanded]="showContent" *ngIf="map" (click)="showContent = !showContent">
|
|
321
|
+
<co-icon class="collapse-handle-icon" [iconData]="iconService.getIcon(icon.ArrowPointDown)"></co-icon>
|
|
322
|
+
</div>
|
|
323
|
+
<div class="zoom-button" [class.expanded]="showContent" *ngIf="map" (click)="showLargeImage()">
|
|
324
|
+
<co-icon [iconData]="iconService.getIcon(icon.Magnifier)"></co-icon>
|
|
325
|
+
</div>
|
|
326
|
+
<div class="delete-button" *ngIf="map" (click)="deleteMap()">
|
|
327
|
+
<co-icon [iconData]="iconService.getIcon(icon.Cross)"></co-icon>
|
|
328
|
+
</div>
|
|
329
|
+
<div class="map-image" (click)="uploadImage('map')">
|
|
330
|
+
<div class="no-image" *ngIf="!map || !map.image || !map.image.currentSrc"></div>
|
|
331
|
+
<img class="value" *ngIf="map && map.image && map.image.currentSrc" [src]="map.image.currentSrc">
|
|
332
|
+
</div>
|
|
333
|
+
</div>
|
|
334
|
+
</div>
|
|
335
|
+
<div class="map-content" *ngIf="showContent" @showHideMapContent>
|
|
336
|
+
<div class="label" [textContent]="'anisotrophy'"></div>
|
|
337
|
+
<div class="value">
|
|
338
|
+
<input type="number" [(ngModel)]="map.anisotropy" (ngModelChange)="render()">
|
|
339
|
+
</div>
|
|
340
|
+
<div class="label" [textContent]="'center'"></div>
|
|
341
|
+
<div class="value">
|
|
342
|
+
<span>x:</span><input type="number" [(ngModel)]="map.center.x" (ngModelChange)="render()">
|
|
343
|
+
<span>y:</span><input type="number" [(ngModel)]="map.center.y" (ngModelChange)="render()">
|
|
344
|
+
</div>
|
|
345
|
+
<div class="label" [textContent]="'encoding'"></div>
|
|
346
|
+
<!-- <mat-form-field class="value">-->
|
|
347
|
+
<!-- <mat-select [(value)]="map.encoding">-->
|
|
348
|
+
<!-- <mat-option *ngFor="let encoding of textureEncodingList" [value]="encoding.id" (click)="render()">-->
|
|
349
|
+
<!-- {{ encoding.description }}-->
|
|
350
|
+
<!-- </mat-option>-->
|
|
351
|
+
<!-- </mat-select>-->
|
|
352
|
+
<!-- </mat-form-field>-->
|
|
353
|
+
<div class="label" [textContent]="'flipY'"></div>
|
|
354
|
+
<div class="value">
|
|
355
|
+
<input type="checkbox" [ngModel]="map.flipY" (ngModelChange)="changeFlip($event)">
|
|
356
|
+
</div>
|
|
357
|
+
<div class="label" [textContent]="'format'"></div>
|
|
358
|
+
<mat-form-field class="value">
|
|
359
|
+
<mat-select [(value)]="map.format">
|
|
360
|
+
<mat-option *ngFor="let format of pixelFormatList" [value]="format.id" (click)="render()">
|
|
361
|
+
{{ format.description }}
|
|
362
|
+
</mat-option>
|
|
363
|
+
</mat-select>
|
|
364
|
+
</mat-form-field>
|
|
365
|
+
<div class="label" [textContent]="'generateMipmaps'"></div>
|
|
366
|
+
<div class="value">
|
|
367
|
+
<input type="checkbox" [(ngModel)]="map.generateMipmaps" (ngModelChange)="render()">
|
|
368
|
+
</div>
|
|
369
|
+
<div class="label" [textContent]="'magFilter'"></div>
|
|
370
|
+
<mat-form-field class="value">
|
|
371
|
+
<mat-select [(value)]="map.magFilter">
|
|
372
|
+
<mat-option *ngFor="let filter of textureFilterList" [value]="filter.id" (click)="render()">
|
|
373
|
+
{{ filter.description }}
|
|
374
|
+
</mat-option>
|
|
375
|
+
</mat-select>
|
|
376
|
+
</mat-form-field>
|
|
377
|
+
<div class="label" [textContent]="'mapping'"></div>
|
|
378
|
+
<mat-form-field class="value">
|
|
379
|
+
<mat-select [(value)]="map.mapping">
|
|
380
|
+
<mat-option *ngFor="let mapping of mappingList" [value]="mapping.id" (click)="render()">
|
|
381
|
+
{{ mapping.description }}
|
|
382
|
+
</mat-option>
|
|
383
|
+
</mat-select>
|
|
384
|
+
</mat-form-field>
|
|
385
|
+
<div class="label" [textContent]="'minFilter'"></div>
|
|
386
|
+
<mat-form-field class="value">
|
|
387
|
+
<mat-select [(value)]="map.minFilter">
|
|
388
|
+
<mat-option *ngFor="let filter of textureFilterList" [value]="filter.id" (click)="render()">
|
|
389
|
+
{{ filter.description }}
|
|
390
|
+
</mat-option>
|
|
391
|
+
</mat-select>
|
|
392
|
+
</mat-form-field>
|
|
393
|
+
<div class="label" [textContent]="'offset'"></div>
|
|
394
|
+
<div class="value">
|
|
395
|
+
<span>x:</span><input type="number" [(ngModel)]="map.offset.x" [min]="0" [max]="1" [step]="0.01" (ngModelChange)="render()">
|
|
396
|
+
<span>y:</span><input type="number" [(ngModel)]="map.offset.y" [min]="0" [max]="1" [step]="0.01" (ngModelChange)="render()">
|
|
397
|
+
</div>
|
|
398
|
+
<div class="label" [textContent]="'premultiplyAlpha'"></div>
|
|
399
|
+
<div class="value">
|
|
400
|
+
<input type="checkbox" [(ngModel)]="map.premultiplyAlpha" (ngModelChange)="render()">
|
|
401
|
+
</div>
|
|
402
|
+
<div class="label" [textContent]="'repeat'"></div>
|
|
403
|
+
<div class="value">
|
|
404
|
+
<span>x:</span><input type="number" [(ngModel)]="map.repeat.x" [min]="0" [step]="0.01" (ngModelChange)="render()">
|
|
405
|
+
<span>y:</span><input type="number" [(ngModel)]="map.repeat.y" [min]="0" [step]="0.01" (ngModelChange)="render()">
|
|
406
|
+
</div>
|
|
407
|
+
<div class="label" [textContent]="'rotation'"></div>
|
|
408
|
+
<div class="value">
|
|
409
|
+
<input type="number" [(ngModel)]="map.rotation" [step]="0.01" (ngModelChange)="render()">
|
|
410
|
+
</div>
|
|
411
|
+
<div class="label" [textContent]="'type'"></div>
|
|
412
|
+
<mat-form-field class="value">
|
|
413
|
+
<mat-select [(value)]="map.type">
|
|
414
|
+
<mat-option *ngFor="let type of typeList" [value]="type.id" (click)="render()">
|
|
415
|
+
{{ type.description }}
|
|
416
|
+
</mat-option>
|
|
417
|
+
</mat-select>
|
|
418
|
+
</mat-form-field>
|
|
419
|
+
<div class="label" [textContent]="'wrapS'"></div>
|
|
420
|
+
<mat-form-field class="value">
|
|
421
|
+
<mat-select [(value)]="map.wrapS">
|
|
422
|
+
<mat-option *ngFor="let wrapping of wrappingList" [value]="wrapping.id" (click)="render()">
|
|
423
|
+
{{ wrapping.description }}
|
|
424
|
+
</mat-option>
|
|
425
|
+
</mat-select>
|
|
426
|
+
</mat-form-field>
|
|
427
|
+
<div class="label" [textContent]="'wrapT'"></div>
|
|
428
|
+
<mat-form-field class="value">
|
|
429
|
+
<mat-select [(value)]="map.wrapT">
|
|
430
|
+
<mat-option *ngFor="let wrapping of wrappingList" [value]="wrapping.id" (click)="render()">
|
|
431
|
+
{{ wrapping.description }}
|
|
432
|
+
</mat-option>
|
|
433
|
+
</mat-select>
|
|
434
|
+
</mat-form-field>
|
|
435
|
+
</div>
|
|
436
|
+
<div class="large-image-viewer" *ngIf="showZoomImage && viewImageSrc" (click)="hideZoomImage($event)">
|
|
437
|
+
<div class="large-image-viewer-content">
|
|
438
|
+
<img [src]="viewImageSrc">
|
|
439
|
+
<div class="large-image-viewer-close" (click)="hideZoomImage($event)">
|
|
440
|
+
<co-icon [iconData]="iconService.getIcon(icon.Cross)"></co-icon>
|
|
441
|
+
</div>
|
|
442
|
+
</div>
|
|
443
|
+
</div>
|
|
444
|
+
<input #inputFile [accept]="'image/*'" (change)="handleFileChange($event)" type="file" hidden/>
|
|
445
|
+
`,
|
|
446
|
+
animations: [
|
|
447
|
+
trigger('showHideMapContent', [
|
|
448
|
+
state('void', style({ 'height': '0', opacity: 0 })),
|
|
449
|
+
state('*', style({ 'height': '*', opacity: 1 })),
|
|
450
|
+
transition('void <=> *', animate(200))
|
|
451
|
+
])
|
|
452
|
+
],
|
|
453
|
+
styleUrls: [
|
|
454
|
+
'./selected-child-material-texture.component.scss'
|
|
455
|
+
]
|
|
456
|
+
}]
|
|
457
|
+
}], ctorParameters: function () { return [{ type: i1.HomedecoratorIconCacheService }, { type: i2.SceneService }]; }, propDecorators: { input: [{
|
|
458
|
+
type: ViewChild,
|
|
459
|
+
args: ['inputFile', { static: true }]
|
|
460
|
+
}], map: [{
|
|
461
|
+
type: Input
|
|
462
|
+
}], title: [{
|
|
463
|
+
type: Input
|
|
464
|
+
}], mapChange: [{
|
|
465
|
+
type: Output
|
|
466
|
+
}] } });
|
|
467
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0ZWQtY2hpbGQtbWF0ZXJpYWwtdGV4dHVyZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvY2xpZW50L2FwcC9kZXZlbG9wbWVudC9jb21wb25lbnRzL3NlbGVjdGVkLWNoaWxkLW1hdGVyaWFsLXRleHR1cmUuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQWMsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzVGLE9BQU8sRUFDTCxXQUFXLEVBQ1gsUUFBUSxFQUNSLG1CQUFtQixFQUNuQixxQkFBcUIsRUFDckIscUJBQXFCLEVBQ3JCLHVCQUF1QixFQUN2QixXQUFXLEVBQ1gsa0JBQWtCLEVBQ2xCLGdDQUFnQyxFQUNoQyxnQ0FBZ0MsRUFDaEMsU0FBUyxFQUNULGFBQWEsRUFDYixPQUFPLEVBQ1AsWUFBWSxFQUNaLHdCQUF3QixFQUN4Qix3QkFBd0IsRUFDeEIseUJBQXlCLEVBQ3pCLHlCQUF5QixFQUN6QixvQkFBb0IsRUFDcEIsZUFBZSxFQUVmLHNCQUFzQixFQUN0QixhQUFhLEVBQ2IseUJBQXlCLEVBQ3pCLHlCQUF5QixFQUN6QiwwQkFBMEIsRUFDMUIsMEJBQTBCLEVBRTFCLFNBQVMsRUFDVCxnQkFBZ0IsRUFDaEIsY0FBYyxFQUNkLFVBQVUsRUFDVixpQkFBaUIsRUFDakIsUUFBUSxFQUNSLGVBQWUsRUFDZixTQUFTLEVBQUUsY0FBYyxFQUl6QixhQUFhLEVBQ2IsZ0JBQWdCLEVBQ2hCLGtCQUFrQixFQUNsQixlQUFlLEVBQ2YscUJBQXFCLEVBQ3JCLHFCQUFxQixFQUNyQixpQkFBaUIsRUFDakIsU0FBUyxFQUVWLE1BQU0sT0FBTyxDQUFDO0FBQ2YsT0FBTyxFQUFDLE9BQU8sRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxP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QUMsQ0FBQyxDQUFDOzRCQUM5QyxVQUFVLENBQUMsWUFBWSxFQUFFLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQzt5QkFDdkMsQ0FBQztxQkFDSDtvQkFDRCxTQUFTLEVBQUU7d0JBQ1Qsa0RBQWtEO3FCQUNuRDtpQkFDRjsrSUFLUSxLQUFLO3NCQURYLFNBQVM7dUJBQUMsV0FBVyxFQUFFLEVBQUMsTUFBTSxFQUFFLElBQUksRUFBQztnQkFJM0IsR0FBRztzQkFEYixLQUFLO2dCQWFDLEtBQUs7c0JBRFgsS0FBSztnQkFJQyxTQUFTO3NCQURmLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgRWxlbWVudFJlZiwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0LCBWaWV3Q2hpbGR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQge1xyXG4gIEFscGhhRm9ybWF0LFxyXG4gIEJ5dGVUeXBlLFxyXG4gIENsYW1wVG9FZGdlV3JhcHBpbmcsXHJcbiAgQ3ViZVJlZmxlY3Rpb25NYXBwaW5nLFxyXG4gIEN1YmVSZWZyYWN0aW9uTWFwcGluZyxcclxuICBDdWJlVVZSZWZsZWN0aW9uTWFwcGluZyxcclxuICBEZXB0aEZvcm1hdCxcclxuICBEZXB0aFN0ZW5jaWxGb3JtYXQsXHJcbiAgRXF1aXJlY3Rhbmd1bGFyUmVmbGVjdGlvbk1hcHBpbmcsXHJcbiAgRXF1aXJlY3Rhbmd1bGFyUmVmcmFjdGlvbk1hcHBpbmcsXHJcbiAgRmxvYXRUeXBlLFxyXG4gIEhhbGZGbG9hdFR5cGUsXHJcbiAgSW50VHlwZSxcclxuICBMaW5lYXJGaWx0ZXIsXHJcbiAgTGluZWFyTWlwTWFwTGluZWFyRmlsdGVyLFxyXG4gIExpbmVhck1pcG1hcExpbmVhckZpbHRlcixcclxuICBMaW5lYXJNaXBNYXBOZWFyZXN0RmlsdGVyLFxyXG4gIExpbmVhck1pcG1hcE5lYXJlc3RGaWx0ZXIsXHJcbiAgTHVtaW5hbmNlQWxwaGFGb3JtYXQsXHJcbiAgTHVtaW5hbmNlRm9ybWF0LFxyXG4gIE1hcHBpbmcsXHJcbiAgTWlycm9yZWRSZXBlYXRXcmFwcGluZyxcclxuICBOZWFyZXN0RmlsdGVyLFxyXG4gIE5lYXJlc3RNaXBNYXBMaW5lYXJGaWx0ZXIsXHJcbiAgTmVhcmVzdE1pcG1hcExpbmVhckZpbHRlcixcclxuICBOZWFyZXN0TWlwTWFwTmVhcmVzdEZpbHRlcixcclxuICBOZWFyZXN0TWlwbWFwTmVhcmVzdEZpbHRlcixcclxuICBQaXhlbEZvcm1hdCxcclxuICBSZWRGb3JtYXQsXHJcbiAgUmVkSW50ZWdlckZvcm1hdCxcclxuICBSZXBlYXRXcmFwcGluZyxcclxuICBSR0JBRm9ybWF0LFxyXG4gIFJHQkFJbnRlZ2VyRm9ybWF0LFxyXG4gIFJHRm9ybWF0LFxyXG4gIFJHSW50ZWdlckZvcm1hdCxcclxuICBTaG9ydFR5cGUsIFNSR0JDb2xvclNwYWNlLFxyXG4gIFRleHR1cmUsXHJcbiAgVGV4dHVyZURhdGFUeXBlLFxyXG4gIFRleHR1cmVGaWx0ZXIsXHJcbiAgVGV4dHVyZUxvYWRlcixcclxuICBVbnNpZ25lZEJ5dGVUeXBlLFxyXG4gIFVuc2lnbmVkSW50MjQ4VHlwZSxcclxuICBVbnNpZ25lZEludFR5cGUsXHJcbiAgVW5zaWduZWRTaG9ydDQ0NDRUeXBlLFxyXG4gIFVuc2lnbmVkU2hvcnQ1NTUxVHlwZSxcclxuICBVbnNpZ25lZFNob3J0VHlwZSxcclxuICBVVk1hcHBpbmcsXHJcbiAgV3JhcHBpbmdcclxufSBmcm9tICd0aHJlZSc7XHJcbmltcG9ydCB7YW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcclxuaW1wb3J0IHtDb2xvclNwYWNlLCBDdWJlVGV4dHVyZU1hcHBpbmcsIExpbmVhclNSR0JDb2xvclNwYWNlfSBmcm9tICd0aHJlZS9zcmMvY29uc3RhbnRzJztcclxuaW1wb3J0IHtIb21lZGVjb3JhdG9ySWNvbkNhY2hlU2VydmljZX0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlL2hvbWVkZWNvcmF0b3ItaWNvbi1jYWNoZS5zZXJ2aWNlJztcclxuaW1wb3J0IHtTY2VuZVNlcnZpY2V9IGZyb20gJy4uLy4uL3BsdWdpbnMvY29yZTNkL3NlcnZpY2Uvc2NlbmUuc2VydmljZSc7XHJcbmltcG9ydCB7SWNvbkVudW19IGZyb20gJy4uLy4uL2NvcmUvZW51bS9pY29uLmVudW0nO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdkZXZlbG9wbWVudC1zZWxlY3RlZC1jaGlsZC1tYXRlcmlhbC10ZXh0dXJlJyxcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGRpdiBjbGFzcz1cIm1hcC10aXRsZS13cmFwcGVyXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJtYXAtdGl0bGVcIiBbdGV4dENvbnRlbnRdPVwidGl0bGVcIj48L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cImNvbGxhcHNlLXdyYXBwZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29sbGFwc2UtaGFuZGxlXCIgW2NsYXNzLmV4cGFuZGVkXT1cInNob3dDb250ZW50XCIgKm5nSWY9XCJtYXBcIiAoY2xpY2spPVwic2hvd0NvbnRlbnQgPSAhc2hvd0NvbnRlbnRcIj5cclxuICAgICAgICAgIDxjby1pY29uIGNsYXNzPVwiY29sbGFwc2UtaGFuZGxlLWljb25cIiBbaWNvbkRhdGFdPVwiaWNvblNlcnZpY2UuZ2V0SWNvbihpY29uLkFycm93UG9pbnREb3duKVwiPjwvY28taWNvbj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiem9vbS1idXR0b25cIiBbY2xhc3MuZXhwYW5kZWRdPVwic2hvd0NvbnRlbnRcIiAqbmdJZj1cIm1hcFwiIChjbGljayk9XCJzaG93TGFyZ2VJbWFnZSgpXCI+XHJcbiAgICAgICAgICA8Y28taWNvbiBbaWNvbkRhdGFdPVwiaWNvblNlcnZpY2UuZ2V0SWNvbihpY29uLk1hZ25pZmllcilcIj48L2NvLWljb24+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImRlbGV0ZS1idXR0b25cIiAqbmdJZj1cIm1hcFwiIChjbGljayk9XCJkZWxldGVNYXAoKVwiPlxyXG4gICAgICAgICAgPGNvLWljb24gW2ljb25EYXRhXT1cImljb25TZXJ2aWNlLmdldEljb24oaWNvbi5Dcm9zcylcIj48L2NvLWljb24+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cIm1hcC1pbWFnZVwiIChjbGljayk9XCJ1cGxvYWRJbWFnZSgnbWFwJylcIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJuby1pbWFnZVwiICpuZ0lmPVwiIW1hcCB8fCAhbWFwLmltYWdlIHx8ICFtYXAuaW1hZ2UuY3VycmVudFNyY1wiPjwvZGl2PlxyXG4gICAgICAgICAgPGltZyBjbGFzcz1cInZhbHVlXCIgKm5nSWY9XCJtYXAgJiYgbWFwLmltYWdlICYmIG1hcC5pbWFnZS5jdXJyZW50U3JjXCIgW3NyY109XCJtYXAuaW1hZ2UuY3VycmVudFNyY1wiPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cIm1hcC1jb250ZW50XCIgKm5nSWY9XCJzaG93Q29udGVudFwiIEBzaG93SGlkZU1hcENvbnRlbnQ+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiIFt0ZXh0Q29udGVudF09XCInYW5pc290cm9waHknXCI+PC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ2YWx1ZVwiPlxyXG4gICAgICAgIDxpbnB1dCB0eXBlPVwibnVtYmVyXCIgWyhuZ01vZGVsKV09XCJtYXAuYW5pc290cm9weVwiIChuZ01vZGVsQ2hhbmdlKT1cInJlbmRlcigpXCI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ2NlbnRlcidcIj48L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cInZhbHVlXCI+XHJcbiAgICAgICAgPHNwYW4+eDo8L3NwYW4+PGlucHV0IHR5cGU9XCJudW1iZXJcIiBbKG5nTW9kZWwpXT1cIm1hcC5jZW50ZXIueFwiIChuZ01vZGVsQ2hhbmdlKT1cInJlbmRlcigpXCI+XHJcbiAgICAgICAgPHNwYW4+eTo8L3NwYW4+PGlucHV0IHR5cGU9XCJudW1iZXJcIiBbKG5nTW9kZWwpXT1cIm1hcC5jZW50ZXIueVwiIChuZ01vZGVsQ2hhbmdlKT1cInJlbmRlcigpXCI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ2VuY29kaW5nJ1wiPjwvZGl2PlxyXG48IS0tICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj4tLT5cclxuPCEtLSAgICAgICAgPG1hdC1zZWxlY3QgWyh2YWx1ZSldPVwibWFwLmVuY29kaW5nXCI+LS0+XHJcbjwhLS0gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IGVuY29kaW5nIG9mIHRleHR1cmVFbmNvZGluZ0xpc3RcIiBbdmFsdWVdPVwiZW5jb2RpbmcuaWRcIiAoY2xpY2spPVwicmVuZGVyKClcIj4tLT5cclxuPCEtLSAgICAgICAgICAgIHt7IGVuY29kaW5nLmRlc2NyaXB0aW9uIH19LS0+XHJcbjwhLS0gICAgICAgICAgPC9tYXQtb3B0aW9uPi0tPlxyXG48IS0tICAgICAgICA8L21hdC1zZWxlY3Q+LS0+XHJcbjwhLS0gICAgICA8L21hdC1mb3JtLWZpZWxkPi0tPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ2ZsaXBZJ1wiPjwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8aW5wdXQgdHlwZT1cImNoZWNrYm94XCIgW25nTW9kZWxdPVwibWFwLmZsaXBZXCIgKG5nTW9kZWxDaGFuZ2UpPVwiY2hhbmdlRmxpcCgkZXZlbnQpXCI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ2Zvcm1hdCdcIj48L2Rpdj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8bWF0LXNlbGVjdCBbKHZhbHVlKV09XCJtYXAuZm9ybWF0XCI+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgZm9ybWF0IG9mIHBpeGVsRm9ybWF0TGlzdFwiIFt2YWx1ZV09XCJmb3JtYXQuaWRcIiAoY2xpY2spPVwicmVuZGVyKClcIj5cclxuICAgICAgICAgICAge3sgZm9ybWF0LmRlc2NyaXB0aW9uIH19XHJcbiAgICAgICAgICA8L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ2dlbmVyYXRlTWlwbWFwcydcIj48L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cInZhbHVlXCI+XHJcbiAgICAgICAgPGlucHV0IHR5cGU9XCJjaGVja2JveFwiIFsobmdNb2RlbCldPVwibWFwLmdlbmVyYXRlTWlwbWFwc1wiIChuZ01vZGVsQ2hhbmdlKT1cInJlbmRlcigpXCI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ21hZ0ZpbHRlcidcIj48L2Rpdj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8bWF0LXNlbGVjdCBbKHZhbHVlKV09XCJtYXAubWFnRmlsdGVyXCI+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgZmlsdGVyIG9mIHRleHR1cmVGaWx0ZXJMaXN0XCIgW3ZhbHVlXT1cImZpbHRlci5pZFwiIChjbGljayk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICAgICAgICB7eyBmaWx0ZXIuZGVzY3JpcHRpb24gfX1cclxuICAgICAgICAgIDwvbWF0LW9wdGlvbj5cclxuICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiIFt0ZXh0Q29udGVudF09XCInbWFwcGluZydcIj48L2Rpdj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8bWF0LXNlbGVjdCBbKHZhbHVlKV09XCJtYXAubWFwcGluZ1wiPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IG1hcHBpbmcgb2YgbWFwcGluZ0xpc3RcIiBbdmFsdWVdPVwibWFwcGluZy5pZFwiIChjbGljayk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICAgICAgICB7eyBtYXBwaW5nLmRlc2NyaXB0aW9uIH19XHJcbiAgICAgICAgICA8L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ21pbkZpbHRlcidcIj48L2Rpdj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8bWF0LXNlbGVjdCBbKHZhbHVlKV09XCJtYXAubWluRmlsdGVyXCI+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgZmlsdGVyIG9mIHRleHR1cmVGaWx0ZXJMaXN0XCIgW3ZhbHVlXT1cImZpbHRlci5pZFwiIChjbGljayk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICAgICAgICB7eyBmaWx0ZXIuZGVzY3JpcHRpb24gfX1cclxuICAgICAgICAgIDwvbWF0LW9wdGlvbj5cclxuICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiIFt0ZXh0Q29udGVudF09XCInb2Zmc2V0J1wiPjwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8c3Bhbj54Ojwvc3Bhbj48aW5wdXQgdHlwZT1cIm51bWJlclwiIFsobmdNb2RlbCldPVwibWFwLm9mZnNldC54XCIgW21pbl09XCIwXCIgW21heF09XCIxXCIgW3N0ZXBdPVwiMC4wMVwiIChuZ01vZGVsQ2hhbmdlKT1cInJlbmRlcigpXCI+XHJcbiAgICAgICAgPHNwYW4+eTo8L3NwYW4+PGlucHV0IHR5cGU9XCJudW1iZXJcIiBbKG5nTW9kZWwpXT1cIm1hcC5vZmZzZXQueVwiIFttaW5dPVwiMFwiIFttYXhdPVwiMVwiIFtzdGVwXT1cIjAuMDFcIiAobmdNb2RlbENoYW5nZSk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cImxhYmVsXCIgW3RleHRDb250ZW50XT1cIidwcmVtdWx0aXBseUFscGhhJ1wiPjwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8aW5wdXQgdHlwZT1cImNoZWNrYm94XCIgWyhuZ01vZGVsKV09XCJtYXAucHJlbXVsdGlwbHlBbHBoYVwiIChuZ01vZGVsQ2hhbmdlKT1cInJlbmRlcigpXCI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ3JlcGVhdCdcIj48L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cInZhbHVlXCI+XHJcbiAgICAgICAgPHNwYW4+eDo8L3NwYW4+PGlucHV0IHR5cGU9XCJudW1iZXJcIiBbKG5nTW9kZWwpXT1cIm1hcC5yZXBlYXQueFwiIFttaW5dPVwiMFwiIFtzdGVwXT1cIjAuMDFcIiAobmdNb2RlbENoYW5nZSk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICAgIDxzcGFuPnk6PC9zcGFuPjxpbnB1dCB0eXBlPVwibnVtYmVyXCIgWyhuZ01vZGVsKV09XCJtYXAucmVwZWF0LnlcIiBbbWluXT1cIjBcIiBbc3RlcF09XCIwLjAxXCIgKG5nTW9kZWxDaGFuZ2UpPVwicmVuZGVyKClcIj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiIFt0ZXh0Q29udGVudF09XCIncm90YXRpb24nXCI+PC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ2YWx1ZVwiPlxyXG4gICAgICAgIDxpbnB1dCB0eXBlPVwibnVtYmVyXCIgWyhuZ01vZGVsKV09XCJtYXAucm90YXRpb25cIiBbc3RlcF09XCIwLjAxXCIgKG5nTW9kZWxDaGFuZ2UpPVwicmVuZGVyKClcIj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiIFt0ZXh0Q29udGVudF09XCIndHlwZSdcIj48L2Rpdj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8bWF0LXNlbGVjdCBbKHZhbHVlKV09XCJtYXAudHlwZVwiPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHR5cGUgb2YgdHlwZUxpc3RcIiBbdmFsdWVdPVwidHlwZS5pZFwiIChjbGljayk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICAgICAgICB7eyB0eXBlLmRlc2NyaXB0aW9uIH19XHJcbiAgICAgICAgICA8L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwiJ3dyYXBTJ1wiPjwvZGl2PlxyXG4gICAgICA8bWF0LWZvcm0tZmllbGQgY2xhc3M9XCJ2YWx1ZVwiPlxyXG4gICAgICAgIDxtYXQtc2VsZWN0IFsodmFsdWUpXT1cIm1hcC53cmFwU1wiPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHdyYXBwaW5nIG9mIHdyYXBwaW5nTGlzdFwiIFt2YWx1ZV09XCJ3cmFwcGluZy5pZFwiIChjbGljayk9XCJyZW5kZXIoKVwiPlxyXG4gICAgICAgICAgICB7eyB3cmFwcGluZy5kZXNjcmlwdGlvbiB9fVxyXG4gICAgICAgICAgPC9tYXQtb3B0aW9uPlxyXG4gICAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgPGRpdiBjbGFzcz1cImxhYmVsXCIgW3RleHRDb250ZW50XT1cIid3cmFwVCdcIj48L2Rpdj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICA8bWF0LXNlbGVjdCBbKHZhbHVlKV09XCJtYXAud3JhcFRcIj5cclxuICAgICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCB3cmFwcGluZyBvZiB3cmFwcGluZ0xpc3RcIiBbdmFsdWVdPVwid3JhcHBpbmcuaWRcIiAoY2xpY2spPVwicmVuZGVyKClcIj5cclxuICAgICAgICAgICAge3sgd3JhcHBpbmcuZGVzY3JpcHRpb24gfX1cclxuICAgICAgICAgIDwvbWF0LW9wdGlvbj5cclxuICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJsYXJnZS1pbWFnZS12aWV3ZXJcIiAqbmdJZj1cInNob3dab29tSW1hZ2UgJiYgdmlld0ltYWdlU3JjXCIgKGNsaWNrKT1cImhpZGVab29tSW1hZ2UoJGV2ZW50KVwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibGFyZ2UtaW1hZ2Utdmlld2VyLWNvbnRlbnRcIj5cclxuICAgICAgICA8aW1nIFtzcmNdPVwidmlld0ltYWdlU3JjXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImxhcmdlLWltYWdlLXZpZXdlci1jbG9zZVwiIChjbGljayk9XCJoaWRlWm9vbUltYWdlKCRldmVudClcIj5cclxuICAgICAgICAgIDxjby1pY29uIFtpY29uRGF0YV09XCJpY29uU2VydmljZS5nZXRJY29uKGljb24uQ3Jvc3MpXCI+PC9jby1pY29uPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGlucHV0ICNpbnB1dEZpbGUgW2FjY2VwdF09XCInaW1hZ2UvKidcIiAoY2hhbmdlKT1cImhhbmRsZUZpbGVDaGFuZ2UoJGV2ZW50KVwiIHR5cGU9XCJmaWxlXCIgaGlkZGVuLz5cclxuICBgLFxyXG4gIGFuaW1hdGlvbnM6IFtcclxuICAgIHRyaWdnZXIoJ3Nob3dIaWRlTWFwQ29udGVudCcsIFtcclxuICAgICAgc3RhdGUoJ3ZvaWQnLCBzdHlsZSh7J2hlaWdodCc6ICcwJywgb3BhY2l0eTogMH0pKSxcclxuICAgICAgc3RhdGUoJyonLCBzdHlsZSh7J2hlaWdodCc6ICcqJywgb3BhY2l0eTogMX0pKSxcclxuICAgICAgdHJhbnNpdGlvbigndm9pZCA8PT4gKicsIGFuaW1hdGUoMjAwKSlcclxuICAgIF0pXHJcbiAgXSxcclxuICBzdHlsZVVybHM6IFtcclxuICAgICcuL3NlbGVjdGVkLWNoaWxkLW1hdGVyaWFsLXRleHR1cmUuY29tcG9uZW50LnNjc3MnXHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgU2VsZWN0ZWRDaGlsZE1hdGVyaWFsVGV4dHVyZUNvbXBvbmVudCB7XHJcbiAgcHVibGljIHJlYWRvbmx5IGljb246IHR5cGVvZiBJY29uRW51bSA9IEljb25FbnVtO1xyXG5cclxuICBAVmlld0NoaWxkKCdpbnB1dEZpbGUnLCB7c3RhdGljOiB0cnVlfSlcclxuICBwdWJsaWMgaW5wdXQ6IEVsZW1lbnRSZWY7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHNldCBtYXAodmFsdWU6IFRleHR1cmUpIHtcclxuICAgIHRoaXMuX21hcCA9IHZhbHVlO1xyXG4gICAgaWYgKHRoaXMuX21hcCAmJiB0aGlzLl9tYXAuaW1hZ2UpIHtcclxuICAgICAgdGhpcy5fbG9hZGVkSW1hZ2UgPSB0aGlzLm1hcC5pbWFnZTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXQgbWFwKCk6IFRleHR1cmUge1xyXG4gICAgcmV0dXJuIHRoaXMuX21hcDtcclxuICB9XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHRpdGxlOiBzdHJpbmc7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyBtYXBDaGFuZ2U6IEV2ZW50RW1pdHRlcjxUZXh0dXJlPiA9IG5ldyBFdmVudEVtaXR0ZXI8VGV4dHVyZT4oKTtcclxuXHJcbiAgcHVibGljIG1hcHBpbmdMaXN0OiB7IGlkOiBNYXBwaW5nIHwgQ3ViZVRleHR1cmVNYXBwaW5nLCBkZXNjcmlwdGlvbjogc3RyaW5nIH1bXSA9IFtcclxuICAgIHtpZDogVVZNYXBwaW5nLCBkZXNjcmlwdGlvbjogJ1VWTWFwcGluZyd9LFxyXG4gICAge2lkOiBDdWJlUmVmbGVjdGlvbk1hcHBpbmcsIGRlc2NyaXB0aW9uOiAnQ3ViZVJlZmxlY3Rpb25NYXBwaW5nJ30sXHJcbiAgICB7aWQ6IEN1YmVSZWZyYWN0aW9uTWFwcGluZywgZGVzY3JpcHRpb246ICdDdWJlUmVmcmFjdGlvbk1hcHBpbmcnfSxcclxuICAgIHtpZDogRXF1aXJlY3Rhbmd1bGFyUmVmbGVjdGlvbk1hcHBpbmcsIGRlc2NyaXB0aW9uOiAnRXF1aXJlY3Rhbmd1bGFyUmVmbGVjdGlvbk1hcHBpbmcnfSxcclxuICAgIHtpZDogRXF1aXJlY3Rhbmd1bGFyUmVmcmFjdGlvbk1hcHBpbmcsIGRlc2NyaXB0aW9uOiAnRXF1aXJlY3Rhbmd1bGFyUmVmcmFjdGlvbk1hcHBpbmcnfSxcclxuICAgIHtpZDogQ3ViZVVWUmVmbGVjdGlvbk1hcHBpbmcsIGRlc2NyaXB0aW9uOiAnQ3ViZVVWUmVmbGVjdGlvbk1hcHBpbmcnfVxyXG4gIF07XHJcblxyXG4gIHB1YmxpYyB0ZXh0dXJlRmlsdGVyTGlzdDogeyBpZDogVGV4dHVyZUZpbHRlciwgZGVzY3JpcHRpb246IHN0cmluZyB9W10gPSBbXHJcbiAgICB7aWQ6IE5lYXJlc3RGaWx0ZXIsIGRlc2NyaXB0aW9uOiAnTmVhcmVzdEZpbHRlcid9LFxyXG4gICAge2lkOiBOZWFyZXN0TWlwbWFwTmVhcmVzdEZpbHRlciwgZGVzY3JpcHRpb246ICdOZWFyZXN0TWlwbWFwTmVhcmVzdEZpbHRlcid9LFxyXG4gICAge2lkOiBOZWFyZXN0TWlwTWFwTmVhcmVzdEZpbHRlciwgZGVzY3JpcHRpb246ICdOZWFyZXN0TWlwTWFwTmVhcmVzdEZpbHRlcid9LFxyXG4gICAge2lkOiBOZWFyZXN0TWlwbWFwTGluZWFyRmlsdGVyLCBkZXNjcmlwdGlvbjogJ05lYXJlc3RNaXBtYXBMaW5lYXJGaWx0ZXInfSxcclxuICAgIHtpZDogTmVhcmVzdE1pcE1hcExpbmVhckZpbHRlciwgZGVzY3JpcHRpb246ICdOZWFyZXN0TWlwTWFwTGluZWFyRmlsdGVyJ30sXHJcbiAgICB7aWQ6IExpbmVhckZpbHRlciwgZGVzY3JpcHRpb246ICdMaW5lYXJGaWx0ZXInfSxcclxuICAgIHtpZDogTGluZWFyTWlwbWFwTmVhcmVzdEZpbHRlciwgZGVzY3JpcHRpb246ICdMaW5lYXJNaXBtYXBOZWFyZXN0RmlsdGVyJ30sXHJcbiAgICB7aWQ6IExpbmVhck1pcE1hcE5lYXJlc3RGaWx0ZXIsIGRlc2NyaXB0aW9uOiAnTGluZWFyTWlwTWFwTmVhcmVzdEZpbHRlcid9LFxyXG4gICAge2lkOiBMaW5lYXJNaXBtYXBMaW5lYXJGaWx0ZXIsIGRlc2NyaXB0aW9uOiAnTGluZWFyTWlwbWFwTGluZWFyRmlsdGVyJ30sXHJcbiAgICB7aWQ6IExpbmVhck1pcE1hcExpbmVhckZpbHRlciwgZGVzY3JpcHRpb246ICdMaW5lYXJNaXBNYXBMaW5lYXJGaWx0ZXInfVxyXG4gIF07XHJcblxyXG4gIHB1YmxpYyB0ZXh0dXJlRW5jb2RpbmdMaXN0OiB7IGlkOiBDb2xvclNwYWNlLCBkZXNjcmlwdGlvbjogc3RyaW5nIH1bXSA9IFtcclxuICAgIHtpZDogTGluZWFyU1JHQkNvbG9yU3BhY2UsIGRlc2NyaXB0aW9uOiAnTGluZWFyU1JHQkNvbG9yU3BhY2UnfSxcclxuICAgIHtpZDogU1JHQkNvbG9yU3BhY2UsIGRlc2NyaXB0aW9uOiAnU1JHQkNvbG9yU3BhY2UnfVxyXG4gICAgLy8ge2lkOiBMb2dMdXZFbmNvZGluZywgZGVzY3JpcHRpb246ICdMb2dMdXZFbmNvZGluZyd9LFxyXG4gIF07XHJcblxyXG4gIHB1YmxpYyBwaXhlbEZvcm1hdExpc3Q6IHsgaWQ6IFBpeGVsRm9ybWF0LCBkZXNjcmlwdGlvbjogc3RyaW5nIH1bXSA9IFtcclxuICAgIHtpZDogQWxwaGFGb3JtYXQsIGRlc2NyaXB0aW9uOiAnQWxwaGFGb3JtYXQnfSxcclxuICAgIHtpZDogUkdCQUZvcm1hdCwgZGVzY3JpcHRpb246ICdSR0JBRm9ybWF0J30sXHJcbiAgICB7aWQ6IEx1bWluYW5jZUZvcm1hdCwgZGVzY3JpcHRpb246ICdMdW1pbmFuY2VGb3JtYXQnfSxcclxuICAgIHtpZDogTHVtaW5hbmNlQWxwaGFGb3JtYXQsIGRlc2NyaXB0aW9uOiAnTHVtaW5hbmNlQWxwaGFGb3JtYXQnfSxcclxuICAgIHtpZDogRGVwdGhGb3JtYXQsIGRlc2NyaXB0aW9uOiAnRGVwdGhGb3JtYXQnfSxcclxuICAgIHtpZDogRGVwdGhTdGVuY2lsRm9ybWF0LCBkZXNjcmlwdGlvbjogJ0RlcHRoU3RlbmNpbEZvcm1hdCd9LFxyXG4gICAge2lkOiBSZWRGb3JtYXQsIGRlc2NyaXB0aW9uOiAnUmVkRm9ybWF0J30sXHJcbiAgICB7aWQ6IFJlZEludGVnZXJGb3JtYXQsIGRlc2NyaXB0aW9uOiAnUmVkSW50ZWdlckZvcm1hdCd9LFxyXG4gICAge2lkOiBSR0Zvcm1hdCwgZGVzY3JpcHRpb246ICdSR0Zvcm1hdCd9LFxyXG4gICAge2lkOiBSR0ludGVnZXJGb3JtYXQsIGRlc2NyaXB0aW9uOiAnUkdJbnRlZ2VyRm9ybWF0J30sXHJcbiAgICB7aWQ6IFJHQkFJbnRlZ2VyRm9ybWF0LCBkZXNjcmlwdGlvbjogJ1JHQkFJbnRlZ2VyRm9ybWF0J31cclxuICBdO1xyXG5cclxuICBwdWJsaWMgdHlwZUxpc3Q6IHsgaWQ6IFRleHR1cmVEYXRhVHlwZSwgZGVzY3JpcHRpb246IHN0cmluZyB9W10gPSBbXHJcbiAgICB7aWQ6IFVuc2lnbmVkQnl0ZVR5cGUsIGRlc2NyaXB0aW9uOiAnVW5zaWduZWRCeXRlVHlwZSd9LFxyXG4gICAge2lkOiBCeXRlVHlwZSwgZGVzY3JpcHRpb246ICdCeXRlVHlwZSd9LFxyXG4gICAge2lkOiBTaG9ydFR5cGUsIGRlc2NyaXB0aW9uOiAnU2hvcnRUeXBlJ30sXHJcbiAgICB7aWQ6IFVuc2lnbmVkU2hvcnRUeXBlLCBkZXNjcmlwdGlvbjogJ1Vuc2lnbmVkU2hvcnRUeXBlJ30sXHJcbiAgICB7aWQ6IEludFR5cGUsIGRlc2NyaXB0aW9uOiAnSW50VHlwZSd9LFxyXG4gICAge2lkOiBVbnNpZ25lZEludFR5cGUsIGRlc2NyaXB0aW9uOiAnVW5zaWduZWRJbnRUeXBlJ30sXHJcbiAgICB7aWQ6IEZsb2F0VHlwZSwgZGVzY3JpcHRpb246ICdGbG9hdFR5cGUnfSxcclxuICAgIHtpZDogSGFsZkZsb2F0VHlwZSwgZGVzY3JpcHRpb246ICdIYWxmRmxvYXRUeXBlJ30sXHJcbiAgICB7aWQ6IFVuc2lnbmVkU2hvcnQ0NDQ0VHlwZSwgZGVzY3JpcHRpb246ICdVbnNpZ25lZFNob3J0NDQ0NFR5cGUnfSxcclxuICAgIHtpZDogVW5zaWduZWRTaG9ydDU1NTFUeXBlLCBkZXNjcmlwdGlvbjogJ1Vuc2lnbmVkU2hvcnQ1NTUxVHlwZSd9LFxyXG4gICAge2lkOiBVbnNpZ25lZEludDI0OFR5cGUsIGRlc2NyaXB0aW9uOiAnVW5zaWduZWRJbnQyNDhUeXBlJ31cclxuICBdO1xyXG5cclxuICBwdWJsaWMgd3JhcHBpbmdMaXN0OiB7IGlkOiBXcmFwcGluZywgZGVzY3JpcHRpb246IHN0cmluZyB9W10gPSBbXHJcbiAgICB7aWQ6IFJlcGVhdFdyYXBwaW5nLCBkZXNjcmlwdGlvbjogJ1JlcGVhdFdyYXBwaW5nJ30sXHJcbiAgICB7aWQ6IENsYW1wVG9FZGdlV3JhcHBpbmcsIGRlc2NyaXB0aW9uOiAnQ2xhbXBUb0VkZ2VXcmFwcGluZyd9LFxyXG4gICAge2lkOiBNaXJyb3JlZFJlcGVhdFdyYXBwaW5nLCBkZXNjcmlwdGlvbjogJ01pcnJvcmVkUmVwZWF0V3JhcHBpbmcnfVxyXG4gIF07XHJcblxyXG4gIHB1YmxpYyBzaG93Q29udGVudDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIHB1YmxpYyB2aWV3SW1hZ2VTcmM6IHN0cmluZztcclxuICBwdWJsaWMgc2hvd1pvb21JbWFnZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBwcml2YXRlIF9tYXA6IFRleHR1cmU7XHJcbiAgcHJpdmF0ZSBfbG9hZGVkSW1hZ2U6IEhUTUxJbWFnZUVsZW1lbnQ7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHVibGljIGljb25TZXJ2aWNlOiBIb21lZGVjb3JhdG9ySWNvbkNhY2hlU2VydmljZSxcclxuICAgIHByaXZhdGUgX3NjZW5lU2VydmljZTogU2NlbmVTZXJ2aWNlXHJcbiAgKSB7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2hvd0xhcmdlSW1hZ2UoKTogdm9pZCB7XHJcbiAgICBpZiAodGhpcy5tYXAuaW1hZ2UgJiYgdGhpcy5tYXAuaW1hZ2UuY3VycmVudFNyYykge1xyXG4gICAgICB0aGlzLnZpZXdJbWFnZVNyYyA9IHRoaXMubWFwLmltYWdlLmN1cnJlbnRTcmM7XHJcbiAgICAgIHRoaXMuc2hvd1pvb21JbWFnZSA9IHRydWU7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGlkZVpvb21JbWFnZShldmVudDogTW91c2VFdmVudCk6IHZvaWQge1xyXG4gICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcclxuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xyXG4gICAgZXZlbnQuc3RvcEltbWVkaWF0ZVByb3BhZ2F0aW9uKCk7XHJcbiAgICB0aGlzLnZpZXdJbWFnZVNyYyA9IHVuZGVmaW5lZDtcclxuICAgIHRoaXMuc2hvd1pvb21JbWFnZSA9IGZhbHNlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHVwbG9hZEltYWdlKG1hcDogc3RyaW5nKTogdm9pZCB7XHJcbiAgICBpZiAodGhpcy5pbnB1dCAmJiB0aGlzLmlucHV0Lm5hdGl2ZUVsZW1lbnQpIHtcclxuICAgICAgdGhpcy5pbnB1dC5uYXRpdmVFbGVtZW50LmNsaWNrKCk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgcmVuZGVyKCk6IHZvaWQge1xyXG4gICAgdGhpcy5tYXBDaGFuZ2UubmV4dCh0aGlzLm1hcCk7XHJcbiAgICB0aGlzLl9zY2VuZVNlcnZpY2UubmVlZHNSZW5kZXIgPSB0cnVlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGNoYW5nZUZsaXAodmFsdWU6IGJvb2xlYW4pOiB2b2lkIHtcclxuICAgIHRoaXMubWFwLmZsaXBZID0gdmFsdWU7XHJcbiAgICBpZiAodGhpcy5tYXAuaW1hZ2UpIHtcclxuICAgICAgdGhpcy5fcmVsb2FkSW1hZ2UodGhpcy5tYXAuaW1hZ2UuY3VycmVudFNyYyk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYXN5bmMgaGFuZGxlRmlsZUNoYW5nZShldmVudDogYW55KTogUHJvbWlzZTx2b2lkPiB7XHJcbiAgICBpZiAoZXZlbnQgJiYgZXZlbnQudGFyZ2V0ICYmIGV2ZW50LnRhcmdldC5maWxlcyAmJiBldmVudC50YXJnZXQuZmlsZXMubGVuZ3RoID09PSAxKSB7XHJcbiAgICAgIGNvbnN0IHJlYWRlcjogRmlsZVJlYWRlciA9IG5ldyBGaWxlUmVhZGVyKCk7XHJcbiAgICAgIGNvbnN0IGZpbGU6IEZpbGUgPSBldmVudC50YXJnZXQuZmlsZXNbMF07XHJcbiAgICAgIHJlYWRlci5yZWFkQXNEYXRhVVJMKGZpbGUpO1xyXG4gICAgICByZWFkZXIub25sb2FkZW5kID0gYXN5bmMgKGxvYWRFdmVudDogYW55KSA9PiB7XHJcbiAgICAgICAgaWYgKGxvYWRFdmVudC50YXJnZXQucmVhZHlTdGF0ZSA9PT0gMikge1xyXG4gICAgICAgICAgdGhpcy5fcmVsb2FkSW1hZ2UobG9hZEV2ZW50LnRhcmdldC5yZXN1bHQpO1xyXG4gICAgICAgIH1cclxuICAgICAgfTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHB1YmxpYyBkZWxldGVNYXAoKTogdm9pZCB7XHJcbiAgICBpZiAodGhpcy5tYXApIHtcclxuICAgICAgdGhpcy5tYXAuZGlzcG9zZSgpO1xyXG4gICAgICB0aGlzLm1hcCA9IHVuZGVmaW5lZDtcclxuICAgIH1cclxuICAgIC8vIHRoaXMubWFwID0gbmV3IFRleHR1cmUoKTtcclxuICAgIC8vIHRoaXMubWFwLm5lZWRzVXBkYXRlID0gdHJ1ZTtcclxuICAgIHRoaXMubWFwQ2hhbmdlLm5leHQodGhpcy5tYXApO1xyXG4gIH1cclxuXHJcblxyXG4gIHByaXZhdGUgYXN5bmMgX3JlbG9hZEltYWdlKHNyYzogc3RyaW5nKTogUHJvbWlzZTx2b2lkPiB7XHJcbiAgICBsZXQgbmV3TWFwOiBUZXh0dXJlO1xyXG4gICAgY29uc3QgdGV4dHVyZTogVGV4dHVyZSA9IGF3YWl0IHRoaXMuX2xvYWRUZXh0dXJlKHNyYyk7XHJcbiAgICBpZiAodGhpcy5tYXApIHtcclxuICAgICAgbmV3TWFwID0gdGhpcy5tYXAuY2xvbmUoKTtcclxuICAgICAgbmV3TWFwLmltYWdlID0gdGV4dHVyZS5pbWFnZTtcclxuICAgICAgdGhpcy5tYXAuZGlzcG9zZSgpO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgbmV3TWFwID0gdGV4dHVyZTtcclxuICAgIH1cclxuICAgIHRoaXMubWFwID0gbmV3TWFwO1xyXG4gICAgdGhpcy5tYXAubmVlZHNVcGRhdGUgPSB0cnVlO1xyXG4gICAgdGhpcy5tYXBDaGFuZ2UubmV4dCh0aGlzLm1hcCk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9sb2FkVGV4dHVyZShzcmM6IHN0cmluZyk6IFByb21pc2U8VGV4dHVyZT4ge1xyXG4gICAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlOiBGdW5jdGlvbikgPT4ge1xyXG4gICAgICBjb25zdCBsb2FkZXI6IFRleHR1cmVMb2FkZXIgPSBuZXcgVGV4dHVyZUxvYWRlcigpO1xyXG4gICAgICBsb2FkZXIubG9hZChzcmMsICh0ZXh0dXJlKSA9PiB7XHJcbiAgICAgICAgcmVzb2x2ZSh0ZXh0dXJlKTtcclxuICAgICAgfSk7XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG59XHJcbiJdfQ==
|