igniteui-webcomponents-inputs 3.2.2 → 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.
@@ -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.x;
212
+ return this.i.y;
211
213
  },
212
214
  set: function (v) {
213
- this.i.x = ensureEnum(ControlDisplayDensity_$type, v);
214
- this._a("density", enumToString(ControlDisplayDensity_$type, this.i.x));
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.w;
226
+ return this.i.x;
225
227
  },
226
228
  set: function (v) {
227
- this.i.w = ensureEnum(ControlDisplayDensity_$type, v);
228
- this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.w));
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.aq;
266
+ return this.i.ar;
265
267
  },
266
268
  set: function (v) {
267
- this.i.aq = ensureBool(v);
268
- this._a("includeLiterals", this.i.aq);
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.ac == null) {
322
+ if (this.i.ad == null) {
321
323
  return null;
322
324
  }
323
- return this.i.ac.fontString;
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.ac = fi;
329
- this._a("textStyle", this.i.ac != null ? this.i.ac.fontString : "");
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.as;
434
+ return this.i.at;
433
435
  },
434
436
  set: function (v) {
435
- this.i.as = ensureBool(v);
436
- this._a("isHover", this.i.as);
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.ap;
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;