@roomle/embedding-lib 5.13.0-alpha.1 → 5.13.0-alpha.3
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 +4 -22
- package/package.json +2 -2
- package/packages/common/src/utils/init-data.d.ts +1 -0
- package/packages/embedding-lib/src/connector.d.ts +1 -1
- package/packages/embedding-lib/src/embedding-lib.d.ts +1 -1
- package/roomle-embedding-lib.es.js +8 -7
- package/roomle-embedding-lib.es.min.js +1 -1
- package/roomle-embedding-lib.umd.js +1 -1
- package/roomle-embedding-lib.umd.min.js +2 -2
- package/src/common/components/collection-view/-utils/collection-view-dynamic-components.d.ts +86 -965
- package/src/common/components/overlays/PartList.vue.d.ts +3 -4
- package/src/common/components/overlays/part-list/partlist-setup.d.ts +3 -4
- package/src/common/composables/use-configurator-api.d.ts +2 -2
- package/src/common/composables/use-core-instances.d.ts +2 -2
- package/src/common/composables/use-event-emitter-listener.d.ts +2 -0
- package/src/common/composables/use-open-close-anim.d.ts +9 -0
- package/src/common/composables/use-static-item-parameters.d.ts +2 -2
- package/src/common/utils/helper.d.ts +6 -7
- package/src/common/utils/parameters.d.ts +2 -2
- package/src/common/utils/types.d.ts +9 -1
- package/src/common/utils/ui-actions.d.ts +2 -3
- package/src/configurator/business-logic/roomle-sdk-wrapper.d.ts +3 -4
- package/src/configurator/business-logic/sdk-connector-configurator.d.ts +3 -4
- package/src/configurator/business-logic/sdk-connector.d.ts +7 -8
- package/src/configurator/components/grid-view/-utils/ExpandedView.vue.d.ts +2 -2
- package/src/configurator/components/grid-view/-utils/GridViewHelper.d.ts +2 -2
- package/src/configurator/components/grid-view/GridView.vue.d.ts +25 -319
- package/src/configurator/components/parameters/types/MaterialParameter.vue.d.ts +27 -320
- package/src/configurator/components/parameters/types/ProductVariant.vue.d.ts +27 -320
- package/src/configurator/components/parameters/types/ThumbnailsParameter.vue.d.ts +27 -320
- package/src/configurator/embedding/exposed-api.d.ts +2 -4
- package/src/configurator/embedding/exposed-callbacks.d.ts +2 -1
- package/src/configurator/embedding/helper.d.ts +4 -3
- package/src/configurator/embedding/types.d.ts +5 -0
- package/src/planner/business-logic/sdk-connector-planner.d.ts +5 -5
- package/src/planner/components/ObjectList.vue.d.ts +4 -2
- package/src/planner/components/measurements/MeasurementDisplayComponent.vue.d.ts +4 -0
- package/src/planner/components/measurements/ShowWallAtticMeasurements.vue.d.ts +8 -0
- package/src/planner/components/measurements/utils/AtticLabel.vue.d.ts +24 -0
- package/src/planner/components/measurements/utils/AtticLine.vue.d.ts +26 -0
- package/src/planner/components/overlays/ProductList.vue.d.ts +2 -2
- package/src/planner/components/overlays/ProductSettings.vue.d.ts +3 -4
- package/src/planner/components/overlays/product-list/ProductListEntry.vue.d.ts +2 -2
- package/src/planner/components/overlays/product-list/ProductListType.vue.d.ts +2 -2
- package/src/planner/components/overlays/product-settings/ProductPositions.vue.d.ts +3 -3
- package/src/planner/components/overlays/product-settings/ProductRotation.vue.d.ts +3 -3
- package/src/planner/components/overlays/product-settings/ProductSettingsInfos.vue.d.ts +3 -3
- package/src/planner/components/overlays/product-settings/ProductSize.vue.d.ts +3 -3
- package/src/planner/components/overlays/product-settings/ProductXYZChanger.vue.d.ts +3 -3
- package/src/planner/components/overlays/rooms/ConstructionVariants.vue.d.ts +28 -321
- package/src/planner/components/overlays/rooms/DoorParametersSetting.vue.d.ts +33 -326
- package/src/planner/components/overlays/rooms/ElementLengthScaling.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/FloorColor.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/RoomGeneralSettings.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/RoomsList.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/SlopingRoof.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/SlopingRoofDirection.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/WallGeneralSettings.vue.d.ts +2 -2
- package/src/planner/components/overlays/rooms/WindowParametersSetting.vue.d.ts +3 -4
- package/src/planner/components/utils/AssureConfiguratorHandlers.vue.d.ts +1 -1
- package/src/planner/components/utils/AssureSdkHandlers.vue.d.ts +1 -1
- package/src/planner/utils/planner-sidebar.d.ts +2 -2
|
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
parameter: PropType<UiKernelParameter>;
|
|
8
8
|
isExpanded: BooleanConstructor;
|
|
9
9
|
onExpand: {
|
|
10
|
-
type:
|
|
10
|
+
type: PropType<(_payload: MouseEvent) => void>;
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
13
|
onCollapse: {
|
|
@@ -30,7 +30,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
30
|
parameter: PropType<UiKernelParameter>;
|
|
31
31
|
isExpanded: BooleanConstructor;
|
|
32
32
|
onExpand: {
|
|
33
|
-
type:
|
|
33
|
+
type: PropType<(_payload: MouseEvent) => void>;
|
|
34
34
|
required: true;
|
|
35
35
|
};
|
|
36
36
|
onCollapse: {
|
|
@@ -45,325 +45,32 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
45
|
isDesktop: boolean;
|
|
46
46
|
isExpanded: boolean;
|
|
47
47
|
}, {}, {
|
|
48
|
-
GridView: import('vue').DefineComponent<
|
|
49
|
-
isExpanded
|
|
50
|
-
onExpand:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
elements: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
61
|
-
selectedElement: {
|
|
62
|
-
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
63
|
-
default: any;
|
|
64
|
-
};
|
|
65
|
-
groups: {
|
|
66
|
-
type: PropType<GridViewGroup<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
67
|
-
required: true;
|
|
68
|
-
};
|
|
69
|
-
onCollapse: {
|
|
70
|
-
type: PropType<(_payload: MouseEvent) => void>;
|
|
71
|
-
};
|
|
72
|
-
state: {
|
|
73
|
-
type: PropType<import('../../../../common/store/collection-view-state').GridViewUiState>;
|
|
74
|
-
};
|
|
75
|
-
isDesktop: BooleanConstructor;
|
|
76
|
-
}>, {
|
|
77
|
-
onSelectWrapped: (...args: any) => void;
|
|
48
|
+
GridView: import('vue').DefineComponent<{
|
|
49
|
+
isExpanded?: boolean;
|
|
50
|
+
onExpand: (event: MouseEvent) => void;
|
|
51
|
+
onSelect: (possibleChild: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>;
|
|
52
|
+
onDragStart?: (gridViewElement: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => Promise<void>;
|
|
53
|
+
onDragEnd?: (gridViewElement: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => void;
|
|
54
|
+
elements: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
55
|
+
selectedElement?: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
56
|
+
groups: GridViewGroup<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
57
|
+
onCollapse?: (mouseEvent: MouseEvent) => void;
|
|
58
|
+
state?: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
59
|
+
isDesktop?: boolean;
|
|
78
60
|
}, {
|
|
79
61
|
currentTouch: import('../../../../../packages/common/src/utils/touch-drag').TouchDrag<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
80
|
-
}, {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
type: FunctionConstructor;
|
|
94
|
-
required: true;
|
|
95
|
-
};
|
|
96
|
-
onSelect: {
|
|
97
|
-
type: PropType<((..._args: any[]) => void) | ((..._args: any[]) => void)[]>;
|
|
98
|
-
required: true;
|
|
99
|
-
};
|
|
100
|
-
onDragStart: FunctionConstructor;
|
|
101
|
-
onDragEnd: FunctionConstructor;
|
|
102
|
-
elements: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
103
|
-
selectedElement: {
|
|
104
|
-
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
105
|
-
default: any;
|
|
106
|
-
};
|
|
107
|
-
groups: {
|
|
108
|
-
type: PropType<GridViewGroup<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
109
|
-
required: true;
|
|
110
|
-
};
|
|
111
|
-
onCollapse: {
|
|
112
|
-
type: PropType<(_payload: MouseEvent) => void>;
|
|
113
|
-
};
|
|
114
|
-
state: {
|
|
115
|
-
type: PropType<import('../../../../common/store/collection-view-state').GridViewUiState>;
|
|
116
|
-
};
|
|
117
|
-
isDesktop: BooleanConstructor;
|
|
118
|
-
}>> & Readonly<{}>, {
|
|
119
|
-
isDesktop: boolean;
|
|
120
|
-
isExpanded: boolean;
|
|
121
|
-
selectedElement: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
122
|
-
}, {}, {
|
|
123
|
-
ExpandedView: import('vue').DefineComponent<{
|
|
124
|
-
groups: GridViewGroup<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
125
|
-
selectedElement: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
126
|
-
onSelect: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => void;
|
|
127
|
-
onDragStart: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent) => void;
|
|
128
|
-
onDragEnd: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent) => void;
|
|
129
|
-
onTouchStart: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: TouchEvent) => void;
|
|
130
|
-
onTouchEnd: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: TouchEvent) => void;
|
|
131
|
-
onTouchMove: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: TouchEvent) => void;
|
|
132
|
-
onCollapse?: (_payload: MouseEvent) => void;
|
|
133
|
-
state: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
134
|
-
isDesktop?: boolean;
|
|
135
|
-
isDraggable?: boolean;
|
|
136
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
137
|
-
groups: GridViewGroup<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
138
|
-
selectedElement: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
139
|
-
onSelect: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => void;
|
|
140
|
-
onDragStart: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent) => void;
|
|
141
|
-
onDragEnd: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent) => void;
|
|
142
|
-
onTouchStart: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: TouchEvent) => void;
|
|
143
|
-
onTouchEnd: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: TouchEvent) => void;
|
|
144
|
-
onTouchMove: (element: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: TouchEvent) => void;
|
|
145
|
-
onCollapse?: (_payload: MouseEvent) => void;
|
|
146
|
-
state: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
147
|
-
isDesktop?: boolean;
|
|
148
|
-
isDraggable?: boolean;
|
|
149
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
150
|
-
CollapsedView: {
|
|
151
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
152
|
-
elements: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
153
|
-
selectedElement: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
154
|
-
onExpand: FunctionConstructor;
|
|
155
|
-
onSelect: {
|
|
156
|
-
type: FunctionConstructor;
|
|
157
|
-
default: () => any;
|
|
158
|
-
};
|
|
159
|
-
onDragStart: {
|
|
160
|
-
type: FunctionConstructor;
|
|
161
|
-
default: () => any;
|
|
162
|
-
};
|
|
163
|
-
onDragEnd: {
|
|
164
|
-
type: FunctionConstructor;
|
|
165
|
-
default: () => any;
|
|
166
|
-
};
|
|
167
|
-
onTouchStart: {
|
|
168
|
-
type: FunctionConstructor;
|
|
169
|
-
default: () => any;
|
|
170
|
-
};
|
|
171
|
-
onTouchEnd: {
|
|
172
|
-
type: FunctionConstructor;
|
|
173
|
-
default: () => any;
|
|
174
|
-
};
|
|
175
|
-
onTouchMove: {
|
|
176
|
-
type: FunctionConstructor;
|
|
177
|
-
default: () => any;
|
|
178
|
-
};
|
|
179
|
-
showAllElements: BooleanConstructor;
|
|
180
|
-
isDesktop: BooleanConstructor;
|
|
181
|
-
isDraggable: BooleanConstructor;
|
|
182
|
-
isScrolling: BooleanConstructor;
|
|
183
|
-
state: {
|
|
184
|
-
type: PropType<import('../../../../common/store/collection-view-state').GridViewUiState>;
|
|
185
|
-
default: () => {
|
|
186
|
-
filter: any[];
|
|
187
|
-
search: any;
|
|
188
|
-
userInitiatedSearch: boolean;
|
|
189
|
-
viewType: import('../../../../common/store/collection-view-state').ViewTypeState;
|
|
190
|
-
};
|
|
191
|
-
};
|
|
192
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
193
|
-
elements: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
194
|
-
selectedElement: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
195
|
-
onExpand: FunctionConstructor;
|
|
196
|
-
onSelect: {
|
|
197
|
-
type: FunctionConstructor;
|
|
198
|
-
default: () => any;
|
|
199
|
-
};
|
|
200
|
-
onDragStart: {
|
|
201
|
-
type: FunctionConstructor;
|
|
202
|
-
default: () => any;
|
|
203
|
-
};
|
|
204
|
-
onDragEnd: {
|
|
205
|
-
type: FunctionConstructor;
|
|
206
|
-
default: () => any;
|
|
207
|
-
};
|
|
208
|
-
onTouchStart: {
|
|
209
|
-
type: FunctionConstructor;
|
|
210
|
-
default: () => any;
|
|
211
|
-
};
|
|
212
|
-
onTouchEnd: {
|
|
213
|
-
type: FunctionConstructor;
|
|
214
|
-
default: () => any;
|
|
215
|
-
};
|
|
216
|
-
onTouchMove: {
|
|
217
|
-
type: FunctionConstructor;
|
|
218
|
-
default: () => any;
|
|
219
|
-
};
|
|
220
|
-
showAllElements: BooleanConstructor;
|
|
221
|
-
isDesktop: BooleanConstructor;
|
|
222
|
-
isDraggable: BooleanConstructor;
|
|
223
|
-
isScrolling: BooleanConstructor;
|
|
224
|
-
state: {
|
|
225
|
-
type: PropType<import('../../../../common/store/collection-view-state').GridViewUiState>;
|
|
226
|
-
default: () => {
|
|
227
|
-
filter: any[];
|
|
228
|
-
search: any;
|
|
229
|
-
userInitiatedSearch: boolean;
|
|
230
|
-
viewType: import('../../../../common/store/collection-view-state').ViewTypeState;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
}>> & Readonly<{}>, {
|
|
234
|
-
state: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
235
|
-
isDesktop: boolean;
|
|
236
|
-
onSelect: Function;
|
|
237
|
-
onDragStart: Function;
|
|
238
|
-
onDragEnd: Function;
|
|
239
|
-
onTouchStart: Function;
|
|
240
|
-
onTouchEnd: Function;
|
|
241
|
-
onTouchMove: Function;
|
|
242
|
-
isDraggable: boolean;
|
|
243
|
-
showAllElements: boolean;
|
|
244
|
-
isScrolling: boolean;
|
|
245
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
246
|
-
P: {};
|
|
247
|
-
B: {};
|
|
248
|
-
D: {};
|
|
249
|
-
C: {};
|
|
250
|
-
M: {};
|
|
251
|
-
Defaults: {};
|
|
252
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
253
|
-
elements: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
254
|
-
selectedElement: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
255
|
-
onExpand: FunctionConstructor;
|
|
256
|
-
onSelect: {
|
|
257
|
-
type: FunctionConstructor;
|
|
258
|
-
default: () => any;
|
|
259
|
-
};
|
|
260
|
-
onDragStart: {
|
|
261
|
-
type: FunctionConstructor;
|
|
262
|
-
default: () => any;
|
|
263
|
-
};
|
|
264
|
-
onDragEnd: {
|
|
265
|
-
type: FunctionConstructor;
|
|
266
|
-
default: () => any;
|
|
267
|
-
};
|
|
268
|
-
onTouchStart: {
|
|
269
|
-
type: FunctionConstructor;
|
|
270
|
-
default: () => any;
|
|
271
|
-
};
|
|
272
|
-
onTouchEnd: {
|
|
273
|
-
type: FunctionConstructor;
|
|
274
|
-
default: () => any;
|
|
275
|
-
};
|
|
276
|
-
onTouchMove: {
|
|
277
|
-
type: FunctionConstructor;
|
|
278
|
-
default: () => any;
|
|
279
|
-
};
|
|
280
|
-
showAllElements: BooleanConstructor;
|
|
281
|
-
isDesktop: BooleanConstructor;
|
|
282
|
-
isDraggable: BooleanConstructor;
|
|
283
|
-
isScrolling: BooleanConstructor;
|
|
284
|
-
state: {
|
|
285
|
-
type: PropType<import('../../../../common/store/collection-view-state').GridViewUiState>;
|
|
286
|
-
default: () => {
|
|
287
|
-
filter: any[];
|
|
288
|
-
search: any;
|
|
289
|
-
userInitiatedSearch: boolean;
|
|
290
|
-
viewType: import('../../../../common/store/collection-view-state').ViewTypeState;
|
|
291
|
-
};
|
|
292
|
-
};
|
|
293
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
294
|
-
state: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
295
|
-
isDesktop: boolean;
|
|
296
|
-
onSelect: Function;
|
|
297
|
-
onDragStart: Function;
|
|
298
|
-
onDragEnd: Function;
|
|
299
|
-
onTouchStart: Function;
|
|
300
|
-
onTouchEnd: Function;
|
|
301
|
-
onTouchMove: Function;
|
|
302
|
-
isDraggable: boolean;
|
|
303
|
-
showAllElements: boolean;
|
|
304
|
-
isScrolling: boolean;
|
|
305
|
-
}>;
|
|
306
|
-
__isFragment?: never;
|
|
307
|
-
__isTeleport?: never;
|
|
308
|
-
__isSuspense?: never;
|
|
309
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
310
|
-
elements: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[]>;
|
|
311
|
-
selectedElement: PropType<GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
312
|
-
onExpand: FunctionConstructor;
|
|
313
|
-
onSelect: {
|
|
314
|
-
type: FunctionConstructor;
|
|
315
|
-
default: () => any;
|
|
316
|
-
};
|
|
317
|
-
onDragStart: {
|
|
318
|
-
type: FunctionConstructor;
|
|
319
|
-
default: () => any;
|
|
320
|
-
};
|
|
321
|
-
onDragEnd: {
|
|
322
|
-
type: FunctionConstructor;
|
|
323
|
-
default: () => any;
|
|
324
|
-
};
|
|
325
|
-
onTouchStart: {
|
|
326
|
-
type: FunctionConstructor;
|
|
327
|
-
default: () => any;
|
|
328
|
-
};
|
|
329
|
-
onTouchEnd: {
|
|
330
|
-
type: FunctionConstructor;
|
|
331
|
-
default: () => any;
|
|
332
|
-
};
|
|
333
|
-
onTouchMove: {
|
|
334
|
-
type: FunctionConstructor;
|
|
335
|
-
default: () => any;
|
|
336
|
-
};
|
|
337
|
-
showAllElements: BooleanConstructor;
|
|
338
|
-
isDesktop: BooleanConstructor;
|
|
339
|
-
isDraggable: BooleanConstructor;
|
|
340
|
-
isScrolling: BooleanConstructor;
|
|
341
|
-
state: {
|
|
342
|
-
type: PropType<import('../../../../common/store/collection-view-state').GridViewUiState>;
|
|
343
|
-
default: () => {
|
|
344
|
-
filter: any[];
|
|
345
|
-
search: any;
|
|
346
|
-
userInitiatedSearch: boolean;
|
|
347
|
-
viewType: import('../../../../common/store/collection-view-state').ViewTypeState;
|
|
348
|
-
};
|
|
349
|
-
};
|
|
350
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
351
|
-
state: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
352
|
-
isDesktop: boolean;
|
|
353
|
-
onSelect: Function;
|
|
354
|
-
onDragStart: Function;
|
|
355
|
-
onDragEnd: Function;
|
|
356
|
-
onTouchStart: Function;
|
|
357
|
-
onTouchEnd: Function;
|
|
358
|
-
onTouchMove: Function;
|
|
359
|
-
isDraggable: boolean;
|
|
360
|
-
showAllElements: boolean;
|
|
361
|
-
isScrolling: boolean;
|
|
362
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
363
|
-
$slots: {
|
|
364
|
-
aux?(_: {}): any;
|
|
365
|
-
};
|
|
366
|
-
});
|
|
367
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
62
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
63
|
+
isExpanded?: boolean;
|
|
64
|
+
onExpand: (event: MouseEvent) => void;
|
|
65
|
+
onSelect: (possibleChild: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>;
|
|
66
|
+
onDragStart?: (gridViewElement: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => Promise<void>;
|
|
67
|
+
onDragEnd?: (gridViewElement: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => void;
|
|
68
|
+
elements: GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
69
|
+
selectedElement?: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
70
|
+
groups: GridViewGroup<import('../../grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
71
|
+
onCollapse?: (mouseEvent: MouseEvent) => void;
|
|
72
|
+
state?: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
73
|
+
isDesktop?: boolean;
|
|
74
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
368
75
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
369
76
|
export default _default;
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
import { default as RoomleConfigurator } from '@roomle/web-sdk/lib/definitions/configurator-core/src/roomle-configurator';
|
|
2
1
|
import { ExposedCallbacks } from './exposed-callbacks';
|
|
3
2
|
import { LoadResponse, SdkConnector } from '../business-logic/sdk-connector';
|
|
4
3
|
import { MessageHandler } from '../../../packages/common/src/utils/message-handler';
|
|
5
4
|
import { Store } from 'vuex';
|
|
6
5
|
import { StoreState } from '../../common/store';
|
|
7
|
-
import { Nullable } from '../../common/utils/types';
|
|
6
|
+
import { Nullable, RoomleConfiguratorType, RoomlePlannerWithExtObjs } from '../../common/utils/types';
|
|
8
7
|
import { Analytics } from '../../common/plugins/analytics';
|
|
9
8
|
import { default as RoomleGLBViewer } from '@roomle/web-sdk/lib/definitions/glb-viewer-core/src/roomle-glb-viewer';
|
|
10
9
|
import { GlobalCallback } from '@roomle/web-sdk/lib/definitions/common-core/src/services/global-callback';
|
|
11
10
|
import { Position3 } from '@roomle/web-sdk/lib/definitions/common-core/src/common-interfaces';
|
|
12
|
-
import { default as RoomlePlanner } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner';
|
|
13
11
|
import { KernelPlanObject } from '@roomle/web-sdk/lib/definitions/typings/kernel';
|
|
14
12
|
import { Translator } from '../../common/composables/use-intl';
|
|
15
13
|
import { Libs } from '../plugins/libs-plugin';
|
|
@@ -33,7 +31,7 @@ export declare class ExposedApi {
|
|
|
33
31
|
private _messageHandlers;
|
|
34
32
|
private _eventEmitter;
|
|
35
33
|
private _dragHandler;
|
|
36
|
-
constructor(sdkConnector: SdkConnector, mainMessageHandlers: Nullable<MessageHandler>, sdk:
|
|
34
|
+
constructor(sdkConnector: SdkConnector, mainMessageHandlers: Nullable<MessageHandler>, sdk: RoomleConfiguratorType | RoomleGLBViewer | RoomlePlannerWithExtObjs, exposedCallbacks: ExposedCallbacks, store: Store<StoreState>, analytics: Analytics, globalCallback: GlobalCallback, intl: Translator, libs: Libs, eventEmitter: EventEmitter);
|
|
37
35
|
private _getMethodsAndCallbacks;
|
|
38
36
|
get callbacks(): ExposedCallbacks;
|
|
39
37
|
/**
|
|
@@ -3,6 +3,7 @@ import { KernelPartList, UiPlanObject } from '@roomle/web-sdk/lib/definitions/ty
|
|
|
3
3
|
import { RapiConfigurationEnhanced } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
4
4
|
import { ButtonCallbackPayloads, CustomViewCallbackInfo } from './types';
|
|
5
5
|
import { Nullable, SaveDraftPayload } from '../../common/utils/types';
|
|
6
|
+
import { ExternalConfiguration } from '@roomle/web-sdk/lib/definitions/typings/external-objects';
|
|
6
7
|
|
|
7
8
|
export interface Price {
|
|
8
9
|
currencySymbol: Nullable<string>;
|
|
@@ -22,7 +23,7 @@ export declare class ExposedCallbacks {
|
|
|
22
23
|
* @param labels the label of the catalog and the furniture system
|
|
23
24
|
* @param configuration the data returned from the Roomle backend
|
|
24
25
|
*/
|
|
25
|
-
onRequestProduct: (configurationId: string, image: Base64Image, partList: KernelPartList, price: Price, labels: Labels, configuration: RapiConfigurationEnhanced) => void;
|
|
26
|
+
onRequestProduct: (configurationId: string, image: Base64Image, partList: KernelPartList, price: Price, labels: Labels, configuration: RapiConfigurationEnhanced | ExternalConfiguration) => void;
|
|
26
27
|
/**
|
|
27
28
|
* fullList fullList (needed for price calculation) of the current configuration
|
|
28
29
|
* @param partList the part list with all details, grouped, etc
|
|
@@ -11,19 +11,20 @@ import { Ref } from 'vue';
|
|
|
11
11
|
import { Libs } from '../plugins/libs-plugin';
|
|
12
12
|
import { Translator } from '../../common/composables/use-intl';
|
|
13
13
|
import { SelectionPayload } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner-ui-callback';
|
|
14
|
+
import { ExternalConfiguration } from '@roomle/web-sdk/lib/definitions/typings/external-objects';
|
|
14
15
|
|
|
15
16
|
export declare const startConfiguring: (store: Store<StoreState>, exposedCallbacks: ExposedCallbacks) => void;
|
|
16
17
|
export declare const resetCollectionViewStates: (store: Store<StoreState>) => void;
|
|
17
18
|
export declare const stopConfiguring: (store: Store<StoreState>, sdkConnector: SdkConnector, embeddingCallbacks?: ExposedCallbacks) => Promise<void>;
|
|
18
19
|
export declare const triggerRequestProduct: (embeddingCallbacks: ExposedCallbacks, sdkConnector: SdkConnector, store: Store<StoreState>, analytics: Analytics) => Promise<void>;
|
|
19
|
-
export declare const sendSaveDraft: (sdkConnector: SdkConnector, store: Store<StoreState>, currentConfiguration: RapiConfigurationEnhanced | Nullable<RapiPlanSnapshotGetData | RapiPlan>) => Promise<import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiJson>;
|
|
20
|
+
export declare const sendSaveDraft: (sdkConnector: SdkConnector, store: Store<StoreState>, currentConfiguration: RapiConfigurationEnhanced | Nullable<RapiPlanSnapshotGetData | RapiPlan | ExternalConfiguration>) => Promise<import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiJson>;
|
|
20
21
|
export declare function handleSave(embeddingCallbacks: ExposedCallbacks, sdkConnector: SdkConnector, store: Store<StoreState>, analytics: Analytics, email?: string): Promise<SaveDraft>;
|
|
21
22
|
export declare const initializeConfiguration: (sdkConnector: SdkConnector, isPlanner: boolean, store: Store<StoreState>, email?: string, analytics?: Analytics, embeddingCallbacks?: ExposedCallbacks, skipSendCallback?: boolean) => Promise<{
|
|
22
|
-
configuration: RapiConfigurationEnhanced | RapiPlanSnapshotGetData | RapiPlan;
|
|
23
|
+
configuration: RapiConfigurationEnhanced | RapiPlanSnapshotGetData | RapiPlan | ExternalConfiguration;
|
|
23
24
|
image: string;
|
|
24
25
|
url: string;
|
|
25
26
|
}>;
|
|
26
|
-
export declare const generateUrl: (sdkConnector: SdkConnector, store: Store<StoreState>, currentConfiguration: Nullable<RapiPlan | RapiConfigurationEnhanced | RapiPlanSnapshotGetData>, isPlanner: boolean) => Promise<string>;
|
|
27
|
+
export declare const generateUrl: (sdkConnector: SdkConnector, store: Store<StoreState>, currentConfiguration: Nullable<RapiPlan | RapiConfigurationEnhanced | RapiPlanSnapshotGetData | ExternalConfiguration>, isPlanner: boolean) => Promise<string>;
|
|
27
28
|
export declare const triggerRequestPlan: (embeddingCallbacks: ExposedCallbacks, sdkConnector: SdkConnector, store: Store<StoreState>, analytics: Analytics) => Promise<void>;
|
|
28
29
|
export declare const getCurrentPerspectiveImage: (currentSelectedElement: Nullable<SelectionPayload>) => any;
|
|
29
30
|
export declare const printPartList: (partList: KernelPartList[], price: Nullable<string>, label: string, bounds: string, catalogLabel: Nullable<string>, sdkConnector: SdkConnector, store: Store<StoreState>, embeddingCallbacks: ExposedCallbacks, libs: Libs, intl: Translator, isGenerating: Ref<boolean>) => Promise<void>;
|
|
@@ -77,6 +77,11 @@ interface UiFeatureFlags extends FeatureFlags {
|
|
|
77
77
|
* @description ...
|
|
78
78
|
*/
|
|
79
79
|
prodmanager?: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* @hidden
|
|
82
|
+
* @description Enables the open/close animation button in the flying menu - RML-13533
|
|
83
|
+
*/
|
|
84
|
+
openCloseAnimation?: boolean;
|
|
80
85
|
}
|
|
81
86
|
export interface VariantsMap {
|
|
82
87
|
[key: string]: RapiId;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { Enumify, Nullable, PLAN_OBJECT_TYPES } from '../../common/utils/types';
|
|
1
|
+
import { Enumify, Nullable, RoomlePlannerWithExtObjs, PLAN_OBJECT_TYPES } from '../../common/utils/types';
|
|
2
2
|
import { Store } from 'vuex';
|
|
3
3
|
import { StoreState } from '../../common/store';
|
|
4
4
|
import { Analytics } from '../../common/plugins/analytics';
|
|
5
5
|
import { RoomleSdkWrapper } from '../../configurator/business-logic/roomle-sdk-wrapper';
|
|
6
6
|
import { UiInitData } from '../../configurator/embedding/types';
|
|
7
|
-
import { default as RoomlePlanner } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner';
|
|
8
7
|
import { PLAN_ELEMENT_CHANGE_TYPES, SelectionPayload } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner-ui-callback';
|
|
9
8
|
import { RapiConfigurationEnhanced, RapiId, RapiPlan, RapiPlanSnapshotGetData } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
10
9
|
import { CancelSelectionReasons } from '@roomle/web-sdk/lib/definitions/typings/planner';
|
|
@@ -13,6 +12,7 @@ import { default as PlanElementViewModel } from '@roomle/web-sdk/lib/definitions
|
|
|
13
12
|
import { RuntimeId } from '@roomle/web-sdk/lib/definitions/typings/kernel';
|
|
14
13
|
import { default as EventEmitter } from '../../common/business-logic/event-emitter';
|
|
15
14
|
import { SdkConnector } from '../../configurator/business-logic/sdk-connector';
|
|
15
|
+
import { ExternalConfiguration } from '@roomle/web-sdk/lib/definitions/typings/external-objects';
|
|
16
16
|
|
|
17
17
|
export declare const getConstructionWallAngle: (selectionElement: Nullable<PlanElementViewModel>) => Nullable<number>;
|
|
18
18
|
export declare class SdkConnectorPlanner extends Connector {
|
|
@@ -30,9 +30,9 @@ export declare class SdkConnectorPlanner extends Connector {
|
|
|
30
30
|
private _initData;
|
|
31
31
|
private _sdkConnector;
|
|
32
32
|
constructor(store: Store<StoreState>, analytics?: Nullable<Analytics>, eventEmitter?: Nullable<EventEmitter>, sdkConnector?: Nullable<SdkConnector>);
|
|
33
|
-
get api(): Promise<
|
|
33
|
+
get api(): Promise<RoomlePlannerWithExtObjs>;
|
|
34
34
|
init(sdkWrapper: RoomleSdkWrapper, element: HTMLElement, initData: UiInitData): Promise<void>;
|
|
35
|
-
initPlanner(planner:
|
|
35
|
+
initPlanner(planner: RoomlePlannerWithExtObjs): Promise<void>;
|
|
36
36
|
loadPlan(id: RapiId): Promise<void>;
|
|
37
37
|
loadPlanBasedOnObjectId(id: RapiId): Promise<RuntimeId>;
|
|
38
38
|
getObjects(): Promise<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPlanObject[]>;
|
|
@@ -40,7 +40,7 @@ export declare class SdkConnectorPlanner extends Connector {
|
|
|
40
40
|
onSelectionCancel(reason: CancelSelectionReasons): Promise<void>;
|
|
41
41
|
private _checkForVisibleDrawer;
|
|
42
42
|
saveCurrentPlan(): Promise<Nullable<RapiPlanSnapshotGetData | RapiPlan>>;
|
|
43
|
-
saveCurrentConfigurationInPlanSnapshot(configuration: RapiConfigurationEnhanced): Promise<Nullable<RapiPlanSnapshotGetData | RapiPlan>>;
|
|
43
|
+
saveCurrentConfigurationInPlanSnapshot(configuration: RapiConfigurationEnhanced | ExternalConfiguration): Promise<Nullable<RapiPlanSnapshotGetData | RapiPlan>>;
|
|
44
44
|
private _disableWallDrawingState;
|
|
45
45
|
private _enableWallDrawingState;
|
|
46
46
|
switch2D(): Promise<void>;
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { RapiTagForUi } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
2
2
|
import { CollectionViewUiState } from '../../common/store/collection-view-state';
|
|
3
|
+
import { CollectionViewElement } from '../../common/components/collection-view/-utils/types';
|
|
4
|
+
import { UiPossibleChildTag } from '@roomle/web-sdk/lib/definitions/typings/kernel';
|
|
3
5
|
|
|
4
6
|
declare const _default: import('vue').DefineComponent<{
|
|
5
|
-
|
|
7
|
+
element: CollectionViewElement<UiPossibleChildTag | RapiTagForUi>;
|
|
6
8
|
isExpanded?: boolean;
|
|
7
9
|
onExpand?: () => void;
|
|
8
10
|
onCollapse?: (_payload: MouseEvent) => void;
|
|
9
11
|
state: CollectionViewUiState;
|
|
10
12
|
isDesktop: boolean;
|
|
11
13
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
-
|
|
14
|
+
element: CollectionViewElement<UiPossibleChildTag | RapiTagForUi>;
|
|
13
15
|
isExpanded?: boolean;
|
|
14
16
|
onExpand?: () => void;
|
|
15
17
|
onCollapse?: (_payload: MouseEvent) => void;
|
|
@@ -14,6 +14,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
14
14
|
hasBubble?: boolean;
|
|
15
15
|
opaqueBubble?: boolean;
|
|
16
16
|
isLineBoundBox?: boolean;
|
|
17
|
+
hideArrows?: boolean;
|
|
18
|
+
greyBubbleNoOpacity?: boolean;
|
|
17
19
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
18
20
|
measurements: MeasurementType;
|
|
19
21
|
styleFactor: number;
|
|
@@ -23,6 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
23
25
|
hasBubble?: boolean;
|
|
24
26
|
opaqueBubble?: boolean;
|
|
25
27
|
isLineBoundBox?: boolean;
|
|
28
|
+
hideArrows?: boolean;
|
|
29
|
+
greyBubbleNoOpacity?: boolean;
|
|
26
30
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
27
31
|
default(_props: {
|
|
28
32
|
measurement: WallDimensionTransferable;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { WallDimensionTransferable } from '@roomle/web-sdk/lib/definitions/planner-core/src/view-model/wall-plan-element-view-model';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
wallDimension: WallDimensionTransferable;
|
|
5
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
6
|
+
wallDimension: WallDimensionTransferable;
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
position: {
|
|
3
|
+
x: number;
|
|
4
|
+
y: number;
|
|
5
|
+
};
|
|
6
|
+
label: string;
|
|
7
|
+
textRotation: number;
|
|
8
|
+
measurement?: any;
|
|
9
|
+
updateCallback?: (_val: number) => void;
|
|
10
|
+
disableTooltip?: boolean;
|
|
11
|
+
noHover?: boolean;
|
|
12
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
13
|
+
position: {
|
|
14
|
+
x: number;
|
|
15
|
+
y: number;
|
|
16
|
+
};
|
|
17
|
+
label: string;
|
|
18
|
+
textRotation: number;
|
|
19
|
+
measurement?: any;
|
|
20
|
+
updateCallback?: (_val: number) => void;
|
|
21
|
+
disableTooltip?: boolean;
|
|
22
|
+
noHover?: boolean;
|
|
23
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type LineCoordinates = {
|
|
2
|
+
x: number;
|
|
3
|
+
y: number;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<{
|
|
6
|
+
line: {
|
|
7
|
+
from: LineCoordinates;
|
|
8
|
+
to: LineCoordinates;
|
|
9
|
+
};
|
|
10
|
+
lineClass?: string;
|
|
11
|
+
sepratorMeasurements?: {
|
|
12
|
+
from: LineCoordinates;
|
|
13
|
+
to: LineCoordinates;
|
|
14
|
+
};
|
|
15
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
16
|
+
line: {
|
|
17
|
+
from: LineCoordinates;
|
|
18
|
+
to: LineCoordinates;
|
|
19
|
+
};
|
|
20
|
+
lineClass?: string;
|
|
21
|
+
sepratorMeasurements?: {
|
|
22
|
+
from: LineCoordinates;
|
|
23
|
+
to: LineCoordinates;
|
|
24
|
+
};
|
|
25
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
export default _default;
|
|
@@ -14,11 +14,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
14
14
|
onClose: (_action: BUTTON_ACTIONS, _reason: CloseReason) => Promise<void>;
|
|
15
15
|
resetScroll: () => void;
|
|
16
16
|
icToggleEvent: EventBus<ToggleCallback>;
|
|
17
|
-
api: RoomlePlanner
|
|
17
|
+
api: RoomlePlanner<readonly []>;
|
|
18
18
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
19
19
|
onClose: (_action: BUTTON_ACTIONS, _reason: CloseReason) => Promise<void>;
|
|
20
20
|
resetScroll: () => void;
|
|
21
21
|
icToggleEvent: EventBus<ToggleCallback>;
|
|
22
|
-
api: RoomlePlanner
|
|
22
|
+
api: RoomlePlanner<readonly []>;
|
|
23
23
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
export default _default;
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { default as RoomlePlanner } from '@roomle/web-sdk/lib/definitions/planner-core/src/roomle-planner';
|
|
2
1
|
import { BUTTON_ACTIONS } from '../../../configurator/store/ui-state';
|
|
3
|
-
import { CloseReason, ToggleCallback } from '../../../common/utils/types';
|
|
2
|
+
import { CloseReason, ToggleCallback, RoomlePlannerWithExtObjs } from '../../../common/utils/types';
|
|
4
3
|
|
|
5
4
|
declare const _default: import('vue').DefineComponent<{
|
|
6
5
|
onClose: (_action: BUTTON_ACTIONS, _reason: CloseReason) => void;
|
|
7
6
|
onToggleExpand?: ToggleCallback;
|
|
8
|
-
api:
|
|
7
|
+
api: RoomlePlannerWithExtObjs;
|
|
9
8
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
10
9
|
onClose: (_action: BUTTON_ACTIONS, _reason: CloseReason) => void;
|
|
11
10
|
onToggleExpand?: ToggleCallback;
|
|
12
|
-
api:
|
|
11
|
+
api: RoomlePlannerWithExtObjs;
|
|
13
12
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
13
|
export default _default;
|