igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.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.
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 { XInputGroup } from "./XInputGroup";
3
3
  import { ensureEnum, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
4
4
  import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
@@ -15,7 +15,7 @@ import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
15
15
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
16
16
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
17
17
  var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
18
- tslib_1.__extends(IgcXInputGroupComponent, _super);
18
+ __extends(IgcXInputGroupComponent, _super);
19
19
  function IgcXInputGroupComponent() {
20
20
  var _this = _super.call(this) || this;
21
21
  _this.contentInputs = [];
@@ -67,7 +67,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
67
67
  var mut = new MutationObserver(function (list) {
68
68
  var e_1, _b;
69
69
  try {
70
- for (var list_1 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
70
+ for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
71
71
  var mutation = list_1_1.value;
72
72
  if (mutation.type == 'childList') {
73
73
  _this._onChildrenChanged();
@@ -127,7 +127,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
127
127
  }
128
128
  return this._inputs;
129
129
  },
130
- enumerable: true,
130
+ enumerable: false,
131
131
  configurable: true
132
132
  });
133
133
  IgcXInputGroupComponent.prototype._onChildrenChanged = function () {
@@ -209,7 +209,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
209
209
  } /**
210
210
  * @hidden
211
211
  */,
212
- enumerable: true,
212
+ enumerable: false,
213
213
  configurable: true
214
214
  });
215
215
  IgcXInputGroupComponent._createFromInternal = function (internal) {
@@ -265,7 +265,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
265
265
  }
266
266
  return IgcXInputGroupComponent._observedAttributesIgcXInputGroupComponent;
267
267
  },
268
- enumerable: true,
268
+ enumerable: false,
269
269
  configurable: true
270
270
  });
271
271
  IgcXInputGroupComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
@@ -294,7 +294,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
294
294
  this.i.d = ensureEnum(InputGroupDisplayType_$type, v);
295
295
  this._a("displayType", enumToString(InputGroupDisplayType_$type, this.i.d));
296
296
  },
297
- enumerable: true,
297
+ enumerable: false,
298
298
  configurable: true
299
299
  });
300
300
  Object.defineProperty(IgcXInputGroupComponent.prototype, "density", {
@@ -302,13 +302,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
302
302
  * Gets or sets the display density to use for the input group.
303
303
  */
304
304
  get: function () {
305
- return this.i.n;
305
+ return this.i.t;
306
306
  },
307
307
  set: function (v) {
308
- this.i.n = ensureEnum(ControlDisplayDensity_$type, v);
309
- this._a("density", enumToString(ControlDisplayDensity_$type, this.i.n));
308
+ this.i.t = ensureEnum(ControlDisplayDensity_$type, v);
309
+ this._a("density", enumToString(ControlDisplayDensity_$type, this.i.t));
310
310
  },
311
- enumerable: true,
311
+ enumerable: false,
312
312
  configurable: true
313
313
  });
314
314
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualDensity", {
@@ -316,13 +316,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
316
316
  * Gets the actual display density to use for the input group.
317
317
  */
318
318
  get: function () {
319
- return this.i.m;
319
+ return this.i.s;
320
320
  },
321
321
  set: function (v) {
322
- this.i.m = ensureEnum(ControlDisplayDensity_$type, v);
323
- this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.m));
322
+ this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
323
+ this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.s));
324
324
  },
325
- enumerable: true,
325
+ enumerable: false,
326
326
  configurable: true
327
327
  });
328
328
  Object.defineProperty(IgcXInputGroupComponent.prototype, "baseTheme", {
@@ -330,20 +330,20 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
330
330
  * Gets or sets the base built in theme to use for the label.
331
331
  */
332
332
  get: function () {
333
- return this.i.j;
333
+ return this.i.p;
334
334
  },
335
335
  set: function (v) {
336
- this.i.j = ensureEnum(BaseControlTheme_$type, v);
337
- this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.j));
336
+ this.i.p = ensureEnum(BaseControlTheme_$type, v);
337
+ this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.p));
338
338
  },
339
- enumerable: true,
339
+ enumerable: false,
340
340
  configurable: true
341
341
  });
342
342
  Object.defineProperty(IgcXInputGroupComponent.prototype, "inputHasValue", {
343
343
  get: function () {
344
- return this.i.af;
344
+ return this.i.al;
345
345
  },
346
- enumerable: true,
346
+ enumerable: false,
347
347
  configurable: true
348
348
  });
349
349
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualBorderColor", {
@@ -351,13 +351,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
351
351
  * Gets the actual item background color.
352
352
  */
353
353
  get: function () {
354
- return brushToString(this.i.ot);
354
+ return brushToString(this.i.l6);
355
355
  },
356
356
  set: function (v) {
357
- this.i.ot = stringToBrush(v);
358
- this._a("actualBorderColor", brushToString(this.i.ot));
357
+ this.i.l6 = stringToBrush(v);
358
+ this._a("actualBorderColor", brushToString(this.i.l6));
359
359
  },
360
- enumerable: true,
360
+ enumerable: false,
361
361
  configurable: true
362
362
  });
363
363
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualFocusBorderColor", {
@@ -365,13 +365,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
365
365
  * Gets the actual item border color.
366
366
  */
367
367
  get: function () {
368
- return brushToString(this.i.ou);
368
+ return brushToString(this.i.l7);
369
369
  },
370
370
  set: function (v) {
371
- this.i.ou = stringToBrush(v);
372
- this._a("actualFocusBorderColor", brushToString(this.i.ou));
371
+ this.i.l7 = stringToBrush(v);
372
+ this._a("actualFocusBorderColor", brushToString(this.i.l7));
373
373
  },
374
- enumerable: true,
374
+ enumerable: false,
375
375
  configurable: true
376
376
  });
377
377
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualBorderWidth", {
@@ -379,13 +379,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
379
379
  * Gets the actual item border width.
380
380
  */
381
381
  get: function () {
382
- return this.i.ca;
382
+ return this.i.cg;
383
383
  },
384
384
  set: function (v) {
385
- this.i.ca = +v;
386
- this._a("actualBorderWidth", this.i.ca);
385
+ this.i.cg = +v;
386
+ this._a("actualBorderWidth", this.i.cg);
387
387
  },
388
- enumerable: true,
388
+ enumerable: false,
389
389
  configurable: true
390
390
  });
391
391
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualFocusBorderWidth", {
@@ -393,143 +393,143 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
393
393
  * Gets the actual item border width.
394
394
  */
395
395
  get: function () {
396
- return this.i.cb;
396
+ return this.i.ch;
397
397
  },
398
398
  set: function (v) {
399
- this.i.cb = +v;
400
- this._a("actualFocusBorderWidth", this.i.cb);
399
+ this.i.ch = +v;
400
+ this._a("actualFocusBorderWidth", this.i.ch);
401
401
  },
402
- enumerable: true,
402
+ enumerable: false,
403
403
  configurable: true
404
404
  });
405
405
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualCornerRadiusBottomRight", {
406
406
  get: function () {
407
- return this.i.m0 ? this.i.m0.b : NaN;
407
+ return this.i.ko ? this.i.ko.b : NaN;
408
408
  },
409
409
  set: function (v) {
410
410
  this.ensureActualCornerRadius();
411
- this.i.m0.b = +v;
412
- this._a("actualCornerRadiusBottomRight", this.i.m0.b);
413
- this.i.m0 = this.i.m0;
411
+ this.i.ko.b = +v;
412
+ this._a("actualCornerRadiusBottomRight", this.i.ko.b);
413
+ this.i.ko = this.i.ko;
414
414
  },
415
- enumerable: true,
415
+ enumerable: false,
416
416
  configurable: true
417
417
  });
418
418
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualCornerRadiusBottomLeft", {
419
419
  get: function () {
420
- return this.i.m0 ? this.i.m0.a : NaN;
420
+ return this.i.ko ? this.i.ko.a : NaN;
421
421
  },
422
422
  set: function (v) {
423
423
  this.ensureActualCornerRadius();
424
- this.i.m0.a = +v;
425
- this._a("actualCornerRadiusBottomLeft", this.i.m0.a);
426
- this.i.m0 = this.i.m0;
424
+ this.i.ko.a = +v;
425
+ this._a("actualCornerRadiusBottomLeft", this.i.ko.a);
426
+ this.i.ko = this.i.ko;
427
427
  },
428
- enumerable: true,
428
+ enumerable: false,
429
429
  configurable: true
430
430
  });
431
431
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualCornerRadiusTopLeft", {
432
432
  get: function () {
433
- return this.i.m0 ? this.i.m0.c : NaN;
433
+ return this.i.ko ? this.i.ko.c : NaN;
434
434
  },
435
435
  set: function (v) {
436
436
  this.ensureActualCornerRadius();
437
- this.i.m0.c = +v;
438
- this._a("actualCornerRadiusTopLeft", this.i.m0.c);
439
- this.i.m0 = this.i.m0;
437
+ this.i.ko.c = +v;
438
+ this._a("actualCornerRadiusTopLeft", this.i.ko.c);
439
+ this.i.ko = this.i.ko;
440
440
  },
441
- enumerable: true,
441
+ enumerable: false,
442
442
  configurable: true
443
443
  });
444
444
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualCornerRadiusTopRight", {
445
445
  get: function () {
446
- return this.i.m0 ? this.i.m0.d : NaN;
446
+ return this.i.ko ? this.i.ko.d : NaN;
447
447
  },
448
448
  set: function (v) {
449
449
  this.ensureActualCornerRadius();
450
- this.i.m0.d = +v;
451
- this._a("actualCornerRadiusTopRight", this.i.m0.d);
452
- this.i.m0 = this.i.m0;
450
+ this.i.ko.d = +v;
451
+ this._a("actualCornerRadiusTopRight", this.i.ko.d);
452
+ this.i.ko = this.i.ko;
453
453
  },
454
- enumerable: true,
454
+ enumerable: false,
455
455
  configurable: true
456
456
  });
457
457
  IgcXInputGroupComponent.prototype.ensureActualCornerRadius = function () {
458
- if (this.i.m0) {
458
+ if (this.i.ko) {
459
459
  return;
460
460
  }
461
- this.i.m0 = new CornerRadius(2);
461
+ this.i.ko = new CornerRadius(2);
462
462
  };
463
463
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingBottom", {
464
464
  get: function () {
465
- return this.i.tg ? this.i.tg.bottom : NaN;
465
+ return this.i.oe ? this.i.oe.bottom : NaN;
466
466
  },
467
467
  set: function (v) {
468
468
  this.ensureActualContentPadding();
469
- this.i.tg.bottom = +v;
470
- this._a("actualContentPaddingBottom", this.i.tg.bottom);
471
- this.i.tg = this.i.tg;
469
+ this.i.oe.bottom = +v;
470
+ this._a("actualContentPaddingBottom", this.i.oe.bottom);
471
+ this.i.oe = this.i.oe;
472
472
  },
473
- enumerable: true,
473
+ enumerable: false,
474
474
  configurable: true
475
475
  });
476
476
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingLeft", {
477
477
  get: function () {
478
- return this.i.tg ? this.i.tg.left : NaN;
478
+ return this.i.oe ? this.i.oe.left : NaN;
479
479
  },
480
480
  set: function (v) {
481
481
  this.ensureActualContentPadding();
482
- this.i.tg.left = +v;
483
- this._a("actualContentPaddingLeft", this.i.tg.left);
484
- this.i.tg = this.i.tg;
482
+ this.i.oe.left = +v;
483
+ this._a("actualContentPaddingLeft", this.i.oe.left);
484
+ this.i.oe = this.i.oe;
485
485
  },
486
- enumerable: true,
486
+ enumerable: false,
487
487
  configurable: true
488
488
  });
489
489
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingRight", {
490
490
  get: function () {
491
- return this.i.tg ? this.i.tg.right : NaN;
491
+ return this.i.oe ? this.i.oe.right : NaN;
492
492
  },
493
493
  set: function (v) {
494
494
  this.ensureActualContentPadding();
495
- this.i.tg.right = +v;
496
- this._a("actualContentPaddingRight", this.i.tg.right);
497
- this.i.tg = this.i.tg;
495
+ this.i.oe.right = +v;
496
+ this._a("actualContentPaddingRight", this.i.oe.right);
497
+ this.i.oe = this.i.oe;
498
498
  },
499
- enumerable: true,
499
+ enumerable: false,
500
500
  configurable: true
501
501
  });
502
502
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingTop", {
503
503
  get: function () {
504
- return this.i.tg ? this.i.tg.top : NaN;
504
+ return this.i.oe ? this.i.oe.top : NaN;
505
505
  },
506
506
  set: function (v) {
507
507
  this.ensureActualContentPadding();
508
- this.i.tg.top = +v;
509
- this._a("actualContentPaddingTop", this.i.tg.top);
510
- this.i.tg = this.i.tg;
508
+ this.i.oe.top = +v;
509
+ this._a("actualContentPaddingTop", this.i.oe.top);
510
+ this.i.oe = this.i.oe;
511
511
  },
512
- enumerable: true,
512
+ enumerable: false,
513
513
  configurable: true
514
514
  });
515
515
  IgcXInputGroupComponent.prototype.ensureActualContentPadding = function () {
516
- if (this.i.tg) {
516
+ if (this.i.oe) {
517
517
  return;
518
518
  }
519
- this.i.tg = new Thickness(2);
519
+ this.i.oe = new Thickness(2);
520
520
  };
521
521
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualUnderlineWidth", {
522
522
  /**
523
523
  * Gets the actual width to use for the underline element.
524
524
  */
525
525
  get: function () {
526
- return this.i.cj;
526
+ return this.i.cp;
527
527
  },
528
528
  set: function (v) {
529
- this.i.cj = +v;
530
- this._a("actualUnderlineWidth", this.i.cj);
529
+ this.i.cp = +v;
530
+ this._a("actualUnderlineWidth", this.i.cp);
531
531
  },
532
- enumerable: true,
532
+ enumerable: false,
533
533
  configurable: true
534
534
  });
535
535
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualUnderlineRippleWidth", {
@@ -537,13 +537,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
537
537
  * Gets the actual width to use for the underline element.
538
538
  */
539
539
  get: function () {
540
- return this.i.ci;
540
+ return this.i.co;
541
541
  },
542
542
  set: function (v) {
543
- this.i.ci = +v;
544
- this._a("actualUnderlineRippleWidth", this.i.ci);
543
+ this.i.co = +v;
544
+ this._a("actualUnderlineRippleWidth", this.i.co);
545
545
  },
546
- enumerable: true,
546
+ enumerable: false,
547
547
  configurable: true
548
548
  });
549
549
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualHoverUnderlineWidth", {
@@ -551,13 +551,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
551
551
  * Gets the width to use for the underline element when hovered.
552
552
  */
553
553
  get: function () {
554
- return this.i.cf;
554
+ return this.i.cl;
555
555
  },
556
556
  set: function (v) {
557
- this.i.cf = +v;
558
- this._a("actualHoverUnderlineWidth", this.i.cf);
557
+ this.i.cl = +v;
558
+ this._a("actualHoverUnderlineWidth", this.i.cl);
559
559
  },
560
- enumerable: true,
560
+ enumerable: false,
561
561
  configurable: true
562
562
  });
563
563
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualUnderlineColor", {
@@ -565,13 +565,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
565
565
  * Gets the actual color to use for the underline element.
566
566
  */
567
567
  get: function () {
568
- return brushToString(this.i.ox);
568
+ return brushToString(this.i.ma);
569
569
  },
570
570
  set: function (v) {
571
- this.i.ox = stringToBrush(v);
572
- this._a("actualUnderlineColor", brushToString(this.i.ox));
571
+ this.i.ma = stringToBrush(v);
572
+ this._a("actualUnderlineColor", brushToString(this.i.ma));
573
573
  },
