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 { XButton } from "./XButton";
3
3
  import { ensureEnum, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
4
4
  import { FontInfo } from "igniteui-webcomponents-core";
@@ -13,8 +13,11 @@ import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
13
13
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
14
14
  import { ElevationMode_$type } from "igniteui-webcomponents-core";
15
15
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
16
+ import { HorizontalAlignment_$type } from "igniteui-webcomponents-core";
17
+ import { VerticalAlignment_$type } from "igniteui-webcomponents-core";
18
+ import { IgcFocusEventArgs } from "igniteui-webcomponents-core";
16
19
  var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
17
- tslib_1.__extends(IgcXButtonComponent, _super);
20
+ __extends(IgcXButtonComponent, _super);
18
21
  function IgcXButtonComponent() {
19
22
  var _this = _super.call(this) || this;
20
23
  _this._disconnected = false;
@@ -29,6 +32,10 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
29
32
  _this._inStyling = false;
30
33
  _this._clicked = null;
31
34
  _this._clicked_wrapped = null;
35
+ _this._gotFocus = null;
36
+ _this._gotFocus_wrapped = null;
37
+ _this._lostFocus = null;
38
+ _this._lostFocus_wrapped = null;
32
39
  if (_this._styling) {
33
40
  NamePatcher.ensureStylablePatched(Object.getPrototypeOf(_this));
34
41
  }
@@ -54,7 +61,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
54
61
  var mut = new MutationObserver(function (list) {
55
62
  var e_1, _b;
56
63
  try {
57
- for (var list_1 = tslib_1.__values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
64
+ for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
58
65
  var mutation = list_1_1.value;
59
66
  if (mutation.type == 'childList') {
60
67
  _this._onChildrenChanged();
@@ -154,7 +161,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
154
161
  } /**
155
162
  * @hidden
156
163
  */,
157
- enumerable: true,
164
+ enumerable: false,
158
165
  configurable: true
159
166
  });
160
167
  IgcXButtonComponent._createFromInternal = function (internal) {
@@ -210,7 +217,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
210
217
  }
211
218
  return IgcXButtonComponent._observedAttributesIgcXButtonComponent;
212
219
  },
213
- enumerable: true,
220
+ enumerable: false,
214
221
  configurable: true
215
222
  });
216
223
  IgcXButtonComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
@@ -233,13 +240,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
233
240
  * Gets or sets the min width to use for the button.
234
241
  */
235
242
  get: function () {
236
- return this.i.bh;
243
+ return this.i.bu;
237
244
  },
238
245
  set: function (v) {
239
- this.i.bh = +v;
240
- this._a("minWidth", this.i.bh);
246
+ this.i.bu = +v;
247
+ this._a("minWidth", this.i.bu);
241
248
  },
242
- enumerable: true,
249
+ enumerable: false,
243
250
  configurable: true
244
251
  });
245
252
  Object.defineProperty(IgcXButtonComponent.prototype, "minHeight", {
@@ -247,13 +254,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
247
254
  * Gets or sets the min height to use for the button.
248
255
  */
249
256
  get: function () {
250
- return this.i.bg;
257
+ return this.i.bt;
251
258
  },
252
259
  set: function (v) {
253
- this.i.bg = +v;
254
- this._a("minHeight", this.i.bg);
260
+ this.i.bt = +v;
261
+ this._a("minHeight", this.i.bt);
255
262
  },
256
- enumerable: true,
263
+ enumerable: false,
257
264
  configurable: true
258
265
  });
259
266
  Object.defineProperty(IgcXButtonComponent.prototype, "displayType", {
@@ -267,7 +274,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
267
274
  this.i.e = ensureEnum(ButtonDisplayStyle_$type, v);
268
275
  this._a("displayType", enumToString(ButtonDisplayStyle_$type, this.i.e));
269
276
  },
270
- enumerable: true,
277
+ enumerable: false,
271
278
  configurable: true
272
279
  });
273
280
  Object.defineProperty(IgcXButtonComponent.prototype, "density", {
@@ -275,13 +282,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
275
282
  * Gets or sets the display density to use for the button.
276
283
  */
277
284
  get: function () {
278
- return this.i.m;
285
+ return this.i.r;
279
286
  },
280
287
  set: function (v) {
281
- this.i.m = ensureEnum(ControlDisplayDensity_$type, v);
282
- this._a("density", enumToString(ControlDisplayDensity_$type, this.i.m));
288
+ this.i.r = ensureEnum(ControlDisplayDensity_$type, v);
289
+ this._a("density", enumToString(ControlDisplayDensity_$type, this.i.r));
283
290
  },
284
- enumerable: true,
291
+ enumerable: false,
285
292
  configurable: true
286
293
  });
287
294
  Object.defineProperty(IgcXButtonComponent.prototype, "baseTheme", {
@@ -289,13 +296,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
289
296
  * Gets or sets the base built in theme to use for the button.
290
297
  */
291
298
  get: function () {
292
- return this.i.i;
299
+ return this.i.n;
293
300
  },
294
301
  set: function (v) {
295
- this.i.i = ensureEnum(BaseControlTheme_$type, v);
296
- this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.i));
302
+ this.i.n = ensureEnum(BaseControlTheme_$type, v);
303
+ this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.n));
297
304
  },
298
- enumerable: true,
305
+ enumerable: false,
299
306
  configurable: true
300
307
  });
301
308
  Object.defineProperty(IgcXButtonComponent.prototype, "actualDensity", {
@@ -303,13 +310,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
303
310
  * Gets the actual display density to use for the label.
304
311
  */
305
312
  get: function () {
306
- return this.i.l;
313
+ return this.i.q;
307
314
  },
308
315
  set: function (v) {
309
- this.i.l = ensureEnum(ControlDisplayDensity_$type, v);
310
- this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.l));
316
+ this.i.q = ensureEnum(ControlDisplayDensity_$type, v);
317
+ this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.q));
311
318
  },
312
- enumerable: true,
319
+ enumerable: false,
313
320
  configurable: true
314
321
  });
315
322
  Object.defineProperty(IgcXButtonComponent.prototype, "actualBorderColor", {
@@ -317,13 +324,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
317
324
  * Gets or sets the color to use for the check mark when the checkbox is checked.
318
325
  */
319
326
  get: function () {
320
- return brushToString(this.i.na);
327
+ return brushToString(this.i.ng);
321
328
  },
322
329
  set: function (v) {
323
- this.i.na = stringToBrush(v);
324
- this._a("actualBorderColor", brushToString(this.i.na));
330
+ this.i.ng = stringToBrush(v);
331
+ this._a("actualBorderColor", brushToString(this.i.ng));
325
332
  },
326
- enumerable: true,
333
+ enumerable: false,
327
334
  configurable: true
328
335
  });
329
336
  Object.defineProperty(IgcXButtonComponent.prototype, "actualUmbraShadowColor", {
@@ -331,13 +338,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
331
338
  * Gets or sets the color to use for the check mark when the checkbox is checked.
332
339
  */
333
340
  get: function () {
334
- return brushToString(this.i.nl);
341
+ return brushToString(this.i.nr);
335
342
  },
336
343
  set: function (v) {
337
- this.i.nl = stringToBrush(v);
338
- this._a("actualUmbraShadowColor", brushToString(this.i.nl));
344
+ this.i.nr = stringToBrush(v);
345
+ this._a("actualUmbraShadowColor", brushToString(this.i.nr));
339
346
  },
340
- enumerable: true,
347
+ enumerable: false,
341
348
  configurable: true
342
349
  });
343
350
  Object.defineProperty(IgcXButtonComponent.prototype, "actualPenumbraShadowColor", {
@@ -345,13 +352,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
345
352
  * Gets or sets the color to use for the check mark when the checkbox is checked.
346
353
  */
347
354
  get: function () {
348
- return brushToString(this.i.ni);
355
+ return brushToString(this.i.no);
349
356
  },
350
357
  set: function (v) {
351
- this.i.ni = stringToBrush(v);
352
- this._a("actualPenumbraShadowColor", brushToString(this.i.ni));
358
+ this.i.no = stringToBrush(v);
359
+ this._a("actualPenumbraShadowColor", brushToString(this.i.no));
353
360
  },
354
- enumerable: true,
361
+ enumerable: false,
355
362
  configurable: true
356
363
  });
357
364
  Object.defineProperty(IgcXButtonComponent.prototype, "actualAmbientShadowColor", {
@@ -359,13 +366,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
359
366
  * Gets or sets the color to use for the check mark when the checkbox is checked.
360
367
  */
361
368
  get: function () {
362
- return brushToString(this.i.m8);
369
+ return brushToString(this.i.ne);
363
370
  },
364
371
  set: function (v) {
365
- this.i.m8 = stringToBrush(v);
366
- this._a("actualAmbientShadowColor", brushToString(this.i.m8));
372
+ this.i.ne = stringToBrush(v);
373
+ this._a("actualAmbientShadowColor", brushToString(this.i.ne));
367
374
  },
368
- enumerable: true,
375
+ enumerable: false,
369
376
  configurable: true
370
377
  });
371
378
  Object.defineProperty(IgcXButtonComponent.prototype, "actualRestingElevation", {
@@ -373,13 +380,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
373
380
  * Gets or sets the color to use for the check mark when the checkbox is checked.
374
381
  */
375
382
  get: function () {
376
- return this.i.cg;
383
+ return this.i.ct;
377
384
  },
378
385
  set: function (v) {
379
- this.i.cg = +v;
380
- this._a("actualRestingElevation", this.i.cg);
386
+ this.i.ct = +v;
387
+ this._a("actualRestingElevation", this.i.ct);
381
388
  },
382
- enumerable: true,
389
+ enumerable: false,
383
390
  configurable: true
384
391
  });
385
392
  Object.defineProperty(IgcXButtonComponent.prototype, "actualFocusElevation", {
@@ -387,13 +394,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
387
394
  * Gets or sets the color to use for the check mark when the checkbox is checked.
388
395
  */
389
396
  get: function () {
390
- return this.i.ce;
397
+ return this.i.cr;
391
398
  },
392
399
  set: function (v) {
393
- this.i.ce = +v;
394
- this._a("actualFocusElevation", this.i.ce);
400
+ this.i.cr = +v;
401
+ this._a("actualFocusElevation", this.i.cr);
395
402
  },
396
- enumerable: true,
403
+ enumerable: false,
397
404
  configurable: true
398
405
  });
399
406
  Object.defineProperty(IgcXButtonComponent.prototype, "actualHoverElevation", {
@@ -401,13 +408,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
401
408
  * Gets or sets the color to use for the check mark when the checkbox is checked.
402
409
  */
403
410
  get: function () {
404
- return this.i.cf;
411
+ return this.i.cs;
405
412
  },
406
413
  set: function (v) {
407
- this.i.cf = +v;
408
- this._a("actualHoverElevation", this.i.cf);
414
+ this.i.cs = +v;
415
+ this._a("actualHoverElevation", this.i.cs);
409
416
  },
410
- enumerable: true,
417
+ enumerable: false,
411
418
  configurable: true
412
419
  });
413
420
  Object.defineProperty(IgcXButtonComponent.prototype, "actualRippleColor", {
@@ -415,85 +422,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
415
422
  * Gets or sets the color to use for the ripple when the button is pressed.
416
423
  */
417
424
  get: function () {
418
- return brushToString(this.i.nj);
425
+ return brushToString(this.i.np);
419
426
  },
420
427
  set: function (v) {
421
- this.i.nj = stringToBrush(v);
422
- this._a("actualRippleColor", brushToString(this.i.nj));
428
+ this.i.np = stringToBrush(v);
429
+ this._a("actualRippleColor", brushToString(this.i.np));
423
430
  },
424
- enumerable: true,
431
+ enumerable: false,
425
432
  configurable: true
426
433
  });
427
434
  Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusBottomRight", {
428
435
  get: function () {
429
- return this.i.kd ? this.i.kd.b : NaN;
436
+ return this.i.kr ? this.i.kr.b : NaN;
430
437
  },
431
438
  set: function (v) {
432
439
  this.ensureActualCornerRadius();
433
- this.i.kd.b = +v;
434
- this._a("actualCornerRadiusBottomRight", this.i.kd.b);
435
- this.i.kd = this.i.kd;
440
+ this.i.kr.b = +v;
441
+ this._a("actualCornerRadiusBottomRight", this.i.kr.b);
442
+ this.i.kr = this.i.kr;
436
443
  },
437
- enumerable: true,
444
+ enumerable: false,
438
445
  configurable: true
439
446
  });
440
447
  Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusBottomLeft", {
441
448
  get: function () {
442
- return this.i.kd ? this.i.kd.a : NaN;
449
+ return this.i.kr ? this.i.kr.a : NaN;
443
450
  },
444
451
  set: function (v) {
445
452
  this.ensureActualCornerRadius();
446
- this.i.kd.a = +v;
447
- this._a("actualCornerRadiusBottomLeft", this.i.kd.a);
448
- this.i.kd = this.i.kd;
453
+ this.i.kr.a = +v;
454
+ this._a("actualCornerRadiusBottomLeft", this.i.kr.a);
455
+ this.i.kr = this.i.kr;
449
456
  },
450
- enumerable: true,
457
+ enumerable: false,
451
458
  configurable: true
452
459
  });
453
460
  Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusTopLeft", {
454
461
  get: function () {
455
- return this.i.kd ? this.i.kd.c : NaN;
462
+ return this.i.kr ? this.i.kr.c : NaN;
456
463
  },
457
464
  set: function (v) {
458
465
  this.ensureActualCornerRadius();
459
- this.i.kd.c = +v;
460
- this._a("actualCornerRadiusTopLeft", this.i.kd.c);
461
- this.i.kd = this.i.kd;
466
+ this.i.kr.c = +v;
467
+ this._a("actualCornerRadiusTopLeft", this.i.kr.c);
468
+ this.i.kr = this.i.kr;
462
469
  },
463
- enumerable: true,
470
+ enumerable: false,
464
471
  configurable: true
465
472
  });
466
473
  Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusTopRight", {
467
474
  get: function () {
468
- return this.i.kd ? this.i.kd.d : NaN;
475
+ return this.i.kr ? this.i.kr.d : NaN;
469
476
  },
470
477
  set: function (v) {
471
478
  this.ensureActualCornerRadius();
472
- this.i.kd.d = +v;
473
- this._a("actualCornerRadiusTopRight", this.i.kd.d);
474
- this.i.kd = this.i.kd;
479
+ this.i.kr.d = +v;
480
+ this._a("actualCornerRadiusTopRight", this.i.kr.d);
481
+ this.i.kr = this.i.kr;
475
482
  },
476
- enumerable: true,
483
+ enumerable: false,
477
484
  configurable: true
478
485
  });
