igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.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.
Files changed (146) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +98 -98
  4. package/esm2015/lib/ButtonView_combined.js +2206 -1799
  5. package/esm2015/lib/CalendarView_combined.js +156 -156
  6. package/esm2015/lib/CheckboxView_combined.js +532 -458
  7. package/esm2015/lib/DatePickerView_combined.js +398 -364
  8. package/esm2015/lib/IconView_combined.js +553 -355
  9. package/esm2015/lib/InputGroupView_combined.js +2432 -2152
  10. package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/Theme.js +48 -0
  13. package/esm2015/lib/ThemeResolver.js +131 -7
  14. package/esm2015/lib/XButtonBridge.js +218 -22
  15. package/esm2015/lib/XCheckboxBridge.js +25 -16
  16. package/esm2015/lib/XComponentBridge.js +20 -6
  17. package/esm2015/lib/XIconBridge.js +93 -0
  18. package/esm2015/lib/XIconButtonBridge.js +45 -33
  19. package/esm2015/lib/XInputBridge.js +91 -38
  20. package/esm2015/lib/XPopupBridge.js +287 -0
  21. package/esm2015/lib/igc-date-picker-component.js +60 -58
  22. package/esm2015/lib/igc-x-button-component.js +694 -546
  23. package/esm2015/lib/igc-x-button-group-component.js +28 -28
  24. package/esm2015/lib/igc-x-calendar-component.js +16 -16
  25. package/esm2015/lib/igc-x-checkbox-component.js +77 -77
  26. package/esm2015/lib/igc-x-icon-component.js +239 -118
  27. package/esm2015/lib/igc-x-input-component.js +61 -43
  28. package/esm2015/lib/igc-x-input-group-component.js +576 -576
  29. package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
  30. package/esm2015/lib/igc-x-ripple-component.js +35 -35
  31. package/esm2015/public_api.js +3 -0
  32. package/esm5/lib/ButtonClickEventArgs.js +2 -2
  33. package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
  34. package/esm5/lib/ButtonGroupView_combined.js +176 -176
  35. package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
  36. package/esm5/lib/ButtonView_combined.js +2259 -1808
  37. package/esm5/lib/ButtonVisualModelExport.js +2 -2
  38. package/esm5/lib/CalendarView_combined.js +181 -181
  39. package/esm5/lib/CalendarVisualModelExport.js +2 -2
  40. package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
  41. package/esm5/lib/CheckboxView_combined.js +561 -483
  42. package/esm5/lib/CheckboxVisualModelExport.js +2 -2
  43. package/esm5/lib/DatePickerView_combined.js +421 -383
  44. package/esm5/lib/DatePickerVisualModelExport.js +2 -2
  45. package/esm5/lib/DateTimeValueFormatter.js +2 -2
  46. package/esm5/lib/DayInfo.js +2 -2
  47. package/esm5/lib/ElevationHelper.js +2 -2
  48. package/esm5/lib/GotFocusEventArgs.js +2 -2
  49. package/esm5/lib/IconClickedEventArgs.js +2 -2
  50. package/esm5/lib/IconView_combined.js +600 -362
  51. package/esm5/lib/IconVisualModelExport.js +3 -3
  52. package/esm5/lib/InputChangeEventArgs.js +4 -4
  53. package/esm5/lib/InputGroupView_combined.js +2534 -2246
  54. package/esm5/lib/InputGroupVisualModelExport.js +2 -2
  55. package/esm5/lib/InputVisualModelExport.js +2 -2
  56. package/esm5/lib/LabelVisualModelExport.js +2 -2
  57. package/esm5/lib/LostFocusEventArgs.js +2 -2
  58. package/esm5/lib/MaskOptions.js +2 -2
  59. package/esm5/lib/MaskParsingService.js +5 -5
  60. package/esm5/lib/NativeUIXInputsFactory.js +69 -27
  61. package/esm5/lib/PrefixVisualModelExport.js +2 -2
  62. package/esm5/lib/Replaced.js +2 -2
  63. package/esm5/lib/RippleView_combined.js +17 -17
  64. package/esm5/lib/RippleVisualModelExport.js +2 -2
  65. package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
  66. package/esm5/lib/SuffixVisualModelExport.js +2 -2
  67. package/esm5/lib/TextElementsVisualModelExport.js +2 -2
  68. package/esm5/lib/Theme.js +58 -0
  69. package/esm5/lib/ThemeResolver.js +137 -11
  70. package/esm5/lib/XButtonBridge.js +220 -24
  71. package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
  72. package/esm5/lib/XCheckboxBridge.js +27 -18
  73. package/esm5/lib/XComponentBridge.js +26 -8
  74. package/esm5/lib/XIconBridge.js +95 -0
  75. package/esm5/lib/XIconButtonBridge.js +47 -35
  76. package/esm5/lib/XInputBridge.js +93 -40
  77. package/esm5/lib/XPopupBridge.js +289 -0
  78. package/esm5/lib/igc-button-click-event-args.js +1 -1
  79. package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
  80. package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
  81. package/esm5/lib/igc-date-picker-component.js +80 -78
  82. package/esm5/lib/igc-got-focus-event-args.js +1 -1
  83. package/esm5/lib/igc-input-change-event-args.js +3 -3
  84. package/esm5/lib/igc-lost-focus-event-args.js +1 -1
  85. package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
  86. package/esm5/lib/igc-x-button-component.js +908 -710
  87. package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
  88. package/esm5/lib/igc-x-button-group-component.js +73 -73
  89. package/esm5/lib/igc-x-calendar-component.js +30 -30
  90. package/esm5/lib/igc-x-checkbox-component.js +117 -117
  91. package/esm5/lib/igc-x-icon-component.js +297 -136
  92. package/esm5/lib/igc-x-input-component.js +104 -78
  93. package/esm5/lib/igc-x-input-group-component.js +716 -716
  94. package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
  95. package/esm5/lib/igc-x-input-group-item-component.js +6 -6
  96. package/esm5/lib/igc-x-label-component.js +30 -30
  97. package/esm5/lib/igc-x-prefix-component.js +9 -9
  98. package/esm5/lib/igc-x-ripple-component.js +19 -19
  99. package/esm5/lib/igc-x-suffix-component.js +9 -9
  100. package/esm5/public_api.js +3 -0
  101. package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
  102. package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
  103. package/lib/ButtonGroupView_combined.d.ts +136 -70
  104. package/lib/ButtonView_combined.d.ts +609 -583
  105. package/lib/CalendarView_combined.d.ts +43 -22
  106. package/lib/CheckboxChangeEventArgs.d.ts +4 -2
  107. package/lib/CheckboxView_combined.d.ts +150 -117
  108. package/lib/DatePickerView_combined.d.ts +109 -81
  109. package/lib/IconView_combined.d.ts +164 -93
  110. package/lib/IconVisualModelExport.d.ts +2 -1
  111. package/lib/InputChangeEventArgs.d.ts +4 -2
  112. package/lib/InputGroupView_combined.d.ts +771 -771
  113. package/lib/NativeUIXInputsFactory.d.ts +6 -4
  114. package/lib/RippleView_combined.d.ts +19 -10
  115. package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
  116. package/lib/Theme.d.ts +15 -0
  117. package/lib/ThemeResolver.d.ts +44 -6
  118. package/lib/XButtonBridge.d.ts +23 -5
  119. package/lib/XCheckboxBridge.d.ts +3 -3
  120. package/lib/XComponentBridge.d.ts +2 -1
  121. package/lib/XIconBridge.d.ts +14 -0
  122. package/lib/XIconButtonBridge.d.ts +4 -4
  123. package/lib/XInputBridge.d.ts +11 -7
  124. package/lib/XPopupBridge.d.ts +52 -0
  125. package/lib/igc-button-click-event-args.d.ts +1 -1
  126. package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
  127. package/lib/igc-checkbox-change-event-args.d.ts +5 -3
  128. package/lib/igc-date-picker-component.d.ts +65 -34
  129. package/lib/igc-got-focus-event-args.d.ts +1 -1
  130. package/lib/igc-input-change-event-args.d.ts +5 -3
  131. package/lib/igc-lost-focus-event-args.d.ts +1 -1
  132. package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
  133. package/lib/igc-x-button-component.d.ts +399 -173
  134. package/lib/igc-x-button-group-component.d.ts +136 -70
  135. package/lib/igc-x-calendar-component.d.ts +53 -28
  136. package/lib/igc-x-checkbox-component.d.ts +71 -37
  137. package/lib/igc-x-icon-component.d.ts +140 -44
  138. package/lib/igc-x-input-component.d.ts +69 -32
  139. package/lib/igc-x-input-group-component.d.ts +325 -165
  140. package/lib/igc-x-input-group-item-component.d.ts +5 -4
  141. package/lib/igc-x-label-component.d.ts +52 -27
  142. package/lib/igc-x-prefix-component.d.ts +10 -6
  143. package/lib/igc-x-ripple-component.d.ts +31 -17
  144. package/lib/igc-x-suffix-component.d.ts +10 -6
  145. package/package.json +2 -2
  146. package/public_api.d.ts +3 -0
