@roomle/embedding-lib 5.9.0-alpha.3 → 5.9.0-alpha.4
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 +6 -10
- 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 +24 -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,842 @@
|
|
|
1
|
+
import { OVERLAYS } from '../../common/components/utils/-utils/overlays';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
4
|
+
pointerPos: {
|
|
5
|
+
x: import('vue').Ref<number, number>;
|
|
6
|
+
y: import('vue').Ref<number, number>;
|
|
7
|
+
};
|
|
8
|
+
}, {}, {
|
|
9
|
+
OVERLAYS(): typeof OVERLAYS;
|
|
10
|
+
hasOpenOverlay(): boolean;
|
|
11
|
+
showExitButton(): boolean;
|
|
12
|
+
}, {
|
|
13
|
+
closeOverlays(): void;
|
|
14
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
15
|
+
FlyingMenu: import('vue').DefineComponent<{
|
|
16
|
+
pointerPos: import('../../common/composables/use-pointer-pos').UsePointerPosReturn;
|
|
17
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
18
|
+
pointerPos: import('../../common/composables/use-pointer-pos').UsePointerPosReturn;
|
|
19
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
Tutorials: import('vue').DefineComponent<{
|
|
21
|
+
onClose: () => void;
|
|
22
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
23
|
+
onClose: () => void;
|
|
24
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
GoToCartBtn: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
26
|
+
disabled: BooleanConstructor;
|
|
27
|
+
}>, {}, {}, {
|
|
28
|
+
isPlanner(): boolean;
|
|
29
|
+
hasPlanner(): boolean;
|
|
30
|
+
}, {
|
|
31
|
+
goToCart(): Promise<void>;
|
|
32
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
+
disabled: BooleanConstructor;
|
|
34
|
+
}>> & Readonly<{}>, {
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
}, {}, {
|
|
37
|
+
PrimaryButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
38
|
+
disabled: BooleanConstructor;
|
|
39
|
+
onClick: FunctionConstructor;
|
|
40
|
+
light: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
red: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
}>, {}, {
|
|
49
|
+
isRunning: boolean;
|
|
50
|
+
}, {
|
|
51
|
+
isDisabled(): boolean;
|
|
52
|
+
}, {
|
|
53
|
+
clicked(event: Event): Promise<void>;
|
|
54
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
55
|
+
disabled: BooleanConstructor;
|
|
56
|
+
onClick: FunctionConstructor;
|
|
57
|
+
light: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
red: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
}>> & Readonly<{}>, {
|
|
66
|
+
light: boolean;
|
|
67
|
+
disabled: boolean;
|
|
68
|
+
red: boolean;
|
|
69
|
+
}, {}, {
|
|
70
|
+
Spinner: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
71
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
72
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
73
|
+
OpenAR: import('vue').DefineComponent<{
|
|
74
|
+
onClose: (_payload: MouseEvent) => void;
|
|
75
|
+
payload?: {
|
|
76
|
+
fromTopBar: boolean;
|
|
77
|
+
};
|
|
78
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
79
|
+
onClose: (_payload: MouseEvent) => void;
|
|
80
|
+
payload?: {
|
|
81
|
+
fromTopBar: boolean;
|
|
82
|
+
};
|
|
83
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
84
|
+
Export3D: import('vue').DefineComponent<{
|
|
85
|
+
onClose: () => void;
|
|
86
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
87
|
+
onClose: () => void;
|
|
88
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
89
|
+
NoDocking: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
90
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
91
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
92
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
93
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
94
|
+
PopUp: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
95
|
+
onClose: FunctionConstructor;
|
|
96
|
+
displayCloseButton: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
isDesktop: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
isLightTheme: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
size: {
|
|
109
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
110
|
+
validator(value: any): boolean;
|
|
111
|
+
};
|
|
112
|
+
alignTo: {
|
|
113
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
114
|
+
validator(value: any): boolean;
|
|
115
|
+
};
|
|
116
|
+
}>, {}, {}, {
|
|
117
|
+
isAuto(): boolean;
|
|
118
|
+
isBig(): boolean;
|
|
119
|
+
isMedium(): boolean;
|
|
120
|
+
isSmall(): boolean;
|
|
121
|
+
isAlignToScene(): boolean;
|
|
122
|
+
}, {
|
|
123
|
+
close(): void;
|
|
124
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
125
|
+
onClose: FunctionConstructor;
|
|
126
|
+
displayCloseButton: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
isDesktop: {
|
|
131
|
+
type: BooleanConstructor;
|
|
132
|
+
default: boolean;
|
|
133
|
+
};
|
|
134
|
+
isLightTheme: {
|
|
135
|
+
type: BooleanConstructor;
|
|
136
|
+
default: boolean;
|
|
137
|
+
};
|
|
138
|
+
size: {
|
|
139
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
140
|
+
validator(value: any): boolean;
|
|
141
|
+
};
|
|
142
|
+
alignTo: {
|
|
143
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
144
|
+
validator(value: any): boolean;
|
|
145
|
+
};
|
|
146
|
+
}>> & Readonly<{}>, {
|
|
147
|
+
isDesktop: boolean;
|
|
148
|
+
displayCloseButton: boolean;
|
|
149
|
+
isLightTheme: boolean;
|
|
150
|
+
}, {}, {
|
|
151
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
152
|
+
icon: string;
|
|
153
|
+
}, {
|
|
154
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
155
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
156
|
+
icon: string;
|
|
157
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
158
|
+
SlideTransitionWrapper: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
159
|
+
useTransition: BooleanConstructor;
|
|
160
|
+
}>, {}, {}, {
|
|
161
|
+
computedTransition(): string;
|
|
162
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
163
|
+
useTransition: BooleanConstructor;
|
|
164
|
+
}>> & Readonly<{}>, {
|
|
165
|
+
useTransition: boolean;
|
|
166
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
167
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
168
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
169
|
+
VariantWarning: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
170
|
+
payload: import('vue').PropType<{
|
|
171
|
+
item: import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiItem;
|
|
172
|
+
}>;
|
|
173
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
174
|
+
}>, {}, {}, {}, {
|
|
175
|
+
onChangeAndClose(): Promise<void>;
|
|
176
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
177
|
+
payload: import('vue').PropType<{
|
|
178
|
+
item: import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiItem;
|
|
179
|
+
}>;
|
|
180
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
181
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
182
|
+
PopUp: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
183
|
+
onClose: FunctionConstructor;
|
|
184
|
+
displayCloseButton: {
|
|
185
|
+
type: BooleanConstructor;
|
|
186
|
+
default: boolean;
|
|
187
|
+
};
|
|
188
|
+
isDesktop: {
|
|
189
|
+
type: BooleanConstructor;
|
|
190
|
+
default: boolean;
|
|
191
|
+
};
|
|
192
|
+
isLightTheme: {
|
|
193
|
+
type: BooleanConstructor;
|
|
194
|
+
default: boolean;
|
|
195
|
+
};
|
|
196
|
+
size: {
|
|
197
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
198
|
+
validator(value: any): boolean;
|
|
199
|
+
};
|
|
200
|
+
alignTo: {
|
|
201
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
202
|
+
validator(value: any): boolean;
|
|
203
|
+
};
|
|
204
|
+
}>, {}, {}, {
|
|
205
|
+
isAuto(): boolean;
|
|
206
|
+
isBig(): boolean;
|
|
207
|
+
isMedium(): boolean;
|
|
208
|
+
isSmall(): boolean;
|
|
209
|
+
isAlignToScene(): boolean;
|
|
210
|
+
}, {
|
|
211
|
+
close(): void;
|
|
212
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
213
|
+
onClose: FunctionConstructor;
|
|
214
|
+
displayCloseButton: {
|
|
215
|
+
type: BooleanConstructor;
|
|
216
|
+
default: boolean;
|
|
217
|
+
};
|
|
218
|
+
isDesktop: {
|
|
219
|
+
type: BooleanConstructor;
|
|
220
|
+
default: boolean;
|
|
221
|
+
};
|
|
222
|
+
isLightTheme: {
|
|
223
|
+
type: BooleanConstructor;
|
|
224
|
+
default: boolean;
|
|
225
|
+
};
|
|
226
|
+
size: {
|
|
227
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
228
|
+
validator(value: any): boolean;
|
|
229
|
+
};
|
|
230
|
+
alignTo: {
|
|
231
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
232
|
+
validator(value: any): boolean;
|
|
233
|
+
};
|
|
234
|
+
}>> & Readonly<{}>, {
|
|
235
|
+
isDesktop: boolean;
|
|
236
|
+
displayCloseButton: boolean;
|
|
237
|
+
isLightTheme: boolean;
|
|
238
|
+
}, {}, {
|
|
239
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
240
|
+
icon: string;
|
|
241
|
+
}, {
|
|
242
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
243
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
244
|
+
icon: string;
|
|
245
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
246
|
+
SlideTransitionWrapper: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
247
|
+
useTransition: BooleanConstructor;
|
|
248
|
+
}>, {}, {}, {
|
|
249
|
+
computedTransition(): string;
|
|
250
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
251
|
+
useTransition: BooleanConstructor;
|
|
252
|
+
}>> & Readonly<{}>, {
|
|
253
|
+
useTransition: boolean;
|
|
254
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
255
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
256
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
257
|
+
icon: string;
|
|
258
|
+
}, {
|
|
259
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
260
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
261
|
+
icon: string;
|
|
262
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
263
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
264
|
+
SaveDraft: {
|
|
265
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
266
|
+
onClose: () => void;
|
|
267
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{
|
|
268
|
+
onClose: () => void;
|
|
269
|
+
}> & Readonly<{}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
270
|
+
P: {};
|
|
271
|
+
B: {};
|
|
272
|
+
D: {};
|
|
273
|
+
C: {};
|
|
274
|
+
M: {};
|
|
275
|
+
Defaults: {};
|
|
276
|
+
}, Readonly<{
|
|
277
|
+
onClose: () => void;
|
|
278
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
279
|
+
__isFragment?: never;
|
|
280
|
+
__isTeleport?: never;
|
|
281
|
+
__isSuspense?: never;
|
|
282
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
283
|
+
onClose: () => void;
|
|
284
|
+
}> & 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 () => {
|
|
285
|
+
$slots: {
|
|
286
|
+
default?(_: {}): any;
|
|
287
|
+
};
|
|
288
|
+
});
|
|
289
|
+
LoadProduct: {
|
|
290
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
291
|
+
onClose: () => void;
|
|
292
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{
|
|
293
|
+
onClose: () => void;
|
|
294
|
+
}> & Readonly<{}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
295
|
+
P: {};
|
|
296
|
+
B: {};
|
|
297
|
+
D: {};
|
|
298
|
+
C: {};
|
|
299
|
+
M: {};
|
|
300
|
+
Defaults: {};
|
|
301
|
+
}, Readonly<{
|
|
302
|
+
onClose: () => void;
|
|
303
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
304
|
+
__isFragment?: never;
|
|
305
|
+
__isTeleport?: never;
|
|
306
|
+
__isSuspense?: never;
|
|
307
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
308
|
+
onClose: () => void;
|
|
309
|
+
}> & 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 () => {
|
|
310
|
+
$slots: {
|
|
311
|
+
default?(_: {}): any;
|
|
312
|
+
};
|
|
313
|
+
});
|
|
314
|
+
ElementDisabled: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
315
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
316
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
317
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
318
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
319
|
+
PopUp: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
320
|
+
onClose: FunctionConstructor;
|
|
321
|
+
displayCloseButton: {
|
|
322
|
+
type: BooleanConstructor;
|
|
323
|
+
default: boolean;
|
|
324
|
+
};
|
|
325
|
+
isDesktop: {
|
|
326
|
+
type: BooleanConstructor;
|
|
327
|
+
default: boolean;
|
|
328
|
+
};
|
|
329
|
+
isLightTheme: {
|
|
330
|
+
type: BooleanConstructor;
|
|
331
|
+
default: boolean;
|
|
332
|
+
};
|
|
333
|
+
size: {
|
|
334
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
335
|
+
validator(value: any): boolean;
|
|
336
|
+
};
|
|
337
|
+
alignTo: {
|
|
338
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
339
|
+
validator(value: any): boolean;
|
|
340
|
+
};
|
|
341
|
+
}>, {}, {}, {
|
|
342
|
+
isAuto(): boolean;
|
|
343
|
+
isBig(): boolean;
|
|
344
|
+
isMedium(): boolean;
|
|
345
|
+
isSmall(): boolean;
|
|
346
|
+
isAlignToScene(): boolean;
|
|
347
|
+
}, {
|
|
348
|
+
close(): void;
|
|
349
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
350
|
+
onClose: FunctionConstructor;
|
|
351
|
+
displayCloseButton: {
|
|
352
|
+
type: BooleanConstructor;
|
|
353
|
+
default: boolean;
|
|
354
|
+
};
|
|
355
|
+
isDesktop: {
|
|
356
|
+
type: BooleanConstructor;
|
|
357
|
+
default: boolean;
|
|
358
|
+
};
|
|
359
|
+
isLightTheme: {
|
|
360
|
+
type: BooleanConstructor;
|
|
361
|
+
default: boolean;
|
|
362
|
+
};
|
|
363
|
+
size: {
|
|
364
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
365
|
+
validator(value: any): boolean;
|
|
366
|
+
};
|
|
367
|
+
alignTo: {
|
|
368
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
369
|
+
validator(value: any): boolean;
|
|
370
|
+
};
|
|
371
|
+
}>> & Readonly<{}>, {
|
|
372
|
+
isDesktop: boolean;
|
|
373
|
+
displayCloseButton: boolean;
|
|
374
|
+
isLightTheme: boolean;
|
|
375
|
+
}, {}, {
|
|
376
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
377
|
+
icon: string;
|
|
378
|
+
}, {
|
|
379
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
380
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
381
|
+
icon: string;
|
|
382
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
383
|
+
SlideTransitionWrapper: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
384
|
+
useTransition: BooleanConstructor;
|
|
385
|
+
}>, {}, {}, {
|
|
386
|
+
computedTransition(): string;
|
|
387
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
388
|
+
useTransition: BooleanConstructor;
|
|
389
|
+
}>> & Readonly<{}>, {
|
|
390
|
+
useTransition: boolean;
|
|
391
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
392
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
393
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
394
|
+
DeleteWarning: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
395
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
396
|
+
warningMessage: StringConstructor;
|
|
397
|
+
}>, {}, {}, {}, {
|
|
398
|
+
onDelete(): void;
|
|
399
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
400
|
+
onClose: import('vue').PropType<(_payload: MouseEvent) => void>;
|
|
401
|
+
warningMessage: StringConstructor;
|
|
402
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
403
|
+
PopUp: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
404
|
+
onClose: FunctionConstructor;
|
|
405
|
+
displayCloseButton: {
|
|
406
|
+
type: BooleanConstructor;
|
|
407
|
+
default: boolean;
|
|
408
|
+
};
|
|
409
|
+
isDesktop: {
|
|
410
|
+
type: BooleanConstructor;
|
|
411
|
+
default: boolean;
|
|
412
|
+
};
|
|
413
|
+
isLightTheme: {
|
|
414
|
+
type: BooleanConstructor;
|
|
415
|
+
default: boolean;
|
|
416
|
+
};
|
|
417
|
+
size: {
|
|
418
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
419
|
+
validator(value: any): boolean;
|
|
420
|
+
};
|
|
421
|
+
alignTo: {
|
|
422
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
423
|
+
validator(value: any): boolean;
|
|
424
|
+
};
|
|
425
|
+
}>, {}, {}, {
|
|
426
|
+
isAuto(): boolean;
|
|
427
|
+
isBig(): boolean;
|
|
428
|
+
isMedium(): boolean;
|
|
429
|
+
isSmall(): boolean;
|
|
430
|
+
isAlignToScene(): boolean;
|
|
431
|
+
}, {
|
|
432
|
+
close(): void;
|
|
433
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
434
|
+
onClose: FunctionConstructor;
|
|
435
|
+
displayCloseButton: {
|
|
436
|
+
type: BooleanConstructor;
|
|
437
|
+
default: boolean;
|
|
438
|
+
};
|
|
439
|
+
isDesktop: {
|
|
440
|
+
type: BooleanConstructor;
|
|
441
|
+
default: boolean;
|
|
442
|
+
};
|
|
443
|
+
isLightTheme: {
|
|
444
|
+
type: BooleanConstructor;
|
|
445
|
+
default: boolean;
|
|
446
|
+
};
|
|
447
|
+
size: {
|
|
448
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
449
|
+
validator(value: any): boolean;
|
|
450
|
+
};
|
|
451
|
+
alignTo: {
|
|
452
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
453
|
+
validator(value: any): boolean;
|
|
454
|
+
};
|
|
455
|
+
}>> & Readonly<{}>, {
|
|
456
|
+
isDesktop: boolean;
|
|
457
|
+
displayCloseButton: boolean;
|
|
458
|
+
isLightTheme: boolean;
|
|
459
|
+
}, {}, {
|
|
460
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
461
|
+
icon: string;
|
|
462
|
+
}, {
|
|
463
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
464
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
465
|
+
icon: string;
|
|
466
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
467
|
+
SlideTransitionWrapper: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
468
|
+
useTransition: BooleanConstructor;
|
|
469
|
+
}>, {}, {}, {
|
|
470
|
+
computedTransition(): string;
|
|
471
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
472
|
+
useTransition: BooleanConstructor;
|
|
473
|
+
}>> & Readonly<{}>, {
|
|
474
|
+
useTransition: boolean;
|
|
475
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
476
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
477
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
478
|
+
GenericError: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
479
|
+
payload: {
|
|
480
|
+
type: import('vue').PropType<{
|
|
481
|
+
headline: string;
|
|
482
|
+
description: string;
|
|
483
|
+
alignTo: import('./utils/-utils/popup-types').PopUpAlignment;
|
|
484
|
+
isTranslated: boolean;
|
|
485
|
+
}>;
|
|
486
|
+
required: true;
|
|
487
|
+
};
|
|
488
|
+
onClose: FunctionConstructor;
|
|
489
|
+
}>, {}, {}, {}, {
|
|
490
|
+
onDelete(): void;
|
|
491
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
492
|
+
payload: {
|
|
493
|
+
type: import('vue').PropType<{
|
|
494
|
+
headline: string;
|
|
495
|
+
description: string;
|
|
496
|
+
alignTo: import('./utils/-utils/popup-types').PopUpAlignment;
|
|
497
|
+
isTranslated: boolean;
|
|
498
|
+
}>;
|
|
499
|
+
required: true;
|
|
500
|
+
};
|
|
501
|
+
onClose: FunctionConstructor;
|
|
502
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
503
|
+
PopUp: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
504
|
+
onClose: FunctionConstructor;
|
|
505
|
+
displayCloseButton: {
|
|
506
|
+
type: BooleanConstructor;
|
|
507
|
+
default: boolean;
|
|
508
|
+
};
|
|
509
|
+
isDesktop: {
|
|
510
|
+
type: BooleanConstructor;
|
|
511
|
+
default: boolean;
|
|
512
|
+
};
|
|
513
|
+
isLightTheme: {
|
|
514
|
+
type: BooleanConstructor;
|
|
515
|
+
default: boolean;
|
|
516
|
+
};
|
|
517
|
+
size: {
|
|
518
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
519
|
+
validator(value: any): boolean;
|
|
520
|
+
};
|
|
521
|
+
alignTo: {
|
|
522
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
523
|
+
validator(value: any): boolean;
|
|
524
|
+
};
|
|
525
|
+
}>, {}, {}, {
|
|
526
|
+
isAuto(): boolean;
|
|
527
|
+
isBig(): boolean;
|
|
528
|
+
isMedium(): boolean;
|
|
529
|
+
isSmall(): boolean;
|
|
530
|
+
isAlignToScene(): boolean;
|
|
531
|
+
}, {
|
|
532
|
+
close(): void;
|
|
533
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
534
|
+
onClose: FunctionConstructor;
|
|
535
|
+
displayCloseButton: {
|
|
536
|
+
type: BooleanConstructor;
|
|
537
|
+
default: boolean;
|
|
538
|
+
};
|
|
539
|
+
isDesktop: {
|
|
540
|
+
type: BooleanConstructor;
|
|
541
|
+
default: boolean;
|
|
542
|
+
};
|
|
543
|
+
isLightTheme: {
|
|
544
|
+
type: BooleanConstructor;
|
|
545
|
+
default: boolean;
|
|
546
|
+
};
|
|
547
|
+
size: {
|
|
548
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
549
|
+
validator(value: any): boolean;
|
|
550
|
+
};
|
|
551
|
+
alignTo: {
|
|
552
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
553
|
+
validator(value: any): boolean;
|
|
554
|
+
};
|
|
555
|
+
}>> & Readonly<{}>, {
|
|
556
|
+
isDesktop: boolean;
|
|
557
|
+
displayCloseButton: boolean;
|
|
558
|
+
isLightTheme: boolean;
|
|
559
|
+
}, {}, {
|
|
560
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
561
|
+
icon: string;
|
|
562
|
+
}, {
|
|
563
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
564
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
565
|
+
icon: string;
|
|
566
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
567
|
+
SlideTransitionWrapper: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
568
|
+
useTransition: BooleanConstructor;
|
|
569
|
+
}>, {}, {}, {
|
|
570
|
+
computedTransition(): string;
|
|
571
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
572
|
+
useTransition: BooleanConstructor;
|
|
573
|
+
}>> & Readonly<{}>, {
|
|
574
|
+
useTransition: boolean;
|
|
575
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
576
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
577
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
578
|
+
CloseView: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
579
|
+
onClose: FunctionConstructor;
|
|
580
|
+
}>, {}, {}, {}, {
|
|
581
|
+
backToConfigurator(): void;
|
|
582
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
583
|
+
onClose: FunctionConstructor;
|
|
584
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
585
|
+
PopUp: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
586
|
+
onClose: FunctionConstructor;
|
|
587
|
+
displayCloseButton: {
|
|
588
|
+
type: BooleanConstructor;
|
|
589
|
+
default: boolean;
|
|
590
|
+
};
|
|
591
|
+
isDesktop: {
|
|
592
|
+
type: BooleanConstructor;
|
|
593
|
+
default: boolean;
|
|
594
|
+
};
|
|
595
|
+
isLightTheme: {
|
|
596
|
+
type: BooleanConstructor;
|
|
597
|
+
default: boolean;
|
|
598
|
+
};
|
|
599
|
+
size: {
|
|
600
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
601
|
+
validator(value: any): boolean;
|
|
602
|
+
};
|
|
603
|
+
alignTo: {
|
|
604
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
605
|
+
validator(value: any): boolean;
|
|
606
|
+
};
|
|
607
|
+
}>, {}, {}, {
|
|
608
|
+
isAuto(): boolean;
|
|
609
|
+
isBig(): boolean;
|
|
610
|
+
isMedium(): boolean;
|
|
611
|
+
isSmall(): boolean;
|
|
612
|
+
isAlignToScene(): boolean;
|
|
613
|
+
}, {
|
|
614
|
+
close(): void;
|
|
615
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
616
|
+
onClose: FunctionConstructor;
|
|
617
|
+
displayCloseButton: {
|
|
618
|
+
type: BooleanConstructor;
|
|
619
|
+
default: boolean;
|
|
620
|
+
};
|
|
621
|
+
isDesktop: {
|
|
622
|
+
type: BooleanConstructor;
|
|
623
|
+
default: boolean;
|
|
624
|
+
};
|
|
625
|
+
isLightTheme: {
|
|
626
|
+
type: BooleanConstructor;
|
|
627
|
+
default: boolean;
|
|
628
|
+
};
|
|
629
|
+
size: {
|
|
630
|
+
type: import('vue').PropType<"small" | "big" | "auto" | "medium">;
|
|
631
|
+
validator(value: any): boolean;
|
|
632
|
+
};
|
|
633
|
+
alignTo: {
|
|
634
|
+
type: import('vue').PropType<import('./utils/-utils/popup-types').PopUpAlignment>;
|
|
635
|
+
validator(value: any): boolean;
|
|
636
|
+
};
|
|
637
|
+
}>> & Readonly<{}>, {
|
|
638
|
+
isDesktop: boolean;
|
|
639
|
+
displayCloseButton: boolean;
|
|
640
|
+
isLightTheme: boolean;
|
|
641
|
+
}, {}, {
|
|
642
|
+
SvgIcon: import('vue').DefineComponent<{
|
|
643
|
+
icon: string;
|
|
644
|
+
}, {
|
|
645
|
+
svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
|
|
646
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
647
|
+
icon: string;
|
|
648
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
649
|
+
SlideTransitionWrapper: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
650
|
+
useTransition: BooleanConstructor;
|
|
651
|
+
}>, {}, {}, {
|
|
652
|
+
computedTransition(): string;
|
|
653
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
654
|
+
useTransition: BooleanConstructor;
|
|
655
|
+
}>> & Readonly<{}>, {
|
|
656
|
+
useTransition: boolean;
|
|
657
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
658
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
659
|
+
GoBack: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
660
|
+
cartCount: NumberConstructor;
|
|
661
|
+
onClickBack: FunctionConstructor;
|
|
662
|
+
}>, {}, {}, {
|
|
663
|
+
isPlanner(): boolean;
|
|
664
|
+
hasPlanner(): boolean;
|
|
665
|
+
}, {
|
|
666
|
+
goToCart(): Promise<void>;
|
|
667
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
668
|
+
cartCount: NumberConstructor;
|
|
669
|
+
onClickBack: FunctionConstructor;
|
|
670
|
+
}>> & Readonly<{}>, {}, {}, {
|
|
671
|
+
PrimaryButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
672
|
+
disabled: BooleanConstructor;
|
|
673
|
+
onClick: FunctionConstructor;
|
|
674
|
+
light: {
|
|
675
|
+
type: BooleanConstructor;
|
|
676
|
+
default: boolean;
|
|
677
|
+
};
|
|
678
|
+
red: {
|
|
679
|
+
type: BooleanConstructor;
|
|
680
|
+
default: boolean;
|
|
681
|
+
};
|
|
682
|
+
}>, {}, {
|
|
683
|
+
isRunning: boolean;
|
|
684
|
+
}, {
|
|
685
|
+
isDisabled(): boolean;
|
|
686
|
+
}, {
|
|
687
|
+
clicked(event: Event): Promise<void>;
|
|
688
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
689
|
+
disabled: BooleanConstructor;
|
|
690
|
+
onClick: FunctionConstructor;
|
|
691
|
+
light: {
|
|
692
|
+
type: BooleanConstructor;
|
|
693
|
+
default: boolean;
|
|
694
|
+
};
|
|
695
|
+
red: {
|
|
696
|
+
type: BooleanConstructor;
|
|
697
|
+
default: boolean;
|
|
698
|
+
};
|
|
699
|
+
}>> & Readonly<{}>, {
|
|
700
|
+
light: boolean;
|
|
701
|
+
disabled: boolean;
|
|
702
|
+
red: boolean;
|
|
703
|
+
}, {}, {
|
|
704
|
+
Spinner: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
705
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
706
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
707
|
+
ControlButtonsWrapper: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
708
|
+
SaveCartBtn: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
709
|
+
cartCount: NumberConstructor;
|
|
710
|
+
showClose: BooleanConstructor;
|
|
711
|
+
}>, {}, {}, {
|
|
712
|
+
showSaveButton(): boolean;
|
|
713
|
+
}, {
|
|
714
|
+
goToCart(): Promise<void>;
|
|
715
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
716
|
+
cartCount: NumberConstructor;
|
|
717
|
+
showClose: BooleanConstructor;
|
|
718
|
+
}>> & Readonly<{}>, {
|
|
719
|
+
showClose: boolean;
|
|
720
|
+
}, {}, {
|
|
721
|
+
PrimaryButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
722
|
+
disabled: BooleanConstructor;
|
|
723
|
+
onClick: FunctionConstructor;
|
|
724
|
+
light: {
|
|
725
|
+
type: BooleanConstructor;
|
|
726
|
+
default: boolean;
|
|
727
|
+
};
|
|
728
|
+
red: {
|
|
729
|
+
type: BooleanConstructor;
|
|
730
|
+
default: boolean;
|
|
731
|
+
};
|
|
732
|
+
}>, {}, {
|
|
733
|
+
isRunning: boolean;
|
|
734
|
+
}, {
|
|
735
|
+
isDisabled(): boolean;
|
|
736
|
+
}, {
|
|
737
|
+
clicked(event: Event): Promise<void>;
|
|
738
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
739
|
+
disabled: BooleanConstructor;
|
|
740
|
+
onClick: FunctionConstructor;
|
|
741
|
+
light: {
|
|
742
|
+
type: BooleanConstructor;
|
|
743
|
+
default: boolean;
|
|
744
|
+
};
|
|
745
|
+
red: {
|
|
746
|
+
type: BooleanConstructor;
|
|
747
|
+
default: boolean;
|
|
748
|
+
};
|
|
749
|
+
}>> & Readonly<{}>, {
|
|
750
|
+
light: boolean;
|
|
751
|
+
disabled: boolean;
|
|
752
|
+
red: boolean;
|
|
753
|
+
}, {}, {
|
|
754
|
+
Spinner: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
755
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
756
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
757
|
+
ExitBtn: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
758
|
+
closeView(): void;
|
|
759
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
760
|
+
PrimaryButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
761
|
+
disabled: BooleanConstructor;
|
|
762
|
+
onClick: FunctionConstructor;
|
|
763
|
+
light: {
|
|
764
|
+
type: BooleanConstructor;
|
|
765
|
+
default: boolean;
|
|
766
|
+
};
|
|
767
|
+
red: {
|
|
768
|
+
type: BooleanConstructor;
|
|
769
|
+
default: boolean;
|
|
770
|
+
};
|
|
771
|
+
}>, {}, {
|
|
772
|
+
isRunning: boolean;
|
|
773
|
+
}, {
|
|
774
|
+
isDisabled(): boolean;
|
|
775
|
+
}, {
|
|
776
|
+
clicked(event: Event): Promise<void>;
|
|
777
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
778
|
+
disabled: BooleanConstructor;
|
|
779
|
+
onClick: FunctionConstructor;
|
|
780
|
+
light: {
|
|
781
|
+
type: BooleanConstructor;
|
|
782
|
+
default: boolean;
|
|
783
|
+
};
|
|
784
|
+
red: {
|
|
785
|
+
type: BooleanConstructor;
|
|
786
|
+
default: boolean;
|
|
787
|
+
};
|
|
788
|
+
}>> & Readonly<{}>, {
|
|
789
|
+
light: boolean;
|
|
790
|
+
disabled: boolean;
|
|
791
|
+
red: boolean;
|
|
792
|
+
}, {}, {
|
|
793
|
+
Spinner: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
794
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
795
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
796
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
797
|
+
AddToBasket: import('vue').DefineComponent<{
|
|
798
|
+
onClose: () => void;
|
|
799
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
800
|
+
onClose: () => void;
|
|
801
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
802
|
+
ExitBtn: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
803
|
+
closeView(): void;
|
|
804
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
805
|
+
PrimaryButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
806
|
+
disabled: BooleanConstructor;
|
|
807
|
+
onClick: FunctionConstructor;
|
|
808
|
+
light: {
|
|
809
|
+
type: BooleanConstructor;
|
|
810
|
+
default: boolean;
|
|
811
|
+
};
|
|
812
|
+
red: {
|
|
813
|
+
type: BooleanConstructor;
|
|
814
|
+
default: boolean;
|
|
815
|
+
};
|
|
816
|
+
}>, {}, {
|
|
817
|
+
isRunning: boolean;
|
|
818
|
+
}, {
|
|
819
|
+
isDisabled(): boolean;
|
|
820
|
+
}, {
|
|
821
|
+
clicked(event: Event): Promise<void>;
|
|
822
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
823
|
+
disabled: BooleanConstructor;
|
|
824
|
+
onClick: FunctionConstructor;
|
|
825
|
+
light: {
|
|
826
|
+
type: BooleanConstructor;
|
|
827
|
+
default: boolean;
|
|
828
|
+
};
|
|
829
|
+
red: {
|
|
830
|
+
type: BooleanConstructor;
|
|
831
|
+
default: boolean;
|
|
832
|
+
};
|
|
833
|
+
}>> & Readonly<{}>, {
|
|
834
|
+
light: boolean;
|
|
835
|
+
disabled: boolean;
|
|
836
|
+
red: boolean;
|
|
837
|
+
}, {}, {
|
|
838
|
+
Spinner: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
839
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
840
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
841
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
842
|
+
export default _default;
|