@roomle/embedding-lib 5.23.0-alpha.1 → 5.24.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/md/web/embedding/CHANGELOG.md +23 -3
- package/package.json +2 -2
- package/src/common/components/ExpandableIcons.vue.d.ts +11 -1
- package/src/common/components/SelectionButton.vue.d.ts +13 -1
- package/src/common/components/Tooltip.vue.d.ts +36 -2
- package/src/common/components/collection-view/-utils/collection-view-dynamic-components.d.ts +54 -3
- package/src/common/components/drawer-layout/DrawerElement.vue.d.ts +3 -36
- package/src/common/components/inputs/BaseInput.vue.d.ts +20 -60
- package/src/common/components/inputs/GenericInput.vue.d.ts +5 -26
- package/src/common/components/inputs/SelectDropdown.vue.d.ts +1 -1
- package/src/common/components/overlays/PartList.vue.d.ts +14 -2
- package/src/common/components/overlays/bottom-bar/GoBack.vue.d.ts +5 -1
- package/src/common/components/overlays/bottom-bar/cart/ExitBtn.vue.d.ts +5 -1
- package/src/common/components/overlays/bottom-bar/cart/GoToCartBtn.vue.d.ts +5 -1
- package/src/common/components/overlays/bottom-bar/cart/SaveCartBtn.vue.d.ts +5 -1
- package/src/common/components/overlays/part-list/PartListEntry.vue.d.ts +14 -2
- package/src/common/components/overlays/part-list/PartListRow.vue.d.ts +7 -1
- package/src/common/components/side-bar/BackAction.vue.d.ts +9 -21
- package/src/common/components/side-bar/NextAction.vue.d.ts +9 -21
- package/src/common/components/utils/HeightToggle.vue.d.ts +7 -1
- package/src/common/components/utils/collapsible-buttons-container/CollapsibleTrigger.vue.d.ts +21 -3
- package/src/common/composables/use-shared-sidebar-setup.d.ts +12 -5
- package/src/common/store/common-ui-store.d.ts +305 -0
- package/src/common/store/index.d.ts +1 -3
- package/src/common/utils/helper.d.ts +2 -2
- package/src/configurator/components/grid-view/-utils/ExpandedHeader.vue.d.ts +3 -28
- package/src/configurator/components/parameters/ParameterGroupButton.vue.d.ts +3 -32
- package/src/configurator/components/top-bar/ARButton.vue.d.ts +8 -1
- package/src/configurator/components/utils/ArrowButton.vue.d.ts +7 -1
- package/src/configurator/components/utils/HeightContainer.vue.d.ts +9 -1
- package/src/configurator/components/utils/InteractionsContainer.vue.d.ts +6 -2
- package/src/configurator/components/utils/PopUp.vue.d.ts +1 -26
- package/src/configurator/components/utils/PrimaryButton.vue.d.ts +5 -1
- package/src/configurator/components/utils/SearchInput.vue.d.ts +3 -26
- package/src/configurator/components/utils/Spinner.vue.d.ts +5 -1
- package/src/configurator/components/utils/StartConfiguringButton.vue.d.ts +21 -3
- package/src/planner/components/DraggableButton.vue.d.ts +4 -1
- package/src/planner/components/RotationIndicator.vue.d.ts +3 -40
- package/src/planner/components/overlays/ProductListButton.vue.d.ts +5 -1
- package/src/planner/components/overlays/product-settings/ProductRangeControl.vue.d.ts +323 -0
- package/src/planner/components/overlays/rooms/DoorParametersSetting.vue.d.ts +81 -335
- package/src/planner/components/overlays/rooms/SlopingRoofDirectionTooltip.vue.d.ts +4 -1
- package/src/planner/components/overlays/rooms/SlopingRoofTooltip.vue.d.ts +4 -1
- package/src/planner/components/utils/AddRoomButton.vue.d.ts +5 -1
- package/src/viewer/components/ViewerMain.vue.d.ts +27 -13
- package/src/common/components/overlays/bottom-bar/CloseView.vue.d.ts +0 -267
- package/src/common/store/common-ui-state.d.ts +0 -36
- package/src/configurator/components/Overlays.vue.d.ts +0 -1119
- package/src/configurator/components/overlays/DeleteWarning.vue.d.ts +0 -132
- package/src/configurator/components/overlays/ElementDisabled.vue.d.ts +0 -128
- package/src/configurator/components/overlays/GenericError.vue.d.ts +0 -149
- package/src/configurator/components/overlays/NoDocking.vue.d.ts +0 -128
- package/src/configurator/components/overlays/VariantWarning.vue.d.ts +0 -144
|
@@ -9,15 +9,7 @@ interface Props {
|
|
|
9
9
|
size?: PopUpSize;
|
|
10
10
|
alignTo?: PopUpAlignment;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').
|
|
13
|
-
displayCloseButton: boolean;
|
|
14
|
-
isDesktop: boolean;
|
|
15
|
-
isLightTheme: boolean;
|
|
16
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
17
|
-
displayCloseButton: boolean;
|
|
18
|
-
isDesktop: boolean;
|
|
19
|
-
isLightTheme: boolean;
|
|
20
|
-
}>>> & Readonly<{}>, {
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
21
13
|
isDesktop: boolean;
|
|
22
14
|
displayCloseButton: boolean;
|
|
23
15
|
isLightTheme: boolean;
|
|
@@ -27,25 +19,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
27
19
|
}): any;
|
|
28
20
|
}>;
|
|
29
21
|
export default _default;
|
|
30
|
-
type __VLS_WithDefaults<P, D> = {
|
|
31
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
32
|
-
default: D[K];
|
|
33
|
-
}> : P[K];
|
|
34
|
-
};
|
|
35
|
-
type __VLS_Prettify<T> = {
|
|
36
|
-
[K in keyof T]: T[K];
|
|
37
|
-
} & {};
|
|
38
22
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
23
|
new (): {
|
|
40
24
|
$slots: S;
|
|
41
25
|
};
|
|
42
26
|
};
|
|
43
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
|
-
type __VLS_TypePropsToOption<T> = {
|
|
45
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
46
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
47
|
-
} : {
|
|
48
|
-
type: import('vue').PropType<T[K]>;
|
|
49
|
-
required: true;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
@@ -31,6 +31,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
disabled: boolean;
|
|
32
32
|
red: boolean;
|
|
33
33
|
}, {}, {
|
|
34
|
-
Spinner: import('vue').DefineComponent<{
|
|
34
|
+
Spinner: import('vue').DefineComponent<{
|
|
35
|
+
size?: string;
|
|
36
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
37
|
+
size?: string;
|
|
38
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
35
39
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
36
40
|
export default _default;
|
|
@@ -1,34 +1,11 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
2
|
isDesktop?: boolean;
|
|
3
3
|
onChange?: (event: Event) => void;
|
|
4
|
-
}
|
|
5
|
-
isDesktop: boolean;
|
|
6
|
-
onChange: () => any;
|
|
7
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
4
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
8
5
|
isDesktop?: boolean;
|
|
9
6
|
onChange?: (event: Event) => void;
|
|
10
|
-
}>, {
|
|
11
|
-
isDesktop: boolean;
|
|
12
|
-
onChange: () => any;
|
|
13
|
-
}>>> & Readonly<{}>, {
|
|
7
|
+
}> & Readonly<{}>, {
|
|
14
8
|
isDesktop: boolean;
|
|
15
9
|
onChange: (event: Event) => void;
|
|
16
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
11
|
export default _default;
|
|
18
|
-
type __VLS_WithDefaults<P, D> = {
|
|
19
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
20
|
-
default: D[K];
|
|
21
|
-
}> : P[K];
|
|
22
|
-
};
|
|
23
|
-
type __VLS_Prettify<T> = {
|
|
24
|
-
[K in keyof T]: T[K];
|
|
25
|
-
} & {};
|
|
26
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
-
type __VLS_TypePropsToOption<T> = {
|
|
28
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
-
} : {
|
|
31
|
-
type: import('vue').PropType<T[K]>;
|
|
32
|
-
required: true;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
size?: string;
|
|
3
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
4
|
+
size?: string;
|
|
5
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
6
|
export default _default;
|
|
@@ -4,18 +4,36 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
|
4
4
|
startConfiguring(): Promise<void>;
|
|
5
5
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
6
6
|
SelectionButton: {
|
|
7
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
7
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
8
|
+
onClick?: () => void;
|
|
9
|
+
dark?: boolean;
|
|
10
|
+
red?: boolean;
|
|
11
|
+
svgBigger?: boolean;
|
|
12
|
+
active?: boolean;
|
|
13
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
8
14
|
P: {};
|
|
9
15
|
B: {};
|
|
10
16
|
D: {};
|
|
11
17
|
C: {};
|
|
12
18
|
M: {};
|
|
13
19
|
Defaults: {};
|
|
14
|
-
}, Readonly<{
|
|
20
|
+
}, Readonly<{
|
|
21
|
+
onClick?: () => void;
|
|
22
|
+
dark?: boolean;
|
|
23
|
+
red?: boolean;
|
|
24
|
+
svgBigger?: boolean;
|
|
25
|
+
active?: boolean;
|
|
26
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
15
27
|
__isFragment?: never;
|
|
16
28
|
__isTeleport?: never;
|
|
17
29
|
__isSuspense?: never;
|
|
18
|
-
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
30
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
31
|
+
onClick?: () => void;
|
|
32
|
+
dark?: boolean;
|
|
33
|
+
red?: boolean;
|
|
34
|
+
svgBigger?: boolean;
|
|
35
|
+
active?: boolean;
|
|
36
|
+
}> & 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 () => {
|
|
19
37
|
$slots: {
|
|
20
38
|
default?(_: {}): any;
|
|
21
39
|
};
|
|
@@ -15,7 +15,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
15
15
|
initPosition: PointCoords;
|
|
16
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
17
17
|
default?(_: {
|
|
18
|
-
currentBtnPosition:
|
|
18
|
+
currentBtnPosition: {
|
|
19
|
+
x: number;
|
|
20
|
+
y: number;
|
|
21
|
+
};
|
|
19
22
|
isDragging: boolean;
|
|
20
23
|
}): any;
|
|
21
24
|
}>;
|
|
@@ -1,40 +1,20 @@
|
|
|
1
1
|
import { PointCoords } from '../utils/rotation-calculation';
|
|
2
2
|
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
4
|
selectedObjCenter?: PointCoords;
|
|
5
5
|
progress?: number;
|
|
6
6
|
radius?: number;
|
|
7
7
|
stroke?: number;
|
|
8
8
|
snapDegrees?: number;
|
|
9
9
|
rotationDegrees?: number;
|
|
10
|
-
}
|
|
11
|
-
selectedObjCenter: () => {
|
|
12
|
-
x: number;
|
|
13
|
-
y: number;
|
|
14
|
-
};
|
|
15
|
-
progress: number;
|
|
16
|
-
radius: number;
|
|
17
|
-
stroke: number;
|
|
18
|
-
snapDegrees: number;
|
|
19
|
-
rotationDegrees: number;
|
|
20
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
10
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
21
11
|
selectedObjCenter?: PointCoords;
|
|
22
12
|
progress?: number;
|
|
23
13
|
radius?: number;
|
|
24
14
|
stroke?: number;
|
|
25
15
|
snapDegrees?: number;
|
|
26
16
|
rotationDegrees?: number;
|
|
27
|
-
}>, {
|
|
28
|
-
selectedObjCenter: () => {
|
|
29
|
-
x: number;
|
|
30
|
-
y: number;
|
|
31
|
-
};
|
|
32
|
-
progress: number;
|
|
33
|
-
radius: number;
|
|
34
|
-
stroke: number;
|
|
35
|
-
snapDegrees: number;
|
|
36
|
-
rotationDegrees: number;
|
|
37
|
-
}>>> & Readonly<{}>, {
|
|
17
|
+
}> & Readonly<{}>, {
|
|
38
18
|
progress: number;
|
|
39
19
|
stroke: number;
|
|
40
20
|
selectedObjCenter: PointCoords;
|
|
@@ -45,25 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
45
25
|
default?(_: {}): any;
|
|
46
26
|
}>;
|
|
47
27
|
export default _default;
|
|
48
|
-
type __VLS_WithDefaults<P, D> = {
|
|
49
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
50
|
-
default: D[K];
|
|
51
|
-
}> : P[K];
|
|
52
|
-
};
|
|
53
|
-
type __VLS_Prettify<T> = {
|
|
54
|
-
[K in keyof T]: T[K];
|
|
55
|
-
} & {};
|
|
56
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
57
29
|
new (): {
|
|
58
30
|
$slots: S;
|
|
59
31
|
};
|
|
60
32
|
};
|
|
61
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
-
type __VLS_TypePropsToOption<T> = {
|
|
63
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
|
-
} : {
|
|
66
|
-
type: import('vue').PropType<T[K]>;
|
|
67
|
-
required: true;
|
|
68
|
-
};
|
|
69
|
-
};
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
onClick?: () => void;
|
|
3
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
4
|
+
onClick?: () => void;
|
|
5
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
6
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
+
import { StoreState } from '../../../../common/store';
|
|
2
3
|
|
|
3
4
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
5
|
onClick: FunctionConstructor;
|
|
@@ -14,6 +15,328 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
14
15
|
disabled: BooleanConstructor;
|
|
15
16
|
}>, {
|
|
16
17
|
store: any;
|
|
18
|
+
commonUiStore: import('pinia').Store<"commonUiStore", Pick<{
|
|
19
|
+
showFlyingMenu: import('vue').Ref<boolean, boolean>;
|
|
20
|
+
flyingMenuTriggeredByClick: import('vue').Ref<boolean, boolean>;
|
|
21
|
+
isInIframe: import('vue').Ref<boolean, boolean>;
|
|
22
|
+
isViewOnly: import('vue').Ref<boolean, boolean>;
|
|
23
|
+
lastRequestedId: import('vue').Ref<string, string>;
|
|
24
|
+
currentViewMode: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
25
|
+
readonly '2D': "2d";
|
|
26
|
+
readonly '3D': "3d";
|
|
27
|
+
readonly FIRST_PERSON: "fp";
|
|
28
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
29
|
+
readonly '2D': "2d";
|
|
30
|
+
readonly '3D': "3d";
|
|
31
|
+
readonly FIRST_PERSON: "fp";
|
|
32
|
+
}>>;
|
|
33
|
+
isShadowOnStage: import('vue').Ref<boolean, boolean>;
|
|
34
|
+
measurementUnit: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
35
|
+
readonly FEET: "feet";
|
|
36
|
+
readonly INCH_FEET: "inchfeet";
|
|
37
|
+
readonly INCH: "inch";
|
|
38
|
+
readonly CM: "cm";
|
|
39
|
+
readonly MM: "mm";
|
|
40
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
41
|
+
readonly FEET: "feet";
|
|
42
|
+
readonly INCH_FEET: "inchfeet";
|
|
43
|
+
readonly INCH: "inch";
|
|
44
|
+
readonly CM: "cm";
|
|
45
|
+
readonly MM: "mm";
|
|
46
|
+
}>>;
|
|
47
|
+
measurementSystem: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
48
|
+
readonly IMPERIAL: "imperial";
|
|
49
|
+
readonly METRIC: "metric";
|
|
50
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
51
|
+
readonly IMPERIAL: "imperial";
|
|
52
|
+
readonly METRIC: "metric";
|
|
53
|
+
}>>;
|
|
54
|
+
isTextInputFocused: import('vue').Ref<boolean, boolean>;
|
|
55
|
+
isCameraIdle: import('vue').Ref<boolean, boolean>;
|
|
56
|
+
currentEmbeddedInfos: import('vue').Ref<{
|
|
57
|
+
type: import('@roomle/web-sdk/lib/definitions/common-core/src/types').Enumify<{
|
|
58
|
+
readonly PARAMETER: "parameter";
|
|
59
|
+
readonly PARAMETER_VALUE: "paramValue";
|
|
60
|
+
readonly MATERIAL: "material";
|
|
61
|
+
readonly COMPONENT: "component";
|
|
62
|
+
readonly ITEM: "item";
|
|
63
|
+
}>;
|
|
64
|
+
key: string;
|
|
65
|
+
parentIdFilter: string;
|
|
66
|
+
catalog: string;
|
|
67
|
+
tooltip: {
|
|
68
|
+
[key: string]: string;
|
|
69
|
+
};
|
|
70
|
+
fullInfo: {
|
|
71
|
+
type: string;
|
|
72
|
+
url: {
|
|
73
|
+
[key: string]: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
}[], import('@roomle/web-sdk/lib/definitions/typings/rapi-types').AdditionalInfo[] | {
|
|
77
|
+
type: import('@roomle/web-sdk/lib/definitions/common-core/src/types').Enumify<{
|
|
78
|
+
readonly PARAMETER: "parameter";
|
|
79
|
+
readonly PARAMETER_VALUE: "paramValue";
|
|
80
|
+
readonly MATERIAL: "material";
|
|
81
|
+
readonly COMPONENT: "component";
|
|
82
|
+
readonly ITEM: "item";
|
|
83
|
+
}>;
|
|
84
|
+
key: string;
|
|
85
|
+
parentIdFilter: string;
|
|
86
|
+
catalog: string;
|
|
87
|
+
tooltip: {
|
|
88
|
+
[key: string]: string;
|
|
89
|
+
};
|
|
90
|
+
fullInfo: {
|
|
91
|
+
type: string;
|
|
92
|
+
url: {
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}[]>;
|
|
97
|
+
isDraggingElement: import('vue').Ref<boolean, boolean>;
|
|
98
|
+
loadedConfigFromIdb: import('vue').Ref<boolean, boolean>;
|
|
99
|
+
notificationVisible: import('vue').Ref<boolean, boolean>;
|
|
100
|
+
configuratorHintClosed: import('vue').Ref<boolean, boolean>;
|
|
101
|
+
is2d: import('vue').ComputedRef<boolean>;
|
|
102
|
+
is3d: import('vue').ComputedRef<boolean>;
|
|
103
|
+
isFp: import('vue').ComputedRef<boolean>;
|
|
104
|
+
setPiniaVuexReference: (store: Store<StoreState>) => void;
|
|
105
|
+
setViewMode: ({ isDesktop, isLandscape, }: {
|
|
106
|
+
isDesktop: boolean;
|
|
107
|
+
isLandscape: boolean;
|
|
108
|
+
}) => void;
|
|
109
|
+
setFlyingMenuVisibility: (payload: {
|
|
110
|
+
show: boolean;
|
|
111
|
+
flyingMenuTriggeredByClick: boolean;
|
|
112
|
+
}) => void;
|
|
113
|
+
setDraggingElementStatus: (isDragging: boolean) => void;
|
|
114
|
+
setMeasurementUnit: (unit: import('../../../../common/utils/types').Enumify<{
|
|
115
|
+
readonly FEET: "feet";
|
|
116
|
+
readonly INCH_FEET: "inchfeet";
|
|
117
|
+
readonly INCH: "inch";
|
|
118
|
+
readonly CM: "cm";
|
|
119
|
+
readonly MM: "mm";
|
|
120
|
+
}>) => void;
|
|
121
|
+
setMeasurementSystem: (system: import('../../../../common/utils/types').Enumify<{
|
|
122
|
+
readonly IMPERIAL: "imperial";
|
|
123
|
+
readonly METRIC: "metric";
|
|
124
|
+
}>) => void;
|
|
125
|
+
}, "showFlyingMenu" | "flyingMenuTriggeredByClick" | "isInIframe" | "isViewOnly" | "lastRequestedId" | "currentViewMode" | "isShadowOnStage" | "measurementUnit" | "measurementSystem" | "isTextInputFocused" | "isCameraIdle" | "currentEmbeddedInfos" | "isDraggingElement" | "loadedConfigFromIdb" | "notificationVisible" | "configuratorHintClosed">, Pick<{
|
|
126
|
+
showFlyingMenu: import('vue').Ref<boolean, boolean>;
|
|
127
|
+
flyingMenuTriggeredByClick: import('vue').Ref<boolean, boolean>;
|
|
128
|
+
isInIframe: import('vue').Ref<boolean, boolean>;
|
|
129
|
+
isViewOnly: import('vue').Ref<boolean, boolean>;
|
|
130
|
+
lastRequestedId: import('vue').Ref<string, string>;
|
|
131
|
+
currentViewMode: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
132
|
+
readonly '2D': "2d";
|
|
133
|
+
readonly '3D': "3d";
|
|
134
|
+
readonly FIRST_PERSON: "fp";
|
|
135
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
136
|
+
readonly '2D': "2d";
|
|
137
|
+
readonly '3D': "3d";
|
|
138
|
+
readonly FIRST_PERSON: "fp";
|
|
139
|
+
}>>;
|
|
140
|
+
isShadowOnStage: import('vue').Ref<boolean, boolean>;
|
|
141
|
+
measurementUnit: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
142
|
+
readonly FEET: "feet";
|
|
143
|
+
readonly INCH_FEET: "inchfeet";
|
|
144
|
+
readonly INCH: "inch";
|
|
145
|
+
readonly CM: "cm";
|
|
146
|
+
readonly MM: "mm";
|
|
147
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
148
|
+
readonly FEET: "feet";
|
|
149
|
+
readonly INCH_FEET: "inchfeet";
|
|
150
|
+
readonly INCH: "inch";
|
|
151
|
+
readonly CM: "cm";
|
|
152
|
+
readonly MM: "mm";
|
|
153
|
+
}>>;
|
|
154
|
+
measurementSystem: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
155
|
+
readonly IMPERIAL: "imperial";
|
|
156
|
+
readonly METRIC: "metric";
|
|
157
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
158
|
+
readonly IMPERIAL: "imperial";
|
|
159
|
+
readonly METRIC: "metric";
|
|
160
|
+
}>>;
|
|
161
|
+
isTextInputFocused: import('vue').Ref<boolean, boolean>;
|
|
162
|
+
isCameraIdle: import('vue').Ref<boolean, boolean>;
|
|
163
|
+
currentEmbeddedInfos: import('vue').Ref<{
|
|
164
|
+
type: import('@roomle/web-sdk/lib/definitions/common-core/src/types').Enumify<{
|
|
165
|
+
readonly PARAMETER: "parameter";
|
|
166
|
+
readonly PARAMETER_VALUE: "paramValue";
|
|
167
|
+
readonly MATERIAL: "material";
|
|
168
|
+
readonly COMPONENT: "component";
|
|
169
|
+
readonly ITEM: "item";
|
|
170
|
+
}>;
|
|
171
|
+
key: string;
|
|
172
|
+
parentIdFilter: string;
|
|
173
|
+
catalog: string;
|
|
174
|
+
tooltip: {
|
|
175
|
+
[key: string]: string;
|
|
176
|
+
};
|
|
177
|
+
fullInfo: {
|
|
178
|
+
type: string;
|
|
179
|
+
url: {
|
|
180
|
+
[key: string]: string;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
}[], import('@roomle/web-sdk/lib/definitions/typings/rapi-types').AdditionalInfo[] | {
|
|
184
|
+
type: import('@roomle/web-sdk/lib/definitions/common-core/src/types').Enumify<{
|
|
185
|
+
readonly PARAMETER: "parameter";
|
|
186
|
+
readonly PARAMETER_VALUE: "paramValue";
|
|
187
|
+
readonly MATERIAL: "material";
|
|
188
|
+
readonly COMPONENT: "component";
|
|
189
|
+
readonly ITEM: "item";
|
|
190
|
+
}>;
|
|
191
|
+
key: string;
|
|
192
|
+
parentIdFilter: string;
|
|
193
|
+
catalog: string;
|
|
194
|
+
tooltip: {
|
|
195
|
+
[key: string]: string;
|
|
196
|
+
};
|
|
197
|
+
fullInfo: {
|
|
198
|
+
type: string;
|
|
199
|
+
url: {
|
|
200
|
+
[key: string]: string;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
}[]>;
|
|
204
|
+
isDraggingElement: import('vue').Ref<boolean, boolean>;
|
|
205
|
+
loadedConfigFromIdb: import('vue').Ref<boolean, boolean>;
|
|
206
|
+
notificationVisible: import('vue').Ref<boolean, boolean>;
|
|
207
|
+
configuratorHintClosed: import('vue').Ref<boolean, boolean>;
|
|
208
|
+
is2d: import('vue').ComputedRef<boolean>;
|
|
209
|
+
is3d: import('vue').ComputedRef<boolean>;
|
|
210
|
+
isFp: import('vue').ComputedRef<boolean>;
|
|
211
|
+
setPiniaVuexReference: (store: Store<StoreState>) => void;
|
|
212
|
+
setViewMode: ({ isDesktop, isLandscape, }: {
|
|
213
|
+
isDesktop: boolean;
|
|
214
|
+
isLandscape: boolean;
|
|
215
|
+
}) => void;
|
|
216
|
+
setFlyingMenuVisibility: (payload: {
|
|
217
|
+
show: boolean;
|
|
218
|
+
flyingMenuTriggeredByClick: boolean;
|
|
219
|
+
}) => void;
|
|
220
|
+
setDraggingElementStatus: (isDragging: boolean) => void;
|
|
221
|
+
setMeasurementUnit: (unit: import('../../../../common/utils/types').Enumify<{
|
|
222
|
+
readonly FEET: "feet";
|
|
223
|
+
readonly INCH_FEET: "inchfeet";
|
|
224
|
+
readonly INCH: "inch";
|
|
225
|
+
readonly CM: "cm";
|
|
226
|
+
readonly MM: "mm";
|
|
227
|
+
}>) => void;
|
|
228
|
+
setMeasurementSystem: (system: import('../../../../common/utils/types').Enumify<{
|
|
229
|
+
readonly IMPERIAL: "imperial";
|
|
230
|
+
readonly METRIC: "metric";
|
|
231
|
+
}>) => void;
|
|
232
|
+
}, "is2d" | "is3d" | "isFp">, Pick<{
|
|
233
|
+
showFlyingMenu: import('vue').Ref<boolean, boolean>;
|
|
234
|
+
flyingMenuTriggeredByClick: import('vue').Ref<boolean, boolean>;
|
|
235
|
+
isInIframe: import('vue').Ref<boolean, boolean>;
|
|
236
|
+
isViewOnly: import('vue').Ref<boolean, boolean>;
|
|
237
|
+
lastRequestedId: import('vue').Ref<string, string>;
|
|
238
|
+
currentViewMode: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
239
|
+
readonly '2D': "2d";
|
|
240
|
+
readonly '3D': "3d";
|
|
241
|
+
readonly FIRST_PERSON: "fp";
|
|
242
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
243
|
+
readonly '2D': "2d";
|
|
244
|
+
readonly '3D': "3d";
|
|
245
|
+
readonly FIRST_PERSON: "fp";
|
|
246
|
+
}>>;
|
|
247
|
+
isShadowOnStage: import('vue').Ref<boolean, boolean>;
|
|
248
|
+
measurementUnit: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
249
|
+
readonly FEET: "feet";
|
|
250
|
+
readonly INCH_FEET: "inchfeet";
|
|
251
|
+
readonly INCH: "inch";
|
|
252
|
+
readonly CM: "cm";
|
|
253
|
+
readonly MM: "mm";
|
|
254
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
255
|
+
readonly FEET: "feet";
|
|
256
|
+
readonly INCH_FEET: "inchfeet";
|
|
257
|
+
readonly INCH: "inch";
|
|
258
|
+
readonly CM: "cm";
|
|
259
|
+
readonly MM: "mm";
|
|
260
|
+
}>>;
|
|
261
|
+
measurementSystem: import('vue').Ref<import('../../../../common/utils/types').Enumify<{
|
|
262
|
+
readonly IMPERIAL: "imperial";
|
|
263
|
+
readonly METRIC: "metric";
|
|
264
|
+
}>, import('../../../../common/utils/types').Enumify<{
|
|
265
|
+
readonly IMPERIAL: "imperial";
|
|
266
|
+
readonly METRIC: "metric";
|
|
267
|
+
}>>;
|
|
268
|
+
isTextInputFocused: import('vue').Ref<boolean, boolean>;
|
|
269
|
+
isCameraIdle: import('vue').Ref<boolean, boolean>;
|
|
270
|
+
currentEmbeddedInfos: import('vue').Ref<{
|
|
271
|
+
type: import('@roomle/web-sdk/lib/definitions/common-core/src/types').Enumify<{
|
|
272
|
+
readonly PARAMETER: "parameter";
|
|
273
|
+
readonly PARAMETER_VALUE: "paramValue";
|
|
274
|
+
readonly MATERIAL: "material";
|
|
275
|
+
readonly COMPONENT: "component";
|
|
276
|
+
readonly ITEM: "item";
|
|
277
|
+
}>;
|
|
278
|
+
key: string;
|
|
279
|
+
parentIdFilter: string;
|
|
280
|
+
catalog: string;
|
|
281
|
+
tooltip: {
|
|
282
|
+
[key: string]: string;
|
|
283
|
+
};
|
|
284
|
+
fullInfo: {
|
|
285
|
+
type: string;
|
|
286
|
+
url: {
|
|
287
|
+
[key: string]: string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
}[], import('@roomle/web-sdk/lib/definitions/typings/rapi-types').AdditionalInfo[] | {
|
|
291
|
+
type: import('@roomle/web-sdk/lib/definitions/common-core/src/types').Enumify<{
|
|
292
|
+
readonly PARAMETER: "parameter";
|
|
293
|
+
readonly PARAMETER_VALUE: "paramValue";
|
|
294
|
+
readonly MATERIAL: "material";
|
|
295
|
+
readonly COMPONENT: "component";
|
|
296
|
+
readonly ITEM: "item";
|
|
297
|
+
}>;
|
|
298
|
+
key: string;
|
|
299
|
+
parentIdFilter: string;
|
|
300
|
+
catalog: string;
|
|
301
|
+
tooltip: {
|
|
302
|
+
[key: string]: string;
|
|
303
|
+
};
|
|
304
|
+
fullInfo: {
|
|
305
|
+
type: string;
|
|
306
|
+
url: {
|
|
307
|
+
[key: string]: string;
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
}[]>;
|
|
311
|
+
isDraggingElement: import('vue').Ref<boolean, boolean>;
|
|
312
|
+
loadedConfigFromIdb: import('vue').Ref<boolean, boolean>;
|
|
313
|
+
notificationVisible: import('vue').Ref<boolean, boolean>;
|
|
314
|
+
configuratorHintClosed: import('vue').Ref<boolean, boolean>;
|
|
315
|
+
is2d: import('vue').ComputedRef<boolean>;
|
|
316
|
+
is3d: import('vue').ComputedRef<boolean>;
|
|
317
|
+
isFp: import('vue').ComputedRef<boolean>;
|
|
318
|
+
setPiniaVuexReference: (store: Store<StoreState>) => void;
|
|
319
|
+
setViewMode: ({ isDesktop, isLandscape, }: {
|
|
320
|
+
isDesktop: boolean;
|
|
321
|
+
isLandscape: boolean;
|
|
322
|
+
}) => void;
|
|
323
|
+
setFlyingMenuVisibility: (payload: {
|
|
324
|
+
show: boolean;
|
|
325
|
+
flyingMenuTriggeredByClick: boolean;
|
|
326
|
+
}) => void;
|
|
327
|
+
setDraggingElementStatus: (isDragging: boolean) => void;
|
|
328
|
+
setMeasurementUnit: (unit: import('../../../../common/utils/types').Enumify<{
|
|
329
|
+
readonly FEET: "feet";
|
|
330
|
+
readonly INCH_FEET: "inchfeet";
|
|
331
|
+
readonly INCH: "inch";
|
|
332
|
+
readonly CM: "cm";
|
|
333
|
+
readonly MM: "mm";
|
|
334
|
+
}>) => void;
|
|
335
|
+
setMeasurementSystem: (system: import('../../../../common/utils/types').Enumify<{
|
|
336
|
+
readonly IMPERIAL: "imperial";
|
|
337
|
+
readonly METRIC: "metric";
|
|
338
|
+
}>) => void;
|
|
339
|
+
}, "setPiniaVuexReference" | "setViewMode" | "setFlyingMenuVisibility" | "setDraggingElementStatus" | "setMeasurementUnit" | "setMeasurementSystem">>;
|
|
17
340
|
valueFormatted: import('vue').ComputedRef<{
|
|
18
341
|
label: string;
|
|
19
342
|
}>;
|