479
486
  IgcXButtonComponent.prototype.ensureActualCornerRadius = function () {
480
- if (this.i.kd) {
487
+ if (this.i.kr) {
481
488
  return;
482
489
  }
483
- this.i.kd = new CornerRadius(2);
490
+ this.i.kr = new CornerRadius(2);
484
491
  };
485
492
  Object.defineProperty(IgcXButtonComponent.prototype, "actualBackgroundColor", {
486
493
  /**
487
494
  * Gets the color to use for the actual background.
488
495
  */
489
496
  get: function () {
490
- return brushToString(this.i.m9);
497
+ return brushToString(this.i.nf);
491
498
  },
492
499
  set: function (v) {
493
- this.i.m9 = stringToBrush(v);
494
- this._a("actualBackgroundColor", brushToString(this.i.m9));
500
+ this.i.nf = stringToBrush(v);
501
+ this._a("actualBackgroundColor", brushToString(this.i.nf));
495
502
  },
496
- enumerable: true,
503
+ enumerable: false,
497
504
  configurable: true
498
505
  });
499
506
  Object.defineProperty(IgcXButtonComponent.prototype, "actualDisabledBackgroundColor", {
@@ -501,13 +508,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
501
508
  * Gets the actual color to use for the disabled background of the button.
502
509
  */
503
510
  get: function () {
504
- return brushToString(this.i.nb);
511
+ return brushToString(this.i.nh);
505
512
  },
506
513
  set: function (v) {
507
- this.i.nb = stringToBrush(v);
508
- this._a("actualDisabledBackgroundColor", brushToString(this.i.nb));
514
+ this.i.nh = stringToBrush(v);
515
+ this._a("actualDisabledBackgroundColor", brushToString(this.i.nh));
509
516
  },
510
- enumerable: true,
517
+ enumerable: false,
511
518
  configurable: true
512
519
  });
513
520
  Object.defineProperty(IgcXButtonComponent.prototype, "actualDisabledBorderColor", {
@@ -515,13 +522,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
515
522
  * Gets the actual color to use for the disabled border of the button.
516
523
  */
517
524
  get: function () {
518
- return brushToString(this.i.nc);
525
+ return brushToString(this.i.ni);
519
526
  },
520
527
  set: function (v) {
521
- this.i.nc = stringToBrush(v);
522
- this._a("actualDisabledBorderColor", brushToString(this.i.nc));
528
+ this.i.ni = stringToBrush(v);
529
+ this._a("actualDisabledBorderColor", brushToString(this.i.ni));
523
530
  },
524
- enumerable: true,
531
+ enumerable: false,
525
532
  configurable: true
526
533
  });
527
534
  Object.defineProperty(IgcXButtonComponent.prototype, "actualDisabledTextColor", {
@@ -529,13 +536,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
529
536
  * Gets the actual color to use for the disabled text of the button.
530
537
  */
531
538
  get: function () {
532
- return brushToString(this.i.nd);
539
+ return brushToString(this.i.nj);
533
540
  },
534
541
  set: function (v) {
535
- this.i.nd = stringToBrush(v);
536
- this._a("actualDisabledTextColor", brushToString(this.i.nd));
542
+ this.i.nj = stringToBrush(v);
543
+ this._a("actualDisabledTextColor", brushToString(this.i.nj));
537
544
  },
538
- enumerable: true,
545
+ enumerable: false,
539
546
  configurable: true
540
547
  });
541
548
  Object.defineProperty(IgcXButtonComponent.prototype, "actualDisabledElevation", {
@@ -543,13 +550,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
543
550
  * Gets the actual disabled elevation to use for the button.
544
551
  */
545
552
  get: function () {
546
- return this.i.cd;
553
+ return this.i.cq;
547
554
  },
548
555
  set: function (v) {
549
- this.i.cd = +v;
550
- this._a("actualDisabledElevation", this.i.cd);
556
+ this.i.cq = +v;
557
+ this._a("actualDisabledElevation", this.i.cq);
551
558
  },
552
- enumerable: true,
559
+ enumerable: false,
553
560
  configurable: true
554
561
  });
555
562
  Object.defineProperty(IgcXButtonComponent.prototype, "actualElevationMode", {
@@ -557,13 +564,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
557
564
  * Gets the actual disabled elevation to use for the button.
558
565
  */
559
566
  get: function () {
560
- return this.i.p;
567
+ return this.i.u;
561
568
  },
562
569
  set: function (v) {
563
- this.i.p = ensureEnum(ElevationMode_$type, v);
564
- this._a("actualElevationMode", enumToString(ElevationMode_$type, this.i.p));
570
+ this.i.u = ensureEnum(ElevationMode_$type, v);
571
+ this._a("actualElevationMode", enumToString(ElevationMode_$type, this.i.u));
565
572
  },
566
- enumerable: true,
573
+ enumerable: false,
567
574
  configurable: true
568
575
  });
569
576
  Object.defineProperty(IgcXButtonComponent.prototype, "actualTextColor", {
@@ -571,13 +578,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
571
578
  * Gets the color to use for the actual background.
572
579
  */
573
580
  get: function () {
574
- return brushToString(this.i.nk);
581
+ return brushToString(this.i.nq);
575
582
  },
576
583
  set: function (v) {
577
- this.i.nk = stringToBrush(v);
578
- this._a("actualTextColor", brushToString(this.i.nk));
584
+ this.i.nq = stringToBrush(v);
585
+ this._a("actualTextColor", brushToString(this.i.nq));
579
586
  },
580
- enumerable: true,
587
+ enumerable: false,
581
588
  configurable: true
582
589
  });
583
590
  Object.defineProperty(IgcXButtonComponent.prototype, "actualHoverTextColor", {
@@ -585,13 +592,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
585
592
  * Gets the color to use for the actual background.
586
593
  */
587
594
  get: function () {
588
- return brushToString(this.i.nh);
595
+ return brushToString(this.i.nn);
589
596
  },
590
597
  set: function (v) {
591
- this.i.nh = stringToBrush(v);
592
- this._a("actualHoverTextColor", brushToString(this.i.nh));
598
+ this.i.nn = stringToBrush(v);
599
+ this._a("actualHoverTextColor", brushToString(this.i.nn));
593
600
  },
594
- enumerable: true,
601
+ enumerable: false,
595
602
  configurable: true
596
603
  });
597
604
  Object.defineProperty(IgcXButtonComponent.prototype, "actualFocusBackgroundColor", {
@@ -599,13 +606,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
599
606
  * Gets the color to use for the actual background.
600
607
  */
601
608
  get: function () {
602
- return brushToString(this.i.ne);
609
+ return brushToString(this.i.nk);
603
610
  },
604
611
  set: function (v) {
605
- this.i.ne = stringToBrush(v);
606
- this._a("actualFocusBackgroundColor", brushToString(this.i.ne));
612
+ this.i.nk = stringToBrush(v);
613
+ this._a("actualFocusBackgroundColor", brushToString(this.i.nk));
607
614
  },
608
- enumerable: true,
615
+ enumerable: false,
609
616
  configurable: true
610
617
  });
611
618
  Object.defineProperty(IgcXButtonComponent.prototype, "actualFocusTextColor", {
@@ -613,13 +620,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
613
620
  * Gets the actual color to use for the focused text.
614
621
  */
615
622
  get: function () {
616
- return brushToString(this.i.nf);
623
+ return brushToString(this.i.nl);
617
624
  },
618
625
  set: function (v) {
619
- this.i.nf = stringToBrush(v);
620
- this._a("actualFocusTextColor", brushToString(this.i.nf));
626
+ this.i.nl = stringToBrush(v);
627
+ this._a("actualFocusTextColor", brushToString(this.i.nl));
621
628
  },
622
- enumerable: true,
629
+ enumerable: false,
623
630
  configurable: true
624
631
  });
625
632
  Object.defineProperty(IgcXButtonComponent.prototype, "actualHoverBackgroundColor", {
@@ -627,13 +634,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
627
634
  * Gets the hover color to use for the actual background.
628
635
  */
629
636
  get: function () {
630
- return brushToString(this.i.ng);
637
+ return brushToString(this.i.nm);
631
638
  },
632
639
  set: function (v) {
633
- this.i.ng = stringToBrush(v);
634
- this._a("actualHoverBackgroundColor", brushToString(this.i.ng));
640
+ this.i.nm = stringToBrush(v);
641
+ this._a("actualHoverBackgroundColor", brushToString(this.i.nm));
635
642
  },
636
- enumerable: true,
643
+ enumerable: false,
637
644
  configurable: true
638
645
  });
639
646
  Object.defineProperty(IgcXButtonComponent.prototype, "actualBorderWidth", {
@@ -641,13 +648,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
641
648
  * Gets or sets the Width to use for the check mark when the checkbox is checked.
642
649
  */
643
650
  get: function () {
644
- return this.i.aw;
651
+ return this.i.bf;
645
652
  },
646
653
  set: function (v) {
647
- this.i.aw = +v;
648
- this._a("actualBorderWidth", this.i.aw);
654
+ this.i.bf = +v;
655
+ this._a("actualBorderWidth", this.i.bf);
649
656
  },
650
- enumerable: true,
657
+ enumerable: false,
651
658
  configurable: true
652
659
  });
653
660
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedBackgroundColor", {
@@ -655,13 +662,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
655
662
  * Gets or sets the color to use for the background of the button when the type is raised.
656
663
  */
657
664
  get: function () {
658
- return brushToString(this.i.tx);
665
+ return brushToString(this.i.qv);
659
666
  },
660
667
  set: function (v) {
661
- this.i.tx = stringToBrush(v);
662
- this._a("raisedBackgroundColor", brushToString(this.i.tx));
668
+ this.i.qv = stringToBrush(v);
669
+ this._a("raisedBackgroundColor", brushToString(this.i.qv));
663
670
  },
664
- enumerable: true,
671
+ enumerable: false,
665
672
  configurable: true
666
673
  });
667
674
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedDisabledBackgroundColor", {
@@ -669,13 +676,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
669
676
  * Gets or sets the color to use for the disabled background of the button when the type is raised.
670
677
  */
671
678
  get: function () {
672
- return brushToString(this.i.tz);
679
+ return brushToString(this.i.qx);
673
680
  },
674
681
  set: function (v) {
675
- this.i.tz = stringToBrush(v);
676
- this._a("raisedDisabledBackgroundColor", brushToString(this.i.tz));
682
+ this.i.qx = stringToBrush(v);
683
+ this._a("raisedDisabledBackgroundColor", brushToString(this.i.qx));
677
684
  },
678
- enumerable: true,
685
+ enumerable: false,
679
686
  configurable: true
680
687
  });
681
688
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedDisabledBorderColor", {
@@ -683,13 +690,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
683
690
  * Gets or sets the color to use for the disabled border of the button when the type is raised.
684
691
  */
685
692
  get: function () {
686
- return brushToString(this.i.t0);
693
+ return brushToString(this.i.qy);
687
694
  },
688
695
  set: function (v) {
689
- this.i.t0 = stringToBrush(v);
690
- this._a("raisedDisabledBorderColor", brushToString(this.i.t0));
696
+ this.i.qy = stringToBrush(v);
697
+ this._a("raisedDisabledBorderColor", brushToString(this.i.qy));
691
698
  },
692
- enumerable: true,
699
+ enumerable: false,
693
700
  configurable: true
694
701
  });
695
702
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedDisabledTextColor", {
@@ -697,13 +704,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
697
704
  * Gets or sets the color to use for the disabled text of the button when the type is raised.
698
705
  */
699
706
  get: function () {
700
- return brushToString(this.i.t1);
707
+ return brushToString(this.i.qz);
701
708
  },
702
709
  set: function (v) {
703
- this.i.t1 = stringToBrush(v);
704
- this._a("raisedDisabledTextColor", brushToString(this.i.t1));
710
+ this.i.qz = stringToBrush(v);
711
+ this._a("raisedDisabledTextColor", brushToString(this.i.qz));
705
712
  },
706
- enumerable: true,
713
+ enumerable: false,
707
714
  configurable: true
708
715
  });
709
716
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedDisabledElevation", {
@@ -711,13 +718,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
711
718
  * Gets or sets the disabled elevation to use for the button when the type is raised.
712
719
  */
713
720
  get: function () {
714
- return this.i.ep;
721
+ return this.i.dy;
715
722
  },
716
723
  set: function (v) {
717
- this.i.ep = +v;
718
- this._a("raisedDisabledElevation", this.i.ep);
724
+ this.i.dy = +v;
725
+ this._a("raisedDisabledElevation", this.i.dy);
719
726
  },
720
- enumerable: true,
727
+ enumerable: false,
721
728
  configurable: true
722
729
  });
723
730
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedHoverBackgroundColor", {
@@ -725,13 +732,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
725
732
  * Gets or sets the hover color to use for the background of the button when the type is raised.
726
733
  */
727
734
  get: function () {
728
- return brushToString(this.i.t4);
735
+ return brushToString(this.i.q2);
729
736
  },
730
737
  set: function (v) {
731
- this.i.t4 = stringToBrush(v);
732
- this._a("raisedHoverBackgroundColor", brushToString(this.i.t4));
738
+ this.i.q2 = stringToBrush(v);
739
+ this._a("raisedHoverBackgroundColor", brushToString(this.i.q2));
733
740
  },
734
- enumerable: true,
741
+ enumerable: false,
735
742
  configurable: true
736
743
  });
737
744
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedBorderColor", {
@@ -739,13 +746,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
739
746
  * Gets or sets the border color to use for the button when the type is raised.
740
747
  */
741
748
  get: function () {
742
- return brushToString(this.i.ty);
749
+ return brushToString(this.i.qw);
743
750
  },
744
751
  set: function (v) {
745
- this.i.ty = stringToBrush(v);
746
- this._a("raisedBorderColor", brushToString(this.i.ty));
752
+ this.i.qw = stringToBrush(v);
753
+ this._a("raisedBorderColor", brushToString(this.i.qw));
747
754
  },
748
- enumerable: true,
755
+ enumerable: false,
749
756
  configurable: true
750
757
  });
751
758
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedRestingElevation", {
@@ -753,13 +760,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
753
760
  * Gets or sets the elevation to use for the button when the type is raised.
754
761
  */
755
762
  get: function () {
756
- return this.i.es;
763
+ return this.i.d1;
757
764
  },
758
765
  set: function (v) {
759
- this.i.es = +v;
760
- this._a("raisedRestingElevation", this.i.es);
766
+ this.i.d1 = +v;
767
+ this._a("raisedRestingElevation", this.i.d1);
761
768
  },
762
- enumerable: true,
769
+ enumerable: false,
763
770
  configurable: true
764
771
  });
765
772
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedHoverElevation", {
@@ -767,13 +774,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
767
774
  * Gets or sets the hover elevation to use for the button when the type is raised.
768
775
  */
769
776
  get: function () {
770
- return this.i.er;
777
+ return this.i.d0;
771
778
  },
772
779
  set: function (v) {
773
- this.i.er = +v;
774
- this._a("raisedHoverElevation", this.i.er);
780
+ this.i.d0 = +v;
781
+ this._a("raisedHoverElevation", this.i.d0);
775
782
  },
776
- enumerable: true,
783
+ enumerable: false,
777
784
  configurable: true
778
785
  });
779
786
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedFocusElevation", {
@@ -781,13 +788,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
781
788
  * Gets or sets the focus elevation to use for the button when the type is raised.
782
789
  */
783
790
  get: function () {
784
- return this.i.eq;
791
+ return this.i.dz;
785
792
  },
786
793
  set: function (v) {
787
- this.i.eq = +v;
788
- this._a("raisedFocusElevation", this.i.eq);
794
+ this.i.dz = +v;
795
+ this._a("raisedFocusElevation", this.i.dz);
789
796
  },
790
- enumerable: true,
797
+ enumerable: false,
791
798
  configurable: true
792
799
  });
793
800
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedBorderWidth", {
@@ -795,85 +802,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
795
802
  * Gets or sets the width to use for the button border when the type is raised.
796
803
  */
797
804
  get: function () {
798
- return this.i.bj;
805
+ return this.i.bw;
799
806
  },
800
807
  set: function (v) {
801
- this.i.bj = +v;
802
- this._a("raisedBorderWidth", this.i.bj);
808
+ this.i.bw = +v;
809
+ this._a("raisedBorderWidth", this.i.bw);
803
810
  },
804
- enumerable: true,
811
+ enumerable: false,
805
812
  configurable: true
806
813
  });
807
814
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusBottomRight", {
808
815
  get: function () {
809
- return this.i.kz ? this.i.kz.b : NaN;
816
+ return this.i.k3 ? this.i.k3.b : NaN;
810
817
  },
811
818
  set: function (v) {
812
819
  this.ensureRaisedCornerRadius();
813
- this.i.kz.b = +v;
814
- this._a("raisedCornerRadiusBottomRight", this.i.kz.b);
815
- this.i.kz = this.i.kz;
820
+ this.i.k3.b = +v;
821
+ this._a("raisedCornerRadiusBottomRight", this.i.k3.b);
822
+ this.i.k3 = this.i.k3;
816
823
  },
817
- enumerable: true,
824
+ enumerable: false,
818
825
  configurable: true
819
826
  });
820
827
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusBottomLeft", {
821
828
  get: function () {
822
- return this.i.kz ? this.i.kz.a : NaN;
829
+ return this.i.k3 ? this.i.k3.a : NaN;
823
830
  },
824
831
  set: function (v) {
825
832
  this.ensureRaisedCornerRadius();
826
- this.i.kz.a = +v;
827
- this._a("raisedCornerRadiusBottomLeft", this.i.kz.a);
828
- this.i.kz = this.i.kz;
833
+ this.i.k3.a = +v;
834
+ this._a("raisedCornerRadiusBottomLeft", this.i.k3.a);
835
+ this.i.k3 = this.i.k3;
829
836
  },
830
- enumerable: true,
837
+ enumerable: false,
831
838
  configurable: true
832
839
  });
833
840
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusTopLeft", {
834
841
  get: function () {
835
- return this.i.kz ? this.i.kz.c : NaN;
842
+ return this.i.k3 ? this.i.k3.c : NaN;
836
843
  },
837
844
  set: function (v) {
838
845
  this.ensureRaisedCornerRadius();
839
- this.i.kz.c = +v;
840
- this._a("raisedCornerRadiusTopLeft", this.i.kz.c);
841
- this.i.kz = this.i.kz;
846
+ this.i.k3.c = +v;
847
+ this._a("raisedCornerRadiusTopLeft", this.i.k3.c);
848
+ this.i.k3 = this.i.k3;
842
849
  },
843
- enumerable: true,
850
+ enumerable: false,
844
851
  configurable: true
845
852
  });
846
853
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusTopRight", {
847
854
  get: function () {
848
- return this.i.kz ? this.i.kz.d : NaN;
855
+ return this.i.k3 ? this.i.k3.d : NaN;
849
856
  },
850
857
  set: function (v) {
851
858
  this.ensureRaisedCornerRadius();
852
- this.i.kz.d = +v;
853
- this._a("raisedCornerRadiusTopRight", this.i.kz.d);
854
- this.i.kz = this.i.kz;
859
+ this.i.k3.d = +v;
860
+ this._a("raisedCornerRadiusTopRight", this.i.k3.d);
861
+ this.i.k3 = this.i.k3;
855
862
  },
856
- enumerable: true,
863
+ enumerable: false,
857
864
  configurable: true
858
865
  });
859
866
  IgcXButtonComponent.prototype.ensureRaisedCornerRadius = function () {
860
- if (this.i.kz) {
867
+ if (this.i.k3) {
861
868
  return;
862
869
  }
863
- this.i.kz = new CornerRadius(2);
870
+ this.i.k3 = new CornerRadius(2);
864
871
  };
865
872
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedRippleColor", {
866
873
  /**
867
874
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
868
875
  */
869
876
  get: function () {
870
- return brushToString(this.i.t6);
877
+ return brushToString(this.i.q4);
871
878
  },
872
879
  set: function (v) {
873
- this.i.t6 = stringToBrush(v);
874
- this._a("raisedRippleColor", brushToString(this.i.t6));
880
+ this.i.q4 = stringToBrush(v);
881
+ this._a("raisedRippleColor", brushToString(this.i.q4));
875
882
  },
876
- enumerable: true,
883
+ enumerable: false,
877
884
  configurable: true
878
885
  });
