@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,325 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
3
|
+
import { IconEnum } from '../../core/enum/icon.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../../core/service/homedecorator-icon-cache.service";
|
|
6
|
+
import * as i2 from "../../core/service/homedecorator-settings.service";
|
|
7
|
+
import * as i3 from "../../plugins/core3d/service/item.service";
|
|
8
|
+
import * as i4 from "../../service/google-tag-manager.service";
|
|
9
|
+
import * as i5 from "@colijnit/corecomponents";
|
|
10
|
+
import * as i6 from "../../core/components/error/error-message.component";
|
|
11
|
+
import * as i7 from "@angular/material/icon";
|
|
12
|
+
import * as i8 from "@angular/common";
|
|
13
|
+
import * as i9 from "@angular/material/tooltip";
|
|
14
|
+
import * as i10 from "../../core/pipe/localize.pipe";
|
|
15
|
+
export class ModelDialogFurnitureListComponent {
|
|
16
|
+
constructor(iconService, settingsService, _itemService, _googleTagManagerService) {
|
|
17
|
+
this.iconService = iconService;
|
|
18
|
+
this.settingsService = settingsService;
|
|
19
|
+
this._itemService = _itemService;
|
|
20
|
+
this._googleTagManagerService = _googleTagManagerService;
|
|
21
|
+
this.icon = IconEnum;
|
|
22
|
+
this.list = [];
|
|
23
|
+
this.totalPrice = '0';
|
|
24
|
+
this.totalEventSubmitted = false;
|
|
25
|
+
}
|
|
26
|
+
ngOnInit() {
|
|
27
|
+
this.calculateTotal();
|
|
28
|
+
}
|
|
29
|
+
removeFurniture(item) {
|
|
30
|
+
try {
|
|
31
|
+
this._itemService.removeItem(item.furniture);
|
|
32
|
+
const idx = this.list.findIndex(l => l.instanceId === item.instanceId);
|
|
33
|
+
this.list.splice(idx, 1);
|
|
34
|
+
}
|
|
35
|
+
catch (e) {
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
copyFurnitureName(item) {
|
|
39
|
+
document.addEventListener('copy', (e) => {
|
|
40
|
+
e.clipboardData.setData('text/plain', (item.name));
|
|
41
|
+
e.preventDefault();
|
|
42
|
+
document.removeEventListener('copy', null);
|
|
43
|
+
});
|
|
44
|
+
document.execCommand('copy');
|
|
45
|
+
this.list.forEach(l => l.toggle = false);
|
|
46
|
+
item.toggle = true;
|
|
47
|
+
}
|
|
48
|
+
sendConversionToTagManager(article) {
|
|
49
|
+
let conversionAction;
|
|
50
|
+
if (article.metaData.conversionGTMSend) {
|
|
51
|
+
conversionAction = 'remove';
|
|
52
|
+
article.metaData.conversionGTMSend = false;
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
conversionAction = 'add';
|
|
56
|
+
article.metaData.conversionGTMSend = true;
|
|
57
|
+
}
|
|
58
|
+
this._googleTagManagerService.sendProductConversion(article.metaData, conversionAction);
|
|
59
|
+
}
|
|
60
|
+
sendPriceEvent(input, article) {
|
|
61
|
+
const inputValue = input;
|
|
62
|
+
let conversionAction;
|
|
63
|
+
if (inputValue === '' || inputValue === null) {
|
|
64
|
+
conversionAction = 'remove';
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
conversionAction = 'add';
|
|
68
|
+
}
|
|
69
|
+
this._googleTagManagerService.sendProductPriceConversion(article.metaData, conversionAction, inputValue);
|
|
70
|
+
for (const listItem of this.list) {
|
|
71
|
+
if (listItem.instanceId === article.instanceId) {
|
|
72
|
+
listItem.metaData.conversionSubmittedPrice = inputValue;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
this.calculateTotal();
|
|
76
|
+
}
|
|
77
|
+
submitInput(inputId, item) {
|
|
78
|
+
const inputValue = document.getElementById(inputId).value;
|
|
79
|
+
this.sendPriceEvent(inputValue, item);
|
|
80
|
+
}
|
|
81
|
+
getInputValue(input, article) {
|
|
82
|
+
const inputValue = input.target.value;
|
|
83
|
+
this.sendPriceEvent(inputValue, article);
|
|
84
|
+
}
|
|
85
|
+
submitTotalPriceEvent() {
|
|
86
|
+
this.calculateTotal();
|
|
87
|
+
let conversionType;
|
|
88
|
+
if (this.totalEventSubmitted) {
|
|
89
|
+
conversionType = 'remove';
|
|
90
|
+
this.totalEventSubmitted = false;
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
conversionType = 'add';
|
|
94
|
+
this.totalEventSubmitted = true;
|
|
95
|
+
}
|
|
96
|
+
this._googleTagManagerService.sendProjectConversion(this.totalPrice, conversionType);
|
|
97
|
+
}
|
|
98
|
+
calculateTotal() {
|
|
99
|
+
let price = 0;
|
|
100
|
+
for (const item of this.list) {
|
|
101
|
+
if (item.metaData.conversionSubmittedPrice !== '') {
|
|
102
|
+
// convert to price.00
|
|
103
|
+
const priceToDot = item.metaData.conversionSubmittedPrice.replace(',', '.');
|
|
104
|
+
price += parseFloat(priceToDot);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
this.totalPrice = price.toString();
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
ModelDialogFurnitureListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogFurnitureListComponent, deps: [{ token: i1.HomedecoratorIconCacheService }, { token: i2.HomedecoratorSettingsService }, { token: i3.ItemService }, { token: i4.GoogleTagManagerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
111
|
+
ModelDialogFurnitureListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ModelDialogFurnitureListComponent, selector: "dialog-furniture-list", inputs: { list: "list", label: "label", subLabel: "subLabel", showCopy: "showCopy", showDelete: "showDelete", showTotals: "showTotals" }, ngImport: i0, template: `
|
|
112
|
+
<ng-container *ngIf="list.length > 0">
|
|
113
|
+
<div class="title">
|
|
114
|
+
<h4 class="label" *ngIf="label" [textContent]="label | localize"></h4>
|
|
115
|
+
<p class="sub-label" *ngIf="subLabel" [textContent]="subLabel | localize"></p>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
<ul class="furniture-list">
|
|
120
|
+
<li *ngFor="let item of list; let i = index" [attr.data-index]="i" class="furniture-item">
|
|
121
|
+
<div class="furniture-item-wrap">
|
|
122
|
+
<div class="furniture-item-left">
|
|
123
|
+
<div class="furniture-item-wrapper">
|
|
124
|
+
<co-icon *ngIf="item.errorMessages.length > 0" class="error-expand-handle" [class.expanded]="item.showErrors"
|
|
125
|
+
[iconData]="iconService.getIcon(icon.ArrowPointDown)" (click)="item.showErrors = !item.showErrors"></co-icon>
|
|
126
|
+
<span class="furniture-item-title" [textContent]="item.name"></span>
|
|
127
|
+
<button *ngIf=showCopy class="furniture-item-copy"
|
|
128
|
+
[textContent]="item.toggle ? ('COPIED' | localize) : ('COPY' | localize)"
|
|
129
|
+
(click)="copyFurnitureName(item)"></button>
|
|
130
|
+
</div>
|
|
131
|
+
<div class="error-messages-wrapper" *ngIf="item.showErrors" @showErrorMessages>
|
|
132
|
+
<error-messages [messages]="item.errorMessages"></error-messages>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
<div class="furniture-item-right" *ngIf="showDelete">
|
|
136
|
+
<button class="furniture-item-delete" matTooltip="{{'REMOVE' | localize}}"
|
|
137
|
+
(click)="removeFurniture(item)">
|
|
138
|
+
<mat-icon class="homedecorator-material-icons">delete</mat-icon>
|
|
139
|
+
</button>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
<!-- add conversionbtn here-->
|
|
143
|
+
<div class="furniture-item-conversion-wrap" *ngIf="settingsService.settings.showConversionButtons">
|
|
144
|
+
<div class="furniture-item-conversion-row furniture-item-conversion-button-wrap">
|
|
145
|
+
<button
|
|
146
|
+
(click)="sendConversionToTagManager(item)"
|
|
147
|
+
class="furniture-item-button furniture-item-conversion"
|
|
148
|
+
[ngClass]="item.metaData.conversionGTMSend ? 'furniture-item-conversion-highlight':''">
|
|
149
|
+
<mat-icon class="homedecorator-material-icons">add_shopping_cart</mat-icon>
|
|
150
|
+
</button>
|
|
151
|
+
</div>
|
|
152
|
+
<div class="furniture-item-conversion-row furniture-item-conversion-input-wrap">
|
|
153
|
+
<label *ngIf="item.metaData.conversionGTMSend" class="furniture-item-conversion-input-label">
|
|
154
|
+
{{ 'SALESPRICE' | localize }}
|
|
155
|
+
</label>
|
|
156
|
+
<input
|
|
157
|
+
type="text"
|
|
158
|
+
[value]="item.metaData.conversionSubmittedPrice ? item.metaData.conversionSubmittedPrice : ''"
|
|
159
|
+
[disabled]="!item.metaData.conversionGTMSend"
|
|
160
|
+
(keydown.enter)="getInputValue($event, item)"
|
|
161
|
+
(keydown.tab)="getInputValue($event, item)"
|
|
162
|
+
[id]="item.instanceId"
|
|
163
|
+
>
|
|
164
|
+
<button
|
|
165
|
+
class="input-binded-button"
|
|
166
|
+
(click)="submitInput(item.instanceId, item)"
|
|
167
|
+
[ngClass]="item.metaData.conversionSubmittedPrice && item.metaData.conversionSubmittedPrice !== '' ? 'input-binded-button-highlight' : ''"
|
|
168
|
+
>
|
|
169
|
+
<mat-icon class="homedecorator-material-icons">check_circle</mat-icon>
|
|
170
|
+
</button>
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
</li>
|
|
174
|
+
</ul>
|
|
175
|
+
|
|
176
|
+
<div class="furniture-item-totals" *ngIf="showTotals && settingsService.settings.showConversionButtons">
|
|
177
|
+
<div class="furniture-item-total-row furniture-item-total">
|
|
178
|
+
<span>{{ 'TOTALPRICE' | localize }}: {{ totalPrice }}</span>
|
|
179
|
+
</div>
|
|
180
|
+
<div class="furniture-item-total-row furniture-item-total-submit">
|
|
181
|
+
<button
|
|
182
|
+
name="submit project conversion"
|
|
183
|
+
alt="submit project conversion"
|
|
184
|
+
class="furniture-item-button furniture-item-total-button"
|
|
185
|
+
(click)="submitTotalPriceEvent()"
|
|
186
|
+
[ngClass]="totalEventSubmitted ? 'furniture-item-total-button-highlight' : ''">
|
|
187
|
+
<mat-icon class="homedecorator-material-icons" *ngIf="!totalEventSubmitted">arrow_upward</mat-icon>
|
|
188
|
+
<mat-icon class="homedecorator-material-icons" *ngIf="totalEventSubmitted">check_circle</mat-icon>
|
|
189
|
+
</button>
|
|
190
|
+
</div>
|
|
191
|
+
</div>
|
|
192
|
+
|
|
193
|
+
</ng-container>
|
|
194
|
+
`, isInline: true, styles: [".title{margin-bottom:10px}.label{margin:0}.sub-label{font-size:12px;font-style:italic;margin:0}.furniture-item-button{-webkit-user-select:none;user-select:none;width:36px;height:36px;color:#fff;background:#3760a1;border:none;border-radius:100%;cursor:pointer;flex-shrink:0}.furniture-item-button .mat-icon{font-size:18px;line-height:36px;width:auto;height:auto}.furniture-list{display:flex;flex-direction:column;width:100%;padding:0;overflow:hidden;margin:0 0 10px}.furniture-list .furniture-item{display:flex;align-items:flex-start;width:100%;margin:2px 0 0;overflow:hidden}.furniture-list .furniture-item.furniture-model .furniture-item-left{padding-right:10px}.furniture-list .furniture-item .furniture-item-wrapper{display:flex;align-items:center}.furniture-list .furniture-item .furniture-item-wrapper .error-expand-handle{cursor:pointer;transform:rotate(0);height:40px;width:40px}.furniture-list .furniture-item .furniture-item-wrapper .error-expand-handle.expanded{transform:rotate(180deg);transition:.3s ease-in-out}.furniture-list .furniture-item .furniture-item-wrap{border:1px solid #dce4ea;padding:4px 0 4px 10px;display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-left{display:flex;flex-direction:column;width:80%;font-size:13px;margin:0}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-left .furniture-item-title{display:flex;flex-direction:column;justify-content:center;width:100%;min-height:32px}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-left .furniture-item-copy{float:right;border:none;padding:0 15px;margin:0 0 0 10px;line-height:32px;font-size:12px;text-transform:uppercase;background:transparent;color:#dce4ea;font-weight:600;cursor:pointer}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-left .furniture-item-copy:focus{outline:0}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-left .furniture-item-copy:hover{color:#000000de}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-right{display:flex;padding-top:4px;width:20%;flex-direction:column;justify-content:center;align-items:center}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-right .furniture-item-delete{-webkit-user-select:none;user-select:none;width:36px;height:36px;color:#fff;background:#3760a1;border:none;border-radius:100%;cursor:pointer;flex-shrink:0}.furniture-list .furniture-item .furniture-item-wrap .furniture-item-right .furniture-item-delete .mat-icon{font-size:18px;line-height:36px;width:auto;height:auto}.furniture-list .furniture-item .furniture-item-conversion-wrap{display:flex;flex-direction:row;flex-wrap:wrap;padding-top:9px;box-sizing:border-box}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-row{display:flex;flex-direction:column;justify-content:center;align-items:center}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-button-wrap{width:30%}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap{width:70%;position:relative}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap input{width:90%;border:1px solid #e8eceb;border-radius:3px;box-sizing:border-box;padding:10px 5px}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap input:disabled{background:#eee}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap .furniture-item-conversion-input-label{font-size:8px;position:absolute;top:2px;left:10px}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap .input-binded-button{background:none;border:none;cursor:pointer;position:absolute;right:0;top:10px;color:#000}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap .input-binded-button .mat-icon{height:14px;width:14px;font-size:14px}.furniture-list .furniture-item .furniture-item-conversion-wrap .furniture-item-conversion-input-wrap .input-binded-button-highlight{color:#009a6d}.furniture-item-conversion-highlight{background:#009a6d}.furniture-item-conversion-highlight svg{fill:#fff}::ng-deep error-messages .error-message{font-weight:bold;font-size:12px}::ng-deep error-messages .error-description{font-size:11px}.furniture-item-totals{display:flex;flex-direction:row;justify-content:right;align-items:center}.furniture-item-totals .furniture-item-total-row{display:flex;flex-direction:column;margin-left:15px}.furniture-item-totals .furniture-item-total-button-highlight{background:#009a6d;color:#fff}\n"], components: [{ type: i5.ɵb, selector: "co-icon", inputs: ["icon", "iconData"] }, { type: i6.ErrorMessageComponent, selector: "error-messages", inputs: ["messages"] }, { type: i7.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i9.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { type: i8.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], pipes: { "localize": i10.LocalizePipe }, animations: [
|
|
195
|
+
trigger('slideInOut', [
|
|
196
|
+
transition(':leave', [
|
|
197
|
+
style({ transform: 'translateY(0%)', opacity: '1' }),
|
|
198
|
+
animate('.3s', style({ transform: 'translateY(-100%)', opacity: '0' }))
|
|
199
|
+
])
|
|
200
|
+
]),
|
|
201
|
+
trigger('showErrorMessages', [
|
|
202
|
+
state('void', style({ height: '0' })),
|
|
203
|
+
state('*', style({ height: '*' })),
|
|
204
|
+
transition('void <=> *', animate('.3s ease-in-out'))
|
|
205
|
+
])
|
|
206
|
+
] });
|
|
207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogFurnitureListComponent, decorators: [{
|
|
208
|
+
type: Component,
|
|
209
|
+
args: [{
|
|
210
|
+
selector: 'dialog-furniture-list',
|
|
211
|
+
template: `
|
|
212
|
+
<ng-container *ngIf="list.length > 0">
|
|
213
|
+
<div class="title">
|
|
214
|
+
<h4 class="label" *ngIf="label" [textContent]="label | localize"></h4>
|
|
215
|
+
<p class="sub-label" *ngIf="subLabel" [textContent]="subLabel | localize"></p>
|
|
216
|
+
</div>
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
<ul class="furniture-list">
|
|
220
|
+
<li *ngFor="let item of list; let i = index" [attr.data-index]="i" class="furniture-item">
|
|
221
|
+
<div class="furniture-item-wrap">
|
|
222
|
+
<div class="furniture-item-left">
|
|
223
|
+
<div class="furniture-item-wrapper">
|
|
224
|
+
<co-icon *ngIf="item.errorMessages.length > 0" class="error-expand-handle" [class.expanded]="item.showErrors"
|
|
225
|
+
[iconData]="iconService.getIcon(icon.ArrowPointDown)" (click)="item.showErrors = !item.showErrors"></co-icon>
|
|
226
|
+
<span class="furniture-item-title" [textContent]="item.name"></span>
|
|
227
|
+
<button *ngIf=showCopy class="furniture-item-copy"
|
|
228
|
+
[textContent]="item.toggle ? ('COPIED' | localize) : ('COPY' | localize)"
|
|
229
|
+
(click)="copyFurnitureName(item)"></button>
|
|
230
|
+
</div>
|
|
231
|
+
<div class="error-messages-wrapper" *ngIf="item.showErrors" @showErrorMessages>
|
|
232
|
+
<error-messages [messages]="item.errorMessages"></error-messages>
|
|
233
|
+
</div>
|
|
234
|
+
</div>
|
|
235
|
+
<div class="furniture-item-right" *ngIf="showDelete">
|
|
236
|
+
<button class="furniture-item-delete" matTooltip="{{'REMOVE' | localize}}"
|
|
237
|
+
(click)="removeFurniture(item)">
|
|
238
|
+
<mat-icon class="homedecorator-material-icons">delete</mat-icon>
|
|
239
|
+
</button>
|
|
240
|
+
</div>
|
|
241
|
+
</div>
|
|
242
|
+
<!-- add conversionbtn here-->
|
|
243
|
+
<div class="furniture-item-conversion-wrap" *ngIf="settingsService.settings.showConversionButtons">
|
|
244
|
+
<div class="furniture-item-conversion-row furniture-item-conversion-button-wrap">
|
|
245
|
+
<button
|
|
246
|
+
(click)="sendConversionToTagManager(item)"
|
|
247
|
+
class="furniture-item-button furniture-item-conversion"
|
|
248
|
+
[ngClass]="item.metaData.conversionGTMSend ? 'furniture-item-conversion-highlight':''">
|
|
249
|
+
<mat-icon class="homedecorator-material-icons">add_shopping_cart</mat-icon>
|
|
250
|
+
</button>
|
|
251
|
+
</div>
|
|
252
|
+
<div class="furniture-item-conversion-row furniture-item-conversion-input-wrap">
|
|
253
|
+
<label *ngIf="item.metaData.conversionGTMSend" class="furniture-item-conversion-input-label">
|
|
254
|
+
{{ 'SALESPRICE' | localize }}
|
|
255
|
+
</label>
|
|
256
|
+
<input
|
|
257
|
+
type="text"
|
|
258
|
+
[value]="item.metaData.conversionSubmittedPrice ? item.metaData.conversionSubmittedPrice : ''"
|
|
259
|
+
[disabled]="!item.metaData.conversionGTMSend"
|
|
260
|
+
(keydown.enter)="getInputValue($event, item)"
|
|
261
|
+
(keydown.tab)="getInputValue($event, item)"
|
|
262
|
+
[id]="item.instanceId"
|
|
263
|
+
>
|
|
264
|
+
<button
|
|
265
|
+
class="input-binded-button"
|
|
266
|
+
(click)="submitInput(item.instanceId, item)"
|
|
267
|
+
[ngClass]="item.metaData.conversionSubmittedPrice && item.metaData.conversionSubmittedPrice !== '' ? 'input-binded-button-highlight' : ''"
|
|
268
|
+
>
|
|
269
|
+
<mat-icon class="homedecorator-material-icons">check_circle</mat-icon>
|
|
270
|
+
</button>
|
|
271
|
+
</div>
|
|
272
|
+
</div>
|
|
273
|
+
</li>
|
|
274
|
+
</ul>
|
|
275
|
+
|
|
276
|
+
<div class="furniture-item-totals" *ngIf="showTotals && settingsService.settings.showConversionButtons">
|
|
277
|
+
<div class="furniture-item-total-row furniture-item-total">
|
|
278
|
+
<span>{{ 'TOTALPRICE' | localize }}: {{ totalPrice }}</span>
|
|
279
|
+
</div>
|
|
280
|
+
<div class="furniture-item-total-row furniture-item-total-submit">
|
|
281
|
+
<button
|
|
282
|
+
name="submit project conversion"
|
|
283
|
+
alt="submit project conversion"
|
|
284
|
+
class="furniture-item-button furniture-item-total-button"
|
|
285
|
+
(click)="submitTotalPriceEvent()"
|
|
286
|
+
[ngClass]="totalEventSubmitted ? 'furniture-item-total-button-highlight' : ''">
|
|
287
|
+
<mat-icon class="homedecorator-material-icons" *ngIf="!totalEventSubmitted">arrow_upward</mat-icon>
|
|
288
|
+
<mat-icon class="homedecorator-material-icons" *ngIf="totalEventSubmitted">check_circle</mat-icon>
|
|
289
|
+
</button>
|
|
290
|
+
</div>
|
|
291
|
+
</div>
|
|
292
|
+
|
|
293
|
+
</ng-container>
|
|
294
|
+
`,
|
|
295
|
+
styleUrls: [
|
|
296
|
+
'./model-dialog-furniture-list.component.scss'
|
|
297
|
+
],
|
|
298
|
+
animations: [
|
|
299
|
+
trigger('slideInOut', [
|
|
300
|
+
transition(':leave', [
|
|
301
|
+
style({ transform: 'translateY(0%)', opacity: '1' }),
|
|
302
|
+
animate('.3s', style({ transform: 'translateY(-100%)', opacity: '0' }))
|
|
303
|
+
])
|
|
304
|
+
]),
|
|
305
|
+
trigger('showErrorMessages', [
|
|
306
|
+
state('void', style({ height: '0' })),
|
|
307
|
+
state('*', style({ height: '*' })),
|
|
308
|
+
transition('void <=> *', animate('.3s ease-in-out'))
|
|
309
|
+
])
|
|
310
|
+
]
|
|
311
|
+
}]
|
|
312
|
+
}], ctorParameters: function () { return [{ type: i1.HomedecoratorIconCacheService }, { type: i2.HomedecoratorSettingsService }, { type: i3.ItemService }, { type: i4.GoogleTagManagerService }]; }, propDecorators: { list: [{
|
|
313
|
+
type: Input
|
|
314
|
+
}], label: [{
|
|
315
|
+
type: Input
|
|
316
|
+
}], subLabel: [{
|
|
317
|
+
type: Input
|
|
318
|
+
}], showCopy: [{
|
|
319
|
+
type: Input
|
|
320
|
+
}], showDelete: [{
|
|
321
|
+
type: Input
|
|
322
|
+
}], showTotals: [{
|
|
323
|
+
type: Input
|
|
324
|
+
}] } });
|
|
325
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWwtZGlhbG9nLWZ1cm5pdHVyZS1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9jbGllbnQvYXBwL3NoYXJlZC9tb2RlbC1kaWFsb2cvbW9kZWwtZGlhbG9nLWZ1cm5pdHVyZS1saXN0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBUyxNQUFNLGVBQWUsQ0FBQztBQUN2RCxPQUFPLEVBQUMsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQy9FLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSwyQkFBMkIsQ0FBQzs7Ozs7Ozs7Ozs7O0FBK0duRCxNQUFNLE9BQU8saUNBQWlDO0lBd0I1QyxZQUNTLFdBQTBDLEVBQzFDLGVBQTZDLEVBQzVDLFlBQXlCLEVBQ3pCLHdCQUFpRDtRQUhsRCxnQkFBVyxHQUFYLFdBQVcsQ0FBK0I7UUFDMUMsb0JBQWUsR0FBZixlQUFlLENBQThCO1FBQzVDLGlCQUFZLEdBQVosWUFBWSxDQUFhO1FBQ3pCLDZCQUF3QixHQUF4Qix3QkFBd0IsQ0FBeUI7UUEzQjNDLFNBQUksR0FBb0IsUUFBUSxDQUFDO1FBRzFDLFNBQUksR0FBNkIsRUFBRSxDQUFDO1FBaUJwQyxlQUFVLEdBQVcsR0FBRyxDQUFDO1FBQ3pCLHdCQUFtQixHQUFZLEtBQUssQ0FBQztJQVE1QyxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUN4QixDQUFDO0lBRU0sZUFBZSxDQUFDLElBQTRCO1FBQ2pELElBQUk7WUFDRixJQUFJLENBQUMsWUFBWSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7WUFDN0MsTUFBTSxHQUFHLEdBQVcsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFT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QUNuQyxLQUFLLENBQUMsR0FBRyxFQUFFLEtBQUssQ0FBQyxFQUFDLE1BQU0sRUFBRSxHQUFHLEVBQUMsQ0FBQyxDQUFDOzRCQUNoQyxVQUFVLENBQUMsWUFBWSxFQUFFLE9BQU8sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO3lCQUNyRCxDQUFDO3FCQUNIO2lCQUNGOytOQU1RLElBQUk7c0JBRFYsS0FBSztnQkFJQyxLQUFLO3NCQURYLEtBQUs7Z0JBSUMsUUFBUTtzQkFEZCxLQUFLO2dCQUlDLFFBQVE7c0JBRGQsS0FBSztnQkFJQyxVQUFVO3NCQURoQixLQUFLO2dCQUlDLFVBQVU7c0JBRGhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5wdXQsIE9uSW5pdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7YW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcclxuaW1wb3J0IHtJY29uRW51bX0gZnJvbSAnLi4vLi4vY29yZS9lbnVtL2ljb24uZW51bSc7XHJcbmltcG9ydCB7Q3VzdG9tRmxvb3JHcm91cFJlc3VsdH0gZnJvbSAnLi4vLi4vcGx1Z2lucy9jb3JlM2QvbW9kZWwvY3VzdG9tLWZsb29yLWdyb3VwLXJlc3VsdCc7XHJcbmltcG9ydCB7SG9tZWRlY29yYXRvckljb25DYWNoZVNlcnZpY2V9IGZyb20gJy4uLy4uL2NvcmUvc2VydmljZS9ob21lZGVjb3JhdG9yLWljb24tY2FjaGUuc2VydmljZSc7XHJcbmltcG9ydCB7SXRlbVNlcnZpY2V9IGZyb20gJy4uLy4uL3BsdWdpbnMvY29yZTNkL3NlcnZpY2UvaXRlbS5zZXJ2aWNlJztcclxuaW1wb3J0IHtHb29nbGVUYWdNYW5hZ2VyU2VydmljZX0gZnJvbSAnLi4vLi4vc2VydmljZS9nb29nbGUtdGFnLW1hbmFnZXIuc2VydmljZSc7XHJcbmltcG9ydCB7SG9tZWRlY29yYXRvclNldHRpbmdzU2VydmljZX0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlL2hvbWVkZWNvcmF0b3Itc2V0dGluZ3Muc2VydmljZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2RpYWxvZy1mdXJuaXR1cmUtbGlzdCcsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsaXN0Lmxlbmd0aCA+IDBcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cInRpdGxlXCI+XHJcbiAgICAgICAgPGg0IGNsYXNzPVwibGFiZWxcIiAqbmdJZj1cImxhYmVsXCIgW3RleHRDb250ZW50XT1cImxhYmVsIHwgbG9jYWxpemVcIj48L2g0PlxyXG4gICAgICAgIDxwIGNsYXNzPVwic3ViLWxhYmVsXCIgKm5nSWY9XCJzdWJMYWJlbFwiIFt0ZXh0Q29udGVudF09XCJzdWJMYWJlbCB8IGxvY2FsaXplXCI+PC9wPlxyXG4gICAgICA8L2Rpdj5cclxuXHJcblxyXG4gICAgICA8dWwgY2xhc3M9XCJmdXJuaXR1cmUtbGlzdFwiPlxyXG4gICAgICAgIDxsaSAqbmdGb3I9XCJsZXQgaXRlbSBvZiBsaXN0OyBsZXQgaSA9IGluZGV4XCIgW2F0dHIuZGF0YS1pbmRleF09XCJpXCIgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbVwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImZ1cm5pdHVyZS1pdGVtLXdyYXBcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZ1cm5pdHVyZS1pdGVtLWxlZnRcIj5cclxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZnVybml0dXJlLWl0ZW0td3JhcHBlclwiPlxyXG4gICAgICAgICAgICAgICAgPGNvLWljb24gKm5nSWY9XCJpdGVtLmVycm9yTWVzc2FnZXMubGVuZ3RoID4gMFwiIGNsYXNzPVwiZXJyb3ItZXhwYW5kLWhhbmRsZVwiIFtjbGFzcy5leHBhbmRlZF09XCJpdGVtLnNob3dFcnJvcnNcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgW2ljb25EYXRhXT1cImljb25TZXJ2aWNlLmdldEljb24oaWNvbi5BcnJvd1BvaW50RG93bilcIiAoY2xpY2spPVwiaXRlbS5zaG93RXJyb3JzID0gIWl0ZW0uc2hvd0Vycm9yc1wiPjwvY28taWNvbj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiZnVybml0dXJlLWl0ZW0tdGl0bGVcIiBbdGV4dENvbnRlbnRdPVwiaXRlbS5uYW1lXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgPGJ1dHRvbiAqbmdJZj1zaG93Q29weSBjbGFzcz1cImZ1cm5pdHVyZS1pdGVtLWNvcHlcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICBbdGV4dENvbnRlbnRdPVwiaXRlbS50b2dnbGUgPyAoJ0NPUElFRCcgfCBsb2NhbGl6ZSkgOiAoJ0NPUFknIHwgbG9jYWxpemUpXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImNvcHlGdXJuaXR1cmVOYW1lKGl0ZW0pXCI+PC9idXR0b24+XHJcbiAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImVycm9yLW1lc3NhZ2VzLXdyYXBwZXJcIiAqbmdJZj1cIml0ZW0uc2hvd0Vycm9yc1wiIEBzaG93RXJyb3JNZXNzYWdlcz5cclxuICAgICAgICAgICAgICAgIDxlcnJvci1tZXNzYWdlcyBbbWVzc2FnZXNdPVwiaXRlbS5lcnJvck1lc3NhZ2VzXCI+PC9lcnJvci1tZXNzYWdlcz5cclxuICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS1yaWdodFwiICpuZ0lmPVwic2hvd0RlbGV0ZVwiPlxyXG4gICAgICAgICAgICAgIDxidXR0b24gY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS1kZWxldGVcIiBtYXRUb29sdGlwPVwie3snUkVNT1ZFJyB8IGxvY2FsaXplfX1cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cInJlbW92ZUZ1cm5pdHVyZShpdGVtKVwiPlxyXG4gICAgICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiPmRlbGV0ZTwvbWF0LWljb24+XHJcbiAgICAgICAgICAgICAgPC9idXR0b24+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8IS0tIGFkZCBjb252ZXJzaW9uYnRuIGhlcmUtLT5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS1jb252ZXJzaW9uLXdyYXBcIiAqbmdJZj1cInNldHRpbmdzU2VydmljZS5zZXR0aW5ncy5zaG93Q29udmVyc2lvbkJ1dHRvbnNcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZ1cm5pdHVyZS1pdGVtLWNvbnZlcnNpb24tcm93IGZ1cm5pdHVyZS1pdGVtLWNvbnZlcnNpb24tYnV0dG9uLXdyYXBcIj5cclxuICAgICAgICAgICAgICA8YnV0dG9uXHJcbiAgICAgICAgICAgICAgICAoY2xpY2spPVwic2VuZENvbnZlcnNpb25Ub1RhZ01hbmFnZXIoaXRlbSlcIlxyXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS1idXR0b24gZnVybml0dXJlLWl0ZW0tY29udmVyc2lvblwiXHJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJpdGVtLm1ldGFEYXRhLmNvbnZlcnNpb25HVE1TZW5kID8gJ2Z1cm5pdHVyZS1pdGVtLWNvbnZlcnNpb24taGlnaGxpZ2h0JzonJ1wiPlxyXG4gICAgICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiPmFkZF9zaG9wcGluZ19jYXJ0PC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgICA8L2J1dHRvbj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS1jb252ZXJzaW9uLXJvdyBmdXJuaXR1cmUtaXRlbS1jb252ZXJzaW9uLWlucHV0LXdyYXBcIj5cclxuICAgICAgICAgICAgICA8bGFiZWwgKm5nSWY9XCJpdGVtLm1ldGFEYXRhLmNvbnZlcnNpb25HVE1TZW5kXCIgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS1jb252ZXJzaW9uLWlucHV0LWxhYmVsXCI+XHJcbiAgICAgICAgICAgICAgICB7eyAnU0FMRVNQUklDRScgfCBsb2NhbGl6ZSB9fVxyXG4gICAgICAgICAgICAgIDwvbGFiZWw+XHJcbiAgICAgICAgICAgICAgPGlucHV0XHJcbiAgICAgICAgICAgICAgICB0eXBlPVwidGV4dFwiXHJcbiAgICAgICAgICAgICAgICBbdmFsdWVdPVwiaXRlbS5tZXRhRGF0YS5jb252ZXJzaW9uU3VibWl0dGVkUHJpY2UgPyBpdGVtLm1ldGFEYXRhLmNvbnZlcnNpb25TdWJtaXR0ZWRQcmljZSA6ICcnXCJcclxuICAgICAgICAgICAgICAgIFtkaXNhYmxlZF09XCIhaXRlbS5tZXRhRGF0YS5jb252ZXJzaW9uR1RNU2VuZFwiXHJcbiAgICAgICAgICAgICAgICAoa2V5ZG93bi5lbnRlcik9XCJnZXRJbnB1dFZhbHVlKCRldmVudCwgaXRlbSlcIlxyXG4gICAgICAgICAgICAgICAgKGtleWRvd24udGFiKT1cImdldElucHV0VmFsdWUoJGV2ZW50LCBpdGVtKVwiXHJcbiAgICAgICAgICAgICAgICBbaWRdPVwiaXRlbS5pbnN0YW5jZUlkXCJcclxuICAgICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgPGJ1dHRvblxyXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJpbnB1dC1iaW5kZWQtYnV0dG9uXCJcclxuICAgICAgICAgICAgICAgIChjbGljayk9XCJzdWJtaXRJbnB1dChpdGVtLmluc3RhbmNlSWQsIGl0ZW0pXCJcclxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cIml0ZW0ubWV0YURhdGEuY29udmVyc2lvblN1Ym1pdHRlZFByaWNlICYmIGl0ZW0ubWV0YURhdGEuY29udmVyc2lvblN1Ym1pdHRlZFByaWNlICE9PSAnJyA/ICdpbnB1dC1iaW5kZWQtYnV0dG9uLWhpZ2hsaWdodCcgOiAnJ1wiXHJcbiAgICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgPG1hdC1pY29uIGNsYXNzPVwiaG9tZWRlY29yYXRvci1tYXRlcmlhbC1pY29uc1wiPmNoZWNrX2NpcmNsZTwvbWF0LWljb24+XHJcbiAgICAgICAgICAgICAgPC9idXR0b24+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9saT5cclxuICAgICAgPC91bD5cclxuXHJcbiAgICAgIDxkaXYgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS10b3RhbHNcIiAqbmdJZj1cInNob3dUb3RhbHMgJiYgc2V0dGluZ3NTZXJ2aWNlLnNldHRpbmdzLnNob3dDb252ZXJzaW9uQnV0dG9uc1wiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS10b3RhbC1yb3cgZnVybml0dXJlLWl0ZW0tdG90YWxcIj5cclxuICAgICAgICAgIDxzcGFuPnt7ICdUT1RBTFBSSUNFJyB8IGxvY2FsaXplIH19OiB7eyB0b3RhbFByaWNlIH19PC9zcGFuPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJmdXJuaXR1cmUtaXRlbS10b3RhbC1yb3cgZnVybml0dXJlLWl0ZW0tdG90YWwtc3VibWl0XCI+XHJcbiAgICAgICAgICA8YnV0dG9uXHJcbiAgICAgICAgICAgIG5hbWU9XCJzdWJtaXQgcHJvamVjdCBjb252ZXJzaW9uXCJcclxuICAgICAgICAgICAgYWx0PVwic3VibWl0IHByb2plY3QgY29udmVyc2lvblwiXHJcbiAgICAgICAgICAgIGNsYXNzPVwiZnVybml0dXJlLWl0ZW0tYnV0dG9uIGZ1cm5pdHVyZS1pdGVtLXRvdGFsLWJ1dHRvblwiXHJcbiAgICAgICAgICAgIChjbGljayk9XCJzdWJtaXRUb3RhbFByaWNlRXZlbnQoKVwiXHJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInRvdGFsRXZlbnRTdWJtaXR0ZWQgPyAnZnVybml0dXJlLWl0ZW0tdG90YWwtYnV0dG9uLWhpZ2hsaWdodCcgOiAnJ1wiPlxyXG4gICAgICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJob21lZGVjb3JhdG9yLW1hdGVyaWFsLWljb25zXCIgKm5nSWY9XCIhdG90YWxFdmVudFN1Ym1pdHRlZFwiPmFycm93X3Vwd2FyZDwvbWF0LWljb24+XHJcbiAgICAgICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cImhvbWVkZWNvcmF0b3ItbWF0ZXJpYWwtaWNvbnNcIiAqbmdJZj1cInRvdGFsRXZlbnRTdWJtaXR0ZWRcIj5jaGVja19jaXJjbGU8L21hdC1pY29uPlxyXG4gICAgICAgICAgPC9idXR0b24+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG5cclxuICAgIDwvbmctY29udGFpbmVyPlxyXG4gIGAsXHJcbiAgc3R5bGVVcmxzOiBbXHJcbiAgICAnLi9tb2RlbC1kaWFsb2ctZnVybml0dXJlLWxpc3QuY29tcG9uZW50LnNjc3MnXHJcbiAgXSxcclxuICBhbmltYXRpb25zOiBbXHJcbiAgICB0cmlnZ2VyKCdzbGlkZUluT3V0JywgW1xyXG4gICAgICB0cmFuc2l0aW9uKCc6bGVhdmUnLCBbXHJcbiAgICAgICAgc3R5bGUoe3RyYW5zZm9ybTogJ3RyYW5zbGF0ZVkoMCUpJywgb3BhY2l0eTogJzEnfSksXHJcbiAgICAgICAgYW5pbWF0ZSgnLjNzJywgc3R5bGUoe3RyYW5zZm9ybTogJ3RyYW5zbGF0ZVkoLTEwMCUpJywgb3BhY2l0eTogJzAnfSkpXHJcbiAgICAgIF0pXHJcbiAgICBdKSxcclxuICAgIHRyaWdnZXIoJ3Nob3dFcnJvck1lc3NhZ2VzJywgW1xyXG4gICAgICBzdGF0ZSgndm9pZCcsIHN0eWxlKHtoZWlnaHQ6ICcwJ30pKSxcclxuICAgICAgc3RhdGUoJyonLCBzdHlsZSh7aGVpZ2h0OiAnKid9KSksXHJcbiAgICAgIHRyYW5zaXRpb24oJ3ZvaWQgPD0+IConLCBhbmltYXRlKCcuM3MgZWFzZS1pbi1vdXQnKSlcclxuICAgIF0pXHJcbiAgXVxyXG59KVxyXG5cclxuZXhwb3J0IGNsYXNzIE1vZGVsRGlhbG9nRnVybml0dXJlTGlzdENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgcHVibGljIHJlYWRvbmx5IGljb246IHR5cGVvZiBJY29uRW51bSA9IEljb25FbnVtO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBsaXN0OiBDdXN0b21GbG9vckdyb3VwUmVzdWx0W10gPSBbXTtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgbGFiZWw6IHN0cmluZztcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgc3ViTGFiZWw6IHN0cmluZztcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgc2hvd0NvcHk6IGJvb2xlYW47XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHNob3dEZWxldGU6IGJvb2xlYW47XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHNob3dUb3RhbHM6IGJvb2xlYW47XHJcblxyXG4gIHB1YmxpYyB0b3RhbFByaWNlOiBzdHJpbmcgPSAnMCc7XHJcbiAgcHVibGljIHRvdGFsRXZlbnRTdWJtaXR0ZWQ6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgaWNvblNlcnZpY2U6IEhvbWVkZWNvcmF0b3JJY29uQ2FjaGVTZXJ2aWNlLFxyXG4gICAgcHVibGljIHNldHRpbmdzU2VydmljZTogSG9tZWRlY29yYXRvclNldHRpbmdzU2VydmljZSxcclxuICAgIHByaXZhdGUgX2l0ZW1TZXJ2aWNlOiBJdGVtU2VydmljZSxcclxuICAgIHByaXZhdGUgX2dvb2dsZVRhZ01hbmFnZXJTZXJ2aWNlOiBHb29nbGVUYWdNYW5hZ2VyU2VydmljZVxyXG4gICkge1xyXG4gIH1cclxuXHJcbiAgbmdPbkluaXQoKSB7XHJcbiAgICB0aGlzLmNhbGN1bGF0ZVRvdGFsKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgcmVtb3ZlRnVybml0dXJlKGl0ZW06IEN1c3RvbUZsb29yR3JvdXBSZXN1bHQpOiB2b2lkIHtcclxuICAgIHRyeSB7XHJcbiAgICAgIHRoaXMuX2l0ZW1TZXJ2aWNlLnJlbW92ZUl0ZW0oaXRlbS5mdXJuaXR1cmUpO1xyXG4gICAgICBjb25zdCBpZHg6IG51bWJlciA9IHRoaXMubGlzdC5maW5kSW5kZXgobCA9PiBsLmluc3RhbmNlSWQgPT09IGl0ZW0uaW5zdGFuY2VJZCk7XHJcbiAgICAgIHRoaXMubGlzdC5zcGxpY2UoaWR4LCAxKTtcclxuICAgIH0gY2F0Y2ggKGUpIHtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHB1YmxpYyBjb3B5RnVybml0dXJlTmFtZShpdGVtOiBDdXN0b21GbG9vckdyb3VwUmVzdWx0KTogdm9pZCB7XHJcbiAgICBkb2N1bWVudC5hZGRFdmVudExpc3RlbmVyKCdjb3B5JywgKGU6IENsaXBib2FyZEV2ZW50KSA9PiB7XHJcbiAgICAgIGUuY2xpcGJvYXJkRGF0YS5zZXREYXRhKCd0ZXh0L3BsYWluJywgKGl0ZW0ubmFtZSkpO1xyXG4gICAgICBlLnByZXZlbnREZWZhdWx0KCk7XHJcbiAgICAgIGRvY3VtZW50LnJlbW92ZUV2ZW50TGlzdGVuZXIoJ2NvcHknLCBudWxsKTtcclxuICAgIH0pO1xyXG4gICAgZG9jdW1lbnQuZXhlY0NvbW1hbmQoJ2NvcHknKTtcclxuICAgIHRoaXMubGlzdC5mb3JFYWNoKGwgPT4gbC50b2dnbGUgPSBmYWxzZSk7XHJcbiAgICBpdGVtLnRvZ2dsZSA9IHRydWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2VuZENvbnZlcnNpb25Ub1RhZ01hbmFnZXIoYXJ0aWNsZTogYW55KTogdm9pZCB7XHJcbiAgICBsZXQgY29udmVyc2lvbkFjdGlvbjogc3RyaW5nO1xyXG4gICAgaWYgKGFydGljbGUubWV0YURhdGEuY29udmVyc2lvbkdUTVNlbmQpIHtcclxuICAgICAgY29udmVyc2lvbkFjdGlvbiA9ICdyZW1vdmUnO1xyXG4gICAgICBhcnRpY2xlLm1ldGFEYXRhLmNvbnZlcnNpb25HVE1TZW5kID0gZmFsc2U7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBjb252ZXJzaW9uQWN0aW9uID0gJ2FkZCc7XHJcbiAgICAgIGFydGljbGUubWV0YURhdGEuY29udmVyc2lvbkdUTVNlbmQgPSB0cnVlO1xyXG4gICAgfVxyXG4gICAgdGhpcy5fZ29vZ2xlVGFnTWFuYWdlclNlcnZpY2Uuc2VuZFByb2R1Y3RDb252ZXJzaW9uKGFydGljbGUubWV0YURhdGEsIGNvbnZlcnNpb25BY3Rpb24pO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHNlbmRQcmljZUV2ZW50KGlucHV0OiBzdHJpbmcsIGFydGljbGU6IEN1c3RvbUZsb29yR3JvdXBSZXN1bHQpOiB2b2lkIHtcclxuICAgIGNvbnN0IGlucHV0VmFsdWU6IHN0cmluZyA9IGlucHV0O1xyXG4gICAgbGV0IGNvbnZlcnNpb25BY3Rpb246IHN0cmluZztcclxuICAgIGlmIChpbnB1dFZhbHVlID09PSAnJyB8fCBpbnB1dFZhbHVlID09PSBudWxsKSB7XHJcbiAgICAgIGNvbnZlcnNpb25BY3Rpb24gPSAncmVtb3ZlJztcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIGNvbnZlcnNpb25BY3Rpb24gPSAnYWRkJztcclxuICAgIH1cclxuICAgIHRoaXMuX2dvb2dsZVRhZ01hbmFnZXJTZXJ2aWNlLnNlbmRQcm9kdWN0UHJpY2VDb252ZXJzaW9uKGFydGljbGUubWV0YURhdGEsIGNvbnZlcnNpb25BY3Rpb24sIGlucHV0VmFsdWUpO1xyXG4gICAgZm9yIChjb25zdCBsaXN0SXRlbSBvZiB0aGlzLmxpc3QpIHtcclxuICAgICAgaWYgKGxpc3RJdGVtLmluc3RhbmNlSWQgPT09IGFydGljbGUuaW5zdGFuY2VJZCkge1xyXG4gICAgICAgIGxpc3RJdGVtLm1ldGFEYXRhLmNvbnZlcnNpb25TdWJtaXR0ZWRQcmljZSA9IGlucHV0VmFsdWU7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICAgIHRoaXMuY2FsY3VsYXRlVG90YWwoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzdWJtaXRJbnB1dChpbnB1dElkOiBzdHJpbmcsIGl0ZW06IEN1c3RvbUZsb29yR3JvdXBSZXN1bHQpOiB2b2lkIHtcclxuICAgIGNvbnN0IGlucHV0VmFsdWU6IHN0cmluZyA9ICg8SFRNTElucHV0RWxlbWVudD5kb2N1bWVudC5nZXRFbGVtZW50QnlJZChpbnB1dElkKSkudmFsdWU7XHJcbiAgICB0aGlzLnNlbmRQcmljZUV2ZW50KGlucHV0VmFsdWUsIGl0ZW0pO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGdldElucHV0VmFsdWUoaW5wdXQ6IGFueSwgYXJ0aWNsZTogQ3VzdG9tRmxvb3JHcm91cFJlc3VsdCk6IHZvaWQge1xyXG4gICAgY29uc3QgaW5wdXRWYWx1ZTogc3RyaW5nID0gaW5wdXQudGFyZ2V0LnZhbHVlO1xyXG4gICAgdGhpcy5zZW5kUHJpY2VFdmVudChpbnB1dFZhbHVlLCBhcnRpY2xlKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzdWJtaXRUb3RhbFByaWNlRXZlbnQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmNhbGN1bGF0ZVRvdGFsKCk7XHJcbiAgICBsZXQgY29udmVyc2lvblR5cGU6IHN0cmluZztcclxuICAgIGlmICh0aGlzLnRvdGFsRXZlbnRTdWJtaXR0ZWQpIHtcclxuICAgICAgY29udmVyc2lvblR5cGUgPSAncmVtb3ZlJztcclxuICAgICAgdGhpcy50b3RhbEV2ZW50U3VibWl0dGVkID0gZmFsc2U7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBjb252ZXJzaW9uVHlwZSA9ICdhZGQnO1xyXG4gICAgICB0aGlzLnRvdGFsRXZlbnRTdWJtaXR0ZWQgPSB0cnVlO1xyXG4gICAgfVxyXG4gICAgdGhpcy5fZ29vZ2xlVGFnTWFuYWdlclNlcnZpY2Uuc2VuZFByb2plY3RDb252ZXJzaW9uKHRoaXMudG90YWxQcmljZSwgY29udmVyc2lvblR5cGUpO1xyXG5cclxuICB9XHJcblxyXG4gIHB1YmxpYyBjYWxjdWxhdGVUb3RhbCgpOiB2b2lkIHtcclxuICAgIGxldCBwcmljZTogbnVtYmVyID0gMDtcclxuICAgIGZvciAoY29uc3QgaXRlbSBvZiB0aGlzLmxpc3QpIHtcclxuICAgICAgaWYgKGl0ZW0ubWV0YURhdGEuY29udmVyc2lvblN1Ym1pdHRlZFByaWNlICE9PSAnJykge1xyXG4gICAgICAgIC8vIGNvbnZlcnQgdG8gcHJpY2UuMDBcclxuICAgICAgICBjb25zdCBwcmljZVRvRG90OiBzdHJpbmcgPSBpdGVtLm1ldGFEYXRhLmNvbnZlcnNpb25TdWJtaXR0ZWRQcmljZS5yZXBsYWNlKCcsJywgJy4nKTtcclxuICAgICAgICBwcmljZSArPSBwYXJzZUZsb2F0KHByaWNlVG9Eb3QpO1xyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgICB0aGlzLnRvdGFsUHJpY2UgPSBwcmljZS50b1N0cmluZygpO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
3
|
+
import { IconEnum } from '../../core/enum/icon.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../../core/service/homedecorator-icon-cache.service";
|
|
6
|
+
import * as i2 from "../../plugins/threedselector/threedselector/service/load-furniture.service";
|
|
7
|
+
import * as i3 from "../../plugins/core3d/service/item.service";
|
|
8
|
+
import * as i4 from "../../core/service/error.service";
|
|
9
|
+
import * as i5 from "@colijnit/corecomponents";
|
|
10
|
+
import * as i6 from "./model-dialog-furniture-list.component";
|
|
11
|
+
import * as i7 from "@angular/material/button";
|
|
12
|
+
import * as i8 from "@angular/material/dialog";
|
|
13
|
+
import * as i9 from "@angular/common";
|
|
14
|
+
import * as i10 from "../../core/pipe/localize.pipe";
|
|
15
|
+
export class ModelDialogComponent {
|
|
16
|
+
constructor(iconService, _loadFurnitureService, _sceneItemService, _errorService) {
|
|
17
|
+
this.iconService = iconService;
|
|
18
|
+
this._loadFurnitureService = _loadFurnitureService;
|
|
19
|
+
this._sceneItemService = _sceneItemService;
|
|
20
|
+
this._errorService = _errorService;
|
|
21
|
+
this.icon = IconEnum;
|
|
22
|
+
this.notLoaded = [];
|
|
23
|
+
this.notFixedFurniture = [];
|
|
24
|
+
this.obsoleteFurniture = [];
|
|
25
|
+
this.furniture = [];
|
|
26
|
+
this.furnitureFixed = [];
|
|
27
|
+
this.simpleFurniture = [];
|
|
28
|
+
this.externalSourceNotAvailable = [];
|
|
29
|
+
this.showLoaded = true;
|
|
30
|
+
this.showNotLoaded = true;
|
|
31
|
+
this.noProductsLoaded = true;
|
|
32
|
+
}
|
|
33
|
+
ngOnInit() {
|
|
34
|
+
this._loadFurniture();
|
|
35
|
+
}
|
|
36
|
+
_loadFurniture() {
|
|
37
|
+
this.furniture.length = 0;
|
|
38
|
+
this.furnitureFixed.length = 0;
|
|
39
|
+
this.notLoaded.length = 0;
|
|
40
|
+
this.notFixedFurniture.length = 0;
|
|
41
|
+
this.obsoleteFurniture.length = 0;
|
|
42
|
+
this.externalSourceNotAvailable.length = 0;
|
|
43
|
+
this._getUniqueItems(this._loadFurnitureService.objectList, this.furniture);
|
|
44
|
+
this._getUniqueItems(this._loadFurnitureService.objectListFixed, this.furnitureFixed);
|
|
45
|
+
this._getUniqueItems(this._loadFurnitureService.notLoaded, this.notLoaded);
|
|
46
|
+
this._getUniqueItems(this._loadFurnitureService.notFixedObjectCache, this.notFixedFurniture);
|
|
47
|
+
this._getUniqueItems(this._loadFurnitureService.obsoleteObjectCache, this.obsoleteFurniture);
|
|
48
|
+
this._getUniqueItems(this._loadFurnitureService.simpleObjectList, this.simpleFurniture);
|
|
49
|
+
this._getUniqueItems(this._loadFurnitureService.externalSourceNotAvailable, this.externalSourceNotAvailable);
|
|
50
|
+
this.noProductsLoaded =
|
|
51
|
+
this.furniture.length === 0 &&
|
|
52
|
+
this.furnitureFixed.length === 0 &&
|
|
53
|
+
this.notLoaded.length === 0 &&
|
|
54
|
+
this.notFixedFurniture.length === 0 &&
|
|
55
|
+
this.obsoleteFurniture.length === 0 &&
|
|
56
|
+
this.simpleFurniture.length === 0;
|
|
57
|
+
}
|
|
58
|
+
_getUniqueItems(list, newList) {
|
|
59
|
+
list.forEach((item) => {
|
|
60
|
+
// const found = newList.find(o => o.name === item.name);
|
|
61
|
+
// if (found) {
|
|
62
|
+
// ++found.count;
|
|
63
|
+
// } else {
|
|
64
|
+
newList.push(item);
|
|
65
|
+
// }
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
ModelDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogComponent, deps: [{ token: i1.HomedecoratorIconCacheService }, { token: i2.LoadFurnitureService }, { token: i3.ItemService }, { token: i4.ErrorService }], target: i0.ɵɵFactoryTarget.Component });
|
|
70
|
+
ModelDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: ModelDialogComponent, selector: "rp-error-dialog", ngImport: i0, template: "<div @slideInOut>\r\n <div mat-dialog-content>\r\n <ng-container *ngIf=\"!noProductsLoaded\">\r\n <ng-container *ngIf=\"furniture.length > 0 || furnitureFixed.length > 0 || obsoleteFurniture.length > 0 || simpleFurniture.length > 0\">\r\n <div class=\"content-wrapper\">\r\n <div class=\"title-wrapper\" (click)=\"showLoaded = !showLoaded\">\r\n <co-icon class=\"expand-icon\" [class.expanded]=\"showLoaded\"\r\n [iconData]=\"iconService.getIcon(icon.ArrowPointDown)\"></co-icon>\r\n <h3 [textContent]=\"'LOADED_PRODUCTS' | localize\"></h3>\r\n </div>\r\n <div class=\"content\" *ngIf=\"showLoaded\" @showHideContent>\r\n <dialog-furniture-list *ngIf=\"furniture.length > 0\"\r\n [list]=\"furniture\" [showDelete]=\"true\" [showCopy]=\"false\" [showTotals]=\"true\"></dialog-furniture-list>\r\n <dialog-furniture-list *ngIf=\"furnitureFixed.length > 0\"\r\n [list]=\"furnitureFixed\" [label]=\"'LOADED_FIXED'\" [subLabel]=\"'LOADED_FIXED_DESC'\" [showDelete]=\"true\" [showCopy]=\"false\"></dialog-furniture-list>\r\n <dialog-furniture-list *ngIf=\"obsoleteFurniture.length > 0\"\r\n [list]=\"obsoleteFurniture\" [label]=\"'OBSOLETE'\" [subLabel]=\"'OBSOLETE_DESC'\" [showDelete]=\"true\" [showCopy]=\"false\"></dialog-furniture-list>\r\n <dialog-furniture-list *ngIf=\"simpleFurniture.length > 0\"\r\n [list]=\"simpleFurniture\" [showDelete]=\"true\" [showCopy]=\"false\"></dialog-furniture-list>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngIf=\"notLoaded.length > 0 || notFixedFurniture.length > 0\">\r\n <div class=\"content-wrapper\">\r\n <div class=\"title-wrapper\" (click)=\"showNotLoaded = !showNotLoaded\">\r\n <co-icon class=\"expand-icon\" [class.expanded]=\"showLoaded\"\r\n [iconData]=\"iconService.getIcon(icon.ArrowPointDown)\"></co-icon>\r\n <h3 [textContent]=\"'NOT_LOADED_PRODUCTS' | localize\"></h3>\r\n </div>\r\n <div class=\"content\" *ngIf=\"showNotLoaded\" @showHideContent>\r\n <dialog-furniture-list\r\n [list]=\"notLoaded\" [label]=\"'UNFIXED_PRODUCTS'\" [subLabel]=\"'UNFIXED_PRODUCTS_DESC'\" [showDelete]=\"false\" [showCopy]=\"true\"></dialog-furniture-list>\r\n <dialog-furniture-list\r\n [list]=\"notFixedFurniture\" [label]=\"'MODEL_CANNOT_BE_LOADED'\" [subLabel]=\"'MODEL_CANNOT_BE_LOADED_DESC'\" [showDelete]=\"false\" [showCopy]=\"true\"></dialog-furniture-list>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-container>\r\n <ng-container *ngIf=\"noProductsLoaded\">\r\n <p *ngIf=\"furniture.length === 0 && obsoleteFurniture.length === 0 && simpleFurniture.length === 0\" [textContent]=\"'NO_PRODUCTS_LOADED' | localize\"></p>\r\n </ng-container>\r\n\r\n </div>\r\n <button mat-button mat-dialog-close>OK</button>\r\n</div>\r\n", styles: [":host{display:block;max-width:100%;width:600px}:host .title-wrapper{display:flex;align-items:center;cursor:pointer}:host .content-wrapper{border:1px solid rgba(1,1,1,.1);padding:10px;overflow:hidden}:host p{font-size:14px;line-height:160%}\n"], components: [{ type: i5.ɵb, selector: "co-icon", inputs: ["icon", "iconData"] }, { type: i6.ModelDialogFurnitureListComponent, selector: "dialog-furniture-list", inputs: ["list", "label", "subLabel", "showCopy", "showDelete", "showTotals"] }, { type: i7.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i8.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { type: i9.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["type", "mat-dialog-close", "aria-label", "matDialogClose"], exportAs: ["matDialogClose"] }], pipes: { "localize": i10.LocalizePipe }, animations: [
|
|
71
|
+
trigger('slideInOut', [
|
|
72
|
+
transition(':leave', [
|
|
73
|
+
style({ transform: 'translateY(0%)', opacity: '1' }),
|
|
74
|
+
animate('.3s', style({ transform: 'translateY(-100%)', opacity: '0' }))
|
|
75
|
+
])
|
|
76
|
+
]),
|
|
77
|
+
trigger('showHideContent', [
|
|
78
|
+
state('void', style({ height: '0' })),
|
|
79
|
+
state('*', style({ height: '*' })),
|
|
80
|
+
transition('void <=> *', animate('.3s ease-in-out'))
|
|
81
|
+
])
|
|
82
|
+
] });
|
|
83
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogComponent, decorators: [{
|
|
84
|
+
type: Component,
|
|
85
|
+
args: [{
|
|
86
|
+
selector: 'rp-error-dialog',
|
|
87
|
+
templateUrl: './model-dialog.component.html',
|
|
88
|
+
styleUrls: ['./model-dialog.component.scss'],
|
|
89
|
+
animations: [
|
|
90
|
+
trigger('slideInOut', [
|
|
91
|
+
transition(':leave', [
|
|
92
|
+
style({ transform: 'translateY(0%)', opacity: '1' }),
|
|
93
|
+
animate('.3s', style({ transform: 'translateY(-100%)', opacity: '0' }))
|
|
94
|
+
])
|
|
95
|
+
]),
|
|
96
|
+
trigger('showHideContent', [
|
|
97
|
+
state('void', style({ height: '0' })),
|
|
98
|
+
state('*', style({ height: '*' })),
|
|
99
|
+
transition('void <=> *', animate('.3s ease-in-out'))
|
|
100
|
+
])
|
|
101
|
+
]
|
|
102
|
+
}]
|
|
103
|
+
}], ctorParameters: function () { return [{ type: i1.HomedecoratorIconCacheService }, { type: i2.LoadFurnitureService }, { type: i3.ItemService }, { type: i4.ErrorService }]; } });
|
|
104
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWwtZGlhbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9jbGllbnQvYXBwL3NoYXJlZC9tb2RlbC1kaWFsb2cvbW9kZWwtZGlhbG9nLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9jbGllbnQvYXBwL3NoYXJlZC9tb2RlbC1kaWFsb2cvbW9kZWwtZGlhbG9nLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQVMsTUFBTSxlQUFlLENBQUM7QUFDaEQsT0FBTyxFQUFDLE9BQU8sRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxPQUFPLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUMvRSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sMkJBQTJCLENBQUM7Ozs7Ozs7Ozs7OztBQXlCbkQsTUFBTSxPQUFPLG9CQUFvQjtJQWUvQixZQUNTLFdBQTBDLEVBQ3pDLHFCQUEyQyxFQUMzQyxpQkFBOEIsRUFDOUIsYUFBMkI7UUFINUIsZ0JBQVcsR0FBWCxXQUFXLENBQStCO1FBQ3pDLDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBc0I7UUFDM0Msc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFhO1FBQzlCLGtCQUFhLEdBQWIsYUFBYSxDQUFjO1FBakJyQixTQUFJLEdBQW9CLFFBQVEsQ0FBQztRQUUxQyxjQUFTLEdBQTZCLEVBQUUsQ0FBQztRQUN6QyxzQkFBaUIsR0FBNkIsRUFBRSxDQUFDO1FBQ2pELHNCQUFpQixHQUE2QixFQUFFLENBQUM7UUFDakQsY0FBUyxHQUE2QixFQUFFLENBQUM7UUFDekMsbUJBQWMsR0FBNkIsRUFBRSxDQUFDO1FBQzlDLG9CQUFlLEdBQTZCLEVBQUUsQ0FBQztRQUMvQywrQkFBMEIsR0FBNkIsRUFBRSxDQUFDO1FBQzFELGVBQVUsR0FBWSxJQUFJLENBQUM7UUFDM0Isa0JBQWEs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b3JlJztcclxuaW1wb3J0IHthbmltYXRlLCBzdGF0ZSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXJ9IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xyXG5pbXBvcnQge0ljb25FbnVtfSBmcm9tICcuLi8uLi9jb3JlL2VudW0vaWNvbi5lbnVtJztcclxuaW1wb3J0IHtDdXN0b21GbG9vckdyb3VwUmVzdWx0fSBmcm9tICcuLi8uLi9wbHVnaW5zL2NvcmUzZC9tb2RlbC9jdXN0b20tZmxvb3ItZ3JvdXAtcmVzdWx0JztcclxuaW1wb3J0IHtIb21lZGVjb3JhdG9ySWNvbkNhY2hlU2VydmljZX0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlL2hvbWVkZWNvcmF0b3ItaWNvbi1jYWNoZS5zZXJ2aWNlJztcclxuaW1wb3J0IHtMb2FkRnVybml0dXJlU2VydmljZX0gZnJvbSAnLi4vLi4vcGx1Z2lucy90aHJlZWRzZWxlY3Rvci90aHJlZWRzZWxlY3Rvci9zZXJ2aWNlL2xvYWQtZnVybml0dXJlLnNlcnZpY2UnO1xyXG5pbXBvcnQge0l0ZW1TZXJ2aWNlfSBmcm9tICcuLi8uLi9wbHVnaW5zL2NvcmUzZC9zZXJ2aWNlL2l0ZW0uc2VydmljZSc7XHJcbmltcG9ydCB7RXJyb3JTZXJ2aWNlfSBmcm9tICcuLi8uLi9jb3JlL3NlcnZpY2UvZXJyb3Iuc2VydmljZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3JwLWVycm9yLWRpYWxvZycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL21vZGVsLWRpYWxvZy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vbW9kZWwtZGlhbG9nLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgYW5pbWF0aW9uczogW1xyXG4gICAgdHJpZ2dlcignc2xpZGVJbk91dCcsIFtcclxuICAgICAgdHJhbnNpdGlvbignOmxlYXZlJywgW1xyXG4gICAgICAgIHN0eWxlKHsgdHJhbnNmb3JtOiAndHJhbnNsYXRlWSgwJSknLCBvcGFjaXR5OiAnMScgfSksXHJcbiAgICAgICAgYW5pbWF0ZSgnLjNzJywgc3R5bGUoeyB0cmFuc2Zvcm06ICd0cmFuc2xhdGVZKC0xMDAlKScsIG9wYWNpdHk6ICcwJyB9KSlcclxuICAgICAgXSlcclxuICAgIF0pLFxyXG4gICAgdHJpZ2dlcignc2hvd0hpZGVDb250ZW50JywgW1xyXG4gICAgICBzdGF0ZSgndm9pZCcsIHN0eWxlKHsgaGVpZ2h0OiAnMCcgfSkpLFxyXG4gICAgICBzdGF0ZSgnKicsIHN0eWxlKHsgaGVpZ2h0OiAnKicgfSkpLFxyXG4gICAgICB0cmFuc2l0aW9uKCd2b2lkIDw9PiAqJywgYW5pbWF0ZSgnLjNzIGVhc2UtaW4tb3V0JykpXHJcbiAgICBdKVxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIE1vZGVsRGlhbG9nQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuXHJcbiAgcHVibGljIHJlYWRvbmx5IGljb246IHR5cGVvZiBJY29uRW51bSA9IEljb25FbnVtO1xyXG5cclxuICBwdWJsaWMgbm90TG9hZGVkOiBDdXN0b21GbG9vckdyb3VwUmVzdWx0W10gPSBbXTtcclxuICBwdWJsaWMgbm90Rml4ZWRGdXJuaXR1cmU6IEN1c3RvbUZsb29yR3JvdXBSZXN1bHRbXSA9IFtdO1xyXG4gIHB1YmxpYyBvYnNvbGV0ZUZ1cm5pdHVyZTogQ3VzdG9tRmxvb3JHcm91cFJlc3VsdFtdID0gW107XHJcbiAgcHVibGljIGZ1cm5pdHVyZTogQ3VzdG9tRmxvb3JHcm91cFJlc3VsdFtdID0gW107XHJcbiAgcHVibGljIGZ1cm5pdHVyZUZpeGVkOiBDdXN0b21GbG9vckdyb3VwUmVzdWx0W10gPSBbXTtcclxuICBwdWJsaWMgc2ltcGxlRnVybml0dXJlOiBDdXN0b21GbG9vckdyb3VwUmVzdWx0W10gPSBbXTtcclxuICBwdWJsaWMgZXh0ZXJuYWxTb3VyY2VOb3RBdmFpbGFibGU6IEN1c3RvbUZsb29yR3JvdXBSZXN1bHRbXSA9IFtdO1xyXG4gIHB1YmxpYyBzaG93TG9hZGVkOiBib29sZWFuID0gdHJ1ZTtcclxuICBwdWJsaWMgc2hvd05vdExvYWRlZDogYm9vbGVhbiA9IHRydWU7XHJcbiAgcHVibGljIG5vUHJvZHVjdHNMb2FkZWQ6IGJvb2xlYW4gPSB0cnVlO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyBpY29uU2VydmljZTogSG9tZWRlY29yYXRvckljb25DYWNoZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9sb2FkRnVybml0dXJlU2VydmljZTogTG9hZEZ1cm5pdHVyZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9zY2VuZUl0ZW1TZXJ2aWNlOiBJdGVtU2VydmljZSxcclxuICAgIHByaXZhdGUgX2Vycm9yU2VydmljZTogRXJyb3JTZXJ2aWNlXHJcbiAgICApIHtcclxuICB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5fbG9hZEZ1cm5pdHVyZSgpO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfbG9hZEZ1cm5pdHVyZSgpOiB2b2lkIHtcclxuICAgIHRoaXMuZnVybml0dXJlLmxlbmd0aCA9IDA7XHJcbiAgICB0aGlzLmZ1cm5pdHVyZUZpeGVkLmxlbmd0aCA9IDA7XHJcbiAgICB0aGlzLm5vdExvYWRlZC5sZW5ndGggPSAwO1xyXG4gICAgdGhpcy5ub3RGaXhlZEZ1cm5pdHVyZS5sZW5ndGggPSAwO1xyXG4gICAgdGhpcy5vYnNvbGV0ZUZ1cm5pdHVyZS5sZW5ndGggPSAwO1xyXG4gICAgdGhpcy5leHRlcm5hbFNvdXJjZU5vdEF2YWlsYWJsZS5sZW5ndGggPSAwO1xyXG4gICAgdGhpcy5fZ2V0VW5pcXVlSXRlbXModGhpcy5fbG9hZEZ1cm5pdHVyZVNlcnZpY2Uub2JqZWN0TGlzdCwgdGhpcy5mdXJuaXR1cmUpO1xyXG4gICAgdGhpcy5fZ2V0VW5pcXVlSXRlbXModGhpcy5fbG9hZEZ1cm5pdHVyZVNlcnZpY2Uub2JqZWN0TGlzdEZpeGVkLCB0aGlzLmZ1cm5pdHVyZUZpeGVkKTtcclxuICAgIHRoaXMuX2dldFVuaXF1ZUl0ZW1zKHRoaXMuX2xvYWRGdXJuaXR1cmVTZXJ2aWNlLm5vdExvYWRlZCwgdGhpcy5ub3RMb2FkZWQpO1xyXG4gICAgdGhpcy5fZ2V0VW5pcXVlSXRlbXModGhpcy5fbG9hZEZ1cm5pdHVyZVNlcnZpY2Uubm90Rml4ZWRPYmplY3RDYWNoZSwgdGhpcy5ub3RGaXhlZEZ1cm5pdHVyZSk7XHJcbiAgICB0aGlzLl9nZXRVbmlxdWVJdGVtcyh0aGlzLl9sb2FkRnVybml0dXJlU2VydmljZS5vYnNvbGV0ZU9iamVjdENhY2hlLCB0aGlzLm9ic29sZXRlRnVybml0dXJlKTtcclxuICAgIHRoaXMuX2dldFVuaXF1ZUl0ZW1zKHRoaXMuX2xvYWRGdXJuaXR1cmVTZXJ2aWNlLnNpbXBsZU9iamVjdExpc3QsIHRoaXMuc2ltcGxlRnVybml0dXJlKTtcclxuICAgIHRoaXMuX2dldFVuaXF1ZUl0ZW1zKHRoaXMuX2xvYWRGdXJuaXR1cmVTZXJ2aWNlLmV4dGVybmFsU291cmNlTm90QXZhaWxhYmxlLCB0aGlzLmV4dGVybmFsU291cmNlTm90QXZhaWxhYmxlKTtcclxuICAgIHRoaXMubm9Qcm9kdWN0c0xvYWRlZCA9XHJcbiAgICAgIHRoaXMuZnVybml0dXJlLmxlbmd0aCA9PT0gMCAmJlxyXG4gICAgICB0aGlzLmZ1cm5pdHVyZUZpeGVkLmxlbmd0aCA9PT0gMCAmJlxyXG4gICAgICB0aGlzLm5vdExvYWRlZC5sZW5ndGggPT09IDAgJiZcclxuICAgICAgdGhpcy5ub3RGaXhlZEZ1cm5pdHVyZS5sZW5ndGggPT09IDAgJiZcclxuICAgICAgdGhpcy5vYnNvbGV0ZUZ1cm5pdHVyZS5sZW5ndGggPT09IDAgJiZcclxuICAgICAgdGhpcy5zaW1wbGVGdXJuaXR1cmUubGVuZ3RoID09PSAwO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfZ2V0VW5pcXVlSXRlbXMobGlzdDogQ3VzdG9tRmxvb3JHcm91cFJlc3VsdFtdLCBuZXdMaXN0OiBDdXN0b21GbG9vckdyb3VwUmVzdWx0W10pOiB2b2lkIHtcclxuICAgIGxpc3QuZm9yRWFjaCgoaXRlbTogYW55KSA9PiB7XHJcbiAgICAgIC8vIGNvbnN0IGZvdW5kID0gbmV3TGlzdC5maW5kKG8gPT4gby5uYW1lID09PSBpdGVtLm5hbWUpO1xyXG4gICAgICAvLyBpZiAoZm91bmQpIHtcclxuICAgICAgLy8gICArK2ZvdW5kLmNvdW50O1xyXG4gICAgICAvLyB9IGVsc2Uge1xyXG4gICAgICAgIG5ld0xpc3QucHVzaChpdGVtKTtcclxuICAgICAgLy8gfVxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxufVxyXG4iLCI8ZGl2IEBzbGlkZUluT3V0PlxyXG4gIDxkaXYgbWF0LWRpYWxvZy1jb250ZW50PlxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFub1Byb2R1Y3RzTG9hZGVkXCI+XHJcbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJmdXJuaXR1cmUubGVuZ3RoID4gMCB8fCBmdXJuaXR1cmVGaXhlZC5sZW5ndGggPiAwIHx8IG9ic29sZXRlRnVybml0dXJlLmxlbmd0aCA+IDAgfHwgc2ltcGxlRnVybml0dXJlLmxlbmd0aCA+IDBcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29udGVudC13cmFwcGVyXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwidGl0bGUtd3JhcHBlclwiIChjbGljayk9XCJzaG93TG9hZGVkID0gIXNob3dMb2FkZWRcIj5cclxuICAgICAgICAgICAgPGNvLWljb24gY2xhc3M9XCJleHBhbmQtaWNvblwiIFtjbGFzcy5leHBhbmRlZF09XCJzaG93TG9hZGVkXCJcclxuICAgICAgICAgICAgICAgICAgICAgW2ljb25EYXRhXT1cImljb25TZXJ2aWNlLmdldEljb24oaWNvbi5BcnJvd1BvaW50RG93bilcIj48L2NvLWljb24+XHJcbiAgICAgICAgICAgIDxoMyBbdGV4dENvbnRlbnRdPVwiJ0xPQURFRF9QUk9EVUNUUycgfCBsb2NhbGl6ZVwiPjwvaDM+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb250ZW50XCIgKm5nSWY9XCJzaG93TG9hZGVkXCIgQHNob3dIaWRlQ29udGVudD5cclxuICAgICAgICAgICAgPGRpYWxvZy1mdXJuaXR1cmUtbGlzdCAqbmdJZj1cImZ1cm5pdHVyZS5sZW5ndGggPiAwXCJcclxuICAgICAgICAgICAgICBbbGlzdF09XCJmdXJuaXR1cmVcIiBbc2hvd0RlbGV0ZV09XCJ0cnVlXCIgW3Nob3dDb3B5XT1cImZhbHNlXCIgW3Nob3dUb3RhbHNdPVwidHJ1ZVwiPjwvZGlhbG9nLWZ1cm5pdHVyZS1saXN0PlxyXG4gICAgICAgICAgICA8ZGlhbG9nLWZ1cm5pdHVyZS1saXN0ICpuZ0lmPVwiZnVybml0dXJlRml4ZWQubGVuZ3RoID4gMFwiXHJcbiAgICAgICAgICAgICAgW2xpc3RdPVwiZnVybml0dXJlRml4ZWRcIiBbbGFiZWxdPVwiJ0xPQURFRF9GSVhFRCdcIiBbc3ViTGFiZWxdPVwiJ0xPQURFRF9GSVhFRF9ERVNDJ1wiIFtzaG93RGVsZXRlXT1cInRydWVcIiBbc2hvd0NvcHldPVwiZmFsc2VcIj48L2RpYWxvZy1mdXJuaXR1cmUtbGlzdD5cclxuICAgICAgICAgICAgPGRpYWxvZy1mdXJuaXR1cmUtbGlzdCAqbmdJZj1cIm9ic29sZXRlRnVybml0dXJlLmxlbmd0aCA+IDBcIlxyXG4gICAgICAgICAgICAgIFtsaXN0XT1cIm9ic29sZXRlRnVybml0dXJlXCIgW2xhYmVsXT1cIidPQlNPTEVURSdcIiBbc3ViTGFiZWxdPVwiJ09CU09MRVRFX0RFU0MnXCIgW3Nob3dEZWxldGVdPVwidHJ1ZVwiIFtzaG93Q29weV09XCJmYWxzZVwiPjwvZGlhbG9nLWZ1cm5pdHVyZS1saXN0PlxyXG4gICAgICAgICAgICA8ZGlhbG9nLWZ1cm5pdHVyZS1saXN0ICpuZ0lmPVwic2ltcGxlRnVybml0dXJlLmxlbmd0aCA+IDBcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtsaXN0XT1cInNpbXBsZUZ1cm5pdHVyZVwiIFtzaG93RGVsZXRlXT1cInRydWVcIiBbc2hvd0NvcHldPVwiZmFsc2VcIj48L2RpYWxvZy1mdXJuaXR1cmUtbGlzdD5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIm5vdExvYWRlZC5sZW5ndGggPiAwIHx8IG5vdEZpeGVkRnVybml0dXJlLmxlbmd0aCA+IDBcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29udGVudC13cmFwcGVyXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwidGl0bGUtd3JhcHBlclwiIChjbGljayk9XCJzaG93Tm90TG9hZGVkID0gIXNob3dOb3RMb2FkZWRcIj5cclxuICAgICAgICAgICAgPGNvLWljb24gY2xhc3M9XCJleHBhbmQtaWNvblwiIFtjbGFzcy5leHBhbmRlZF09XCJzaG93TG9hZGVkXCJcclxuICAgICAgICAgICAgICAgICAgICAgW2ljb25EYXRhXT1cImljb25TZXJ2aWNlLmdldEljb24oaWNvbi5BcnJvd1BvaW50RG93bilcIj48L2NvLWljb24+XHJcbiAgICAgICAgICAgIDxoMyBbdGV4dENvbnRlbnRdPVwiJ05PVF9MT0FERURfUFJPRFVDVFMnIHwgbG9jYWxpemVcIj48L2gzPlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29udGVudFwiICpuZ0lmPVwic2hvd05vdExvYWRlZFwiIEBzaG93SGlkZUNvbnRlbnQ+XHJcbiAgICAgICAgICAgIDxkaWFsb2ctZnVybml0dXJlLWxpc3RcclxuICAgICAgICAgICAgICBbbGlzdF09XCJub3RMb2FkZWRcIiBbbGFiZWxdPVwiJ1VORklYRURfUFJPRFVDVFMnXCIgW3N1YkxhYmVsXT1cIidVTkZJWEVEX1BST0RVQ1RTX0RFU0MnXCIgW3Nob3dEZWxldGVdPVwiZmFsc2VcIiBbc2hvd0NvcHldPVwidHJ1ZVwiPjwvZGlhbG9nLWZ1cm5pdHVyZS1saXN0PlxyXG4gICAgICAgICAgICA8ZGlhbG9nLWZ1cm5pdHVyZS1saXN0XHJcbiAgICAgICAgICAgICAgW2xpc3RdPVwibm90Rml4ZWRGdXJuaXR1cmVcIiBbbGFiZWxdPVwiJ01PREVMX0NBTk5PVF9CRV9MT0FERUQnXCIgW3N1YkxhYmVsXT1cIidNT0RFTF9DQU5OT1RfQkVfTE9BREVEX0RFU0MnXCIgW3Nob3dEZWxldGVdPVwiZmFsc2VcIiBbc2hvd0NvcHldPVwidHJ1ZVwiPjwvZGlhbG9nLWZ1cm5pdHVyZS1saXN0PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibm9Qcm9kdWN0c0xvYWRlZFwiPlxyXG4gICAgICA8cCAqbmdJZj1cImZ1cm5pdHVyZS5sZW5ndGggPT09IDAgJiYgb2Jzb2xldGVGdXJuaXR1cmUubGVuZ3RoID09PSAwICYmIHNpbXBsZUZ1cm5pdHVyZS5sZW5ndGggPT09IDBcIiBbdGV4dENvbnRlbnRdPVwiJ05PX1BST0RVQ1RTX0xPQURFRCcgfCBsb2NhbGl6ZVwiPjwvcD5cclxuICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICA8L2Rpdj5cclxuICA8YnV0dG9uIG1hdC1idXR0b24gbWF0LWRpYWxvZy1jbG9zZT5PSzwvYnV0dG9uPlxyXG48L2Rpdj5cclxuIl19
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { ModelDialogComponent } from './model-dialog.component';
|
|
4
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
5
|
+
import { MatDialogModule } from '@angular/material/dialog';
|
|
6
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
7
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
8
|
+
import { IconModule } from '@colijnit/corecomponents';
|
|
9
|
+
import { CoreModule } from '../../core/core.module';
|
|
10
|
+
import { ModelDialogFurnitureListComponent } from './model-dialog-furniture-list.component';
|
|
11
|
+
import { HomedecoratorIconCacheService } from '../../core/service/homedecorator-icon-cache.service';
|
|
12
|
+
import { FormsModule } from '@angular/forms';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export class ModelDialogModule {
|
|
15
|
+
}
|
|
16
|
+
ModelDialogModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
17
|
+
ModelDialogModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogModule, declarations: [ModelDialogComponent,
|
|
18
|
+
ModelDialogFurnitureListComponent], imports: [CoreModule,
|
|
19
|
+
CommonModule,
|
|
20
|
+
MatButtonModule,
|
|
21
|
+
MatDialogModule,
|
|
22
|
+
MatTooltipModule,
|
|
23
|
+
MatIconModule,
|
|
24
|
+
IconModule,
|
|
25
|
+
FormsModule] });
|
|
26
|
+
ModelDialogModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogModule, providers: [
|
|
27
|
+
HomedecoratorIconCacheService
|
|
28
|
+
], imports: [[
|
|
29
|
+
CoreModule,
|
|
30
|
+
CommonModule,
|
|
31
|
+
MatButtonModule,
|
|
32
|
+
MatDialogModule,
|
|
33
|
+
MatTooltipModule,
|
|
34
|
+
MatIconModule,
|
|
35
|
+
IconModule,
|
|
36
|
+
FormsModule
|
|
37
|
+
]] });
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: ModelDialogModule, decorators: [{
|
|
39
|
+
type: NgModule,
|
|
40
|
+
args: [{
|
|
41
|
+
imports: [
|
|
42
|
+
CoreModule,
|
|
43
|
+
CommonModule,
|
|
44
|
+
MatButtonModule,
|
|
45
|
+
MatDialogModule,
|
|
46
|
+
MatTooltipModule,
|
|
47
|
+
MatIconModule,
|
|
48
|
+
IconModule,
|
|
49
|
+
FormsModule
|
|
50
|
+
],
|
|
51
|
+
declarations: [
|
|
52
|
+
ModelDialogComponent,
|
|
53
|
+
ModelDialogFurnitureListComponent
|
|
54
|
+
],
|
|
55
|
+
entryComponents: [
|
|
56
|
+
ModelDialogComponent,
|
|
57
|
+
ModelDialogFurnitureListComponent
|
|
58
|
+
],
|
|
59
|
+
providers: [
|
|
60
|
+
HomedecoratorIconCacheService
|
|
61
|
+
]
|
|
62
|
+
}]
|
|
63
|
+
}] });
|
|
64
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kZWwtZGlhbG9nLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9jbGllbnQvYXBwL3NoYXJlZC9tb2RlbC1kaWFsb2cvbW9kZWwtZGlhbG9nLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsb0JBQW9CLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUM5RCxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFDekQsT0FBTyxFQUFDLGVBQWUsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFDcEQsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQ2xELE9BQU8sRUFBQyxpQ0FBaUMsRUFBQyxNQUFNLHlDQUF5QyxDQUFDO0FBQzFGLE9BQU8sRUFBQyw2QkFBNkIsRUFBQyxNQUFNLHFEQUFxRCxDQUFDO0FBQ2xHLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7QUF5QjNDLE1BQU0sT0FBTyxpQkFBaUI7OytHQUFqQixpQkFBaUI7Z0hBQWpCLGlCQUFpQixpQkFYMUIsb0JBQW9CO1FBQ3BCLGlDQUFpQyxhQVhqQyxVQUFVO1FBQ1YsWUFBWTtRQUNaLGVBQWU7UUFDZixlQUFlO1FBQ2YsZ0JBQWdCO1FBQ2hCLGFBQWE7UUFDYixVQUFVO1FBQ1YsV0FBVztnSEFjRixpQkFBaUIsYUFKakI7UUFDVCw2QkFBNkI7S0FDOUIsWUFwQlE7WUFDUCxVQUFVO1lBQ1YsWUFBWTtZQUNaLGVBQWU7WUFDZixlQUFlO1lBQ2YsZ0JBQWdCO1lBQ2hCLGFBQWE7WUFDYixVQUFVO1lBQ1YsV0FBVztTQUNaOzRGQWFVLGlCQUFpQjtrQkF2QjdCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFVBQVU7d0JBQ1YsWUFBWTt3QkFDWixlQUFlO3dCQUNmLGVBQWU7d0JBQ2YsZ0JBQWdCO3dCQUNoQixhQUFhO3dCQUNiLFVBQVU7d0JBQ1YsV0FBVztxQkFDWjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osb0JBQW9CO3dCQUNwQixpQ0FBaUM7cUJBQ2xDO29CQUNELGVBQWUsRUFBRTt3QkFDZixvQkFBb0I7d0JBQ3BCLGlDQUFpQztxQkFDbEM7b0JBQ0QsU0FBUyxFQUFFO3dCQUNULDZCQUE2QjtxQkFDOUI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7TW9kZWxEaWFsb2dDb21wb25lbnR9IGZyb20gJy4vbW9kZWwtZGlhbG9nLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7TWF0QnV0dG9uTW9kdWxlfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xyXG5pbXBvcnQge01hdERpYWxvZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcclxuaW1wb3J0IHtNYXRJY29uTW9kdWxlfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcclxuaW1wb3J0IHtNYXRUb29sdGlwTW9kdWxlfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90b29sdGlwJztcclxuaW1wb3J0IHtJY29uTW9kdWxlfSBmcm9tICdAY29saWpuaXQvY29yZWNvbXBvbmVudHMnO1xyXG5pbXBvcnQge0NvcmVNb2R1bGV9IGZyb20gJy4uLy4uL2NvcmUvY29yZS5tb2R1bGUnO1xyXG5pbXBvcnQge01vZGVsRGlhbG9nRnVybml0dXJlTGlzdENvbXBvbmVudH0gZnJvbSAnLi9tb2RlbC1kaWFsb2ctZnVybml0dXJlLWxpc3QuY29tcG9uZW50JztcclxuaW1wb3J0IHtIb21lZGVjb3JhdG9ySWNvbkNhY2hlU2VydmljZX0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlL2hvbWVkZWNvcmF0b3ItaWNvbi1jYWNoZS5zZXJ2aWNlJztcclxuaW1wb3J0IHtGb3Jtc01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb3JlTW9kdWxlLFxyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgTWF0QnV0dG9uTW9kdWxlLFxyXG4gICAgTWF0RGlhbG9nTW9kdWxlLFxyXG4gICAgTWF0VG9vbHRpcE1vZHVsZSxcclxuICAgIE1hdEljb25Nb2R1bGUsXHJcbiAgICBJY29uTW9kdWxlLFxyXG4gICAgRm9ybXNNb2R1bGVcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgTW9kZWxEaWFsb2dDb21wb25lbnQsXHJcbiAgICBNb2RlbERpYWxvZ0Z1cm5pdHVyZUxpc3RDb21wb25lbnRcclxuICBdLFxyXG4gIGVudHJ5Q29tcG9uZW50czogW1xyXG4gICAgTW9kZWxEaWFsb2dDb21wb25lbnQsXHJcbiAgICBNb2RlbERpYWxvZ0Z1cm5pdHVyZUxpc3RDb21wb25lbnRcclxuICBdLFxyXG4gIHByb3ZpZGVyczogW1xyXG4gICAgSG9tZWRlY29yYXRvckljb25DYWNoZVNlcnZpY2VcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBNb2RlbERpYWxvZ01vZHVsZSB7IH1cclxuIl19
|