@colijnit/configurator 258.1.0 → 259.1.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/app/builder.d.ts +3 -1
- package/bundles/colijnit-configurator.umd.js +3799 -3398
- package/bundles/colijnit-configurator.umd.js.map +1 -1
- package/colijnit-configurator.metadata.json +1 -1
- package/esm2015/app/builder.js +60 -27
- package/esm2015/app/components/answers/answer/answer.component.js +1 -1
- package/esm2015/app/components/answers/answers.component.js +1 -1
- package/esm2015/app/components/selections/selections.component.js +1 -1
- package/esm2015/helper/variation-helper.js +101 -46
- package/esm2015/model/variation-settings.js +46 -3
- package/esm2015/utils/asset.utils.js +77 -72
- package/esm2015/utils/image.utils.js +34 -25
- package/esm2015/utils/scene-utils.js +90 -20
- package/esm2015/utils/variation-utils.js +28 -33
- package/fesm2015/colijnit-configurator.js +427 -220
- package/fesm2015/colijnit-configurator.js.map +1 -1
- package/helper/variation-helper.d.ts +5 -1
- package/model/variation-settings.d.ts +3 -2
- package/package.json +21 -9
- package/utils/scene-utils.d.ts +2 -2
package/app/builder.d.ts
CHANGED
|
@@ -12,7 +12,8 @@ export declare class Builder {
|
|
|
12
12
|
decosReceived: BehaviorSubject<DecoNode[]>;
|
|
13
13
|
answersReceived: BehaviorSubject<Answer[]>;
|
|
14
14
|
modelLoaded: BehaviorSubject<THREE.Object3D>;
|
|
15
|
-
debug: Function;
|
|
15
|
+
set debug(value: Function);
|
|
16
|
+
get debug(): Function;
|
|
16
17
|
private _scene;
|
|
17
18
|
private _instanceId;
|
|
18
19
|
private _sku;
|
|
@@ -24,6 +25,7 @@ export declare class Builder {
|
|
|
24
25
|
private _placedAddables;
|
|
25
26
|
private _adjustables;
|
|
26
27
|
private _addables;
|
|
28
|
+
private _debug;
|
|
27
29
|
private _imageCache;
|
|
28
30
|
private _boFactory;
|
|
29
31
|
private _source;
|