879
886
  Object.defineProperty(IgcXButtonComponent.prototype, "flatBackgroundColor", {
@@ -881,13 +888,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
881
888
  * Gets or sets the color to use for the background of the button when the type is flat.
882
889
  */
883
890
  get: function () {
884
- return brushToString(this.i.sw);
891
+ return brushToString(this.i.pu);
885
892
  },
886
893
  set: function (v) {
887
- this.i.sw = stringToBrush(v);
888
- this._a("flatBackgroundColor", brushToString(this.i.sw));
894
+ this.i.pu = stringToBrush(v);
895
+ this._a("flatBackgroundColor", brushToString(this.i.pu));
889
896
  },
890
- enumerable: true,
897
+ enumerable: false,
891
898
  configurable: true
892
899
  });
893
900
  Object.defineProperty(IgcXButtonComponent.prototype, "flatDisabledBackgroundColor", {
@@ -895,13 +902,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
895
902
  * Gets or sets the color to use for the disabled background of the button when the type is flat.
896
903
  */
897
904
  get: function () {
898
- return brushToString(this.i.sy);
905
+ return brushToString(this.i.pw);
899
906
  },
900
907
  set: function (v) {
901
- this.i.sy = stringToBrush(v);
902
- this._a("flatDisabledBackgroundColor", brushToString(this.i.sy));
908
+ this.i.pw = stringToBrush(v);
909
+ this._a("flatDisabledBackgroundColor", brushToString(this.i.pw));
903
910
  },
904
- enumerable: true,
911
+ enumerable: false,
905
912
  configurable: true
906
913
  });
907
914
  Object.defineProperty(IgcXButtonComponent.prototype, "flatDisabledBorderColor", {
@@ -909,13 +916,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
909
916
  * Gets or sets the color to use for the disabled border of the button when the type is flat.
910
917
  */
911
918
  get: function () {
912
- return brushToString(this.i.sz);
919
+ return brushToString(this.i.px);
913
920
  },
914
921
  set: function (v) {
915
- this.i.sz = stringToBrush(v);
916
- this._a("flatDisabledBorderColor", brushToString(this.i.sz));
922
+ this.i.px = stringToBrush(v);
923
+ this._a("flatDisabledBorderColor", brushToString(this.i.px));
917
924
  },
918
- enumerable: true,
925
+ enumerable: false,
919
926
  configurable: true
920
927
  });
921
928
  Object.defineProperty(IgcXButtonComponent.prototype, "flatDisabledTextColor", {
@@ -923,13 +930,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
923
930
  * Gets or sets the color to use for the disabled text of the button when the type is flat.
924
931
  */
925
932
  get: function () {
926
- return brushToString(this.i.s0);
933
+ return brushToString(this.i.py);
927
934
  },
928
935
  set: function (v) {
929
- this.i.s0 = stringToBrush(v);
930
- this._a("flatDisabledTextColor", brushToString(this.i.s0));
936
+ this.i.py = stringToBrush(v);
937
+ this._a("flatDisabledTextColor", brushToString(this.i.py));
931
938
  },
932
- enumerable: true,
939
+ enumerable: false,
933
940
  configurable: true
934
941
  });
935
942
  Object.defineProperty(IgcXButtonComponent.prototype, "flatDisabledElevation", {
@@ -937,13 +944,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
937
944
  * Gets or sets the disabled elevation to use for the button when the type is flat.
938
945
  */
939
946
  get: function () {
940
- return this.i.eb;
947
+ return this.i.dj;
941
948
  },
942
949
  set: function (v) {
943
- this.i.eb = +v;
944
- this._a("flatDisabledElevation", this.i.eb);
950
+ this.i.dj = +v;
951
+ this._a("flatDisabledElevation", this.i.dj);
945
952
  },
946
- enumerable: true,
953
+ enumerable: false,
947
954
  configurable: true
948
955
  });
949
956
  Object.defineProperty(IgcXButtonComponent.prototype, "flatHoverBackgroundColor", {
@@ -951,13 +958,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
951
958
  * Gets or sets the hover color to use for the background of the button when the type is flat.
952
959
  */
953
960
  get: function () {
954
- return brushToString(this.i.s3);
961
+ return brushToString(this.i.p1);
955
962
  },
956
963
  set: function (v) {
957
- this.i.s3 = stringToBrush(v);
958
- this._a("flatHoverBackgroundColor", brushToString(this.i.s3));
964
+ this.i.p1 = stringToBrush(v);
965
+ this._a("flatHoverBackgroundColor", brushToString(this.i.p1));
959
966
  },
960
- enumerable: true,
967
+ enumerable: false,
961
968
  configurable: true
962
969
  });
963
970
  Object.defineProperty(IgcXButtonComponent.prototype, "flatBorderColor", {
@@ -965,13 +972,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
965
972
  * Gets or sets the border color to use for the button when the type is flat.
966
973
  */
967
974
  get: function () {
968
- return brushToString(this.i.sx);
975
+ return brushToString(this.i.pv);
969
976
  },
970
977
  set: function (v) {
971
- this.i.sx = stringToBrush(v);
972
- this._a("flatBorderColor", brushToString(this.i.sx));
978
+ this.i.pv = stringToBrush(v);
979
+ this._a("flatBorderColor", brushToString(this.i.pv));
973
980
  },
974
- enumerable: true,
981
+ enumerable: false,
975
982
  configurable: true
976
983
  });
977
984
  Object.defineProperty(IgcXButtonComponent.prototype, "flatRestingElevation", {
@@ -979,13 +986,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
979
986
  * Gets or sets the elevation to use for the button when the type is flat.
980
987
  */
981
988
  get: function () {
982
- return this.i.ee;
989
+ return this.i.dm;
983
990
  },
984
991
  set: function (v) {
985
- this.i.ee = +v;
986
- this._a("flatRestingElevation", this.i.ee);
992
+ this.i.dm = +v;
993
+ this._a("flatRestingElevation", this.i.dm);
987
994
  },
988
- enumerable: true,
995
+ enumerable: false,
989
996
  configurable: true
990
997
  });
991
998
  Object.defineProperty(IgcXButtonComponent.prototype, "flatHoverElevation", {
@@ -993,13 +1000,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
993
1000
  * Gets or sets the hover elevation to use for the button when the type is flat.
994
1001
  */
995
1002
  get: function () {
996
- return this.i.ed;
1003
+ return this.i.dl;
997
1004
  },
998
1005
  set: function (v) {
999
- this.i.ed = +v;
1000
- this._a("flatHoverElevation", this.i.ed);
1006
+ this.i.dl = +v;
1007
+ this._a("flatHoverElevation", this.i.dl);
1001
1008
  },
1002
- enumerable: true,
1009
+ enumerable: false,
1003
1010
  configurable: true
1004
1011
  });
1005
1012
  Object.defineProperty(IgcXButtonComponent.prototype, "flatFocusElevation", {
@@ -1007,13 +1014,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1007
1014
  * Gets or sets the focus elevation to use for the button when the type is flat.
1008
1015
  */
1009
1016
  get: function () {
1010
- return this.i.ec;
1017
+ return this.i.dk;
1011
1018
  },
1012
1019
  set: function (v) {
1013
- this.i.ec = +v;
1014
- this._a("flatFocusElevation", this.i.ec);
1020
+ this.i.dk = +v;
1021
+ this._a("flatFocusElevation", this.i.dk);
1015
1022
  },
1016
- enumerable: true,
1023
+ enumerable: false,
1017
1024
  configurable: true
1018
1025
  });
1019
1026
  Object.defineProperty(IgcXButtonComponent.prototype, "flatRippleColor", {
@@ -1021,13 +1028,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1021
1028
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
1022
1029
  */
1023
1030
  get: function () {
1024
- return brushToString(this.i.s5);
1031
+ return brushToString(this.i.p3);
1025
1032
  },
1026
1033
  set: function (v) {
1027
- this.i.s5 = stringToBrush(v);
1028
- this._a("flatRippleColor", brushToString(this.i.s5));
1034
+ this.i.p3 = stringToBrush(v);
1035
+ this._a("flatRippleColor", brushToString(this.i.p3));
1029
1036
  },
1030
- enumerable: true,
1037
+ enumerable: false,
1031
1038
  configurable: true
1032
1039
  });
1033
1040
  Object.defineProperty(IgcXButtonComponent.prototype, "flatTextColor", {
@@ -1035,13 +1042,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1035
1042
  * Gets or sets the color to use for the text of the button when type is flat.
1036
1043
  */
1037
1044
  get: function () {
1038
- return brushToString(this.i.s6);
1045
+ return brushToString(this.i.p4);
1039
1046
  },
1040
1047
  set: function (v) {
1041
- this.i.s6 = stringToBrush(v);
1042
- this._a("flatTextColor", brushToString(this.i.s6));
1048
+ this.i.p4 = stringToBrush(v);
1049
+ this._a("flatTextColor", brushToString(this.i.p4));
1043
1050
  },
1044
- enumerable: true,
1051
+ enumerable: false,
1045
1052
  configurable: true
1046
1053
  });
1047
1054
  Object.defineProperty(IgcXButtonComponent.prototype, "flatHoverTextColor", {
@@ -1049,13 +1056,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1049
1056
  * Gets or sets the color to use for the hovered text of the button when type is flat.
1050
1057
  */
1051
1058
  get: function () {
1052
- return brushToString(this.i.s4);
1059
+ return brushToString(this.i.p2);
1053
1060
  },
1054
1061
  set: function (v) {
1055
- this.i.s4 = stringToBrush(v);
1056
- this._a("flatHoverTextColor", brushToString(this.i.s4));
1062
+ this.i.p2 = stringToBrush(v);
1063
+ this._a("flatHoverTextColor", brushToString(this.i.p2));
1057
1064
  },
1058
- enumerable: true,
1065
+ enumerable: false,
1059
1066
  configurable: true
1060
1067
  });
1061
1068
  Object.defineProperty(IgcXButtonComponent.prototype, "flatFocusBackgroundColor", {
@@ -1063,13 +1070,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1063
1070
  * Gets or sets the color to use for the backround the button when it is focused and flat.
1064
1071
  */
1065
1072
  get: function () {
1066
- return brushToString(this.i.s1);
1073
+ return brushToString(this.i.pz);
1067
1074
  },
1068
1075
  set: function (v) {
1069
- this.i.s1 = stringToBrush(v);
1070
- this._a("flatFocusBackgroundColor", brushToString(this.i.s1));
1076
+ this.i.pz = stringToBrush(v);
1077
+ this._a("flatFocusBackgroundColor", brushToString(this.i.pz));
1071
1078
  },
1072
- enumerable: true,
1079
+ enumerable: false,
1073
1080
  configurable: true
1074
1081
  });
1075
1082
  Object.defineProperty(IgcXButtonComponent.prototype, "flatFocusTextColor", {
@@ -1077,13 +1084,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1077
1084
  * Gets or sets the color to use for the text the button when it is focused and flat.
1078
1085
  */
1079
1086
  get: function () {
1080
- return brushToString(this.i.s2);
1087
+ return brushToString(this.i.p0);
1081
1088
  },
1082
1089
  set: function (v) {
1083
- this.i.s2 = stringToBrush(v);
1084
- this._a("flatFocusTextColor", brushToString(this.i.s2));
1090
+ this.i.p0 = stringToBrush(v);
1091
+ this._a("flatFocusTextColor", brushToString(this.i.p0));
1085
1092
  },
1086
- enumerable: true,
1093
+ enumerable: false,
1087
1094
  configurable: true
1088
1095
  });
1089
1096
  Object.defineProperty(IgcXButtonComponent.prototype, "flatBorderWidth", {
@@ -1091,85 +1098,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1091
1098
  * Gets or sets the width to use for the button border when the type is flat.
1092
1099
  */
1093
1100
  get: function () {
1094
- return this.i.be;
1101
+ return this.i.br;
1095
1102
  },
1096
1103
  set: function (v) {
1097
- this.i.be = +v;
1098
- this._a("flatBorderWidth", this.i.be);
1104
+ this.i.br = +v;
1105
+ this._a("flatBorderWidth", this.i.br);
1099
1106
  },
1100
- enumerable: true,
1107
+ enumerable: false,
1101
1108
  configurable: true
1102
1109
  });
1103
1110
  Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusBottomRight", {
1104
1111
  get: function () {
1105
- return this.i.kw ? this.i.kw.b : NaN;
1112
+ return this.i.k0 ? this.i.k0.b : NaN;
1106
1113
  },
1107
1114
  set: function (v) {
1108
1115
  this.ensureFlatCornerRadius();
1109
- this.i.kw.b = +v;
1110
- this._a("flatCornerRadiusBottomRight", this.i.kw.b);
1111
- this.i.kw = this.i.kw;
1116
+ this.i.k0.b = +v;
1117
+ this._a("flatCornerRadiusBottomRight", this.i.k0.b);
1118
+ this.i.k0 = this.i.k0;
1112
1119
  },
1113
- enumerable: true,
1120
+ enumerable: false,
1114
1121
  configurable: true
1115
1122
  });
1116
1123
  Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusBottomLeft", {
1117
1124
  get: function () {
1118
- return this.i.kw ? this.i.kw.a : NaN;
1125
+ return this.i.k0 ? this.i.k0.a : NaN;
1119
1126
  },
1120
1127
  set: function (v) {
1121
1128
  this.ensureFlatCornerRadius();
1122
- this.i.kw.a = +v;
1123
- this._a("flatCornerRadiusBottomLeft", this.i.kw.a);
1124
- this.i.kw = this.i.kw;
1129
+ this.i.k0.a = +v;
1130
+ this._a("flatCornerRadiusBottomLeft", this.i.k0.a);
1131
+ this.i.k0 = this.i.k0;
1125
1132
  },
1126
- enumerable: true,
1133
+ enumerable: false,
1127
1134
  configurable: true
1128
1135
  });
1129
1136
  Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusTopLeft", {
1130
1137
  get: function () {
1131
- return this.i.kw ? this.i.kw.c : NaN;
1138
+ return this.i.k0 ? this.i.k0.c : NaN;
1132
1139
  },
1133
1140
  set: function (v) {
1134
1141
  this.ensureFlatCornerRadius();
1135
- this.i.kw.c = +v;
1136
- this._a("flatCornerRadiusTopLeft", this.i.kw.c);
1137
- this.i.kw = this.i.kw;
1142
+ this.i.k0.c = +v;
1143
+ this._a("flatCornerRadiusTopLeft", this.i.k0.c);
1144
+ this.i.k0 = this.i.k0;
1138
1145
  },
1139
- enumerable: true,
1146
+ enumerable: false,
1140
1147
  configurable: true
1141
1148
  });
1142
1149
  Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusTopRight", {
1143
1150
  get: function () {
1144
- return this.i.kw ? this.i.kw.d : NaN;
1151
+ return this.i.k0 ? this.i.k0.d : NaN;
1145
1152
  },
1146
1153
  set: function (v) {
1147
1154
  this.ensureFlatCornerRadius();
1148
- this.i.kw.d = +v;
1149
- this._a("flatCornerRadiusTopRight", this.i.kw.d);
1150
- this.i.kw = this.i.kw;
1155
+ this.i.k0.d = +v;
1156
+ this._a("flatCornerRadiusTopRight", this.i.k0.d);
1157
+ this.i.k0 = this.i.k0;
1151
1158
  },
1152
- enumerable: true,
1159
+ enumerable: false,
1153
1160
  configurable: true
1154
1161
  });
