igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +98 -98
  4. package/esm2015/lib/ButtonView_combined.js +2206 -1799
  5. package/esm2015/lib/CalendarView_combined.js +156 -156
  6. package/esm2015/lib/CheckboxView_combined.js +532 -458
  7. package/esm2015/lib/DatePickerView_combined.js +398 -364
  8. package/esm2015/lib/IconView_combined.js +553 -355
  9. package/esm2015/lib/InputGroupView_combined.js +2432 -2152
  10. package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/Theme.js +48 -0
  13. package/esm2015/lib/ThemeResolver.js +131 -7
  14. package/esm2015/lib/XButtonBridge.js +218 -22
  15. package/esm2015/lib/XCheckboxBridge.js +25 -16
  16. package/esm2015/lib/XComponentBridge.js +20 -6
  17. package/esm2015/lib/XIconBridge.js +93 -0
  18. package/esm2015/lib/XIconButtonBridge.js +45 -33
  19. package/esm2015/lib/XInputBridge.js +91 -38
  20. package/esm2015/lib/XPopupBridge.js +287 -0
  21. package/esm2015/lib/igc-date-picker-component.js +60 -58
  22. package/esm2015/lib/igc-x-button-component.js +694 -546
  23. package/esm2015/lib/igc-x-button-group-component.js +28 -28
  24. package/esm2015/lib/igc-x-calendar-component.js +16 -16
  25. package/esm2015/lib/igc-x-checkbox-component.js +77 -77
  26. package/esm2015/lib/igc-x-icon-component.js +239 -118
  27. package/esm2015/lib/igc-x-input-component.js +61 -43
  28. package/esm2015/lib/igc-x-input-group-component.js +576 -576
  29. package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
  30. package/esm2015/lib/igc-x-ripple-component.js +35 -35
  31. package/esm2015/public_api.js +3 -0
  32. package/esm5/lib/ButtonClickEventArgs.js +2 -2
  33. package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
  34. package/esm5/lib/ButtonGroupView_combined.js +176 -176
  35. package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
  36. package/esm5/lib/ButtonView_combined.js +2259 -1808
  37. package/esm5/lib/ButtonVisualModelExport.js +2 -2
  38. package/esm5/lib/CalendarView_combined.js +181 -181
  39. package/esm5/lib/CalendarVisualModelExport.js +2 -2
  40. package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
  41. package/esm5/lib/CheckboxView_combined.js +561 -483
  42. package/esm5/lib/CheckboxVisualModelExport.js +2 -2
  43. package/esm5/lib/DatePickerView_combined.js +421 -383
  44. package/esm5/lib/DatePickerVisualModelExport.js +2 -2
  45. package/esm5/lib/DateTimeValueFormatter.js +2 -2
  46. package/esm5/lib/DayInfo.js +2 -2
  47. package/esm5/lib/ElevationHelper.js +2 -2
  48. package/esm5/lib/GotFocusEventArgs.js +2 -2
  49. package/esm5/lib/IconClickedEventArgs.js +2 -2
  50. package/esm5/lib/IconView_combined.js +600 -362
  51. package/esm5/lib/IconVisualModelExport.js +3 -3
  52. package/esm5/lib/InputChangeEventArgs.js +4 -4
  53. package/esm5/lib/InputGroupView_combined.js +2534 -2246
  54. package/esm5/lib/InputGroupVisualModelExport.js +2 -2
  55. package/esm5/lib/InputVisualModelExport.js +2 -2
  56. package/esm5/lib/LabelVisualModelExport.js +2 -2
  57. package/esm5/lib/LostFocusEventArgs.js +2 -2
  58. package/esm5/lib/MaskOptions.js +2 -2
  59. package/esm5/lib/MaskParsingService.js +5 -5
  60. package/esm5/lib/NativeUIXInputsFactory.js +69 -27
  61. package/esm5/lib/PrefixVisualModelExport.js +2 -2
  62. package/esm5/lib/Replaced.js +2 -2
  63. package/esm5/lib/RippleView_combined.js +17 -17
  64. package/esm5/lib/RippleVisualModelExport.js +2 -2
  65. package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
  66. package/esm5/lib/SuffixVisualModelExport.js +2 -2
  67. package/esm5/lib/TextElementsVisualModelExport.js +2 -2
  68. package/esm5/lib/Theme.js +58 -0
  69. package/esm5/lib/ThemeResolver.js +137 -11
  70. package/esm5/lib/XButtonBridge.js +220 -24
  71. package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
  72. package/esm5/lib/XCheckboxBridge.js +27 -18
  73. package/esm5/lib/XComponentBridge.js +26 -8
  74. package/esm5/lib/XIconBridge.js +95 -0
  75. package/esm5/lib/XIconButtonBridge.js +47 -35
  76. package/esm5/lib/XInputBridge.js +93 -40
  77. package/esm5/lib/XPopupBridge.js +289 -0
  78. package/esm5/lib/igc-button-click-event-args.js +1 -1
  79. package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
  80. package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
  81. package/esm5/lib/igc-date-picker-component.js +80 -78
  82. package/esm5/lib/igc-got-focus-event-args.js +1 -1
  83. package/esm5/lib/igc-input-change-event-args.js +3 -3
  84. package/esm5/lib/igc-lost-focus-event-args.js +1 -1
  85. package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
  86. package/esm5/lib/igc-x-button-component.js +908 -710
  87. package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
  88. package/esm5/lib/igc-x-button-group-component.js +73 -73
  89. package/esm5/lib/igc-x-calendar-component.js +30 -30
  90. package/esm5/lib/igc-x-checkbox-component.js +117 -117
  91. package/esm5/lib/igc-x-icon-component.js +297 -136
  92. package/esm5/lib/igc-x-input-component.js +104 -78
  93. package/esm5/lib/igc-x-input-group-component.js +716 -716
  94. package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
  95. package/esm5/lib/igc-x-input-group-item-component.js +6 -6
  96. package/esm5/lib/igc-x-label-component.js +30 -30
  97. package/esm5/lib/igc-x-prefix-component.js +9 -9
  98. package/esm5/lib/igc-x-ripple-component.js +19 -19
  99. package/esm5/lib/igc-x-suffix-component.js +9 -9
  100. package/esm5/public_api.js +3 -0
  101. package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
  102. package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
  103. package/lib/ButtonGroupView_combined.d.ts +136 -70
  104. package/lib/ButtonView_combined.d.ts +609 -583
  105. package/lib/CalendarView_combined.d.ts +43 -22
  106. package/lib/CheckboxChangeEventArgs.d.ts +4 -2
  107. package/lib/CheckboxView_combined.d.ts +150 -117
  108. package/lib/DatePickerView_combined.d.ts +109 -81
  109. package/lib/IconView_combined.d.ts +164 -93
  110. package/lib/IconVisualModelExport.d.ts +2 -1
  111. package/lib/InputChangeEventArgs.d.ts +4 -2
  112. package/lib/InputGroupView_combined.d.ts +771 -771
  113. package/lib/NativeUIXInputsFactory.d.ts +6 -4
  114. package/lib/RippleView_combined.d.ts +19 -10
  115. package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
  116. package/lib/Theme.d.ts +15 -0
  117. package/lib/ThemeResolver.d.ts +44 -6
  118. package/lib/XButtonBridge.d.ts +23 -5
  119. package/lib/XCheckboxBridge.d.ts +3 -3
  120. package/lib/XComponentBridge.d.ts +2 -1
  121. package/lib/XIconBridge.d.ts +14 -0
  122. package/lib/XIconButtonBridge.d.ts +4 -4
  123. package/lib/XInputBridge.d.ts +11 -7
  124. package/lib/XPopupBridge.d.ts +52 -0
  125. package/lib/igc-button-click-event-args.d.ts +1 -1
  126. package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
  127. package/lib/igc-checkbox-change-event-args.d.ts +5 -3
  128. package/lib/igc-date-picker-component.d.ts +65 -34
  129. package/lib/igc-got-focus-event-args.d.ts +1 -1
  130. package/lib/igc-input-change-event-args.d.ts +5 -3
  131. package/lib/igc-lost-focus-event-args.d.ts +1 -1
  132. package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
  133. package/lib/igc-x-button-component.d.ts +399 -173
  134. package/lib/igc-x-button-group-component.d.ts +136 -70
  135. package/lib/igc-x-calendar-component.d.ts +53 -28
  136. package/lib/igc-x-checkbox-component.d.ts +71 -37
  137. package/lib/igc-x-icon-component.d.ts +140 -44
  138. package/lib/igc-x-input-component.d.ts +69 -32
  139. package/lib/igc-x-input-group-component.d.ts +325 -165
  140. package/lib/igc-x-input-group-item-component.d.ts +5 -4
  141. package/lib/igc-x-label-component.d.ts +52 -27
  142. package/lib/igc-x-prefix-component.d.ts +10 -6
  143. package/lib/igc-x-ripple-component.d.ts +31 -17
  144. package/lib/igc-x-suffix-component.d.ts +10 -6
  145. package/package.json +2 -2
  146. package/public_api.d.ts +3 -0
@@ -15,6 +15,34 @@ import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
15
15
  import { IgcHTMLElement } from "igniteui-webcomponents-core";
16
16
  export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
17
17
  class IgcXInputGroupComponent extends IgcHTMLElement {
18
+ /**
19
+ * A collection or manually added axes for the chart.
20
+ */
21
+ get inputs() {
22
+ if (this._inputs === null) {
23
+ let coll = new IgcXInputGroupInputCollection();
24
+ let inner = coll._innerColl;
25
+ inner.addListener((sender, e) => {
26
+ switch (e.action) {
27
+ case NotifyCollectionChangedAction.Add:
28
+ this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
29
+ break;
30
+ case NotifyCollectionChangedAction.Remove:
31
+ this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
32
+ break;
33
+ case NotifyCollectionChangedAction.Replace:
34
+ this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
35
+ this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
36
+ break;
37
+ case NotifyCollectionChangedAction.Reset:
38
+ this._inputsAdapter.clearManualItems();
39
+ break;
40
+ }
41
+ });
42
+ this._inputs = coll;
43
+ }
44
+ return this._inputs;
45
+ }
18
46
  constructor() {
19
47
  super();
20
48
  this.contentInputs = [];
@@ -78,34 +106,6 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
78
106
  // this._checkbox.notifySizeChanged();
79
107
  //});
80
108
  }
81
- /**
82
- * A collection or manually added axes for the chart.
83
- */
84
- get inputs() {
85
- if (this._inputs === null) {
86
- let coll = new IgcXInputGroupInputCollection();
87
- let inner = coll._innerColl;
88
- inner.addListener((sender, e) => {
89
- switch (e.action) {
90
- case NotifyCollectionChangedAction.Add:
91
- this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
92
- break;
93
- case NotifyCollectionChangedAction.Remove:
94
- this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
95
- break;
96
- case NotifyCollectionChangedAction.Replace:
97
- this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
98
- this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
99
- break;
100
- case NotifyCollectionChangedAction.Reset:
101
- this._inputsAdapter.clearManualItems();
102
- break;
103
- }
104
- });
105
- this._inputs = coll;
106
- }
107
- return this._inputs;
108
- }
109
109
  _onChildrenChanged() {
110
110
  var children = [];
111
111
  for (var i = 0; i < this.childNodes.length; i++) {
@@ -265,1607 +265,1607 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
265
265
  * Gets or sets the display density to use for the input group.
266
266
  */
267
267
  get density() {
268
- return this.i.n;
268
+ return this.i.t;
269
269
  }
270
270
  set density(v) {
271
- this.i.n = ensureEnum(ControlDisplayDensity_$type, v);
272
- this._a("density", enumToString(ControlDisplayDensity_$type, this.i.n));
271
+ this.i.t = ensureEnum(ControlDisplayDensity_$type, v);
272
+ this._a("density", enumToString(ControlDisplayDensity_$type, this.i.t));
273
273
  }
274
274
  /**
275
275
  * Gets the actual display density to use for the input group.
276
276
  */
277
277
  get actualDensity() {
278
- return this.i.m;
278
+ return this.i.s;
279
279
  }
280
280
  set actualDensity(v) {
281
- this.i.m = ensureEnum(ControlDisplayDensity_$type, v);
282
- this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.m));
281
+ this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
282
+ this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.s));
283
283
  }
284
284
  /**
285
285
  * Gets or sets the base built in theme to use for the label.
286
286
  */
287
287
  get baseTheme() {
288
- return this.i.j;
288
+ return this.i.p;
289
289
  }
290
290
  set baseTheme(v) {
291
- this.i.j = ensureEnum(BaseControlTheme_$type, v);
292
- this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.j));
291
+ this.i.p = ensureEnum(BaseControlTheme_$type, v);
292
+ this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.p));
293
293
  }
294
294
  get inputHasValue() {
295
- return this.i.af;
295
+ return this.i.al;
296
296
  }
297
297
  /**
298
298
  * Gets the actual item background color.
299
299
  */
300
300
  get actualBorderColor() {
301
- return brushToString(this.i.ot);
301
+ return brushToString(this.i.l6);
302
302
  }
303
303
  set actualBorderColor(v) {
304
- this.i.ot = stringToBrush(v);
305
- this._a("actualBorderColor", brushToString(this.i.ot));
304
+ this.i.l6 = stringToBrush(v);
305
+ this._a("actualBorderColor", brushToString(this.i.l6));
306
306
  }
307
307
  /**
308
308
  * Gets the actual item border color.
309
309
  */
310
310
  get actualFocusBorderColor() {
311
- return brushToString(this.i.ou);
311
+ return brushToString(this.i.l7);
312
312
  }
313
313
  set actualFocusBorderColor(v) {
314
- this.i.ou = stringToBrush(v);
315
- this._a("actualFocusBorderColor", brushToString(this.i.ou));
314
+ this.i.l7 = stringToBrush(v);
315
+ this._a("actualFocusBorderColor", brushToString(this.i.l7));
316
316
  }
317
317
  /**
318
318
  * Gets the actual item border width.
319
319
  */
320
320
  get actualBorderWidth() {
321
- return this.i.ca;
321
+ return this.i.cg;
322
322
  }