@@ -1,4 +1,4 @@
1
- import * as tslib_1 from "tslib";
1
+ import { __extends, __values } from "tslib";
2
2
  import { XInput } from "./XInput";
3
3
  import { ensureEnum, brushToString, stringToBrush, ensureBool, NamePatcher, toSpinal, enumToString, getAllPropertyNames } from "igniteui-webcomponents-core";
4
4
  import { FontInfo } from "igniteui-webcomponents-core";
@@ -10,6 +10,7 @@ import { IgcInputChangeEventArgs } from './igc-input-change-event-args';
10
10
  import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
11
11
  import { IgcKeyEventArgs } from "igniteui-webcomponents-core";
12
12
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
13
+ import { HorizontalAlignment_$type } from "igniteui-webcomponents-core";
13
14
  var requiredStyle = "\n\n";
14
15
  var pending = [];
15
16
  var checked = /*@__PURE__*/ new WeakMap(); // TODO why not WeakSet?
@@ -53,7 +54,7 @@ function injectCss(style, attributeName, onload) {
53
54
  document.head.appendChild(styleEle);
54
55
  }
55
56
  var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
56
- tslib_1.__extends(IgcXInputComponent, _super);
57
+ __extends(IgcXInputComponent, _super);
57
58
  function IgcXInputComponent() {
58
59
  var _this = _super.call(this) || this;
59
60
  _this._disconnected = false;
@@ -95,7 +96,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
95
96
  var mut = new MutationObserver(function (list) {
96
97
  var e_1, _b;
97
98
  try {
98
- for (var list_1 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
99
+ for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
99
100
  var mutation = list_1_1.value;
100
101
  if (mutation.type == 'childList') {
101
102
  _this._onChildrenChanged();
@@ -182,7 +183,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
182
183
  get: function () {
183
184
  return this._implementation;
184
185
  },
185
- enumerable: true,
186
+ enumerable: false,
186
187
  configurable: true
187
188
  });
188
189
  Object.defineProperty(IgcXInputComponent, "observedAttributes", {
@@ -196,7 +197,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
196
197
  }
197
198
  return IgcXInputComponent._observedAttributesIgcXInputComponent;
198
199
  },
199
- enumerable: true,
200
+ enumerable: false,
200
201
  configurable: true
201
202
  });
202
203
  IgcXInputComponent.register = function () {
@@ -216,7 +217,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
216
217
  this.i.w = ensureEnum(BaseControlTheme_$type, v);
217
218
  this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.w));
218
219
  },
