zakeke-configurator-react 0.0.133 → 0.0.134
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/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25457,6 +25457,8 @@ class ZakekeEnvironment {
|
|
|
25457
25457
|
});
|
|
25458
25458
|
this.getCurrentExtensionFields(selectedOptions);
|
|
25459
25459
|
this.buildRecapProps(selectedOptions);
|
|
25460
|
+
console.log("fields", this.extensionFields);
|
|
25461
|
+
console.log("recap", this.currentAttributesSelection);
|
|
25460
25462
|
this.trigger('change');
|
|
25461
25463
|
};
|
|
25462
25464
|
this.getCurrentExtensionFields = (options) => {
|
|
@@ -25528,7 +25530,7 @@ class ZakekeEnvironment {
|
|
|
25528
25530
|
}
|
|
25529
25531
|
this.registerView();
|
|
25530
25532
|
yield this.updateSavedCompositions();
|
|
25531
|
-
this.updateRecapAndExtensionField();
|
|
25533
|
+
setTimeout(() => this.updateRecapAndExtensionField(), 1000);
|
|
25532
25534
|
});
|
|
25533
25535
|
this.getComposition = (id) => __awaiter(this, void 0, void 0, function* () {
|
|
25534
25536
|
return new Promise((resolve, reject) => {
|