574
- enumerable: true,
574
+ enumerable: false,
575
575
  configurable: true
576
576
  });
577
577
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualUnderlineRippleColor", {
@@ -579,13 +579,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
579
579
  * Gets the actual color to use for the underline ripple element.
580
580
  */
581
581
  get: function () {
582
- return brushToString(this.i.oy);
582
+ return brushToString(this.i.mb);
583
583
  },
584
584
  set: function (v) {
585
- this.i.oy = stringToBrush(v);
586
- this._a("actualUnderlineRippleColor", brushToString(this.i.oy));
585
+ this.i.mb = stringToBrush(v);
586
+ this._a("actualUnderlineRippleColor", brushToString(this.i.mb));
587
587
  },
588
- enumerable: true,
588
+ enumerable: false,
589
589
  configurable: true
590
590
  });
591
591
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualHoverUnderlineColor", {
@@ -593,13 +593,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
593
593
  * Gets the actual color to use for the underline element.
594
594
  */
595
595
  get: function () {
596
- return brushToString(this.i.ow);
596
+ return brushToString(this.i.l9);
597
597
  },
598
598
  set: function (v) {
599
- this.i.ow = stringToBrush(v);
600
- this._a("actualHoverUnderlineColor", brushToString(this.i.ow));
599
+ this.i.l9 = stringToBrush(v);
600
+ this._a("actualHoverUnderlineColor", brushToString(this.i.l9));
601
601
  },
602
- enumerable: true,
602
+ enumerable: false,
603
603
  configurable: true
604
604
  });
605
605
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualFocusUnderlineColor", {
@@ -607,13 +607,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
607
607
  * Gets the actual color to use for the underline element when focused.
608
608
  */
609
609
  get: function () {
610
- return brushToString(this.i.ov);
610
+ return brushToString(this.i.l8);
611
611
  },
612
612
  set: function (v) {
613
- this.i.ov = stringToBrush(v);
614
- this._a("actualFocusUnderlineColor", brushToString(this.i.ov));
613
+ this.i.l8 = stringToBrush(v);
614
+ this._a("actualFocusUnderlineColor", brushToString(this.i.l8));
615
615
  },
616
- enumerable: true,
616
+ enumerable: false,
617
617
  configurable: true
618
618
  });
619
619
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualUnderlineOpacity", {
@@ -621,13 +621,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
621
621
  * Gets the actual opacity to use for the underline element.
622
622
  */
623
623
  get: function () {
624
- return this.i.cg;
624
+ return this.i.cm;
625
625
  },
626
626
  set: function (v) {
627
- this.i.cg = +v;
628
- this._a("actualUnderlineOpacity", this.i.cg);
627
+ this.i.cm = +v;
628
+ this._a("actualUnderlineOpacity", this.i.cm);
629
629
  },
630
- enumerable: true,
630
+ enumerable: false,
631
631
  configurable: true
632
632
  });
633
633
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualHoverUnderlineOpacity", {
@@ -635,13 +635,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
635
635
  * Gets the actual opacity to use for the underline element when hovered.
636
636
  */
637
637
  get: function () {
638
- return this.i.ce;
638
+ return this.i.ck;
639
639
  },
640
640
  set: function (v) {
641
- this.i.ce = +v;
642
- this._a("actualHoverUnderlineOpacity", this.i.ce);
641
+ this.i.ck = +v;
642
+ this._a("actualHoverUnderlineOpacity", this.i.ck);
643
643
  },
644
- enumerable: true,
644
+ enumerable: false,
645
645
  configurable: true
646
646
  });
647
647
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualFocusUnderlineOpacity", {
@@ -649,13 +649,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
649
649
  * Gets the actual opacity to use for the underline element when focused.
650
650
  */
651
651
  get: function () {
652
- return this.i.cc;
652
+ return this.i.ci;
653
653
  },
654
654
  set: function (v) {
655
- this.i.cc = +v;
656
- this._a("actualFocusUnderlineOpacity", this.i.cc);
655
+ this.i.ci = +v;
656
+ this._a("actualFocusUnderlineOpacity", this.i.ci);
657
657
  },
658
- enumerable: true,
658
+ enumerable: false,
659
659
  configurable: true
660
660
  });
661
661
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualFocusUnderlineRippleOpacity", {
@@ -663,13 +663,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
663
663
  * Gets the actual opacity to use for the underline ripple element when focused.
664
664
  */
665
665
  get: function () {
666
- return this.i.cd;
666
+ return this.i.cj;
667
667
  },
668
668
  set: function (v) {
669
- this.i.cd = +v;
670
- this._a("actualFocusUnderlineRippleOpacity", this.i.cd);
669
+ this.i.cj = +v;
670
+ this._a("actualFocusUnderlineRippleOpacity", this.i.cj);
671
671
  },
672
- enumerable: true,
672
+ enumerable: false,
673
673
  configurable: true
674
674
  });
675
675
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualUnderlineRippleOpacity", {
@@ -677,13 +677,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
677
677
  * Gets the actual opacity to use for the underline ripple element.
678
678
  */
679
679
  get: function () {
680
- return this.i.ch;
680
+ return this.i.cn;
681
681
  },
682
682
  set: function (v) {
683
- this.i.ch = +v;
684
- this._a("actualUnderlineRippleOpacity", this.i.ch);
683
+ this.i.cn = +v;
684
+ this._a("actualUnderlineRippleOpacity", this.i.cn);
685
685
  },
686
- enumerable: true,
686
+ enumerable: false,
687
687
  configurable: true
688
688
  });
689
689
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualBackgroundColor", {
@@ -691,13 +691,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
691
691
  * Gets the actual opacity to use for the underline ripple element.
692
692
  */
693
693
  get: function () {
694
- return brushToString(this.i.os);
694
+ return brushToString(this.i.l5);
695
695
  },
696
696
  set: function (v) {
697
- this.i.os = stringToBrush(v);
698
- this._a("actualBackgroundColor", brushToString(this.i.os));
697
+ this.i.l5 = stringToBrush(v);
698
+ this._a("actualBackgroundColor", brushToString(this.i.l5));
699
699
  },
700
- enumerable: true,
700
+ enumerable: false,
701
701
  configurable: true
702
702
  });
703
703
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderWidth", {
@@ -705,13 +705,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
705
705
  * Gets or sets the border width to use for the border of the item group.
706
706
  */
707
707
  get: function () {
708
- return this.i.cu;
708
+ return this.i.c0;
709
709
  },
710
710
  set: function (v) {
711
- this.i.cu = +v;
712
- this._a("borderWidth", this.i.cu);
711
+ this.i.c0 = +v;
712
+ this._a("borderWidth", this.i.c0);
713
713
  },
714
- enumerable: true,
714
+ enumerable: false,
715
715
  configurable: true
716
716
  });
717
717
  Object.defineProperty(IgcXInputGroupComponent.prototype, "focusBorderWidth", {
@@ -719,13 +719,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
719
719
  * Gets or sets the border width to use for the border of the item group when focused.
720
720
  */
721
721
  get: function () {
722
- return this.i.hc;
722
+ return this.i.eg;
723
723
  },
724
724
  set: function (v) {
725
- this.i.hc = +v;
726
- this._a("focusBorderWidth", this.i.hc);
725
+ this.i.eg = +v;
726
+ this._a("focusBorderWidth", this.i.eg);
727
727
  },
728
- enumerable: true,
728
+ enumerable: false,
729
729
  configurable: true
730
730
  });
731
731
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderColor", {
@@ -733,143 +733,143 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
733
733
  * Gets or sets the color to use the border of the input group.
734
734
  */
735
735
  get: function () {
736
- return brushToString(this.i.o0);
736
+ return brushToString(this.i.md);
737
737
  },
738
738
  set: function (v) {
739
- this.i.o0 = stringToBrush(v);
740
- this._a("borderColor", brushToString(this.i.o0));
739
+ this.i.md = stringToBrush(v);
740
+ this._a("borderColor", brushToString(this.i.md));
741
741
  },
742
- enumerable: true,
742
+ enumerable: false,
743
743
  configurable: true
744
744
  });
745
745
  Object.defineProperty(IgcXInputGroupComponent.prototype, "cornerRadiusBottomRight", {
746
746
  get: function () {
747
- return this.i.m4 ? this.i.m4.b : NaN;
747
+ return this.i.ks ? this.i.ks.b : NaN;
748
748
  },
749
749
  set: function (v) {
750
750
  this.ensureCornerRadius();
751
- this.i.m4.b = +v;
752
- this._a("cornerRadiusBottomRight", this.i.m4.b);
753
- this.i.m4 = this.i.m4;
751
+ this.i.ks.b = +v;
752
+ this._a("cornerRadiusBottomRight", this.i.ks.b);
753
+ this.i.ks = this.i.ks;
754
754
  },
755
- enumerable: true,
755
+ enumerable: false,
756
756
  configurable: true
757
757
  });
758
758
  Object.defineProperty(IgcXInputGroupComponent.prototype, "cornerRadiusBottomLeft", {
759
759
  get: function () {
760
- return this.i.m4 ? this.i.m4.a : NaN;
760
+ return this.i.ks ? this.i.ks.a : NaN;
761
761
  },
762
762
  set: function (v) {
763
763
  this.ensureCornerRadius();
764
- this.i.m4.a = +v;
765
- this._a("cornerRadiusBottomLeft", this.i.m4.a);
766
- this.i.m4 = this.i.m4;
764
+ this.i.ks.a = +v;
765
+ this._a("cornerRadiusBottomLeft", this.i.ks.a);
766
+ this.i.ks = this.i.ks;
767
767
  },
768
- enumerable: true,
768
+ enumerable: false,
769
769
  configurable: true
770
770
  });
771
771
  Object.defineProperty(IgcXInputGroupComponent.prototype, "cornerRadiusTopLeft", {
772
772
  get: function () {
773
- return this.i.m4 ? this.i.m4.c : NaN;
773
+ return this.i.ks ? this.i.ks.c : NaN;
774
774
  },
775
775
  set: function (v) {
776
776
  this.ensureCornerRadius();
777
- this.i.m4.c = +v;
778
- this._a("cornerRadiusTopLeft", this.i.m4.c);
779
- this.i.m4 = this.i.m4;
777
+ this.i.ks.c = +v;
778
+ this._a("cornerRadiusTopLeft", this.i.ks.c);
779
+ this.i.ks = this.i.ks;
780
780
  },
781
- enumerable: true,
781
+ enumerable: false,
782
782
  configurable: true
783
783
  });
784
784
  Object.defineProperty(IgcXInputGroupComponent.prototype, "cornerRadiusTopRight", {
785
785
  get: function () {
786
- return this.i.m4 ? this.i.m4.d : NaN;
786
+ return this.i.ks ? this.i.ks.d : NaN;
787
787
  },
788
788
  set: function (v) {
789
789
  this.ensureCornerRadius();
790
- this.i.m4.d = +v;
791
- this._a("cornerRadiusTopRight", this.i.m4.d);
792
- this.i.m4 = this.i.m4;
790
+ this.i.ks.d = +v;
791
+ this._a("cornerRadiusTopRight", this.i.ks.d);
792
+ this.i.ks = this.i.ks;
793
793
  },
794
- enumerable: true,
794
+ enumerable: false,
795
795
  configurable: true
796
796
  });
797
797
  IgcXInputGroupComponent.prototype.ensureCornerRadius = function () {
798
- if (this.i.m4) {
798
+ if (this.i.ks) {
799
799
  return;
800
800
  }
801
- this.i.m4 = new CornerRadius(2);
801
+ this.i.ks = new CornerRadius(2);
802
802
  };
803
803
  Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingBottom", {
804
804
  get: function () {
805
- return this.i.tk ? this.i.tk.bottom : NaN;
805
+ return this.i.oi ? this.i.oi.bottom : NaN;
806
806
  },
807
807
  set: function (v) {
808
808
  this.ensureContentPadding();
809
- this.i.tk.bottom = +v;
810
- this._a("contentPaddingBottom", this.i.tk.bottom);
811
- this.i.tk = this.i.tk;
809
+ this.i.oi.bottom = +v;
810
+ this._a("contentPaddingBottom", this.i.oi.bottom);
811
+ this.i.oi = this.i.oi;
812
812
  },
813
- enumerable: true,
813
+ enumerable: false,
814
814
  configurable: true
815
815
  });
816
816
  Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingLeft", {
817
817
  get: function () {
818
- return this.i.tk ? this.i.tk.left : NaN;
818
+ return this.i.oi ? this.i.oi.left : NaN;
819
819
  },
820
820
  set: function (v) {
821
821
  this.ensureContentPadding();
822
- this.i.tk.left = +v;
823
- this._a("contentPaddingLeft", this.i.tk.left);
824
- this.i.tk = this.i.tk;
822
+ this.i.oi.left = +v;
823
+ this._a("contentPaddingLeft", this.i.oi.left);
824
+ this.i.oi = this.i.oi;
825
825
  },
826
- enumerable: true,
826
+ enumerable: false,
827
827
  configurable: true
828
828
  });
829
829
  Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingRight", {
830
830
  get: function () {
831
- return this.i.tk ? this.i.tk.right : NaN;
831
+ return this.i.oi ? this.i.oi.right : NaN;
832
832
  },
833
833
  set: function (v) {
834
834
  this.ensureContentPadding();
835
- this.i.tk.right = +v;
836
- this._a("contentPaddingRight", this.i.tk.right);
837
- this.i.tk = this.i.tk;
835
+ this.i.oi.right = +v;
836
+ this._a("contentPaddingRight", this.i.oi.right);
837
+ this.i.oi = this.i.oi;
838
838
  },
839
- enumerable: true,
839
+ enumerable: false,
840
840
  configurable: true
841
841
  });
842
842
  Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingTop", {
843
843
  get: function () {
844
- return this.i.tk ? this.i.tk.top : NaN;
844
+ return this.i.oi ? this.i.oi.top : NaN;
845
845
  },
846
846
  set: function (v) {
847
847
  this.ensureContentPadding();
848
- this.i.tk.top = +v;
849
- this._a("contentPaddingTop", this.i.tk.top);
850
- this.i.tk = this.i.tk;
848
+ this.i.oi.top = +v;
849
+ this._a("contentPaddingTop", this.i.oi.top);
850
+ this.i.oi = this.i.oi;
851
851
  },
852
- enumerable: true,
852
+ enumerable: false,
853
853
  configurable: true
854
854
  });