1155
1162
  IgcXButtonComponent.prototype.ensureFlatCornerRadius = function () {
1156
- if (this.i.kw) {
1163
+ if (this.i.k0) {
1157
1164
  return;
1158
1165
  }
1159
- this.i.kw = new CornerRadius(2);
1166
+ this.i.k0 = new CornerRadius(2);
1160
1167
  };
1161
1168
  Object.defineProperty(IgcXButtonComponent.prototype, "backgroundColor", {
1162
1169
  /**
1163
1170
  * Gets or sets the color to use for the background when the button regardless of type.
1164
1171
  */
1165
1172
  get: function () {
1166
- return brushToString(this.i.nm);
1173
+ return brushToString(this.i.ns);
1167
1174
  },
1168
1175
  set: function (v) {
1169
- this.i.nm = stringToBrush(v);
1170
- this._a("backgroundColor", brushToString(this.i.nm));
1176
+ this.i.ns = stringToBrush(v);
1177
+ this._a("backgroundColor", brushToString(this.i.ns));
1171
1178
  },
1172
- enumerable: true,
1179
+ enumerable: false,
1173
1180
  configurable: true
1174
1181
  });
1175
1182
  Object.defineProperty(IgcXButtonComponent.prototype, "disabledBackgroundColor", {
@@ -1177,13 +1184,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1177
1184
  * Gets or sets the color to use for the disabled background of the button when the type is disabled.
1178
1185
  */
1179
1186
  get: function () {
1180
- return brushToString(this.i.si);
1187
+ return brushToString(this.i.pg);
1181
1188
  },
1182
1189
  set: function (v) {
1183
- this.i.si = stringToBrush(v);
1184
- this._a("disabledBackgroundColor", brushToString(this.i.si));
1190
+ this.i.pg = stringToBrush(v);
1191
+ this._a("disabledBackgroundColor", brushToString(this.i.pg));
1185
1192
  },
1186
- enumerable: true,
1193
+ enumerable: false,
1187
1194
  configurable: true
1188
1195
  });
1189
1196
  Object.defineProperty(IgcXButtonComponent.prototype, "disabledBorderColor", {
@@ -1191,13 +1198,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1191
1198
  * Gets or sets the color to use for the disabled border of the button when the type is raised.
1192
1199
  */
1193
1200
  get: function () {
1194
- return brushToString(this.i.sj);
1201
+ return brushToString(this.i.ph);
1195
1202
  },
1196
1203
  set: function (v) {
1197
- this.i.sj = stringToBrush(v);
1198
- this._a("disabledBorderColor", brushToString(this.i.sj));
1204
+ this.i.ph = stringToBrush(v);
1205
+ this._a("disabledBorderColor", brushToString(this.i.ph));
1199
1206
  },
1200
- enumerable: true,
1207
+ enumerable: false,
1201
1208
  configurable: true
1202
1209
  });
1203
1210
  Object.defineProperty(IgcXButtonComponent.prototype, "disabledTextColor", {
@@ -1205,13 +1212,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1205
1212
  * Gets or sets the color to use for the disabled text of the button when the type is raised.
1206
1213
  */
1207
1214
  get: function () {
1208
- return brushToString(this.i.sk);
1215
+ return brushToString(this.i.pi);
1209
1216
  },
1210
1217
  set: function (v) {
1211
- this.i.sk = stringToBrush(v);
1212
- this._a("disabledTextColor", brushToString(this.i.sk));
1218
+ this.i.pi = stringToBrush(v);
1219
+ this._a("disabledTextColor", brushToString(this.i.pi));
1213
1220
  },
1214
- enumerable: true,
1221
+ enumerable: false,
1215
1222
  configurable: true
1216
1223
  });
1217
1224
  Object.defineProperty(IgcXButtonComponent.prototype, "disabledElevation", {
@@ -1219,13 +1226,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1219
1226
  * Gets or sets the disabled elevation to use for the button when the type is raised.
1220
1227
  */
1221
1228
  get: function () {
1222
- return this.i.d6;
1229
+ return this.i.de;
1223
1230
  },
1224
1231
  set: function (v) {
1225
- this.i.d6 = +v;
1226
- this._a("disabledElevation", this.i.d6);
1232
+ this.i.de = +v;
1233
+ this._a("disabledElevation", this.i.de);
1227
1234
  },
1228
- enumerable: true,
1235
+ enumerable: false,
1229
1236
  configurable: true
1230
1237
  });
1231
1238
  Object.defineProperty(IgcXButtonComponent.prototype, "elevationMode", {
@@ -1233,13 +1240,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1233
1240
  * Gets or sets the disabled elevation to use for the button when the type is raised.
1234
1241
  */
1235
1242
  get: function () {
1236
- return this.i.t;
1243
+ return this.i.w;
1237
1244
  },
1238
1245
  set: function (v) {
1239
- this.i.t = ensureEnum(ElevationMode_$type, v);
1240
- this._a("elevationMode", enumToString(ElevationMode_$type, this.i.t));
1246
+ this.i.w = ensureEnum(ElevationMode_$type, v);
1247
+ this._a("elevationMode", enumToString(ElevationMode_$type, this.i.w));
1241
1248
  },
1242
- enumerable: true,
1249
+ enumerable: false,
1243
1250
  configurable: true
1244
1251
  });
1245
1252
  Object.defineProperty(IgcXButtonComponent.prototype, "hoverBackgroundColor", {
@@ -1247,13 +1254,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1247
1254
  * Gets or sets the hover color to use for the background of the button when the type is hovered.
1248
1255
  */
1249
1256
  get: function () {
1250
- return brushToString(this.i.s9);
1257
+ return brushToString(this.i.p7);
1251
1258
  },
1252
1259
  set: function (v) {
1253
- this.i.s9 = stringToBrush(v);
1254
- this._a("hoverBackgroundColor", brushToString(this.i.s9));
1260
+ this.i.p7 = stringToBrush(v);
1261
+ this._a("hoverBackgroundColor", brushToString(this.i.p7));
1255
1262
  },
1256
- enumerable: true,
1263
+ enumerable: false,
1257
1264
  configurable: true
1258
1265
  });
1259
1266
  Object.defineProperty(IgcXButtonComponent.prototype, "borderColor", {
@@ -1261,13 +1268,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1261
1268
  * Gets or sets the border color to use for the button regardless of type.
1262
1269
  */
1263
1270
  get: function () {
1264
- return brushToString(this.i.nn);
1271
+ return brushToString(this.i.nt);
1265
1272
  },
1266
1273
  set: function (v) {
1267
- this.i.nn = stringToBrush(v);
1268
- this._a("borderColor", brushToString(this.i.nn));
1274
+ this.i.nt = stringToBrush(v);
1275
+ this._a("borderColor", brushToString(this.i.nt));
1269
1276
  },
1270
- enumerable: true,
1277
+ enumerable: false,
1271
1278
  configurable: true
1272
1279
  });
1273
1280
  Object.defineProperty(IgcXButtonComponent.prototype, "restingElevation", {
@@ -1275,13 +1282,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1275
1282
  * Gets or sets the elevation to use for the button regardless of type.
1276
1283
  */
1277
1284
  get: function () {
1278
- return this.i.et;
1285
+ return this.i.d2;
1279
1286
  },
1280
1287
  set: function (v) {
1281
- this.i.et = +v;
1282
- this._a("restingElevation", this.i.et);
1288
+ this.i.d2 = +v;
1289
+ this._a("restingElevation", this.i.d2);
1283
1290
  },
1284
- enumerable: true,
1291
+ enumerable: false,
1285
1292
  configurable: true
1286
1293
  });
1287
1294
  Object.defineProperty(IgcXButtonComponent.prototype, "hoverElevation", {
@@ -1289,13 +1296,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1289
1296
  * Gets or sets the hover elevation to use for the button regardless of type.
1290
1297
  */
1291
1298
  get: function () {
1292
- return this.i.eg;
1299
+ return this.i.dp;
1293
1300
  },
1294
1301
  set: function (v) {
1295
- this.i.eg = +v;
1296
- this._a("hoverElevation", this.i.eg);
1302
+ this.i.dp = +v;
1303
+ this._a("hoverElevation", this.i.dp);
1297
1304
  },
1298
- enumerable: true,
1305
+ enumerable: false,
1299
1306
  configurable: true
1300
1307
  });
1301
1308
  Object.defineProperty(IgcXButtonComponent.prototype, "focusElevation", {
@@ -1303,13 +1310,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1303
1310
  * Gets or sets the focus elevation to use for the button regardless of type.
1304
1311
  */
1305
1312
  get: function () {
1306
- return this.i.ef;
1313
+ return this.i.dn;
1307
1314
  },
1308
1315
  set: function (v) {
1309
- this.i.ef = +v;
1310
- this._a("focusElevation", this.i.ef);
1316
+ this.i.dn = +v;
1317
+ this._a("focusElevation", this.i.dn);
1311
1318
  },
1312
- enumerable: true,
1319
+ enumerable: false,
1313
1320
  configurable: true
1314
1321
  });
1315
1322
  Object.defineProperty(IgcXButtonComponent.prototype, "textStyle", {
@@ -1317,18 +1324,18 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1317
1324
  * Gets or sets the use for the button.
1318
1325
  */
1319
1326
  get: function () {
1320
- if (this.i.v == null) {
1327
+ if (this.i.aa == null) {
1321
1328
  return null;
1322
1329
  }
1323
- return this.i.v.fontString;
1330
+ return this.i.aa.fontString;
1324
1331
  },
1325
1332
  set: function (v) {
1326
1333
  var fi = new FontInfo();
1327
1334
  fi.fontString = v;
1328
- this.i.v = fi;
1329
- this._a("textStyle", this.i.v != null ? this.i.v.fontString : "");
1335
+ this.i.aa = fi;
1336
+ this._a("textStyle", this.i.aa != null ? this.i.aa.fontString : "");
1330
1337
  },
1331
- enumerable: true,
1338
+ enumerable: false,
1332
1339
  configurable: true
1333
1340
  });
1334
1341
  Object.defineProperty(IgcXButtonComponent.prototype, "textColor", {
@@ -1336,13 +1343,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1336
1343
  * Gets or sets the color to use for the text of the button regardless of type.
1337
1344
  */
1338
1345
  get: function () {
1339
- return brushToString(this.i.t9);
1346
+ return brushToString(this.i.q7);
1340
1347
  },
1341
1348
  set: function (v) {
1342
- this.i.t9 = stringToBrush(v);
1343
- this._a("textColor", brushToString(this.i.t9));
1349
+ this.i.q7 = stringToBrush(v);
1350
+ this._a("textColor", brushToString(this.i.q7));
1344
1351
  },
1345
- enumerable: true,
1352
+ enumerable: false,
1346
1353
  configurable: true
1347
1354
  });
1348
1355
  Object.defineProperty(IgcXButtonComponent.prototype, "hoverTextColor", {
@@ -1350,13 +1357,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1350
1357
  * Gets or sets the color to use for the hovered text of the button regardless of type.
1351
1358
  */
1352
1359
  get: function () {
1353
- return brushToString(this.i.ta);
1360
+ return brushToString(this.i.p8);
1354
1361
  },
1355
1362
  set: function (v) {
1356
- this.i.ta = stringToBrush(v);
1357
- this._a("hoverTextColor", brushToString(this.i.ta));
1363
+ this.i.p8 = stringToBrush(v);
1364
+ this._a("hoverTextColor", brushToString(this.i.p8));
1358
1365
  },
1359
- enumerable: true,
1366
+ enumerable: false,
1360
1367
  configurable: true
1361
1368
  });
1362
1369
  Object.defineProperty(IgcXButtonComponent.prototype, "rippleColor", {
@@ -1364,13 +1371,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1364
1371
  * Gets or sets the color to use for the background of the button regardless of type.
1365
1372
  */
1366
1373
  get: function () {
1367
- return brushToString(this.i.t8);
1374
+ return brushToString(this.i.q6);
1368
1375
  },
1369
1376
  set: function (v) {
1370
- this.i.t8 = stringToBrush(v);
1371
- this._a("rippleColor", brushToString(this.i.t8));
1377
+ this.i.q6 = stringToBrush(v);
1378
+ this._a("rippleColor", brushToString(this.i.q6));
1372
1379
  },
1373
- enumerable: true,
1380
+ enumerable: false,
1374
1381
  configurable: true
1375
1382
  });
1376
1383
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedTextColor", {
@@ -1378,13 +1385,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1378
1385
  * Gets or sets the color to use for the text of the button when type is raised.
1379
1386
  */
1380
1387
  get: function () {
1381
- return brushToString(this.i.t7);
1388
+ return brushToString(this.i.q5);
1382
1389
  },
1383
1390
  set: function (v) {
1384
- this.i.t7 = stringToBrush(v);
1385
- this._a("raisedTextColor", brushToString(this.i.t7));
1391
+ this.i.q5 = stringToBrush(v);
1392
+ this._a("raisedTextColor", brushToString(this.i.q5));
1386
1393
  },
1387
- enumerable: true,
1394
+ enumerable: false,
1388
1395
  configurable: true
1389
1396
  });
1390
1397
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedHoverTextColor", {
@@ -1392,13 +1399,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1392
1399
  * Gets or sets the color to use for the hovered text of the button when type is raised.
1393
1400
  */
1394
1401
  get: function () {
1395
- return brushToString(this.i.t5);
1402
+ return brushToString(this.i.q3);
1396
1403
  },
1397
1404
  set: function (v) {
1398
- this.i.t5 = stringToBrush(v);
1399
- this._a("raisedHoverTextColor", brushToString(this.i.t5));
1405
+ this.i.q3 = stringToBrush(v);
1406
+ this._a("raisedHoverTextColor", brushToString(this.i.q3));
1400
1407
  },
1401
- enumerable: true,
1408
+ enumerable: false,
1402
1409
  configurable: true
1403
1410
  });
1404
1411
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedFocusBackgroundColor", {
@@ -1406,13 +1413,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1406
1413
  * Gets or sets the color to use for the backround the button when it is focused and raised.
1407
1414
  */
1408
1415
  get: function () {
1409
- return brushToString(this.i.t2);
1416
+ return brushToString(this.i.q0);
1410
1417
  },
1411
1418
  set: function (v) {
1412
- this.i.t2 = stringToBrush(v);
1413
- this._a("raisedFocusBackgroundColor", brushToString(this.i.t2));
1419
+ this.i.q0 = stringToBrush(v);
1420
+ this._a("raisedFocusBackgroundColor", brushToString(this.i.q0));
1414
1421
  },
1415
- enumerable: true,
1422
+ enumerable: false,
1416
1423
  configurable: true
1417
1424
  });
1418
1425
  Object.defineProperty(IgcXButtonComponent.prototype, "raisedFocusTextColor", {
@@ -1420,13 +1427,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1420
1427
  * Gets or sets the color to use for the text the button when it is focused and raised.
1421
1428
  */
1422
1429
  get: function () {
1423
- return brushToString(this.i.t3);
1430
+ return brushToString(this.i.q1);
1424
1431
  },
1425
1432
  set: function (v) {
1426
- this.i.t3 = stringToBrush(v);
1427
- this._a("raisedFocusTextColor", brushToString(this.i.t3));
1433
+ this.i.q1 = stringToBrush(v);
1434
+ this._a("raisedFocusTextColor", brushToString(this.i.q1));
1428
1435
  },
1429
- enumerable: true,
1436
+ enumerable: false,
1430
1437
  configurable: true
1431
1438
  });
1432
1439
  Object.defineProperty(IgcXButtonComponent.prototype, "focusBackgroundColor", {
@@ -1434,13 +1441,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1434
1441
  * Gets or sets the color to use for the backround the button when it is focused.
1435
1442
  */
1436
1443
  get: function () {
1437
- return brushToString(this.i.s7);
1444
+ return brushToString(this.i.p5);
1438
1445
  },
1439
1446
  set: function (v) {
1440
- this.i.s7 = stringToBrush(v);
1441
- this._a("focusBackgroundColor", brushToString(this.i.s7));
1447
+ this.i.p5 = stringToBrush(v);
1448
+ this._a("focusBackgroundColor", brushToString(this.i.p5));
1442
1449
  },
1443
- enumerable: true,
1450
+ enumerable: false,
1444
1451
  configurable: true
1445
1452
  });
1446
1453
  Object.defineProperty(IgcXButtonComponent.prototype, "focusTextColor", {
@@ -1448,13 +1455,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1448
1455
  * Gets or sets the color to use for the text of the button when it is focused.
1449
1456
  */
1450
1457
  get: function () {
1451
- return brushToString(this.i.s8);
1458
+ return brushToString(this.i.p6);
1452
1459
  },
1453
1460
  set: function (v) {
1454
- this.i.s8 = stringToBrush(v);
1455
- this._a("focusTextColor", brushToString(this.i.s8));
1461
+ this.i.p6 = stringToBrush(v);
1462
+ this._a("focusTextColor", brushToString(this.i.p6));
1456
1463
  },
1457
- enumerable: true,
1464
+ enumerable: false,
1458
1465
  configurable: true
1459
1466
  });
1460
1467
  Object.defineProperty(IgcXButtonComponent.prototype, "borderWidth", {
@@ -1462,85 +1469,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1462
1469
  * Gets or sets the width to use for the button border regardless of type.
1463
1470
  */
1464
1471
  get: function () {
1465
- return this.i.ax;
1472
+ return this.i.bg;
1466
1473
  },
1467
1474
  set: function (v) {
1468
- this.i.ax = +v;
1469
- this._a("borderWidth", this.i.ax);
1475
+ this.i.bg = +v;
1476
+ this._a("borderWidth", this.i.bg);
1470
1477
  },
1471
- enumerable: true,
1478
+ enumerable: false,
1472
1479
  configurable: true
1473
1480
  });
1474
1481
  Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusBottomRight", {
1475
1482
  get: function () {
1476
- return this.i.kf ? this.i.kf.b : NaN;
1483
+ return this.i.kt ? this.i.kt.b : NaN;
1477
1484
  },
1478
1485
  set: function (v) {
1479
1486
  this.ensureCornerRadius();
1480
- this.i.kf.b = +v;
1481
- this._a("cornerRadiusBottomRight", this.i.kf.b);
1482
- this.i.kf = this.i.kf;
1487
+ this.i.kt.b = +v;
1488
+ this._a("cornerRadiusBottomRight", this.i.kt.b);
1489
+ this.i.kt = this.i.kt;
1483
1490
  },
1484
- enumerable: true,
1491
+ enumerable: false,
1485
1492
  configurable: true
1486
1493
  });
1487
1494
  Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusBottomLeft", {
1488
1495
  get: function () {
1489
- return this.i.kf ? this.i.kf.a : NaN;
1496
+ return this.i.kt ? this.i.kt.a : NaN;
1490
1497
  },
1491
1498
  set: function (v) {
1492
1499
  this.ensureCornerRadius();
1493
- this.i.kf.a = +v;
1494
- this._a("cornerRadiusBottomLeft", this.i.kf.a);
1495
- this.i.kf = this.i.kf;
1500
+ this.i.kt.a = +v;
1501
+ this._a("cornerRadiusBottomLeft", this.i.kt.a);
1502
+ this.i.kt = this.i.kt;
1496
1503
  },
