@inspark/inspark-components 1.0.38 → 1.0.39

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.
@@ -721,6 +721,13 @@
721
721
  _this.isMaterialIcon = false;
722
722
  return _this;
723
723
  }
724
+ Object.defineProperty(ButtonComponent.prototype, "pointerEvents", {
725
+ get: function () {
726
+ return this.disabled ? 'none' : 'auto';
727
+ },
728
+ enumerable: true,
729
+ configurable: true
730
+ });
724
731
  ButtonComponent.prototype.ngOnInit = function () {
725
732
  this.updateData();
726
733
  };
@@ -857,6 +864,11 @@
857
864
  core.ViewChild(primeng.Menu, { static: false }),
858
865
  __metadata("design:type", primeng.Menu)
859
866
  ], ButtonComponent.prototype, "_menu", void 0);
867
+ __decorate([
868
+ core.HostBinding('style.pointer-events'),
869
+ __metadata("design:type", String),
870
+ __metadata("design:paramtypes", [])
871
+ ], ButtonComponent.prototype, "pointerEvents", null);
860
872
  __decorate([
861
873
  core.Output(),
862
874
  __metadata("design:type", core.EventEmitter)