@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.
- package/full/bundles/inspark-inspark-components.umd.js +12 -0
- package/full/bundles/inspark-inspark-components.umd.js.map +1 -1
- package/full/bundles/inspark-inspark-components.umd.min.js +1 -1
- package/full/bundles/inspark-inspark-components.umd.min.js.map +1 -1
- package/full/components/button/button.component.d.ts +1 -0
- package/full/esm2015/components/button/button.component.js +10 -2
- package/full/esm5/components/button/button.component.js +14 -2
- package/full/fesm2015/inspark-inspark-components.js +9 -1
- package/full/fesm2015/inspark-inspark-components.js.map +1 -1
- package/full/fesm5/inspark-inspark-components.js +13 -1
- package/full/fesm5/inspark-inspark-components.js.map +1 -1
- package/full/inspark-inspark-components.metadata.json +1 -1
- package/full/package.json +1 -1
- package/interface/package.json +1 -1
- package/package.json +1 -1
|
@@ -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)
|