@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.
@@ -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.click = new i0.EventEmitter();
4271
- this.removePackage = new i0.EventEmitter();
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.click.emit(true);
4276
+ this.confirm.emit(true);
4277
4277
  };
4278
4278
  CardPriceComponent.prototype.removePackageTrigger = function () {
4279
- this.removePackage.emit(true);
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
- click: [{ type: i0.Output }],
4308
- removePackage: [{ type: i0.Output }]
4307
+ confirm: [{ type: i0.Output }],
4308
+ cancel: [{ type: i0.Output }]
4309
4309
  };
4310
4310
 
4311
4311
  var TokenCheckComponent = /** @class */ (function () {