855
855
  IgcXInputGroupComponent.prototype.ensureContentPadding = function () {
856
- if (this.i.tk) {
856
+ if (this.i.oi) {
857
857
  return;
858
858
  }
859
- this.i.tk = new Thickness(2);
859
+ this.i.oi = new Thickness(2);
860
860
  };
861
861
  Object.defineProperty(IgcXInputGroupComponent.prototype, "underlineWidth", {
862
862
  /**
863
863
  * Gets or sets the width to use for the underline element.
864
864
  */
865
865
  get: function () {
866
- return this.i.h4;
866
+ return this.i.e8;
867
867
  },
868
868
  set: function (v) {
869
- this.i.h4 = +v;
870
- this._a("underlineWidth", this.i.h4);
869
+ this.i.e8 = +v;
870
+ this._a("underlineWidth", this.i.e8);
871
871
  },
872
- enumerable: true,
872
+ enumerable: false,
873
873
  configurable: true
874
874
  });
875
875
  Object.defineProperty(IgcXInputGroupComponent.prototype, "underlineRippleWidth", {
@@ -877,13 +877,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
877
877
  * Gets or sets the width to use for the underline element.
878
878
  */
879
879
  get: function () {
880
- return this.i.h3;
880
+ return this.i.e7;
881
881
  },
882
882
  set: function (v) {
883
- this.i.h3 = +v;
884
- this._a("underlineRippleWidth", this.i.h3);
883
+ this.i.e7 = +v;
884
+ this._a("underlineRippleWidth", this.i.e7);
885
885
  },
886
- enumerable: true,
886
+ enumerable: false,
887
887
  configurable: true
888
888
  });
889
889
  Object.defineProperty(IgcXInputGroupComponent.prototype, "hoverUnderlineWidth", {
@@ -891,13 +891,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
891
891
  * Gets or sets the width to use for the underline element when hovered.
892
892
  */
893
893
  get: function () {
894
- return this.i.hg;
894
+ return this.i.ek;
895
895
  },
896
896
  set: function (v) {
897
- this.i.hg = +v;
898
- this._a("hoverUnderlineWidth", this.i.hg);
897
+ this.i.ek = +v;
898
+ this._a("hoverUnderlineWidth", this.i.ek);
899
899
  },
900
- enumerable: true,
900
+ enumerable: false,
901
901
  configurable: true
902
902
  });
903
903
  Object.defineProperty(IgcXInputGroupComponent.prototype, "underlineColor", {
@@ -905,13 +905,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
905
905
  * Gets or sets the color to use for the underline element.
906
906
  */
907
907
  get: function () {
908
- return brushToString(this.i.s8);
908
+ return brushToString(this.i.n6);
909
909
  },
910
910
  set: function (v) {
911
- this.i.s8 = stringToBrush(v);
912
- this._a("underlineColor", brushToString(this.i.s8));
911
+ this.i.n6 = stringToBrush(v);
912
+ this._a("underlineColor", brushToString(this.i.n6));
913
913
  },
914
- enumerable: true,
914
+ enumerable: false,
915
915
  configurable: true
916
916
  });
917
917
  Object.defineProperty(IgcXInputGroupComponent.prototype, "underlineRippleColor", {
@@ -919,13 +919,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
919
919
  * Gets or sets the color to use for the underline ripple element.
920
920
  */
921
921
  get: function () {
922
- return brushToString(this.i.s9);
922
+ return brushToString(this.i.n7);
923
923
  },
924
924
  set: function (v) {
925
- this.i.s9 = stringToBrush(v);
926
- this._a("underlineRippleColor", brushToString(this.i.s9));
925
+ this.i.n7 = stringToBrush(v);
926
+ this._a("underlineRippleColor", brushToString(this.i.n7));
927
927
  },
928
- enumerable: true,
928
+ enumerable: false,
929
929
  configurable: true
930
930
  });
931
931
  Object.defineProperty(IgcXInputGroupComponent.prototype, "hoverUnderlineColor", {
@@ -933,13 +933,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
933
933
  * Gets or sets the color to use for the underline element.
934
934
  */
935
935
  get: function () {
936
- return brushToString(this.i.st);
936
+ return brushToString(this.i.nq);
937
937
  },
938
938
  set: function (v) {
939
- this.i.st = stringToBrush(v);
940
- this._a("hoverUnderlineColor", brushToString(this.i.st));
939
+ this.i.nq = stringToBrush(v);
940
+ this._a("hoverUnderlineColor", brushToString(this.i.nq));
941
941
  },
942
- enumerable: true,
942
+ enumerable: false,
943
943
  configurable: true
944
944
  });
945
945
  Object.defineProperty(IgcXInputGroupComponent.prototype, "focusUnderlineColor", {
@@ -947,13 +947,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
947
947
  * Gets or sets the color to use for the underline element.
948
948
  */
949
949
  get: function () {
950
- return brushToString(this.i.ss);
950
+ return brushToString(this.i.np);
951
951
  },
952
952
  set: function (v) {
953
- this.i.ss = stringToBrush(v);
954
- this._a("focusUnderlineColor", brushToString(this.i.ss));
953
+ this.i.np = stringToBrush(v);
954
+ this._a("focusUnderlineColor", brushToString(this.i.np));
955
955
  },
956
- enumerable: true,
956
+ enumerable: false,
957
957
  configurable: true
958
958
  });
959
959
  Object.defineProperty(IgcXInputGroupComponent.prototype, "underlineOpacity", {
@@ -961,13 +961,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
961
961
  * Gets or sets the color to use for the underline element.
962
962
  */
963
963
  get: function () {
964
- return this.i.h1;
964
+ return this.i.e5;
965
965
  },
966
966
  set: function (v) {
967
- this.i.h1 = +v;
968
- this._a("underlineOpacity", this.i.h1);
967
+ this.i.e5 = +v;
968
+ this._a("underlineOpacity", this.i.e5);
969
969
  },
970
- enumerable: true,
970
+ enumerable: false,
971
971
  configurable: true
972
972
  });
973
973
  Object.defineProperty(IgcXInputGroupComponent.prototype, "hoverUnderlineOpacity", {
@@ -975,13 +975,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
975
975
  * Gets or sets the color to use for the underline element.
976
976
  */
977
977
  get: function () {
978
- return this.i.hf;
978
+ return this.i.ej;
979
979
  },
980
980
  set: function (v) {
981
- this.i.hf = +v;
982
- this._a("hoverUnderlineOpacity", this.i.hf);
981
+ this.i.ej = +v;
982
+ this._a("hoverUnderlineOpacity", this.i.ej);
983
983
  },
984
- enumerable: true,
984
+ enumerable: false,
985
985
  configurable: true
986
986
  });
987
987
  Object.defineProperty(IgcXInputGroupComponent.prototype, "focusUnderlineOpacity", {
@@ -989,13 +989,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
989
989
  * Gets or sets the color to use for the underline element.
990
990
  */
991
991
  get: function () {
992
- return this.i.hd;
992
+ return this.i.eh;
993
993
  },
994
994
  set: function (v) {
995
- this.i.hd = +v;
996
- this._a("focusUnderlineOpacity", this.i.hd);
995
+ this.i.eh = +v;
996
+ this._a("focusUnderlineOpacity", this.i.eh);
997
997
  },
998
- enumerable: true,
998
+ enumerable: false,
999
999
  configurable: true
1000
1000
  });
1001
1001
  Object.defineProperty(IgcXInputGroupComponent.prototype, "focusUnderlineRippleOpacity", {
@@ -1003,13 +1003,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1003
1003
  * Gets or sets the opacity to use for the underline ripple element when focused.
1004
1004
  */
1005
1005
  get: function () {
1006
- return this.i.he;
1006
+ return this.i.ei;
1007
1007
  },
1008
1008
  set: function (v) {
1009
- this.i.he = +v;
1010
- this._a("focusUnderlineRippleOpacity", this.i.he);
1009
+ this.i.ei = +v;
1010
+ this._a("focusUnderlineRippleOpacity", this.i.ei);
1011
1011
  },
1012
- enumerable: true,
1012
+ enumerable: false,
1013
1013
  configurable: true
1014
1014
  });
1015
1015
  Object.defineProperty(IgcXInputGroupComponent.prototype, "underlineRippleOpacity", {
@@ -1017,13 +1017,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1017
1017
  * Gets or sets the opacity to use for the underline ripple element.
1018
1018
  */
1019
1019
  get: function () {
1020
- return this.i.h2;
1020
+ return this.i.e6;
1021
1021
  },
1022
1022
  set: function (v) {
1023
- this.i.h2 = +v;
1024
- this._a("underlineRippleOpacity", this.i.h2);
1023
+ this.i.e6 = +v;
1024
+ this._a("underlineRippleOpacity", this.i.e6);
1025
1025
  },
1026
- enumerable: true,
1026
+ enumerable: false,
1027
1027
  configurable: true
1028
1028
  });
1029
1029
  Object.defineProperty(IgcXInputGroupComponent.prototype, "backgroundColor", {
@@ -1031,13 +1031,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1031
1031
  * Gets or sets the background color to use for the input group.
1032
1032
  */
1033
1033
  get: function () {
1034
- return brushToString(this.i.oz);
1034
+ return brushToString(this.i.mc);
1035
1035
  },
1036
1036
  set: function (v) {
1037
- this.i.oz = stringToBrush(v);
1038
- this._a("backgroundColor", brushToString(this.i.oz));
1037
+ this.i.mc = stringToBrush(v);
1038
+ this._a("backgroundColor", brushToString(this.i.mc));
1039
1039
  },
1040
- enumerable: true,
1040
+ enumerable: false,
1041
1041
  configurable: true
1042
1042
  });
1043
1043
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeBorderWidth", {
@@ -1045,13 +1045,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1045
1045
  * Gets or sets the border width to use for the border of the item group when using type line.
1046
1046
  */
1047
1047
  get: function () {
1048
- return this.i.hh;
1048
+ return this.i.el;
1049
1049
  },
1050
1050
  set: function (v) {
1051
- this.i.hh = +v;
1052
- this._a("lineTypeBorderWidth", this.i.hh);
1051
+ this.i.el = +v;
1052
+ this._a("lineTypeBorderWidth", this.i.el);
1053
1053
  },
1054
- enumerable: true,
1054
+ enumerable: false,
1055
1055
  configurable: true
1056
1056
  });
1057
1057
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeFocusBorderWidth", {
@@ -1059,13 +1059,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1059
1059
  * Gets or sets the border width to use for the border of the item group when focused when type is line.
1060
1060
  */
1061
1061
  get: function () {
1062
- return this.i.hi;
1062
+ return this.i.em;
1063
1063
  },
1064
1064
  set: function (v) {
1065
- this.i.hi = +v;
1066
- this._a("lineTypeFocusBorderWidth", this.i.hi);
1065
+ this.i.em = +v;
1066
+ this._a("lineTypeFocusBorderWidth", this.i.em);
1067
1067
  },
1068
- enumerable: true,
1068
+ enumerable: false,
1069
1069
  configurable: true
1070
1070
  });
1071
1071
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeFocusBorderColor", {
@@ -1073,13 +1073,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1073
1073
  * Gets or sets the focus color to use the border of the input group when type is line.
1074
1074
  */
1075
1075
  get: function () {
1076
- return brushToString(this.i.sw);
1076
+ return brushToString(this.i.nt);
1077
1077
  },
1078
1078
  set: function (v) {
1079
- this.i.sw = stringToBrush(v);
1080
- this._a("lineTypeFocusBorderColor", brushToString(this.i.sw));
1079
+ this.i.nt = stringToBrush(v);
1080
+ this._a("lineTypeFocusBorderColor", brushToString(this.i.nt));
1081
1081
  },
1082
- enumerable: true,
1082
+ enumerable: false,
1083
1083
  configurable: true
1084
1084
  });
1085
1085
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeBorderColor", {
@@ -1087,143 +1087,143 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1087
1087
  * Gets or sets the color to use the border of the input group when type is line.
1088
1088
  */
1089
1089
  get: function () {
1090
- return brushToString(this.i.sv);
1090
+ return brushToString(this.i.ns);
1091
1091
  },
1092
1092
  set: function (v) {
1093
- this.i.sv = stringToBrush(v);
1094
- this._a("lineTypeBorderColor", brushToString(this.i.sv));
1093
+ this.i.ns = stringToBrush(v);
1094
+ this._a("lineTypeBorderColor", brushToString(this.i.ns));
1095
1095
  },
1096
- enumerable: true,
1096
+ enumerable: false,
1097
1097
  configurable: true
1098
1098
  });
1099
1099
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeCornerRadiusBottomRight", {
1100
1100
  get: function () {
1101
- return this.i.nk ? this.i.nk.b : NaN;
1101
+ return this.i.kx ? this.i.kx.b : NaN;
1102
1102
  },
1103
1103
  set: function (v) {
1104
1104
  this.ensureLineTypeCornerRadius();
1105
- this.i.nk.b = +v;
1106
- this._a("lineTypeCornerRadiusBottomRight", this.i.nk.b);
1107
- this.i.nk = this.i.nk;
1105
+ this.i.kx.b = +v;
1106
+ this._a("lineTypeCornerRadiusBottomRight", this.i.kx.b);
1107
+ this.i.kx = this.i.kx;
1108
1108
  },
1109
- enumerable: true,
1109
+ enumerable: false,
1110
1110
  configurable: true
1111
1111
  });
1112
1112
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeCornerRadiusBottomLeft", {
1113
1113
  get: function () {
1114
- return this.i.nk ? this.i.nk.a : NaN;
1114
+ return this.i.kx ? this.i.kx.a : NaN;
1115
1115
  },
1116
1116
  set: function (v) {
1117
1117
  this.ensureLineTypeCornerRadius();
1118
- this.i.nk.a = +v;
1119
- this._a("lineTypeCornerRadiusBottomLeft", this.i.nk.a);
1120
- this.i.nk = this.i.nk;
1118
+ this.i.kx.a = +v;
1119
+ this._a("lineTypeCornerRadiusBottomLeft", this.i.kx.a);
1120
+ this.i.kx = this.i.kx;
1121
1121
  },
1122
- enumerable: true,
1122
+ enumerable: false,
1123
1123
  configurable: true
1124
1124
  });
1125
1125
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeCornerRadiusTopLeft", {
1126
1126
  get: function () {
1127
- return this.i.nk ? this.i.nk.c : NaN;
1127
+ return this.i.kx ? this.i.kx.c : NaN;
1128
1128
  },
1129
1129
  set: function (v) {
1130
1130
  this.ensureLineTypeCornerRadius();
1131
- this.i.nk.c = +v;
1132
- this._a("lineTypeCornerRadiusTopLeft", this.i.nk.c);
1133
- this.i.nk = this.i.nk;
1131
+ this.i.kx.c = +v;
1132
+ this._a("lineTypeCornerRadiusTopLeft", this.i.kx.c);
1133
+ this.i.kx = this.i.kx;
1134
1134
  },
1135
- enumerable: true,
1135
+ enumerable: false,
1136
1136
  configurable: true
1137
1137
  });
1138
1138
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeCornerRadiusTopRight", {
1139
1139
  get: function () {
1140
- return this.i.nk ? this.i.nk.d : NaN;
1140
+ return this.i.kx ? this.i.kx.d : NaN;
1141
1141
  },
1142
1142
  set: function (v) {
1143
1143
  this.ensureLineTypeCornerRadius();
1144
- this.i.nk.d = +v;
1145
- this._a("lineTypeCornerRadiusTopRight", this.i.nk.d);
1146
- this.i.nk = this.i.nk;
1144
+ this.i.kx.d = +v;
1145
+ this._a("lineTypeCornerRadiusTopRight", this.i.kx.d);
1146
+ this.i.kx = this.i.kx;
1147
1147
  },
1148
- enumerable: true,
1148
+ enumerable: false,
1149
1149
  configurable: true
1150
1150
  });
1151
1151
  IgcXInputGroupComponent.prototype.ensureLineTypeCornerRadius = function () {
1152
- if (this.i.nk) {
1152
+ if (this.i.kx) {
1153
1153
  return;
1154
1154
  }
1155
- this.i.nk = new CornerRadius(2);
1155
+ this.i.kx = new CornerRadius(2);
1156
1156
  };
1157
1157
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingBottom", {
1158
1158
  get: function () {
1159
- return this.i.t0 ? this.i.t0.bottom : NaN;
1159
+ return this.i.on ? this.i.on.bottom : NaN;
1160
1160
  },
1161
1161
  set: function (v) {
1162
1162
  this.ensureLineTypeContentPadding();
1163
- this.i.t0.bottom = +v;
1164
- this._a("lineTypeContentPaddingBottom", this.i.t0.bottom);
1165
- this.i.t0 = this.i.t0;
1163
+ this.i.on.bottom = +v;
1164
+ this._a("lineTypeContentPaddingBottom", this.i.on.bottom);
1165
+ this.i.on = this.i.on;
1166
1166
  },
1167
- enumerable: true,
1167
+ enumerable: false,
1168
1168
  configurable: true
1169
1169
  });