219
- enumerable: true,
220
+ enumerable: false,
220
221
  configurable: true
221
222
  });
222
223
  Object.defineProperty(IgcXInputComponent.prototype, "density", {
@@ -230,7 +231,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
230
231
  this.i.aa = ensureEnum(ControlDisplayDensity_$type, v);
231
232
  this._a("density", enumToString(ControlDisplayDensity_$type, this.i.aa));
232
233
  },
233
- enumerable: true,
234
+ enumerable: false,
234
235
  configurable: true
235
236
  });
236
237
  Object.defineProperty(IgcXInputComponent.prototype, "actualDensity", {
@@ -244,7 +245,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
244
245
  this.i.z = ensureEnum(ControlDisplayDensity_$type, v);
245
246
  this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.z));
246
247
  },
247
- enumerable: true,
248
+ enumerable: false,
248
249
  configurable: true
249
250
  });
250
251
  Object.defineProperty(IgcXInputComponent.prototype, "mask", {
@@ -252,12 +253,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
252
253
  * Gets/Sets the input mask for the input.
253
254
  */
254
255
  get: function () {
255
- return this.i.cc;
256
+ return this.i.ce;
256
257
  },
257
258
  set: function (v) {
258
- this.i.cc = v;
259
+ this.i.ce = v;
259
260
  },
260
- enumerable: true,
261
+ enumerable: false,
261
262
  configurable: true
262
263
  });
