ng-easycommerce 0.0.530 → 0.0.531
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/README.md +2 -0
- package/bundles/ng-easycommerce.umd.js +6 -0
- package/bundles/ng-easycommerce.umd.js.map +1 -1
- package/bundles/ng-easycommerce.umd.min.js +1 -1
- package/bundles/ng-easycommerce.umd.min.js.map +1 -1
- package/esm2015/lib/ec-component/build-your-ec/build-your-ec.component.js +7 -1
- package/esm5/lib/ec-component/build-your-ec/build-your-ec.component.js +7 -1
- package/fesm2015/ng-easycommerce.js +6 -0
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +6 -0
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/build-your-ec/build-your-ec.component.d.ts +3 -0
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15332,12 +15332,15 @@
|
|
|
15332
15332
|
_this.finished = false; //Marca si finalizo la secuencia de pasos
|
|
15333
15333
|
_this.noMoreCoincidences = false; //Marca si no hay mas coincidencias de productos
|
|
15334
15334
|
_this.products = []; //Recibe el/los producto/s resultantes
|
|
15335
|
+
_this.total = [];
|
|
15335
15336
|
/**
|
|
15336
15337
|
* @description Arreglo de funciones para ejecutarse al terminar la carga de pasos.
|
|
15337
15338
|
* El objeto se arma { function: [Function] , args: [Argumentos] }
|
|
15338
15339
|
*/
|
|
15339
15340
|
_this.functionsToNextStep = [];
|
|
15340
15341
|
_this.functionsToPrevStep = [];
|
|
15342
|
+
_this.attributes = [];
|
|
15343
|
+
_this.values = [];
|
|
15341
15344
|
/**
|
|
15342
15345
|
* @description inserta atributos adicionales a los pasos recibidos.
|
|
15343
15346
|
* current => para indicar cuando el paso esta activo.
|
|
@@ -15494,6 +15497,9 @@
|
|
|
15494
15497
|
*/
|
|
15495
15498
|
_this.prev = function (index) {
|
|
15496
15499
|
if (index === void 0) { index = -1; }
|
|
15500
|
+
_this.values.pop();
|
|
15501
|
+
_this.attributes.pop();
|
|
15502
|
+
_this.total.pop();
|
|
15497
15503
|
_this.taxonCode = 0;
|
|
15498
15504
|
_this.noMoreCoincidences = false;
|
|
15499
15505
|
_this.stepList[_this.currentPosition].current = false;
|