1170
1170
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingLeft", {
1171
1171
  get: function () {
1172
- return this.i.t0 ? this.i.t0.left : NaN;
1172
+ return this.i.on ? this.i.on.left : NaN;
1173
1173
  },
1174
1174
  set: function (v) {
1175
1175
  this.ensureLineTypeContentPadding();
1176
- this.i.t0.left = +v;
1177
- this._a("lineTypeContentPaddingLeft", this.i.t0.left);
1178
- this.i.t0 = this.i.t0;
1176
+ this.i.on.left = +v;
1177
+ this._a("lineTypeContentPaddingLeft", this.i.on.left);
1178
+ this.i.on = this.i.on;
1179
1179
  },
1180
- enumerable: true,
1180
+ enumerable: false,
1181
1181
  configurable: true
1182
1182
  });
1183
1183
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingRight", {
1184
1184
  get: function () {
1185
- return this.i.t0 ? this.i.t0.right : NaN;
1185
+ return this.i.on ? this.i.on.right : NaN;
1186
1186
  },
1187
1187
  set: function (v) {
1188
1188
  this.ensureLineTypeContentPadding();
1189
- this.i.t0.right = +v;
1190
- this._a("lineTypeContentPaddingRight", this.i.t0.right);
1191
- this.i.t0 = this.i.t0;
1189
+ this.i.on.right = +v;
1190
+ this._a("lineTypeContentPaddingRight", this.i.on.right);
1191
+ this.i.on = this.i.on;
1192
1192
  },
1193
- enumerable: true,
1193
+ enumerable: false,
1194
1194
  configurable: true
1195
1195
  });
1196
1196
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingTop", {
1197
1197
  get: function () {
1198
- return this.i.t0 ? this.i.t0.top : NaN;
1198
+ return this.i.on ? this.i.on.top : NaN;
1199
1199
  },
1200
1200
  set: function (v) {
1201
1201
  this.ensureLineTypeContentPadding();
1202
- this.i.t0.top = +v;
1203
- this._a("lineTypeContentPaddingTop", this.i.t0.top);
1204
- this.i.t0 = this.i.t0;
1202
+ this.i.on.top = +v;
1203
+ this._a("lineTypeContentPaddingTop", this.i.on.top);
1204
+ this.i.on = this.i.on;
1205
1205
  },
1206
- enumerable: true,
1206
+ enumerable: false,
1207
1207
  configurable: true
1208
1208
  });
1209
1209
  IgcXInputGroupComponent.prototype.ensureLineTypeContentPadding = function () {
1210
- if (this.i.t0) {
1210
+ if (this.i.on) {
1211
1211
  return;
1212
1212
  }
1213
- this.i.t0 = new Thickness(2);
1213
+ this.i.on = new Thickness(2);
1214
1214
  };
1215
1215
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeUnderlineWidth", {
1216
1216
  /**
1217
1217
  * Gets or sets the width to use for the underline element when type is line.
1218
1218
  */
1219
1219
  get: function () {
1220
- return this.i.hq;
1220
+ return this.i.eu;
1221
1221
  },
1222
1222
  set: function (v) {
1223
- this.i.hq = +v;
1224
- this._a("lineTypeUnderlineWidth", this.i.hq);
1223
+ this.i.eu = +v;
1224
+ this._a("lineTypeUnderlineWidth", this.i.eu);
1225
1225
  },
1226
- enumerable: true,
1226
+ enumerable: false,
1227
1227
  configurable: true
1228
1228
  });
1229
1229
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeUnderlineRippleWidth", {
@@ -1231,13 +1231,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1231
1231
  * Gets or sets the width to use for the underline element when type is line.
1232
1232
  */
1233
1233
  get: function () {
1234
- return this.i.hp;
1234
+ return this.i.et;
1235
1235
  },
1236
1236
  set: function (v) {
1237
- this.i.hp = +v;
1238
- this._a("lineTypeUnderlineRippleWidth", this.i.hp);
1237
+ this.i.et = +v;
1238
+ this._a("lineTypeUnderlineRippleWidth", this.i.et);
1239
1239
  },
1240
- enumerable: true,
1240
+ enumerable: false,
1241
1241
  configurable: true
1242
1242
  });
1243
1243
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeHoverUnderlineWidth", {
@@ -1245,13 +1245,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1245
1245
  * Gets or sets the width to use for the underline element when hovered when type is line.
1246
1246
  */
1247
1247
  get: function () {
1248
- return this.i.hm;
1248
+ return this.i.eq;
1249
1249
  },
1250
1250
  set: function (v) {
1251
- this.i.hm = +v;
1252
- this._a("lineTypeHoverUnderlineWidth", this.i.hm);
1251
+ this.i.eq = +v;
1252
+ this._a("lineTypeHoverUnderlineWidth", this.i.eq);
1253
1253
  },
1254
- enumerable: true,
1254
+ enumerable: false,
1255
1255
  configurable: true
1256
1256
  });
1257
1257
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeUnderlineColor", {
@@ -1259,13 +1259,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1259
1259
  * Gets or sets the color to use for the underline element when type is line.
1260
1260
  */
1261
1261
  get: function () {
1262
- return brushToString(this.i.sz);
1262
+ return brushToString(this.i.nw);
1263
1263
  },
1264
1264
  set: function (v) {
1265
- this.i.sz = stringToBrush(v);
1266
- this._a("lineTypeUnderlineColor", brushToString(this.i.sz));
1265
+ this.i.nw = stringToBrush(v);
1266
+ this._a("lineTypeUnderlineColor", brushToString(this.i.nw));
1267
1267
  },
1268
- enumerable: true,
1268
+ enumerable: false,
1269
1269
  configurable: true
1270
1270
  });
1271
1271
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeUnderlineRippleColor", {
@@ -1273,13 +1273,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1273
1273
  * Gets or sets the color to use for the underline ripple element when type is line.
1274
1274
  */
1275
1275
  get: function () {
1276
- return brushToString(this.i.s0);
1276
+ return brushToString(this.i.nx);
1277
1277
  },
1278
1278
  set: function (v) {
1279
- this.i.s0 = stringToBrush(v);
1280
- this._a("lineTypeUnderlineRippleColor", brushToString(this.i.s0));
1279
+ this.i.nx = stringToBrush(v);
1280
+ this._a("lineTypeUnderlineRippleColor", brushToString(this.i.nx));
1281
1281
  },
1282
- enumerable: true,
1282
+ enumerable: false,
1283
1283
  configurable: true
1284
1284
  });
1285
1285
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeHoverUnderlineColor", {
@@ -1287,13 +1287,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1287
1287
  * Gets or sets the color to use for the underline element when type is line.
1288
1288
  */
1289
1289
  get: function () {
1290
- return brushToString(this.i.sy);
1290
+ return brushToString(this.i.nv);
1291
1291
  },
1292
1292
  set: function (v) {
1293
- this.i.sy = stringToBrush(v);
1294
- this._a("lineTypeHoverUnderlineColor", brushToString(this.i.sy));
1293
+ this.i.nv = stringToBrush(v);
1294
+ this._a("lineTypeHoverUnderlineColor", brushToString(this.i.nv));
1295
1295
  },
1296
- enumerable: true,
1296
+ enumerable: false,
1297
1297
  configurable: true
1298
1298
  });
1299
1299
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeFocusUnderlineColor", {
@@ -1301,13 +1301,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1301
1301
  * Gets or sets the color to use for the underline element when type is line.
1302
1302
  */
1303
1303
  get: function () {
1304
- return brushToString(this.i.sx);
1304
+ return brushToString(this.i.nu);
1305
1305
  },
1306
1306
  set: function (v) {
1307
- this.i.sx = stringToBrush(v);
1308
- this._a("lineTypeFocusUnderlineColor", brushToString(this.i.sx));
1307
+ this.i.nu = stringToBrush(v);
1308
+ this._a("lineTypeFocusUnderlineColor", brushToString(this.i.nu));
1309
1309
  },
1310
- enumerable: true,
1310
+ enumerable: false,
1311
1311
  configurable: true
1312
1312
  });
1313
1313
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeUnderlineOpacity", {
@@ -1315,13 +1315,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1315
1315
  * Gets or sets the color to use for the underline element when type is line.
1316
1316
  */
1317
1317
  get: function () {
1318
- return this.i.hn;
1318
+ return this.i.er;
1319
1319
  },
1320
1320
  set: function (v) {
1321
- this.i.hn = +v;
1322
- this._a("lineTypeUnderlineOpacity", this.i.hn);
1321
+ this.i.er = +v;
1322
+ this._a("lineTypeUnderlineOpacity", this.i.er);
1323
1323
  },
1324
- enumerable: true,
1324
+ enumerable: false,
1325
1325
  configurable: true
1326
1326
  });
1327
1327
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeHoverUnderlineOpacity", {
@@ -1329,13 +1329,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1329
1329
  * Gets or sets the color to use for the underline element when type is line.
1330
1330
  */
1331
1331
  get: function () {
1332
- return this.i.hl;
1332
+ return this.i.ep;
1333
1333
  },
1334
1334
  set: function (v) {
1335
- this.i.hl = +v;
1336
- this._a("lineTypeHoverUnderlineOpacity", this.i.hl);
1335
+ this.i.ep = +v;
1336
+ this._a("lineTypeHoverUnderlineOpacity", this.i.ep);
1337
1337
  },
1338
- enumerable: true,
1338
+ enumerable: false,
1339
1339
  configurable: true
1340
1340
  });
1341
1341
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeFocusUnderlineOpacity", {
@@ -1343,13 +1343,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1343
1343
  * Gets or sets the color to use for the underline element when type is line.
1344
1344
  */
1345
1345
  get: function () {
1346
- return this.i.hj;
1346
+ return this.i.en;
1347
1347
  },
1348
1348
  set: function (v) {
1349
- this.i.hj = +v;
1350
- this._a("lineTypeFocusUnderlineOpacity", this.i.hj);
1349
+ this.i.en = +v;
1350
+ this._a("lineTypeFocusUnderlineOpacity", this.i.en);
1351
1351
  },
1352
- enumerable: true,
1352
+ enumerable: false,
1353
1353
  configurable: true
1354
1354
  });
1355
1355
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeFocusUnderlineRippleOpacity", {
@@ -1357,13 +1357,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1357
1357
  * Gets or sets the opacity to use for the underline ripple element when focused when type is line.
1358
1358
  */
1359
1359
  get: function () {
1360
- return this.i.hk;
1360
+ return this.i.eo;
1361
1361
  },
1362
1362
  set: function (v) {
1363
- this.i.hk = +v;
1364
- this._a("lineTypeFocusUnderlineRippleOpacity", this.i.hk);
1363
+ this.i.eo = +v;
1364
+ this._a("lineTypeFocusUnderlineRippleOpacity", this.i.eo);
1365
1365
  },
1366
- enumerable: true,
1366
+ enumerable: false,
1367
1367
  configurable: true
1368
1368
  });
1369
1369
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeUnderlineRippleOpacity", {
@@ -1371,13 +1371,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1371
1371
  * Gets or sets the opacity to use for the underline ripple element when type is line.
1372
1372
  */
1373
1373
  get: function () {
1374
- return this.i.ho;
1374
+ return this.i.es;
1375
1375
  },
1376
1376
  set: function (v) {
1377
- this.i.ho = +v;
1378
- this._a("lineTypeUnderlineRippleOpacity", this.i.ho);
1377
+ this.i.es = +v;
1378
+ this._a("lineTypeUnderlineRippleOpacity", this.i.es);
1379
1379
  },
1380
- enumerable: true,
1380
+ enumerable: false,
1381
1381
  configurable: true
1382
1382
  });
1383
1383
  Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeBackgroundColor", {
@@ -1385,13 +1385,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1385
1385
  * Gets or sets the background color to use for the input group when type is line.
1386
1386
  */
1387
1387
  get: function () {
1388
- return brushToString(this.i.su);
1388
+ return brushToString(this.i.nr);
1389
1389
  },
1390
1390
  set: function (v) {
1391
- this.i.su = stringToBrush(v);
1392
- this._a("lineTypeBackgroundColor", brushToString(this.i.su));
1391
+ this.i.nr = stringToBrush(v);
1392
+ this._a("lineTypeBackgroundColor", brushToString(this.i.nr));
1393
1393
  },
1394
- enumerable: true,
1394
+ enumerable: false,
1395
1395
  configurable: true
1396
1396
  });
1397
1397
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeBorderWidth", {
@@ -1399,13 +1399,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1399
1399
  * Gets or sets the border width to use for the border of the item group when using type line.
1400
1400
  */
1401
1401
  get: function () {
1402
- return this.i.cv;
1402
+ return this.i.c1;
1403
1403
  },
1404
1404
  set: function (v) {
1405
- this.i.cv = +v;
1406
- this._a("boxTypeBorderWidth", this.i.cv);
1405
+ this.i.c1 = +v;
1406
+ this._a("boxTypeBorderWidth", this.i.c1);
1407
1407
  },
1408
- enumerable: true,
1408
+ enumerable: false,
1409
1409
  configurable: true
1410
1410
  });
1411
1411
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeFocusBorderWidth", {
@@ -1413,13 +1413,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1413
1413
  * Gets or sets the border width to use for the border of the item group when focused when type is box.
1414
1414
  */
1415
1415
  get: function () {
1416
- return this.i.cw;
1416
+ return this.i.c2;
1417
1417
  },
1418
1418
  set: function (v) {
1419
- this.i.cw = +v;
1420
- this._a("boxTypeFocusBorderWidth", this.i.cw);
1419
+ this.i.c2 = +v;
1420
+ this._a("boxTypeFocusBorderWidth", this.i.c2);
1421
1421
  },
1422
- enumerable: true,
1422
+ enumerable: false,
1423
1423
  configurable: true
1424
1424
  });
1425
1425
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeFocusBorderColor", {
@@ -1427,13 +1427,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1427
1427
  * Gets or sets the focus color to use the border of the input group when type is box.
1428
1428
  */
1429
1429
  get: function () {
1430
- return brushToString(this.i.pa);
1430
+ return brushToString(this.i.mn);
1431
1431
  },
1432
1432
  set: function (v) {
1433
- this.i.pa = stringToBrush(v);
1434
- this._a("boxTypeFocusBorderColor", brushToString(this.i.pa));
1433
+ this.i.mn = stringToBrush(v);
1434
+ this._a("boxTypeFocusBorderColor", brushToString(this.i.mn));
1435
1435
  },
1436
- enumerable: true,
1436
+ enumerable: false,
1437
1437
  configurable: true
1438
1438
  });
1439
1439
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeBorderColor", {
@@ -1441,143 +1441,143 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1441
1441
  * Gets or sets the color to use the border of the input group when type is box.
1442
1442
  */
1443
1443
  get: function () {
1444
- return brushToString(this.i.o9);
1444
+ return brushToString(this.i.mm);
1445
1445
  },
1446
1446
  set: function (v) {
1447
- this.i.o9 = stringToBrush(v);
1448
- this._a("boxTypeBorderColor", brushToString(this.i.o9));
1447
+ this.i.mm = stringToBrush(v);
1448
+ this._a("boxTypeBorderColor", brushToString(this.i.mm));
1449
1449
  },
1450
- enumerable: true,
1450
+ enumerable: false,
1451
1451
  configurable: true
1452
1452
  });
