@roomle/embedding-lib 5.22.0-alpha.1 → 5.22.0-alpha.2
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 -15
- package/package.json +2 -2
- package/src/common/components/collection-view/-utils/collection-view-dynamic-components.d.ts +0 -38
- package/src/common/components/collection-view/-utils/collection-view-props.d.ts +0 -5
- package/src/common/components/collection-view/CollectionView.vue.d.ts +0 -3
- package/src/common/components/collection-view/CollectionViewElement.vue.d.ts +2 -6
- package/src/common/components/drawer-layout/DrawerElement.vue.d.ts +0 -3
- package/src/common/components/drawer-layout/DrawerLayout.vue.d.ts +3 -10
- package/src/common/components/parameters/ColorParameter.vue.d.ts +0 -3
- package/src/common/store/collection-view-state.d.ts +3 -9
- package/src/common/store/index.d.ts +2 -2
- package/src/common/utils/helper.d.ts +2 -0
- package/src/configurator/components/addons/PossibleChildren.vue.d.ts +0 -3
- package/src/configurator/components/grid-view/-utils/CollapsedView.vue.d.ts +0 -20
- package/src/configurator/components/grid-view/-utils/ExpandedHeader.vue.d.ts +29 -8
- package/src/configurator/components/grid-view/-utils/ExpandedView.vue.d.ts +0 -3
- package/src/configurator/components/grid-view/-utils/GridViewElement.vue.d.ts +14 -179
- package/src/configurator/components/grid-view/-utils/GridViewMaterialElement.vue.d.ts +8 -39
- package/src/configurator/components/grid-view/-utils/GridViewThumbnailsElement.vue.d.ts +8 -56
- package/src/configurator/components/grid-view/GridView.vue.d.ts +0 -3
- package/src/configurator/components/parameters/types/MaterialParameter.vue.d.ts +0 -11
- package/src/configurator/components/parameters/types/ProductVariant.vue.d.ts +0 -11
- package/src/configurator/components/parameters/types/ThumbnailsParameter.vue.d.ts +0 -11
- package/src/configurator/components/utils/SearchInput.vue.d.ts +27 -8
- package/src/planner/components/ObjectList.vue.d.ts +0 -3
- package/src/planner/components/overlays/rooms/ConstructionVariants.vue.d.ts +17 -84
- package/src/planner/components/overlays/rooms/DoorParametersSetting.vue.d.ts +31 -115
- package/src/planner/components/overlays/rooms/RoomsList.vue.d.ts +0 -3
- package/src/planner/components/utils/ConfiguratorParameter.vue.d.ts +3 -3
|
@@ -1,89 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { GridViewElement, GridViewGroup } from '../../../../configurator/components/grid-view/-utils/GridViewHelper';
|
|
3
|
-
import { RapiItem, RapiTag } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
4
|
-
import { CollectionViewUiState } from '../../../../common/store/collection-view-state';
|
|
1
|
+
import { RapiTag } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
5
2
|
import { RoomlePlannerWithExtObjs } from '../../../../common/utils/types';
|
|
6
|
-
import { PlannerUiState } from '../../../store/planner-ui-state';
|
|
7
3
|
|
|
8
|
-
declare const _default: import('vue').DefineComponent<
|
|
9
|
-
groups:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
};
|
|
24
|
-
isDesktop: BooleanConstructor;
|
|
25
|
-
api: {
|
|
26
|
-
type: PropType<RoomlePlannerWithExtObjs>;
|
|
27
|
-
required: true;
|
|
28
|
-
};
|
|
29
|
-
}>, {
|
|
30
|
-
onSelect: (variant: GridViewElement) => Promise<void>;
|
|
31
|
-
}, {
|
|
32
|
-
isSwapping: boolean;
|
|
33
|
-
}, {
|
|
34
|
-
allElements(): GridViewElement<RapiItem>[];
|
|
35
|
-
normalizedGroups(): GridViewGroup<RapiItem>[];
|
|
36
|
-
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
-
groups: {
|
|
38
|
-
type: PropType<RapiTag[]>;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
|
-
isExpanded: BooleanConstructor;
|
|
42
|
-
onExpand: {
|
|
43
|
-
type: FunctionConstructor;
|
|
44
|
-
required: true;
|
|
45
|
-
};
|
|
46
|
-
onCollapse: {
|
|
47
|
-
type: PropType<(_payload: MouseEvent) => void>;
|
|
48
|
-
};
|
|
49
|
-
state: {
|
|
50
|
-
type: PropType<PlannerUiState | CollectionViewUiState>;
|
|
51
|
-
};
|
|
52
|
-
isDesktop: BooleanConstructor;
|
|
53
|
-
api: {
|
|
54
|
-
type: PropType<RoomlePlannerWithExtObjs>;
|
|
55
|
-
required: true;
|
|
56
|
-
};
|
|
57
|
-
}>> & Readonly<{}>, {
|
|
4
|
+
declare const _default: import('vue').DefineComponent<{
|
|
5
|
+
groups: RapiTag[];
|
|
6
|
+
isExpanded?: boolean;
|
|
7
|
+
onExpand: (event: MouseEvent) => void;
|
|
8
|
+
onCollapse?: (_payload: MouseEvent) => void;
|
|
9
|
+
isDesktop?: boolean;
|
|
10
|
+
api: RoomlePlannerWithExtObjs;
|
|
11
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
+
groups: RapiTag[];
|
|
13
|
+
isExpanded?: boolean;
|
|
14
|
+
onExpand: (event: MouseEvent) => void;
|
|
15
|
+
onCollapse?: (_payload: MouseEvent) => void;
|
|
16
|
+
isDesktop?: boolean;
|
|
17
|
+
api: RoomlePlannerWithExtObjs;
|
|
18
|
+
}> & Readonly<{}>, {
|
|
58
19
|
isDesktop: boolean;
|
|
59
20
|
isExpanded: boolean;
|
|
60
|
-
}, {}, {
|
|
61
|
-
GridView: import('vue').DefineComponent<{
|
|
62
|
-
isExpanded?: boolean;
|
|
63
|
-
onExpand: (event: MouseEvent) => void;
|
|
64
|
-
onSelect: ((...args: any[]) => any)[] | ((possibleChild: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>);
|
|
65
|
-
onDragStart?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => Promise<void>;
|
|
66
|
-
onDragEnd?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => void;
|
|
67
|
-
elements: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
68
|
-
selectedElement?: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
69
|
-
groups: GridViewGroup<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
70
|
-
onCollapse?: (mouseEvent: MouseEvent) => void;
|
|
71
|
-
state?: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
72
|
-
isDesktop?: boolean;
|
|
73
|
-
}, {
|
|
74
|
-
currentTouch: import('../../../../../packages/common/src/utils/touch-drag').TouchDrag<GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
75
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
76
|
-
isExpanded?: boolean;
|
|
77
|
-
onExpand: (event: MouseEvent) => void;
|
|
78
|
-
onSelect: ((...args: any[]) => any)[] | ((possibleChild: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>);
|
|
79
|
-
onDragStart?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => Promise<void>;
|
|
80
|
-
onDragEnd?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => void;
|
|
81
|
-
elements: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
82
|
-
selectedElement?: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
83
|
-
groups: GridViewGroup<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
84
|
-
onCollapse?: (mouseEvent: MouseEvent) => void;
|
|
85
|
-
state?: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
86
|
-
isDesktop?: boolean;
|
|
87
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
88
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
89
22
|
export default _default;
|
|
@@ -3,7 +3,6 @@ import { RoomlePlannerWithExtObjs } from '../../../../common/utils/types';
|
|
|
3
3
|
import { PlanInteractionHandler } from '@roomle/web-sdk/lib/definitions/typings/planner';
|
|
4
4
|
import { GridViewElement } from '../../../../configurator/components/grid-view/-utils/GridViewHelper';
|
|
5
5
|
import { default as PlanElementViewModel } from '@roomle/web-sdk/lib/definitions/common-core/src/view-model/plan-element-view-model';
|
|
6
|
-
import { RapiItem } from '@roomle/web-sdk/lib/definitions/typings/rapi-types';
|
|
7
6
|
import { MaterialsForObjects } from '../../../business-logic/rooms';
|
|
8
7
|
|
|
9
8
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -2295,10 +2294,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2295
2294
|
};
|
|
2296
2295
|
showBack: BooleanConstructor;
|
|
2297
2296
|
interactionsExpanded: BooleanConstructor;
|
|
2298
|
-
state: {
|
|
2299
|
-
type: PropType<import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
2300
|
-
required: true;
|
|
2301
|
-
};
|
|
2302
2297
|
onChangeParameterGroup: FunctionConstructor;
|
|
2303
2298
|
onSelectElement: FunctionConstructor;
|
|
2304
2299
|
onClose: {
|
|
@@ -2313,7 +2308,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2313
2308
|
type: PropType<GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
2314
2309
|
};
|
|
2315
2310
|
bigCategories: BooleanConstructor;
|
|
2316
|
-
}>, {
|
|
2311
|
+
}>, {
|
|
2312
|
+
store: any;
|
|
2313
|
+
}, {
|
|
2317
2314
|
actualSelectedCategory: string;
|
|
2318
2315
|
actualSelectedCategoryIndex: number;
|
|
2319
2316
|
}, {
|
|
@@ -2346,10 +2343,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2346
2343
|
};
|
|
2347
2344
|
showBack: BooleanConstructor;
|
|
2348
2345
|
interactionsExpanded: BooleanConstructor;
|
|
2349
|
-
state: {
|
|
2350
|
-
type: PropType<import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
2351
|
-
required: true;
|
|
2352
|
-
};
|
|
2353
2346
|
onChangeParameterGroup: FunctionConstructor;
|
|
2354
2347
|
onSelectElement: FunctionConstructor;
|
|
2355
2348
|
onClose: {
|
|
@@ -2380,9 +2373,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2380
2373
|
svgIcon: {
|
|
2381
2374
|
type: PropType<string>;
|
|
2382
2375
|
};
|
|
2383
|
-
state: {
|
|
2384
|
-
type: PropType<import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
2385
|
-
};
|
|
2386
2376
|
payload: {
|
|
2387
2377
|
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChildTag>;
|
|
2388
2378
|
};
|
|
@@ -2393,6 +2383,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2393
2383
|
type: PropType<string>;
|
|
2394
2384
|
default: string;
|
|
2395
2385
|
};
|
|
2386
|
+
componentIcon: {
|
|
2387
|
+
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2388
|
+
};
|
|
2396
2389
|
element: {
|
|
2397
2390
|
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewElement<import('../../../../common/components/collection-view/-utils/types').CollectionViewElementPossibleTypes>>;
|
|
2398
2391
|
default: any;
|
|
@@ -2429,9 +2422,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2429
2422
|
noHeightWrapper: {
|
|
2430
2423
|
type: PropType<boolean>;
|
|
2431
2424
|
};
|
|
2432
|
-
componentIcon: {
|
|
2433
|
-
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2434
|
-
};
|
|
2435
2425
|
elemKey: {
|
|
2436
2426
|
type: PropType<string>;
|
|
2437
2427
|
default: string;
|
|
@@ -2466,9 +2456,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2466
2456
|
svgIcon: {
|
|
2467
2457
|
type: PropType<string>;
|
|
2468
2458
|
};
|
|
2469
|
-
state: {
|
|
2470
|
-
type: PropType<import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
2471
|
-
};
|
|
2472
2459
|
payload: {
|
|
2473
2460
|
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChildTag>;
|
|
2474
2461
|
};
|
|
@@ -2479,6 +2466,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2479
2466
|
type: PropType<string>;
|
|
2480
2467
|
default: string;
|
|
2481
2468
|
};
|
|
2469
|
+
componentIcon: {
|
|
2470
|
+
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2471
|
+
};
|
|
2482
2472
|
element: {
|
|
2483
2473
|
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewElement<import('../../../../common/components/collection-view/-utils/types').CollectionViewElementPossibleTypes>>;
|
|
2484
2474
|
default: any;
|
|
@@ -2515,9 +2505,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2515
2505
|
noHeightWrapper: {
|
|
2516
2506
|
type: PropType<boolean>;
|
|
2517
2507
|
};
|
|
2518
|
-
componentIcon: {
|
|
2519
|
-
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2520
|
-
};
|
|
2521
2508
|
elemKey: {
|
|
2522
2509
|
type: PropType<string>;
|
|
2523
2510
|
default: string;
|
|
@@ -2567,9 +2554,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2567
2554
|
svgIcon: {
|
|
2568
2555
|
type: PropType<string>;
|
|
2569
2556
|
};
|
|
2570
|
-
state: {
|
|
2571
|
-
type: PropType<import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
2572
|
-
};
|
|
2573
2557
|
payload: {
|
|
2574
2558
|
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChildTag>;
|
|
2575
2559
|
};
|
|
@@ -2580,6 +2564,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2580
2564
|
type: PropType<string>;
|
|
2581
2565
|
default: string;
|
|
2582
2566
|
};
|
|
2567
|
+
componentIcon: {
|
|
2568
|
+
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2569
|
+
};
|
|
2583
2570
|
element: {
|
|
2584
2571
|
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewElement<import('../../../../common/components/collection-view/-utils/types').CollectionViewElementPossibleTypes>>;
|
|
2585
2572
|
default: any;
|
|
@@ -2616,9 +2603,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2616
2603
|
noHeightWrapper: {
|
|
2617
2604
|
type: PropType<boolean>;
|
|
2618
2605
|
};
|
|
2619
|
-
componentIcon: {
|
|
2620
|
-
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2621
|
-
};
|
|
2622
2606
|
elemKey: {
|
|
2623
2607
|
type: PropType<string>;
|
|
2624
2608
|
default: string;
|
|
@@ -2665,9 +2649,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2665
2649
|
svgIcon: {
|
|
2666
2650
|
type: PropType<string>;
|
|
2667
2651
|
};
|
|
2668
|
-
state: {
|
|
2669
|
-
type: PropType<import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
2670
|
-
};
|
|
2671
2652
|
payload: {
|
|
2672
2653
|
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChildTag>;
|
|
2673
2654
|
};
|
|
@@ -2678,6 +2659,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2678
2659
|
type: PropType<string>;
|
|
2679
2660
|
default: string;
|
|
2680
2661
|
};
|
|
2662
|
+
componentIcon: {
|
|
2663
|
+
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2664
|
+
};
|
|
2681
2665
|
element: {
|
|
2682
2666
|
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewElement<import('../../../../common/components/collection-view/-utils/types').CollectionViewElementPossibleTypes>>;
|
|
2683
2667
|
default: any;
|
|
@@ -2714,9 +2698,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2714
2698
|
noHeightWrapper: {
|
|
2715
2699
|
type: PropType<boolean>;
|
|
2716
2700
|
};
|
|
2717
|
-
componentIcon: {
|
|
2718
|
-
type: PropType<import('../../../../common/components/collection-view/-utils/types').CollectionViewComponentIcon<Record<string, any>>>;
|
|
2719
|
-
};
|
|
2720
2701
|
elemKey: {
|
|
2721
2702
|
type: PropType<string>;
|
|
2722
2703
|
default: string;
|
|
@@ -4009,7 +3990,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
4009
3990
|
isExpanded?: boolean;
|
|
4010
3991
|
onExpand?: () => void;
|
|
4011
3992
|
onCollapse?: (_payload: MouseEvent) => void;
|
|
4012
|
-
state?: import('../../../../common/store/collection-view-state').CollectionViewUiState;
|
|
4013
3993
|
isDesktop?: boolean;
|
|
4014
3994
|
onSetColor?: (element: GridViewElement<MaterialsForObjects>) => void | Promise<void>;
|
|
4015
3995
|
value?: import('../../../../common/composables/use-core-bound-value').MinimalBoundValue<MaterialsForObjects | import('@roomle/web-sdk/lib/definitions/typings/planner').KernelWallMaterial | import('@roomle/web-sdk/lib/definitions/typings/planner').KernelFloorMaterial>;
|
|
@@ -5119,92 +5099,28 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
5119
5099
|
isExpanded?: boolean;
|
|
5120
5100
|
onExpand?: () => void;
|
|
5121
5101
|
onCollapse?: (_payload: MouseEvent) => void;
|
|
5122
|
-
state?: import('../../../../common/store/collection-view-state').CollectionViewUiState;
|
|
5123
5102
|
isDesktop?: boolean;
|
|
5124
5103
|
onSetColor?: (element: GridViewElement<MaterialsForObjects>) => void | Promise<void>;
|
|
5125
5104
|
value?: import('../../../../common/composables/use-core-bound-value').MinimalBoundValue<MaterialsForObjects | import('@roomle/web-sdk/lib/definitions/typings/planner').KernelWallMaterial | import('@roomle/web-sdk/lib/definitions/typings/planner').KernelFloorMaterial>;
|
|
5126
5105
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5127
|
-
ConstructionVariants: import('vue').DefineComponent<
|
|
5128
|
-
groups:
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
};
|
|
5143
|
-
isDesktop: BooleanConstructor;
|
|
5144
|
-
api: {
|
|
5145
|
-
type: PropType<RoomlePlannerWithExtObjs>;
|
|
5146
|
-
required: true;
|
|
5147
|
-
};
|
|
5148
|
-
}>, {
|
|
5149
|
-
onSelect: (variant: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>;
|
|
5150
|
-
}, {
|
|
5151
|
-
isSwapping: boolean;
|
|
5152
|
-
}, {
|
|
5153
|
-
allElements(): GridViewElement<RapiItem>[];
|
|
5154
|
-
normalizedGroups(): import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewGroup<RapiItem>[];
|
|
5155
|
-
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
5156
|
-
groups: {
|
|
5157
|
-
type: PropType<import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiTag[]>;
|
|
5158
|
-
required: true;
|
|
5159
|
-
};
|
|
5160
|
-
isExpanded: BooleanConstructor;
|
|
5161
|
-
onExpand: {
|
|
5162
|
-
type: FunctionConstructor;
|
|
5163
|
-
required: true;
|
|
5164
|
-
};
|
|
5165
|
-
onCollapse: {
|
|
5166
|
-
type: PropType<(_payload: MouseEvent) => void>;
|
|
5167
|
-
};
|
|
5168
|
-
state: {
|
|
5169
|
-
type: PropType<import('../../../store/planner-ui-state').PlannerUiState | import('../../../../common/store/collection-view-state').CollectionViewUiState>;
|
|
5170
|
-
};
|
|
5171
|
-
isDesktop: BooleanConstructor;
|
|
5172
|
-
api: {
|
|
5173
|
-
type: PropType<RoomlePlannerWithExtObjs>;
|
|
5174
|
-
required: true;
|
|
5175
|
-
};
|
|
5176
|
-
}>> & Readonly<{}>, {
|
|
5106
|
+
ConstructionVariants: import('vue').DefineComponent<{
|
|
5107
|
+
groups: import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiTag[];
|
|
5108
|
+
isExpanded?: boolean;
|
|
5109
|
+
onExpand: (event: MouseEvent) => void;
|
|
5110
|
+
onCollapse?: (_payload: MouseEvent) => void;
|
|
5111
|
+
isDesktop?: boolean;
|
|
5112
|
+
api: RoomlePlannerWithExtObjs;
|
|
5113
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
5114
|
+
groups: import('@roomle/web-sdk/lib/definitions/typings/rapi-types').RapiTag[];
|
|
5115
|
+
isExpanded?: boolean;
|
|
5116
|
+
onExpand: (event: MouseEvent) => void;
|
|
5117
|
+
onCollapse?: (_payload: MouseEvent) => void;
|
|
5118
|
+
isDesktop?: boolean;
|
|
5119
|
+
api: RoomlePlannerWithExtObjs;
|
|
5120
|
+
}> & Readonly<{}>, {
|
|
5177
5121
|
isDesktop: boolean;
|
|
5178
5122
|
isExpanded: boolean;
|
|
5179
|
-
}, {}, {
|
|
5180
|
-
GridView: import('vue').DefineComponent<{
|
|
5181
|
-
isExpanded?: boolean;
|
|
5182
|
-
onExpand: (event: MouseEvent) => void;
|
|
5183
|
-
onSelect: ((...args: any[]) => any)[] | ((possibleChild: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>);
|
|
5184
|
-
onDragStart?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => Promise<void>;
|
|
5185
|
-
onDragEnd?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => void;
|
|
5186
|
-
elements: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
5187
|
-
selectedElement?: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
5188
|
-
groups: import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewGroup<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
5189
|
-
onCollapse?: (mouseEvent: MouseEvent) => void;
|
|
5190
|
-
state?: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
5191
|
-
isDesktop?: boolean;
|
|
5192
|
-
}, {
|
|
5193
|
-
currentTouch: import('../../../../../packages/common/src/utils/touch-drag').TouchDrag<GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>>;
|
|
5194
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
5195
|
-
isExpanded?: boolean;
|
|
5196
|
-
onExpand: (event: MouseEvent) => void;
|
|
5197
|
-
onSelect: ((...args: any[]) => any)[] | ((possibleChild: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>);
|
|
5198
|
-
onDragStart?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => Promise<void>;
|
|
5199
|
-
onDragEnd?: (gridViewElement: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>, event: DragEvent | TouchEvent) => void;
|
|
5200
|
-
elements: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
5201
|
-
selectedElement?: import('@roomle/web-sdk/lib/definitions/typings/kernel').UiPossibleChild | import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewVariantElement | GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>;
|
|
5202
|
-
groups: import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewGroup<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>[];
|
|
5203
|
-
onCollapse?: (mouseEvent: MouseEvent) => void;
|
|
5204
|
-
state?: import('../../../../common/store/collection-view-state').GridViewUiState;
|
|
5205
|
-
isDesktop?: boolean;
|
|
5206
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5207
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5123
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5208
5124
|
LoadingSpinner: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5209
5125
|
ProductPositions: import('vue').DefineComponent<{
|
|
5210
5126
|
api: RoomlePlannerWithExtObjs;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { GridViewElement } from '../../../../configurator/components/grid-view/-utils/GridViewHelper';
|
|
2
|
-
import { CollectionViewUiState } from '../../../../common/store/collection-view-state';
|
|
3
2
|
import { SampleRoom } from '../../../business-logic/rooms';
|
|
4
3
|
|
|
5
4
|
declare const _default: import('vue').DefineComponent<{
|
|
@@ -8,7 +7,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
8
7
|
onExpand: () => void;
|
|
9
8
|
onCollapse?: (_payload: MouseEvent) => void;
|
|
10
9
|
onSelect: (_sampleRoom: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>;
|
|
11
|
-
state: CollectionViewUiState;
|
|
12
10
|
isDesktop?: boolean;
|
|
13
11
|
selectedElement: GridViewElement<SampleRoom>;
|
|
14
12
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -17,7 +15,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
17
15
|
onExpand: () => void;
|
|
18
16
|
onCollapse?: (_payload: MouseEvent) => void;
|
|
19
17
|
onSelect: (_sampleRoom: GridViewElement<import('../../../../configurator/components/grid-view/-utils/GridViewHelper').GridViewElementPossiblePayload>) => Promise<void>;
|
|
20
|
-
state: CollectionViewUiState;
|
|
21
18
|
isDesktop?: boolean;
|
|
22
19
|
selectedElement: GridViewElement<SampleRoom>;
|
|
23
20
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CollectionViewState } from '../../../common/store/collection-view-state';
|
|
2
2
|
import { CollectionViewElement, CollectionViewElementPossibleTypes } from '../../../common/components/collection-view/-utils/types';
|
|
3
3
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<{
|
|
@@ -7,13 +7,13 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
7
7
|
onCollapse?: () => void;
|
|
8
8
|
onSelect?: (...args: any[]) => void;
|
|
9
9
|
isDesktop?: boolean;
|
|
10
|
-
state?:
|
|
10
|
+
state?: CollectionViewState;
|
|
11
11
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
12
|
element: CollectionViewElement<CollectionViewElementPossibleTypes>;
|
|
13
13
|
onExpandGridView?: (element: any) => void;
|
|
14
14
|
onCollapse?: () => void;
|
|
15
15
|
onSelect?: (...args: any[]) => void;
|
|
16
16
|
isDesktop?: boolean;
|
|
17
|
-
state?:
|
|
17
|
+
state?: CollectionViewState;
|
|
18
18
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
export default _default;
|