igniteui-webcomponents-inputs 7.0.1 → 7.1.0-alpha.1
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-webcomponents-inputs.umd.js +198 -197
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/MultiSliderView_combined.js +7 -7
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +180 -180
- package/esm2015/lib/XButtonBridge.js +2 -2
- package/esm2015/lib/XButtonGroupBridge.js +2 -2
- package/esm2015/lib/XComponentBridge.js +2 -1
- package/esm2015/lib/XPopupBridge.js +5 -5
- package/esm5/lib/MultiSliderView_combined.js +7 -7
- package/esm5/lib/NativeUIXInputsFactory_combined.js +180 -180
- package/esm5/lib/XButtonBridge.js +2 -2
- package/esm5/lib/XButtonGroupBridge.js +2 -2
- package/esm5/lib/XComponentBridge.js +2 -1
- package/esm5/lib/XPopupBridge.js +5 -5
- package/fesm2015/igniteui-webcomponents-inputs.js +198 -197
- package/fesm5/igniteui-webcomponents-inputs.js +198 -197
- package/package.json +2 -2
|
@@ -121,7 +121,7 @@ let XButtonBridge = /*@__PURE__*/ (() => {
|
|
|
121
121
|
d.clearButtonContent();
|
|
122
122
|
if (typeCast(NativeUIComponent.$, c) !== null) {
|
|
123
123
|
this.ac = c;
|
|
124
|
-
d.appendButtonContent(this.ac.
|
|
124
|
+
d.appendButtonContent(this.ac.ao);
|
|
125
125
|
}
|
|
126
126
|
else {
|
|
127
127
|
this.ac = c;
|
|
@@ -155,7 +155,7 @@ let XButtonBridge = /*@__PURE__*/ (() => {
|
|
|
155
155
|
case 54:
|
|
156
156
|
if (typeCast(NativeUIComponent.$, c) !== null) {
|
|
157
157
|
this.aa = c;
|
|
158
|
-
d.appendButtonContent(this.aa.
|
|
158
|
+
d.appendButtonContent(this.aa.ao);
|
|
159
159
|
}
|
|
160
160
|
break;
|
|
161
161
|
case 0:
|
|
@@ -157,7 +157,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
|
|
|
157
157
|
addButton(a, b) {
|
|
158
158
|
this.v.add(b);
|
|
159
159
|
a.buttons.add(b.d.getMethodTarget(null));
|
|
160
|
-
a.appendContentChild(b.
|
|
160
|
+
a.appendContentChild(b.ao);
|
|
161
161
|
}
|
|
162
162
|
updateButton(a, b, c) {
|
|
163
163
|
this.v._inner[b] = c;
|
|
@@ -166,7 +166,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
|
|
|
166
166
|
insertButton(a, b, c) {
|
|
167
167
|
this.v.insert(b, c);
|
|
168
168
|
a.buttons.insert(b, c.d.getMethodTarget(null));
|
|
169
|
-
a.appendContentChild(c.
|
|
169
|
+
a.appendContentChild(c.ao);
|
|
170
170
|
}
|
|
171
171
|
removeButton(a, b) {
|
|
172
172
|
this.v.removeAt(b);
|
|
@@ -256,7 +256,7 @@ let XPopupBridge = /*@__PURE__*/ (() => {
|
|
|
256
256
|
a.showRelativeToExclusionRect(b, this.v(c), this.u(d));
|
|
257
257
|
}
|
|
258
258
|
showRelativeToTarget(a, b, c, d) {
|
|
259
|
-
let e = b.
|
|
259
|
+
let e = b.ao.getNativeElement();
|
|
260
260
|
a.cr(e, this.v(c), this.u(d));
|
|
261
261
|
}
|
|
262
262
|
close(a) {
|
|
@@ -293,12 +293,12 @@ let XPopupBridge = /*@__PURE__*/ (() => {
|
|
|
293
293
|
addChild(a, b) {
|
|
294
294
|
this.ae.add(b);
|
|
295
295
|
let c = a;
|
|
296
|
-
c.appendPopupContent(b.
|
|
296
|
+
c.appendPopupContent(b.ao);
|
|
297
297
|
}
|
|
298
298
|
insertChild(a, b, c) {
|
|
299
299
|
this.ae.add(c);
|
|
300
300
|
let d = a;
|
|
301
|
-
d.appendPopupContent(c.
|
|
301
|
+
d.appendPopupContent(c.ao);
|
|
302
302
|
}
|
|
303
303
|
getChildAt(a, b) {
|
|
304
304
|
return this.ae._inner[b];
|
|
@@ -308,12 +308,12 @@ let XPopupBridge = /*@__PURE__*/ (() => {
|
|
|
308
308
|
}
|
|
309
309
|
removeChild(a, b) {
|
|
310
310
|
let c = a;
|
|
311
|
-
c.removePopupContent(b.
|
|
311
|
+
c.removePopupContent(b.ao);
|
|
312
312
|
this.ae.remove(b);
|
|
313
313
|
}
|
|
314
314
|
removeChildAt(a, b) {
|
|
315
315
|
let c = a;
|
|
316
|
-
c.removePopupContent(this.ae._inner[b].
|
|
316
|
+
c.removePopupContent(this.ae._inner[b].ao);
|
|
317
317
|
this.ae.removeAt(b);
|
|
318
318
|
}
|
|
319
319
|
}
|
|
@@ -74,7 +74,7 @@ export var MultiSliderView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
74
74
|
this.m = true;
|
|
75
75
|
this.ap();
|
|
76
76
|
if (this.a != null) {
|
|
77
|
-
this.a.
|
|
77
|
+
this.a.av(this.u.rootWrapper, "");
|
|
78
78
|
}
|
|
79
79
|
if (this.z == -1) {
|
|
80
80
|
this.z = this.u.setTimeout(runOn(this, this.an), 200);
|
|
@@ -83,7 +83,7 @@ export var MultiSliderView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
83
83
|
MultiSliderView.prototype.au = function () {
|
|
84
84
|
this.m = false;
|
|
85
85
|
if (this.a != null && this.u != null) {
|
|
86
|
-
this.a.
|
|
86
|
+
this.a.bk(this.u.rootWrapper, "");
|
|
87
87
|
}
|
|
88
88
|
if (this.z != -1) {
|
|
89
89
|
window.clearTimeout(this.z);
|
|
@@ -247,14 +247,14 @@ export var MultiSliderView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
247
247
|
this.l.af(this.j);
|
|
248
248
|
this.ab();
|
|
249
249
|
this.a = new CanvasGestureDOMEventProxy(this.u.rootWrapper, this.u, false);
|
|
250
|
-
this.a.
|
|
250
|
+
this.a.bo = this.g.e0;
|
|
251
251
|
var k = this.a;
|
|
252
252
|
k.onContactStarted = delegateCombine(k.onContactStarted, runOn(this, this.aj));
|
|
253
253
|
var l = this.a;
|
|
254
254
|
l.onContactMoved = delegateCombine(l.onContactMoved, runOn(this, this.ai));
|
|
255
255
|
var m = this.a;
|
|
256
256
|
m.onContactCompleted = delegateCombine(m.onContactCompleted, runOn(this, this.ah));
|
|
257
|
-
this.a.
|
|
257
|
+
this.a.aq = function (n) { return _this.g.ey.containsPoint(n); };
|
|
258
258
|
this.g.ds(0, 0, e, f);
|
|
259
259
|
this.s = FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
260
260
|
this.g.trackDirty();
|
|
@@ -277,8 +277,8 @@ export var MultiSliderView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
277
277
|
b.onContactMoved = delegateRemove(b.onContactMoved, runOn(this, this.ai));
|
|
278
278
|
var c = this.a;
|
|
279
279
|
c.onContactCompleted = delegateRemove(c.onContactCompleted, runOn(this, this.ah));
|
|
280
|
-
this.a.
|
|
281
|
-
this.a.
|
|
280
|
+
this.a.aq = null;
|
|
281
|
+
this.a.ax();
|
|
282
282
|
}
|
|
283
283
|
};
|
|
284
284
|
MultiSliderView.prototype.ay = function () {
|
|
@@ -297,7 +297,7 @@ export var MultiSliderView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
297
297
|
if (a || d) {
|
|
298
298
|
this.g.ds(0, 0, b, c);
|
|
299
299
|
if (this.a != null) {
|
|
300
|
-
this.a.
|
|
300
|
+
this.a.bo = this.g.e0;
|
|
301
301
|
}
|
|
302
302
|
}
|
|
303
303
|
};
|