1453
1453
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeCornerRadiusBottomRight", {
1454
1454
  get: function () {
1455
- return this.i.m2 ? this.i.m2.b : NaN;
1455
+ return this.i.kq ? this.i.kq.b : NaN;
1456
1456
  },
1457
1457
  set: function (v) {
1458
1458
  this.ensureBoxTypeCornerRadius();
1459
- this.i.m2.b = +v;
1460
- this._a("boxTypeCornerRadiusBottomRight", this.i.m2.b);
1461
- this.i.m2 = this.i.m2;
1459
+ this.i.kq.b = +v;
1460
+ this._a("boxTypeCornerRadiusBottomRight", this.i.kq.b);
1461
+ this.i.kq = this.i.kq;
1462
1462
  },
1463
- enumerable: true,
1463
+ enumerable: false,
1464
1464
  configurable: true
1465
1465
  });
1466
1466
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeCornerRadiusBottomLeft", {
1467
1467
  get: function () {
1468
- return this.i.m2 ? this.i.m2.a : NaN;
1468
+ return this.i.kq ? this.i.kq.a : NaN;
1469
1469
  },
1470
1470
  set: function (v) {
1471
1471
  this.ensureBoxTypeCornerRadius();
1472
- this.i.m2.a = +v;
1473
- this._a("boxTypeCornerRadiusBottomLeft", this.i.m2.a);
1474
- this.i.m2 = this.i.m2;
1472
+ this.i.kq.a = +v;
1473
+ this._a("boxTypeCornerRadiusBottomLeft", this.i.kq.a);
1474
+ this.i.kq = this.i.kq;
1475
1475
  },
1476
- enumerable: true,
1476
+ enumerable: false,
1477
1477
  configurable: true
1478
1478
  });
1479
1479
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeCornerRadiusTopLeft", {
1480
1480
  get: function () {
1481
- return this.i.m2 ? this.i.m2.c : NaN;
1481
+ return this.i.kq ? this.i.kq.c : NaN;
1482
1482
  },
1483
1483
  set: function (v) {
1484
1484
  this.ensureBoxTypeCornerRadius();
1485
- this.i.m2.c = +v;
1486
- this._a("boxTypeCornerRadiusTopLeft", this.i.m2.c);
1487
- this.i.m2 = this.i.m2;
1485
+ this.i.kq.c = +v;
1486
+ this._a("boxTypeCornerRadiusTopLeft", this.i.kq.c);
1487
+ this.i.kq = this.i.kq;
1488
1488
  },
1489
- enumerable: true,
1489
+ enumerable: false,
1490
1490
  configurable: true
1491
1491
  });
1492
1492
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeCornerRadiusTopRight", {
1493
1493
  get: function () {
1494
- return this.i.m2 ? this.i.m2.d : NaN;
1494
+ return this.i.kq ? this.i.kq.d : NaN;
1495
1495
  },
1496
1496
  set: function (v) {
1497
1497
  this.ensureBoxTypeCornerRadius();
1498
- this.i.m2.d = +v;
1499
- this._a("boxTypeCornerRadiusTopRight", this.i.m2.d);
1500
- this.i.m2 = this.i.m2;
1498
+ this.i.kq.d = +v;
1499
+ this._a("boxTypeCornerRadiusTopRight", this.i.kq.d);
1500
+ this.i.kq = this.i.kq;
1501
1501
  },
1502
- enumerable: true,
1502
+ enumerable: false,
1503
1503
  configurable: true
1504
1504
  });
1505
1505
  IgcXInputGroupComponent.prototype.ensureBoxTypeCornerRadius = function () {
1506
- if (this.i.m2) {
1506
+ if (this.i.kq) {
1507
1507
  return;
1508
1508
  }
1509
- this.i.m2 = new CornerRadius(2);
1509
+ this.i.kq = new CornerRadius(2);
1510
1510
  };
1511
1511
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingBottom", {
1512
1512
  get: function () {
1513
- return this.i.ti ? this.i.ti.bottom : NaN;
1513
+ return this.i.og ? this.i.og.bottom : NaN;
1514
1514
  },
1515
1515
  set: function (v) {
1516
1516
  this.ensureBoxTypeContentPadding();
1517
- this.i.ti.bottom = +v;
1518
- this._a("boxTypeContentPaddingBottom", this.i.ti.bottom);
1519
- this.i.ti = this.i.ti;
1517
+ this.i.og.bottom = +v;
1518
+ this._a("boxTypeContentPaddingBottom", this.i.og.bottom);
1519
+ this.i.og = this.i.og;
1520
1520
  },
1521
- enumerable: true,
1521
+ enumerable: false,
1522
1522
  configurable: true
1523
1523
  });
1524
1524
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingLeft", {
1525
1525
  get: function () {
1526
- return this.i.ti ? this.i.ti.left : NaN;
1526
+ return this.i.og ? this.i.og.left : NaN;
1527
1527
  },
1528
1528
  set: function (v) {
1529
1529
  this.ensureBoxTypeContentPadding();
1530
- this.i.ti.left = +v;
1531
- this._a("boxTypeContentPaddingLeft", this.i.ti.left);
1532
- this.i.ti = this.i.ti;
1530
+ this.i.og.left = +v;
1531
+ this._a("boxTypeContentPaddingLeft", this.i.og.left);
1532
+ this.i.og = this.i.og;
1533
1533
  },
1534
- enumerable: true,
1534
+ enumerable: false,
1535
1535
  configurable: true
1536
1536
  });
1537
1537
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingRight", {
1538
1538
  get: function () {
1539
- return this.i.ti ? this.i.ti.right : NaN;
1539
+ return this.i.og ? this.i.og.right : NaN;
1540
1540
  },
1541
1541
  set: function (v) {
1542
1542
  this.ensureBoxTypeContentPadding();
1543
- this.i.ti.right = +v;
1544
- this._a("boxTypeContentPaddingRight", this.i.ti.right);
1545
- this.i.ti = this.i.ti;
1543
+ this.i.og.right = +v;
1544
+ this._a("boxTypeContentPaddingRight", this.i.og.right);
1545
+ this.i.og = this.i.og;
1546
1546
  },
1547
- enumerable: true,
1547
+ enumerable: false,
1548
1548
  configurable: true
1549
1549
  });
1550
1550
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingTop", {
1551
1551
  get: function () {
1552
- return this.i.ti ? this.i.ti.top : NaN;
1552
+ return this.i.og ? this.i.og.top : NaN;
1553
1553
  },
1554
1554
  set: function (v) {
1555
1555
  this.ensureBoxTypeContentPadding();
1556
- this.i.ti.top = +v;
1557
- this._a("boxTypeContentPaddingTop", this.i.ti.top);
1558
- this.i.ti = this.i.ti;
1556
+ this.i.og.top = +v;
1557
+ this._a("boxTypeContentPaddingTop", this.i.og.top);
1558
+ this.i.og = this.i.og;
1559
1559
  },
1560
- enumerable: true,
1560
+ enumerable: false,
1561
1561
  configurable: true
1562
1562
  });
1563
1563
  IgcXInputGroupComponent.prototype.ensureBoxTypeContentPadding = function () {
1564
- if (this.i.ti) {
1564
+ if (this.i.og) {
1565
1565
  return;
1566
1566
  }
1567
- this.i.ti = new Thickness(2);
1567
+ this.i.og = new Thickness(2);
1568
1568
  };
1569
1569
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeUnderlineWidth", {
1570
1570
  /**
1571
1571
  * Gets or sets the width to use for the underline element when type is box.
1572
1572
  */
1573
1573
  get: function () {
1574
- return this.i.c4;
1574
+ return this.i.da;
1575
1575
  },
1576
1576
  set: function (v) {
1577
- this.i.c4 = +v;
1578
- this._a("boxTypeUnderlineWidth", this.i.c4);
1577
+ this.i.da = +v;
1578
+ this._a("boxTypeUnderlineWidth", this.i.da);
1579
1579
  },
1580
- enumerable: true,
1580
+ enumerable: false,
1581
1581
  configurable: true
1582
1582
  });
1583
1583
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeUnderlineRippleWidth", {
@@ -1585,13 +1585,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1585
1585
  * Gets or sets the width to use for the underline element when type is box.
1586
1586
  */
1587
1587
  get: function () {
1588
- return this.i.c3;
1588
+ return this.i.c9;
1589
1589
  },
1590
1590
  set: function (v) {
1591
- this.i.c3 = +v;
1592
- this._a("boxTypeUnderlineRippleWidth", this.i.c3);
1591
+ this.i.c9 = +v;
1592
+ this._a("boxTypeUnderlineRippleWidth", this.i.c9);
1593
1593
  },
1594
- enumerable: true,
1594
+ enumerable: false,
1595
1595
  configurable: true
1596
1596
  });
1597
1597
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeHoverUnderlineWidth", {
@@ -1599,13 +1599,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1599
1599
  * Gets or sets the width to use for the underline element when hovered when type is box.
1600
1600
  */
1601
1601
  get: function () {
1602
- return this.i.c0;
1602
+ return this.i.c6;
1603
1603
  },
1604
1604
  set: function (v) {
1605
- this.i.c0 = +v;
1606
- this._a("boxTypeHoverUnderlineWidth", this.i.c0);
1605
+ this.i.c6 = +v;
1606
+ this._a("boxTypeHoverUnderlineWidth", this.i.c6);
1607
1607
  },
1608
- enumerable: true,
1608
+ enumerable: false,
1609
1609
  configurable: true
1610
1610
  });
1611
1611
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeUnderlineColor", {
@@ -1613,13 +1613,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1613
1613
  * Gets or sets the color to use for the underline element when type is box.
1614
1614
  */
1615
1615
  get: function () {
1616
- return brushToString(this.i.pd);
1616
+ return brushToString(this.i.mq);
1617
1617
  },
1618
1618
  set: function (v) {
1619
- this.i.pd = stringToBrush(v);
1620
- this._a("boxTypeUnderlineColor", brushToString(this.i.pd));
1619
+ this.i.mq = stringToBrush(v);
1620
+ this._a("boxTypeUnderlineColor", brushToString(this.i.mq));
1621
1621
  },
1622
- enumerable: true,
1622
+ enumerable: false,
1623
1623
  configurable: true
1624
1624
  });
1625
1625
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeUnderlineRippleColor", {
@@ -1627,13 +1627,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1627
1627
  * Gets or sets the color to use for the underline ripple element when type is box.
1628
1628
  */
1629
1629
  get: function () {
1630
- return brushToString(this.i.pe);
1630
+ return brushToString(this.i.mr);
1631
1631
  },
1632
1632
  set: function (v) {
1633
- this.i.pe = stringToBrush(v);
1634
- this._a("boxTypeUnderlineRippleColor", brushToString(this.i.pe));
1633
+ this.i.mr = stringToBrush(v);
1634
+ this._a("boxTypeUnderlineRippleColor", brushToString(this.i.mr));
1635
1635
  },
1636
- enumerable: true,
1636
+ enumerable: false,
1637
1637
  configurable: true
1638
1638
  });
1639
1639
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeHoverUnderlineColor", {
@@ -1641,13 +1641,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1641
1641
  * Gets or sets the color to use for the underline element when type is box.
1642
1642
  */
1643
1643
  get: function () {
1644
- return brushToString(this.i.pc);
1644
+ return brushToString(this.i.mp);
1645
1645
  },
1646
1646
  set: function (v) {
1647
- this.i.pc = stringToBrush(v);
1648
- this._a("boxTypeHoverUnderlineColor", brushToString(this.i.pc));
1647
+ this.i.mp = stringToBrush(v);
1648
+ this._a("boxTypeHoverUnderlineColor", brushToString(this.i.mp));
1649
1649
  },
1650
- enumerable: true,
1650
+ enumerable: false,
1651
1651
  configurable: true
1652
1652
  });
1653
1653
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeFocusUnderlineColor", {
@@ -1655,13 +1655,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1655
1655
  * Gets or sets the color to use for the underline element when type is box.
1656
1656
  */
1657
1657
  get: function () {
1658
- return brushToString(this.i.pb);
1658
+ return brushToString(this.i.mo);
1659
1659
  },
1660
1660
  set: function (v) {
1661
- this.i.pb = stringToBrush(v);
1662
- this._a("boxTypeFocusUnderlineColor", brushToString(this.i.pb));
1661
+ this.i.mo = stringToBrush(v);
1662
+ this._a("boxTypeFocusUnderlineColor", brushToString(this.i.mo));
1663
1663
  },
1664
- enumerable: true,
1664
+ enumerable: false,
1665
1665
  configurable: true
1666
1666
  });
1667
1667
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeUnderlineOpacity", {
@@ -1669,13 +1669,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1669
1669
  * Gets or sets the color to use for the underline element when type is box.
1670
1670
  */
1671
1671
  get: function () {
1672
- return this.i.c1;
1672
+ return this.i.c7;
1673
1673
  },
1674
1674
  set: function (v) {
1675
- this.i.c1 = +v;
1676
- this._a("boxTypeUnderlineOpacity", this.i.c1);
1675
+ this.i.c7 = +v;
1676
+ this._a("boxTypeUnderlineOpacity", this.i.c7);
1677
1677
  },
1678
- enumerable: true,
1678
+ enumerable: false,
1679
1679
  configurable: true
1680
1680
  });
1681
1681
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeHoverUnderlineOpacity", {
@@ -1683,13 +1683,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1683
1683
  * Gets or sets the color to use for the underline element when type is box.
1684
1684
  */
1685
1685
  get: function () {
1686
- return this.i.cz;
1686
+ return this.i.c5;
1687
1687
  },
1688
1688
  set: function (v) {
1689
- this.i.cz = +v;
1690
- this._a("boxTypeHoverUnderlineOpacity", this.i.cz);
1689
+ this.i.c5 = +v;
1690
+ this._a("boxTypeHoverUnderlineOpacity", this.i.c5);
1691
1691
  },
1692
- enumerable: true,
1692
+ enumerable: false,
1693
1693
  configurable: true
1694
1694
  });
1695
1695
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeFocusUnderlineOpacity", {
@@ -1697,13 +1697,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1697
1697
  * Gets or sets the color to use for the underline element when type is box.
1698
1698
  */
1699
1699
  get: function () {
1700
- return this.i.cx;
1700
+ return this.i.c3;
1701
1701
  },
1702
1702
  set: function (v) {
1703
- this.i.cx = +v;
1704
- this._a("boxTypeFocusUnderlineOpacity", this.i.cx);
1703
+ this.i.c3 = +v;
1704
+ this._a("boxTypeFocusUnderlineOpacity", this.i.c3);
1705
1705
  },
1706
- enumerable: true,
1706
+ enumerable: false,
1707
1707
  configurable: true
1708
1708
  });
1709
1709
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeFocusUnderlineRippleOpacity", {
@@ -1711,13 +1711,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1711
1711
  * Gets or sets the opacity to use for the underline ripple element when focused when type is box.
1712
1712
  */
1713
1713
  get: function () {
1714
- return this.i.cy;
1714
+ return this.i.c4;
1715
1715
  },
1716
1716
  set: function (v) {
1717
- this.i.cy = +v;
1718
- this._a("boxTypeFocusUnderlineRippleOpacity", this.i.cy);
1717
+ this.i.c4 = +v;
1718
+ this._a("boxTypeFocusUnderlineRippleOpacity", this.i.c4);
1719
1719
  },
1720
- enumerable: true,
1720
+ enumerable: false,
1721
1721
  configurable: true
1722
1722
  });
1723
1723
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeUnderlineRippleOpacity", {
@@ -1725,13 +1725,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1725
1725
  * Gets or sets the opacity to use for the underline ripple element when type is box.
1726
1726
  */
