igniteui-webcomponents-inputs 3.2.3 → 3.2.4
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 +196 -159
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/DatePickerView_combined.js +2 -2
- package/esm2015/lib/InputGroupView_combined.js +153 -145
- package/esm2015/lib/KEYCODES.js +1 -1
- package/esm2015/lib/igc-x-input-component.js +41 -17
- package/esm5/lib/DatePickerView_combined.js +2 -2
- package/esm5/lib/InputGroupView_combined.js +147 -139
- package/esm5/lib/KEYCODES.js +1 -1
- package/esm5/lib/igc-x-input-component.js +46 -17
- package/fesm2015/igniteui-webcomponents-inputs.js +197 -165
- package/fesm5/igniteui-webcomponents-inputs.js +196 -159
- package/lib/InputGroupView_combined.d.ts +30 -30
- package/lib/KEYCODES.d.ts +1 -0
- package/lib/igc-x-input-component.d.ts +3 -0
- package/package.json +2 -2
|
@@ -66,6 +66,8 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
66
66
|
_this._change_wrapped = null;
|
|
67
67
|
_this._changing = null;
|
|
68
68
|
_this._changing_wrapped = null;
|
|
69
|
+
_this._compositionEnd = null;
|
|
70
|
+
_this._compositionEnd_wrapped = null;
|
|
69
71
|
ensureCss();
|
|
70
72
|
if (_this._styling) {
|
|
71
73
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(_this));
|
|
@@ -207,11 +209,11 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
207
209
|
* Gets or sets the display density to use for the input.
|
|
208
210
|
*/
|
|
209
211
|
get: function () {
|
|
210
|
-
return this.i.
|
|
212
|
+
return this.i.y;
|
|
211
213
|
},
|
|
212
214
|
set: function (v) {
|
|
213
|
-
this.i.
|
|
214
|
-
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.
|
|
215
|
+
this.i.y = ensureEnum(ControlDisplayDensity_$type, v);
|
|
216
|
+
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.y));
|
|
215
217
|
},
|
|
216
218
|
enumerable: true,
|
|
217
219
|
configurable: true
|
|
@@ -221,11 +223,11 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
221
223
|
* Gets the actual display density to use for the label.
|
|
222
224
|
*/
|
|
223
225
|
get: function () {
|
|
224
|
-
return this.i.
|
|
226
|
+
return this.i.x;
|
|
225
227
|
},
|
|
226
228
|
set: function (v) {
|
|
227
|
-
this.i.
|
|
228
|
-
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.
|
|
229
|
+
this.i.x = ensureEnum(ControlDisplayDensity_$type, v);
|
|
230
|
+
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.x));
|
|
229
231
|
},
|
|
230
232
|
enumerable: true,
|
|
231
233
|
configurable: true
|
|
@@ -261,11 +263,11 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
261
263
|
* Specifies if the bound value includes the formatting symbols.
|
|
262
264
|
*/
|
|
263
265
|
get: function () {
|
|
264
|
-
return this.i.
|
|
266
|
+
return this.i.ar;
|
|
265
267
|
},
|
|
266
268
|
set: function (v) {
|
|
267
|
-
this.i.
|
|
268
|
-
this._a("includeLiterals", this.i.
|
|
269
|
+
this.i.ar = ensureBool(v);
|
|
270
|
+
this._a("includeLiterals", this.i.ar);
|
|
269
271
|
},
|
|
270
272
|
enumerable: true,
|
|
271
273
|
configurable: true
|
|
@@ -317,16 +319,16 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
317
319
|
* Gets or sets the use for the button.
|
|
318
320
|
*/
|
|
319
321
|
get: function () {
|
|
320
|
-
if (this.i.
|
|
322
|
+
if (this.i.ad == null) {
|
|
321
323
|
return null;
|
|
322
324
|
}
|
|
323
|
-
return this.i.
|
|
325
|
+
return this.i.ad.fontString;
|
|
324
326
|
},
|
|
325
327
|
set: function (v) {
|
|
326
328
|
var fi = new FontInfo();
|
|
327
329
|
fi.fontString = v;
|
|
328
|
-
this.i.
|
|
329
|
-
this._a("textStyle", this.i.
|
|
330
|
+
this.i.ad = fi;
|
|
331
|
+
this._a("textStyle", this.i.ad != null ? this.i.ad.fontString : "");
|
|
330
332
|
},
|
|
331
333
|
enumerable: true,
|
|
332
334
|
configurable: true
|
|
@@ -429,11 +431,11 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
429
431
|
* Gets or sets whether the input is hovered.
|
|
430
432
|
*/
|
|
431
433
|
get: function () {
|
|
432
|
-
return this.i.
|
|
434
|
+
return this.i.at;
|
|
433
435
|
},
|
|
434
436
|
set: function (v) {
|
|
435
|
-
this.i.
|
|
436
|
-
this._a("isHover", this.i.
|
|
437
|
+
this.i.at = ensureBool(v);
|
|
438
|
+
this._a("isHover", this.i.at);
|
|
437
439
|
},
|
|
438
440
|
enumerable: true,
|
|
439
441
|
configurable: true
|
|
@@ -453,7 +455,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
453
455
|
});
|
|
454
456
|
Object.defineProperty(IgcXInputComponent.prototype, "hasValue", {
|
|
455
457
|
get: function () {
|
|
456
|
-
return this.i.
|
|
458
|
+
return this.i.aq;
|
|
457
459
|
},
|
|
458
460
|
enumerable: true,
|
|
459
461
|
configurable: true
|
|
@@ -680,6 +682,33 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
680
682
|
enumerable: true,
|
|
681
683
|
configurable: true
|
|
682
684
|
});
|
|
685
|
+
Object.defineProperty(IgcXInputComponent.prototype, "compositionEnd", {
|
|
686
|
+
get: function () {
|
|
687
|
+
return this._compositionEnd;
|
|
688
|
+
},
|
|
689
|
+
set: function (ev) {
|
|
690
|
+
var _this = this;
|
|
691
|
+
if (this._compositionEnd_wrapped !== null) {
|
|
692
|
+
this.i.compositionEnd = delegateRemove(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
693
|
+
this._compositionEnd_wrapped = null;
|
|
694
|
+
this._compositionEnd = null;
|
|
695
|
+
}
|
|
696
|
+
this._compositionEnd = ev;
|
|
697
|
+
this._compositionEnd_wrapped = function (o, e) {
|
|
698
|
+
var outerArgs = new IgcInputChangeEventArgs();
|
|
699
|
+
outerArgs._provideImplementation(e);
|
|
700
|
+
if (_this.beforeCompositionEnd) {
|
|
701
|
+
_this.beforeCompositionEnd(_this, outerArgs);
|
|
702
|
+
}
|
|
703
|
+
if (_this._compositionEnd) {
|
|
704
|
+
_this._compositionEnd(_this, outerArgs);
|
|
705
|
+
}
|
|
706
|
+
};
|
|
707
|
+
this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
708
|
+
},
|
|
709
|
+
enumerable: true,
|
|
710
|
+
configurable: true
|
|
711
|
+
});
|
|
683
712
|
IgcXInputComponent._observedAttributesIgcXInputComponent = null;
|
|
684
713
|
IgcXInputComponent.htmlTagName = "igc-x-input";
|
|
685
714
|
IgcXInputComponent._isElementRegistered = false;
|