@wizishop/angular-components 0.0.205 → 0.0.206
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/bundles/wizishop-angular-components.umd.js +6 -6
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/card-price/card-price.component.js +7 -7
- package/fesm2015/wizishop-angular-components.js +6 -6
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/card-price/card-price.component.d.ts +2 -2
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.206.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.205.tgz +0 -0
|
@@ -4267,16 +4267,16 @@
|
|
|
4267
4267
|
this.extraClasses = 'is-success';
|
|
4268
4268
|
this.extraClassesSelected = 'is-success is-outlined';
|
|
4269
4269
|
this.hideButton = false;
|
|
4270
|
-
this.
|
|
4271
|
-
this.
|
|
4270
|
+
this.confirm = new i0.EventEmitter();
|
|
4271
|
+
this.cancel = new i0.EventEmitter();
|
|
4272
4272
|
}
|
|
4273
4273
|
CardPriceComponent.prototype.ngOnInit = function () {
|
|
4274
4274
|
};
|
|
4275
4275
|
CardPriceComponent.prototype.triggerClick = function () {
|
|
4276
|
-
this.
|
|
4276
|
+
this.confirm.emit(true);
|
|
4277
4277
|
};
|
|
4278
4278
|
CardPriceComponent.prototype.removePackageTrigger = function () {
|
|
4279
|
-
this.
|
|
4279
|
+
this.cancel.emit(true);
|
|
4280
4280
|
};
|
|
4281
4281
|
return CardPriceComponent;
|
|
4282
4282
|
}());
|
|
@@ -4304,8 +4304,8 @@
|
|
|
4304
4304
|
extraClasses: [{ type: i0.Input }],
|
|
4305
4305
|
extraClassesSelected: [{ type: i0.Input }],
|
|
4306
4306
|
hideButton: [{ type: i0.Input }],
|
|
4307
|
-
|
|
4308
|
-
|
|
4307
|
+
confirm: [{ type: i0.Output }],
|
|
4308
|
+
cancel: [{ type: i0.Output }]
|
|
4309
4309
|
};
|
|
4310
4310
|
|
|
4311
4311
|
var TokenCheckComponent = /** @class */ (function () {
|