@roomle/embedding-lib 5.9.0-alpha.3 → 5.9.0-alpha.5
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/docs/md/web/embedding/CHANGELOG.md +2 -14
- package/index.d.ts +2 -179
- package/package.json +2 -2
- package/packages/build-tools/src/vite-file-size-check.d.ts +8 -0
- package/packages/build-tools/src/vite-minify.d.ts +3 -0
- package/packages/common/src/utils/browser.d.ts +4 -0
- package/packages/common/src/utils/custom-drag.d.ts +26 -0
- package/packages/common/src/utils/custom-view.d.ts +2 -0
- package/packages/common/src/utils/domain.d.ts +3 -0
- package/packages/common/src/utils/drag.d.ts +17 -0
- package/packages/common/src/utils/embedding.d.ts +23 -0
- package/packages/common/src/utils/get-computed-style-cached.d.ts +8 -0
- package/packages/common/src/utils/id-inferrer.d.ts +7 -0
- package/packages/common/src/utils/iframe.d.ts +3 -0
- package/packages/common/src/utils/init-data.d.ts +66 -0
- package/packages/common/src/utils/merge.d.ts +16 -0
- package/packages/common/src/utils/message-handler-creator.d.ts +3 -0
- package/packages/common/src/utils/message-handler.d.ts +35 -0
- package/packages/common/src/utils/promise.d.ts +5 -0
- package/packages/common/src/utils/timing.d.ts +1 -0
- package/packages/common/src/utils/touch-drag.d.ts +30 -0
- package/packages/common/src/utils/touch.d.ts +1 -0
- package/packages/embedding-lib/src/connector.d.ts +42 -0
- package/packages/embedding-lib/src/embedding-lib.d.ts +64 -0
- package/packages/embedding-lib/src/example.d.ts +5 -0
- package/packages/embedding-lib/src/examples/api-false.d.ts +10 -0
- package/packages/embedding-lib/src/examples/configurator-only.d.ts +7 -0
- package/packages/embedding-lib/src/examples/download-partlist.d.ts +7 -0
- package/packages/embedding-lib/src/examples/drag-in.d.ts +8 -0
- package/packages/embedding-lib/src/examples/ext-catalog/ext-catalog-connection.d.ts +1 -0
- package/packages/embedding-lib/src/examples/ext-catalog.d.ts +7 -0
- package/packages/embedding-lib/src/examples/ext-selection-overlay.d.ts +8 -0
- package/packages/embedding-lib/src/examples/planner-and-configurator.d.ts +7 -0
- package/packages/embedding-lib/src/examples/start-and-end-configurator.d.ts +7 -0
- package/packages/embedding-lib/src/examples/utils/drag-listeners.d.ts +6 -0
- package/packages/embedding-lib/src/overview.d.ts +1 -0
- package/packages/embedding-lib/src/plugins/constants.d.ts +19 -0
- package/packages/embedding-lib/src/plugins/drag-in.d.ts +33 -0
- package/packages/embedding-lib/src/plugins/strategy/from-custom-view.d.ts +31 -0
- package/packages/embedding-lib/src/plugins/strategy/from-website.d.ts +27 -0
- package/packages/embedding-lib/src/plugins/strategy/types.d.ts +15 -0
- package/packages/embedding-lib/src/plugins/types.d.ts +36 -0
- package/packages/embedding-lib/src/utils.d.ts +18 -0
- package/src/App.vue.d.ts +127 -0
- package/src/common/business-logic/connector.d.ts +9 -0
- package/src/common/business-logic/event-bus.d.ts +7 -0
- package/src/common/business-logic/event-emitter.d.ts +11 -0
- package/src/common/components/ActionButtons.vue.d.ts +8 -0
- package/src/common/components/BottomBar.vue.d.ts +2 -0
- package/src/common/components/BottomButtons.vue.d.ts +9 -0
- package/src/common/components/CounterDot.vue.d.ts +6 -0
- package/src/common/components/EmbeddedAdditionalInfo.vue.d.ts +12 -0
- package/src/common/components/EmbeddedExternalCatalog.vue.d.ts +16 -0
- package/src/common/components/EmbeddedInfoWrapper.vue.d.ts +27 -0
- package/src/common/components/ExpandableIcons.vue.d.ts +12 -0
- package/src/common/components/IconButton.vue.d.ts +15 -0
- package/src/common/components/Layer.vue.d.ts +9 -0
- package/src/common/components/Layout.vue.d.ts +15 -0
- package/src/common/components/LeftHeaderContainer.vue.d.ts +2 -0
- package/src/common/components/Loading.vue.d.ts +2 -0
- package/src/common/components/LoadingSpinner.vue.d.ts +2 -0
- package/src/common/components/MainComponent.vue.d.ts +2 -0
- package/src/common/components/SelectionButton.vue.d.ts +9 -0
- package/src/common/components/SelectionButtons.vue.d.ts +10 -0
- package/src/common/components/ShowCustomView.vue.d.ts +22 -0
- package/src/common/components/SwitchButton.vue.d.ts +16 -0
- package/src/common/components/ToggleButtons.vue.d.ts +12 -0
- package/src/common/components/Tooltip.vue.d.ts +29 -0
- package/src/common/components/action-buttons/-utils/ActionButton.vue.d.ts +21 -0
- package/src/common/components/collection-view/-utils/BackButton.vue.d.ts +16 -0
- package/src/common/components/collection-view/-utils/ParameterTooltip.vue.d.ts +14 -0
- package/src/common/components/collection-view/-utils/TabbedNav.vue.d.ts +18 -0
- package/src/common/components/collection-view/-utils/TabbedNavMenu.vue.d.ts +30 -0
- package/src/common/components/collection-view/-utils/TabbedNavStatic.vue.d.ts +6 -0
- package/src/common/components/collection-view/-utils/collection-view-dynamic-components.d.ts +3802 -0
- package/src/common/components/collection-view/-utils/collection-view-props.d.ts +45 -0
- package/src/common/components/collection-view/-utils/helper.d.ts +5 -0
- package/src/common/components/collection-view/-utils/render.d.ts +9 -0
- package/src/common/components/collection-view/-utils/types.d.ts +45 -0
- package/src/common/components/collection-view/CollectionView.vue.d.ts +70 -0
- package/src/common/components/collection-view/CollectionViewElement.vue.d.ts +200 -0
- package/src/common/components/collection-view/CollectionViewHint.vue.d.ts +10 -0
- package/src/common/components/drawer-layout/DrawerElement.vue.d.ts +100 -0
- package/src/common/components/drawer-layout/DrawerGroup.vue.d.ts +23 -0
- package/src/common/components/drawer-layout/DrawerLayout.vue.d.ts +101 -0
- package/src/common/components/flying-menu/FlyingMenu.vue.d.ts +8 -0
- package/src/common/components/flying-menu/MergeProductButtons.vue.d.ts +2 -0
- package/src/common/components/flying-menu/StartConfiguringButton.vue.d.ts +2 -0
- package/src/common/components/helpers.d.ts +6 -0
- package/src/common/components/inputs/BaseInput.vue.d.ts +24 -0
- package/src/common/components/inputs/NumericInput.vue.d.ts +22 -0
- package/src/common/components/inputs/NumericInputWrapper.vue.d.ts +15 -0
- package/src/common/components/inputs/RangeSlider.vue.d.ts +34 -0
- package/src/common/components/inputs/SelectDropdown.vue.d.ts +18 -0
- package/src/common/components/notifications/FirstPersonControlsNotification.vue.d.ts +6 -0
- package/src/common/components/notifications/InteractionNotes.vue.d.ts +10 -0
- package/src/common/components/notifications/LoadSavedPlanNotification.vue.d.ts +10 -0
- package/src/common/components/notifications/NotificationCard.vue.d.ts +19 -0
- package/src/common/components/notifications/Notifications.vue.d.ts +2 -0
- package/src/common/components/overlays/PartList.vue.d.ts +185 -0
- package/src/common/components/overlays/bottom-bar/CloseView.vue.d.ts +220 -0
- package/src/common/components/overlays/bottom-bar/ControlButtonsWrapper.vue.d.ts +2 -0
- package/src/common/components/overlays/bottom-bar/GoBack.vue.d.ts +49 -0
- package/src/common/components/overlays/bottom-bar/cart/AddToBasket.vue.d.ts +6 -0
- package/src/common/components/overlays/bottom-bar/cart/CartIconWithBadge.vue.d.ts +12 -0
- package/src/common/components/overlays/bottom-bar/cart/ExitBtn.vue.d.ts +40 -0
- package/src/common/components/overlays/bottom-bar/cart/GoToCartBtn.vue.d.ts +49 -0
- package/src/common/components/overlays/bottom-bar/cart/SaveCartBtn.vue.d.ts +50 -0
- package/src/common/components/overlays/part-list/PartListEntry.vue.d.ts +114 -0
- package/src/common/components/overlays/part-list/PartListHeader.vue.d.ts +10 -0
- package/src/common/components/overlays/part-list/PartListPrint.vue.d.ts +16 -0
- package/src/common/components/overlays/part-list/PartListRow.vue.d.ts +60 -0
- package/src/common/components/overlays/part-list/partlist-setup.d.ts +17 -0
- package/src/common/components/overlays/tutorials/SupaDemoEmbed.vue.d.ts +10 -0
- package/src/common/components/overlays/tutorials/Tutorials.vue.d.ts +6 -0
- package/src/common/components/overlays/tutorials/YouTubeEmbed.vue.d.ts +10 -0
- package/src/common/components/parameters/ColorParameter.vue.d.ts +2229 -0
- package/src/common/components/side-bar/BackAction.vue.d.ts +22 -0
- package/src/common/components/side-bar/NavigationButtonsWrapper.vue.d.ts +9 -0
- package/src/common/components/side-bar/NextAction.vue.d.ts +22 -0
- package/src/common/components/tool-bar/ToolBar.vue.d.ts +2 -0
- package/src/common/components/tool-bar/ToolBarWrapper.vue.d.ts +4 -0
- package/src/common/components/tool-tip/MoreInfoTooltipContent.vue.d.ts +18 -0
- package/src/common/components/top-bar/TopBar.vue.d.ts +2 -0
- package/src/common/components/utils/-utils/notifications.d.ts +50 -0
- package/src/common/components/utils/-utils/overlays.d.ts +65 -0
- package/src/common/components/utils/CollapsibleButtonsContainer.vue.d.ts +26 -0
- package/src/common/components/utils/HeightToggle.vue.d.ts +34 -0
- package/src/common/components/utils/QRCode.vue.d.ts +139 -0
- package/src/common/components/utils/ShadowOnStage.vue.d.ts +8 -0
- package/src/common/components/utils/StageActivityIndicator.vue.d.ts +2 -0
- package/src/common/components/utils/collapsible-buttons-container/CollapsibleButton.vue.d.ts +14 -0
- package/src/common/components/utils/collapsible-buttons-container/CollapsibleTrigger.vue.d.ts +27 -0
- package/src/common/components/utils/collapsible-buttons-container/collapsible-button-types.d.ts +1 -0
- package/src/common/composables/use-analytics.d.ts +3 -0
- package/src/common/composables/use-ar-service.d.ts +3 -0
- package/src/common/composables/use-async-function.d.ts +8 -0
- package/src/common/composables/use-configurator-actions-visibility.d.ts +4 -0
- package/src/common/composables/use-configurator-api.d.ts +6 -0
- package/src/common/composables/use-core-bound-value.d.ts +8 -0
- package/src/common/composables/use-core-instances.d.ts +8 -0
- package/src/common/composables/use-embedding-callbacks.d.ts +3 -0
- package/src/common/composables/use-event-emitter-listener.d.ts +61 -0
- package/src/common/composables/use-fetch-root-tag.d.ts +8 -0
- package/src/common/composables/use-intersection-observer.d.ts +8 -0
- package/src/common/composables/use-intl.d.ts +14 -0
- package/src/common/composables/use-item-variants.d.ts +7 -0
- package/src/common/composables/use-libs.d.ts +3 -0
- package/src/common/composables/use-local-storage.d.ts +3 -0
- package/src/common/composables/use-materials-and-ral-colors.d.ts +10 -0
- package/src/common/composables/use-materials-grouped.d.ts +10 -0
- package/src/common/composables/use-measurement-styles.d.ts +10 -0
- package/src/common/composables/use-on-click-outside.d.ts +7 -0
- package/src/common/composables/use-planner-actions-visibility.d.ts +11 -0
- package/src/common/composables/use-pointer-pos.d.ts +16 -0
- package/src/common/composables/use-product-price.d.ts +11 -0
- package/src/common/composables/use-purchasable-count.d.ts +3 -0
- package/src/common/composables/use-sdk-connector.d.ts +3 -0
- package/src/common/composables/use-sdk-event-emitter-listener.d.ts +36 -0
- package/src/common/composables/use-selected-object-center.d.ts +5 -0
- package/src/common/composables/use-selected-plan-element.d.ts +7 -0
- package/src/common/composables/use-shared-sidebar-setup.d.ts +96 -0
- package/src/common/composables/use-stage-activity-indicator.d.ts +9 -0
- package/src/common/composables/use-static-item-parameters.d.ts +1114 -0
- package/src/common/composables/use-ui-actions.d.ts +3 -0
- package/src/common/config/tutorial-data.d.ts +3 -0
- package/src/common/plugins/analytics.d.ts +12 -0
- package/src/common/plugins/event-emitter.d.ts +4 -0
- package/src/common/plugins/local-storage.d.ts +10 -0
- package/src/common/plugins/localize.d.ts +2 -0
- package/src/common/plugins/ui-actions.d.ts +13 -0
- package/src/common/store/collection-view-state.d.ts +51 -0
- package/src/common/store/common-ui-state.d.ts +35 -0
- package/src/common/store/index.d.ts +35 -0
- package/src/common/translations/local-translation-source.d.ts +9 -0
- package/src/common/utils/access-restriction.d.ts +8 -0
- package/src/common/utils/ar-service.d.ts +14 -0
- package/src/common/utils/async-guard.d.ts +12 -0
- package/src/common/utils/bezier.d.ts +2 -0
- package/src/common/utils/color.d.ts +27 -0
- package/src/common/utils/compatibility.d.ts +4 -0
- package/src/common/utils/composable-helpers.d.ts +10 -0
- package/src/common/utils/dom.d.ts +20 -0
- package/src/common/utils/font-size-detector.d.ts +1 -0
- package/src/common/utils/fonts.d.ts +3 -0
- package/src/common/utils/google-analytics.d.ts +68 -0
- package/src/common/utils/helper.d.ts +83 -0
- package/src/common/utils/init-data-helper.d.ts +3 -0
- package/src/common/utils/log-canvas-coords.d.ts +3 -0
- package/src/common/utils/parameters.d.ts +19 -0
- package/src/common/utils/performance.d.ts +2 -0
- package/src/common/utils/plan.d.ts +1 -0
- package/src/common/utils/playwright-handler.d.ts +5 -0
- package/src/common/utils/playwright-response-checker.d.ts +3 -0
- package/src/common/utils/root-tags.d.ts +5 -0
- package/src/common/utils/script-loader.d.ts +6 -0
- package/src/common/utils/share.d.ts +1 -0
- package/src/common/utils/tutorials.d.ts +6 -0
- package/src/common/utils/types.d.ts +145 -0
- package/src/common/utils/ui-actions.d.ts +38 -0
- package/src/common/utils/user-agent.d.ts +7 -0
- package/src/common/utils/variants.d.ts +4 -0
- package/src/configurator/ar/AppAR.vue.d.ts +11 -0
- package/src/configurator/ar/main.d.ts +1 -0
- package/src/configurator/business-logic/roomle-sdk-wrapper.d.ts +30 -0
- package/src/configurator/business-logic/sdk-connector-configurator.d.ts +39 -0
- package/src/configurator/business-logic/sdk-connector.d.ts +136 -0
- package/src/configurator/business-logic/ui-callback.d.ts +6 -0
- package/src/configurator/components/ActionButtonsParameterGroups.vue.d.ts +6 -0
- package/src/configurator/components/ConfiguratorMain.vue.d.ts +2 -0
- package/src/configurator/components/ConfiguratorSidebar.vue.d.ts +13 -0
- package/src/configurator/components/CookieBanner.vue.d.ts +6 -0
- package/src/configurator/components/Overlays.vue.d.ts +842 -0
- package/src/configurator/components/PoweredBy.vue.d.ts +10 -0
- package/src/configurator/components/SceneContainer.vue.d.ts +2 -0
- package/src/configurator/components/StopConfiguringButton.vue.d.ts +2 -0
- package/src/configurator/components/addons/AddonsTrigger.vue.d.ts +34 -0
- package/src/configurator/components/addons/PossibleChildren.vue.d.ts +19 -0
- package/src/configurator/components/grid-view/-utils/CollapsedView.vue.d.ts +107 -0
- package/src/configurator/components/grid-view/-utils/ExpandedHeader.vue.d.ts +88 -0
- package/src/configurator/components/grid-view/-utils/ExpandedView.vue.d.ts +31 -0
- package/src/configurator/components/grid-view/-utils/GridViewElement.vue.d.ts +177 -0
- package/src/configurator/components/grid-view/-utils/GridViewHelper.d.ts +23 -0
- package/src/configurator/components/grid-view/-utils/GridViewMaterialElement.vue.d.ts +44 -0
- package/src/configurator/components/grid-view/-utils/GridViewThumbnailsElement.vue.d.ts +60 -0
- package/src/configurator/components/grid-view/-utils/GridViewTooltipElement.vue.d.ts +8 -0
- package/src/configurator/components/grid-view/GridView.vue.d.ts +327 -0
- package/src/configurator/components/overlays/DeleteWarning.vue.d.ts +87 -0
- package/src/configurator/components/overlays/ElementDisabled.vue.d.ts +83 -0
- package/src/configurator/components/overlays/Export3D.vue.d.ts +6 -0
- package/src/configurator/components/overlays/GenericError.vue.d.ts +104 -0
- package/src/configurator/components/overlays/LoadProduct.vue.d.ts +13 -0
- package/src/configurator/components/overlays/NoDocking.vue.d.ts +83 -0
- package/src/configurator/components/overlays/SaveDraft.vue.d.ts +13 -0
- package/src/configurator/components/overlays/VariantWarning.vue.d.ts +99 -0
- package/src/configurator/components/overlays/ar/OpenAR.vue.d.ts +12 -0
- package/src/configurator/components/overlays/ar/OpenARView.vue.d.ts +26 -0
- package/src/configurator/components/parameters/BackParameterGroupButton.vue.d.ts +6 -0
- package/src/configurator/components/parameters/NextParameterGroupButton.vue.d.ts +6 -0
- package/src/configurator/components/parameters/OverflowIndicator.vue.d.ts +12 -0
- package/src/configurator/components/parameters/ParameterGroupArrowButton.vue.d.ts +10 -0
- package/src/configurator/components/parameters/ParameterGroupButton.vue.d.ts +45 -0
- package/src/configurator/components/parameters/ParameterGroups.vue.d.ts +8 -0
- package/src/configurator/components/parameters/types/MaterialParameter.vue.d.ts +372 -0
- package/src/configurator/components/parameters/types/OptionsParameter.vue.d.ts +18 -0
- package/src/configurator/components/parameters/types/OptionsParameterValue.vue.d.ts +14 -0
- package/src/configurator/components/parameters/types/ProductVariant.vue.d.ts +374 -0
- package/src/configurator/components/parameters/types/RangeParameter.vue.d.ts +15 -0
- package/src/configurator/components/parameters/types/ThumbnailsParameter.vue.d.ts +369 -0
- package/src/configurator/components/parameters/types/UnknownParameter.vue.d.ts +12 -0
- package/src/configurator/components/top-bar/ARButton.vue.d.ts +2 -0
- package/src/configurator/components/utils/-utils/SceneOffsetResizer.d.ts +25 -0
- package/src/configurator/components/utils/-utils/popup-types.d.ts +1 -0
- package/src/configurator/components/utils/ArrowButton.vue.d.ts +8 -0
- package/src/configurator/components/utils/AspectRatioBox.vue.d.ts +9 -0
- package/src/configurator/components/utils/CheckBox.vue.d.ts +10 -0
- package/src/configurator/components/utils/FullscreenContainer.vue.d.ts +15 -0
- package/src/configurator/components/utils/GdprEmailInput.vue.d.ts +12 -0
- package/src/configurator/components/utils/HeightContainer.vue.d.ts +12 -0
- package/src/configurator/components/utils/ImageWithFallback.vue.d.ts +23 -0
- package/src/configurator/components/utils/InteractionsContainer.vue.d.ts +18 -0
- package/src/configurator/components/utils/PopUp.vue.d.ts +79 -0
- package/src/configurator/components/utils/PrimaryButton.vue.d.ts +36 -0
- package/src/configurator/components/utils/RadioButton.vue.d.ts +25 -0
- package/src/configurator/components/utils/ScrollHint.vue.d.ts +13 -0
- package/src/configurator/components/utils/SearchInput.vue.d.ts +41 -0
- package/src/configurator/components/utils/Spinner.vue.d.ts +2 -0
- package/src/configurator/components/utils/StartConfiguringButton.vue.d.ts +31 -0
- package/src/configurator/components/utils/SvgIcon.vue.d.ts +8 -0
- package/src/configurator/components/utils/WordWrap.vue.d.ts +33 -0
- package/src/configurator/components/utils/transitions/SlideTransitionWrapper.vue.d.ts +10 -0
- package/src/configurator/embedding/drag-ghost.d.ts +11 -0
- package/src/configurator/embedding/drag-handler.d.ts +11 -0
- package/src/configurator/embedding/example/Embedding.vue.d.ts +67 -0
- package/src/configurator/embedding/example/GlbConfSwitch.vue.d.ts +21 -0
- package/src/configurator/embedding/example/GlbConfSwitchSecret.vue.d.ts +17 -0
- package/src/configurator/embedding/example/main.d.ts +1 -0
- package/src/configurator/embedding/exposed-analytics-callbacks.d.ts +10 -0
- package/src/configurator/embedding/exposed-api.d.ts +169 -0
- package/src/configurator/embedding/exposed-callbacks.d.ts +83 -0
- package/src/configurator/embedding/helper.d.ts +31 -0
- package/src/configurator/embedding/roomle-configurator-api.d.ts +65 -0
- package/src/configurator/embedding/types.d.ts +505 -0
- package/src/configurator/plugins/ar-service-plugin.d.ts +6 -0
- package/src/configurator/plugins/embedding-callbacks-plugin.d.ts +4 -0
- package/src/configurator/plugins/libs-plugin.d.ts +11 -0
- package/src/configurator/plugins/sdk-connector-plugin.d.ts +21 -0
- package/src/configurator/store/core-data.d.ts +25 -0
- package/src/configurator/store/core-state.d.ts +21 -0
- package/src/configurator/store/ui-state.d.ts +80 -0
- package/src/main.d.ts +24 -0
- package/src/planner/business-logic/general-room-parameters.d.ts +32 -0
- package/src/planner/business-logic/pre-defined-rooms.d.ts +4 -0
- package/src/planner/business-logic/rooms.d.ts +62 -0
- package/src/planner/business-logic/sdk-connector-planner.d.ts +67 -0
- package/src/planner/business-logic/selected-door-parameters.d.ts +10 -0
- package/src/planner/business-logic/selected-wall-parameters.d.ts +11 -0
- package/src/planner/business-logic/selected-window-parameters.d.ts +10 -0
- package/src/planner/components/DraggableButton.vue.d.ts +27 -0
- package/src/planner/components/ObjectList.vue.d.ts +19 -0
- package/src/planner/components/PlannerMain.vue.d.ts +2 -0
- package/src/planner/components/PlannerSidebar.vue.d.ts +15 -0
- package/src/planner/components/RotateButton.vue.d.ts +14 -0
- package/src/planner/components/RotationButtonWrapper.vue.d.ts +6 -0
- package/src/planner/components/RotationIndicator.vue.d.ts +69 -0
- package/src/planner/components/StartPlannerButton.vue.d.ts +2 -0
- package/src/planner/components/catalog/CatalogTrigger.vue.d.ts +2 -0
- package/src/planner/components/measurements/MeasurementDisplayComponent.vue.d.ts +48 -0
- package/src/planner/components/measurements/ShowConstructionMeasurements.vue.d.ts +8 -0
- package/src/planner/components/measurements/ShowFloorsAreasData.vue.d.ts +8 -0
- package/src/planner/components/measurements/ShowMeasurementLineDimension.vue.d.ts +8 -0
- package/src/planner/components/measurements/ShowObjectMeasurements.vue.d.ts +10 -0
- package/src/planner/components/measurements/ShowWallMeasurements.vue.d.ts +8 -0
- package/src/planner/components/measurements/utils/IndicatorArrow.vue.d.ts +14 -0
- package/src/planner/components/measurements/utils/IndicatorLine.vue.d.ts +21 -0
- package/src/planner/components/measurements/utils/MeasurementText.vue.d.ts +19 -0
- package/src/planner/components/overlays/ProductList.vue.d.ts +24 -0
- package/src/planner/components/overlays/ProductListButton.vue.d.ts +2 -0
- package/src/planner/components/overlays/ProductSettings.vue.d.ts +14 -0
- package/src/planner/components/overlays/RoomSidebar.vue.d.ts +14 -0
- package/src/planner/components/overlays/product-list/LoadProductButton.vue.d.ts +2 -0
- package/src/planner/components/overlays/product-list/ProductListEntry.vue.d.ts +19 -0
- package/src/planner/components/overlays/product-list/ProductListType.vue.d.ts +23 -0
- package/src/planner/components/overlays/product-list/ProductsTotalPrice.vue.d.ts +12 -0
- package/src/planner/components/overlays/product-settings/ProductLabelButton.vue.d.ts +12 -0
- package/src/planner/components/overlays/product-settings/ProductPositions.vue.d.ts +10 -0
- package/src/planner/components/overlays/product-settings/ProductRangeControl.vue.d.ts +65 -0
- package/src/planner/components/overlays/product-settings/ProductRotation.vue.d.ts +8 -0
- package/src/planner/components/overlays/product-settings/ProductSettingsControls.vue.d.ts +2 -0
- package/src/planner/components/overlays/product-settings/ProductSettingsInfos.vue.d.ts +13 -0
- package/src/planner/components/overlays/product-settings/ProductSize.vue.d.ts +8 -0
- package/src/planner/components/overlays/product-settings/ProductXYZChanger.vue.d.ts +33 -0
- package/src/planner/components/overlays/rooms/ConstructionVariants.vue.d.ts +382 -0
- package/src/planner/components/overlays/rooms/DoorParametersSetting.vue.d.ts +5479 -0
- package/src/planner/components/overlays/rooms/ElementLengthScaling.vue.d.ts +111 -0
- package/src/planner/components/overlays/rooms/FloorColor.vue.d.ts +3822 -0
- package/src/planner/components/overlays/rooms/IconSwitch.vue.d.ts +46 -0
- package/src/planner/components/overlays/rooms/ParameterSwitch.vue.d.ts +42 -0
- package/src/planner/components/overlays/rooms/RoomDrawControl.vue.d.ts +36 -0
- package/src/planner/components/overlays/rooms/RoomDrawControlsDesc.vue.d.ts +2 -0
- package/src/planner/components/overlays/rooms/RoomGeneralSettings.vue.d.ts +17 -0
- package/src/planner/components/overlays/rooms/RoomRangeParameter.vue.d.ts +47 -0
- package/src/planner/components/overlays/rooms/RoomUnitSwitch.vue.d.ts +84 -0
- package/src/planner/components/overlays/rooms/RoomsList.vue.d.ts +24 -0
- package/src/planner/components/overlays/rooms/SampleRooms.vue.d.ts +14 -0
- package/src/planner/components/overlays/rooms/WallGeneralSettings.vue.d.ts +16 -0
- package/src/planner/components/overlays/rooms/WindowParametersSetting.vue.d.ts +17 -0
- package/src/planner/components/overlays/rooms/utils/ral-colors.d.ts +1113 -0
- package/src/planner/components/utils/AddRoomButton.vue.d.ts +2 -0
- package/src/planner/components/utils/AssureConfiguratorHandlers.vue.d.ts +6 -0
- package/src/planner/components/utils/AssureSdkHandlers.vue.d.ts +7 -0
- package/src/planner/components/utils/ConfiguratorParameter.vue.d.ts +19 -0
- package/src/planner/components/utils/InteractionHeader.vue.d.ts +10 -0
- package/src/planner/components/utils/MeasurementsString.vue.d.ts +18 -0
- package/src/planner/components/utils/WallSideIcon.vue.d.ts +23 -0
- package/src/planner/components/utils/sidebar-nav/NavIndicatorLine.vue.d.ts +14 -0
- package/src/planner/components/utils/sidebar-nav/RoomNavOptionElement.vue.d.ts +49 -0
- package/src/planner/components/utils/sidebar-nav/SidebarNav.vue.d.ts +50 -0
- package/src/planner/store/planner-core-data.d.ts +20 -0
- package/src/planner/store/planner-ui-state.d.ts +50 -0
- package/src/planner/utils/interaction.d.ts +4 -0
- package/src/planner/utils/planner-sidebar.d.ts +16 -0
- package/src/planner/utils/rotation-calculation.d.ts +7 -0
- package/src/viewer/business-logic/sdk-connector-viewer.d.ts +19 -0
- package/src/viewer/components/ARButtonViewer.vue.d.ts +2 -0
- package/src/viewer/components/ViewerMain.vue.d.ts +146 -0
- package/src/viewer/components/ViewerSidebar.vue.d.ts +33 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
configuratorApi: import('vue').ShallowRef<import('@roomle/web-sdk/lib/definitions/configurator-core/src/roomle-configurator').default>;
|
|
3
|
+
}, {}, {
|
|
4
|
+
isLoaded(): boolean;
|
|
5
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
api: import('vue').ShallowRef<import('@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner').default>;
|
|
3
|
+
planInteractionHandler: import('vue').ShallowRef<import('@roomle/web-sdk/lib/definitions/typings/planner').PlanInteractionHandler>;
|
|
4
|
+
}, {}, {
|
|
5
|
+
isLoaded(): boolean;
|
|
6
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CollectionViewUiState } from '../../../common/store/collection-view-state';
|
|
2
|
+
import { CollectionViewElement, CollectionViewElementPossibleTypes } from '../../../common/components/collection-view/-utils/types';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<{
|
|
5
|
+
element: CollectionViewElement<CollectionViewElementPossibleTypes>;
|
|
6
|
+
onExpandGridView?: (element: any) => void;
|
|
7
|
+
onCollapse?: () => void;
|
|
8
|
+
onSelect?: (...args: any[]) => void;
|
|
9
|
+
isDesktop?: boolean;
|
|
10
|
+
state?: CollectionViewUiState;
|
|
11
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
+
element: CollectionViewElement<CollectionViewElementPossibleTypes>;
|
|
13
|
+
onExpandGridView?: (element: any) => void;
|
|
14
|
+
onCollapse?: () => void;
|
|
15
|
+
onSelect?: (...args: any[]) => void;
|
|
16
|
+
isDesktop?: boolean;
|
|
17
|
+
state?: CollectionViewUiState;
|
|
18
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
onClick?: (_payload: MouseEvent) => void;
|
|
3
|
+
heading: string;
|
|
4
|
+
hideCloseButton?: boolean;
|
|
5
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
6
|
+
onClick?: (_payload: MouseEvent) => void;
|
|
7
|
+
heading: string;
|
|
8
|
+
hideCloseButton?: boolean;
|
|
9
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { MeasurementLineDimensionTransferable } from '@roomle/web-sdk/lib/definitions/planner-core/src/view-model/measurement-line-plan-element-view-model';
|
|
2
|
+
import { WallDimensionTransferable } from '@roomle/web-sdk/lib/definitions/planner-core/src/view-model/wall-plan-element-view-model';
|
|
3
|
+
|
|
4
|
+
type MeasurementsCallbackType = MeasurementLineDimensionTransferable | WallDimensionTransferable;
|
|
5
|
+
declare const _default: import('vue').DefineComponent<{
|
|
6
|
+
length: number;
|
|
7
|
+
editable?: boolean;
|
|
8
|
+
planElementId?: number;
|
|
9
|
+
measurement?: MeasurementsCallbackType;
|
|
10
|
+
updateCallback?: (_newLength: number, measurement: MeasurementsCallbackType, useMouseDirection?: boolean) => void;
|
|
11
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
+
length: number;
|
|
13
|
+
editable?: boolean;
|
|
14
|
+
planElementId?: number;
|
|
15
|
+
measurement?: MeasurementsCallbackType;
|
|
16
|
+
updateCallback?: (_newLength: number, measurement: MeasurementsCallbackType, useMouseDirection?: boolean) => void;
|
|
17
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { WallSideIconProps } from '../../../common/components/collection-view/-utils/types';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
props: {
|
|
6
|
+
type: PropType<WallSideIconProps>;
|
|
7
|
+
};
|
|
8
|
+
}>, {
|
|
9
|
+
wallIconAngle: import('vue').ComputedRef<string>;
|
|
10
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
props: {
|
|
12
|
+
type: PropType<WallSideIconProps>;
|
|
13
|
+
};
|
|
14
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
15
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
16
|
+
icon: string;
|
|
17
|
+
}, {
|
|
18
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
19
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
20
|
+
icon: string;
|
|
21
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
active: BooleanConstructor;
|
|
3
|
+
firstItem: BooleanConstructor;
|
|
4
|
+
lastItem: BooleanConstructor;
|
|
5
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
6
|
+
active: BooleanConstructor;
|
|
7
|
+
firstItem: BooleanConstructor;
|
|
8
|
+
lastItem: BooleanConstructor;
|
|
9
|
+
}>> & Readonly<{}>, {
|
|
10
|
+
active: boolean;
|
|
11
|
+
firstItem: boolean;
|
|
12
|
+
lastItem: boolean;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
label: StringConstructor;
|
|
5
|
+
svgIcon: {
|
|
6
|
+
required: true;
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
someProp: StringConstructor;
|
|
10
|
+
active: BooleanConstructor;
|
|
11
|
+
isSmallHeight: BooleanConstructor;
|
|
12
|
+
initialCurrentActive: NumberConstructor;
|
|
13
|
+
categoryKey: StringConstructor;
|
|
14
|
+
activeCategory: StringConstructor;
|
|
15
|
+
onSelect: {
|
|
16
|
+
type: PropType<(_categoryKey: string) => void>;
|
|
17
|
+
};
|
|
18
|
+
}>, {}, {}, {
|
|
19
|
+
isActive(): boolean;
|
|
20
|
+
}, {
|
|
21
|
+
onClick(): void;
|
|
22
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
label: StringConstructor;
|
|
24
|
+
svgIcon: {
|
|
25
|
+
required: true;
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
};
|
|
28
|
+
someProp: StringConstructor;
|
|
29
|
+
active: BooleanConstructor;
|
|
30
|
+
isSmallHeight: BooleanConstructor;
|
|
31
|
+
initialCurrentActive: NumberConstructor;
|
|
32
|
+
categoryKey: StringConstructor;
|
|
33
|
+
activeCategory: StringConstructor;
|
|
34
|
+
onSelect: {
|
|
35
|
+
type: PropType<(_categoryKey: string) => void>;
|
|
36
|
+
};
|
|
37
|
+
}>> & Readonly<{}>, {
|
|
38
|
+
active: boolean;
|
|
39
|
+
isSmallHeight: boolean;
|
|
40
|
+
}, {}, {
|
|
41
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
42
|
+
icon: string;
|
|
43
|
+
}, {
|
|
44
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
45
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
46
|
+
icon: string;
|
|
47
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
48
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
49
|
+
export default _default;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
numberOptions: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
paddingLeft: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
paddingRight: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
numberActive: NumberConstructor;
|
|
15
|
+
isSmallHeight: BooleanConstructor;
|
|
16
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
numberOptions: {
|
|
18
|
+
type: NumberConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
paddingLeft: {
|
|
22
|
+
type: NumberConstructor;
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
paddingRight: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
default: number;
|
|
28
|
+
};
|
|
29
|
+
numberActive: NumberConstructor;
|
|
30
|
+
isSmallHeight: BooleanConstructor;
|
|
31
|
+
}>> & Readonly<{}>, {
|
|
32
|
+
isSmallHeight: boolean;
|
|
33
|
+
paddingLeft: number;
|
|
34
|
+
paddingRight: number;
|
|
35
|
+
}, {}, {
|
|
36
|
+
NavIndicatorLine: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
37
|
+
active: BooleanConstructor;
|
|
38
|
+
firstItem: BooleanConstructor;
|
|
39
|
+
lastItem: BooleanConstructor;
|
|
40
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
41
|
+
active: BooleanConstructor;
|
|
42
|
+
firstItem: BooleanConstructor;
|
|
43
|
+
lastItem: BooleanConstructor;
|
|
44
|
+
}>> & Readonly<{}>, {
|
|
45
|
+
active: boolean;
|
|
46
|
+
firstItem: boolean;
|
|
47
|
+
lastItem: boolean;
|
|
48
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
49
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
50
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { StoreState } from '../../common/store';
|
|
2
|
+
import { Nullable } from '../../common/utils/types';
|
|
3
|
+
import { Module } from 'vuex';
|
|
4
|
+
import { UiPlanObject } from '@roomle/web-sdk/lib/definitions/typings/kernel';
|
|
5
|
+
import { EnsurePrefix } from '../../configurator/store/ui-state';
|
|
6
|
+
|
|
7
|
+
type PlannerCoreUiIdentifier = EnsurePrefix<'PLANNER_CORE_STATE_'>;
|
|
8
|
+
export interface PlannerCoreData {
|
|
9
|
+
productList: UiPlanObject[];
|
|
10
|
+
currencySymbol: string;
|
|
11
|
+
price: Nullable<number>;
|
|
12
|
+
productListSetAtLeastOnce: boolean;
|
|
13
|
+
planCompletelyLoaded: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const PLANNER_CORE_DATA_MUTATIONS: PlannerCoreUiIdentifier;
|
|
16
|
+
export declare const PLANNER_CORE_DATA_ACTIONS: PlannerCoreUiIdentifier;
|
|
17
|
+
export declare const PLANNER_CORE_DATA_GETTERS: PlannerCoreUiIdentifier;
|
|
18
|
+
export declare const plannerCoreDataInitialState: PlannerCoreData;
|
|
19
|
+
export declare const plannerCoreData: Module<PlannerCoreData, StoreState>;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ShallowRef } from 'vue';
|
|
2
|
+
import { Module } from 'vuex';
|
|
3
|
+
import { SharedUiState, StoreState } from '../../common/store';
|
|
4
|
+
import { Enumify, Nullable, PLAN_OBJECT_TYPES, MEASUREMENT_UNIT } from '../../common/utils/types';
|
|
5
|
+
import { SelectionPayload } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner-ui-callback';
|
|
6
|
+
import { EnsurePrefix, BUTTON_ACTIONS } from '../../configurator/store/ui-state';
|
|
7
|
+
import { RapiTagForUi } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
8
|
+
import { KernelWall } from '@roomle/web-sdk/lib/definitions/typings/planner';
|
|
9
|
+
import { default as PlanElementViewModel } from '@roomle/web-sdk/lib/definitions/common-core/src/view-model/plan-element-view-model';
|
|
10
|
+
|
|
11
|
+
export type SelectionType = Enumify<typeof PLAN_OBJECT_TYPES>;
|
|
12
|
+
export type SdkSelectionMode = 'standard' | 'multiselect';
|
|
13
|
+
export interface SelectionParameters {
|
|
14
|
+
objectType: Enumify<typeof PLAN_OBJECT_TYPES>;
|
|
15
|
+
payload: SelectionPayload;
|
|
16
|
+
planElementViewModel: PlanElementViewModel;
|
|
17
|
+
}
|
|
18
|
+
type PlannerUiIdentifier = EnsurePrefix<'PLANNER_UI_STATE_'>;
|
|
19
|
+
export interface PlannerUiState extends SharedUiState {
|
|
20
|
+
selectionType: Nullable<SelectionType>;
|
|
21
|
+
selectionPayload: Nullable<SelectionPayload>;
|
|
22
|
+
selectionElement: Nullable<ShallowRef<PlanElementViewModel>>;
|
|
23
|
+
isDrag: boolean;
|
|
24
|
+
catalogTags: Nullable<RapiTagForUi[]>;
|
|
25
|
+
actionMenuExpanded: boolean;
|
|
26
|
+
selectedActions: BUTTON_ACTIONS[];
|
|
27
|
+
mobileExpanded: boolean;
|
|
28
|
+
lastWalls: ShallowRef<KernelWall[]>;
|
|
29
|
+
measurementUnit: Enumify<typeof MEASUREMENT_UNIT>;
|
|
30
|
+
drawingEnabled: boolean;
|
|
31
|
+
isCurrentlyDrawing: boolean;
|
|
32
|
+
hasWalls: boolean;
|
|
33
|
+
showRotateElement: boolean;
|
|
34
|
+
isDefiningRoom: boolean;
|
|
35
|
+
hasChosenASampleRoom: boolean;
|
|
36
|
+
showRoomConfirmBtn: boolean;
|
|
37
|
+
freeDrawFirstRoom: boolean;
|
|
38
|
+
isCatalogSet: boolean;
|
|
39
|
+
showDimensions: boolean;
|
|
40
|
+
multiSelectionElements: ShallowRef<PlanElementViewModel[]>;
|
|
41
|
+
currentSelectedMeasurementId: Nullable<number>;
|
|
42
|
+
isConfiguringInRoom: boolean;
|
|
43
|
+
dragInRuntimeId: Nullable<number>;
|
|
44
|
+
}
|
|
45
|
+
export declare const PLANNER_UI_STATE_MUTATIONS: PlannerUiIdentifier;
|
|
46
|
+
export declare const PLANNER_UI_STATE_ACTIONS: PlannerUiIdentifier;
|
|
47
|
+
export declare const PLANNER_UI_STATE_GETTERS: PlannerUiIdentifier;
|
|
48
|
+
export declare const initialState: PlannerUiState;
|
|
49
|
+
export declare const plannerUiState: Module<PlannerUiState, StoreState>;
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Nullable } from '../../common/utils/types';
|
|
2
|
+
import { SelectionPayload } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner-ui-callback';
|
|
3
|
+
|
|
4
|
+
export declare const isCorrectSelectionPayload: (currentlySelected: Nullable<SelectionPayload>, asyncSelectionData: SelectionPayload) => boolean;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { KernelPartList, UiPlanObject } from '@roomle/web-sdk/lib/definitions/typings/kernel';
|
|
2
|
+
import { StoreState } from '../../common/store';
|
|
3
|
+
import { RapiConfiguration, RapiItem } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
4
|
+
import { default as RoomlePlanner } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner';
|
|
5
|
+
|
|
6
|
+
export interface XYZCoords {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
z: number;
|
|
10
|
+
}
|
|
11
|
+
export interface ProductListItem extends UiPlanObject {
|
|
12
|
+
configurationRuntimeId: number;
|
|
13
|
+
quantity: number;
|
|
14
|
+
}
|
|
15
|
+
export declare const matchProductListAndQuantity: (productList: UiPlanObject[]) => ProductListItem[];
|
|
16
|
+
export declare const fillPartList: (data: RapiItem | RapiConfiguration, partList: KernelPartList, hash: string, plannerApi: RoomlePlanner, store: Store<StoreState>) => Promise<void>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface PointCoords {
|
|
2
|
+
x: number;
|
|
3
|
+
y: number;
|
|
4
|
+
}
|
|
5
|
+
export declare const calcRotationValue: (centerPoint: PointCoords, rotateToPoint: PointCoords) => number;
|
|
6
|
+
export declare const degreeToRadians: (degrees: number) => number;
|
|
7
|
+
export declare const radiansToDegree: (radians: number) => number;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Nullable } from '../../common/utils/types';
|
|
2
|
+
import { Store } from 'vuex';
|
|
3
|
+
import { StoreState } from '../../common/store';
|
|
4
|
+
import { Analytics } from '../../common/plugins/analytics';
|
|
5
|
+
import { RoomleSdkWrapper } from '../../configurator/business-logic/roomle-sdk-wrapper';
|
|
6
|
+
import { UiInitData } from '../../configurator/embedding/types';
|
|
7
|
+
import { default as RoomleGLBViewer } from '@roomle/web-sdk/lib/definitions/glb-viewer-core/src/roomle-glb-viewer';
|
|
8
|
+
import { Connector } from '../../common/business-logic/connector';
|
|
9
|
+
|
|
10
|
+
export declare class SdkConnectorViewer extends Connector {
|
|
11
|
+
private _viewer;
|
|
12
|
+
private _initWaiters;
|
|
13
|
+
private _store;
|
|
14
|
+
private _analytics;
|
|
15
|
+
constructor(store: Store<StoreState>, analytics?: Nullable<Analytics>);
|
|
16
|
+
get api(): Promise<RoomleGLBViewer>;
|
|
17
|
+
init(sdkWrapper: RoomleSdkWrapper, element: HTMLElement, initData: UiInitData): Promise<void>;
|
|
18
|
+
initViewer(viewer: RoomleGLBViewer): void;
|
|
19
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { Nullable } from '../../common/utils/types';
|
|
2
|
+
import { BUTTON_ACTIONS } from '../../configurator/store/ui-state';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
objectId: StringConstructor;
|
|
6
|
+
}>, {}, {
|
|
7
|
+
hasAssets: boolean;
|
|
8
|
+
}, {
|
|
9
|
+
showArButton(): boolean;
|
|
10
|
+
isOnOverview(): boolean;
|
|
11
|
+
isViewer(): boolean;
|
|
12
|
+
isMoc(): boolean;
|
|
13
|
+
}, {
|
|
14
|
+
resetScroll(): void;
|
|
15
|
+
onClose(action: Nullable<BUTTON_ACTIONS>): Promise<void>;
|
|
16
|
+
fetchData(): Promise<void>;
|
|
17
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
objectId: StringConstructor;
|
|
19
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
20
|
+
Layout: {
|
|
21
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
22
|
+
environment: string;
|
|
23
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{
|
|
24
|
+
environment: string;
|
|
25
|
+
}> & Readonly<{}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
26
|
+
P: {};
|
|
27
|
+
B: {};
|
|
28
|
+
D: {};
|
|
29
|
+
C: {};
|
|
30
|
+
M: {};
|
|
31
|
+
Defaults: {};
|
|
32
|
+
}, Readonly<{
|
|
33
|
+
environment: string;
|
|
34
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
35
|
+
__isFragment?: never;
|
|
36
|
+
__isTeleport?: never;
|
|
37
|
+
__isSuspense?: never;
|
|
38
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
39
|
+
environment: string;
|
|
40
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
41
|
+
$slots: {
|
|
42
|
+
"stage-scene-view-port"?(_: {}): any;
|
|
43
|
+
stage?(_: {}): any;
|
|
44
|
+
bottom?(_: {}): any;
|
|
45
|
+
};
|
|
46
|
+
});
|
|
47
|
+
InteractionsContainer: {
|
|
48
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
49
|
+
toggle: () => void;
|
|
50
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
51
|
+
P: {};
|
|
52
|
+
B: {};
|
|
53
|
+
D: {};
|
|
54
|
+
C: {};
|
|
55
|
+
M: {};
|
|
56
|
+
Defaults: {};
|
|
57
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
58
|
+
toggle: () => void;
|
|
59
|
+
}, {}, {}, {}, {}>;
|
|
60
|
+
__isFragment?: never;
|
|
61
|
+
__isTeleport?: never;
|
|
62
|
+
__isSuspense?: never;
|
|
63
|
+
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
64
|
+
toggle: () => void;
|
|
65
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
66
|
+
$slots: {
|
|
67
|
+
default?(_: {
|
|
68
|
+
toggle: () => void;
|
|
69
|
+
toggleEvent: import('../../common/business-logic/event-bus').EventBus<import('../../common/utils/types').ToggleCallback>;
|
|
70
|
+
isExpanded: boolean;
|
|
71
|
+
}): any;
|
|
72
|
+
};
|
|
73
|
+
});
|
|
74
|
+
HeightContainer: {
|
|
75
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
76
|
+
P: {};
|
|
77
|
+
B: {};
|
|
78
|
+
D: {};
|
|
79
|
+
C: {};
|
|
80
|
+
M: {};
|
|
81
|
+
Defaults: {};
|
|
82
|
+
}, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
83
|
+
__isFragment?: never;
|
|
84
|
+
__isTeleport?: never;
|
|
85
|
+
__isSuspense?: never;
|
|
86
|
+
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
87
|
+
$slots: {
|
|
88
|
+
header?(_: {}): any;
|
|
89
|
+
header?(_: {}): any;
|
|
90
|
+
content?(_: {}): any;
|
|
91
|
+
content?(_: {}): any;
|
|
92
|
+
};
|
|
93
|
+
});
|
|
94
|
+
ViewerSidebar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
95
|
+
onClose: {
|
|
96
|
+
type: FunctionConstructor;
|
|
97
|
+
required: true;
|
|
98
|
+
};
|
|
99
|
+
ivToggleEvent: import('vue').PropType<import('../../common/business-logic/event-bus').EventBus<import('../../common/utils/types').ToggleCallback>>;
|
|
100
|
+
}>, {}, {}, {
|
|
101
|
+
getImage(): string;
|
|
102
|
+
getLabel(): string;
|
|
103
|
+
}, {
|
|
104
|
+
closeMonkeyPatched(): Promise<void>;
|
|
105
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
106
|
+
onClose: {
|
|
107
|
+
type: FunctionConstructor;
|
|
108
|
+
required: true;
|
|
109
|
+
};
|
|
110
|
+
ivToggleEvent: import('vue').PropType<import('../../common/business-logic/event-bus').EventBus<import('../../common/utils/types').ToggleCallback>>;
|
|
111
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
112
|
+
InteractionHeader: import('vue').DefineComponent<{
|
|
113
|
+
onClick?: (_payload: MouseEvent) => void;
|
|
114
|
+
heading: string;
|
|
115
|
+
hideCloseButton?: boolean;
|
|
116
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
117
|
+
onClick?: (_payload: MouseEvent) => void;
|
|
118
|
+
heading: string;
|
|
119
|
+
hideCloseButton?: boolean;
|
|
120
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
121
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
122
|
+
ActionButtonsParameterGroups: import('vue').DefineComponent<{
|
|
123
|
+
onChangeParameterGroup: () => void;
|
|
124
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
125
|
+
onChangeParameterGroup: () => void;
|
|
126
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
127
|
+
BottomBar: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
128
|
+
BottomButtons: import('vue').DefineComponent<{}, {}, {}, {
|
|
129
|
+
sharedUiState(): import('../../common/store').SharedUiState;
|
|
130
|
+
isViewerOnMobile(): boolean;
|
|
131
|
+
isFullscreen(): boolean;
|
|
132
|
+
isExpanded(): boolean;
|
|
133
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
134
|
+
ARButtonViewer: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
135
|
+
MainComponent: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
136
|
+
PoweredBy: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
137
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
138
|
+
icon: string;
|
|
139
|
+
}, {
|
|
140
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
141
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
142
|
+
icon: string;
|
|
143
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
144
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
145
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
146
|
+
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { EventBus } from '../../common/business-logic/event-bus';
|
|
3
|
+
import { ToggleCallback } from '../../common/utils/types';
|
|
4
|
+
|
|
5
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
6
|
+
onClose: {
|
|
7
|
+
type: FunctionConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
ivToggleEvent: PropType<EventBus<ToggleCallback>>;
|
|
11
|
+
}>, {}, {}, {
|
|
12
|
+
getImage(): string | undefined;
|
|
13
|
+
getLabel(): string | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
closeMonkeyPatched(): Promise<void>;
|
|
16
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
onClose: {
|
|
18
|
+
type: FunctionConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
ivToggleEvent: PropType<EventBus<ToggleCallback>>;
|
|
22
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
23
|
+
InteractionHeader: import('vue').DefineComponent<{
|
|
24
|
+
onClick?: (_payload: MouseEvent) => void;
|
|
25
|
+
heading: string;
|
|
26
|
+
hideCloseButton?: boolean;
|
|
27
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
28
|
+
onClick?: (_payload: MouseEvent) => void;
|
|
29
|
+
heading: string;
|
|
30
|
+
hideCloseButton?: boolean;
|
|
31
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
32
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
33
|
+
export default _default;
|