1497
- enumerable: true,
1504
+ enumerable: false,
1498
1505
  configurable: true
1499
1506
  });
1500
1507
  Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusTopLeft", {
1501
1508
  get: function () {
1502
- return this.i.kf ? this.i.kf.c : NaN;
1509
+ return this.i.kt ? this.i.kt.c : NaN;
1503
1510
  },
1504
1511
  set: function (v) {
1505
1512
  this.ensureCornerRadius();
1506
- this.i.kf.c = +v;
1507
- this._a("cornerRadiusTopLeft", this.i.kf.c);
1508
- this.i.kf = this.i.kf;
1513
+ this.i.kt.c = +v;
1514
+ this._a("cornerRadiusTopLeft", this.i.kt.c);
1515
+ this.i.kt = this.i.kt;
1509
1516
  },
1510
- enumerable: true,
1517
+ enumerable: false,
1511
1518
  configurable: true
1512
1519
  });
1513
1520
  Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusTopRight", {
1514
1521
  get: function () {
1515
- return this.i.kf ? this.i.kf.d : NaN;
1522
+ return this.i.kt ? this.i.kt.d : NaN;
1516
1523
  },
1517
1524
  set: function (v) {
1518
1525
  this.ensureCornerRadius();
1519
- this.i.kf.d = +v;
1520
- this._a("cornerRadiusTopRight", this.i.kf.d);
1521
- this.i.kf = this.i.kf;
1526
+ this.i.kt.d = +v;
1527
+ this._a("cornerRadiusTopRight", this.i.kt.d);
1528
+ this.i.kt = this.i.kt;
1522
1529
  },
1523
- enumerable: true,
1530
+ enumerable: false,
1524
1531
  configurable: true
1525
1532
  });
1526
1533
  IgcXButtonComponent.prototype.ensureCornerRadius = function () {
1527
- if (this.i.kf) {
1534
+ if (this.i.kt) {
1528
1535
  return;
1529
1536
  }
1530
- this.i.kf = new CornerRadius(2);
1537
+ this.i.kt = new CornerRadius(2);
1531
1538
  };
1532
1539
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedBackgroundColor", {
1533
1540
  /**
1534
1541
  * Gets or sets the color to use for the background of the button when the type is outlined.
1535
1542
  */
1536
1543
  get: function () {
1537
- return brushToString(this.i.tm);
1544
+ return brushToString(this.i.qk);
1538
1545
  },
1539
1546
  set: function (v) {
1540
- this.i.tm = stringToBrush(v);
1541
- this._a("outlinedBackgroundColor", brushToString(this.i.tm));
1547
+ this.i.qk = stringToBrush(v);
1548
+ this._a("outlinedBackgroundColor", brushToString(this.i.qk));
1542
1549
  },
1543
- enumerable: true,
1550
+ enumerable: false,
1544
1551
  configurable: true
1545
1552
  });
1546
1553
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedDisabledBackgroundColor", {
@@ -1548,13 +1555,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1548
1555
  * Gets or sets the color to use for the disabled background of the button when the type is outlined.
1549
1556
  */
1550
1557
  get: function () {
1551
- return brushToString(this.i.to);
1558
+ return brushToString(this.i.qm);
1552
1559
  },
1553
1560
  set: function (v) {
1554
- this.i.to = stringToBrush(v);
1555
- this._a("outlinedDisabledBackgroundColor", brushToString(this.i.to));
1561
+ this.i.qm = stringToBrush(v);
1562
+ this._a("outlinedDisabledBackgroundColor", brushToString(this.i.qm));
1556
1563
  },
1557
- enumerable: true,
1564
+ enumerable: false,
1558
1565
  configurable: true
1559
1566
  });
1560
1567
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedDisabledBorderColor", {
@@ -1562,13 +1569,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1562
1569
  * Gets or sets the color to use for the disabled border of the button when the type is outlined.
1563
1570
  */
1564
1571
  get: function () {
1565
- return brushToString(this.i.tp);
1572
+ return brushToString(this.i.qn);
1566
1573
  },
1567
1574
  set: function (v) {
1568
- this.i.tp = stringToBrush(v);
1569
- this._a("outlinedDisabledBorderColor", brushToString(this.i.tp));
1575
+ this.i.qn = stringToBrush(v);
1576
+ this._a("outlinedDisabledBorderColor", brushToString(this.i.qn));
1570
1577
  },
1571
- enumerable: true,
1578
+ enumerable: false,
1572
1579
  configurable: true
1573
1580
  });
1574
1581
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedDisabledTextColor", {
@@ -1576,13 +1583,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1576
1583
  * Gets or sets the color to use for the disabled text of the button when the type is outlined.
1577
1584
  */
1578
1585
  get: function () {
1579
- return brushToString(this.i.tq);
1586
+ return brushToString(this.i.qo);
1580
1587
  },
1581
1588
  set: function (v) {
1582
- this.i.tq = stringToBrush(v);
1583
- this._a("outlinedDisabledTextColor", brushToString(this.i.tq));
1589
+ this.i.qo = stringToBrush(v);
1590
+ this._a("outlinedDisabledTextColor", brushToString(this.i.qo));
1584
1591
  },
1585
- enumerable: true,
1592
+ enumerable: false,
1586
1593
  configurable: true
1587
1594
  });
1588
1595
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedDisabledElevation", {
@@ -1590,13 +1597,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1590
1597
  * Gets or sets the disabled elevation to use for the button when the type is outlined.
1591
1598
  */
1592
1599
  get: function () {
1593
- return this.i.el;
1600
+ return this.i.du;
1594
1601
  },
1595
1602
  set: function (v) {
1596
- this.i.el = +v;
1597
- this._a("outlinedDisabledElevation", this.i.el);
1603
+ this.i.du = +v;
1604
+ this._a("outlinedDisabledElevation", this.i.du);
1598
1605
  },
1599
- enumerable: true,
1606
+ enumerable: false,
1600
1607
  configurable: true
1601
1608
  });
1602
1609
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedHoverBackgroundColor", {
@@ -1604,13 +1611,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1604
1611
  * Gets or sets the hover color to use for the background of the button when the type is hoveredOutlined.
1605
1612
  */
1606
1613
  get: function () {
1607
- return brushToString(this.i.tt);
1614
+ return brushToString(this.i.qr);
1608
1615
  },
1609
1616
  set: function (v) {
1610
- this.i.tt = stringToBrush(v);
1611
- this._a("outlinedHoverBackgroundColor", brushToString(this.i.tt));
1617
+ this.i.qr = stringToBrush(v);
1618
+ this._a("outlinedHoverBackgroundColor", brushToString(this.i.qr));
1612
1619
  },
1613
- enumerable: true,
1620
+ enumerable: false,
1614
1621
  configurable: true
1615
1622
  });
1616
1623
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedBorderColor", {
@@ -1618,13 +1625,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1618
1625
  * Gets or sets the border color to use for the button when the type is outlined.
1619
1626
  */
1620
1627
  get: function () {
1621
- return brushToString(this.i.tn);
1628
+ return brushToString(this.i.ql);
1622
1629
  },
1623
1630
  set: function (v) {
1624
- this.i.tn = stringToBrush(v);
1625
- this._a("outlinedBorderColor", brushToString(this.i.tn));
1631
+ this.i.ql = stringToBrush(v);
1632
+ this._a("outlinedBorderColor", brushToString(this.i.ql));
1626
1633
  },
1627
- enumerable: true,
1634
+ enumerable: false,
1628
1635
  configurable: true
1629
1636
  });
1630
1637
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedRestingElevation", {
@@ -1632,13 +1639,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1632
1639
  * Gets or sets the elevation to use for the button when the type is outlined.
1633
1640
  */
1634
1641
  get: function () {
1635
- return this.i.eo;
1642
+ return this.i.dx;
1636
1643
  },
1637
1644
  set: function (v) {
1638
- this.i.eo = +v;
1639
- this._a("outlinedRestingElevation", this.i.eo);
1645
+ this.i.dx = +v;
1646
+ this._a("outlinedRestingElevation", this.i.dx);
1640
1647
  },
1641
- enumerable: true,
1648
+ enumerable: false,
1642
1649
  configurable: true
1643
1650
  });
1644
1651
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedHoverElevation", {
@@ -1646,13 +1653,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1646
1653
  * Gets or sets the hover elevation to use for the button when the type is outlined.
1647
1654
  */
1648
1655
  get: function () {
1649
- return this.i.en;
1656
+ return this.i.dw;
1650
1657
  },
1651
1658
  set: function (v) {
1652
- this.i.en = +v;
1653
- this._a("outlinedHoverElevation", this.i.en);
1659
+ this.i.dw = +v;
1660
+ this._a("outlinedHoverElevation", this.i.dw);
1654
1661
  },
1655
- enumerable: true,
1662
+ enumerable: false,
1656
1663
  configurable: true
1657
1664
  });
1658
1665
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedFocusElevation", {
@@ -1660,13 +1667,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1660
1667
  * Gets or sets the focus elevation to use for the button when the type is outlined.
1661
1668
  */
1662
1669
  get: function () {
1663
- return this.i.em;
1670
+ return this.i.dv;
1664
1671
  },
1665
1672
  set: function (v) {
1666
- this.i.em = +v;
1667
- this._a("outlinedFocusElevation", this.i.em);
1673
+ this.i.dv = +v;
1674
+ this._a("outlinedFocusElevation", this.i.dv);
1668
1675
  },
1669
- enumerable: true,
1676
+ enumerable: false,
1670
1677
  configurable: true
1671
1678
  });
1672
1679
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedBorderWidth", {
@@ -1674,85 +1681,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1674
1681
  * Gets or sets the width to use for the button border when the type is outlined.
1675
1682
  */
1676
1683
  get: function () {
1677
- return this.i.bi;
1684
+ return this.i.bv;
1678
1685
  },
1679
1686
  set: function (v) {
1680
- this.i.bi = +v;
1681
- this._a("outlinedBorderWidth", this.i.bi);
1687
+ this.i.bv = +v;
1688
+ this._a("outlinedBorderWidth", this.i.bv);
1682
1689
  },
1683
- enumerable: true,
1690
+ enumerable: false,
1684
1691
  configurable: true
1685
1692
  });
1686
1693
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusBottomRight", {
1687
1694
  get: function () {
1688
- return this.i.ky ? this.i.ky.b : NaN;
1695
+ return this.i.k2 ? this.i.k2.b : NaN;
1689
1696
  },
1690
1697
  set: function (v) {
1691
1698
  this.ensureOutlinedCornerRadius();
1692
- this.i.ky.b = +v;
1693
- this._a("outlinedCornerRadiusBottomRight", this.i.ky.b);
1694
- this.i.ky = this.i.ky;
1699
+ this.i.k2.b = +v;
1700
+ this._a("outlinedCornerRadiusBottomRight", this.i.k2.b);
1701
+ this.i.k2 = this.i.k2;
1695
1702
  },
1696
- enumerable: true,
1703
+ enumerable: false,
1697
1704
  configurable: true
1698
1705
  });
1699
1706
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusBottomLeft", {
1700
1707
  get: function () {
1701
- return this.i.ky ? this.i.ky.a : NaN;
1708
+ return this.i.k2 ? this.i.k2.a : NaN;
1702
1709
  },
1703
1710
  set: function (v) {
1704
1711
  this.ensureOutlinedCornerRadius();
1705
- this.i.ky.a = +v;
1706
- this._a("outlinedCornerRadiusBottomLeft", this.i.ky.a);
1707
- this.i.ky = this.i.ky;
1712
+ this.i.k2.a = +v;
1713
+ this._a("outlinedCornerRadiusBottomLeft", this.i.k2.a);
1714
+ this.i.k2 = this.i.k2;
1708
1715
  },
1709
- enumerable: true,
1716
+ enumerable: false,
1710
1717
  configurable: true
1711
1718
  });
1712
1719
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusTopLeft", {
1713
1720
  get: function () {
1714
- return this.i.ky ? this.i.ky.c : NaN;
1721
+ return this.i.k2 ? this.i.k2.c : NaN;
1715
1722
  },
1716
1723
  set: function (v) {
1717
1724
  this.ensureOutlinedCornerRadius();
1718
- this.i.ky.c = +v;
1719
- this._a("outlinedCornerRadiusTopLeft", this.i.ky.c);
1720
- this.i.ky = this.i.ky;
1725
+ this.i.k2.c = +v;
1726
+ this._a("outlinedCornerRadiusTopLeft", this.i.k2.c);
1727
+ this.i.k2 = this.i.k2;
1721
1728
  },
1722
- enumerable: true,
1729
+ enumerable: false,
1723
1730
  configurable: true
1724
1731
  });
1725
1732
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusTopRight", {
1726
1733
  get: function () {
1727
- return this.i.ky ? this.i.ky.d : NaN;
1734
+ return this.i.k2 ? this.i.k2.d : NaN;
1728
1735
  },
1729
1736
  set: function (v) {
1730
1737
  this.ensureOutlinedCornerRadius();
1731
- this.i.ky.d = +v;
1732
- this._a("outlinedCornerRadiusTopRight", this.i.ky.d);
1733
- this.i.ky = this.i.ky;
1738
+ this.i.k2.d = +v;
1739
+ this._a("outlinedCornerRadiusTopRight", this.i.k2.d);
1740
+ this.i.k2 = this.i.k2;
1734
1741
  },
1735
- enumerable: true,
1742
+ enumerable: false,
1736
1743
  configurable: true
1737
1744
  });
1738
1745
  IgcXButtonComponent.prototype.ensureOutlinedCornerRadius = function () {
1739
- if (this.i.ky) {
1746
+ if (this.i.k2) {
1740
1747
  return;
1741
1748
  }
1742
- this.i.ky = new CornerRadius(2);
1749
+ this.i.k2 = new CornerRadius(2);
1743
1750
  };
1744
1751
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedRippleColor", {
1745
1752
  /**
1746
1753
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
1747
1754
  */
1748
1755
  get: function () {
1749
- return brushToString(this.i.tv);
1756
+ return brushToString(this.i.qt);
1750
1757
  },
1751
1758
  set: function (v) {
1752
- this.i.tv = stringToBrush(v);
1753
- this._a("outlinedRippleColor", brushToString(this.i.tv));
1759
+ this.i.qt = stringToBrush(v);
1760
+ this._a("outlinedRippleColor", brushToString(this.i.qt));
1754
1761
  },
1755
- enumerable: true,
1762
+ enumerable: false,
1756
1763
  configurable: true
1757
1764
  });
1758
1765
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedTextColor", {
@@ -1760,13 +1767,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1760
1767
  * Gets or sets the color to use for the text of the button when type is outlined.
1761
1768
  */
1762
1769
  get: function () {
1763
- return brushToString(this.i.tw);
1770
+ return brushToString(this.i.qu);
1764
1771
  },
1765
1772
  set: function (v) {
1766
- this.i.tw = stringToBrush(v);
1767
- this._a("outlinedTextColor", brushToString(this.i.tw));
1773
+ this.i.qu = stringToBrush(v);
1774
+ this._a("outlinedTextColor", brushToString(this.i.qu));
1768
1775
  },
1769
- enumerable: true,
1776
+ enumerable: false,
1770
1777
  configurable: true
1771
1778
  });
1772
1779
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedHoverTextColor", {
@@ -1774,13 +1781,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1774
1781
  * Gets or sets the color to use for the hovered text of the button when type is outlined.
1775
1782
  */
1776
1783
  get: function () {
1777
- return brushToString(this.i.tu);
1784
+ return brushToString(this.i.qs);
1778
1785
  },
1779
1786
  set: function (v) {
1780
- this.i.tu = stringToBrush(v);
1781
- this._a("outlinedHoverTextColor", brushToString(this.i.tu));
1787
+ this.i.qs = stringToBrush(v);
1788
+ this._a("outlinedHoverTextColor", brushToString(this.i.qs));
1782
1789
  },
1783
- enumerable: true,
1790
+ enumerable: false,
1784
1791
  configurable: true
1785
1792
  });
1786
1793
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedFocusBackgroundColor", {
@@ -1788,13 +1795,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1788
1795
  * Gets or sets the color to use for the backround the button when it is focused and outlined.
1789
1796
  */
1790
1797
  get: function () {
1791
- return brushToString(this.i.tr);
1798
+ return brushToString(this.i.qp);
1792
1799
  },
1793
1800
  set: function (v) {
1794
- this.i.tr = stringToBrush(v);
1795
- this._a("outlinedFocusBackgroundColor", brushToString(this.i.tr));
1801
+ this.i.qp = stringToBrush(v);
1802
+ this._a("outlinedFocusBackgroundColor", brushToString(this.i.qp));
1796
1803
  },
1797
- enumerable: true,
1804
+ enumerable: false,
1798
1805
  configurable: true
1799
1806
  });
1800
1807
  Object.defineProperty(IgcXButtonComponent.prototype, "outlinedFocusTextColor", {
@@ -1802,13 +1809,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1802
1809
  * Gets or sets the color to use for the text the button when it is focused and outlined.
1803
1810
  */
1804
1811
  get: function () {
1805
- return brushToString(this.i.ts);
1812
+ return brushToString(this.i.qq);
1806
1813
  },
1807
1814
  set: function (v) {
1808
- this.i.ts = stringToBrush(v);
1809
- this._a("outlinedFocusTextColor", brushToString(this.i.ts));
1815
+ this.i.qq = stringToBrush(v);
1816
+ this._a("outlinedFocusTextColor", brushToString(this.i.qq));
1810
1817
  },
1811
- enumerable: true,
1818
+ enumerable: false,
1812
1819
  configurable: true
1813
1820
  });