1727
1727
  get: function () {
1728
- return this.i.c2;
1728
+ return this.i.c8;
1729
1729
  },
1730
1730
  set: function (v) {
1731
- this.i.c2 = +v;
1732
- this._a("boxTypeUnderlineRippleOpacity", this.i.c2);
1731
+ this.i.c8 = +v;
1732
+ this._a("boxTypeUnderlineRippleOpacity", this.i.c8);
1733
1733
  },
1734
- enumerable: true,
1734
+ enumerable: false,
1735
1735
  configurable: true
1736
1736
  });
1737
1737
  Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeBackgroundColor", {
@@ -1739,13 +1739,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1739
1739
  * Gets or sets the background color to use for the input group when type is box.
1740
1740
  */
1741
1741
  get: function () {
1742
- return brushToString(this.i.o8);
1742
+ return brushToString(this.i.ml);
1743
1743
  },
1744
1744
  set: function (v) {
1745
- this.i.o8 = stringToBrush(v);
1746
- this._a("boxTypeBackgroundColor", brushToString(this.i.o8));
1745
+ this.i.ml = stringToBrush(v);
1746
+ this._a("boxTypeBackgroundColor", brushToString(this.i.ml));
1747
1747
  },
1748
- enumerable: true,
1748
+ enumerable: false,
1749
1749
  configurable: true
1750
1750
  });
1751
1751
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeBorderWidth", {
@@ -1753,13 +1753,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1753
1753
  * Gets or sets the border width to use for the border of the item group when using type line.
1754
1754
  */
1755
1755
  get: function () {
1756
- return this.i.ck;
1756
+ return this.i.cq;
1757
1757
  },
1758
1758
  set: function (v) {
1759
- this.i.ck = +v;
1760
- this._a("borderTypeBorderWidth", this.i.ck);
1759
+ this.i.cq = +v;
1760
+ this._a("borderTypeBorderWidth", this.i.cq);
1761
1761
  },
1762
- enumerable: true,
1762
+ enumerable: false,
1763
1763
  configurable: true
1764
1764
  });
1765
1765
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeFocusBorderWidth", {
@@ -1767,13 +1767,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1767
1767
  * Gets or sets the border width to use for the border of the item group when focused when type is border.
1768
1768
  */
1769
1769
  get: function () {
1770
- return this.i.cl;
1770
+ return this.i.cr;
1771
1771
  },
1772
1772
  set: function (v) {
1773
- this.i.cl = +v;
1774
- this._a("borderTypeFocusBorderWidth", this.i.cl);
1773
+ this.i.cr = +v;
1774
+ this._a("borderTypeFocusBorderWidth", this.i.cr);
1775
1775
  },
1776
- enumerable: true,
1776
+ enumerable: false,
1777
1777
  configurable: true
1778
1778
  });
1779
1779
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeFocusBorderColor", {
@@ -1781,13 +1781,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1781
1781
  * Gets or sets the focus color to use the border of the input group when type is border.
1782
1782
  */
1783
1783
  get: function () {
1784
- return brushToString(this.i.o3);
1784
+ return brushToString(this.i.mg);
1785
1785
  },
1786
1786
  set: function (v) {
1787
- this.i.o3 = stringToBrush(v);
1788
- this._a("borderTypeFocusBorderColor", brushToString(this.i.o3));
1787
+ this.i.mg = stringToBrush(v);
1788
+ this._a("borderTypeFocusBorderColor", brushToString(this.i.mg));
1789
1789
  },
1790
- enumerable: true,
1790
+ enumerable: false,
1791
1791
  configurable: true
1792
1792
  });
1793
1793
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeBorderColor", {
@@ -1795,143 +1795,143 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1795
1795
  * Gets or sets the color to use the border of the input group when type is border.
1796
1796
  */
1797
1797
  get: function () {
1798
- return brushToString(this.i.o2);
1798
+ return brushToString(this.i.mf);
1799
1799
  },
1800
1800
  set: function (v) {
1801
- this.i.o2 = stringToBrush(v);
1802
- this._a("borderTypeBorderColor", brushToString(this.i.o2));
1801
+ this.i.mf = stringToBrush(v);
1802
+ this._a("borderTypeBorderColor", brushToString(this.i.mf));
1803
1803
  },
1804
- enumerable: true,
1804
+ enumerable: false,
1805
1805
  configurable: true
1806
1806
  });
1807
1807
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeCornerRadiusBottomRight", {
1808
1808
  get: function () {
1809
- return this.i.m1 ? this.i.m1.b : NaN;
1809
+ return this.i.kp ? this.i.kp.b : NaN;
1810
1810
  },
1811
1811
  set: function (v) {
1812
1812
  this.ensureBorderTypeCornerRadius();
1813
- this.i.m1.b = +v;
1814
- this._a("borderTypeCornerRadiusBottomRight", this.i.m1.b);
1815
- this.i.m1 = this.i.m1;
1813
+ this.i.kp.b = +v;
1814
+ this._a("borderTypeCornerRadiusBottomRight", this.i.kp.b);
1815
+ this.i.kp = this.i.kp;
1816
1816
  },
1817
- enumerable: true,
1817
+ enumerable: false,
1818
1818
  configurable: true
1819
1819
  });
1820
1820
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeCornerRadiusBottomLeft", {
1821
1821
  get: function () {
1822
- return this.i.m1 ? this.i.m1.a : NaN;
1822
+ return this.i.kp ? this.i.kp.a : NaN;
1823
1823
  },
1824
1824
  set: function (v) {
1825
1825
  this.ensureBorderTypeCornerRadius();
1826
- this.i.m1.a = +v;
1827
- this._a("borderTypeCornerRadiusBottomLeft", this.i.m1.a);
1828
- this.i.m1 = this.i.m1;
1826
+ this.i.kp.a = +v;
1827
+ this._a("borderTypeCornerRadiusBottomLeft", this.i.kp.a);
1828
+ this.i.kp = this.i.kp;
1829
1829
  },
1830
- enumerable: true,
1830
+ enumerable: false,
1831
1831
  configurable: true
1832
1832
  });
1833
1833
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeCornerRadiusTopLeft", {
1834
1834
  get: function () {
1835
- return this.i.m1 ? this.i.m1.c : NaN;
1835
+ return this.i.kp ? this.i.kp.c : NaN;
1836
1836
  },
1837
1837
  set: function (v) {
1838
1838
  this.ensureBorderTypeCornerRadius();
1839
- this.i.m1.c = +v;
1840
- this._a("borderTypeCornerRadiusTopLeft", this.i.m1.c);
1841
- this.i.m1 = this.i.m1;
1839
+ this.i.kp.c = +v;
1840
+ this._a("borderTypeCornerRadiusTopLeft", this.i.kp.c);
1841
+ this.i.kp = this.i.kp;
1842
1842
  },
1843
- enumerable: true,
1843
+ enumerable: false,
1844
1844
  configurable: true
1845
1845
  });
1846
1846
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeCornerRadiusTopRight", {
1847
1847
  get: function () {
1848
- return this.i.m1 ? this.i.m1.d : NaN;
1848
+ return this.i.kp ? this.i.kp.d : NaN;
1849
1849
  },
1850
1850
  set: function (v) {
1851
1851
  this.ensureBorderTypeCornerRadius();
1852
- this.i.m1.d = +v;
1853
- this._a("borderTypeCornerRadiusTopRight", this.i.m1.d);
1854
- this.i.m1 = this.i.m1;
1852
+ this.i.kp.d = +v;
1853
+ this._a("borderTypeCornerRadiusTopRight", this.i.kp.d);
1854
+ this.i.kp = this.i.kp;
1855
1855
  },
1856
- enumerable: true,
1856
+ enumerable: false,
1857
1857
  configurable: true
1858
1858
  });
1859
1859
  IgcXInputGroupComponent.prototype.ensureBorderTypeCornerRadius = function () {
1860
- if (this.i.m1) {
1860
+ if (this.i.kp) {
1861
1861
  return;
1862
1862
  }
1863
- this.i.m1 = new CornerRadius(2);
1863
+ this.i.kp = new CornerRadius(2);
1864
1864
  };
1865
1865
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingBottom", {
1866
1866
  get: function () {
1867
- return this.i.th ? this.i.th.bottom : NaN;
1867
+ return this.i.of ? this.i.of.bottom : NaN;
1868
1868
  },
1869
1869
  set: function (v) {
1870
1870
  this.ensureBorderTypeContentPadding();
1871
- this.i.th.bottom = +v;
1872
- this._a("borderTypeContentPaddingBottom", this.i.th.bottom);
1873
- this.i.th = this.i.th;
1871
+ this.i.of.bottom = +v;
1872
+ this._a("borderTypeContentPaddingBottom", this.i.of.bottom);
1873
+ this.i.of = this.i.of;
1874
1874
  },
1875
- enumerable: true,
1875
+ enumerable: false,
1876
1876
  configurable: true
1877
1877
  });
1878
1878
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingLeft", {
1879
1879
  get: function () {
1880
- return this.i.th ? this.i.th.left : NaN;
1880
+ return this.i.of ? this.i.of.left : NaN;
1881
1881
  },
1882
1882
  set: function (v) {
1883
1883
  this.ensureBorderTypeContentPadding();
1884
- this.i.th.left = +v;
1885
- this._a("borderTypeContentPaddingLeft", this.i.th.left);
1886
- this.i.th = this.i.th;
1884
+ this.i.of.left = +v;
1885
+ this._a("borderTypeContentPaddingLeft", this.i.of.left);
1886
+ this.i.of = this.i.of;
1887
1887
  },
1888
- enumerable: true,
1888
+ enumerable: false,
1889
1889
  configurable: true
1890
1890
  });
1891
1891
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingRight", {
1892
1892
  get: function () {
1893
- return this.i.th ? this.i.th.right : NaN;
1893
+ return this.i.of ? this.i.of.right : NaN;
1894
1894
  },
1895
1895
  set: function (v) {
1896
1896
  this.ensureBorderTypeContentPadding();
1897
- this.i.th.right = +v;
1898
- this._a("borderTypeContentPaddingRight", this.i.th.right);
1899
- this.i.th = this.i.th;
1897
+ this.i.of.right = +v;
1898
+ this._a("borderTypeContentPaddingRight", this.i.of.right);
1899
+ this.i.of = this.i.of;
1900
1900
  },
1901
- enumerable: true,
1901
+ enumerable: false,
1902
1902
  configurable: true
1903
1903
  });
1904
1904
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingTop", {
1905
1905
  get: function () {
1906
- return this.i.th ? this.i.th.top : NaN;
1906
+ return this.i.of ? this.i.of.top : NaN;
1907
1907
  },
1908
1908
  set: function (v) {
1909
1909
  this.ensureBorderTypeContentPadding();
1910
- this.i.th.top = +v;
1911
- this._a("borderTypeContentPaddingTop", this.i.th.top);
1912
- this.i.th = this.i.th;
1910
+ this.i.of.top = +v;
1911
+ this._a("borderTypeContentPaddingTop", this.i.of.top);
1912
+ this.i.of = this.i.of;
1913
1913
  },
1914
- enumerable: true,
1914
+ enumerable: false,
1915
1915
  configurable: true
1916
1916
  });
1917
1917
  IgcXInputGroupComponent.prototype.ensureBorderTypeContentPadding = function () {
1918
- if (this.i.th) {
1918
+ if (this.i.of) {
1919
1919
  return;
1920
1920
  }
1921
- this.i.th = new Thickness(2);
1921
+ this.i.of = new Thickness(2);
1922
1922
  };
1923
1923
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeUnderlineWidth", {
1924
1924
  /**
1925
1925
  * Gets or sets the width to use for the underline element when type is border.
1926
1926
  */
1927
1927
  get: function () {
1928
- return this.i.ct;
1928
+ return this.i.cz;
1929
1929
  },
1930
1930
  set: function (v) {
1931
- this.i.ct = +v;
1932
- this._a("borderTypeUnderlineWidth", this.i.ct);
1931
+ this.i.cz = +v;
1932
+ this._a("borderTypeUnderlineWidth", this.i.cz);
1933
1933
  },
1934
- enumerable: true,
1934
+ enumerable: false,
1935
1935
  configurable: true
1936
1936
  });
1937
1937
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeUnderlineRippleWidth", {
@@ -1939,13 +1939,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1939
1939
  * Gets or sets the width to use for the underline element when type is border.
1940
1940
  */
1941
1941
  get: function () {
1942
- return this.i.cs;
1942
+ return this.i.cy;
1943
1943
  },
1944
1944
  set: function (v) {
1945
- this.i.cs = +v;
1946
- this._a("borderTypeUnderlineRippleWidth", this.i.cs);
1945
+ this.i.cy = +v;
1946
+ this._a("borderTypeUnderlineRippleWidth", this.i.cy);
1947
1947
  },
1948
- enumerable: true,
1948
+ enumerable: false,
1949
1949
  configurable: true
1950
1950
  });
1951
1951
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeHoverUnderlineWidth", {
@@ -1953,13 +1953,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1953
1953
  * Gets or sets the width to use for the underline element when hovered when type is border.
1954
1954
  */
1955
1955
  get: function () {
1956
- return this.i.cp;
1956
+ return this.i.cv;
1957
1957
  },
1958
1958
  set: function (v) {
1959
- this.i.cp = +v;
1960
- this._a("borderTypeHoverUnderlineWidth", this.i.cp);
1959
+ this.i.cv = +v;
1960
+ this._a("borderTypeHoverUnderlineWidth", this.i.cv);
1961
1961
  },
1962
- enumerable: true,
1962
+ enumerable: false,
1963
1963
  configurable: true
1964
1964
  });
1965
1965
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeUnderlineColor", {
@@ -1967,13 +1967,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1967
1967
  * Gets or sets the color to use for the underline element when type is border.
1968
1968
  */
1969
1969
  get: function () {
1970
- return brushToString(this.i.o6);
1970
+ return brushToString(this.i.mj);
1971
1971
  },
1972
1972
  set: function (v) {
1973
- this.i.o6 = stringToBrush(v);
1974
- this._a("borderTypeUnderlineColor", brushToString(this.i.o6));
1973
+ this.i.mj = stringToBrush(v);
1974
+ this._a("borderTypeUnderlineColor", brushToString(this.i.mj));
1975
1975
  },
1976
- enumerable: true,
1976
+ enumerable: false,
1977
1977
  configurable: true
1978
1978
  });
1979
1979
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeUnderlineRippleColor", {
@@ -1981,13 +1981,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1981
1981
  * Gets or sets the color to use for the underline ripple element when type is border.
1982
1982
  */
1983
1983
  get: function () {
1984
- return brushToString(this.i.o7);
1984
+ return brushToString(this.i.mk);
1985
1985
  },
1986
1986
  set: function (v) {
1987
- this.i.o7 = stringToBrush(v);
1988
- this._a("borderTypeUnderlineRippleColor", brushToString(this.i.o7));
1987
+ this.i.mk = stringToBrush(v);
1988
+ this._a("borderTypeUnderlineRippleColor", brushToString(this.i.mk));
1989
1989
  },
1990
- enumerable: true,
1990
+ enumerable: false,
1991
1991
  configurable: true
1992
1992
  });
1993
1993
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeHoverUnderlineColor", {
@@ -1995,13 +1995,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1995
1995
  * Gets or sets the color to use for the underline element when type is border.
1996
1996
  */
1997
1997
  get: function () {
1998
- return brushToString(this.i.o5);
1998
+ return brushToString(this.i.mi);
1999
1999
  },
2000
2000
  set: function (v) {
2001
- this.i.o5 = stringToBrush(v);
2002
- this._a("borderTypeHoverUnderlineColor", brushToString(this.i.o5));
2001
+ this.i.mi = stringToBrush(v);
2002
+ this._a("borderTypeHoverUnderlineColor", brushToString(this.i.mi));
2003
2003
  },
