igniteui-angular-core 18.2.0-beta.1 → 18.2.0
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/igniteui-angular-core.umd.js +28 -0
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/ComponentRenderer_combined.js +4 -0
- package/esm2015/lib/ToolActionInfo.js +16 -0
- package/esm5/lib/ComponentRenderer_combined.js +4 -0
- package/esm5/lib/ToolActionInfo.js +24 -0
- package/fesm2015/igniteui-angular-core.js +20 -0
- package/fesm5/igniteui-angular-core.js +28 -0
- package/lib/ToolActionInfo.d.ts +6 -0
- package/package.json +1 -1
|
@@ -49811,6 +49811,8 @@
|
|
|
49811
49811
|
_this._iconViewBoxHeight = 0;
|
|
49812
49812
|
_this._iconWidth = 0;
|
|
49813
49813
|
_this._iconHeight = 0;
|
|
49814
|
+
_this._subPanelRowHeight = 0;
|
|
49815
|
+
_this._height = 0;
|
|
49814
49816
|
_this._isDisabled = false;
|
|
49815
49817
|
_this._isHighlighted = false;
|
|
49816
49818
|
_this._textColor = null;
|
|
@@ -49820,6 +49822,7 @@
|
|
|
49820
49822
|
_this._actions = null;
|
|
49821
49823
|
_this._contextBindings = null;
|
|
49822
49824
|
_this.iconCollectionName = "default";
|
|
49825
|
+
_this.subPanelRowHeight = -1;
|
|
49823
49826
|
_this.iconViewBoxLeft = NaN;
|
|
49824
49827
|
_this.iconViewBoxTop = NaN;
|
|
49825
49828
|
_this.iconViewBoxWidth = NaN;
|
|
@@ -49832,6 +49835,7 @@
|
|
|
49832
49835
|
_this.paddingTop = NaN;
|
|
49833
49836
|
_this.isDisabled = false;
|
|
49834
49837
|
_this.isHighlighted = false;
|
|
49838
|
+
_this.height = NaN;
|
|
49835
49839
|
return _this;
|
|
49836
49840
|
}
|
|
49837
49841
|
Object.defineProperty(ToolActionInfo.prototype, "parentId", {
|
|
@@ -50024,6 +50028,26 @@
|
|
|
50024
50028
|
enumerable: false,
|
|
50025
50029
|
configurable: true
|
|
50026
50030
|
});
|
|
50031
|
+
Object.defineProperty(ToolActionInfo.prototype, "subPanelRowHeight", {
|
|
50032
|
+
get: function () {
|
|
50033
|
+
return this._subPanelRowHeight;
|
|
50034
|
+
},
|
|
50035
|
+
set: function (a) {
|
|
50036
|
+
this._subPanelRowHeight = a;
|
|
50037
|
+
},
|
|
50038
|
+
enumerable: false,
|
|
50039
|
+
configurable: true
|
|
50040
|
+
});
|
|
50041
|
+
Object.defineProperty(ToolActionInfo.prototype, "height", {
|
|
50042
|
+
get: function () {
|
|
50043
|
+
return this._height;
|
|
50044
|
+
},
|
|
50045
|
+
set: function (a) {
|
|
50046
|
+
this._height = a;
|
|
50047
|
+
},
|
|
50048
|
+
enumerable: false,
|
|
50049
|
+
configurable: true
|
|
50050
|
+
});
|
|
50027
50051
|
Object.defineProperty(ToolActionInfo.prototype, "isDisabled", {
|
|
50028
50052
|
get: function () {
|
|
50029
50053
|
return this._isDisabled;
|
|
@@ -84111,6 +84135,10 @@
|
|
|
84111
84135
|
c(_this.a8.item(b));
|
|
84112
84136
|
return;
|
|
84113
84137
|
}
|
|
84138
|
+
if (!_this.x(a)) {
|
|
84139
|
+
_this.queueForIdle(a, function () { return _this.resolveRefValue(a, b, c); });
|
|
84140
|
+
return;
|
|
84141
|
+
}
|
|
84114
84142
|
c(null);
|
|
84115
84143
|
return;
|
|
84116
84144
|
}
|