263
264
  Object.defineProperty(IgcXInputComponent.prototype, "promptChar", {
@@ -265,12 +266,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
265
266
  * Gets/Sets the character representing a fillable spot in the input mask
266
267
  */
267
268
  get: function () {
268
- return this.i.cg;
269
+ return this.i.ci;
269
270
  },
270
271
  set: function (v) {
271
- this.i.cg = v;
272
+ this.i.ci = v;
272
273
  },
273
- enumerable: true,
274
+ enumerable: false,
274
275
  configurable: true
275
276
  });
276
277
  Object.defineProperty(IgcXInputComponent.prototype, "includeLiterals", {
@@ -278,13 +279,24 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
278
279
  * Specifies if the bound value includes the formatting symbols.
279
280
  */
280
281
  get: function () {
281
- return this.i.at;
282
+ return this.i.au;
283
+ },
284
+ set: function (v) {
285
+ this.i.au = ensureBool(v);
286
+ this._a("includeLiterals", this.i.au);
287
+ },
288
+ enumerable: false,
289
+ configurable: true
290
+ });
291
+ Object.defineProperty(IgcXInputComponent.prototype, "showSpinner", {
292
+ get: function () {
293
+ return this.i.a1;
282
294
  },
283
295
  set: function (v) {
284
- this.i.at = ensureBool(v);
285
- this._a("includeLiterals", this.i.at);
296
+ this.i.a1 = ensureBool(v);
297
+ this._a("showSpinner", this.i.a1);
286
298
  },
287
- enumerable: true,
299
+ enumerable: false,
288
300
  configurable: true
289
301
  });
290
302
  Object.defineProperty(IgcXInputComponent.prototype, "actualTextColor", {
@@ -292,13 +304,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
292
304
  * Gets the actual color to use for the text color.
293
305
  */
294
306
  get: function () {
295
- return brushToString(this.i.dx);
307
+ return brushToString(this.i.d4);
296
308
  },
297
309
  set: function (v) {
298
- this.i.dx = stringToBrush(v);
299
- this._a("actualTextColor", brushToString(this.i.dx));
310
+ this.i.d4 = stringToBrush(v);
311
+ this._a("actualTextColor", brushToString(this.i.d4));
300
312
  },
301
- enumerable: true,
313
+ enumerable: false,
302
314
  configurable: true
303
315
  });
304
316
  Object.defineProperty(IgcXInputComponent.prototype, "actualHoverTextColor", {
@@ -306,13 +318,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
306
318
  * Gets the actual hover color to use for the text.
307
319
  */
308
320
  get: function () {
309
- return brushToString(this.i.dw);
321
+ return brushToString(this.i.d3);
310
322
  },
311
323
  set: function (v) {
312
- this.i.dw = stringToBrush(v);
313
- this._a("actualHoverTextColor", brushToString(this.i.dw));
324
+ this.i.d3 = stringToBrush(v);
325
+ this._a("actualHoverTextColor", brushToString(this.i.d3));
314
326
  },
315
- enumerable: true,
327
+ enumerable: false,
316
328
  configurable: true
317
329
  });