2004
- enumerable: true,
2004
+ enumerable: false,
2005
2005
  configurable: true
2006
2006
  });
2007
2007
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeFocusUnderlineColor", {
@@ -2009,13 +2009,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2009
2009
  * Gets or sets the color to use for the underline element when type is border.
2010
2010
  */
2011
2011
  get: function () {
2012
- return brushToString(this.i.o4);
2012
+ return brushToString(this.i.mh);
2013
2013
  },
2014
2014
  set: function (v) {
2015
- this.i.o4 = stringToBrush(v);
2016
- this._a("borderTypeFocusUnderlineColor", brushToString(this.i.o4));
2015
+ this.i.mh = stringToBrush(v);
2016
+ this._a("borderTypeFocusUnderlineColor", brushToString(this.i.mh));
2017
2017
  },
2018
- enumerable: true,
2018
+ enumerable: false,
2019
2019
  configurable: true
2020
2020
  });
2021
2021
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeUnderlineOpacity", {
@@ -2023,13 +2023,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2023
2023
  * Gets or sets the color to use for the underline element when type is border.
2024
2024
  */
2025
2025
  get: function () {
2026
- return this.i.cq;
2026
+ return this.i.cw;
2027
2027
  },
2028
2028
  set: function (v) {
2029
- this.i.cq = +v;
2030
- this._a("borderTypeUnderlineOpacity", this.i.cq);
2029
+ this.i.cw = +v;
2030
+ this._a("borderTypeUnderlineOpacity", this.i.cw);
2031
2031
  },
2032
- enumerable: true,
2032
+ enumerable: false,
2033
2033
  configurable: true
2034
2034
  });
2035
2035
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeHoverUnderlineOpacity", {
@@ -2037,13 +2037,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2037
2037
  * Gets or sets the color to use for the underline element when type is border.
2038
2038
  */
2039
2039
  get: function () {
2040
- return this.i.co;
2040
+ return this.i.cu;
2041
2041
  },
2042
2042
  set: function (v) {
2043
- this.i.co = +v;
2044
- this._a("borderTypeHoverUnderlineOpacity", this.i.co);
2043
+ this.i.cu = +v;
2044
+ this._a("borderTypeHoverUnderlineOpacity", this.i.cu);
2045
2045
  },
2046
- enumerable: true,
2046
+ enumerable: false,
2047
2047
  configurable: true
2048
2048
  });
2049
2049
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeFocusUnderlineOpacity", {
@@ -2051,13 +2051,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2051
2051
  * Gets or sets the color to use for the underline element when type is border.
2052
2052
  */
2053
2053
  get: function () {
2054
- return this.i.cm;
2054
+ return this.i.cs;
2055
2055
  },
2056
2056
  set: function (v) {
2057
- this.i.cm = +v;
2058
- this._a("borderTypeFocusUnderlineOpacity", this.i.cm);
2057
+ this.i.cs = +v;
2058
+ this._a("borderTypeFocusUnderlineOpacity", this.i.cs);
2059
2059
  },
2060
- enumerable: true,
2060
+ enumerable: false,
2061
2061
  configurable: true
2062
2062
  });
2063
2063
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeFocusUnderlineRippleOpacity", {
@@ -2065,13 +2065,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2065
2065
  * Gets or sets the opacity to use for the underline ripple element when focused when type is border.
2066
2066
  */
2067
2067
  get: function () {
2068
- return this.i.cn;
2068
+ return this.i.ct;
2069
2069
  },
2070
2070
  set: function (v) {
2071
- this.i.cn = +v;
2072
- this._a("borderTypeFocusUnderlineRippleOpacity", this.i.cn);
2071
+ this.i.ct = +v;
2072
+ this._a("borderTypeFocusUnderlineRippleOpacity", this.i.ct);
2073
2073
  },
2074
- enumerable: true,
2074
+ enumerable: false,
2075
2075
  configurable: true
2076
2076
  });
2077
2077
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeUnderlineRippleOpacity", {
@@ -2079,13 +2079,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2079
2079
  * Gets or sets the opacity to use for the underline ripple element when type is border.
2080
2080
  */
2081
2081
  get: function () {
2082
- return this.i.cr;
2082
+ return this.i.cx;
2083
2083
  },
2084
2084
  set: function (v) {
2085
- this.i.cr = +v;
2086
- this._a("borderTypeUnderlineRippleOpacity", this.i.cr);
2085
+ this.i.cx = +v;
2086
+ this._a("borderTypeUnderlineRippleOpacity", this.i.cx);
2087
2087
  },
2088
- enumerable: true,
2088
+ enumerable: false,
2089
2089
  configurable: true
2090
2090
  });
2091
2091
  Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeBackgroundColor", {
@@ -2093,13 +2093,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2093
2093
  * Gets or sets the background color to use for the input group when type is border.
2094
2094
  */
2095
2095
  get: function () {
2096
- return brushToString(this.i.o1);
2096
+ return brushToString(this.i.me);
2097
2097
  },
2098
2098
  set: function (v) {
2099
- this.i.o1 = stringToBrush(v);
2100
- this._a("borderTypeBackgroundColor", brushToString(this.i.o1));
2099
+ this.i.me = stringToBrush(v);
2100
+ this._a("borderTypeBackgroundColor", brushToString(this.i.me));
2101
2101
  },
2102
- enumerable: true,
2102
+ enumerable: false,
2103
2103
  configurable: true
2104
2104
  });
2105
2105
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeBorderWidth", {
@@ -2107,13 +2107,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2107
2107
  * Gets or sets the search width to use for the border of the item group when using type line.
2108
2108
  */
2109
2109
  get: function () {
2110
- return this.i.hr;
2110
+ return this.i.ev;
2111
2111
  },
2112
2112
  set: function (v) {
2113
- this.i.hr = +v;
2114
- this._a("searchTypeBorderWidth", this.i.hr);
2113
+ this.i.ev = +v;
2114
+ this._a("searchTypeBorderWidth", this.i.ev);
2115
2115
  },
2116
- enumerable: true,
2116
+ enumerable: false,
2117
2117
  configurable: true
2118
2118
  });
2119
2119
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeFocusBorderWidth", {
@@ -2121,13 +2121,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2121
2121
  * Gets or sets the search width to use for the border of the item group when focused when type is search.
2122
2122
  */
2123
2123
  get: function () {
2124
- return this.i.hs;
2124
+ return this.i.ew;
2125
2125
  },
2126
2126
  set: function (v) {
2127
- this.i.hs = +v;
2128
- this._a("searchTypeFocusBorderWidth", this.i.hs);
2127
+ this.i.ew = +v;
2128
+ this._a("searchTypeFocusBorderWidth", this.i.ew);
2129
2129
  },
2130
- enumerable: true,
2130
+ enumerable: false,
2131
2131
  configurable: true
2132
2132
  });
2133
2133
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeFocusBorderColor", {
@@ -2135,13 +2135,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2135
2135
  * Gets or sets the focus color to use the search of the input group when type is search.
2136
2136
  */
2137
2137
  get: function () {
2138
- return brushToString(this.i.s3);
2138
+ return brushToString(this.i.n0);
2139
2139
  },
2140
2140
  set: function (v) {
2141
- this.i.s3 = stringToBrush(v);
2142
- this._a("searchTypeFocusBorderColor", brushToString(this.i.s3));
2141
+ this.i.n0 = stringToBrush(v);
2142
+ this._a("searchTypeFocusBorderColor", brushToString(this.i.n0));
2143
2143
  },
2144
- enumerable: true,
2144
+ enumerable: false,
2145
2145
  configurable: true
2146
2146
  });
2147
2147
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeBorderColor", {
@@ -2149,143 +2149,143 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2149
2149
  * Gets or sets the color to use the search of the input group when type is search.
2150
2150
  */
2151
2151
  get: function () {
2152
- return brushToString(this.i.s2);
2152
+ return brushToString(this.i.nz);
2153
2153
  },
2154
2154
  set: function (v) {
2155
- this.i.s2 = stringToBrush(v);
2156
- this._a("searchTypeBorderColor", brushToString(this.i.s2));
2155
+ this.i.nz = stringToBrush(v);
2156
+ this._a("searchTypeBorderColor", brushToString(this.i.nz));
2157
2157
  },
2158
- enumerable: true,
2158
+ enumerable: false,
2159
2159
  configurable: true
2160
2160
  });
2161
2161
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeCornerRadiusBottomRight", {
2162
2162
  get: function () {
2163
- return this.i.nl ? this.i.nl.b : NaN;
2163
+ return this.i.ky ? this.i.ky.b : NaN;
2164
2164
  },
2165
2165
  set: function (v) {
2166
2166
  this.ensureSearchTypeCornerRadius();
2167
- this.i.nl.b = +v;
2168
- this._a("searchTypeCornerRadiusBottomRight", this.i.nl.b);
2169
- this.i.nl = this.i.nl;
2167
+ this.i.ky.b = +v;
2168
+ this._a("searchTypeCornerRadiusBottomRight", this.i.ky.b);
2169
+ this.i.ky = this.i.ky;
2170
2170
  },
2171
- enumerable: true,
2171
+ enumerable: false,
2172
2172
  configurable: true
2173
2173
  });
2174
2174
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeCornerRadiusBottomLeft", {
2175
2175
  get: function () {
2176
- return this.i.nl ? this.i.nl.a : NaN;
2176
+ return this.i.ky ? this.i.ky.a : NaN;
2177
2177
  },
2178
2178
  set: function (v) {
2179
2179
  this.ensureSearchTypeCornerRadius();
2180
- this.i.nl.a = +v;
2181
- this._a("searchTypeCornerRadiusBottomLeft", this.i.nl.a);
2182
- this.i.nl = this.i.nl;
2180
+ this.i.ky.a = +v;
2181
+ this._a("searchTypeCornerRadiusBottomLeft", this.i.ky.a);
2182
+ this.i.ky = this.i.ky;
2183
2183
  },
2184
- enumerable: true,
2184
+ enumerable: false,
2185
2185
  configurable: true
2186
2186
  });
2187
2187
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeCornerRadiusTopLeft", {
2188
2188
  get: function () {
2189
- return this.i.nl ? this.i.nl.c : NaN;
2189
+ return this.i.ky ? this.i.ky.c : NaN;
2190
2190
  },
2191
2191
  set: function (v) {
2192
2192
  this.ensureSearchTypeCornerRadius();
2193
- this.i.nl.c = +v;
2194
- this._a("searchTypeCornerRadiusTopLeft", this.i.nl.c);
2195
- this.i.nl = this.i.nl;
2193
+ this.i.ky.c = +v;
2194
+ this._a("searchTypeCornerRadiusTopLeft", this.i.ky.c);
2195
+ this.i.ky = this.i.ky;
2196
2196
  },
2197
- enumerable: true,
2197
+ enumerable: false,
2198
2198
  configurable: true
2199
2199
  });
2200
2200
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeCornerRadiusTopRight", {
2201
2201
  get: function () {
2202
- return this.i.nl ? this.i.nl.d : NaN;
2202
+ return this.i.ky ? this.i.ky.d : NaN;
2203
2203
  },
2204
2204
  set: function (v) {
2205
2205
  this.ensureSearchTypeCornerRadius();
2206
- this.i.nl.d = +v;
2207
- this._a("searchTypeCornerRadiusTopRight", this.i.nl.d);
2208
- this.i.nl = this.i.nl;
2206
+ this.i.ky.d = +v;
2207
+ this._a("searchTypeCornerRadiusTopRight", this.i.ky.d);
2208
+ this.i.ky = this.i.ky;
2209
2209
  },
2210
- enumerable: true,
2210
+ enumerable: false,
2211
2211
  configurable: true
2212
2212
  });
2213
2213
  IgcXInputGroupComponent.prototype.ensureSearchTypeCornerRadius = function () {
2214
- if (this.i.nl) {
2214
+ if (this.i.ky) {
2215
2215
  return;
2216
2216
  }
2217
- this.i.nl = new CornerRadius(2);
2217
+ this.i.ky = new CornerRadius(2);
2218
2218
  };
2219
2219
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingBottom", {
2220
2220
  get: function () {
2221
- return this.i.t1 ? this.i.t1.bottom : NaN;
2221
+ return this.i.oo ? this.i.oo.bottom : NaN;
2222
2222
  },
2223
2223
  set: function (v) {
2224
2224
  this.ensureSearchTypeContentPadding();
2225
- this.i.t1.bottom = +v;
2226
- this._a("searchTypeContentPaddingBottom", this.i.t1.bottom);
2227
- this.i.t1 = this.i.t1;
2225
+ this.i.oo.bottom = +v;
2226
+ this._a("searchTypeContentPaddingBottom", this.i.oo.bottom);
2227
+ this.i.oo = this.i.oo;
2228
2228
  },
2229
- enumerable: true,
2229
+ enumerable: false,
2230
2230
  configurable: true
2231
2231
  });
2232
2232
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingLeft", {
2233
2233
  get: function () {
2234
- return this.i.t1 ? this.i.t1.left : NaN;
2234
+ return this.i.oo ? this.i.oo.left : NaN;
2235
2235
  },
2236
2236
  set: function (v) {
2237
2237
  this.ensureSearchTypeContentPadding();
2238
- this.i.t1.left = +v;
2239
- this._a("searchTypeContentPaddingLeft", this.i.t1.left);
2240
- this.i.t1 = this.i.t1;
2238
+ this.i.oo.left = +v;
2239
+ this._a("searchTypeContentPaddingLeft", this.i.oo.left);
2240
+ this.i.oo = this.i.oo;
2241
2241
  },
2242
- enumerable: true,
2242
+ enumerable: false,
2243
2243
  configurable: true
2244
2244
  });
2245
2245
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingRight", {
2246
2246
  get: function () {
2247
- return this.i.t1 ? this.i.t1.right : NaN;
2247
+ return this.i.oo ? this.i.oo.right : NaN;
2248
2248
  },
2249
2249
  set: function (v) {
2250
2250
  this.ensureSearchTypeContentPadding();
2251
- this.i.t1.right = +v;
2252
- this._a("searchTypeContentPaddingRight", this.i.t1.right);
2253
- this.i.t1 = this.i.t1;
2251
+ this.i.oo.right = +v;
2252
+ this._a("searchTypeContentPaddingRight", this.i.oo.right);
2253
+ this.i.oo = this.i.oo;
2254
2254
  },
2255
- enumerable: true,
2255
+ enumerable: false,
2256
2256
  configurable: true
2257
2257
  });
2258
2258
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingTop", {
2259
2259
  get: function () {
2260
- return this.i.t1 ? this.i.t1.top : NaN;
2260
+ return this.i.oo ? this.i.oo.top : NaN;
2261
2261
  },
2262
2262
  set: function (v) {
2263
2263
  this.ensureSearchTypeContentPadding();
2264
- this.i.t1.top = +v;
2265
- this._a("searchTypeContentPaddingTop", this.i.t1.top);
2266
- this.i.t1 = this.i.t1;
2264
+ this.i.oo.top = +v;
2265
+ this._a("searchTypeContentPaddingTop", this.i.oo.top);
2266
+ this.i.oo = this.i.oo;
2267
2267
  },
2268
- enumerable: true,
2268
+ enumerable: false,
2269
2269
  configurable: true
2270
2270
  });