323
323
  set actualBorderWidth(v) {
324
- this.i.ca = +v;
325
- this._a("actualBorderWidth", this.i.ca);
324
+ this.i.cg = +v;
325
+ this._a("actualBorderWidth", this.i.cg);
326
326
  }
327
327
  /**
328
328
  * Gets the actual item border width.
329
329
  */
330
330
  get actualFocusBorderWidth() {
331
- return this.i.cb;
331
+ return this.i.ch;
332
332
  }
333
333
  set actualFocusBorderWidth(v) {
334
- this.i.cb = +v;
335
- this._a("actualFocusBorderWidth", this.i.cb);
334
+ this.i.ch = +v;
335
+ this._a("actualFocusBorderWidth", this.i.ch);
336
336
  }
337
337
  get actualCornerRadiusBottomRight() {
338
- return this.i.m0 ? this.i.m0.b : NaN;
338
+ return this.i.ko ? this.i.ko.b : NaN;
339
339
  }
340
340
  set actualCornerRadiusBottomRight(v) {
341
341
  this.ensureActualCornerRadius();
342
- this.i.m0.b = +v;
343
- this._a("actualCornerRadiusBottomRight", this.i.m0.b);
344
- this.i.m0 = this.i.m0;
342
+ this.i.ko.b = +v;
343
+ this._a("actualCornerRadiusBottomRight", this.i.ko.b);
344
+ this.i.ko = this.i.ko;
345
345
  }
346
346
  get actualCornerRadiusBottomLeft() {
347
- return this.i.m0 ? this.i.m0.a : NaN;
347
+ return this.i.ko ? this.i.ko.a : NaN;
348
348
  }
349
349
  set actualCornerRadiusBottomLeft(v) {
350
350
  this.ensureActualCornerRadius();
351
- this.i.m0.a = +v;
352
- this._a("actualCornerRadiusBottomLeft", this.i.m0.a);
353
- this.i.m0 = this.i.m0;
351
+ this.i.ko.a = +v;
352
+ this._a("actualCornerRadiusBottomLeft", this.i.ko.a);
353
+ this.i.ko = this.i.ko;
354
354
  }
355
355
  get actualCornerRadiusTopLeft() {
356
- return this.i.m0 ? this.i.m0.c : NaN;
356
+ return this.i.ko ? this.i.ko.c : NaN;
357
357
  }
358
358
  set actualCornerRadiusTopLeft(v) {
359
359
  this.ensureActualCornerRadius();
360
- this.i.m0.c = +v;
361
- this._a("actualCornerRadiusTopLeft", this.i.m0.c);
362
- this.i.m0 = this.i.m0;
360
+ this.i.ko.c = +v;
361
+ this._a("actualCornerRadiusTopLeft", this.i.ko.c);
362
+ this.i.ko = this.i.ko;
363
363
  }
364
364
  get actualCornerRadiusTopRight() {
365
- return this.i.m0 ? this.i.m0.d : NaN;
365
+ return this.i.ko ? this.i.ko.d : NaN;
366
366
  }
367
367
  set actualCornerRadiusTopRight(v) {
368
368
  this.ensureActualCornerRadius();
369
- this.i.m0.d = +v;
370
- this._a("actualCornerRadiusTopRight", this.i.m0.d);
371
- this.i.m0 = this.i.m0;
369
+ this.i.ko.d = +v;
370
+ this._a("actualCornerRadiusTopRight", this.i.ko.d);
371
+ this.i.ko = this.i.ko;
372
372
  }