1814
1821
  Object.defineProperty(IgcXButtonComponent.prototype, "fabBackgroundColor", {
@@ -1816,13 +1823,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1816
1823
  * Gets or sets the color to use for the background of the button when the type is floating action button.
1817
1824
  */
1818
1825
  get: function () {
1819
- return brushToString(this.i.sl);
1826
+ return brushToString(this.i.pj);
1820
1827
  },
1821
1828
  set: function (v) {
1822
- this.i.sl = stringToBrush(v);
1823
- this._a("fabBackgroundColor", brushToString(this.i.sl));
1829
+ this.i.pj = stringToBrush(v);
1830
+ this._a("fabBackgroundColor", brushToString(this.i.pj));
1824
1831
  },
1825
- enumerable: true,
1832
+ enumerable: false,
1826
1833
  configurable: true
1827
1834
  });
1828
1835
  Object.defineProperty(IgcXButtonComponent.prototype, "fabDisabledBackgroundColor", {
@@ -1830,13 +1837,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1830
1837
  * Gets or sets the color to use for the disabled background of the button when the type is fab.
1831
1838
  */
1832
1839
  get: function () {
1833
- return brushToString(this.i.sn);
1840
+ return brushToString(this.i.pl);
1834
1841
  },
1835
1842
  set: function (v) {
1836
- this.i.sn = stringToBrush(v);
1837
- this._a("fabDisabledBackgroundColor", brushToString(this.i.sn));
1843
+ this.i.pl = stringToBrush(v);
1844
+ this._a("fabDisabledBackgroundColor", brushToString(this.i.pl));
1838
1845
  },
1839
- enumerable: true,
1846
+ enumerable: false,
1840
1847
  configurable: true
1841
1848
  });
1842
1849
  Object.defineProperty(IgcXButtonComponent.prototype, "fabDisabledBorderColor", {
@@ -1844,13 +1851,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1844
1851
  * Gets or sets the color to use for the disabled border of the button when the type is fab.
1845
1852
  */
1846
1853
  get: function () {
1847
- return brushToString(this.i.so);
1854
+ return brushToString(this.i.pm);
1848
1855
  },
1849
1856
  set: function (v) {
1850
- this.i.so = stringToBrush(v);
1851
- this._a("fabDisabledBorderColor", brushToString(this.i.so));
1857
+ this.i.pm = stringToBrush(v);
1858
+ this._a("fabDisabledBorderColor", brushToString(this.i.pm));
1852
1859
  },
1853
- enumerable: true,
1860
+ enumerable: false,
1854
1861
  configurable: true
1855
1862
  });
1856
1863
  Object.defineProperty(IgcXButtonComponent.prototype, "fabDisabledTextColor", {
@@ -1858,13 +1865,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1858
1865
  * Gets or sets the color to use for the disabled text of the button when the type is fab.
1859
1866
  */
1860
1867
  get: function () {
1861
- return brushToString(this.i.sp);
1868
+ return brushToString(this.i.pn);
1862
1869
  },
1863
1870
  set: function (v) {
1864
- this.i.sp = stringToBrush(v);
1865
- this._a("fabDisabledTextColor", brushToString(this.i.sp));
1871
+ this.i.pn = stringToBrush(v);
1872
+ this._a("fabDisabledTextColor", brushToString(this.i.pn));
1866
1873
  },
1867
- enumerable: true,
1874
+ enumerable: false,
1868
1875
  configurable: true
1869
1876
  });
1870
1877
  Object.defineProperty(IgcXButtonComponent.prototype, "fabDisabledElevation", {
@@ -1872,13 +1879,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1872
1879
  * Gets or sets the disabled elevation to use for the button when the type is fab.
1873
1880
  */
1874
1881
  get: function () {
1875
- return this.i.d7;
1882
+ return this.i.df;
1876
1883
  },
1877
1884
  set: function (v) {
1878
- this.i.d7 = +v;
1879
- this._a("fabDisabledElevation", this.i.d7);
1885
+ this.i.df = +v;
1886
+ this._a("fabDisabledElevation", this.i.df);
1880
1887
  },
1881
- enumerable: true,
1888
+ enumerable: false,
1882
1889
  configurable: true
1883
1890
  });
1884
1891
  Object.defineProperty(IgcXButtonComponent.prototype, "fabHoverBackgroundColor", {
@@ -1886,13 +1893,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1886
1893
  * Gets or sets the hover color to use for the background of the button when the type is hoveredFab.
1887
1894
  */
1888
1895
  get: function () {
1889
- return brushToString(this.i.ss);
1896
+ return brushToString(this.i.pq);
1890
1897
  },
1891
1898
  set: function (v) {
1892
- this.i.ss = stringToBrush(v);
1893
- this._a("fabHoverBackgroundColor", brushToString(this.i.ss));
1899
+ this.i.pq = stringToBrush(v);
1900
+ this._a("fabHoverBackgroundColor", brushToString(this.i.pq));
1894
1901
  },
1895
- enumerable: true,
1902
+ enumerable: false,
1896
1903
  configurable: true
1897
1904
  });
1898
1905
  Object.defineProperty(IgcXButtonComponent.prototype, "fabBorderColor", {
@@ -1900,13 +1907,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1900
1907
  * Gets or sets the border color to use for the button when the type is floating action button.
1901
1908
  */
1902
1909
  get: function () {
1903
- return brushToString(this.i.sm);
1910
+ return brushToString(this.i.pk);
1904
1911
  },
1905
1912
  set: function (v) {
1906
- this.i.sm = stringToBrush(v);
1907
- this._a("fabBorderColor", brushToString(this.i.sm));
1913
+ this.i.pk = stringToBrush(v);
1914
+ this._a("fabBorderColor", brushToString(this.i.pk));
1908
1915
  },
1909
- enumerable: true,
1916
+ enumerable: false,
1910
1917
  configurable: true
1911
1918
  });
1912
1919
  Object.defineProperty(IgcXButtonComponent.prototype, "fabRestingElevation", {
@@ -1914,13 +1921,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1914
1921
  * Gets or sets the elevation to use for the button when the type is floating action button.
1915
1922
  */
1916
1923
  get: function () {
1917
- return this.i.ea;
1924
+ return this.i.di;
1918
1925
  },
1919
1926
  set: function (v) {
1920
- this.i.ea = +v;
1921
- this._a("fabRestingElevation", this.i.ea);
1927
+ this.i.di = +v;
1928
+ this._a("fabRestingElevation", this.i.di);
1922
1929
  },
1923
- enumerable: true,
1930
+ enumerable: false,
1924
1931
  configurable: true
1925
1932
  });
1926
1933
  Object.defineProperty(IgcXButtonComponent.prototype, "fabHoverElevation", {
@@ -1928,13 +1935,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1928
1935
  * Gets or sets the hover elevation to use for the button when the type is floating action button.
1929
1936
  */
1930
1937
  get: function () {
1931
- return this.i.d9;
1938
+ return this.i.dh;
1932
1939
  },
1933
1940
  set: function (v) {
1934
- this.i.d9 = +v;
1935
- this._a("fabHoverElevation", this.i.d9);
1941
+ this.i.dh = +v;
1942
+ this._a("fabHoverElevation", this.i.dh);
1936
1943
  },
1937
- enumerable: true,
1944
+ enumerable: false,
1938
1945
  configurable: true
1939
1946
  });
1940
1947
  Object.defineProperty(IgcXButtonComponent.prototype, "fabFocusElevation", {
@@ -1942,13 +1949,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1942
1949
  * Gets or sets the focus elevation to use for the button when the type is floating action button.
1943
1950
  */
1944
1951
  get: function () {
1945
- return this.i.d8;
1952
+ return this.i.dg;
1946
1953
  },
1947
1954
  set: function (v) {
1948
- this.i.d8 = +v;
1949
- this._a("fabFocusElevation", this.i.d8);
1955
+ this.i.dg = +v;
1956
+ this._a("fabFocusElevation", this.i.dg);
1950
1957
  },
1951
- enumerable: true,
1958
+ enumerable: false,
1952
1959
  configurable: true
1953
1960
  });
1954
1961
  Object.defineProperty(IgcXButtonComponent.prototype, "fabBorderWidth", {
@@ -1956,85 +1963,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1956
1963
  * Gets or sets the width to use for the button border when the type is floating action button.
1957
1964
  */
1958
1965
  get: function () {
1959
- return this.i.bd;
1966
+ return this.i.bq;
1960
1967
  },
1961
1968
  set: function (v) {
1962
- this.i.bd = +v;
1963
- this._a("fabBorderWidth", this.i.bd);
1969
+ this.i.bq = +v;
1970
+ this._a("fabBorderWidth", this.i.bq);
1964
1971
  },
1965
- enumerable: true,
1972
+ enumerable: false,
1966
1973
  configurable: true
1967
1974
  });
1968
1975
  Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusBottomRight", {
1969
1976
  get: function () {
1970
- return this.i.kv ? this.i.kv.b : NaN;
1977
+ return this.i.kz ? this.i.kz.b : NaN;
1971
1978
  },
1972
1979
  set: function (v) {
1973
1980
  this.ensureFabCornerRadius();
1974
- this.i.kv.b = +v;
1975
- this._a("fabCornerRadiusBottomRight", this.i.kv.b);
1976
- this.i.kv = this.i.kv;
1981
+ this.i.kz.b = +v;
1982
+ this._a("fabCornerRadiusBottomRight", this.i.kz.b);
1983
+ this.i.kz = this.i.kz;
1977
1984
  },
1978
- enumerable: true,
1985
+ enumerable: false,
1979
1986
  configurable: true
1980
1987
  });
1981
1988
  Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusBottomLeft", {
1982
1989
  get: function () {
1983
- return this.i.kv ? this.i.kv.a : NaN;
1990
+ return this.i.kz ? this.i.kz.a : NaN;
1984
1991
  },
1985
1992
  set: function (v) {
1986
1993
  this.ensureFabCornerRadius();
1987
- this.i.kv.a = +v;
1988
- this._a("fabCornerRadiusBottomLeft", this.i.kv.a);
1989
- this.i.kv = this.i.kv;
1994
+ this.i.kz.a = +v;
1995
+ this._a("fabCornerRadiusBottomLeft", this.i.kz.a);
1996
+ this.i.kz = this.i.kz;
1990
1997
  },
1991
- enumerable: true,
1998
+ enumerable: false,
1992
1999
  configurable: true
1993
2000
  });
1994
2001
  Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusTopLeft", {
1995
2002
  get: function () {
1996
- return this.i.kv ? this.i.kv.c : NaN;
2003
+ return this.i.kz ? this.i.kz.c : NaN;
1997
2004
  },
1998
2005
  set: function (v) {
1999
2006
  this.ensureFabCornerRadius();
2000
- this.i.kv.c = +v;
2001
- this._a("fabCornerRadiusTopLeft", this.i.kv.c);
2002
- this.i.kv = this.i.kv;
2007
+ this.i.kz.c = +v;
2008
+ this._a("fabCornerRadiusTopLeft", this.i.kz.c);
2009
+ this.i.kz = this.i.kz;
2003
2010
  },
2004
- enumerable: true,
2011
+ enumerable: false,
2005
2012
  configurable: true
2006
2013
  });
2007
2014
  Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusTopRight", {
2008
2015
  get: function () {
2009
- return this.i.kv ? this.i.kv.d : NaN;
2016
+ return this.i.kz ? this.i.kz.d : NaN;
2010
2017
  },
2011
2018
  set: function (v) {
2012
2019
  this.ensureFabCornerRadius();
2013
- this.i.kv.d = +v;
2014
- this._a("fabCornerRadiusTopRight", this.i.kv.d);
2015
- this.i.kv = this.i.kv;
2020
+ this.i.kz.d = +v;
2021
+ this._a("fabCornerRadiusTopRight", this.i.kz.d);
2022
+ this.i.kz = this.i.kz;
2016
2023
  },
2017
- enumerable: true,
2024
+ enumerable: false,
2018
2025
  configurable: true
2019
2026
  });