318
330
  Object.defineProperty(IgcXInputComponent.prototype, "textColor", {
@@ -320,13 +332,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
320
332
  * Gets or sets the color to use for the text.
321
333
  */
322
334
  get: function () {
323
- return brushToString(this.i.d1);
335
+ return brushToString(this.i.d8);
324
336
  },
325
337
  set: function (v) {
326
- this.i.d1 = stringToBrush(v);
327
- this._a("textColor", brushToString(this.i.d1));
338
+ this.i.d8 = stringToBrush(v);
339
+ this._a("textColor", brushToString(this.i.d8));
328
340
  },
329
- enumerable: true,
341
+ enumerable: false,
330
342
  configurable: true
331
343
  });
332
344
  Object.defineProperty(IgcXInputComponent.prototype, "textStyle", {
@@ -345,7 +357,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
345
357
  this.i.af = fi;
346
358
  this._a("textStyle", this.i.af != null ? this.i.af.fontString : "");
347
359
  },
348
- enumerable: true,
360
+ enumerable: false,
349
361
  configurable: true
350
362
  });
351
363
  Object.defineProperty(IgcXInputComponent.prototype, "inputType", {
@@ -353,12 +365,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
353
365
  * Gets or sets the type to use for the input.
354
366
  */
355
367
  get: function () {
356
- return this.i.b6;
368
+ return this.i.b8;
357
369
  },
358
370
  set: function (v) {
359
- this.i.b6 = v;
371
+ this.i.b8 = v;
360
372
  },
361
- enumerable: true,
373
+ enumerable: false,
362
374
  configurable: true
363
375
  });
364
376
  Object.defineProperty(IgcXInputComponent.prototype, "placeholder", {
@@ -366,12 +378,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
366
378
  * Gets or sets the placeholder to use for the input.
367
379
  */
368
380
  get: function () {
369
- return this.i.ce;
381
+ return this.i.cg;
370
382
  },
371
383
  set: function (v) {
372
- this.i.ce = v;
384
+ this.i.cg = v;
373
385
  },
374
- enumerable: true,
386
+ enumerable: false,
375
387
  configurable: true
376
388
  });
377
389
  Object.defineProperty(IgcXInputComponent.prototype, "hoverTextColor", {
@@ -379,13 +391,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
379
391
  * Gets or sets the color to use for the hovered text of the button regardless of type.
380
392
  */
381
393
  get: function () {
382
- return brushToString(this.i.d0);
394
+ return brushToString(this.i.d7);
383
395
  },
384
396
  set: function (v) {
385
- this.i.d0 = stringToBrush(v);
386
- this._a("hoverTextColor", brushToString(this.i.d0));
397
+ this.i.d7 = stringToBrush(v);
398
+ this._a("hoverTextColor", brushToString(this.i.d7));
387
399
  },
388
- enumerable: true,
400
+ enumerable: false,
389
401
  configurable: true
390
402
  });
391
403
  Object.defineProperty(IgcXInputComponent.prototype, "id", {
@@ -393,12 +405,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
393
405
  * Gets or sets the id to use for the checkbox.
394
406
  */
395
407
  get: function () {
396
- return this.i.b3;
408
+ return this.i.b5;
397
409
  },
398
410
  set: function (v) {
399
- this.i.b3 = v;
411
+ this.i.b5 = v;
400
412
  },
401
- enumerable: true,
413
+ enumerable: false,
402
414
  configurable: true
403
415
  });