2271
2271
  IgcXInputGroupComponent.prototype.ensureSearchTypeContentPadding = function () {
2272
- if (this.i.t1) {
2272
+ if (this.i.oo) {
2273
2273
  return;
2274
2274
  }
2275
- this.i.t1 = new Thickness(2);
2275
+ this.i.oo = new Thickness(2);
2276
2276
  };
2277
2277
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeUnderlineWidth", {
2278
2278
  /**
2279
2279
  * Gets or sets the width to use for the underline element when type is search.
2280
2280
  */
2281
2281
  get: function () {
2282
- return this.i.h0;
2282
+ return this.i.e4;
2283
2283
  },
2284
2284
  set: function (v) {
2285
- this.i.h0 = +v;
2286
- this._a("searchTypeUnderlineWidth", this.i.h0);
2285
+ this.i.e4 = +v;
2286
+ this._a("searchTypeUnderlineWidth", this.i.e4);
2287
2287
  },
2288
- enumerable: true,
2288
+ enumerable: false,
2289
2289
  configurable: true
2290
2290
  });
2291
2291
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeUnderlineRippleWidth", {
@@ -2293,13 +2293,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2293
2293
  * Gets or sets the width to use for the underline element when type is search.
2294
2294
  */
2295
2295
  get: function () {
2296
- return this.i.hz;
2296
+ return this.i.e3;
2297
2297
  },
2298
2298
  set: function (v) {
2299
- this.i.hz = +v;
2300
- this._a("searchTypeUnderlineRippleWidth", this.i.hz);
2299
+ this.i.e3 = +v;
2300
+ this._a("searchTypeUnderlineRippleWidth", this.i.e3);
2301
2301
  },
2302
- enumerable: true,
2302
+ enumerable: false,
2303
2303
  configurable: true
2304
2304
  });
2305
2305
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeHoverUnderlineWidth", {
@@ -2307,13 +2307,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2307
2307
  * Gets or sets the width to use for the underline element when hovered when type is search.
2308
2308
  */
2309
2309
  get: function () {
2310
- return this.i.hw;
2310
+ return this.i.e0;
2311
2311
  },
2312
2312
  set: function (v) {
2313
- this.i.hw = +v;
2314
- this._a("searchTypeHoverUnderlineWidth", this.i.hw);
2313
+ this.i.e0 = +v;
2314
+ this._a("searchTypeHoverUnderlineWidth", this.i.e0);
2315
2315
  },
2316
- enumerable: true,
2316
+ enumerable: false,
2317
2317
  configurable: true
2318
2318
  });
2319
2319
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeUnderlineColor", {
@@ -2321,13 +2321,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2321
2321
  * Gets or sets the color to use for the underline element when type is search.
2322
2322
  */
2323
2323
  get: function () {
2324
- return brushToString(this.i.s6);
2324
+ return brushToString(this.i.n3);
2325
2325
  },
2326
2326
  set: function (v) {
2327
- this.i.s6 = stringToBrush(v);
2328
- this._a("searchTypeUnderlineColor", brushToString(this.i.s6));
2327
+ this.i.n3 = stringToBrush(v);
2328
+ this._a("searchTypeUnderlineColor", brushToString(this.i.n3));
2329
2329
  },
2330
- enumerable: true,
2330
+ enumerable: false,
2331
2331
  configurable: true
2332
2332
  });
2333
2333
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeUnderlineRippleColor", {
@@ -2335,13 +2335,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2335
2335
  * Gets or sets the color to use for the underline ripple element when type is search.
2336
2336
  */
2337
2337
  get: function () {
2338
- return brushToString(this.i.s7);
2338
+ return brushToString(this.i.n4);
2339
2339
  },
2340
2340
  set: function (v) {
2341
- this.i.s7 = stringToBrush(v);
2342
- this._a("searchTypeUnderlineRippleColor", brushToString(this.i.s7));
2341
+ this.i.n4 = stringToBrush(v);
2342
+ this._a("searchTypeUnderlineRippleColor", brushToString(this.i.n4));
2343
2343
  },
2344
- enumerable: true,
2344
+ enumerable: false,
2345
2345
  configurable: true
2346
2346
  });
2347
2347
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeHoverUnderlineColor", {
@@ -2349,13 +2349,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2349
2349
  * Gets or sets the color to use for the underline element when type is search.
2350
2350
  */
2351
2351
  get: function () {
2352
- return brushToString(this.i.s5);
2352
+ return brushToString(this.i.n2);
2353
2353
  },
2354
2354
  set: function (v) {
2355
- this.i.s5 = stringToBrush(v);
2356
- this._a("searchTypeHoverUnderlineColor", brushToString(this.i.s5));
2355
+ this.i.n2 = stringToBrush(v);
2356
+ this._a("searchTypeHoverUnderlineColor", brushToString(this.i.n2));
2357
2357
  },
2358
- enumerable: true,
2358
+ enumerable: false,
2359
2359
  configurable: true
2360
2360
  });
2361
2361
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeFocusUnderlineColor", {
@@ -2363,13 +2363,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2363
2363
  * Gets or sets the color to use for the underline element when type is search.
2364
2364
  */
2365
2365
  get: function () {
2366
- return brushToString(this.i.s4);
2366
+ return brushToString(this.i.n1);
2367
2367
  },
2368
2368
  set: function (v) {
2369
- this.i.s4 = stringToBrush(v);
2370
- this._a("searchTypeFocusUnderlineColor", brushToString(this.i.s4));
2369
+ this.i.n1 = stringToBrush(v);
2370
+ this._a("searchTypeFocusUnderlineColor", brushToString(this.i.n1));
2371
2371
  },
2372
- enumerable: true,
2372
+ enumerable: false,
2373
2373
  configurable: true
2374
2374
  });
2375
2375
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeUnderlineOpacity", {
@@ -2377,13 +2377,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2377
2377
  * Gets or sets the color to use for the underline element when type is search.
2378
2378
  */
2379
2379
  get: function () {
2380
- return this.i.hx;
2380
+ return this.i.e1;
2381
2381
  },
2382
2382
  set: function (v) {
2383
- this.i.hx = +v;
2384
- this._a("searchTypeUnderlineOpacity", this.i.hx);
2383
+ this.i.e1 = +v;
2384
+ this._a("searchTypeUnderlineOpacity", this.i.e1);
2385
2385
  },
2386
- enumerable: true,
2386
+ enumerable: false,
2387
2387
  configurable: true
2388
2388
  });
2389
2389
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeHoverUnderlineOpacity", {
@@ -2391,13 +2391,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2391
2391
  * Gets or sets the color to use for the underline element when type is search.
2392
2392
  */
2393
2393
  get: function () {
2394
- return this.i.hv;
2394
+ return this.i.ez;
2395
2395
  },
2396
2396
  set: function (v) {
2397
- this.i.hv = +v;
2398
- this._a("searchTypeHoverUnderlineOpacity", this.i.hv);
2397
+ this.i.ez = +v;
2398
+ this._a("searchTypeHoverUnderlineOpacity", this.i.ez);
2399
2399
  },
2400
- enumerable: true,
2400
+ enumerable: false,
2401
2401
  configurable: true
2402
2402
  });
2403
2403
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeFocusUnderlineOpacity", {
@@ -2405,13 +2405,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2405
2405
  * Gets or sets the color to use for the underline element when type is search.
2406
2406
  */
2407
2407
  get: function () {
2408
- return this.i.ht;
2408
+ return this.i.ex;
2409
2409
  },
2410
2410
  set: function (v) {
2411
- this.i.ht = +v;
2412
- this._a("searchTypeFocusUnderlineOpacity", this.i.ht);
2411
+ this.i.ex = +v;
2412
+ this._a("searchTypeFocusUnderlineOpacity", this.i.ex);
2413
2413
  },
2414
- enumerable: true,
2414
+ enumerable: false,
2415
2415
  configurable: true
2416
2416
  });
2417
2417
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeFocusUnderlineRippleOpacity", {
@@ -2419,13 +2419,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2419
2419
  * Gets or sets the opacity to use for the underline ripple element when focused when type is search.
2420
2420
  */
2421
2421
  get: function () {
2422
- return this.i.hu;
2422
+ return this.i.ey;
2423
2423
  },
2424
2424
  set: function (v) {
2425
- this.i.hu = +v;
2426
- this._a("searchTypeFocusUnderlineRippleOpacity", this.i.hu);
2425
+ this.i.ey = +v;
2426
+ this._a("searchTypeFocusUnderlineRippleOpacity", this.i.ey);
2427
2427
  },
2428
- enumerable: true,
2428
+ enumerable: false,
2429
2429
  configurable: true
2430
2430
  });
2431
2431
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeUnderlineRippleOpacity", {
@@ -2433,13 +2433,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2433
2433
  * Gets or sets the opacity to use for the underline ripple element when type is search.
2434
2434
  */
2435
2435
  get: function () {
2436
- return this.i.hy;
2436
+ return this.i.e2;
2437
2437
  },
2438
2438
  set: function (v) {
2439
- this.i.hy = +v;
2440
- this._a("searchTypeUnderlineRippleOpacity", this.i.hy);
2439
+ this.i.e2 = +v;
2440
+ this._a("searchTypeUnderlineRippleOpacity", this.i.e2);
2441
2441
  },
2442
- enumerable: true,
2442
+ enumerable: false,
2443
2443
  configurable: true
2444
2444
  });
2445
2445
  Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeBackgroundColor", {
@@ -2447,13 +2447,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2447
2447
  * Gets or sets the background color to use for the input group when type is search.
2448
2448
  */
2449
2449
  get: function () {
2450
- return brushToString(this.i.s1);
2450
+ return brushToString(this.i.ny);
2451
2451
  },
2452
2452
  set: function (v) {
2453
- this.i.s1 = stringToBrush(v);
2454
- this._a("searchTypeBackgroundColor", brushToString(this.i.s1));
2453
+ this.i.ny = stringToBrush(v);
2454
+ this._a("searchTypeBackgroundColor", brushToString(this.i.ny));
2455
2455
  },
2456
- enumerable: true,
2456
+ enumerable: false,
2457
2457
  configurable: true
2458
2458
  });
2459
2459
  Object.defineProperty(IgcXInputGroupComponent.prototype, "isExpanded", {
@@ -2461,13 +2461,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2461
2461
  * Gets or sets whether the input group is expanded or not.
2462
2462
  */
2463
2463
  get: function () {
2464
- return this.i.ah;
2464
+ return this.i.an;
2465
2465
  },
2466
2466
  set: function (v) {
2467
- this.i.ah = ensureBool(v);
2468
- this._a("isExpanded", this.i.ah);
2467
+ this.i.an = ensureBool(v);
2468
+ this._a("isExpanded", this.i.an);
2469
2469
  },
2470
- enumerable: true,
2470
+ enumerable: false,
2471
2471
  configurable: true
2472
2472
  });
2473
2473
  Object.defineProperty(IgcXInputGroupComponent.prototype, "isHovered", {
@@ -2475,13 +2475,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2475
2475
  * Gets or sets whether the input group is hovered or not.
2476
2476
  */
2477
2477
  get: function () {
2478
- return this.i.aj;
2478
+ return this.i.ap;
2479
2479
  },
2480
2480
  set: function (v) {
2481
- this.i.aj = ensureBool(v);
2482
- this._a("isHovered", this.i.aj);
2481
+ this.i.ap = ensureBool(v);
2482
+ this._a("isHovered", this.i.ap);
2483
2483
  },
2484
- enumerable: true,
2484
+ enumerable: false,
2485
2485
  configurable: true
2486
2486
  });
2487
2487
  Object.defineProperty(IgcXInputGroupComponent.prototype, "isFocused", {
@@ -2489,13 +2489,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2489
2489
  * Gets or sets whether the input group is hovered or not.
2490
2490
  */
2491
2491
  get: function () {
2492
- return this.i.ai;
2492
+ return this.i.ao;
2493
2493
  },
2494
2494
  set: function (v) {
2495
- this.i.ai = ensureBool(v);
2496
- this._a("isFocused", this.i.ai);
2495
+ this.i.ao = ensureBool(v);
2496
+ this._a("isFocused", this.i.ao);
2497
2497
  },
2498
- enumerable: true,
2498
+ enumerable: false,
2499
2499
  configurable: true
2500
2500
  });
2501
2501
  Object.defineProperty(IgcXInputGroupComponent.prototype, "actualIsExpanded", {
@@ -2503,13 +2503,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2503
2503
  * Gets or sets whether the input group is expanded or not.
2504
2504
  */
2505
2505
  get: function () {
2506
- return this.i.ac;
2506
+ return this.i.ai;
2507
2507
  },
2508
2508
  set: function (v) {
2509
- this.i.ac = ensureBool(v);
2510
- this._a("actualIsExpanded", this.i.ac);
2509
+ this.i.ai = ensureBool(v);
2510
+ this._a("actualIsExpanded", this.i.ai);
2511
2511
  },
2512
- enumerable: true,
2512
+ enumerable: false,
2513
2513
  configurable: true
2514
2514
  });
2515
2515
  Object.defineProperty(IgcXInputGroupComponent.prototype, "focusBorderColor", {
@@ -2517,13 +2517,13 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2517
2517
  * Gets or sets the color to use the hovered background of the inputs in the group.
2518
2518
  */
2519
2519
  get: function () {
2520
- return brushToString(this.i.sr);
2520
+ return brushToString(this.i.no);
2521
2521
  },
2522
2522
  set: function (v) {
2523
- this.i.sr = stringToBrush(v);
2524
- this._a("focusBorderColor", brushToString(this.i.sr));
2523
+ this.i.no = stringToBrush(v);
2524
+ this._a("focusBorderColor", brushToString(this.i.no));
2525
2525
  },
2526
- enumerable: true,
2526
+ enumerable: false,
2527
2527
  configurable: true
2528
2528
  });
2529
2529
  Object.defineProperty(IgcXInputGroupComponent.prototype, "id", {
@@ -2531,12 +2531,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2531
2531
  * Gets or sets the id to use for the checkbox.
2532
2532
  */
2533
2533
  get: function () {
2534
- return this.i.ki;
2534
+ return this.i.hk;
2535
2535
  },
2536
2536
  set: function (v) {
2537
- this.i.ki = v;
2537
+ this.i.hk = v;
2538
2538
  },
2539
- enumerable: true,
2539
+ enumerable: false,
2540
2540
  configurable: true
2541
2541
  });
2542
2542
  Object.defineProperty(IgcXInputGroupComponent.prototype, "disabled", {
@@ -2550,7 +2550,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2550
2550
  this.i.disabled = ensureBool(v);
2551
2551
  this._a("disabled", this.i.disabled);
2552
2552
  },
2553
- enumerable: true,
2553
+ enumerable: false,
2554
2554
  configurable: true
2555
2555
  });
2556
2556
  IgcXInputGroupComponent.prototype.findByName = function (name) {
@@ -2568,7 +2568,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2568
2568
  get: function () {
2569
2569
  return this._hasUserValues;
2570
2570
  },
2571
- enumerable: true,
2571
+ enumerable: false,
2572
2572
  configurable: true
2573
2573
  });
2574
2574
  IgcXInputGroupComponent.prototype.__m = function (propertyName) {
@@ -2632,7 +2632,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2632
2632
 
2633
2633
  */
2634
2634
  IgcXInputGroupComponent.prototype.exportVisualModel = function () {
2635
- var iv = this.i.ia();
2635
+ var iv = this.i.fe();
2636
2636
  return (iv);
2637
2637
  };
2638
2638
  /**
@@ -2640,7 +2640,7 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2640
2640
 
2641
2641
  */
2642
2642
  IgcXInputGroupComponent.prototype.exportSerializedVisualModel = function () {
2643
- var iv = this.i.j9();
2643
+ var iv = this.i.hb();
2644
2644
  return (iv);
2645
2645
  };
2646
2646
  IgcXInputGroupComponent._observedAttributesIgcXInputGroupComponent = null;