@colijnit/configurator 12.0.15 → 12.0.17
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 +6 -0
- package/bundles/colijnit-configurator.umd.js +254 -144
- package/bundles/colijnit-configurator.umd.js.map +1 -1
- package/colijnit-configurator.metadata.json +1 -1
- package/esm2015/app/builder.js +96 -44
- package/esm2015/helper/variation-helper.js +41 -22
- package/esm2015/model/material.js +1 -1
- package/esm2015/model/variation-settings.js +4 -2
- package/esm2015/utils/asset.utils.js +16 -10
- package/esm2015/utils/threed.utils.js +6 -2
- package/esm2015/utils/variation-utils.js +18 -8
- package/fesm2015/colijnit-configurator.js +174 -82
- package/fesm2015/colijnit-configurator.js.map +1 -1
- package/model/material.d.ts +4 -1
- package/model/variation-settings.d.ts +12 -1
- package/package.json +1 -1
- package/utils/asset.utils.d.ts +1 -0
package/app/builder.d.ts
CHANGED
|
@@ -49,6 +49,12 @@ export declare class Builder {
|
|
|
49
49
|
private _downloadAsset;
|
|
50
50
|
private _build;
|
|
51
51
|
private _prepareTheSelections;
|
|
52
|
+
/**
|
|
53
|
+
* Returns the materialId of the parent up the tree until presentionlevel 1 is reached
|
|
54
|
+
* @param id
|
|
55
|
+
* @private
|
|
56
|
+
*/
|
|
57
|
+
private _getMaterialIdFromParent;
|
|
52
58
|
private _createAdjustable;
|
|
53
59
|
private _createAddable;
|
|
54
60
|
private _placeAddables;
|