404
416
  Object.defineProperty(IgcXInputComponent.prototype, "tabIndex", {
@@ -406,13 +418,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
406
418
  * Gets or sets TabIndex to use for the checkbox.
407
419
  */
408
420
  get: function () {
409
- return this.i.bc;
421
+ return this.i.be;
410
422
  },
411
423
  set: function (v) {
412
- this.i.bc = +v;
413
- this._a("tabIndex", this.i.bc);
424
+ this.i.be = +v;
425
+ this._a("tabIndex", this.i.be);
414
426
  },
415
- enumerable: true,
427
+ enumerable: false,
416
428
  configurable: true
417
429
  });
418
430
  Object.defineProperty(IgcXInputComponent.prototype, "for", {
@@ -420,12 +432,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
420
432
  * Gets or sets the for attribute to use for the input.
421
433
  */
422
434
  get: function () {
423
- return this.i.b0;
435
+ return this.i.b2;
424
436
  },
425
437
  set: function (v) {
426
- this.i.b0 = v;
438
+ this.i.b2 = v;
427
439
  },
428
- enumerable: true,
440
+ enumerable: false,
429
441
  configurable: true
430
442
  });
431
443
  Object.defineProperty(IgcXInputComponent.prototype, "ariaLabel", {
@@ -433,12 +445,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
433
445
  * Gets or sets the value of the aria-label attribute.
434
446
  */
435
447
  get: function () {
436
- return this.i.bv;
448
+ return this.i.bx;
437
449
  },
438
450
  set: function (v) {
439
- this.i.bv = v;
451
+ this.i.bx = v;
440
452
  },
441
- enumerable: true,
453
+ enumerable: false,
442
454
  configurable: true
443
455
  });
444
456
  Object.defineProperty(IgcXInputComponent.prototype, "isHover", {
@@ -446,13 +458,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
446
458
  * Gets or sets whether the input is hovered.
447
459
  */
448
460
  get: function () {
449
- return this.i.av;
461
+ return this.i.aw;
450
462
  },
451
463
  set: function (v) {
452
- this.i.av = ensureBool(v);
453
- this._a("isHover", this.i.av);
464
+ this.i.aw = ensureBool(v);
465
+ this._a("isHover", this.i.aw);
454
466
  },
455
- enumerable: true,
467
+ enumerable: false,
456
468
  configurable: true
457
469
  });
458
470
  Object.defineProperty(IgcXInputComponent.prototype, "value", {
@@ -460,19 +472,19 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
460
472
  * Gets or sets the value for the input.
461
473
  */
462
474
  get: function () {
463
- return this.i.cm;
475
+ return this.i.cq;
464
476
  },
465
477
  set: function (v) {
466
- this.i.cm = v;
478
+ this.i.cq = v;
467
479
  },
468
- enumerable: true,
480
+ enumerable: false,
469
481
  configurable: true
470
482
  });
471
483
  Object.defineProperty(IgcXInputComponent.prototype, "hasValue", {
472
484
  get: function () {
473
- return this.i.as;
485
+ return this.i.at;
474
486
  },
475
- enumerable: true,
487
+ enumerable: false,
476
488
  configurable: true
477
489
  });
478
490
  Object.defineProperty(IgcXInputComponent.prototype, "disabled", {
@@ -486,7 +498,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
486
498
  this.i.disabled = ensureBool(v);
487
499
  this._a("disabled", this.i.disabled);
488
500
  },
489
- enumerable: true,
501
+ enumerable: false,
490
502
  configurable: true
491
503
  });
492
504
  Object.defineProperty(IgcXInputComponent.prototype, "readonly", {
@@ -500,7 +512,21 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
500
512
  this.i.readonly = ensureBool(v);
501
513
  this._a("readonly", this.i.readonly);
502
514
  },
503
- enumerable: true,
515
+ enumerable: false,
516
+ configurable: true
517
+ });
518
+ Object.defineProperty(IgcXInputComponent.prototype, "textAlignment", {
519
+ /**
520
+ * Gets or sets the alignment of the text.
521
+ */
522
+ get: function () {
523
+ return this.i.dy;
524
+ },
525
+ set: function (v) {
526
+ this.i.dy = ensureEnum(HorizontalAlignment_$type, v);
527
+ this._a("textAlignment", enumToString(HorizontalAlignment_$type, this.i.dy));
528
+ },
529
+ enumerable: false,
504
530
  configurable: true
505
531
  });
