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
|
@@ -1355,6 +1355,10 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
1355
1355
|
c(this.a8.item(b));
|
|
1356
1356
|
return;
|
|
1357
1357
|
}
|
|
1358
|
+
if (!this.x(a)) {
|
|
1359
|
+
this.queueForIdle(a, () => this.resolveRefValue(a, b, c));
|
|
1360
|
+
return;
|
|
1361
|
+
}
|
|
1358
1362
|
c(null);
|
|
1359
1363
|
return;
|
|
1360
1364
|
}
|
|
@@ -31,6 +31,8 @@ export let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
31
31
|
this._iconViewBoxHeight = 0;
|
|
32
32
|
this._iconWidth = 0;
|
|
33
33
|
this._iconHeight = 0;
|
|
34
|
+
this._subPanelRowHeight = 0;
|
|
35
|
+
this._height = 0;
|
|
34
36
|
this._isDisabled = false;
|
|
35
37
|
this._isHighlighted = false;
|
|
36
38
|
this._textColor = null;
|
|
@@ -40,6 +42,7 @@ export let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
40
42
|
this._actions = null;
|
|
41
43
|
this._contextBindings = null;
|
|
42
44
|
this.iconCollectionName = "default";
|
|
45
|
+
this.subPanelRowHeight = -1;
|
|
43
46
|
this.iconViewBoxLeft = NaN;
|
|
44
47
|
this.iconViewBoxTop = NaN;
|
|
45
48
|
this.iconViewBoxWidth = NaN;
|
|
@@ -52,6 +55,7 @@ export let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
52
55
|
this.paddingTop = NaN;
|
|
53
56
|
this.isDisabled = false;
|
|
54
57
|
this.isHighlighted = false;
|
|
58
|
+
this.height = NaN;
|
|
55
59
|
}
|
|
56
60
|
get parentId() {
|
|
57
61
|
return this._parentId;
|
|
@@ -167,6 +171,18 @@ export let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
167
171
|
set iconHeight(a) {
|
|
168
172
|
this._iconHeight = a;
|
|
169
173
|
}
|
|
174
|
+
get subPanelRowHeight() {
|
|
175
|
+
return this._subPanelRowHeight;
|
|
176
|
+
}
|
|
177
|
+
set subPanelRowHeight(a) {
|
|
178
|
+
this._subPanelRowHeight = a;
|
|
179
|
+
}
|
|
180
|
+
get height() {
|
|
181
|
+
return this._height;
|
|
182
|
+
}
|
|
183
|
+
set height(a) {
|
|
184
|
+
this._height = a;
|
|
185
|
+
}
|
|
170
186
|
get isDisabled() {
|
|
171
187
|
return this._isDisabled;
|
|
172
188
|
}
|
|
@@ -1562,6 +1562,10 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1562
1562
|
c(_this.a8.item(b));
|
|
1563
1563
|
return;
|
|
1564
1564
|
}
|
|
1565
|
+
if (!_this.x(a)) {
|
|
1566
|
+
_this.queueForIdle(a, function () { return _this.resolveRefValue(a, b, c); });
|
|
1567
|
+
return;
|
|
1568
|
+
}
|
|
1565
1569
|
c(null);
|
|
1566
1570
|
return;
|
|
1567
1571
|
}
|
|
@@ -32,6 +32,8 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
32
32
|
_this._iconViewBoxHeight = 0;
|
|
33
33
|
_this._iconWidth = 0;
|
|
34
34
|
_this._iconHeight = 0;
|
|
35
|
+
_this._subPanelRowHeight = 0;
|
|
36
|
+
_this._height = 0;
|
|
35
37
|
_this._isDisabled = false;
|
|
36
38
|
_this._isHighlighted = false;
|
|
37
39
|
_this._textColor = null;
|
|
@@ -41,6 +43,7 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
41
43
|
_this._actions = null;
|
|
42
44
|
_this._contextBindings = null;
|
|
43
45
|
_this.iconCollectionName = "default";
|
|
46
|
+
_this.subPanelRowHeight = -1;
|
|
44
47
|
_this.iconViewBoxLeft = NaN;
|
|
45
48
|
_this.iconViewBoxTop = NaN;
|
|
46
49
|
_this.iconViewBoxWidth = NaN;
|
|
@@ -53,6 +56,7 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53
56
|
_this.paddingTop = NaN;
|
|
54
57
|
_this.isDisabled = false;
|
|
55
58
|
_this.isHighlighted = false;
|
|
59
|
+
_this.height = NaN;
|
|
56
60
|
return _this;
|
|
57
61
|
}
|
|
58
62
|
Object.defineProperty(ToolActionInfo.prototype, "parentId", {
|
|
@@ -245,6 +249,26 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
245
249
|
enumerable: false,
|
|
246
250
|
configurable: true
|
|
247
251
|
});
|
|
252
|
+
Object.defineProperty(ToolActionInfo.prototype, "subPanelRowHeight", {
|
|
253
|
+
get: function () {
|
|
254
|
+
return this._subPanelRowHeight;
|
|
255
|
+
},
|
|
256
|
+
set: function (a) {
|
|
257
|
+
this._subPanelRowHeight = a;
|
|
258
|
+
},
|
|
259
|
+
enumerable: false,
|
|
260
|
+
configurable: true
|
|
261
|
+
});
|
|
262
|
+
Object.defineProperty(ToolActionInfo.prototype, "height", {
|
|
263
|
+
get: function () {
|
|
264
|
+
return this._height;
|
|
265
|
+
},
|
|
266
|
+
set: function (a) {
|
|
267
|
+
this._height = a;
|
|
268
|
+
},
|
|
269
|
+
enumerable: false,
|
|
270
|
+
configurable: true
|
|
271
|
+
});
|
|
248
272
|
Object.defineProperty(ToolActionInfo.prototype, "isDisabled", {
|
|
249
273
|
get: function () {
|
|
250
274
|
return this._isDisabled;
|
|
@@ -43965,6 +43965,8 @@ let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
43965
43965
|
this._iconViewBoxHeight = 0;
|
|
43966
43966
|
this._iconWidth = 0;
|
|
43967
43967
|
this._iconHeight = 0;
|
|
43968
|
+
this._subPanelRowHeight = 0;
|
|
43969
|
+
this._height = 0;
|
|
43968
43970
|
this._isDisabled = false;
|
|
43969
43971
|
this._isHighlighted = false;
|
|
43970
43972
|
this._textColor = null;
|
|
@@ -43974,6 +43976,7 @@ let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
43974
43976
|
this._actions = null;
|
|
43975
43977
|
this._contextBindings = null;
|
|
43976
43978
|
this.iconCollectionName = "default";
|
|
43979
|
+
this.subPanelRowHeight = -1;
|
|
43977
43980
|
this.iconViewBoxLeft = NaN;
|
|
43978
43981
|
this.iconViewBoxTop = NaN;
|
|
43979
43982
|
this.iconViewBoxWidth = NaN;
|
|
@@ -43986,6 +43989,7 @@ let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
43986
43989
|
this.paddingTop = NaN;
|
|
43987
43990
|
this.isDisabled = false;
|
|
43988
43991
|
this.isHighlighted = false;
|
|
43992
|
+
this.height = NaN;
|
|
43989
43993
|
}
|
|
43990
43994
|
get parentId() {
|
|
43991
43995
|
return this._parentId;
|
|
@@ -44101,6 +44105,18 @@ let ToolActionInfo = /*@__PURE__*/ (() => {
|
|
|
44101
44105
|
set iconHeight(a) {
|
|
44102
44106
|
this._iconHeight = a;
|
|
44103
44107
|
}
|
|
44108
|
+
get subPanelRowHeight() {
|
|
44109
|
+
return this._subPanelRowHeight;
|
|
44110
|
+
}
|
|
44111
|
+
set subPanelRowHeight(a) {
|
|
44112
|
+
this._subPanelRowHeight = a;
|
|
44113
|
+
}
|
|
44114
|
+
get height() {
|
|
44115
|
+
return this._height;
|
|
44116
|
+
}
|
|
44117
|
+
set height(a) {
|
|
44118
|
+
this._height = a;
|
|
44119
|
+
}
|
|
44104
44120
|
get isDisabled() {
|
|
44105
44121
|
return this._isDisabled;
|
|
44106
44122
|
}
|
|
@@ -75251,6 +75267,10 @@ let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
75251
75267
|
c(this.a8.item(b));
|
|
75252
75268
|
return;
|
|
75253
75269
|
}
|
|
75270
|
+
if (!this.x(a)) {
|
|
75271
|
+
this.queueForIdle(a, () => this.resolveRefValue(a, b, c));
|
|
75272
|
+
return;
|
|
75273
|
+
}
|
|
75254
75274
|
c(null);
|
|
75255
75275
|
return;
|
|
75256
75276
|
}
|
|
@@ -49810,6 +49810,8 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
49810
49810
|
_this._iconViewBoxHeight = 0;
|
|
49811
49811
|
_this._iconWidth = 0;
|
|
49812
49812
|
_this._iconHeight = 0;
|
|
49813
|
+
_this._subPanelRowHeight = 0;
|
|
49814
|
+
_this._height = 0;
|
|
49813
49815
|
_this._isDisabled = false;
|
|
49814
49816
|
_this._isHighlighted = false;
|
|
49815
49817
|
_this._textColor = null;
|
|
@@ -49819,6 +49821,7 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
49819
49821
|
_this._actions = null;
|
|
49820
49822
|
_this._contextBindings = null;
|
|
49821
49823
|
_this.iconCollectionName = "default";
|
|
49824
|
+
_this.subPanelRowHeight = -1;
|
|
49822
49825
|
_this.iconViewBoxLeft = NaN;
|
|
49823
49826
|
_this.iconViewBoxTop = NaN;
|
|
49824
49827
|
_this.iconViewBoxWidth = NaN;
|
|
@@ -49831,6 +49834,7 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
49831
49834
|
_this.paddingTop = NaN;
|
|
49832
49835
|
_this.isDisabled = false;
|
|
49833
49836
|
_this.isHighlighted = false;
|
|
49837
|
+
_this.height = NaN;
|
|
49834
49838
|
return _this;
|
|
49835
49839
|
}
|
|
49836
49840
|
Object.defineProperty(ToolActionInfo.prototype, "parentId", {
|
|
@@ -50023,6 +50027,26 @@ var ToolActionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
50023
50027
|
enumerable: false,
|
|
50024
50028
|
configurable: true
|
|
50025
50029
|
});
|
|
50030
|
+
Object.defineProperty(ToolActionInfo.prototype, "subPanelRowHeight", {
|
|
50031
|
+
get: function () {
|
|
50032
|
+
return this._subPanelRowHeight;
|
|
50033
|
+
},
|
|
50034
|
+
set: function (a) {
|
|
50035
|
+
this._subPanelRowHeight = a;
|
|
50036
|
+
},
|
|
50037
|
+
enumerable: false,
|
|
50038
|
+
configurable: true
|
|
50039
|
+
});
|
|
50040
|
+
Object.defineProperty(ToolActionInfo.prototype, "height", {
|
|
50041
|
+
get: function () {
|
|
50042
|
+
return this._height;
|
|
50043
|
+
},
|
|
50044
|
+
set: function (a) {
|
|
50045
|
+
this._height = a;
|
|
50046
|
+
},
|
|
50047
|
+
enumerable: false,
|
|
50048
|
+
configurable: true
|
|
50049
|
+
});
|
|
50026
50050
|
Object.defineProperty(ToolActionInfo.prototype, "isDisabled", {
|
|
50027
50051
|
get: function () {
|
|
50028
50052
|
return this._isDisabled;
|
|
@@ -84110,6 +84134,10 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
84110
84134
|
c(_this.a8.item(b));
|
|
84111
84135
|
return;
|
|
84112
84136
|
}
|
|
84137
|
+
if (!_this.x(a)) {
|
|
84138
|
+
_this.queueForIdle(a, function () { return _this.resolveRefValue(a, b, c); });
|
|
84139
|
+
return;
|
|
84140
|
+
}
|
|
84113
84141
|
c(null);
|
|
84114
84142
|
return;
|
|
84115
84143
|
}
|
package/lib/ToolActionInfo.d.ts
CHANGED
|
@@ -65,6 +65,12 @@ export declare class ToolActionInfo extends Base {
|
|
|
65
65
|
private _iconHeight;
|
|
66
66
|
get iconHeight(): number;
|
|
67
67
|
set iconHeight(a: number);
|
|
68
|
+
private _subPanelRowHeight;
|
|
69
|
+
get subPanelRowHeight(): number;
|
|
70
|
+
set subPanelRowHeight(a: number);
|
|
71
|
+
private _height;
|
|
72
|
+
get height(): number;
|
|
73
|
+
set height(a: number);
|
|
68
74
|
private _isDisabled;
|
|
69
75
|
get isDisabled(): boolean;
|
|
70
76
|
set isDisabled(a: boolean);
|
package/package.json
CHANGED