373
373
  ensureActualCornerRadius() {
374
- if (this.i.m0) {
374
+ if (this.i.ko) {
375
375
  return;
376
376
  }
377
- this.i.m0 = new CornerRadius(2);
377
+ this.i.ko = new CornerRadius(2);
378
378
  }
379
379
  get actualContentPaddingBottom() {
380
- return this.i.tg ? this.i.tg.bottom : NaN;
380
+ return this.i.oe ? this.i.oe.bottom : NaN;
381
381
  }
382
382
  set actualContentPaddingBottom(v) {
383
383
  this.ensureActualContentPadding();
384
- this.i.tg.bottom = +v;
385
- this._a("actualContentPaddingBottom", this.i.tg.bottom);
386
- this.i.tg = this.i.tg;
384
+ this.i.oe.bottom = +v;
385
+ this._a("actualContentPaddingBottom", this.i.oe.bottom);
386
+ this.i.oe = this.i.oe;
387
387
  }
388
388
  get actualContentPaddingLeft() {
389
- return this.i.tg ? this.i.tg.left : NaN;
389
+ return this.i.oe ? this.i.oe.left : NaN;
390
390
  }
391
391
  set actualContentPaddingLeft(v) {
392
392
  this.ensureActualContentPadding();
393
- this.i.tg.left = +v;
394
- this._a("actualContentPaddingLeft", this.i.tg.left);
395
- this.i.tg = this.i.tg;
393
+ this.i.oe.left = +v;
394
+ this._a("actualContentPaddingLeft", this.i.oe.left);
395
+ this.i.oe = this.i.oe;
396
396
  }
397
397
  get actualContentPaddingRight() {
398
- return this.i.tg ? this.i.tg.right : NaN;
398
+ return this.i.oe ? this.i.oe.right : NaN;
399
399
  }
400
400
  set actualContentPaddingRight(v) {
401
401
  this.ensureActualContentPadding();
402
- this.i.tg.right = +v;
403
- this._a("actualContentPaddingRight", this.i.tg.right);
404
- this.i.tg = this.i.tg;
402
+ this.i.oe.right = +v;
403
+ this._a("actualContentPaddingRight", this.i.oe.right);
404
+ this.i.oe = this.i.oe;
405
405
  }
406
406
  get actualContentPaddingTop() {
407
- return this.i.tg ? this.i.tg.top : NaN;
407
+ return this.i.oe ? this.i.oe.top : NaN;
408
408
  }
409
409
  set actualContentPaddingTop(v) {
410
410
  this.ensureActualContentPadding();
411
- this.i.tg.top = +v;
412
- this._a("actualContentPaddingTop", this.i.tg.top);
413
- this.i.tg = this.i.tg;
411
+ this.i.oe.top = +v;
412
+ this._a("actualContentPaddingTop", this.i.oe.top);
413
+ this.i.oe = this.i.oe;
414
414
  }
415
415
  ensureActualContentPadding() {
416
- if (this.i.tg) {
416
+ if (this.i.oe) {
417
417
  return;
418
418
  }
419
- this.i.tg = new Thickness(2);
419
+ this.i.oe = new Thickness(2);
420
420
  }
421
421
  /**
422
422
  * Gets the actual width to use for the underline element.
423
423
  */
424
424
  get actualUnderlineWidth() {
425
- return this.i.cj;
425
+ return this.i.cp;
426
426
  }
427
427
  set actualUnderlineWidth(v) {
428
- this.i.cj = +v;
429
- this._a("actualUnderlineWidth", this.i.cj);
428
+ this.i.cp = +v;
429
+ this._a("actualUnderlineWidth", this.i.cp);
430
430
  }
431
431
  /**
432
432
  * Gets the actual width to use for the underline element.
433
433
  */
434
434
  get actualUnderlineRippleWidth() {
435
- return this.i.ci;
435
+ return this.i.co;
436
436
  }
437
437
  set actualUnderlineRippleWidth(v) {
438
- this.i.ci = +v;
439
- this._a("actualUnderlineRippleWidth", this.i.ci);
438
+ this.i.co = +v;
439
+ this._a("actualUnderlineRippleWidth", this.i.co);
440
440
  }
441
441
  /**
442
442
  * Gets the width to use for the underline element when hovered.
443
443
  */
444
444
  get actualHoverUnderlineWidth() {
445
- return this.i.cf;
445
+ return this.i.cl;
446
446
  }
447
447
  set actualHoverUnderlineWidth(v) {
448
- this.i.cf = +v;
449
- this._a("actualHoverUnderlineWidth", this.i.cf);
448
+ this.i.cl = +v;
449
+ this._a("actualHoverUnderlineWidth", this.i.cl);
450
450
  }
451
451
  /**
452
452
  * Gets the actual color to use for the underline element.
453
453
  */
454
454
  get actualUnderlineColor() {
455
- return brushToString(this.i.ox);
455
+ return brushToString(this.i.ma);
456
456
  }
457
457
  set actualUnderlineColor(v) {
458
- this.i.ox = stringToBrush(v);
459
- this._a("actualUnderlineColor", brushToString(this.i.ox));
458
+ this.i.ma = stringToBrush(v);
459
+ this._a("actualUnderlineColor", brushToString(this.i.ma));
460
460
  }
461
461
  /**
462
462
  * Gets the actual color to use for the underline ripple element.
463
463
  */
464
464
  get actualUnderlineRippleColor() {
465
- return brushToString(this.i.oy);
465
+ return brushToString(this.i.mb);
466
466
  }
467
467
  set actualUnderlineRippleColor(v) {
468
- this.i.oy = stringToBrush(v);
469
- this._a("actualUnderlineRippleColor", brushToString(this.i.oy));
468
+ this.i.mb = stringToBrush(v);
469
+ this._a("actualUnderlineRippleColor", brushToString(this.i.mb));
470
470
  }
471
471
  /**
472
472
  * Gets the actual color to use for the underline element.
473
473
  */
474
474
  get actualHoverUnderlineColor() {
475
- return brushToString(this.i.ow);
475
+ return brushToString(this.i.l9);
476
476
  }
477
477
  set actualHoverUnderlineColor(v) {
478
- this.i.ow = stringToBrush(v);
479
- this._a("actualHoverUnderlineColor", brushToString(this.i.ow));
478
+ this.i.l9 = stringToBrush(v);
479
+ this._a("actualHoverUnderlineColor", brushToString(this.i.l9));
480
480
  }
481
481
  /**
482
482
  * Gets the actual color to use for the underline element when focused.
483
483
  */
484
484
  get actualFocusUnderlineColor() {
485
- return brushToString(this.i.ov);
485
+ return brushToString(this.i.l8);
486
486
  }
487
487
  set actualFocusUnderlineColor(v) {
488
- this.i.ov = stringToBrush(v);
489
- this._a("actualFocusUnderlineColor", brushToString(this.i.ov));
488
+ this.i.l8 = stringToBrush(v);
489
+ this._a("actualFocusUnderlineColor", brushToString(this.i.l8));
490
490
  }
491
491
  /**
492
492
  * Gets the actual opacity to use for the underline element.
493
493
  */
494
494
  get actualUnderlineOpacity() {
495
- return this.i.cg;
495
+ return this.i.cm;
496
496
  }
497
497
  set actualUnderlineOpacity(v) {
498
- this.i.cg = +v;
499
- this._a("actualUnderlineOpacity", this.i.cg);
498
+ this.i.cm = +v;
499
+ this._a("actualUnderlineOpacity", this.i.cm);
500
500
  }
501
501
  /**
502
502
  * Gets the actual opacity to use for the underline element when hovered.
503
503
  */
504
504
  get actualHoverUnderlineOpacity() {
505
- return this.i.ce;
505
+ return this.i.ck;
506
506
  }
507
507
  set actualHoverUnderlineOpacity(v) {
508
- this.i.ce = +v;
509
- this._a("actualHoverUnderlineOpacity", this.i.ce);
508
+ this.i.ck = +v;
509
+ this._a("actualHoverUnderlineOpacity", this.i.ck);
510
510
  }
511
511
  /**
512
512
  * Gets the actual opacity to use for the underline element when focused.
513
513
  */
514
514
  get actualFocusUnderlineOpacity() {
515
- return this.i.cc;
515
+ return this.i.ci;
516
516
  }
517
517
  set actualFocusUnderlineOpacity(v) {
518
- this.i.cc = +v;
519
- this._a("actualFocusUnderlineOpacity", this.i.cc);
518
+ this.i.ci = +v;
519
+ this._a("actualFocusUnderlineOpacity", this.i.ci);
520
520
  }
521
521
  /**
522
522
  * Gets the actual opacity to use for the underline ripple element when focused.
523
523
  */
524
524
  get actualFocusUnderlineRippleOpacity() {
525
- return this.i.cd;
525
+ return this.i.cj;
526
526
  }
527
527
  set actualFocusUnderlineRippleOpacity(v) {
528
- this.i.cd = +v;
529
- this._a("actualFocusUnderlineRippleOpacity", this.i.cd);
528
+ this.i.cj = +v;
529
+ this._a("actualFocusUnderlineRippleOpacity", this.i.cj);
530
530
  }
531
531
  /**
532
532
  * Gets the actual opacity to use for the underline ripple element.
533
533
  */
534
534
  get actualUnderlineRippleOpacity() {
535
- return this.i.ch;
535
+ return this.i.cn;
536
536
  }
537
537
  set actualUnderlineRippleOpacity(v) {
538
- this.i.ch = +v;
539
- this._a("actualUnderlineRippleOpacity", this.i.ch);
538
+ this.i.cn = +v;
539
+ this._a("actualUnderlineRippleOpacity", this.i.cn);
540
540
  }
541
541
  /**
542
542
  * Gets the actual opacity to use for the underline ripple element.
543
543
  */
544
544
  get actualBackgroundColor() {
545
- return brushToString(this.i.os);
545
+ return brushToString(this.i.l5);
546
546
  }
547
547
  set actualBackgroundColor(v) {
548
- this.i.os = stringToBrush(v);
549
- this._a("actualBackgroundColor", brushToString(this.i.os));
548
+ this.i.l5 = stringToBrush(v);
549
+ this._a("actualBackgroundColor", brushToString(this.i.l5));
550
550
  }
551
551
  /**
552
552
  * Gets or sets the border width to use for the border of the item group.
553
553
  */
554
554
  get borderWidth() {
555
- return this.i.cu;
555
+ return this.i.c0;
556
556
  }
557
557
  set borderWidth(v) {
558
- this.i.cu = +v;
559
- this._a("borderWidth", this.i.cu);
558
+ this.i.c0 = +v;
559
+ this._a("borderWidth", this.i.c0);
560
560
  }
561
561
  /**
562
562
  * Gets or sets the border width to use for the border of the item group when focused.
563
563
  */
564
564
  get focusBorderWidth() {
565
- return this.i.hc;
565
+ return this.i.eg;
566
566
  }
567
567
  set focusBorderWidth(v) {
568
- this.i.hc = +v;
569
- this._a("focusBorderWidth", this.i.hc);
568
+ this.i.eg = +v;
569
+ this._a("focusBorderWidth", this.i.eg);
570
570
  }
571
571
  /**
572
572
  * Gets or sets the color to use the border of the input group.
573
573
  */
574
574
  get borderColor() {
575
- return brushToString(this.i.o0);
575
+ return brushToString(this.i.md);
576
576
  }
577
577
  set borderColor(v) {
578
- this.i.o0 = stringToBrush(v);
579
- this._a("borderColor", brushToString(this.i.o0));
578
+ this.i.md = stringToBrush(v);
579
+ this._a("borderColor", brushToString(this.i.md));
580
580
  }
581
581
  get cornerRadiusBottomRight() {
582
- return this.i.m4 ? this.i.m4.b : NaN;
582
+ return this.i.ks ? this.i.ks.b : NaN;
583
583
  }
584
584
  set cornerRadiusBottomRight(v) {
585
585
  this.ensureCornerRadius();
586
- this.i.m4.b = +v;
587
- this._a("cornerRadiusBottomRight", this.i.m4.b);
588
- this.i.m4 = this.i.m4;
586
+ this.i.ks.b = +v;
587
+ this._a("cornerRadiusBottomRight", this.i.ks.b);
588
+ this.i.ks = this.i.ks;
589
589
  }
590
590
  get cornerRadiusBottomLeft() {
591
- return this.i.m4 ? this.i.m4.a : NaN;
591
+ return this.i.ks ? this.i.ks.a : NaN;
592
592
  }
593
593
  set cornerRadiusBottomLeft(v) {
594
594
  this.ensureCornerRadius();
595
- this.i.m4.a = +v;
596
- this._a("cornerRadiusBottomLeft", this.i.m4.a);
597
- this.i.m4 = this.i.m4;
595
+ this.i.ks.a = +v;
596
+ this._a("cornerRadiusBottomLeft", this.i.ks.a);
597
+ this.i.ks = this.i.ks;
598
598
  }
599
599
  get cornerRadiusTopLeft() {
600
- return this.i.m4 ? this.i.m4.c : NaN;
600
+ return this.i.ks ? this.i.ks.c : NaN;
601
601
  }
602
602
  set cornerRadiusTopLeft(v) {
603
603
  this.ensureCornerRadius();
604
- this.i.m4.c = +v;
605
- this._a("cornerRadiusTopLeft", this.i.m4.c);
606
- this.i.m4 = this.i.m4;
604
+ this.i.ks.c = +v;
605
+ this._a("cornerRadiusTopLeft", this.i.ks.c);
606
+ this.i.ks = this.i.ks;
607
607
  }
608
608
  get cornerRadiusTopRight() {
609
- return this.i.m4 ? this.i.m4.d : NaN;
609
+ return this.i.ks ? this.i.ks.d : NaN;
610
610
  }
611
611
  set cornerRadiusTopRight(v) {
612
612
  this.ensureCornerRadius();
613
- this.i.m4.d = +v;
614
- this._a("cornerRadiusTopRight", this.i.m4.d);
615
- this.i.m4 = this.i.m4;
613
+ this.i.ks.d = +v;
614
+ this._a("cornerRadiusTopRight", this.i.ks.d);
615
+ this.i.ks = this.i.ks;
616
616
  }
617
617
  ensureCornerRadius() {
618
- if (this.i.m4) {
618
+ if (this.i.ks) {
619
619
  return;
620
620
  }
621
- this.i.m4 = new CornerRadius(2);
621
+ this.i.ks = new CornerRadius(2);
622
622
  }
623
623
  get contentPaddingBottom() {
624
- return this.i.tk ? this.i.tk.bottom : NaN;
624
+ return this.i.oi ? this.i.oi.bottom : NaN;
625
625
  }
626
626
  set contentPaddingBottom(v) {
627
627
  this.ensureContentPadding();
628
- this.i.tk.bottom = +v;
629
- this._a("contentPaddingBottom", this.i.tk.bottom);
630
- this.i.tk = this.i.tk;
628
+ this.i.oi.bottom = +v;
629
+ this._a("contentPaddingBottom", this.i.oi.bottom);
630
+ this.i.oi = this.i.oi;
631
631
  }
632
632
  get contentPaddingLeft() {
633
- return this.i.tk ? this.i.tk.left : NaN;
633
+ return this.i.oi ? this.i.oi.left : NaN;
634
634
  }
635
635
  set contentPaddingLeft(v) {
636
636
  this.ensureContentPadding();
637
- this.i.tk.left = +v;
638
- this._a("contentPaddingLeft", this.i.tk.left);
639
- this.i.tk = this.i.tk;
637
+ this.i.oi.left = +v;
638
+ this._a("contentPaddingLeft", this.i.oi.left);
639
+ this.i.oi = this.i.oi;
640
640
  }
641
641
  get contentPaddingRight() {
642
- return this.i.tk ? this.i.tk.right : NaN;
642
+ return this.i.oi ? this.i.oi.right : NaN;
643
643
  }
644
644
  set contentPaddingRight(v) {
645
645
  this.ensureContentPadding();
646
- this.i.tk.right = +v;
647
- this._a("contentPaddingRight", this.i.tk.right);
648
- this.i.tk = this.i.tk;
646
+ this.i.oi.right = +v;
647
+ this._a("contentPaddingRight", this.i.oi.right);
648
+ this.i.oi = this.i.oi;
649
649
  }
650
650
  get contentPaddingTop() {
651
- return this.i.tk ? this.i.tk.top : NaN;
651
+ return this.i.oi ? this.i.oi.top : NaN;
652
652
  }
653
653
  set contentPaddingTop(v) {
654
654
  this.ensureContentPadding();
655
- this.i.tk.top = +v;
656
- this._a("contentPaddingTop", this.i.tk.top);
657
- this.i.tk = this.i.tk;
655
+ this.i.oi.top = +v;
656
+ this._a("contentPaddingTop", this.i.oi.top);
657
+ this.i.oi = this.i.oi;
658
658
  }
659
659
  ensureContentPadding() {
660
- if (this.i.tk) {
660
+ if (this.i.oi) {
661
661
  return;
662
662
  }
663
- this.i.tk = new Thickness(2);
663
+ this.i.oi = new Thickness(2);
664
664
  }
665
665
  /**
666
666
  * Gets or sets the width to use for the underline element.
667
667
  */
668
668
  get underlineWidth() {
669
- return this.i.h4;
669
+ return this.i.e8;
670
670
  }
671
671
  set underlineWidth(v) {
672
- this.i.h4 = +v;
673
- this._a("underlineWidth", this.i.h4);
672
+ this.i.e8 = +v;
673
+ this._a("underlineWidth", this.i.e8);
674
674
  }
675
675
  /**
676
676
  * Gets or sets the width to use for the underline element.
677
677
  */
678
678
  get underlineRippleWidth() {
679
- return this.i.h3;
679
+ return this.i.e7;
680
680
  }
681
681
  set underlineRippleWidth(v) {
682
- this.i.h3 = +v;
683
- this._a("underlineRippleWidth", this.i.h3);
682
+ this.i.e7 = +v;
683
+ this._a("underlineRippleWidth", this.i.e7);
684
684
  }
685
685
  /**
686
686
  * Gets or sets the width to use for the underline element when hovered.
687
687
  */
688
688
  get hoverUnderlineWidth() {
689
- return this.i.hg;
689
+ return this.i.ek;
690
690
  }
691
691
  set hoverUnderlineWidth(v) {
692
- this.i.hg = +v;
693
- this._a("hoverUnderlineWidth", this.i.hg);
692
+ this.i.ek = +v;
693
+ this._a("hoverUnderlineWidth", this.i.ek);
694
694
  }
695
695
  /**
696
696
  * Gets or sets the color to use for the underline element.
697
697
  */
698
698
  get underlineColor() {
699
- return brushToString(this.i.s8);
699
+ return brushToString(this.i.n6);
700
700
  }
701
701
  set underlineColor(v) {
702
- this.i.s8 = stringToBrush(v);
703
- this._a("underlineColor", brushToString(this.i.s8));
702
+ this.i.n6 = stringToBrush(v);
703
+ this._a("underlineColor", brushToString(this.i.n6));
704
704
  }
705
705
  /**
706
706
  * Gets or sets the color to use for the underline ripple element.
707
707
  */
708
708
  get underlineRippleColor() {
709
- return brushToString(this.i.s9);
709
+ return brushToString(this.i.n7);
710
710
  }
711
711
  set underlineRippleColor(v) {
712
- this.i.s9 = stringToBrush(v);
713
- this._a("underlineRippleColor", brushToString(this.i.s9));
712
+ this.i.n7 = stringToBrush(v);
713
+ this._a("underlineRippleColor", brushToString(this.i.n7));
714
714
  }
715
715
  /**
716
716
  * Gets or sets the color to use for the underline element.
717
717
  */
718
718
  get hoverUnderlineColor() {
719
- return brushToString(this.i.st);
719
+ return brushToString(this.i.nq);
720
720
  }
721
721
  set hoverUnderlineColor(v) {
722
- this.i.st = stringToBrush(v);
723
- this._a("hoverUnderlineColor", brushToString(this.i.st));
722
+ this.i.nq = stringToBrush(v);
723
+ this._a("hoverUnderlineColor", brushToString(this.i.nq));
724
724
  }
725
725
  /**
726
726
  * Gets or sets the color to use for the underline element.
727
727
  */
728
728
  get focusUnderlineColor() {
729
- return brushToString(this.i.ss);
729
+ return brushToString(this.i.np);
730
730
  }
731
731
  set focusUnderlineColor(v) {
732
- this.i.ss = stringToBrush(v);
733
- this._a("focusUnderlineColor", brushToString(this.i.ss));
732
+ this.i.np = stringToBrush(v);
733
+ this._a("focusUnderlineColor", brushToString(this.i.np));
734
734
  }
735
735
  /**
736
736
  * Gets or sets the color to use for the underline element.
737
737
  */
738
738
  get underlineOpacity() {
739
- return this.i.h1;
739
+ return this.i.e5;
740
740
  }
741
741
  set underlineOpacity(v) {
742
- this.i.h1 = +v;
743
- this._a("underlineOpacity", this.i.h1);
742
+ this.i.e5 = +v;
743
+ this._a("underlineOpacity", this.i.e5);
744
744
  }
745
745
  /**
746
746
  * Gets or sets the color to use for the underline element.
747
747
  */
748
748
  get hoverUnderlineOpacity() {
749
- return this.i.hf;
749
+ return this.i.ej;
750
750
  }
751
751
  set hoverUnderlineOpacity(v) {
752
- this.i.hf = +v;
753
- this._a("hoverUnderlineOpacity", this.i.hf);
752
+ this.i.ej = +v;
753
+ this._a("hoverUnderlineOpacity", this.i.ej);
754
754
  }
755
755
  /**
756
756
  * Gets or sets the color to use for the underline element.
757
757
  */
758
758
  get focusUnderlineOpacity() {
759
- return this.i.hd;
759
+ return this.i.eh;
760
760
  }
761
761
  set focusUnderlineOpacity(v) {
762
- this.i.hd = +v;
763
- this._a("focusUnderlineOpacity", this.i.hd);
762
+ this.i.eh = +v;
763
+ this._a("focusUnderlineOpacity", this.i.eh);
764
764
  }
765
765
  /**
766
766
  * Gets or sets the opacity to use for the underline ripple element when focused.
767
767
  */
768
768
  get focusUnderlineRippleOpacity() {
769
- return this.i.he;
769
+ return this.i.ei;
770
770
  }
771
771
  set focusUnderlineRippleOpacity(v) {
772
- this.i.he = +v;
773
- this._a("focusUnderlineRippleOpacity", this.i.he);
772
+ this.i.ei = +v;
773
+ this._a("focusUnderlineRippleOpacity", this.i.ei);
774
774
  }
775
775
  /**
776
776
  * Gets or sets the opacity to use for the underline ripple element.
777
777
  */
778
778
  get underlineRippleOpacity() {
779
- return this.i.h2;
779
+ return this.i.e6;
780
780
  }
781
781
  set underlineRippleOpacity(v) {
782
- this.i.h2 = +v;
783
- this._a("underlineRippleOpacity", this.i.h2);
782
+ this.i.e6 = +v;
783
+ this._a("underlineRippleOpacity", this.i.e6);
784
784
  }
785
785
  /**
786
786
  * Gets or sets the background color to use for the input group.
787
787
  */
788
788
  get backgroundColor() {
789
- return brushToString(this.i.oz);
789
+ return brushToString(this.i.mc);
790
790
  }
791
791
  set backgroundColor(v) {
792
- this.i.oz = stringToBrush(v);
793
- this._a("backgroundColor", brushToString(this.i.oz));
792
+ this.i.mc = stringToBrush(v);
793
+ this._a("backgroundColor", brushToString(this.i.mc));
794
794
  }
795
795
  /**
796
796
  * Gets or sets the border width to use for the border of the item group when using type line.
797
797
  */
798
798
  get lineTypeBorderWidth() {
799
- return this.i.hh;
799
+ return this.i.el;
800
800
  }
801
801
  set lineTypeBorderWidth(v) {
802
- this.i.hh = +v;
803
- this._a("lineTypeBorderWidth", this.i.hh);
802
+ this.i.el = +v;
803
+ this._a("lineTypeBorderWidth", this.i.el);
804
804
  }
805
805
  /**
806
806
  * Gets or sets the border width to use for the border of the item group when focused when type is line.
807
807
  */
808
808
  get lineTypeFocusBorderWidth() {
809
- return this.i.hi;
809
+ return this.i.em;
810
810
  }
811
811
  set lineTypeFocusBorderWidth(v) {
812
- this.i.hi = +v;
813
- this._a("lineTypeFocusBorderWidth", this.i.hi);
812
+ this.i.em = +v;
813
+ this._a("lineTypeFocusBorderWidth", this.i.em);
814
814
  }
815
815
  /**
816
816
  * Gets or sets the focus color to use the border of the input group when type is line.
817
817
  */
818
818
  get lineTypeFocusBorderColor() {
819
- return brushToString(this.i.sw);
819
+ return brushToString(this.i.nt);
820
820
  }
821
821
  set lineTypeFocusBorderColor(v) {
822
- this.i.sw = stringToBrush(v);
823
- this._a("lineTypeFocusBorderColor", brushToString(this.i.sw));
822
+ this.i.nt = stringToBrush(v);
823
+ this._a("lineTypeFocusBorderColor", brushToString(this.i.nt));
824
824
  }
825
825
  /**
826
826
  * Gets or sets the color to use the border of the input group when type is line.
827
827
  */
828
828
  get lineTypeBorderColor() {
829
- return brushToString(this.i.sv);
829
+ return brushToString(this.i.ns);
830
830
  }
831
831
  set lineTypeBorderColor(v) {
832
- this.i.sv = stringToBrush(v);
833
- this._a("lineTypeBorderColor", brushToString(this.i.sv));
832
+ this.i.ns = stringToBrush(v);
833
+ this._a("lineTypeBorderColor", brushToString(this.i.ns));
834
834
  }
835
835
  get lineTypeCornerRadiusBottomRight() {
836
- return this.i.nk ? this.i.nk.b : NaN;
836
+ return this.i.kx ? this.i.kx.b : NaN;
837
837
  }
838
838
  set lineTypeCornerRadiusBottomRight(v) {
839
839
  this.ensureLineTypeCornerRadius();
840
- this.i.nk.b = +v;
841
- this._a("lineTypeCornerRadiusBottomRight", this.i.nk.b);
842
- this.i.nk = this.i.nk;
840
+ this.i.kx.b = +v;
841
+ this._a("lineTypeCornerRadiusBottomRight", this.i.kx.b);
842
+ this.i.kx = this.i.kx;
843
843
  }
844
844
  get lineTypeCornerRadiusBottomLeft() {
845
- return this.i.nk ? this.i.nk.a : NaN;
845
+ return this.i.kx ? this.i.kx.a : NaN;
846
846
  }
847
847
  set lineTypeCornerRadiusBottomLeft(v) {
848
848
  this.ensureLineTypeCornerRadius();
849
- this.i.nk.a = +v;
850
- this._a("lineTypeCornerRadiusBottomLeft", this.i.nk.a);
851
- this.i.nk = this.i.nk;
849
+ this.i.kx.a = +v;
850
+ this._a("lineTypeCornerRadiusBottomLeft", this.i.kx.a);
851
+ this.i.kx = this.i.kx;
852
852
  }
853
853
  get lineTypeCornerRadiusTopLeft() {
854
- return this.i.nk ? this.i.nk.c : NaN;
854
+ return this.i.kx ? this.i.kx.c : NaN;
855
855
  }
856
856
  set lineTypeCornerRadiusTopLeft(v) {
857
857
  this.ensureLineTypeCornerRadius();
858
- this.i.nk.c = +v;
859
- this._a("lineTypeCornerRadiusTopLeft", this.i.nk.c);
860
- this.i.nk = this.i.nk;
858
+ this.i.kx.c = +v;
859
+ this._a("lineTypeCornerRadiusTopLeft", this.i.kx.c);
860
+ this.i.kx = this.i.kx;
861
861
  }
862
862
  get lineTypeCornerRadiusTopRight() {
863
- return this.i.nk ? this.i.nk.d : NaN;
863
+ return this.i.kx ? this.i.kx.d : NaN;
864
864
  }
865
865
  set lineTypeCornerRadiusTopRight(v) {
866
866
  this.ensureLineTypeCornerRadius();
867
- this.i.nk.d = +v;
868
- this._a("lineTypeCornerRadiusTopRight", this.i.nk.d);
869
- this.i.nk = this.i.nk;
867
+ this.i.kx.d = +v;
868
+ this._a("lineTypeCornerRadiusTopRight", this.i.kx.d);
869
+ this.i.kx = this.i.kx;
870
870
  }
871
871
  ensureLineTypeCornerRadius() {
872
- if (this.i.nk) {
872
+ if (this.i.kx) {
873
873
  return;
874
874
  }
875
- this.i.nk = new CornerRadius(2);
875
+ this.i.kx = new CornerRadius(2);
876
876
  }
877
877
  get lineTypeContentPaddingBottom() {
878
- return this.i.t0 ? this.i.t0.bottom : NaN;
878
+ return this.i.on ? this.i.on.bottom : NaN;
879
879
  }
880
880
  set lineTypeContentPaddingBottom(v) {
881
881
  this.ensureLineTypeContentPadding();
882
- this.i.t0.bottom = +v;
883
- this._a("lineTypeContentPaddingBottom", this.i.t0.bottom);
884
- this.i.t0 = this.i.t0;
882
+ this.i.on.bottom = +v;
883
+ this._a("lineTypeContentPaddingBottom", this.i.on.bottom);
884
+ this.i.on = this.i.on;
885
885
  }
886
886
  get lineTypeContentPaddingLeft() {
887
- return this.i.t0 ? this.i.t0.left : NaN;
887
+ return this.i.on ? this.i.on.left : NaN;
888
888
  }
889
889
  set lineTypeContentPaddingLeft(v) {
890
890
  this.ensureLineTypeContentPadding();
891
- this.i.t0.left = +v;
892
- this._a("lineTypeContentPaddingLeft", this.i.t0.left);
893
- this.i.t0 = this.i.t0;
891
+ this.i.on.left = +v;
892
+ this._a("lineTypeContentPaddingLeft", this.i.on.left);
893
+ this.i.on = this.i.on;
894
894
  }
895
895
  get lineTypeContentPaddingRight() {
896
- return this.i.t0 ? this.i.t0.right : NaN;
896
+ return this.i.on ? this.i.on.right : NaN;
897
897
  }
898
898
  set lineTypeContentPaddingRight(v) {
899
899
  this.ensureLineTypeContentPadding();
900
- this.i.t0.right = +v;
901
- this._a("lineTypeContentPaddingRight", this.i.t0.right);
902
- this.i.t0 = this.i.t0;
900
+ this.i.on.right = +v;
901
+ this._a("lineTypeContentPaddingRight", this.i.on.right);
902
+ this.i.on = this.i.on;
903
903
  }
904
904
  get lineTypeContentPaddingTop() {
905
- return this.i.t0 ? this.i.t0.top : NaN;
905
+ return this.i.on ? this.i.on.top : NaN;
906
906
  }
907
907
  set lineTypeContentPaddingTop(v) {
908
908
  this.ensureLineTypeContentPadding();
909
- this.i.t0.top = +v;
910
- this._a("lineTypeContentPaddingTop", this.i.t0.top);
911
- this.i.t0 = this.i.t0;
909
+ this.i.on.top = +v;
910
+ this._a("lineTypeContentPaddingTop", this.i.on.top);
911
+ this.i.on = this.i.on;
912
912
  }
913
913
  ensureLineTypeContentPadding() {
914
- if (this.i.t0) {
914
+ if (this.i.on) {
915
915
  return;
916
916
  }
917
- this.i.t0 = new Thickness(2);
917
+ this.i.on = new Thickness(2);
918
918
  }
919
919
  /**
920
920
  * Gets or sets the width to use for the underline element when type is line.
921
921
  */
922
922
  get lineTypeUnderlineWidth() {
923
- return this.i.hq;
923
+ return this.i.eu;
924
924
  }
925
925
  set lineTypeUnderlineWidth(v) {
926
- this.i.hq = +v;
927
- this._a("lineTypeUnderlineWidth", this.i.hq);
926
+ this.i.eu = +v;
927
+ this._a("lineTypeUnderlineWidth", this.i.eu);
928
928
  }
929
929
  /**
930
930
  * Gets or sets the width to use for the underline element when type is line.
931
931
  */
932
932
  get lineTypeUnderlineRippleWidth() {
933
- return this.i.hp;
933
+ return this.i.et;
934
934
  }
935
935
  set lineTypeUnderlineRippleWidth(v) {
936
- this.i.hp = +v;
937
- this._a("lineTypeUnderlineRippleWidth", this.i.hp);
936
+ this.i.et = +v;
937
+ this._a("lineTypeUnderlineRippleWidth", this.i.et);
938
938
  }
939
939
  /**
940
940
  * Gets or sets the width to use for the underline element when hovered when type is line.
941
941
  */
942
942
  get lineTypeHoverUnderlineWidth() {
943
- return this.i.hm;
943
+ return this.i.eq;
944
944
  }
945
945
  set lineTypeHoverUnderlineWidth(v) {
946
- this.i.hm = +v;
947
- this._a("lineTypeHoverUnderlineWidth", this.i.hm);
946
+ this.i.eq = +v;
947
+ this._a("lineTypeHoverUnderlineWidth", this.i.eq);
948
948
  }
949
949
  /**
950
950
  * Gets or sets the color to use for the underline element when type is line.
951
951
  */
952
952
  get lineTypeUnderlineColor() {
953
- return brushToString(this.i.sz);
953
+ return brushToString(this.i.nw);
954
954
  }
955
955
  set lineTypeUnderlineColor(v) {
956
- this.i.sz = stringToBrush(v);
957
- this._a("lineTypeUnderlineColor", brushToString(this.i.sz));
956
+ this.i.nw = stringToBrush(v);
957
+ this._a("lineTypeUnderlineColor", brushToString(this.i.nw));
958
958
  }
959
959
  /**
960
960
  * Gets or sets the color to use for the underline ripple element when type is line.
961
961
  */
962
962
  get lineTypeUnderlineRippleColor() {
963
- return brushToString(this.i.s0);
963
+ return brushToString(this.i.nx);
964
964
  }
965
965
  set lineTypeUnderlineRippleColor(v) {
966
- this.i.s0 = stringToBrush(v);
967
- this._a("lineTypeUnderlineRippleColor", brushToString(this.i.s0));
966
+ this.i.nx = stringToBrush(v);
967
+ this._a("lineTypeUnderlineRippleColor", brushToString(this.i.nx));
968
968
  }
969
969
  /**
970
970
  * Gets or sets the color to use for the underline element when type is line.
971
971
  */
972
972
  get lineTypeHoverUnderlineColor() {
973
- return brushToString(this.i.sy);
973
+ return brushToString(this.i.nv);
974
974
  }
975
975
  set lineTypeHoverUnderlineColor(v) {
976
- this.i.sy = stringToBrush(v);
977
- this._a("lineTypeHoverUnderlineColor", brushToString(this.i.sy));
976
+ this.i.nv = stringToBrush(v);
977
+ this._a("lineTypeHoverUnderlineColor", brushToString(this.i.nv));
978
978
  }
979
979
  /**
980
980
  * Gets or sets the color to use for the underline element when type is line.
981
981
  */
982
982
  get lineTypeFocusUnderlineColor() {
983
- return brushToString(this.i.sx);
983
+ return brushToString(this.i.nu);
984
984
  }
985
985
  set lineTypeFocusUnderlineColor(v) {
986
- this.i.sx = stringToBrush(v);
987
- this._a("lineTypeFocusUnderlineColor", brushToString(this.i.sx));
986
+ this.i.nu = stringToBrush(v);
987
+ this._a("lineTypeFocusUnderlineColor", brushToString(this.i.nu));
988
988
  }
989
989
  /**
990
990
  * Gets or sets the color to use for the underline element when type is line.
991
991
  */
992
992
  get lineTypeUnderlineOpacity() {
993
- return this.i.hn;
993
+ return this.i.er;
994
994
  }
995
995
  set lineTypeUnderlineOpacity(v) {
996
- this.i.hn = +v;
997
- this._a("lineTypeUnderlineOpacity", this.i.hn);
996
+ this.i.er = +v;
997
+ this._a("lineTypeUnderlineOpacity", this.i.er);
998
998
  }
999
999
  /**
1000
1000
  * Gets or sets the color to use for the underline element when type is line.
1001
1001
  */
1002
1002
  get lineTypeHoverUnderlineOpacity() {
1003
- return this.i.hl;
1003
+ return this.i.ep;
1004
1004
  }
1005
1005
  set lineTypeHoverUnderlineOpacity(v) {
1006
- this.i.hl = +v;
1007
- this._a("lineTypeHoverUnderlineOpacity", this.i.hl);
1006
+ this.i.ep = +v;
1007
+ this._a("lineTypeHoverUnderlineOpacity", this.i.ep);
1008
1008
  }
1009
1009
  /**
1010
1010
  * Gets or sets the color to use for the underline element when type is line.
1011
1011
  */
1012
1012
  get lineTypeFocusUnderlineOpacity() {
1013
- return this.i.hj;
1013
+ return this.i.en;
1014
1014
  }
1015
1015
  set lineTypeFocusUnderlineOpacity(v) {
1016
- this.i.hj = +v;
1017
- this._a("lineTypeFocusUnderlineOpacity", this.i.hj);
1016
+ this.i.en = +v;
1017
+ this._a("lineTypeFocusUnderlineOpacity", this.i.en);
1018
1018
  }
1019
1019
  /**
1020
1020
  * Gets or sets the opacity to use for the underline ripple element when focused when type is line.
1021
1021
  */
1022
1022
  get lineTypeFocusUnderlineRippleOpacity() {
1023
- return this.i.hk;
1023
+ return this.i.eo;
1024
1024
  }
1025
1025
  set lineTypeFocusUnderlineRippleOpacity(v) {
1026
- this.i.hk = +v;
1027
- this._a("lineTypeFocusUnderlineRippleOpacity", this.i.hk);
1026
+ this.i.eo = +v;
1027
+ this._a("lineTypeFocusUnderlineRippleOpacity", this.i.eo);
1028
1028
  }
1029
1029
  /**
1030
1030
  * Gets or sets the opacity to use for the underline ripple element when type is line.
1031
1031
  */
1032
1032
  get lineTypeUnderlineRippleOpacity() {
1033
- return this.i.ho;
1033
+ return this.i.es;
1034
1034
  }
1035
1035
  set lineTypeUnderlineRippleOpacity(v) {
1036
- this.i.ho = +v;
1037
- this._a("lineTypeUnderlineRippleOpacity", this.i.ho);
1036
+ this.i.es = +v;
1037
+ this._a("lineTypeUnderlineRippleOpacity", this.i.es);
1038
1038
  }
1039
1039
  /**
1040
1040
  * Gets or sets the background color to use for the input group when type is line.
1041
1041
  */
1042
1042
  get lineTypeBackgroundColor() {
1043
- return brushToString(this.i.su);
1043
+ return brushToString(this.i.nr);
1044
1044
  }
1045
1045
  set lineTypeBackgroundColor(v) {
1046
- this.i.su = stringToBrush(v);
1047
- this._a("lineTypeBackgroundColor", brushToString(this.i.su));
1046
+ this.i.nr = stringToBrush(v);
1047
+ this._a("lineTypeBackgroundColor", brushToString(this.i.nr));
1048
1048
  }
1049
1049
  /**
1050
1050
  * Gets or sets the border width to use for the border of the item group when using type line.
1051
1051
  */
1052
1052
  get boxTypeBorderWidth() {
1053
- return this.i.cv;
1053
+ return this.i.c1;
1054
1054
  }
1055
1055
  set boxTypeBorderWidth(v) {
1056
- this.i.cv = +v;
1057
- this._a("boxTypeBorderWidth", this.i.cv);
1056
+ this.i.c1 = +v;
1057
+ this._a("boxTypeBorderWidth", this.i.c1);
1058
1058
  }
1059
1059
  /**
1060
1060
  * Gets or sets the border width to use for the border of the item group when focused when type is box.
1061
1061
  */
1062
1062
  get boxTypeFocusBorderWidth() {
1063
- return this.i.cw;
1063
+ return this.i.c2;
1064
1064
  }
1065
1065
  set boxTypeFocusBorderWidth(v) {
1066
- this.i.cw = +v;
1067
- this._a("boxTypeFocusBorderWidth", this.i.cw);
1066
+ this.i.c2 = +v;
1067
+ this._a("boxTypeFocusBorderWidth", this.i.c2);
1068
1068
  }
1069
1069
  /**
1070
1070
  * Gets or sets the focus color to use the border of the input group when type is box.
1071
1071
  */
1072
1072
  get boxTypeFocusBorderColor() {
1073
- return brushToString(this.i.pa);
1073
+ return brushToString(this.i.mn);
1074
1074
  }
1075
1075
  set boxTypeFocusBorderColor(v) {
1076
- this.i.pa = stringToBrush(v);
1077
- this._a("boxTypeFocusBorderColor", brushToString(this.i.pa));
1076
+ this.i.mn = stringToBrush(v);
1077
+ this._a("boxTypeFocusBorderColor", brushToString(this.i.mn));
1078
1078
  }
1079
1079
  /**
1080
1080
  * Gets or sets the color to use the border of the input group when type is box.
1081
1081
  */
1082
1082
  get boxTypeBorderColor() {
1083
- return brushToString(this.i.o9);
1083
+ return brushToString(this.i.mm);
1084
1084
  }
1085
1085
  set boxTypeBorderColor(v) {
1086
- this.i.o9 = stringToBrush(v);
1087
- this._a("boxTypeBorderColor", brushToString(this.i.o9));
1086
+ this.i.mm = stringToBrush(v);
1087
+ this._a("boxTypeBorderColor", brushToString(this.i.mm));
1088
1088
  }
1089
1089
  get boxTypeCornerRadiusBottomRight() {
1090
- return this.i.m2 ? this.i.m2.b : NaN;
1090
+ return this.i.kq ? this.i.kq.b : NaN;
1091
1091
  }
1092
1092
  set boxTypeCornerRadiusBottomRight(v) {
1093
1093
  this.ensureBoxTypeCornerRadius();
1094
- this.i.m2.b = +v;
1095
- this._a("boxTypeCornerRadiusBottomRight", this.i.m2.b);
1096
- this.i.m2 = this.i.m2;
1094
+ this.i.kq.b = +v;
1095
+ this._a("boxTypeCornerRadiusBottomRight", this.i.kq.b);
1096
+ this.i.kq = this.i.kq;
1097
1097
  }
1098
1098
  get boxTypeCornerRadiusBottomLeft() {
1099
- return this.i.m2 ? this.i.m2.a : NaN;
1099
+ return this.i.kq ? this.i.kq.a : NaN;
1100
1100
  }
1101
1101
  set boxTypeCornerRadiusBottomLeft(v) {
1102
1102
  this.ensureBoxTypeCornerRadius();
1103
- this.i.m2.a = +v;
1104
- this._a("boxTypeCornerRadiusBottomLeft", this.i.m2.a);
1105
- this.i.m2 = this.i.m2;
1103
+ this.i.kq.a = +v;
1104
+ this._a("boxTypeCornerRadiusBottomLeft", this.i.kq.a);
1105
+ this.i.kq = this.i.kq;
1106
1106
  }
1107
1107
  get boxTypeCornerRadiusTopLeft() {
1108
- return this.i.m2 ? this.i.m2.c : NaN;
1108
+ return this.i.kq ? this.i.kq.c : NaN;
1109
1109
  }
1110
1110
  set boxTypeCornerRadiusTopLeft(v) {
1111
1111
  this.ensureBoxTypeCornerRadius();
1112
- this.i.m2.c = +v;
1113
- this._a("boxTypeCornerRadiusTopLeft", this.i.m2.c);
1114
- this.i.m2 = this.i.m2;
1112
+ this.i.kq.c = +v;
1113
+ this._a("boxTypeCornerRadiusTopLeft", this.i.kq.c);
1114
+ this.i.kq = this.i.kq;
1115
1115
  }
1116
1116
  get boxTypeCornerRadiusTopRight() {
1117
- return this.i.m2 ? this.i.m2.d : NaN;
1117
+ return this.i.kq ? this.i.kq.d : NaN;
1118
1118
  }
1119
1119
  set boxTypeCornerRadiusTopRight(v) {
1120
1120
  this.ensureBoxTypeCornerRadius();
1121
- this.i.m2.d = +v;
1122
- this._a("boxTypeCornerRadiusTopRight", this.i.m2.d);
1123
- this.i.m2 = this.i.m2;
1121
+ this.i.kq.d = +v;
1122
+ this._a("boxTypeCornerRadiusTopRight", this.i.kq.d);
1123
+ this.i.kq = this.i.kq;
1124
1124
  }
1125
1125
  ensureBoxTypeCornerRadius() {
1126
- if (this.i.m2) {
1126
+ if (this.i.kq) {
1127
1127
  return;
1128
1128
  }
1129
- this.i.m2 = new CornerRadius(2);
1129
+ this.i.kq = new CornerRadius(2);
1130
1130
  }
1131
1131
  get boxTypeContentPaddingBottom() {
1132
- return this.i.ti ? this.i.ti.bottom : NaN;
1132
+ return this.i.og ? this.i.og.bottom : NaN;
1133
1133
  }
1134
1134
  set boxTypeContentPaddingBottom(v) {
1135
1135
  this.ensureBoxTypeContentPadding();
1136
- this.i.ti.bottom = +v;
1137
- this._a("boxTypeContentPaddingBottom", this.i.ti.bottom);
1138
- this.i.ti = this.i.ti;
1136
+ this.i.og.bottom = +v;
1137
+ this._a("boxTypeContentPaddingBottom", this.i.og.bottom);
1138
+ this.i.og = this.i.og;
1139
1139
  }
1140
1140
  get boxTypeContentPaddingLeft() {
1141
- return this.i.ti ? this.i.ti.left : NaN;
1141
+ return this.i.og ? this.i.og.left : NaN;
1142
1142
  }
1143
1143
  set boxTypeContentPaddingLeft(v) {
1144
1144
  this.ensureBoxTypeContentPadding();
1145
- this.i.ti.left = +v;
1146
- this._a("boxTypeContentPaddingLeft", this.i.ti.left);
1147
- this.i.ti = this.i.ti;
1145
+ this.i.og.left = +v;
1146
+ this._a("boxTypeContentPaddingLeft", this.i.og.left);
1147
+ this.i.og = this.i.og;
1148
1148
  }
1149
1149
  get boxTypeContentPaddingRight() {
1150
- return this.i.ti ? this.i.ti.right : NaN;
1150
+ return this.i.og ? this.i.og.right : NaN;
1151
1151
  }
1152
1152
  set boxTypeContentPaddingRight(v) {
1153
1153
  this.ensureBoxTypeContentPadding();
1154
- this.i.ti.right = +v;
1155
- this._a("boxTypeContentPaddingRight", this.i.ti.right);
1156
- this.i.ti = this.i.ti;
1154
+ this.i.og.right = +v;
1155
+ this._a("boxTypeContentPaddingRight", this.i.og.right);
1156
+ this.i.og = this.i.og;
1157
1157
  }
1158
1158
  get boxTypeContentPaddingTop() {
1159
- return this.i.ti ? this.i.ti.top : NaN;
1159
+ return this.i.og ? this.i.og.top : NaN;
1160
1160
  }
1161
1161
  set boxTypeContentPaddingTop(v) {
1162
1162
  this.ensureBoxTypeContentPadding();
1163
- this.i.ti.top = +v;
1164
- this._a("boxTypeContentPaddingTop", this.i.ti.top);
1165
- this.i.ti = this.i.ti;
1163
+ this.i.og.top = +v;
1164
+ this._a("boxTypeContentPaddingTop", this.i.og.top);
1165
+ this.i.og = this.i.og;
1166
1166
  }
1167
1167
  ensureBoxTypeContentPadding() {
1168
- if (this.i.ti) {
1168
+ if (this.i.og) {
1169
1169
  return;
1170
1170
  }
1171
- this.i.ti = new Thickness(2);
1171
+ this.i.og = new Thickness(2);
1172
1172
  }
1173
1173
  /**
1174
1174
  * Gets or sets the width to use for the underline element when type is box.
1175
1175
  */
1176
1176
  get boxTypeUnderlineWidth() {
1177
- return this.i.c4;
1177
+ return this.i.da;
1178
1178
  }
1179
1179
  set boxTypeUnderlineWidth(v) {
1180
- this.i.c4 = +v;
1181
- this._a("boxTypeUnderlineWidth", this.i.c4);
1180
+ this.i.da = +v;
1181
+ this._a("boxTypeUnderlineWidth", this.i.da);
1182
1182
  }
1183
1183
  /**
1184
1184
  * Gets or sets the width to use for the underline element when type is box.
1185
1185
  */
1186
1186
  get boxTypeUnderlineRippleWidth() {
1187
- return this.i.c3;
1187
+ return this.i.c9;
1188
1188
  }
1189
1189
  set boxTypeUnderlineRippleWidth(v) {
1190
- this.i.c3 = +v;
1191
- this._a("boxTypeUnderlineRippleWidth", this.i.c3);
1190
+ this.i.c9 = +v;
1191
+ this._a("boxTypeUnderlineRippleWidth", this.i.c9);
1192
1192
  }
1193
1193
  /**
1194
1194
  * Gets or sets the width to use for the underline element when hovered when type is box.
1195
1195
  */
1196
1196
  get boxTypeHoverUnderlineWidth() {
1197
- return this.i.c0;
1197
+ return this.i.c6;
1198
1198
  }
1199
1199
  set boxTypeHoverUnderlineWidth(v) {
1200
- this.i.c0 = +v;
1201
- this._a("boxTypeHoverUnderlineWidth", this.i.c0);
1200
+ this.i.c6 = +v;
1201
+ this._a("boxTypeHoverUnderlineWidth", this.i.c6);
1202
1202
  }
1203
1203
  /**
1204
1204
  * Gets or sets the color to use for the underline element when type is box.
1205
1205
  */
1206
1206
  get boxTypeUnderlineColor() {
1207
- return brushToString(this.i.pd);
1207
+ return brushToString(this.i.mq);
1208
1208
  }
1209
1209
  set boxTypeUnderlineColor(v) {
1210
- this.i.pd = stringToBrush(v);
1211
- this._a("boxTypeUnderlineColor", brushToString(this.i.pd));
1210
+ this.i.mq = stringToBrush(v);
1211
+ this._a("boxTypeUnderlineColor", brushToString(this.i.mq));
1212
1212
  }
1213
1213
  /**
1214
1214
  * Gets or sets the color to use for the underline ripple element when type is box.
1215
1215
  */
1216
1216
  get boxTypeUnderlineRippleColor() {
1217
- return brushToString(this.i.pe);
1217
+ return brushToString(this.i.mr);
1218
1218
  }
1219
1219
  set boxTypeUnderlineRippleColor(v) {
1220
- this.i.pe = stringToBrush(v);
1221
- this._a("boxTypeUnderlineRippleColor", brushToString(this.i.pe));
1220
+ this.i.mr = stringToBrush(v);
1221
+ this._a("boxTypeUnderlineRippleColor", brushToString(this.i.mr));
1222
1222
  }
1223
1223
  /**
1224
1224
  * Gets or sets the color to use for the underline element when type is box.
1225
1225
  */
1226
1226
  get boxTypeHoverUnderlineColor() {
1227
- return brushToString(this.i.pc);
1227
+ return brushToString(this.i.mp);
1228
1228
  }
1229
1229
  set boxTypeHoverUnderlineColor(v) {
1230
- this.i.pc = stringToBrush(v);
1231
- this._a("boxTypeHoverUnderlineColor", brushToString(this.i.pc));
1230
+ this.i.mp = stringToBrush(v);
1231
+ this._a("boxTypeHoverUnderlineColor", brushToString(this.i.mp));
1232
1232
  }
1233
1233
  /**
1234
1234
  * Gets or sets the color to use for the underline element when type is box.
1235
1235
  */
1236
1236
  get boxTypeFocusUnderlineColor() {
1237
- return brushToString(this.i.pb);
1237
+ return brushToString(this.i.mo);
1238
1238
  }
1239
1239
  set boxTypeFocusUnderlineColor(v) {
1240
- this.i.pb = stringToBrush(v);
1241
- this._a("boxTypeFocusUnderlineColor", brushToString(this.i.pb));
1240
+ this.i.mo = stringToBrush(v);
1241
+ this._a("boxTypeFocusUnderlineColor", brushToString(this.i.mo));
1242
1242
  }
1243
1243
  /**
1244
1244
  * Gets or sets the color to use for the underline element when type is box.
1245
1245
  */
1246
1246
  get boxTypeUnderlineOpacity() {
1247
- return this.i.c1;
1247
+ return this.i.c7;
1248
1248
  }
1249
1249
  set boxTypeUnderlineOpacity(v) {
1250
- this.i.c1 = +v;
1251
- this._a("boxTypeUnderlineOpacity", this.i.c1);
1250
+ this.i.c7 = +v;
1251
+ this._a("boxTypeUnderlineOpacity", this.i.c7);
1252
1252
  }
1253
1253
  /**
1254
1254
  * Gets or sets the color to use for the underline element when type is box.
1255
1255
  */
1256
1256
  get boxTypeHoverUnderlineOpacity() {
1257
- return this.i.cz;
1257
+ return this.i.c5;
1258
1258
  }
1259
1259
  set boxTypeHoverUnderlineOpacity(v) {
1260
- this.i.cz = +v;
1261
- this._a("boxTypeHoverUnderlineOpacity", this.i.cz);
1260
+ this.i.c5 = +v;
1261
+ this._a("boxTypeHoverUnderlineOpacity", this.i.c5);
1262
1262
  }
1263
1263
  /**
1264
1264
  * Gets or sets the color to use for the underline element when type is box.
1265
1265
  */
1266
1266
  get boxTypeFocusUnderlineOpacity() {
1267
- return this.i.cx;
1267
+ return this.i.c3;
1268
1268
  }
1269
1269
  set boxTypeFocusUnderlineOpacity(v) {
1270
- this.i.cx = +v;
1271
- this._a("boxTypeFocusUnderlineOpacity", this.i.cx);
1270
+ this.i.c3 = +v;
1271
+ this._a("boxTypeFocusUnderlineOpacity", this.i.c3);
1272
1272
  }
1273
1273
  /**
1274
1274
  * Gets or sets the opacity to use for the underline ripple element when focused when type is box.
1275
1275
  */
1276
1276
  get boxTypeFocusUnderlineRippleOpacity() {
1277
- return this.i.cy;
1277
+ return this.i.c4;
1278
1278
  }
1279
1279
  set boxTypeFocusUnderlineRippleOpacity(v) {
1280
- this.i.cy = +v;
1281
- this._a("boxTypeFocusUnderlineRippleOpacity", this.i.cy);
1280
+ this.i.c4 = +v;
1281
+ this._a("boxTypeFocusUnderlineRippleOpacity", this.i.c4);
1282
1282
  }
1283
1283
  /**
1284
1284
  * Gets or sets the opacity to use for the underline ripple element when type is box.
1285
1285
  */
1286
1286
  get boxTypeUnderlineRippleOpacity() {
1287
- return this.i.c2;
1287
+ return this.i.c8;
1288
1288
  }
1289
1289
  set boxTypeUnderlineRippleOpacity(v) {
1290
- this.i.c2 = +v;
1291
- this._a("boxTypeUnderlineRippleOpacity", this.i.c2);
1290
+ this.i.c8 = +v;
1291
+ this._a("boxTypeUnderlineRippleOpacity", this.i.c8);
1292
1292
  }
1293
1293
  /**
1294
1294
  * Gets or sets the background color to use for the input group when type is box.
1295
1295
  */
1296
1296
  get boxTypeBackgroundColor() {
1297
- return brushToString(this.i.o8);
1297
+ return brushToString(this.i.ml);
1298
1298
  }
1299
1299
  set boxTypeBackgroundColor(v) {
1300
- this.i.o8 = stringToBrush(v);
1301
- this._a("boxTypeBackgroundColor", brushToString(this.i.o8));
1300
+ this.i.ml = stringToBrush(v);
1301
+ this._a("boxTypeBackgroundColor", brushToString(this.i.ml));
1302
1302
  }
1303
1303
  /**
1304
1304
  * Gets or sets the border width to use for the border of the item group when using type line.
1305
1305
  */
1306
1306
  get borderTypeBorderWidth() {
1307
- return this.i.ck;
1307
+ return this.i.cq;
1308
1308
  }
1309
1309
  set borderTypeBorderWidth(v) {
1310
- this.i.ck = +v;
1311
- this._a("borderTypeBorderWidth", this.i.ck);
1310
+ this.i.cq = +v;
1311
+ this._a("borderTypeBorderWidth", this.i.cq);
1312
1312
  }
1313
1313
  /**
1314
1314
  * Gets or sets the border width to use for the border of the item group when focused when type is border.
1315
1315
  */
1316
1316
  get borderTypeFocusBorderWidth() {
1317
- return this.i.cl;
1317
+ return this.i.cr;
1318
1318
  }
1319
1319
  set borderTypeFocusBorderWidth(v) {
1320
- this.i.cl = +v;
1321
- this._a("borderTypeFocusBorderWidth", this.i.cl);
1320
+ this.i.cr = +v;
1321
+ this._a("borderTypeFocusBorderWidth", this.i.cr);
1322
1322
  }
1323
1323
  /**
1324
1324
  * Gets or sets the focus color to use the border of the input group when type is border.
1325
1325
  */
1326
1326
  get borderTypeFocusBorderColor() {
1327
- return brushToString(this.i.o3);
1327
+ return brushToString(this.i.mg);
1328
1328
  }
1329
1329
  set borderTypeFocusBorderColor(v) {
1330
- this.i.o3 = stringToBrush(v);
1331
- this._a("borderTypeFocusBorderColor", brushToString(this.i.o3));
1330
+ this.i.mg = stringToBrush(v);
1331
+ this._a("borderTypeFocusBorderColor", brushToString(this.i.mg));
1332
1332
  }
1333
1333
  /**
1334
1334
  * Gets or sets the color to use the border of the input group when type is border.
1335
1335
  */
1336
1336
  get borderTypeBorderColor() {
1337
- return brushToString(this.i.o2);
1337
+ return brushToString(this.i.mf);
1338
1338
  }
1339
1339
  set borderTypeBorderColor(v) {
1340
- this.i.o2 = stringToBrush(v);
1341
- this._a("borderTypeBorderColor", brushToString(this.i.o2));
1340
+ this.i.mf = stringToBrush(v);
1341
+ this._a("borderTypeBorderColor", brushToString(this.i.mf));
1342
1342
  }
1343
1343
  get borderTypeCornerRadiusBottomRight() {
1344
- return this.i.m1 ? this.i.m1.b : NaN;
1344
+ return this.i.kp ? this.i.kp.b : NaN;
1345
1345
  }
1346
1346
  set borderTypeCornerRadiusBottomRight(v) {
1347
1347
  this.ensureBorderTypeCornerRadius();
1348
- this.i.m1.b = +v;
1349
- this._a("borderTypeCornerRadiusBottomRight", this.i.m1.b);
1350
- this.i.m1 = this.i.m1;
1348
+ this.i.kp.b = +v;
1349
+ this._a("borderTypeCornerRadiusBottomRight", this.i.kp.b);
1350
+ this.i.kp = this.i.kp;
1351
1351
  }
1352
1352
  get borderTypeCornerRadiusBottomLeft() {
1353
- return this.i.m1 ? this.i.m1.a : NaN;
1353
+ return this.i.kp ? this.i.kp.a : NaN;
1354
1354
  }
1355
1355
  set borderTypeCornerRadiusBottomLeft(v) {
1356
1356
  this.ensureBorderTypeCornerRadius();
1357
- this.i.m1.a = +v;
1358
- this._a("borderTypeCornerRadiusBottomLeft", this.i.m1.a);
1359
- this.i.m1 = this.i.m1;
1357
+ this.i.kp.a = +v;
1358
+ this._a("borderTypeCornerRadiusBottomLeft", this.i.kp.a);
1359
+ this.i.kp = this.i.kp;
1360
1360
  }
1361
1361
  get borderTypeCornerRadiusTopLeft() {
1362
- return this.i.m1 ? this.i.m1.c : NaN;
1362
+ return this.i.kp ? this.i.kp.c : NaN;
1363
1363
  }
1364
1364
  set borderTypeCornerRadiusTopLeft(v) {
1365
1365
  this.ensureBorderTypeCornerRadius();
1366
- this.i.m1.c = +v;
1367
- this._a("borderTypeCornerRadiusTopLeft", this.i.m1.c);
1368
- this.i.m1 = this.i.m1;
1366
+ this.i.kp.c = +v;
1367
+ this._a("borderTypeCornerRadiusTopLeft", this.i.kp.c);
1368
+ this.i.kp = this.i.kp;
1369
1369
  }
1370
1370
  get borderTypeCornerRadiusTopRight() {
1371
- return this.i.m1 ? this.i.m1.d : NaN;
1371
+ return this.i.kp ? this.i.kp.d : NaN;
1372
1372
  }
1373
1373
  set borderTypeCornerRadiusTopRight(v) {
1374
1374
  this.ensureBorderTypeCornerRadius();
1375
- this.i.m1.d = +v;
1376
- this._a("borderTypeCornerRadiusTopRight", this.i.m1.d);
1377
- this.i.m1 = this.i.m1;
1375
+ this.i.kp.d = +v;
1376
+ this._a("borderTypeCornerRadiusTopRight", this.i.kp.d);
1377
+ this.i.kp = this.i.kp;
1378
1378
  }
1379
1379
  ensureBorderTypeCornerRadius() {
1380
- if (this.i.m1) {
1380
+ if (this.i.kp) {
1381
1381
  return;
1382
1382
  }
1383
- this.i.m1 = new CornerRadius(2);
1383
+ this.i.kp = new CornerRadius(2);
1384
1384
  }
1385
1385
  get borderTypeContentPaddingBottom() {
1386
- return this.i.th ? this.i.th.bottom : NaN;
1386
+ return this.i.of ? this.i.of.bottom : NaN;
1387
1387
  }
1388
1388
  set borderTypeContentPaddingBottom(v) {
1389
1389
  this.ensureBorderTypeContentPadding();
1390
- this.i.th.bottom = +v;
1391
- this._a("borderTypeContentPaddingBottom", this.i.th.bottom);
1392
- this.i.th = this.i.th;
1390
+ this.i.of.bottom = +v;
1391
+ this._a("borderTypeContentPaddingBottom", this.i.of.bottom);
1392
+ this.i.of = this.i.of;
1393
1393
  }
1394
1394
  get borderTypeContentPaddingLeft() {
1395
- return this.i.th ? this.i.th.left : NaN;
1395
+ return this.i.of ? this.i.of.left : NaN;
1396
1396
  }
1397
1397
  set borderTypeContentPaddingLeft(v) {
1398
1398
  this.ensureBorderTypeContentPadding();
1399
- this.i.th.left = +v;
1400
- this._a("borderTypeContentPaddingLeft", this.i.th.left);
1401
- this.i.th = this.i.th;
1399
+ this.i.of.left = +v;
1400
+ this._a("borderTypeContentPaddingLeft", this.i.of.left);
1401
+ this.i.of = this.i.of;
1402
1402
  }
1403
1403
  get borderTypeContentPaddingRight() {
1404
- return this.i.th ? this.i.th.right : NaN;
1404
+ return this.i.of ? this.i.of.right : NaN;
1405
1405
  }
1406
1406
  set borderTypeContentPaddingRight(v) {
1407
1407
  this.ensureBorderTypeContentPadding();
1408
- this.i.th.right = +v;
1409
- this._a("borderTypeContentPaddingRight", this.i.th.right);
1410
- this.i.th = this.i.th;
1408
+ this.i.of.right = +v;
1409
+ this._a("borderTypeContentPaddingRight", this.i.of.right);
1410
+ this.i.of = this.i.of;
1411
1411
  }
1412
1412
  get borderTypeContentPaddingTop() {
1413
- return this.i.th ? this.i.th.top : NaN;
1413
+ return this.i.of ? this.i.of.top : NaN;
1414
1414
  }
1415
1415
  set borderTypeContentPaddingTop(v) {
1416
1416
  this.ensureBorderTypeContentPadding();
1417
- this.i.th.top = +v;
1418
- this._a("borderTypeContentPaddingTop", this.i.th.top);
1419
- this.i.th = this.i.th;
1417
+ this.i.of.top = +v;
1418
+ this._a("borderTypeContentPaddingTop", this.i.of.top);
1419
+ this.i.of = this.i.of;
1420
1420
  }
1421
1421
  ensureBorderTypeContentPadding() {
1422
- if (this.i.th) {
1422
+ if (this.i.of) {
1423
1423
  return;
1424
1424
  }
1425
- this.i.th = new Thickness(2);
1425
+ this.i.of = new Thickness(2);
1426
1426
  }
1427
1427
  /**
1428
1428
  * Gets or sets the width to use for the underline element when type is border.
1429
1429
  */
1430
1430
  get borderTypeUnderlineWidth() {
1431
- return this.i.ct;
1431
+ return this.i.cz;
1432
1432
  }
1433
1433
  set borderTypeUnderlineWidth(v) {
1434
- this.i.ct = +v;
1435
- this._a("borderTypeUnderlineWidth", this.i.ct);
1434
+ this.i.cz = +v;
1435
+ this._a("borderTypeUnderlineWidth", this.i.cz);
1436
1436
  }
1437
1437
  /**
1438
1438
  * Gets or sets the width to use for the underline element when type is border.
1439
1439
  */
1440
1440
  get borderTypeUnderlineRippleWidth() {
1441
- return this.i.cs;
1441
+ return this.i.cy;
1442
1442
  }
1443
1443
  set borderTypeUnderlineRippleWidth(v) {
1444
- this.i.cs = +v;
1445
- this._a("borderTypeUnderlineRippleWidth", this.i.cs);
1444
+ this.i.cy = +v;
1445
+ this._a("borderTypeUnderlineRippleWidth", this.i.cy);
1446
1446
  }
1447
1447
  /**
1448
1448
  * Gets or sets the width to use for the underline element when hovered when type is border.
1449
1449
  */
1450
1450
  get borderTypeHoverUnderlineWidth() {
1451
- return this.i.cp;
1451
+ return this.i.cv;
1452
1452
  }
1453
1453
  set borderTypeHoverUnderlineWidth(v) {
1454
- this.i.cp = +v;
1455
- this._a("borderTypeHoverUnderlineWidth", this.i.cp);
1454
+ this.i.cv = +v;
1455
+ this._a("borderTypeHoverUnderlineWidth", this.i.cv);
1456
1456
  }
1457
1457
  /**
1458
1458
  * Gets or sets the color to use for the underline element when type is border.
1459
1459
  */
1460
1460
  get borderTypeUnderlineColor() {
1461
- return brushToString(this.i.o6);
1461
+ return brushToString(this.i.mj);
1462
1462
  }
1463
1463
  set borderTypeUnderlineColor(v) {
1464
- this.i.o6 = stringToBrush(v);
1465
- this._a("borderTypeUnderlineColor", brushToString(this.i.o6));
1464
+ this.i.mj = stringToBrush(v);
1465
+ this._a("borderTypeUnderlineColor", brushToString(this.i.mj));
1466
1466
  }
1467
1467
  /**
1468
1468
  * Gets or sets the color to use for the underline ripple element when type is border.
1469
1469
  */
1470
1470
  get borderTypeUnderlineRippleColor() {
1471
- return brushToString(this.i.o7);
1471
+ return brushToString(this.i.mk);
1472
1472
  }
1473
1473
  set borderTypeUnderlineRippleColor(v) {
1474
- this.i.o7 = stringToBrush(v);
1475
- this._a("borderTypeUnderlineRippleColor", brushToString(this.i.o7));
1474
+ this.i.mk = stringToBrush(v);
1475
+ this._a("borderTypeUnderlineRippleColor", brushToString(this.i.mk));
1476
1476
  }
1477
1477
  /**
1478
1478
  * Gets or sets the color to use for the underline element when type is border.
1479
1479
  */
1480
1480
  get borderTypeHoverUnderlineColor() {
1481
- return brushToString(this.i.o5);
1481
+ return brushToString(this.i.mi);
1482
1482
  }
1483
1483
  set borderTypeHoverUnderlineColor(v) {
1484
- this.i.o5 = stringToBrush(v);
1485
- this._a("borderTypeHoverUnderlineColor", brushToString(this.i.o5));
1484
+ this.i.mi = stringToBrush(v);
1485
+ this._a("borderTypeHoverUnderlineColor", brushToString(this.i.mi));
1486
1486
  }
1487
1487
  /**
1488
1488
  * Gets or sets the color to use for the underline element when type is border.
1489
1489
  */
1490
1490
  get borderTypeFocusUnderlineColor() {
1491
- return brushToString(this.i.o4);
1491
+ return brushToString(this.i.mh);
1492
1492
  }
1493
1493
  set borderTypeFocusUnderlineColor(v) {
1494
- this.i.o4 = stringToBrush(v);
1495
- this._a("borderTypeFocusUnderlineColor", brushToString(this.i.o4));
1494
+ this.i.mh = stringToBrush(v);
1495
+ this._a("borderTypeFocusUnderlineColor", brushToString(this.i.mh));
1496
1496
  }
1497
1497
  /**
1498
1498
  * Gets or sets the color to use for the underline element when type is border.
1499
1499
  */
1500
1500
  get borderTypeUnderlineOpacity() {
1501
- return this.i.cq;
1501
+ return this.i.cw;
1502
1502
  }
1503
1503
  set borderTypeUnderlineOpacity(v) {
1504
- this.i.cq = +v;
1505
- this._a("borderTypeUnderlineOpacity", this.i.cq);
1504
+ this.i.cw = +v;
1505
+ this._a("borderTypeUnderlineOpacity", this.i.cw);
1506
1506
  }
1507
1507
  /**
1508
1508
  * Gets or sets the color to use for the underline element when type is border.
1509
1509
  */
1510
1510
  get borderTypeHoverUnderlineOpacity() {
1511
- return this.i.co;
1511
+ return this.i.cu;
1512
1512
  }
1513
1513
  set borderTypeHoverUnderlineOpacity(v) {
1514
- this.i.co = +v;
1515
- this._a("borderTypeHoverUnderlineOpacity", this.i.co);
1514
+ this.i.cu = +v;
1515
+ this._a("borderTypeHoverUnderlineOpacity", this.i.cu);
1516
1516
  }
1517
1517
  /**
1518
1518
  * Gets or sets the color to use for the underline element when type is border.
1519
1519
  */
1520
1520
  get borderTypeFocusUnderlineOpacity() {
1521
- return this.i.cm;
1521
+ return this.i.cs;
1522
1522
  }
1523
1523
  set borderTypeFocusUnderlineOpacity(v) {
1524
- this.i.cm = +v;
1525
- this._a("borderTypeFocusUnderlineOpacity", this.i.cm);
1524
+ this.i.cs = +v;
1525
+ this._a("borderTypeFocusUnderlineOpacity", this.i.cs);
1526
1526
  }
1527
1527
  /**
1528
1528
  * Gets or sets the opacity to use for the underline ripple element when focused when type is border.
1529
1529
  */
1530
1530
  get borderTypeFocusUnderlineRippleOpacity() {
1531
- return this.i.cn;
1531
+ return this.i.ct;
1532
1532
  }
1533
1533
  set borderTypeFocusUnderlineRippleOpacity(v) {
1534
- this.i.cn = +v;
1535
- this._a("borderTypeFocusUnderlineRippleOpacity", this.i.cn);
1534
+ this.i.ct = +v;
1535
+ this._a("borderTypeFocusUnderlineRippleOpacity", this.i.ct);
1536
1536
  }
1537
1537
  /**
1538
1538
  * Gets or sets the opacity to use for the underline ripple element when type is border.
1539
1539
  */
1540
1540
  get borderTypeUnderlineRippleOpacity() {
1541
- return this.i.cr;
1541
+ return this.i.cx;
1542
1542
  }
1543
1543
  set borderTypeUnderlineRippleOpacity(v) {
1544
- this.i.cr = +v;
1545
- this._a("borderTypeUnderlineRippleOpacity", this.i.cr);
1544
+ this.i.cx = +v;
1545
+ this._a("borderTypeUnderlineRippleOpacity", this.i.cx);
1546
1546
  }
1547
1547
  /**
1548
1548
  * Gets or sets the background color to use for the input group when type is border.
1549
1549
  */
1550
1550
  get borderTypeBackgroundColor() {
1551
- return brushToString(this.i.o1);
1551
+ return brushToString(this.i.me);
1552
1552
  }
1553
1553
  set borderTypeBackgroundColor(v) {
1554
- this.i.o1 = stringToBrush(v);
1555
- this._a("borderTypeBackgroundColor", brushToString(this.i.o1));
1554
+ this.i.me = stringToBrush(v);
1555
+ this._a("borderTypeBackgroundColor", brushToString(this.i.me));
1556
1556
  }
1557
1557
  /**
1558
1558
  * Gets or sets the search width to use for the border of the item group when using type line.
1559
1559
  */
1560
1560
  get searchTypeBorderWidth() {
1561
- return this.i.hr;
1561
+ return this.i.ev;
1562
1562
  }
1563
1563
  set searchTypeBorderWidth(v) {
1564
- this.i.hr = +v;
1565
- this._a("searchTypeBorderWidth", this.i.hr);
1564
+ this.i.ev = +v;
1565
+ this._a("searchTypeBorderWidth", this.i.ev);
1566
1566
  }
1567
1567
  /**
1568
1568
  * Gets or sets the search width to use for the border of the item group when focused when type is search.
1569
1569
  */
1570
1570
  get searchTypeFocusBorderWidth() {
1571
- return this.i.hs;
1571
+ return this.i.ew;
1572
1572
  }
1573
1573
  set searchTypeFocusBorderWidth(v) {
1574
- this.i.hs = +v;
1575
- this._a("searchTypeFocusBorderWidth", this.i.hs);
1574
+ this.i.ew = +v;
1575
+ this._a("searchTypeFocusBorderWidth", this.i.ew);
1576
1576
  }
1577
1577
  /**
1578
1578
  * Gets or sets the focus color to use the search of the input group when type is search.
1579
1579
  */
1580
1580
  get searchTypeFocusBorderColor() {
1581
- return brushToString(this.i.s3);
1581
+ return brushToString(this.i.n0);
1582
1582
  }
1583
1583
  set searchTypeFocusBorderColor(v) {
1584
- this.i.s3 = stringToBrush(v);
1585
- this._a("searchTypeFocusBorderColor", brushToString(this.i.s3));
1584
+ this.i.n0 = stringToBrush(v);
1585
+ this._a("searchTypeFocusBorderColor", brushToString(this.i.n0));
1586
1586
  }
1587
1587
  /**
1588
1588
  * Gets or sets the color to use the search of the input group when type is search.
1589
1589
  */
1590
1590
  get searchTypeBorderColor() {
1591
- return brushToString(this.i.s2);
1591
+ return brushToString(this.i.nz);
1592
1592
  }
1593
1593
  set searchTypeBorderColor(v) {
1594
- this.i.s2 = stringToBrush(v);
1595
- this._a("searchTypeBorderColor", brushToString(this.i.s2));
1594
+ this.i.nz = stringToBrush(v);
1595
+ this._a("searchTypeBorderColor", brushToString(this.i.nz));
1596
1596
  }
1597
1597
  get searchTypeCornerRadiusBottomRight() {
1598
- return this.i.nl ? this.i.nl.b : NaN;
1598
+ return this.i.ky ? this.i.ky.b : NaN;
1599
1599
  }
1600
1600
  set searchTypeCornerRadiusBottomRight(v) {
1601
1601
  this.ensureSearchTypeCornerRadius();
1602
- this.i.nl.b = +v;
1603
- this._a("searchTypeCornerRadiusBottomRight", this.i.nl.b);
1604
- this.i.nl = this.i.nl;
1602
+ this.i.ky.b = +v;
1603
+ this._a("searchTypeCornerRadiusBottomRight", this.i.ky.b);
1604
+ this.i.ky = this.i.ky;
1605
1605
  }
1606
1606
  get searchTypeCornerRadiusBottomLeft() {
1607
- return this.i.nl ? this.i.nl.a : NaN;
1607
+ return this.i.ky ? this.i.ky.a : NaN;
1608
1608
  }
1609
1609
  set searchTypeCornerRadiusBottomLeft(v) {
1610
1610
  this.ensureSearchTypeCornerRadius();
1611
- this.i.nl.a = +v;
1612
- this._a("searchTypeCornerRadiusBottomLeft", this.i.nl.a);
1613
- this.i.nl = this.i.nl;
1611
+ this.i.ky.a = +v;
1612
+ this._a("searchTypeCornerRadiusBottomLeft", this.i.ky.a);
1613
+ this.i.ky = this.i.ky;
1614
1614
  }
1615
1615
  get searchTypeCornerRadiusTopLeft() {
1616
- return this.i.nl ? this.i.nl.c : NaN;
1616
+ return this.i.ky ? this.i.ky.c : NaN;
1617
1617
  }
1618
1618
  set searchTypeCornerRadiusTopLeft(v) {
1619
1619
  this.ensureSearchTypeCornerRadius();
1620
- this.i.nl.c = +v;
1621
- this._a("searchTypeCornerRadiusTopLeft", this.i.nl.c);
1622
- this.i.nl = this.i.nl;
1620
+ this.i.ky.c = +v;
1621
+ this._a("searchTypeCornerRadiusTopLeft", this.i.ky.c);
1622
+ this.i.ky = this.i.ky;
1623
1623
  }
1624
1624
  get searchTypeCornerRadiusTopRight() {
1625
- return this.i.nl ? this.i.nl.d : NaN;
1625
+ return this.i.ky ? this.i.ky.d : NaN;
1626
1626
  }
1627
1627
  set searchTypeCornerRadiusTopRight(v) {
1628
1628
  this.ensureSearchTypeCornerRadius();
1629
- this.i.nl.d = +v;
1630
- this._a("searchTypeCornerRadiusTopRight", this.i.nl.d);
1631
- this.i.nl = this.i.nl;
1629
+ this.i.ky.d = +v;
1630
+ this._a("searchTypeCornerRadiusTopRight", this.i.ky.d);
1631
+ this.i.ky = this.i.ky;
1632
1632
  }
1633
1633
  ensureSearchTypeCornerRadius() {
1634
- if (this.i.nl) {
1634
+ if (this.i.ky) {
1635
1635
  return;
1636
1636
  }
1637
- this.i.nl = new CornerRadius(2);
1637
+ this.i.ky = new CornerRadius(2);
1638
1638
  }
1639
1639
  get searchTypeContentPaddingBottom() {
1640
- return this.i.t1 ? this.i.t1.bottom : NaN;
1640
+ return this.i.oo ? this.i.oo.bottom : NaN;
1641
1641
  }
1642
1642
  set searchTypeContentPaddingBottom(v) {
1643
1643
  this.ensureSearchTypeContentPadding();
1644
- this.i.t1.bottom = +v;
1645
- this._a("searchTypeContentPaddingBottom", this.i.t1.bottom);
1646
- this.i.t1 = this.i.t1;
1644
+ this.i.oo.bottom = +v;
1645
+ this._a("searchTypeContentPaddingBottom", this.i.oo.bottom);
1646
+ this.i.oo = this.i.oo;
1647
1647
  }
1648
1648
  get searchTypeContentPaddingLeft() {
1649
- return this.i.t1 ? this.i.t1.left : NaN;
1649
+ return this.i.oo ? this.i.oo.left : NaN;
1650
1650
  }
1651
1651
  set searchTypeContentPaddingLeft(v) {
1652
1652
  this.ensureSearchTypeContentPadding();
1653
- this.i.t1.left = +v;
1654
- this._a("searchTypeContentPaddingLeft", this.i.t1.left);
1655
- this.i.t1 = this.i.t1;
1653
+ this.i.oo.left = +v;
1654
+ this._a("searchTypeContentPaddingLeft", this.i.oo.left);
1655
+ this.i.oo = this.i.oo;
1656
1656
  }
1657
1657
  get searchTypeContentPaddingRight() {
1658
- return this.i.t1 ? this.i.t1.right : NaN;
1658
+ return this.i.oo ? this.i.oo.right : NaN;
1659
1659
  }
1660
1660
  set searchTypeContentPaddingRight(v) {
1661
1661
  this.ensureSearchTypeContentPadding();
1662
- this.i.t1.right = +v;
1663
- this._a("searchTypeContentPaddingRight", this.i.t1.right);
1664
- this.i.t1 = this.i.t1;
1662
+ this.i.oo.right = +v;
1663
+ this._a("searchTypeContentPaddingRight", this.i.oo.right);
1664
+ this.i.oo = this.i.oo;
1665
1665
  }
1666
1666
  get searchTypeContentPaddingTop() {
1667
- return this.i.t1 ? this.i.t1.top : NaN;
1667
+ return this.i.oo ? this.i.oo.top : NaN;
1668
1668
  }
1669
1669
  set searchTypeContentPaddingTop(v) {
1670
1670
  this.ensureSearchTypeContentPadding();
1671
- this.i.t1.top = +v;
1672
- this._a("searchTypeContentPaddingTop", this.i.t1.top);
1673
- this.i.t1 = this.i.t1;
1671
+ this.i.oo.top = +v;
1672
+ this._a("searchTypeContentPaddingTop", this.i.oo.top);
1673
+ this.i.oo = this.i.oo;
1674
1674
  }
1675
1675
  ensureSearchTypeContentPadding() {
1676
- if (this.i.t1) {
1676
+ if (this.i.oo) {
1677
1677
  return;
1678
1678
  }
1679
- this.i.t1 = new Thickness(2);
1679
+ this.i.oo = new Thickness(2);
1680
1680
  }
1681
1681
  /**
1682
1682
  * Gets or sets the width to use for the underline element when type is search.
1683
1683
  */
1684
1684
  get searchTypeUnderlineWidth() {
1685
- return this.i.h0;
1685
+ return this.i.e4;
1686
1686
  }
1687
1687
  set searchTypeUnderlineWidth(v) {
1688
- this.i.h0 = +v;
1689
- this._a("searchTypeUnderlineWidth", this.i.h0);
1688
+ this.i.e4 = +v;
1689
+ this._a("searchTypeUnderlineWidth", this.i.e4);
1690
1690
  }
1691
1691
  /**
1692
1692
  * Gets or sets the width to use for the underline element when type is search.
1693
1693
  */
1694
1694
  get searchTypeUnderlineRippleWidth() {
1695
- return this.i.hz;
1695
+ return this.i.e3;
1696
1696
  }
1697
1697
  set searchTypeUnderlineRippleWidth(v) {
1698
- this.i.hz = +v;
1699
- this._a("searchTypeUnderlineRippleWidth", this.i.hz);
1698
+ this.i.e3 = +v;
1699
+ this._a("searchTypeUnderlineRippleWidth", this.i.e3);
1700
1700
  }
1701
1701
  /**
1702
1702
  * Gets or sets the width to use for the underline element when hovered when type is search.
1703
1703
  */
1704
1704
  get searchTypeHoverUnderlineWidth() {
1705
- return this.i.hw;
1705
+ return this.i.e0;
1706
1706
  }
1707
1707
  set searchTypeHoverUnderlineWidth(v) {
1708
- this.i.hw = +v;
1709
- this._a("searchTypeHoverUnderlineWidth", this.i.hw);
1708
+ this.i.e0 = +v;
1709
+ this._a("searchTypeHoverUnderlineWidth", this.i.e0);
1710
1710
  }
1711
1711
  /**
1712
1712
  * Gets or sets the color to use for the underline element when type is search.
1713
1713
  */
1714
1714
  get searchTypeUnderlineColor() {
1715
- return brushToString(this.i.s6);
1715
+ return brushToString(this.i.n3);
1716
1716
  }
1717
1717
  set searchTypeUnderlineColor(v) {
1718
- this.i.s6 = stringToBrush(v);
1719
- this._a("searchTypeUnderlineColor", brushToString(this.i.s6));
1718
+ this.i.n3 = stringToBrush(v);
1719
+ this._a("searchTypeUnderlineColor", brushToString(this.i.n3));
1720
1720
  }
1721
1721
  /**
1722
1722
  * Gets or sets the color to use for the underline ripple element when type is search.
1723
1723
  */
1724
1724
  get searchTypeUnderlineRippleColor() {
1725
- return brushToString(this.i.s7);
1725
+ return brushToString(this.i.n4);
1726
1726
  }
1727
1727
  set searchTypeUnderlineRippleColor(v) {
1728
- this.i.s7 = stringToBrush(v);
1729
- this._a("searchTypeUnderlineRippleColor", brushToString(this.i.s7));
1728
+ this.i.n4 = stringToBrush(v);
1729
+ this._a("searchTypeUnderlineRippleColor", brushToString(this.i.n4));
1730
1730
  }
1731
1731
  /**
1732
1732
  * Gets or sets the color to use for the underline element when type is search.
1733
1733
  */
1734
1734
  get searchTypeHoverUnderlineColor() {
1735
- return brushToString(this.i.s5);
1735
+ return brushToString(this.i.n2);
1736
1736
  }
1737
1737
  set searchTypeHoverUnderlineColor(v) {
1738
- this.i.s5 = stringToBrush(v);
1739
- this._a("searchTypeHoverUnderlineColor", brushToString(this.i.s5));
1738
+ this.i.n2 = stringToBrush(v);
1739
+ this._a("searchTypeHoverUnderlineColor", brushToString(this.i.n2));
1740
1740
  }
1741
1741
  /**
1742
1742
  * Gets or sets the color to use for the underline element when type is search.
1743
1743
  */
1744
1744
  get searchTypeFocusUnderlineColor() {
1745
- return brushToString(this.i.s4);
1745
+ return brushToString(this.i.n1);
1746
1746
  }
1747
1747
  set searchTypeFocusUnderlineColor(v) {
1748
- this.i.s4 = stringToBrush(v);
1749
- this._a("searchTypeFocusUnderlineColor", brushToString(this.i.s4));
1748
+ this.i.n1 = stringToBrush(v);
1749
+ this._a("searchTypeFocusUnderlineColor", brushToString(this.i.n1));
1750
1750
  }
1751
1751
  /**
1752
1752
  * Gets or sets the color to use for the underline element when type is search.
1753
1753
  */
1754
1754
  get searchTypeUnderlineOpacity() {
1755
- return this.i.hx;
1755
+ return this.i.e1;
1756
1756
  }
1757
1757
  set searchTypeUnderlineOpacity(v) {
1758
- this.i.hx = +v;
1759
- this._a("searchTypeUnderlineOpacity", this.i.hx);
1758
+ this.i.e1 = +v;
1759
+ this._a("searchTypeUnderlineOpacity", this.i.e1);
1760
1760
  }
1761
1761
  /**
1762
1762
  * Gets or sets the color to use for the underline element when type is search.
1763
1763
  */
1764
1764
  get searchTypeHoverUnderlineOpacity() {
1765
- return this.i.hv;
1765
+ return this.i.ez;
1766
1766
  }
1767
1767
  set searchTypeHoverUnderlineOpacity(v) {
1768
- this.i.hv = +v;
1769
- this._a("searchTypeHoverUnderlineOpacity", this.i.hv);
1768
+ this.i.ez = +v;
1769
+ this._a("searchTypeHoverUnderlineOpacity", this.i.ez);
1770
1770
  }
1771
1771
  /**
1772
1772
  * Gets or sets the color to use for the underline element when type is search.
1773
1773
  */
1774
1774
  get searchTypeFocusUnderlineOpacity() {
1775
- return this.i.ht;
1775
+ return this.i.ex;
1776
1776
  }
1777
1777
  set searchTypeFocusUnderlineOpacity(v) {
1778
- this.i.ht = +v;
1779
- this._a("searchTypeFocusUnderlineOpacity", this.i.ht);
1778
+ this.i.ex = +v;
1779
+ this._a("searchTypeFocusUnderlineOpacity", this.i.ex);
1780
1780
  }
1781
1781
  /**
1782
1782
  * Gets or sets the opacity to use for the underline ripple element when focused when type is search.
1783
1783
  */
1784
1784
  get searchTypeFocusUnderlineRippleOpacity() {
1785
- return this.i.hu;
1785
+ return this.i.ey;
1786
1786
  }
1787
1787
  set searchTypeFocusUnderlineRippleOpacity(v) {
1788
- this.i.hu = +v;
1789
- this._a("searchTypeFocusUnderlineRippleOpacity", this.i.hu);
1788
+ this.i.ey = +v;
1789
+ this._a("searchTypeFocusUnderlineRippleOpacity", this.i.ey);
1790
1790
  }
1791
1791
  /**
1792
1792
  * Gets or sets the opacity to use for the underline ripple element when type is search.
1793
1793
  */
1794
1794
  get searchTypeUnderlineRippleOpacity() {
1795
- return this.i.hy;
1795
+ return this.i.e2;
1796
1796
  }
1797
1797
  set searchTypeUnderlineRippleOpacity(v) {
1798
- this.i.hy = +v;
1799
- this._a("searchTypeUnderlineRippleOpacity", this.i.hy);
1798
+ this.i.e2 = +v;
1799
+ this._a("searchTypeUnderlineRippleOpacity", this.i.e2);
1800
1800
  }
1801
1801
  /**
1802
1802
  * Gets or sets the background color to use for the input group when type is search.
1803
1803
  */
1804
1804
  get searchTypeBackgroundColor() {
1805
- return brushToString(this.i.s1);
1805
+ return brushToString(this.i.ny);
1806
1806
  }
1807
1807
  set searchTypeBackgroundColor(v) {
1808
- this.i.s1 = stringToBrush(v);
1809
- this._a("searchTypeBackgroundColor", brushToString(this.i.s1));
1808
+ this.i.ny = stringToBrush(v);
1809
+ this._a("searchTypeBackgroundColor", brushToString(this.i.ny));
1810
1810
  }
1811
1811
  /**
1812
1812
  * Gets or sets whether the input group is expanded or not.
1813
1813
  */
1814
1814
  get isExpanded() {
1815
- return this.i.ah;
1815
+ return this.i.an;
1816
1816
  }
1817
1817
  set isExpanded(v) {
1818
- this.i.ah = ensureBool(v);
1819
- this._a("isExpanded", this.i.ah);
1818
+ this.i.an = ensureBool(v);
1819
+ this._a("isExpanded", this.i.an);
1820
1820
  }
1821
1821
  /**
1822
1822
  * Gets or sets whether the input group is hovered or not.
1823
1823
  */
1824
1824
  get isHovered() {
1825
- return this.i.aj;
1825
+ return this.i.ap;
1826
1826
  }
1827
1827
  set isHovered(v) {
1828
- this.i.aj = ensureBool(v);
1829
- this._a("isHovered", this.i.aj);
1828
+ this.i.ap = ensureBool(v);
1829
+ this._a("isHovered", this.i.ap);
1830
1830
  }
1831
1831
  /**
1832
1832
  * Gets or sets whether the input group is hovered or not.
1833
1833
  */
1834
1834
  get isFocused() {
1835
- return this.i.ai;
1835
+ return this.i.ao;
1836
1836
  }
1837
1837
  set isFocused(v) {
1838
- this.i.ai = ensureBool(v);
1839
- this._a("isFocused", this.i.ai);
1838
+ this.i.ao = ensureBool(v);
1839
+ this._a("isFocused", this.i.ao);
1840
1840
  }
1841
1841
  /**
1842
1842
  * Gets or sets whether the input group is expanded or not.
1843
1843
  */
1844
1844
  get actualIsExpanded() {
1845
- return this.i.ac;
1845
+ return this.i.ai;
1846
1846
  }
1847
1847
  set actualIsExpanded(v) {
1848
- this.i.ac = ensureBool(v);
1849
- this._a("actualIsExpanded", this.i.ac);
1848
+ this.i.ai = ensureBool(v);
1849
+ this._a("actualIsExpanded", this.i.ai);
1850
1850
  }
1851
1851
  /**
1852
1852
  * Gets or sets the color to use the hovered background of the inputs in the group.
1853
1853
  */
1854
1854
  get focusBorderColor() {
1855
- return brushToString(this.i.sr);
1855
+ return brushToString(this.i.no);
1856
1856
  }
1857
1857
  set focusBorderColor(v) {
1858
- this.i.sr = stringToBrush(v);
1859
- this._a("focusBorderColor", brushToString(this.i.sr));
1858
+ this.i.no = stringToBrush(v);
1859
+ this._a("focusBorderColor", brushToString(this.i.no));
1860
1860
  }
1861
1861
  /**
1862
1862
  * Gets or sets the id to use for the checkbox.
1863
1863
  */
1864
1864
  get id() {
1865
- return this.i.ki;
1865
+ return this.i.hk;
1866
1866
  }
1867
1867
  set id(v) {
1868
- this.i.ki = v;
1868
+ this.i.hk = v;
1869
1869
  }
1870
1870
  /**
1871
1871
  * Gets or sets whether the checkbox is disabled.
@@ -1952,7 +1952,7 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
1952
1952
 
1953
1953
  */
1954
1954
  exportVisualModel() {
1955
- let iv = this.i.ia();
1955
+ let iv = this.i.fe();
1956
1956
  return (iv);
1957
1957
  }
1958
1958
  /**
@@ -1960,7 +1960,7 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
1960
1960
 
1961
1961
  */
1962
1962
  exportSerializedVisualModel() {
1963
- let iv = this.i.j9();
1963
+ let iv = this.i.hb();
1964
1964
  return (iv);
1965
1965
  }
1966
1966
  }