2020
2027
  IgcXButtonComponent.prototype.ensureFabCornerRadius = function () {
2021
- if (this.i.kv) {
2028
+ if (this.i.kz) {
2022
2029
  return;
2023
2030
  }
2024
- this.i.kv = new CornerRadius(2);
2031
+ this.i.kz = new CornerRadius(2);
2025
2032
  };
2026
2033
  Object.defineProperty(IgcXButtonComponent.prototype, "fabRippleColor", {
2027
2034
  /**
2028
2035
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
2029
2036
  */
2030
2037
  get: function () {
2031
- return brushToString(this.i.su);
2038
+ return brushToString(this.i.ps);
2032
2039
  },
2033
2040
  set: function (v) {
2034
- this.i.su = stringToBrush(v);
2035
- this._a("fabRippleColor", brushToString(this.i.su));
2041
+ this.i.ps = stringToBrush(v);
2042
+ this._a("fabRippleColor", brushToString(this.i.ps));
2036
2043
  },
2037
- enumerable: true,
2044
+ enumerable: false,
2038
2045
  configurable: true
2039
2046
  });
2040
2047
  Object.defineProperty(IgcXButtonComponent.prototype, "fabTextColor", {
@@ -2042,13 +2049,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2042
2049
  * Gets or sets the color to use for the text of the button when type is floating action button.
2043
2050
  */
2044
2051
  get: function () {
2045
- return brushToString(this.i.sv);
2052
+ return brushToString(this.i.pt);
2046
2053
  },
2047
2054
  set: function (v) {
2048
- this.i.sv = stringToBrush(v);
2049
- this._a("fabTextColor", brushToString(this.i.sv));
2055
+ this.i.pt = stringToBrush(v);
2056
+ this._a("fabTextColor", brushToString(this.i.pt));
2050
2057
  },
2051
- enumerable: true,
2058
+ enumerable: false,
2052
2059
  configurable: true
2053
2060
  });
2054
2061
  Object.defineProperty(IgcXButtonComponent.prototype, "fabHoverTextColor", {
@@ -2056,13 +2063,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2056
2063
  * Gets or sets the color to use for the hovered text of the button when type is floating action button.
2057
2064
  */
2058
2065
  get: function () {
2059
- return brushToString(this.i.st);
2066
+ return brushToString(this.i.pr);
2060
2067
  },
2061
2068
  set: function (v) {
2062
- this.i.st = stringToBrush(v);
2063
- this._a("fabHoverTextColor", brushToString(this.i.st));
2069
+ this.i.pr = stringToBrush(v);
2070
+ this._a("fabHoverTextColor", brushToString(this.i.pr));
2064
2071
  },
2065
- enumerable: true,
2072
+ enumerable: false,
2066
2073
  configurable: true
2067
2074
  });
2068
2075
  Object.defineProperty(IgcXButtonComponent.prototype, "fabFocusBackgroundColor", {
@@ -2070,13 +2077,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2070
2077
  * Gets or sets the color to use for the backround the button when it is focused and fab.
2071
2078
  */
2072
2079
  get: function () {
2073
- return brushToString(this.i.sq);
2080
+ return brushToString(this.i.po);
2074
2081
  },
2075
2082
  set: function (v) {
2076
- this.i.sq = stringToBrush(v);
2077
- this._a("fabFocusBackgroundColor", brushToString(this.i.sq));
2083
+ this.i.po = stringToBrush(v);
2084
+ this._a("fabFocusBackgroundColor", brushToString(this.i.po));
2078
2085
  },
2079
- enumerable: true,
2086
+ enumerable: false,
2080
2087
  configurable: true
2081
2088
  });
2082
2089
  Object.defineProperty(IgcXButtonComponent.prototype, "fabFocusTextColor", {
@@ -2084,13 +2091,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2084
2091
  * Gets or sets the color to use for the text the button when it is focused and fab.
2085
2092
  */
2086
2093
  get: function () {
2087
- return brushToString(this.i.sr);
2094
+ return brushToString(this.i.pp);
2088
2095
  },
2089
2096
  set: function (v) {
2090
- this.i.sr = stringToBrush(v);
2091
- this._a("fabFocusTextColor", brushToString(this.i.sr));
2097
+ this.i.pp = stringToBrush(v);
2098
+ this._a("fabFocusTextColor", brushToString(this.i.pp));
2092
2099
  },
2093
- enumerable: true,
2100
+ enumerable: false,
2094
2101
  configurable: true
2095
2102
  });
2096
2103
  Object.defineProperty(IgcXButtonComponent.prototype, "iconBackgroundColor", {
@@ -2098,13 +2105,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2098
2105
  * Gets or sets the color to use for the background of the button when the type is icon.
2099
2106
  */
2100
2107
  get: function () {
2101
- return brushToString(this.i.tb);
2108
+ return brushToString(this.i.p9);
2102
2109
  },
2103
2110
  set: function (v) {
2104
- this.i.tb = stringToBrush(v);
2105
- this._a("iconBackgroundColor", brushToString(this.i.tb));
2111
+ this.i.p9 = stringToBrush(v);
2112
+ this._a("iconBackgroundColor", brushToString(this.i.p9));
2106
2113
  },
2107
- enumerable: true,
2114
+ enumerable: false,
2108
2115
  configurable: true
2109
2116
  });
2110
2117
  Object.defineProperty(IgcXButtonComponent.prototype, "iconDisabledBackgroundColor", {
@@ -2112,13 +2119,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2112
2119
  * Gets or sets the color to use for the disabled background of the button when the type is icon.
2113
2120
  */
2114
2121
  get: function () {
2115
- return brushToString(this.i.td);
2122
+ return brushToString(this.i.qb);
2116
2123
  },
2117
2124
  set: function (v) {
2118
- this.i.td = stringToBrush(v);
2119
- this._a("iconDisabledBackgroundColor", brushToString(this.i.td));
2125
+ this.i.qb = stringToBrush(v);
2126
+ this._a("iconDisabledBackgroundColor", brushToString(this.i.qb));
2120
2127
  },
2121
- enumerable: true,
2128
+ enumerable: false,
2122
2129
  configurable: true
2123
2130
  });
2124
2131
  Object.defineProperty(IgcXButtonComponent.prototype, "iconDisabledBorderColor", {
@@ -2126,13 +2133,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2126
2133
  * Gets or sets the color to use for the disabled border of the button when the type is icon.
2127
2134
  */
2128
2135
  get: function () {
2129
- return brushToString(this.i.te);
2136
+ return brushToString(this.i.qc);
2130
2137
  },
2131
2138
  set: function (v) {
2132
- this.i.te = stringToBrush(v);
2133
- this._a("iconDisabledBorderColor", brushToString(this.i.te));
2139
+ this.i.qc = stringToBrush(v);
2140
+ this._a("iconDisabledBorderColor", brushToString(this.i.qc));
2134
2141
  },
2135
- enumerable: true,
2142
+ enumerable: false,
2136
2143
  configurable: true
2137
2144
  });
2138
2145
  Object.defineProperty(IgcXButtonComponent.prototype, "iconDisabledTextColor", {
@@ -2140,13 +2147,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2140
2147
  * Gets or sets the color to use for the disabled text of the button when the type is icon.
2141
2148
  */
2142
2149
  get: function () {
2143
- return brushToString(this.i.tf);
2150
+ return brushToString(this.i.qd);
2144
2151
  },
2145
2152
  set: function (v) {
2146
- this.i.tf = stringToBrush(v);
2147
- this._a("iconDisabledTextColor", brushToString(this.i.tf));
2153
+ this.i.qd = stringToBrush(v);
2154
+ this._a("iconDisabledTextColor", brushToString(this.i.qd));
2148
2155
  },
2149
- enumerable: true,
2156
+ enumerable: false,
2150
2157
  configurable: true
2151
2158
  });
2152
2159
  Object.defineProperty(IgcXButtonComponent.prototype, "iconDisabledElevation", {
@@ -2154,13 +2161,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2154
2161
  * Gets or sets the disabled elevation to use for the button when the type is icon.
2155
2162
  */
2156
2163
  get: function () {
2157
- return this.i.eh;
2164
+ return this.i.dq;
2158
2165
  },
2159
2166
  set: function (v) {
2160
- this.i.eh = +v;
2161
- this._a("iconDisabledElevation", this.i.eh);
2167
+ this.i.dq = +v;
2168
+ this._a("iconDisabledElevation", this.i.dq);
2162
2169
  },
2163
- enumerable: true,
2170
+ enumerable: false,
2164
2171
  configurable: true
2165
2172
  });
2166
2173
  Object.defineProperty(IgcXButtonComponent.prototype, "iconHoverBackgroundColor", {
@@ -2168,13 +2175,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2168
2175
  * Gets or sets the hover color to use for the background of the button when the type is hoveredIcon.
2169
2176
  */
2170
2177
  get: function () {
2171
- return brushToString(this.i.ti);
2178
+ return brushToString(this.i.qg);
2172
2179
  },
2173
2180
  set: function (v) {
2174
- this.i.ti = stringToBrush(v);
2175
- this._a("iconHoverBackgroundColor", brushToString(this.i.ti));
2181
+ this.i.qg = stringToBrush(v);
2182
+ this._a("iconHoverBackgroundColor", brushToString(this.i.qg));
2176
2183
  },
2177
- enumerable: true,
2184
+ enumerable: false,
2178
2185
  configurable: true
2179
2186
  });
2180
2187
  Object.defineProperty(IgcXButtonComponent.prototype, "iconBorderColor", {
@@ -2182,13 +2189,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2182
2189
  * Gets or sets the border color to use for the button when the type is icon.
2183
2190
  */
2184
2191
  get: function () {
2185
- return brushToString(this.i.tc);
2192
+ return brushToString(this.i.qa);
2186
2193
  },
2187
2194
  set: function (v) {
2188
- this.i.tc = stringToBrush(v);
2189
- this._a("iconBorderColor", brushToString(this.i.tc));
2195
+ this.i.qa = stringToBrush(v);
2196
+ this._a("iconBorderColor", brushToString(this.i.qa));
2190
2197
  },
2191
- enumerable: true,
2198
+ enumerable: false,
2192
2199
  configurable: true
2193
2200
  });
2194
2201
  Object.defineProperty(IgcXButtonComponent.prototype, "iconRestingElevation", {
@@ -2196,13 +2203,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2196
2203
  * Gets or sets the elevation to use for the button when the type is icon.
2197
2204
  */
2198
2205
  get: function () {
2199
- return this.i.ek;
2206
+ return this.i.dt;
2200
2207
  },
2201
2208
  set: function (v) {
2202
- this.i.ek = +v;
2203
- this._a("iconRestingElevation", this.i.ek);
2209
+ this.i.dt = +v;
2210
+ this._a("iconRestingElevation", this.i.dt);
2204
2211
  },
2205
- enumerable: true,
2212
+ enumerable: false,
2206
2213
  configurable: true
2207
2214
  });
2208
2215
  Object.defineProperty(IgcXButtonComponent.prototype, "iconHoverElevation", {
@@ -2210,13 +2217,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2210
2217
  * Gets or sets the hover elevation to use for the button when the type is icon.
2211
2218
  */
2212
2219
  get: function () {
2213
- return this.i.ej;
2220
+ return this.i.ds;
2214
2221
  },
2215
2222
  set: function (v) {
2216
- this.i.ej = +v;
2217
- this._a("iconHoverElevation", this.i.ej);
2223
+ this.i.ds = +v;
2224
+ this._a("iconHoverElevation", this.i.ds);
2218
2225
  },
2219
- enumerable: true,
2226
+ enumerable: false,
2220
2227
  configurable: true
2221
2228
  });
2222
2229
  Object.defineProperty(IgcXButtonComponent.prototype, "iconFocusElevation", {
@@ -2224,13 +2231,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2224
2231
  * Gets or sets the focus elevation to use for the button when the type is icon.
2225
2232
  */
2226
2233
  get: function () {
2227
- return this.i.ei;
2234
+ return this.i.dr;
2228
2235
  },
2229
2236
  set: function (v) {
2230
- this.i.ei = +v;
2231
- this._a("iconFocusElevation", this.i.ei);
2237
+ this.i.dr = +v;
2238
+ this._a("iconFocusElevation", this.i.dr);
2232
2239
  },
2233
- enumerable: true,
2240
+ enumerable: false,
2234
2241
  configurable: true
2235
2242
  });
2236
2243
  Object.defineProperty(IgcXButtonComponent.prototype, "iconBorderWidth", {
@@ -2238,85 +2245,85 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2238
2245
  * Gets or sets the width to use for the button border when the type is icon.
2239
2246
  */
2240
2247
  get: function () {
2241
- return this.i.bf;
2248
+ return this.i.bs;
2242
2249
  },
2243
2250
  set: function (v) {
2244
- this.i.bf = +v;
2245
- this._a("iconBorderWidth", this.i.bf);
2251
+ this.i.bs = +v;
2252
+ this._a("iconBorderWidth", this.i.bs);
2246
2253
  },
2247
- enumerable: true,
2254
+ enumerable: false,
2248
2255
  configurable: true
2249
2256
  });
2250
2257
  Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusBottomRight", {
2251
2258
  get: function () {
2252
- return this.i.kx ? this.i.kx.b : NaN;
2259
+ return this.i.k1 ? this.i.k1.b : NaN;
2253
2260
  },
2254
2261
  set: function (v) {
2255
2262
  this.ensureIconCornerRadius();
2256
- this.i.kx.b = +v;
2257
- this._a("iconCornerRadiusBottomRight", this.i.kx.b);
2258
- this.i.kx = this.i.kx;
2263
+ this.i.k1.b = +v;
2264
+ this._a("iconCornerRadiusBottomRight", this.i.k1.b);
2265
+ this.i.k1 = this.i.k1;
2259
2266
  },
2260
- enumerable: true,
2267
+ enumerable: false,
2261
2268
  configurable: true
2262
2269
  });
2263
2270
  Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusBottomLeft", {
2264
2271
  get: function () {
2265
- return this.i.kx ? this.i.kx.a : NaN;
2272
+ return this.i.k1 ? this.i.k1.a : NaN;
2266
2273
  },
2267
2274
  set: function (v) {
2268
2275
  this.ensureIconCornerRadius();
2269
- this.i.kx.a = +v;
2270
- this._a("iconCornerRadiusBottomLeft", this.i.kx.a);
2271
- this.i.kx = this.i.kx;
2276
+ this.i.k1.a = +v;
2277
+ this._a("iconCornerRadiusBottomLeft", this.i.k1.a);
2278
+ this.i.k1 = this.i.k1;
2272
2279
  },
2273
- enumerable: true,
2280
+ enumerable: false,
2274
2281
  configurable: true
2275
2282
  });
2276
2283
  Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusTopLeft", {
2277
2284
  get: function () {
2278
- return this.i.kx ? this.i.kx.c : NaN;
2285
+ return this.i.k1 ? this.i.k1.c : NaN;
2279
2286
  },
2280
2287
  set: function (v) {
2281
2288
  this.ensureIconCornerRadius();
2282
- this.i.kx.c = +v;
2283
- this._a("iconCornerRadiusTopLeft", this.i.kx.c);
2284
- this.i.kx = this.i.kx;
2289
+ this.i.k1.c = +v;
2290
+ this._a("iconCornerRadiusTopLeft", this.i.k1.c);
2291
+ this.i.k1 = this.i.k1;
2285
2292
  },
2286
- enumerable: true,
2293
+ enumerable: false,
2287
2294
  configurable: true
2288
2295
  });
2289
2296
  Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusTopRight", {
2290
2297
  get: function () {
2291
- return this.i.kx ? this.i.kx.d : NaN;
2298
+ return this.i.k1 ? this.i.k1.d : NaN;
2292
2299
  },
2293
2300
  set: function (v) {
2294
2301
  this.ensureIconCornerRadius();
2295
- this.i.kx.d = +v;
2296
- this._a("iconCornerRadiusTopRight", this.i.kx.d);
2297
- this.i.kx = this.i.kx;
2302
+ this.i.k1.d = +v;
2303
+ this._a("iconCornerRadiusTopRight", this.i.k1.d);
2304
+ this.i.k1 = this.i.k1;
2298
2305
  },
2299
- enumerable: true,
2306
+ enumerable: false,
2300
2307
  configurable: true
2301
2308
  });
2302
2309
  IgcXButtonComponent.prototype.ensureIconCornerRadius = function () {
2303
- if (this.i.kx) {
2310
+ if (this.i.k1) {
2304
2311
  return;
2305
2312
  }
2306
- this.i.kx = new CornerRadius(2);
2313
+ this.i.k1 = new CornerRadius(2);
2307
2314
  };
2308
2315
  Object.defineProperty(IgcXButtonComponent.prototype, "iconRippleColor", {
2309
2316
  /**
2310
2317
  * Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
2311
2318
  */
2312
2319
  get: function () {
2313
- return brushToString(this.i.tk);
2320
+ return brushToString(this.i.qi);
2314
2321
  },
2315
2322
  set: function (v) {
2316
- this.i.tk = stringToBrush(v);
2317
- this._a("iconRippleColor", brushToString(this.i.tk));
2323
+ this.i.qi = stringToBrush(v);
2324
+ this._a("iconRippleColor", brushToString(this.i.qi));
2318
2325
  },
2319
- enumerable: true,
2326
+ enumerable: false,
2320
2327
  configurable: true
2321
2328
  });
2322
2329
  Object.defineProperty(IgcXButtonComponent.prototype, "iconTextColor", {
@@ -2324,13 +2331,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2324
2331
  * Gets or sets the color to use for the text of the button when type is icon.
2325
2332
  */
2326
2333
  get: function () {
2327
- return brushToString(this.i.tl);
2334
+ return brushToString(this.i.qj);
2328
2335
  },
2329
2336
  set: function (v) {
2330
- this.i.tl = stringToBrush(v);
2331
- this._a("iconTextColor", brushToString(this.i.tl));
2337
+ this.i.qj = stringToBrush(v);
2338
+ this._a("iconTextColor", brushToString(this.i.qj));
2332
2339
  },
2333
- enumerable: true,
2340
+ enumerable: false,
2334
2341
  configurable: true
2335
2342
  });
2336
2343
  Object.defineProperty(IgcXButtonComponent.prototype, "iconHoverTextColor", {
@@ -2338,13 +2345,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2338
2345
  * Gets or sets the color to use for the hovered text of the button when type is icon.
2339
2346
  */
2340
2347
  get: function () {
2341
- return brushToString(this.i.tj);
2348
+ return brushToString(this.i.qh);
2342
2349
  },
2343
2350
  set: function (v) {
2344
- this.i.tj = stringToBrush(v);
2345
- this._a("iconHoverTextColor", brushToString(this.i.tj));
2351
+ this.i.qh = stringToBrush(v);
2352
+ this._a("iconHoverTextColor", brushToString(this.i.qh));
2346
2353
  },
2347
- enumerable: true,
2354
+ enumerable: false,
2348
2355
  configurable: true
2349
2356
  });
2350
2357
  Object.defineProperty(IgcXButtonComponent.prototype, "iconFocusBackgroundColor", {
@@ -2352,13 +2359,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2352
2359
  * Gets or sets the color to use for the backround the button when it is focused and icon.
2353
2360
  */
2354
2361
  get: function () {
2355
- return brushToString(this.i.tg);
2362
+ return brushToString(this.i.qe);
2356
2363
  },
2357
2364
  set: function (v) {
2358
- this.i.tg = stringToBrush(v);
2359
- this._a("iconFocusBackgroundColor", brushToString(this.i.tg));
2365
+ this.i.qe = stringToBrush(v);
2366
+ this._a("iconFocusBackgroundColor", brushToString(this.i.qe));
2360
2367
  },
2361
- enumerable: true,
2368
+ enumerable: false,
2362
2369
  configurable: true
2363
2370
  });
2364
2371
  Object.defineProperty(IgcXButtonComponent.prototype, "iconFocusTextColor", {
@@ -2366,13 +2373,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2366
2373
  * Gets or sets the color to use for the text the button when it is focused and icon.
2367
2374
  */
2368
2375
  get: function () {
2369
- return brushToString(this.i.th);
2376
+ return brushToString(this.i.qf);
2370
2377
  },
2371
2378
  set: function (v) {
2372
- this.i.th = stringToBrush(v);
2373
- this._a("iconFocusTextColor", brushToString(this.i.th));
2379
+ this.i.qf = stringToBrush(v);
2380
+ this._a("iconFocusTextColor", brushToString(this.i.qf));
2374
2381
  },
2375
- enumerable: true,
2382
+ enumerable: false,
2376
2383
  configurable: true
2377
2384
  });
2378
2385
  Object.defineProperty(IgcXButtonComponent.prototype, "inputId", {
@@ -2380,12 +2387,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2380
2387
  * Gets or sets the id to use for the internal native checkbox.
2381
2388
  */
2382
2389
  get: function () {
2383
- return this.i.h8;
2390
+ return this.i.hu;
2384
2391
  },
2385
2392
  set: function (v) {
2386
- this.i.h8 = v;
2393
+ this.i.hu = v;
2387
2394
  },
2388
- enumerable: true,
2395
+ enumerable: false,
2389
2396
  configurable: true
2390
2397
  });
2391
2398
  Object.defineProperty(IgcXButtonComponent.prototype, "id", {
@@ -2393,12 +2400,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2393
2400
  * Gets or sets the id to use for the checkbox.
2394
2401
  */
2395
2402
  get: function () {
2396
- return this.i.h6;
2403
+ return this.i.hs;
2397
2404
  },
2398
2405
  set: function (v) {
2399
- this.i.h6 = v;
2406
+ this.i.hs = v;
2400
2407
  },
2401
- enumerable: true,
2408
+ enumerable: false,
2402
2409
  configurable: true
2403
2410
  });
2404
2411
  Object.defineProperty(IgcXButtonComponent.prototype, "display", {
@@ -2406,12 +2413,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2406
2413
  * Gets or sets the id to use for the checkbox.
2407
2414
  */
2408
2415
  get: function () {
2409
- return this.i.gc;
2416
+ return this.i.fw;
2410
2417
  },
2411
2418
  set: function (v) {
2412
- this.i.gc = v;
2419
+ this.i.fw = v;
2413
2420
  },
2414
- enumerable: true,
2421
+ enumerable: false,
2415
2422
  configurable: true
2416
2423
  });
2417
2424
  Object.defineProperty(IgcXButtonComponent.prototype, "flexDirection", {
@@ -2419,12 +2426,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2419
2426
  * Gets or sets the id to use for the checkbox.
2420
2427
  */
2421
2428
  get: function () {
2422
- return this.i.hf;
2429
+ return this.i.g0;
2423
2430
  },
2424
2431
  set: function (v) {
2425
- this.i.hf = v;
2432
+ this.i.g0 = v;
2426
2433
  },
2427
- enumerable: true,
2434
+ enumerable: false,
2428
2435
  configurable: true
2429
2436
  });
2430
2437
  Object.defineProperty(IgcXButtonComponent.prototype, "flexGrow", {
@@ -2432,12 +2439,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2432
2439
  * Gets or sets the flex-grow setting for the button.
2433
2440
  */
2434
2441
  get: function () {
2435
- return this.i.hh;
2442
+ return this.i.g2;
2436
2443
  },
2437
2444
  set: function (v) {
2438
- this.i.hh = v;
2445
+ this.i.g2 = v;
2439
2446
  },
2440
- enumerable: true,
2447
+ enumerable: false,
2441
2448
  configurable: true
2442
2449
  });
2443
2450
  Object.defineProperty(IgcXButtonComponent.prototype, "alignItems", {
@@ -2445,12 +2452,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2445
2452
  * Gets or sets the id to use for the checkbox.
2446
2453
  */
2447
2454
  get: function () {
2448
- return this.i.fw;
2455
+ return this.i.e7;
2449
2456
  },
2450
2457
  set: function (v) {
2451
- this.i.fw = v;
2458
+ this.i.e7 = v;
2452
2459
  },
2453
- enumerable: true,
2460
+ enumerable: false,
2454
2461
  configurable: true
2455
2462
  });
2456
2463
  Object.defineProperty(IgcXButtonComponent.prototype, "value", {
@@ -2458,12 +2465,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2458
2465
  * Gets or sets value to use for the checkbox.
2459
2466
  */
2460
2467
  get: function () {
2461
- return this.i.e0;
2468
+ return this.i.ea;
2462
2469
  },
2463
2470
  set: function (v) {
2464
- this.i.e0 = v;
2471
+ this.i.ea = v;
2465
2472
  },
2466
- enumerable: true,
2473
+ enumerable: false,
2467
2474
  configurable: true
2468
2475
  });
2469
2476
  Object.defineProperty(IgcXButtonComponent.prototype, "name", {
@@ -2471,12 +2478,12 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2471
2478
  * Gets or sets name to use for the button.
2472
2479
  */
2473
2480
  get: function () {
2474
- return this.i.ih;
2481
+ return this.i.h2;
2475
2482
  },
2476
2483
  set: function (v) {
2477
- this.i.ih = v;
2484
+ this.i.h2 = v;
2478
2485
  },
2479
- enumerable: true,
2486
+ enumerable: false,
2480
2487
  configurable: true
2481
2488
  });
2482
2489
  Object.defineProperty(IgcXButtonComponent.prototype, "tabIndex", {
@@ -2484,13 +2491,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2484
2491
  * Gets or sets TabIndex to use for the checkbox.
2485
2492
  */
2486
2493
  get: function () {
2487
- return this.i.eu;
2494
+ return this.i.d3;
2488
2495
  },
2489
2496
  set: function (v) {
2490
- this.i.eu = +v;
2491
- this._a("tabIndex", this.i.eu);
2497
+ this.i.d3 = +v;
2498
+ this._a("tabIndex", this.i.d3);
2492
2499
  },
2493
- enumerable: true,
2500
+ enumerable: false,
2494
2501
  configurable: true
2495
2502
  });
2496
2503
  Object.defineProperty(IgcXButtonComponent.prototype, "ariaLabel", {
@@ -2498,12 +2505,27 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2498
2505
  * Gets or sets the value of the aria-label attribute.
2499
2506
  */
2500
2507
  get: function () {
2501
- return this.i.fy;
2508
+ return this.i.e9;
2509
+ },
2510
+ set: function (v) {
2511
+ this.i.e9 = v;
2512
+ },
2513
+ enumerable: false,
2514
+ configurable: true
2515
+ });
2516
+ Object.defineProperty(IgcXButtonComponent.prototype, "fillAvailableSpace", {
2517
+ /**
2518
+ * Gets or sets whether the button should fill the available space. If false, the button
2519
+ * will use an intrinsic size.
2520
+ */
2521
+ get: function () {
2522
+ return this.i.av;
2502
2523
  },
2503
2524
  set: function (v) {
2504
- this.i.fy = v;
2525
+ this.i.av = ensureBool(v);
2526
+ this._a("fillAvailableSpace", this.i.av);
2505
2527
  },
2506
- enumerable: true,
2528
+ enumerable: false,
2507
2529
  configurable: true
2508
2530
  });
2509
2531
  Object.defineProperty(IgcXButtonComponent.prototype, "focused", {
@@ -2517,7 +2539,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2517
2539
  this.i.focused = ensureBool(v);
2518
2540
  this._a("focused", this.i.focused);
2519
2541
  },
2520
- enumerable: true,
2542
+ enumerable: false,
2521
2543
  configurable: true
2522
2544
  });