506
532
  Object.defineProperty(IgcXInputComponent.prototype, "selectionStart", {
@@ -514,7 +540,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
514
540
  this.i.selectionStart = +v;
515
541
  this._a("selectionStart", this.i.selectionStart);
516
542
  },
517
- enumerable: true,
543
+ enumerable: false,
518
544
  configurable: true
519
545
  });
520
546
  Object.defineProperty(IgcXInputComponent.prototype, "selectionEnd", {
@@ -528,7 +554,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
528
554
  this.i.selectionEnd = +v;
529
555
  this._a("selectionEnd", this.i.selectionEnd);
530
556
  },
531
- enumerable: true,
557
+ enumerable: false,
532
558
  configurable: true
533
559
  });
534
560
  IgcXInputComponent.prototype.onDetachedFromUI = function () {
@@ -542,7 +568,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
542
568
 
543
569
  */
544
570
  IgcXInputComponent.prototype.exportVisualModel = function () {
545
- var iv = this.i.be();
571
+ var iv = this.i.bg();
546
572
  return (iv);
547
573
  };
548
574
  /**
@@ -550,17 +576,17 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
550
576
 
551
577
  */
552
578
  IgcXInputComponent.prototype.exportSerializedVisualModel = function () {
553
- var iv = this.i.bz();
579
+ var iv = this.i.b1();
554
580
  return (iv);
555
581
  };
556
582
  IgcXInputComponent.prototype.setSelectionRange = function (selectionStart, selectionEnd) {
557
- this.i.dl(selectionStart, selectionEnd);
583
+ this.i.dr(selectionStart, selectionEnd);
558
584
  };
559
585
  IgcXInputComponent.prototype.blur = function () {
560
- this.i.cp();
586
+ this.i.ct();
561
587
  };
562
588
  IgcXInputComponent.prototype.select = function () {
563
- this.i.dj();
589
+ this.i.dp();
564
590
  };
565
591
  Object.defineProperty(IgcXInputComponent.prototype, "keyDown", {
566
592
  get: function () {
@@ -587,7 +613,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
587
613
  this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
588
614
  ;
589
615
  },
590
- enumerable: true,
616
+ enumerable: false,
591
617
  configurable: true
592
618
  });
593
619
  Object.defineProperty(IgcXInputComponent.prototype, "keyUp", {
@@ -615,7 +641,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
615
641
  this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
616
642
  ;
617
643
  },
618
- enumerable: true,
644
+ enumerable: false,
619
645
  configurable: true
620
646
  });
621
647
  Object.defineProperty(IgcXInputComponent.prototype, "keyPress", {
@@ -643,7 +669,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
643
669
  this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
644
670
  ;
645
671
  },
646
- enumerable: true,
672
+ enumerable: false,
647
673
  configurable: true
648
674
  });
649
675
  Object.defineProperty(IgcXInputComponent.prototype, "change", {
@@ -671,7 +697,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
671
697
  this.i.change = delegateCombine(this.i.change, this._change_wrapped);
672
698
  ;
673
699
  },
674
- enumerable: true,
700
+ enumerable: false,
675
701
  configurable: true
676
702
  });
677
703
  Object.defineProperty(IgcXInputComponent.prototype, "changing", {
@@ -699,7 +725,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
699
725
  this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
700
726
  ;
701
727
  },
702
- enumerable: true,
728
+ enumerable: false,
703
729
  configurable: true
704
730
  });
705
731
  Object.defineProperty(IgcXInputComponent.prototype, "compositionEnd", {
@@ -727,7 +753,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
727
753
  this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
728
754
  ;
729
755
  },
730
- enumerable: true,
756
+ enumerable: false,
731
757
  configurable: true
732
758
  });
733
759
  IgcXInputComponent._observedAttributesIgcXInputComponent = null;