2523
2545
  Object.defineProperty(IgcXButtonComponent.prototype, "isFocusStyleEnabled", {
@@ -2525,13 +2547,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2525
2547
  * Gets or sets if the button show use styling to show focus.
2526
2548
  */
2527
2549
  get: function () {
2528
- return this.i.ak;
2550
+ return this.i.az;
2529
2551
  },
2530
2552
  set: function (v) {
2531
- this.i.ak = ensureBool(v);
2532
- this._a("isFocusStyleEnabled", this.i.ak);
2553
+ this.i.az = ensureBool(v);
2554
+ this._a("isFocusStyleEnabled", this.i.az);
2533
2555
  },
2534
- enumerable: true,
2556
+ enumerable: false,
2535
2557
  configurable: true
2536
2558
  });
2537
2559
  Object.defineProperty(IgcXButtonComponent.prototype, "disableRipple", {
@@ -2539,13 +2561,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2539
2561
  * Gets or sets whether to disable the ripple effect for the button.
2540
2562
  */
2541
2563
  get: function () {
2542
- return this.i.af;
2564
+ return this.i.at;
2543
2565
  },
2544
2566
  set: function (v) {
2545
- this.i.af = ensureBool(v);
2546
- this._a("disableRipple", this.i.af);
2567
+ this.i.at = ensureBool(v);
2568
+ this._a("disableRipple", this.i.at);
2547
2569
  },
2548
- enumerable: true,
2570
+ enumerable: false,
2549
2571
  configurable: true
2550
2572
  });
2551
2573
  Object.defineProperty(IgcXButtonComponent.prototype, "actualDisableRipple", {
@@ -2553,13 +2575,27 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2553
2575
  * Gets whether to actually disable the ripple effect for the button.
2554
2576
  */
2555
2577
  get: function () {
2556
- return this.i.ae;
2578
+ return this.i.ap;
2579
+ },
2580
+ set: function (v) {
2581
+ this.i.ap = ensureBool(v);
2582
+ this._a("actualDisableRipple", this.i.ap);
2583
+ },
2584
+ enumerable: false,
2585
+ configurable: true
2586
+ });
2587
+ Object.defineProperty(IgcXButtonComponent.prototype, "disableHover", {
2588
+ /**
2589
+ * Gets or sets whether the hover effect is disabled.
2590
+ */
2591
+ get: function () {
2592
+ return this.i.ar;
2557
2593
  },
2558
2594
  set: function (v) {
2559
- this.i.ae = ensureBool(v);
2560
- this._a("actualDisableRipple", this.i.ae);
2595
+ this.i.ar = ensureBool(v);
2596
+ this._a("disableHover", this.i.ar);
2561
2597
  },
2562
- enumerable: true,
2598
+ enumerable: false,
2563
2599
  configurable: true
2564
2600
  });
2565
2601
  Object.defineProperty(IgcXButtonComponent.prototype, "isHover", {
@@ -2567,13 +2603,13 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2567
2603
  * Gets or sets whether the checkbox is checked.
2568
2604
  */
2569
2605
  get: function () {
2570
- return this.i.al;
2606
+ return this.i.a0;
2571
2607
  },
2572
2608
  set: function (v) {
2573
- this.i.al = ensureBool(v);
2574
- this._a("isHover", this.i.al);
2609
+ this.i.a0 = ensureBool(v);
2610
+ this._a("isHover", this.i.a0);
2575
2611
  },
2576
- enumerable: true,
2612
+ enumerable: false,
2577
2613
  configurable: true
2578
2614
  });
2579
2615
  Object.defineProperty(IgcXButtonComponent.prototype, "disabled", {
@@ -2587,7 +2623,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2587
2623
  this.i.disabled = ensureBool(v);
2588
2624
  this._a("disabled", this.i.disabled);
2589
2625
  },
2590
- enumerable: true,
2626
+ enumerable: false,
2591
2627
  configurable: true
2592
2628
  });
2593
2629
  Object.defineProperty(IgcXButtonComponent.prototype, "disableTransitions", {
@@ -2595,13 +2631,119 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2595
2631
  * Gets or sets whether the checkbox transitions are disabled.
2596
2632
  */
2597
2633
  get: function () {
2598
- return this.i.ag;
2634
+ return this.i.au;
2635
+ },
2636
+ set: function (v) {
2637
+ this.i.au = ensureBool(v);
2638
+ this._a("disableTransitions", this.i.au);
2639
+ },
2640
+ enumerable: false,
2641
+ configurable: true
2642
+ });
2643
+ Object.defineProperty(IgcXButtonComponent.prototype, "disablePointer", {
2644
+ /**
2645
+ * Gets or sets whether the cursor will change into a pointer when the button is hovered.
2646
+ */
2647
+ get: function () {
2648
+ return this.i.as;
2649
+ },
2650
+ set: function (v) {
2651
+ this.i.as = ensureBool(v);
2652
+ this._a("disablePointer", this.i.as);
2653
+ },
2654
+ enumerable: false,
2655
+ configurable: true
2656
+ });
2657
+ Object.defineProperty(IgcXButtonComponent.prototype, "contentPaddingLeft", {
2658
+ /**
2659
+ * Gets or sets the left padding for the button content.
2660
+ */
2661
+ get: function () {
2662
+ return this.i.bi;
2663
+ },
2664
+ set: function (v) {
2665
+ this.i.bi = +v;
2666
+ this._a("contentPaddingLeft", this.i.bi);
2667
+ },
2668
+ enumerable: false,
2669
+ configurable: true
2670
+ });
2671
+ Object.defineProperty(IgcXButtonComponent.prototype, "contentPaddingTop", {
2672
+ /**
2673
+ * Gets or sets the top padding for the button content.
2674
+ */
2675
+ get: function () {
2676
+ return this.i.bk;
2677
+ },
2678
+ set: function (v) {
2679
+ this.i.bk = +v;
2680
+ this._a("contentPaddingTop", this.i.bk);
2681
+ },
2682
+ enumerable: false,
2683
+ configurable: true
2684
+ });
2685
+ Object.defineProperty(IgcXButtonComponent.prototype, "contentPaddingRight", {
2686
+ /**
2687
+ * Gets or sets the right padding for the button content.
2688
+ */
2689
+ get: function () {
2690
+ return this.i.bj;
2691
+ },
2692
+ set: function (v) {
2693
+ this.i.bj = +v;
2694
+ this._a("contentPaddingRight", this.i.bj);
2695
+ },
2696
+ enumerable: false,
2697
+ configurable: true
2698
+ });
2699
+ Object.defineProperty(IgcXButtonComponent.prototype, "contentPaddingBottom", {
2700
+ /**
2701
+ * Gets or sets the bottom padding for the button content.
2702
+ */
2703
+ get: function () {
2704
+ return this.i.bh;
2599
2705
  },
2600
2706
  set: function (v) {
2601
- this.i.ag = ensureBool(v);
2602
- this._a("disableTransitions", this.i.ag);
2707
+ this.i.bh = +v;
2708
+ this._a("contentPaddingBottom", this.i.bh);
2603
2709
  },
2604
- enumerable: true,
2710
+ enumerable: false,
2711
+ configurable: true
2712
+ });
2713
+ Object.defineProperty(IgcXButtonComponent.prototype, "horizontalContentAlignment", {
2714
+ get: function () {
2715
+ return this.i.k5;
2716
+ },
2717
+ set: function (v) {
2718
+ this.i.k5 = ensureEnum(HorizontalAlignment_$type, v);
2719
+ this._a("horizontalContentAlignment", enumToString(HorizontalAlignment_$type, this.i.k5));
2720
+ },
2721
+ enumerable: false,
2722
+ configurable: true
2723
+ });
2724
+ Object.defineProperty(IgcXButtonComponent.prototype, "verticalContentAlignment", {
2725
+ get: function () {
2726
+ return this.i.q9;
2727
+ },
2728
+ set: function (v) {
2729
+ this.i.q9 = ensureEnum(VerticalAlignment_$type, v);
2730
+ this._a("verticalContentAlignment", enumToString(VerticalAlignment_$type, this.i.q9));
2731
+ },
2732
+ enumerable: false,
2733
+ configurable: true
2734
+ });
2735
+ Object.defineProperty(IgcXButtonComponent.prototype, "clickTunneling", {
2736
+ /**
2737
+ * Gets or sets if clicking on the button is allowed to tunnel down to button content.
2738
+ */
2739
+ get: function () {
2740
+ return this.i.aq;
2741
+ },
2742
+ set: function (v) {
2743
+ this.i.aq = ensureBool(v);
2744
+ this._a("clickTunneling", this.i.aq);
2745
+ },
2746
+ enumerable: false,
2605
2747
  configurable: true
2606
2748
  });
2607
2749
  IgcXButtonComponent.prototype.findByName = function (name) {
@@ -2616,7 +2758,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2616
2758
  get: function () {
2617
2759
  return this._hasUserValues;
2618
2760
  },
2619
- enumerable: true,
2761
+ enumerable: false,
2620
2762
  configurable: true
2621
2763
  });
2622
2764
  IgcXButtonComponent.prototype.__m = function (propertyName) {
@@ -2680,7 +2822,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2680
2822
 
2681
2823
  */
2682
2824
  IgcXButtonComponent.prototype.exportVisualModel = function () {
2683
- var iv = this.i.ey();
2825
+ var iv = this.i.d7();
2684
2826
  return (iv);
2685
2827
  };
2686
2828
  /**
@@ -2688,7 +2830,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2688
2830
 
2689
2831
  */
2690
2832
  IgcXButtonComponent.prototype.exportSerializedVisualModel = function () {
2691
- var iv = this.i.gg();
2833
+ var iv = this.i.f0();
2692
2834
  return (iv);
2693
2835
  };
2694
2836
  Object.defineProperty(IgcXButtonComponent.prototype, "clicked", {
@@ -2716,7 +2858,63 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2716
2858
  this.i.clicked = delegateCombine(this.i.clicked, this._clicked_wrapped);
2717
2859
  ;
2718
2860
  },
2719
- enumerable: true,
2861
+ enumerable: false,
2862
+ configurable: true
2863
+ });
2864
+ Object.defineProperty(IgcXButtonComponent.prototype, "gotFocus", {
2865
+ get: function () {
2866
+ return this._gotFocus;
2867
+ },
2868
+ set: function (ev) {
2869
+ var _this = this;
2870
+ if (this._gotFocus_wrapped !== null) {
2871
+ this.i.gotFocus = delegateRemove(this.i.gotFocus, this._gotFocus_wrapped);
2872
+ this._gotFocus_wrapped = null;
2873
+ this._gotFocus = null;
2874
+ }
2875
+ this._gotFocus = ev;
2876
+ this._gotFocus_wrapped = function (o, e) {
2877
+ var outerArgs = new IgcFocusEventArgs();
2878
+ outerArgs._provideImplementation(e);
2879
+ if (_this.beforeGotFocus) {
2880
+ _this.beforeGotFocus(_this, outerArgs);
2881
+ }
2882
+ if (_this._gotFocus) {
2883
+ _this._gotFocus(_this, outerArgs);
2884
+ }
2885
+ };
2886
+ this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
2887
+ ;
2888
+ },
2889
+ enumerable: false,
2890
+ configurable: true
2891
+ });
2892
+ Object.defineProperty(IgcXButtonComponent.prototype, "lostFocus", {
2893
+ get: function () {
2894
+ return this._lostFocus;
2895
+ },
2896
+ set: function (ev) {
2897
+ var _this = this;
2898
+ if (this._lostFocus_wrapped !== null) {
2899
+ this.i.lostFocus = delegateRemove(this.i.lostFocus, this._lostFocus_wrapped);
2900
+ this._lostFocus_wrapped = null;
2901
+ this._lostFocus = null;
2902
+ }
2903
+ this._lostFocus = ev;
2904
+ this._lostFocus_wrapped = function (o, e) {
2905
+ var outerArgs = new IgcFocusEventArgs();
2906
+ outerArgs._provideImplementation(e);
2907
+ if (_this.beforeLostFocus) {
2908
+ _this.beforeLostFocus(_this, outerArgs);
2909
+ }
2910
+ if (_this._lostFocus) {
2911
+ _this._lostFocus(_this, outerArgs);
2912
+ }
2913
+ };
2914
+ this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
2915
+ ;
2916
+ },
2917
+ enumerable: false,
2720
2918
  configurable: true
2721
2919
  });
2722
2920
  IgcXButtonComponent._observedAttributesIgcXButtonComponent = null;