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
@@ -4,11 +4,12 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import { Base, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox } from "igniteui-webcomponents-core";
7
+ import { Base, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox, String_$type } from "igniteui-webcomponents-core";
8
8
  import { List$1 } from "igniteui-webcomponents-core";
9
9
  import { XRipple } from "./XRipple";
10
10
  import { NativeUI } from "igniteui-webcomponents-core";
11
11
  import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
12
+ import { HorizontalAlignment_$type } from "igniteui-webcomponents-core";
12
13
  import { KeyFrameAnimationFactory } from "igniteui-webcomponents-core";
13
14
  import { ElevationMode_$type } from "igniteui-webcomponents-core";
14
15
  import { ElevationHelper } from "./ElevationHelper";
@@ -16,15 +17,20 @@ import { ButtonDisplayStyle_$type } from "./ButtonDisplayStyle";
16
17
  import { isNaN_ } from "igniteui-webcomponents-core";
17
18
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
18
19
  import { CornerRadius } from "igniteui-webcomponents-core";
20
+ import { VerticalAlignment_$type } from "igniteui-webcomponents-core";
19
21
  import { AnimationKeyFrameEffectTiming } from "igniteui-webcomponents-core";
20
22
  import { ThemeResolver } from "./ThemeResolver";
21
23
  import { ButtonClickEventArgs } from "./ButtonClickEventArgs";
24
+ import { MouseEventArgs } from "igniteui-webcomponents-core";
25
+ import { FocusEventArgs } from "igniteui-webcomponents-core";
22
26
  import { Thickness } from "igniteui-webcomponents-core";
23
27
  import { BrushUtil } from "igniteui-webcomponents-core";
24
28
  import { ButtonVisualModelExport } from "./ButtonVisualModelExport";
25
29
  import { UIElementPropertyAccessorFactory } from "igniteui-webcomponents-core";
26
30
  import { AppearanceHelper } from "igniteui-webcomponents-core";
27
31
  import { FontUtil } from "igniteui-webcomponents-core";
32
+ import { Dictionary$2 } from "igniteui-webcomponents-core";
33
+ import { Theme } from "./Theme";
28
34
  /**
29
35
  * @hidden
30
36
  */
@@ -46,7 +52,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
46
52
  this.p = null;
47
53
  this.o = null;
48
54
  }
49
- ak() {
55
+ ao() {
50
56
  }
51
57
  g() {
52
58
  return true;
@@ -54,10 +60,10 @@ export let ButtonView = /*@__PURE__*/ (() => {
54
60
  get q() {
55
61
  return this.n;
56
62
  }
57
- get r() {
63
+ get s() {
58
64
  return this.m;
59
65
  }
60
- ae(a) {
66
+ ai(a) {
61
67
  if (a == null) {
62
68
  for (let b of fromEnum(this.h)) {
63
69
  b();
@@ -76,7 +82,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
76
82
  this.n.setStyleProperty("display", "inline-flex");
77
83
  this.n.setStyleProperty("align-items", "center");
78
84
  this.n.setStyleProperty("justify-content", "center");
79
- this.at();
85
+ this.ay();
80
86
  this.n.setStyleProperty("border", "none");
81
87
  this.n.setStyleProperty("cursor", "pointer");
82
88
  this.n.setStyleProperty("user-select", "none");
@@ -85,16 +91,18 @@ export let ButtonView = /*@__PURE__*/ (() => {
85
91
  this.n.setStyleProperty("overflow", "hidden");
86
92
  this.n.setStyleProperty("white-space", "no-wrap");
87
93
  this.n.setStyleProperty("color", "#000");
88
- this.n.setStyleProperty("background", this.b.m9._fill);
89
- NativeUI.m(this.n, this.b.kd);
90
- this.n.setAttribute("id", this.b.h8);
91
- this.aq();
92
- this.h.add(c.listen("change", runOn(this, this.w)));
93
- this.h.add(c.listen("click", runOn(this, this.x)));
94
- this.h.add(c.listen("focus", runOn(this, this.y)));
95
- this.h.add(c.listen("blur", runOn(this, this.v)));
96
- this.h.add(this.k.rootWrapper.listen("mouseenter", runOn(this, this.t)));
97
- this.h.add(this.k.rootWrapper.listen("mouseleave", runOn(this, this.u)));
94
+ this.n.setStyleProperty("background", this.b.nf._fill);
95
+ NativeUI.n(this.n, this.b.kr);
96
+ this.n.setAttribute("id", this.b.hu);
97
+ this.av();
98
+ this.h.add(c.listen("change", runOn(this, this.x)));
99
+ this.h.add(c.listen("click", runOn(this, this.y)));
100
+ this.h.add(c.listen("focus", runOn(this, this.z)));
101
+ this.h.add(c.listen("blur", runOn(this, this.w)));
102
+ this.h.add(this.k.rootWrapper.listen("mouseenter", runOn(this, this.u)));
103
+ this.h.add(this.k.rootWrapper.listen("mouseleave", runOn(this, this.v)));
104
+ this.h.add(this.k.rootWrapper.listen("focusin", runOn(this, this.aa)));
105
+ this.h.add(this.k.rootWrapper.listen("focusout", runOn(this, this.ab)));
98
106
  this.k.append(c);
99
107
  let d = this.k.createElement("div");
100
108
  let e = this.k.getSubRenderer(d);
@@ -117,31 +125,30 @@ export let ButtonView = /*@__PURE__*/ (() => {
117
125
  h.setStyleProperty("font-family", "Verdana");
118
126
  h.setStyleProperty("font-weight", "400");
119
127
  h.setStyleProperty("font-size", ".875rem");
120
- h.setStyleProperty("cursor", "pointer");
121
128
  this.m = h;
122
- this.h.add(h.listen("click", runOn(this, this.s)));
129
+ this.h.add(h.listen("click", runOn(this, this.t)));
123
130
  this.n.append(h);
124
131
  this.o = h;
125
132
  this.k.getPortal(h, "ChildContent", (i) => {
126
133
  let comp_ = i.componentRef;
127
134
  this.p = comp_;
128
135
  {
129
- this.o.setStyleProperty("flex-direction", this.b.hf);
130
- this.o.setStyleProperty("align-items", this.b.fw);
131
- let direction_ = this.b.hf;
132
- let display_ = this.b.gc;
133
- let alignItems_ = this.b.fw;
136
+ this.o.setStyleProperty("flex-direction", this.b.g0);
137
+ this.o.setStyleProperty("align-items", this.b.e7);
138
+ let direction_ = this.b.g0;
139
+ let display_ = this.b.ff != null ? this.b.ff : this.b.fw;
140
+ let alignItems_ = this.b.e7;
134
141
  comp_.display = display_;
135
142
  comp_.flexDirection = direction_;
136
143
  comp_.alignItems = alignItems_;
137
144
  }
138
145
  }, true);
139
- this.b.j0();
146
+ this.b.ke();
140
147
  }
141
- ag() {
142
- this.c.i = this.b.ae;
148
+ ak() {
149
+ this.c.i = this.b.ap;
143
150
  }
144
- at() {
151
+ ay() {
145
152
  let a = "2.25rem";
146
153
  let b = "2.25rem";
147
154
  let c = "2.25rem";
@@ -155,7 +162,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
155
162
  let k = "0px";
156
163
  let l = ".9375rem";
157
164
  let m = ".5625rem 1rem";
158
- switch (this.b.l) {
165
+ switch (this.b.q) {
159
166
  case 2:
160
167
  m = ".375rem .75rem";
161
168
  j = "1.875rem";
@@ -175,6 +182,9 @@ export let ButtonView = /*@__PURE__*/ (() => {
175
182
  l = ".4375rem";
176
183
  break;
177
184
  }
185
+ if (!isNaN_(this.b.bi) && !isNaN_(this.b.bk) && !isNaN_(this.b.bj) && !isNaN_(this.b.bh)) {
186
+ m = this.b.bk + "px " + this.b.bj + "px " + this.b.bh + "px " + this.b.bi + "px";
187
+ }
178
188
  if (this.b.e == 4) {
179
189
  this.n.setStyleProperty("min-width", a);
180
190
  this.n.setStyleProperty("min-height", b);
@@ -194,7 +204,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
194
204
  this.n.setStyleProperty("min-height", j);
195
205
  this.n.setStyleProperty("padding", m);
196
206
  }
197
- if (!isNaN_(this.b.aw) && this.b.aw > 0) {
207
+ if (!isNaN_(this.b.bf) && this.b.bf > 0) {
198
208
  this.n.setStyleProperty("border-style", "solid");
199
209
  }
200
210
  else {
@@ -206,24 +216,54 @@ export let ButtonView = /*@__PURE__*/ (() => {
206
216
  if (!isNaN_(this.i)) {
207
217
  this.n.setStyleProperty("min-height", this.i.toString() + "px");
208
218
  }
219
+ if (this.b.av) {
220
+ this.n.setStyleProperty("width", "100%");
221
+ this.n.setStyleProperty("height", "100%");
222
+ this.k.rootWrapper.setStyleProperty("height", "100%");
223
+ }
224
+ else {
225
+ this.n.setStyleProperty("width", "auto");
226
+ this.n.setStyleProperty("height", "auto");
227
+ this.k.rootWrapper.setStyleProperty("height", "auto");
228
+ }
229
+ }
230
+ as() {
231
+ switch (this.b.k5) {
232
+ case 1:
233
+ this.n.setStyleProperty("justify-content", "center");
234
+ this.o.setStyleProperty("flex-grow", "unset");
235
+ break;
236
+ case 3:
237
+ this.n.setStyleProperty("justify-content", "stretch");
238
+ this.o.setStyleProperty("flex-grow", "1");
239
+ break;
240
+ case 0:
241
+ this.n.setStyleProperty("justify-content", "left");
242
+ this.o.setStyleProperty("flex-grow", "unset");
243
+ break;
244
+ case 2:
245
+ this.n.setStyleProperty("justify-content", "right");
246
+ this.o.setStyleProperty("flex-grow", "unset");
247
+ break;
248
+ }
209
249
  }
210
- ap(a) {
250
+ au(a) {
211
251
  this.j = a;
212
252
  }
213
- ao(a) {
253
+ at(a) {
214
254
  this.i = a;
215
255
  }
216
- am() {
256
+ aq() {
217
257
  this.n.setAttribute("disabled", this.b.disabled ? "true" : "false");
218
258
  this.n.setProperty("disabled", this.b.disabled);
219
259
  }
220
- ah() {
260
+ al() {
221
261
  if (this.k != null) {
222
- this.k.rootWrapper.setStyleProperty("display", this.b.gc);
262
+ this.k.rootWrapper.setStyleProperty("display", this.b.fw);
223
263
  let comp_ = this.p;
224
264
  if (this.p != null) {
225
- this.o.setStyleProperty("display", this.b.gc);
226
- let display_ = this.b.gc;
265
+ this.o.setStyleProperty("display", this.b.fw);
266
+ let display_ = this.b.ff != null ? this.b.fw : this.b.ff;
227
267
  comp_.display = display_;
228
268
  }
229
269
  let ext_ = this.k.getExternal(this.b, null, null);
@@ -233,14 +273,23 @@ export let ButtonView = /*@__PURE__*/ (() => {
233
273
  ;
234
274
  }
235
275
  }
236
- ac() {
276
+ ah() {
277
+ if (this.k != null) {
278
+ let comp_ = this.p;
279
+ if (this.p != null) {
280
+ let display_ = this.b.ff != null ? this.b.ff : this.b.fw;
281
+ comp_.display = display_;
282
+ }
283
+ }
284
+ }
285
+ af() {
237
286
  if (this.k != null) {
238
- this.k.rootWrapper.setStyleProperty("align-items", this.b.fw);
239
- this.n.setStyleProperty("align-items", this.b.fw);
287
+ this.k.rootWrapper.setStyleProperty("align-items", this.b.e7);
288
+ this.n.setStyleProperty("align-items", this.b.e7);
240
289
  let comp_ = this.p;
241
290
  if (this.p != null) {
242
- this.o.setStyleProperty("align-items", this.b.fw);
243
- let alignItems_ = this.b.fw;
291
+ this.o.setStyleProperty("align-items", this.b.e7);
292
+ let alignItems_ = this.b.e7;
244
293
  comp_.alignItems = alignItems_;
245
294
  }
246
295
  let ext_ = this.k.getExternal(this.b, null, null);
@@ -250,15 +299,15 @@ export let ButtonView = /*@__PURE__*/ (() => {
250
299
  ;
251
300
  }
252
301
  }
253
- ai() {
302
+ am() {
254
303
  if (this.k != null) {
255
- this.k.rootWrapper.setStyleProperty("flex-direction", this.b.hf);
256
- this.n.setStyleProperty("flex-direction", this.b.hf);
304
+ this.k.rootWrapper.setStyleProperty("flex-direction", this.b.g0);
305
+ this.n.setStyleProperty("flex-direction", this.b.g0);
257
306
  let ext_ = this.k.getExternal(this.b, null, null);
258
307
  let comp_ = this.p;
259
308
  if (this.p != null) {
260
- this.o.setStyleProperty("flex-direction", this.b.hf);
261
- let direction_ = this.b.hf;
309
+ this.o.setStyleProperty("flex-direction", this.b.g0);
310
+ let direction_ = this.b.g0;
262
311
  comp_.flexDirection = direction_;
263
312
  }
264
313
  if (ext_ && ext_._onFlexDirectionChanged) {
@@ -267,10 +316,10 @@ export let ButtonView = /*@__PURE__*/ (() => {
267
316
  ;
268
317
  }
269
318
  }
270
- aj() {
319
+ an() {
271
320
  if (this.k != null) {
272
- this.k.rootWrapper.setStyleProperty("flex-grow", this.b.hh);
273
- this.n.setStyleProperty("flex-grow", this.b.hh);
321
+ this.k.rootWrapper.setStyleProperty("flex-grow", this.b.g2);
322
+ this.n.setStyleProperty("flex-grow", this.b.g2);
274
323
  let ext_ = this.k.getExternal(this.b, null, null);
275
324
  if (ext_ && ext_._onFlexGrowChanged) {
276
325
  ext_._onFlexGrowChanged();
@@ -278,96 +327,111 @@ export let ButtonView = /*@__PURE__*/ (() => {
278
327
  ;
279
328
  }
280
329
  }
281
- s(a) {
330
+ t(a) {
282
331
  }
283
- aq() {
332
+ av() {
284
333
  if (this.g()) {
285
- let a = this.b.h8;
286
- this.n.setAttribute("name", this.b.ih);
287
- this.n.setProperty("value", this.b.e0);
288
- if (this.b.ah) {
289
- this.n.setAttribute("tabindex", this.b.eu.toString());
334
+ let a = this.b.hu;
335
+ this.n.setAttribute("name", this.b.h2);
336
+ this.n.setProperty("value", this.b.ea);
337
+ if (this.b.aw) {
338
+ this.n.setAttribute("tabindex", this.b.d3.toString());
290
339
  }
291
340
  this.n.setProperty("disabled", this.b.disabled);
292
341
  {
293
342
  }
294
- this.n.setAttribute("aria-label", this.b.fy);
343
+ this.n.setAttribute("aria-label", this.b.e9);
344
+ this.n.setStyleProperty("cursor", !this.b.as ? "pointer" : "unset");
295
345
  }
296
346
  }
297
- al() {
347
+ ap() {
298
348
  if (this.g()) {
299
- let a = this.b.h8;
349
+ let a = this.b.hu;
300
350
  this.n.setAttribute("id", a);
301
351
  }
302
352
  }
303
- t(a) {
304
- this.b.jx();
305
- }
306
353
  u(a) {
307
- this.b.jy();
354
+ this.b.kb();
308
355
  }
309
356
  v(a) {
310
- this.b.jt();
357
+ this.b.kc();
358
+ }
359
+ w(a) {
360
+ this.b.j5();
361
+ }
362
+ z(a) {
363
+ this.b.j8();
311
364
  }
312
365
  y(a) {
313
- this.b.jw();
366
+ if (!this.b.aq) {
367
+ a.preventDefault();
368
+ }
369
+ this.b.j6();
314
370
  }
315
- x(a) {
316
- this.b.ju();
371
+ aa(a) {
372
+ this.b.j9();
373
+ }
374
+ ab(a) {
375
+ this.b.ka(a.originalEvent.relatedTarget);
317
376
  }
318
377
  f() {
319
378
  return false;
320
379
  }
321
- w(a) {
380
+ x(a) {
322
381
  }
323
- ab() {
382
+ ae() {
324
383
  if (KeyFrameAnimationFactory.h == null) {
325
384
  KeyFrameAnimationFactory.h = this.k;
326
385
  }
327
386
  }
328
- ad() {
387
+ ag() {
329
388
  this.e = true;
330
- this.h.add(this.n.listen("change", runOn(this, this.w)));
331
- this.h.add(this.n.listen("click", runOn(this, this.x)));
332
- this.h.add(this.n.listen("focus", runOn(this, this.y)));
333
- this.h.add(this.n.listen("blur", runOn(this, this.v)));
334
- this.h.add(this.m.listen("click", runOn(this, this.s)));
335
- this.h.add(this.n.listen("mouseenter", runOn(this, this.t)));
336
- this.h.add(this.n.listen("mouseleave", runOn(this, this.u)));
389
+ this.h.add(this.n.listen("change", runOn(this, this.x)));
390
+ this.h.add(this.n.listen("click", runOn(this, this.y)));
391
+ this.h.add(this.n.listen("focus", runOn(this, this.z)));
392
+ this.h.add(this.n.listen("blur", runOn(this, this.w)));
393
+ this.h.add(this.m.listen("click", runOn(this, this.t)));
394
+ this.h.add(this.n.listen("mouseenter", runOn(this, this.u)));
395
+ this.h.add(this.n.listen("mouseleave", runOn(this, this.v)));
396
+ this.h.add(this.n.listen("focusin", runOn(this, this.aa)));
397
+ this.h.add(this.n.listen("focusout", runOn(this, this.ab)));
337
398
  }
338
- af() {
399
+ aj() {
339
400
  this.e = false;
340
401
  for (let a of fromEnum(this.h)) {
341
402
  a();
342
403
  }
343
404
  this.h.clear();
344
405
  }
345
- an() {
406
+ ar() {
346
407
  let model_ = this.b;
347
408
  if (model_.externalObject && model_.externalObject.refreshDefaults) {
348
409
  model_.externalObject.refreshDefaults();
349
410
  }
350
411
  ;
351
412
  }
352
- ar(a, b) {
413
+ aw(a, b) {
353
414
  this.c.ax = a;
354
415
  this.c.aw = b;
355
416
  }
356
- as(a, b) {
357
- let c = ElevationHelper.e(a, this.b.nl, this.b.ni, this.b.m8, b);
417
+ ax(a, b) {
418
+ let c = ElevationHelper.e(a, this.b.nr, this.b.no, this.b.ne, b);
358
419
  this.n.setStyleProperty("box-shadow", c);
359
420
  }
360
- au(a) {
421
+ az(a) {
361
422
  if (a != null) {
362
423
  this.m.setStyleProperty("font", a.fontString);
363
424
  }
364
425
  }
365
- z(a) {
426
+ ac(a) {
366
427
  this.m.append(a);
367
428
  }
368
- aa() {
429
+ ad() {
369
430
  this.m.removeChildren();
370
431
  }
432
+ r() {
433
+ return this.m.getChildCount() > 0 ? this.m.getChildAt(0) : null;
434
+ }
371
435
  a() {
372
436
  let rect_ = this.k.rootWrapper.getNativeElement().getBoundingClientRect();
373
437
  let a = (rect_.top);
@@ -389,251 +453,266 @@ export let XButton = /*@__PURE__*/ (() => {
389
453
  constructor() {
390
454
  super();
391
455
  this._view = null;
392
- this.ez = null;
393
- this.sh = ThemeResolver.e(XButton.h, XButton.rt, XButton.pa);
394
- this.r5 = ThemeResolver.e(XButton.h, XButton.rh, XButton.oy);
395
- this.no = ThemeResolver.e(XButton.h, XButton.p8, XButton.np);
396
- this.r = ThemeResolver.a(XButton.h, XButton.s, XButton.q);
397
- this.r8 = ThemeResolver.e(XButton.h, XButton.rk, XButton.o1);
398
- this.r9 = ThemeResolver.e(XButton.h, XButton.rl, XButton.o2);
399
- this.sa = ThemeResolver.e(XButton.h, XButton.rm, XButton.o3);
400
- this.d2 = ThemeResolver.c(XButton.h, XButton.du, XButton.cx);
401
- this.d5 = ThemeResolver.c(XButton.h, XButton.dx, XButton.c0);
402
- this.d4 = ThemeResolver.c(XButton.h, XButton.dw, XButton.cz);
403
- this.d3 = ThemeResolver.c(XButton.h, XButton.dv, XButton.cy);
404
- this.r7 = ThemeResolver.e(XButton.h, XButton.rj, XButton.o0);
405
- this.sf = ThemeResolver.e(XButton.h, XButton.rr, XButton.o8);
406
- this.ku = ThemeResolver.d(XButton.h, XButton.ks, XButton.kk);
407
- this.bc = ThemeResolver.b(XButton.h, XButton.ba, XButton.a2);
408
- this.r6 = ThemeResolver.e(XButton.h, XButton.ri, XButton.oz);
409
- this.sg = ThemeResolver.e(XButton.h, XButton.rs, XButton.o9);
410
- this.se = ThemeResolver.e(XButton.h, XButton.rq, XButton.o7);
411
- this.sd = ThemeResolver.e(XButton.h, XButton.rp, XButton.o6);
412
- this.sb = ThemeResolver.e(XButton.h, XButton.rn, XButton.o4);
413
- this.sc = ThemeResolver.e(XButton.h, XButton.ro, XButton.o5);
414
- this.po = ThemeResolver.e(XButton.h, XButton.qm, XButton.n3);
415
- this.pp = ThemeResolver.e(XButton.h, XButton.qn, XButton.n4);
416
- this.pq = ThemeResolver.e(XButton.h, XButton.qo, XButton.n5);
417
- this.c5 = ThemeResolver.c(XButton.h, XButton.dh, XButton.cl);
418
- this.c8 = ThemeResolver.c(XButton.h, XButton.dk, XButton.co);
419
- this.c7 = ThemeResolver.c(XButton.h, XButton.dj, XButton.cn);
420
- this.c6 = ThemeResolver.c(XButton.h, XButton.di, XButton.cm);
421
- this.pn = ThemeResolver.e(XButton.h, XButton.ql, XButton.n2);
422
- this.pv = ThemeResolver.e(XButton.h, XButton.qt, XButton.oa);
423
- this.km = ThemeResolver.d(XButton.h, XButton.kp, XButton.kh);
424
- this.a4 = ThemeResolver.b(XButton.h, XButton.a7, XButton.az);
425
- this.pm = ThemeResolver.e(XButton.h, XButton.qk, XButton.n1);
426
- this.pw = ThemeResolver.e(XButton.h, XButton.qu, XButton.ob);
427
- this.pu = ThemeResolver.e(XButton.h, XButton.qs, XButton.n9);
428
- this.pt = ThemeResolver.e(XButton.h, XButton.qr, XButton.n8);
429
- this.pr = ThemeResolver.e(XButton.h, XButton.qp, XButton.n6);
430
- this.ps = ThemeResolver.e(XButton.h, XButton.qq, XButton.n7);
431
- this.rw = ThemeResolver.e(XButton.h, XButton.q8, XButton.op);
432
- this.rx = ThemeResolver.e(XButton.h, XButton.q9, XButton.oq);
433
- this.ry = ThemeResolver.e(XButton.h, XButton.ra, XButton.or);
434
- this.dy = ThemeResolver.c(XButton.h, XButton.dq, XButton.ct);
435
- this.d1 = ThemeResolver.c(XButton.h, XButton.dt, XButton.cw);
436
- this.d0 = ThemeResolver.c(XButton.h, XButton.ds, XButton.cv);
437
- this.dz = ThemeResolver.c(XButton.h, XButton.dr, XButton.cu);
438
- this.rv = ThemeResolver.e(XButton.h, XButton.q7, XButton.oo);
439
- this.r3 = ThemeResolver.e(XButton.h, XButton.rf, XButton.ow);
440
- this.kt = ThemeResolver.d(XButton.h, XButton.kr, XButton.kj);
441
- this.bb = ThemeResolver.b(XButton.h, XButton.a9, XButton.a1);
442
- this.ru = ThemeResolver.e(XButton.h, XButton.q6, XButton.on);
443
- this.r4 = ThemeResolver.e(XButton.h, XButton.rg, XButton.ox);
444
- this.r2 = ThemeResolver.e(XButton.h, XButton.re, XButton.ov);
445
- this.r1 = ThemeResolver.e(XButton.h, XButton.rd, XButton.ou);
446
- this.rz = ThemeResolver.e(XButton.h, XButton.rb, XButton.os);
447
- this.r0 = ThemeResolver.e(XButton.h, XButton.rc, XButton.ot);
448
- this.pz = ThemeResolver.e(XButton.h, XButton.qx, XButton.oe);
449
- this.p0 = ThemeResolver.e(XButton.h, XButton.qy, XButton.of);
450
- this.p1 = ThemeResolver.e(XButton.h, XButton.qz, XButton.og);
451
- this.c9 = ThemeResolver.c(XButton.h, XButton.dl, XButton.cp);
452
- this.dc = ThemeResolver.c(XButton.h, XButton.dp, XButton.cs);
453
- this.db = ThemeResolver.c(XButton.h, XButton.dn, XButton.cr);
454
- this.da = ThemeResolver.c(XButton.h, XButton.dm, XButton.cq);
455
- this.py = ThemeResolver.e(XButton.h, XButton.qw, XButton.od);
456
- this.p6 = ThemeResolver.e(XButton.h, XButton.q4, XButton.ol);
457
- this.kn = ThemeResolver.d(XButton.h, XButton.kq, XButton.ki);
458
- this.a5 = ThemeResolver.b(XButton.h, XButton.a8, XButton.a0);
459
- this.px = ThemeResolver.e(XButton.h, XButton.qv, XButton.oc);
460
- this.p7 = ThemeResolver.e(XButton.h, XButton.q5, XButton.om);
461
- this.p5 = ThemeResolver.e(XButton.h, XButton.q3, XButton.ok);
462
- this.p4 = ThemeResolver.e(XButton.h, XButton.q2, XButton.oj);
463
- this.p2 = ThemeResolver.e(XButton.h, XButton.q0, XButton.oh);
464
- this.p3 = ThemeResolver.e(XButton.h, XButton.q1, XButton.oi);
465
- this.pd = ThemeResolver.e(XButton.h, XButton.qb, XButton.ns);
466
- this.pe = ThemeResolver.e(XButton.h, XButton.qc, XButton.nt);
467
- this.pf = ThemeResolver.e(XButton.h, XButton.qd, XButton.nu);
468
- this.c1 = ThemeResolver.c(XButton.h, XButton.dd, XButton.ch);
469
- this.c4 = ThemeResolver.c(XButton.h, XButton.dg, XButton.ck);
470
- this.c3 = ThemeResolver.c(XButton.h, XButton.df, XButton.cj);
471
- this.c2 = ThemeResolver.c(XButton.h, XButton.de, XButton.ci);
472
- this.pc = ThemeResolver.e(XButton.h, XButton.qa, XButton.nr);
473
- this.pk = ThemeResolver.e(XButton.h, XButton.qi, XButton.nz);
474
- this.kl = ThemeResolver.d(XButton.h, XButton.ko, XButton.kg);
475
- this.a3 = ThemeResolver.b(XButton.h, XButton.a6, XButton.ay);
476
- this.pb = ThemeResolver.e(XButton.h, XButton.p9, XButton.nq);
477
- this.pl = ThemeResolver.e(XButton.h, XButton.qj, XButton.n0);
478
- this.pj = ThemeResolver.e(XButton.h, XButton.qh, XButton.ny);
479
- this.pi = ThemeResolver.e(XButton.h, XButton.qg, XButton.nx);
480
- this.pg = ThemeResolver.e(XButton.h, XButton.qe, XButton.nv);
481
- this.ph = ThemeResolver.e(XButton.h, XButton.qf, XButton.nw);
482
- this.at = NaN;
483
- this.as = NaN;
456
+ this.d9 = null;
457
+ this.pf = XButton.k.ae(XButton.m, "UmbraShadowColor");
458
+ this.o3 = XButton.k.ae(XButton.m, "PenumbraShadowColor");
459
+ this.nu = XButton.k.ae(XButton.m, "AmbientShadowColor");
460
+ this.v = XButton.k.d(XButton.m, "ElevationMode");
461
+ this.o6 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
462
+ this.o7 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
463
+ this.o8 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
464
+ this.da = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
465
+ this.dd = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
466
+ this.dc = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
467
+ this.db = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
468
+ this.o5 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
469
+ this.pd = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
470
+ this.ky = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
471
+ this.bp = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
472
+ this.o4 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
473
+ this.pe = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
474
+ this.pc = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
475
+ this.pb = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
476
+ this.o9 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
477
+ this.pa = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
478
+ this.n8 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBackgroundColor");
479
+ this.n9 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBorderColor");
480
+ this.oa = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledTextColor");
481
+ this.cy = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledElevation");
482
+ this.c1 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "RestingElevation");
483
+ this.c0 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverElevation");
484
+ this.cz = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusElevation");
485
+ this.n7 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderColor");
486
+ this.of = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "RippleColor");
487
+ this.kv = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "CornerRadius");
488
+ this.bm = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderWidth");
489
+ this.n6 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BackgroundColor");
490
+ this.og = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "TextColor");
491
+ this.oe = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverTextColor");
492
+ this.od = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverBackgroundColor");
493
+ this.ob = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusBackgroundColor");
494
+ this.oc = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusTextColor");
495
+ this.ou = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBackgroundColor");
496
+ this.ov = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBorderColor");
497
+ this.ow = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledTextColor");
498
+ this.c6 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledElevation");
499
+ this.c9 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "RestingElevation");
500
+ this.c8 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverElevation");
501
+ this.c7 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusElevation");
502
+ this.ot = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderColor");
503
+ this.o1 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "RippleColor");
504
+ this.kx = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "CornerRadius");
505
+ this.bo = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderWidth");
506
+ this.os = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BackgroundColor");
507
+ this.o2 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "TextColor");
508
+ this.o0 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverTextColor");
509
+ this.oz = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverBackgroundColor");
510
+ this.ox = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusBackgroundColor");
511
+ this.oy = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusTextColor");
512
+ this.oj = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBackgroundColor");
513
+ this.ok = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBorderColor");
514
+ this.ol = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledTextColor");
515
+ this.c2 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledElevation");
516
+ this.c5 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "RestingElevation");
517
+ this.c4 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverElevation");
518
+ this.c3 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusElevation");
519
+ this.oi = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderColor");
520
+ this.oq = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "RippleColor");
521
+ this.kw = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "CornerRadius");
522
+ this.bn = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderWidth");
523
+ this.oh = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BackgroundColor");
524
+ this.or = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "TextColor");
525
+ this.op = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverTextColor");
526
+ this.oo = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverBackgroundColor");
527
+ this.om = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusBackgroundColor");
528
+ this.on = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusTextColor");
529
+ this.nx = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBackgroundColor");
530
+ this.ny = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBorderColor");
531
+ this.nz = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledTextColor");
532
+ this.cu = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledElevation");
533
+ this.cx = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "RestingElevation");
534
+ this.cw = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverElevation");
535
+ this.cv = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusElevation");
536
+ this.nw = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderColor");
537
+ this.n4 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "RippleColor");
538
+ this.ku = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "CornerRadius");
539
+ this.bl = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderWidth");
540
+ this.nv = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BackgroundColor");
541
+ this.n5 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "TextColor");
542
+ this.n3 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverTextColor");
543
+ this.n2 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverBackgroundColor");
544
+ this.n0 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusBackgroundColor");
545
+ this.n1 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusTextColor");
546
+ this.bc = NaN;
547
+ this.bb = NaN;
484
548
  this.d = 0;
485
- this.k = 0;
486
- this.g = 0;
487
- this.j = 1;
488
- this.k2 = ThemeResolver.e(XButton.h, XButton.rj, XButton.o0);
489
- this.ld = ThemeResolver.e(XButton.h, XButton.rt, XButton.pa);
490
- this.la = ThemeResolver.e(XButton.h, XButton.rh, XButton.oy);
491
- this.k0 = ThemeResolver.e(XButton.h, XButton.p8, XButton.np);
492
- this.bn = ThemeResolver.c(XButton.h, XButton.dx, XButton.c0);
493
- this.bl = ThemeResolver.c(XButton.h, XButton.dv, XButton.cy);
494
- this.bm = ThemeResolver.c(XButton.h, XButton.dw, XButton.cz);
495
- this.lb = ThemeResolver.e(XButton.h, XButton.rr, XButton.o8);
496
- this.j6 = ThemeResolver.d(XButton.h, XButton.ks, XButton.kk);
497
- this.k1 = ThemeResolver.e(XButton.h, XButton.ri, XButton.oz);
498
- this.k3 = ThemeResolver.e(XButton.h, XButton.rk, XButton.o1);
499
- this.k4 = ThemeResolver.e(XButton.h, XButton.rl, XButton.o2);
500
- this.k5 = ThemeResolver.e(XButton.h, XButton.rm, XButton.o3);
501
- this.bk = ThemeResolver.c(XButton.h, XButton.du, XButton.cx);
502
- this.n = ThemeResolver.a(XButton.h, XButton.s, XButton.q);
503
- this.lc = ThemeResolver.e(XButton.h, XButton.rs, XButton.o9);
504
- this.k9 = ThemeResolver.e(XButton.h, XButton.rq, XButton.o7);
505
- this.k6 = ThemeResolver.e(XButton.h, XButton.rn, XButton.o4);
506
- this.k7 = ThemeResolver.e(XButton.h, XButton.ro, XButton.o5);
507
- this.k8 = ThemeResolver.e(XButton.h, XButton.rp, XButton.o6);
508
- this.an = ThemeResolver.b(XButton.h, XButton.ba, XButton.a2);
509
- this.mv = null;
510
- this.mx = null;
511
- this.my = null;
512
- this.mz = null;
513
- this.b7 = -1;
514
- this.m2 = null;
515
- this.mw = null;
516
- this.ca = -1;
517
- this.b9 = -1;
518
- this.b8 = -1;
519
- this.av = NaN;
520
- this.kc = new CornerRadius(1, NaN, NaN, NaN, NaN);
549
+ this.p = 0;
550
+ this.l = 0;
551
+ this.o = 1;
552
+ this.k8 = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
553
+ this.lj = ThemeResolver.ag(XButton.m, XButton.k, "UmbraShadowColor");
554
+ this.lg = ThemeResolver.ag(XButton.m, XButton.k, "PenumbraShadowColor");
555
+ this.k6 = ThemeResolver.ag(XButton.m, XButton.k, "AmbientShadowColor");
556
+ this.b0 = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
557
+ this.by = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
558
+ this.bz = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
559
+ this.lh = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
560
+ this.kk = ThemeResolver.aa(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
561
+ this.k7 = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
562
+ this.k9 = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
563
+ this.la = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
564
+ this.lb = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
565
+ this.bx = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
566
+ this.s = ThemeResolver.f(XButton.m, XButton.k, "ElevationMode");
567
+ this.li = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
568
+ this.lf = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
569
+ this.lc = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
570
+ this.ld = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
571
+ this.le = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
572
+ this.a2 = ThemeResolver.k(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
573
+ this.m1 = null;
574
+ this.m3 = null;
521
575
  this.m4 = null;
522
- this.lt = null;
523
- this.lv = null;
524
- this.lw = null;
525
- this.lx = null;
526
- this.bt = -1;
527
- this.l0 = null;
528
- this.lu = null;
529
- this.bw = -1;
530
- this.bv = -1;
531
- this.bu = -1;
576
+ this.m5 = null;
577
+ this.ck = -1;
578
+ this.m8 = null;
579
+ this.m2 = null;
580
+ this.cn = -1;
581
+ this.cm = -1;
582
+ this.cl = -1;
583
+ this.be = NaN;
584
+ this.kq = new CornerRadius(1, NaN, NaN, NaN, NaN);
585
+ this.na = null;
586
+ this.lz = null;
587
+ this.l1 = null;
532
588
  this.l2 = null;
533
589
  this.l3 = null;
534
- this.l1 = null;
535
- this.ly = null;
536
- this.lz = null;
537
- this.aq = NaN;
538
- this.j9 = new CornerRadius(1, NaN, NaN, NaN, NaN);
539
- this.le = null;
540
- this.lg = null;
541
- this.lh = null;
542
- this.li = null;
543
- this.bo = -1;
544
- this.o = 0;
590
+ this.b6 = -1;
545
591
  this.l6 = null;
546
- this.lf = null;
547
- this.cb = -1;
548
- this.by = -1;
549
- this.bx = -1;
550
- this.u = null;
551
- this.m7 = null;
592
+ this.l0 = null;
593
+ this.b9 = -1;
594
+ this.b8 = -1;
595
+ this.b7 = -1;
552
596
  this.l8 = null;
553
- this.m6 = null;
554
- this.m5 = null;
555
- this.m3 = null;
556
- this.m0 = null;
557
- this.m1 = null;
597
+ this.l9 = null;
598
+ this.l7 = null;
558
599
  this.l4 = null;
559
600
  this.l5 = null;
560
- this.ao = NaN;
561
- this.j7 = new CornerRadius(1, NaN, NaN, NaN, NaN);
562
- this.mk = null;
563
- this.mm = null;
564
- this.mn = null;
565
- this.mo = null;
566
- this.b3 = -1;
567
- this.mr = null;
568
- this.ml = null;
569
- this.b6 = -1;
570
- this.b5 = -1;
571
- this.b4 = -1;
572
- this.au = NaN;
573
- this.kb = new CornerRadius(1, NaN, NaN, NaN, NaN);
574
- this.mt = null;
575
- this.mu = null;
576
- this.ms = null;
577
- this.mp = null;
578
- this.mq = null;
579
- this.lj = null;
580
- this.ll = null;
601
+ this.a9 = NaN;
602
+ this.kn = new CornerRadius(1, NaN, NaN, NaN, NaN);
603
+ this.lk = null;
581
604
  this.lm = null;
582
605
  this.ln = null;
583
- this.bp = -1;
584
- this.l7 = null;
585
- this.lk = null;
586
- this.bs = -1;
587
- this.br = -1;
588
- this.bq = -1;
589
- this.ap = NaN;
590
- this.j8 = new CornerRadius(1, NaN, NaN, NaN, NaN);
591
- this.lr = null;
592
- this.ls = null;
593
- this.lq = null;
594
606
  this.lo = null;
595
- this.lp = null;
596
- this.l9 = null;
597
- this.mb = null;
607
+ this.b1 = -1;
608
+ this.t = 0;
598
609
  this.mc = null;
599
- this.md = null;
600
- this.bz = -1;
601
- this.mg = null;
610
+ this.ll = null;
611
+ this.co = -1;
612
+ this.cb = -1;
613
+ this.ca = -1;
614
+ this.z = null;
615
+ this.nd = null;
616
+ this.me = null;
617
+ this.nc = null;
618
+ this.nb = null;
619
+ this.m9 = null;
620
+ this.m6 = null;
621
+ this.m7 = null;
602
622
  this.ma = null;
623
+ this.mb = null;
624
+ this.a3 = NaN;
625
+ this.kl = new CornerRadius(1, NaN, NaN, NaN, NaN);
626
+ this.mq = null;
627
+ this.ms = null;
628
+ this.mt = null;
629
+ this.mu = null;
630
+ this.cg = -1;
631
+ this.mx = null;
632
+ this.mr = null;
633
+ this.cj = -1;
634
+ this.ci = -1;
635
+ this.ch = -1;
636
+ this.bd = NaN;
637
+ this.kp = new CornerRadius(1, NaN, NaN, NaN, NaN);
638
+ this.mz = null;
639
+ this.m0 = null;
640
+ this.my = null;
641
+ this.mv = null;
642
+ this.mw = null;
643
+ this.lp = null;
644
+ this.lr = null;
645
+ this.ls = null;
646
+ this.lt = null;
603
647
  this.b2 = -1;
604
- this.b1 = -1;
605
- this.b0 = -1;
606
- this.ar = NaN;
607
- this.ka = new CornerRadius(1, NaN, NaN, NaN, NaN);
648
+ this.md = null;
649
+ this.lq = null;
650
+ this.b5 = -1;
651
+ this.b4 = -1;
652
+ this.b3 = -1;
653
+ this.a8 = NaN;
654
+ this.km = new CornerRadius(1, NaN, NaN, NaN, NaN);
655
+ this.lx = null;
656
+ this.ly = null;
657
+ this.lw = null;
658
+ this.lu = null;
659
+ this.lv = null;
660
+ this.mf = null;
661
+ this.mh = null;
608
662
  this.mi = null;
609
663
  this.mj = null;
610
- this.mh = null;
611
- this.me = null;
612
- this.mf = null;
613
- this.e7 = "ig-native-button-" + XButton.ew++;
614
- this.e6 = "ig-button-" + XButton.ev++;
615
- this.e3 = "inline-block";
616
- this.e4 = "inline-block";
617
- this.e5 = null;
618
- this.e1 = "center";
619
- this.ex = null;
620
- this.e8 = null;
621
- this.cc = 0;
622
- this.z = false;
623
- this.e2 = null;
624
- this.ab = false;
625
- this.ac = true;
626
- this.x = false;
627
- this.w = false;
664
+ this.cc = -1;
665
+ this.mm = null;
666
+ this.mg = null;
667
+ this.cf = -1;
668
+ this.ce = -1;
669
+ this.cd = -1;
670
+ this.ba = NaN;
671
+ this.ko = new CornerRadius(1, NaN, NaN, NaN, NaN);
672
+ this.mo = null;
673
+ this.mp = null;
674
+ this.mn = null;
675
+ this.mk = null;
676
+ this.ml = null;
677
+ this.ei = "ig-native-button-" + XButton.d5++;
678
+ this.eh = "ig-button-" + XButton.d4++;
679
+ this.ee = "inline-block";
680
+ this.ed = null;
681
+ this.ef = "inline-block";
682
+ this.eg = null;
683
+ this.eb = "center";
684
+ this.d6 = null;
685
+ this.ej = null;
686
+ this.cp = 0;
687
+ this.ak = false;
688
+ this.ec = null;
689
+ this.aj = false;
690
+ this.am = false;
691
+ this.an = true;
692
+ this.ah = false;
628
693
  this.ad = false;
629
- this.aa = false;
630
- this.y = false;
694
+ this.af = false;
695
+ this.ao = false;
696
+ this.al = false;
697
+ this.ai = false;
698
+ this.ag = false;
699
+ this.a5 = NaN;
700
+ this.a7 = NaN;
701
+ this.a6 = NaN;
702
+ this.a4 = NaN;
703
+ this.k4 = 1;
704
+ this.q8 = 1;
705
+ this.ae = true;
631
706
  this.propertyChanged = null;
632
707
  this.clicked = null;
708
+ this.mouseEnter = null;
709
+ this.mouseLeave = null;
710
+ this.gotFocus = null;
711
+ this.lostFocus = null;
633
712
  let a = new ButtonView();
634
713
  a.b = this;
635
714
  this.view = a;
636
- this.view.ak();
715
+ this.view.ao();
637
716
  }
638
717
  get view() {
639
718
  return this._view;
@@ -644,13 +723,13 @@ export let XButton = /*@__PURE__*/ (() => {
644
723
  destroy() {
645
724
  this.provideContainer(null);
646
725
  }
647
- jz(a, b, c) {
726
+ kd(a, b, c) {
648
727
  if (this.propertyChanged != null) {
649
728
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
650
729
  }
651
- this.j1(a, b, c);
730
+ this.kf(a, b, c);
652
731
  }
653
- j1(a, b, c) {
732
+ kf(a, b, c) {
654
733
  switch (a) {
655
734
  case "CornerRadius":
656
735
  case "BorderColor":
@@ -756,23 +835,26 @@ export let XButton = /*@__PURE__*/ (() => {
756
835
  case "IconTextColor":
757
836
  case "IconHoverTextColor":
758
837
  case "ElevationMode":
759
- this.j4();
838
+ this.ki();
760
839
  break;
761
840
  case "BaseTheme":
762
- this.j5(this.i == 0 ? 2 : this.i);
763
- this.j4();
841
+ this.kj(this.n == 0 ? 2 : this.n);
842
+ this.ki();
764
843
  break;
765
844
  case "IsDisabled":
766
- this.ae = this.disabled || this.af;
767
- this.j4();
768
- this.view.am();
845
+ this.ap = this.disabled || this.at;
846
+ this.ki();
847
+ this.view.aq();
769
848
  break;
770
849
  case "DisableRipple":
771
- this.ae = this.disabled || this.af;
772
- this.j4();
850
+ this.ap = this.disabled || this.at;
851
+ this.ki();
852
+ break;
853
+ case "DisableHover":
854
+ this.kh();
773
855
  break;
774
856
  case "ActualDisableRipple":
775
- this.view.ag();
857
+ this.view.ak();
776
858
  break;
777
859
  case "ActualBackgroundColor":
778
860
  case "ActualDisabledBackgroundColor":
@@ -784,157 +866,172 @@ export let XButton = /*@__PURE__*/ (() => {
784
866
  case "ActualFocusTextColor":
785
867
  case "ActualHoverTextColor":
786
868
  case "ActualElevationMode":
787
- this.j3();
869
+ this.kh();
788
870
  break;
789
871
  case "Density":
790
- this.l = this.m == 0 ? 1 : this.m;
872
+ this.q = this.r == 0 ? 1 : this.r;
791
873
  break;
792
874
  case "ActualDensity":
793
875
  case "ActualBorderWidth":
794
876
  case "ActualCornerRadius":
795
- this.view.at();
796
- this.j3();
877
+ this.view.ay();
878
+ this.kh();
797
879
  break;
798
880
  case "DisplayType":
799
- this.view.at();
800
- this.j4();
801
- this.j3();
881
+ this.view.ay();
882
+ this.ki();
883
+ this.kh();
884
+ break;
885
+ case "ContentPaddingLeft":
886
+ case "ContentPaddingTop":
887
+ case "ContentPaddingRight":
888
+ case "ContentPaddingBottom":
889
+ case "FillAvailableSpace":
890
+ this.view.ay();
891
+ break;
892
+ case "HorizontalContentAlignment":
893
+ case "VerticalContentAlignment":
894
+ this.view.as();
802
895
  break;
803
896
  case "InputId":
804
- this.view.al();
897
+ this.view.ap();
805
898
  break;
806
899
  case "Display":
900
+ this.view.al();
901
+ break;
902
+ case "ChildContentDisplay":
807
903
  this.view.ah();
808
904
  break;
809
905
  case "FlexDirection":
810
- this.view.ai();
906
+ this.view.am();
811
907
  break;
812
908
  case "FlexGrow":
813
- this.view.aj();
909
+ this.view.an();
814
910
  break;
815
911
  case "AlignItems":
816
- this.view.ac();
912
+ this.view.af();
817
913
  break;
818
914
  case "TabIndex":
819
- this.view.aq();
915
+ case "DisablePointer":
916
+ this.view.av();
820
917
  break;
821
918
  case "MinWidth":
822
- this.view.ap(this.bh);
823
- this.view.at();
919
+ this.view.au(this.bu);
920
+ this.view.ay();
824
921
  break;
825
922
  case "MinHeight":
826
- this.view.ao(this.bg);
827
- this.view.at();
923
+ this.view.at(this.bt);
924
+ this.view.ay();
828
925
  break;
829
926
  }
830
927
  }
831
- ke(a, b) {
928
+ ks(a, b) {
832
929
  return new CornerRadius(1, !isNaN_(a.c) ? a.c : b.c, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.b) ? a.b : b.b, !isNaN_(a.a) ? a.a : b.a);
833
930
  }
834
- j4() {
835
- this.p = this.t != 0 ? this.t : this.r;
836
- this.nl = this.sh;
837
- this.ni = this.r5;
838
- this.m8 = this.no;
931
+ ki() {
932
+ this.u = this.w != 0 ? this.w : this.v;
933
+ this.nr = this.pf;
934
+ this.no = this.o3;
935
+ this.ne = this.nu;
839
936
  switch (this.e) {
840
937
  case 0:
841
- this.nb = this.si != null ? this.si : this.tz != null ? this.tz : this.r8;
842
- this.nc = this.sj != null ? this.sj : this.t0 != null ? this.t0 : this.r9;
843
- this.nd = this.sk != null ? this.sk : this.t1 != null ? this.t1 : this.sa;
844
- this.cd = this.d6 >= 0 ? this.d6 : this.ep >= 0 ? this.ep : this.d2;
845
- this.cg = this.et >= 0 ? this.et : this.es >= 0 ? this.es : this.d5;
846
- this.cf = this.eg >= 0 ? this.eg : this.er >= 0 ? this.er : this.d4;
847
- this.ce = this.ef >= 0 ? this.ef : this.eq >= 0 ? this.eq : this.d3;
848
- this.na = this.nn != null ? this.nn : this.ty != null ? this.ty : this.r7;
849
- this.m9 = this.nm != null ? this.nm : this.tx != null ? this.tx : this.r6;
850
- this.ng = this.s9 != null ? this.s9 : this.t4 != null ? this.t4 : this.sd;
851
- this.kd = this.ke(this.kf, this.ke(this.kz, this.ku));
852
- this.aw = !isNaN_(this.ax) ? this.ax : !isNaN_(this.bj) ? this.bj : this.bc;
853
- this.nj = this.t8 != null ? this.t8 : this.t6 != null ? this.t6 : this.sf;
854
- this.ne = this.s7 != null ? this.s7 : this.t2 != null ? this.t2 : this.sb;
855
- this.nf = this.s8 != null ? this.s8 : this.t3 != null ? this.t3 : this.sc;
856
- this.nk = this.t9 != null ? this.t9 : this.t7 != null ? this.t7 : this.sg;
857
- this.nh = this.ta != null ? this.ta : this.t5 != null ? this.t5 : this.se;
938
+ this.nh = this.pg != null ? this.pg : this.qx != null ? this.qx : this.o6;
939
+ this.ni = this.ph != null ? this.ph : this.qy != null ? this.qy : this.o7;
940
+ this.nj = this.pi != null ? this.pi : this.qz != null ? this.qz : this.o8;
941
+ this.cq = this.de >= 0 ? this.de : this.dy >= 0 ? this.dy : this.da;
942
+ this.ct = this.d2 >= 0 ? this.d2 : this.d1 >= 0 ? this.d1 : this.dd;
943
+ this.cs = this.dp >= 0 ? this.dp : this.d0 >= 0 ? this.d0 : this.dc;
944
+ this.cr = this.dn >= 0 ? this.dn : this.dz >= 0 ? this.dz : this.db;
945
+ this.ng = this.nt != null ? this.nt : this.qw != null ? this.qw : this.o5;
946
+ this.nf = this.ns != null ? this.ns : this.qv != null ? this.qv : this.o4;
947
+ this.nm = this.p7 != null ? this.p7 : this.q2 != null ? this.q2 : this.pb;
948
+ this.kr = this.ks(this.kt, this.ks(this.k3, this.ky));
949
+ this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bw) ? this.bw : this.bp;
950
+ this.np = this.q6 != null ? this.q6 : this.q4 != null ? this.q4 : this.pd;
951
+ this.nk = this.p5 != null ? this.p5 : this.q0 != null ? this.q0 : this.o9;
952
+ this.nl = this.p6 != null ? this.p6 : this.q1 != null ? this.q1 : this.pa;
953
+ this.nq = this.q7 != null ? this.q7 : this.q5 != null ? this.q5 : this.pe;
954
+ this.nn = this.p8 != null ? this.p8 : this.q3 != null ? this.q3 : this.pc;
858
955
  break;
859
956
  case 2:
860
- this.nb = this.si != null ? this.si : this.to != null ? this.to : this.rw;
861
- this.nc = this.sj != null ? this.sj : this.tp != null ? this.tp : this.rx;
862
- this.nd = this.sk != null ? this.sk : this.tq != null ? this.tq : this.ry;
863
- this.cd = this.d6 >= 0 ? this.d6 : this.el >= 0 ? this.el : this.dy;
864
- this.cg = this.et >= 0 ? this.et : this.eo >= 0 ? this.eo : this.d1;
865
- this.cf = this.eg >= 0 ? this.eg : this.en >= 0 ? this.en : this.d0;
866
- this.ce = this.ef >= 0 ? this.ef : this.em >= 0 ? this.em : this.dz;
867
- this.na = this.nn != null ? this.nn : this.tn != null ? this.tn : this.rv;
868
- this.m9 = this.s9 != null ? this.s9 : this.nm != null ? this.nm : this.tm != null ? this.tm : this.ru;
869
- this.ng = this.tt != null ? this.tt : this.r1;
870
- this.kd = this.ke(this.kf, this.ke(this.ky, this.kt));
871
- this.aw = !isNaN_(this.ax) ? this.ax : !isNaN_(this.bi) ? this.bi : this.bb;
872
- this.nj = this.t8 != null ? this.t8 : this.tv != null ? this.tv : this.r3;
873
- this.ne = this.s7 != null ? this.s7 : this.tr != null ? this.tr : this.rz;
874
- this.nf = this.s8 != null ? this.s8 : this.ts != null ? this.ts : this.r0;
875
- this.nk = this.t9 != null ? this.t9 : this.tw != null ? this.tw : this.r4;
876
- this.nh = this.ta != null ? this.ta : this.tu != null ? this.tu : this.r2;
957
+ this.nh = this.pg != null ? this.pg : this.qm != null ? this.qm : this.ou;
958
+ this.ni = this.ph != null ? this.ph : this.qn != null ? this.qn : this.ov;
959
+ this.nj = this.pi != null ? this.pi : this.qo != null ? this.qo : this.ow;
960
+ this.cq = this.de >= 0 ? this.de : this.du >= 0 ? this.du : this.c6;
961
+ this.ct = this.d2 >= 0 ? this.d2 : this.dx >= 0 ? this.dx : this.c9;
962
+ this.cs = this.dp >= 0 ? this.dp : this.dw >= 0 ? this.dw : this.c8;
963
+ this.cr = this.dn >= 0 ? this.dn : this.dv >= 0 ? this.dv : this.c7;
964
+ this.ng = this.nt != null ? this.nt : this.ql != null ? this.ql : this.ot;
965
+ this.nf = this.p7 != null ? this.p7 : this.ns != null ? this.ns : this.qk != null ? this.qk : this.os;
966
+ this.nm = this.qr != null ? this.qr : this.oz;
967
+ this.kr = this.ks(this.kt, this.ks(this.k2, this.kx));
968
+ this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bv) ? this.bv : this.bo;
969
+ this.np = this.q6 != null ? this.q6 : this.qt != null ? this.qt : this.o1;
970
+ this.nk = this.p5 != null ? this.p5 : this.qp != null ? this.qp : this.ox;
971
+ this.nl = this.p6 != null ? this.p6 : this.qq != null ? this.qq : this.oy;
972
+ this.nq = this.q7 != null ? this.q7 : this.qu != null ? this.qu : this.o2;
973
+ this.nn = this.p8 != null ? this.p8 : this.qs != null ? this.qs : this.o0;
877
974
  break;
878
975
  case 1:
879
- this.nb = this.si != null ? this.si : this.sy != null ? this.sy : this.po;
880
- this.nc = this.sj != null ? this.sj : this.sz != null ? this.sz : this.pp;
881
- this.nd = this.sk != null ? this.sk : this.s0 != null ? this.s0 : this.pq;
882
- this.cd = this.d6 >= 0 ? this.d6 : this.eb >= 0 ? this.eb : this.c5;
883
- this.cg = this.et >= 0 ? this.et : this.ee >= 0 ? this.ee : this.c8;
884
- this.cf = this.eg >= 0 ? this.eg : this.ed >= 0 ? this.ed : this.c7;
885
- this.ce = this.ef >= 0 ? this.ef : this.ec >= 0 ? this.ec : this.c6;
886
- this.na = this.nn != null ? this.nn : this.sx != null ? this.sx : this.pn;
887
- this.m9 = this.nm != null ? this.nm : this.sw != null ? this.sw : this.pm;
888
- this.ng = this.s9 != null ? this.s9 : this.s3 != null ? this.s3 : this.pt;
889
- this.kd = this.ke(this.kf, this.ke(this.kw, this.km));
890
- this.aw = !isNaN_(this.ax) ? this.ax : !isNaN_(this.be) ? this.be : this.a4;
891
- this.nj = this.t8 != null ? this.t8 : this.s5 != null ? this.s5 : this.pv;
892
- this.ne = this.s7 != null ? this.s7 : this.s1 != null ? this.s1 : this.pr;
893
- this.nf = this.s8 != null ? this.s8 : this.s2 != null ? this.s2 : this.ps;
894
- this.nk = this.t9 != null ? this.t9 : this.s6 != null ? this.s6 : this.pw;
895
- this.nh = this.ta != null ? this.ta : this.s4 != null ? this.s4 : this.pu;
976
+ this.nh = this.pg != null ? this.pg : this.pw != null ? this.pw : this.n8;
977
+ this.ni = this.ph != null ? this.ph : this.px != null ? this.px : this.n9;
978
+ this.nj = this.pi != null ? this.pi : this.py != null ? this.py : this.oa;
979
+ this.cq = this.de >= 0 ? this.de : this.dj >= 0 ? this.dj : this.cy;
980
+ this.ct = this.d2 >= 0 ? this.d2 : this.dm >= 0 ? this.dm : this.c1;
981
+ this.cs = this.dp >= 0 ? this.dp : this.dl >= 0 ? this.dl : this.c0;
982
+ this.cr = this.dn >= 0 ? this.dn : this.dk >= 0 ? this.dk : this.cz;
983
+ this.ng = this.nt != null ? this.nt : this.pv != null ? this.pv : this.n7;
984
+ this.nf = this.ns != null ? this.ns : this.pu != null ? this.pu : this.n6;
985
+ this.nm = this.p7 != null ? this.p7 : this.p1 != null ? this.p1 : this.od;
986
+ this.kr = this.ks(this.kt, this.ks(this.k0, this.kv));
987
+ this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.br) ? this.br : this.bm;
988
+ this.np = this.q6 != null ? this.q6 : this.p3 != null ? this.p3 : this.of;
989
+ this.nk = this.p5 != null ? this.p5 : this.pz != null ? this.pz : this.ob;
990
+ this.nl = this.p6 != null ? this.p6 : this.p0 != null ? this.p0 : this.oc;
991
+ this.nq = this.q7 != null ? this.q7 : this.p4 != null ? this.p4 : this.og;
992
+ this.nn = this.p8 != null ? this.p8 : this.p2 != null ? this.p2 : this.oe;
896
993
  break;
897
994
  case 4:
898
- this.nb = this.si != null ? this.si : this.td != null ? this.td : this.pz;
899
- this.nc = this.sj != null ? this.sj : this.te != null ? this.te : this.p0;
900
- this.nd = this.sk != null ? this.sk : this.tf != null ? this.tf : this.p1;
901
- this.cd = this.d6 >= 0 ? this.d6 : this.eh >= 0 ? this.eh : this.c9;
902
- this.cg = this.et >= 0 ? this.et : this.ek >= 0 ? this.ek : this.dc;
903
- this.cf = this.eg >= 0 ? this.eg : this.ej >= 0 ? this.ej : this.db;
904
- this.ce = this.ef >= 0 ? this.ef : this.ei >= 0 ? this.ei : this.da;
905
- this.na = this.nn != null ? this.nn : this.tc != null ? this.tc : this.py;
906
- this.m9 = this.nm != null ? this.nm : this.tb != null ? this.tb : this.px;
907
- this.ng = this.s9 != null ? this.s9 : this.ti != null ? this.ti : this.p4;
908
- this.kd = this.ke(this.kf, this.ke(this.kx, this.kn));
909
- this.aw = !isNaN_(this.ax) ? this.ax : !isNaN_(this.bf) ? this.bf : this.a5;
910
- this.nj = this.t8 != null ? this.t8 : this.tk != null ? this.tk : this.p6;
911
- this.ne = this.s7 != null ? this.s7 : this.tg != null ? this.tg : this.p2;
912
- this.nf = this.s8 != null ? this.s8 : this.th != null ? this.th : this.p3;
913
- this.nk = this.t9 != null ? this.t9 : this.tl != null ? this.tl : this.p7;
914
- this.nh = this.ta != null ? this.ta : this.tj != null ? this.tj : this.p5;
995
+ this.nh = this.pg != null ? this.pg : this.qb != null ? this.qb : this.oj;
996
+ this.ni = this.ph != null ? this.ph : this.qc != null ? this.qc : this.ok;
997
+ this.nj = this.pi != null ? this.pi : this.qd != null ? this.qd : this.ol;
998
+ this.cq = this.de >= 0 ? this.de : this.dq >= 0 ? this.dq : this.c2;
999
+ this.ct = this.d2 >= 0 ? this.d2 : this.dt >= 0 ? this.dt : this.c5;
1000
+ this.cs = this.dp >= 0 ? this.dp : this.ds >= 0 ? this.ds : this.c4;
1001
+ this.cr = this.dn >= 0 ? this.dn : this.dr >= 0 ? this.dr : this.c3;
1002
+ this.ng = this.nt != null ? this.nt : this.qa != null ? this.qa : this.oi;
1003
+ this.nf = this.ns != null ? this.ns : this.p9 != null ? this.p9 : this.oh;
1004
+ this.nm = this.p7 != null ? this.p7 : this.qg != null ? this.qg : this.oo;
1005
+ this.kr = this.ks(this.kt, this.ks(this.k1, this.kw));
1006
+ this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bs) ? this.bs : this.bn;
1007
+ this.np = this.q6 != null ? this.q6 : this.qi != null ? this.qi : this.oq;
1008
+ this.nk = this.p5 != null ? this.p5 : this.qe != null ? this.qe : this.om;
1009
+ this.nl = this.p6 != null ? this.p6 : this.qf != null ? this.qf : this.on;
1010
+ this.nq = this.q7 != null ? this.q7 : this.qj != null ? this.qj : this.or;
1011
+ this.nn = this.p8 != null ? this.p8 : this.qh != null ? this.qh : this.op;
915
1012
  break;
916
1013
  case 3:
917
- this.nb = this.si != null ? this.si : this.sn != null ? this.sn : this.pd;
918
- this.nc = this.sj != null ? this.sj : this.so != null ? this.so : this.pe;
919
- this.nd = this.sk != null ? this.sk : this.sp != null ? this.sp : this.pf;
920
- this.cd = this.d6 >= 0 ? this.d6 : this.d7 >= 0 ? this.d7 : this.c1;
921
- this.cg = this.et >= 0 ? this.et : this.ea >= 0 ? this.ea : this.c4;
922
- this.cf = this.eg >= 0 ? this.eg : this.d9 >= 0 ? this.d9 : this.c3;
923
- this.ce = this.ef >= 0 ? this.ef : this.d8 >= 0 ? this.d8 : this.c2;
924
- this.na = this.nn != null ? this.nn : this.sm != null ? this.sm : this.pc;
925
- this.m9 = this.nm != null ? this.nm : this.sl != null ? this.sl : this.pb;
926
- this.ng = this.s9 != null ? this.s9 : this.ss != null ? this.ss : this.pi;
927
- this.kd = this.ke(this.kf, this.ke(this.kv, this.kl));
928
- this.aw = !isNaN_(this.ax) ? this.ax : !isNaN_(this.bd) ? this.bd : this.a3;
929
- this.nj = this.t8 != null ? this.t8 : this.su != null ? this.su : this.sf;
930
- this.ne = this.s7 != null ? this.s7 : this.sq != null ? this.sq : this.pg;
931
- this.nf = this.s8 != null ? this.s8 : this.sr != null ? this.sr : this.ph;
932
- this.nk = this.t9 != null ? this.t9 : this.sv != null ? this.sv : this.pl;
933
- this.nh = this.ta != null ? this.ta : this.st != null ? this.st : this.pj;
1014
+ this.nh = this.pg != null ? this.pg : this.pl != null ? this.pl : this.nx;
1015
+ this.ni = this.ph != null ? this.ph : this.pm != null ? this.pm : this.ny;
1016
+ this.nj = this.pi != null ? this.pi : this.pn != null ? this.pn : this.nz;
1017
+ this.cq = this.de >= 0 ? this.de : this.df >= 0 ? this.df : this.cu;
1018
+ this.ct = this.d2 >= 0 ? this.d2 : this.di >= 0 ? this.di : this.cx;
1019
+ this.cs = this.dp >= 0 ? this.dp : this.dh >= 0 ? this.dh : this.cw;
1020
+ this.cr = this.dn >= 0 ? this.dn : this.dg >= 0 ? this.dg : this.cv;
1021
+ this.ng = this.nt != null ? this.nt : this.pk != null ? this.pk : this.nw;
1022
+ this.nf = this.ns != null ? this.ns : this.pj != null ? this.pj : this.nv;
1023
+ this.nm = this.p7 != null ? this.p7 : this.pq != null ? this.pq : this.n2;
1024
+ this.kr = this.ks(this.kt, this.ks(this.kz, this.ku));
1025
+ this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bq) ? this.bq : this.bl;
1026
+ this.np = this.q6 != null ? this.q6 : this.ps != null ? this.ps : this.pd;
1027
+ this.nk = this.p5 != null ? this.p5 : this.po != null ? this.po : this.n0;
1028
+ this.nl = this.p6 != null ? this.p6 : this.pp != null ? this.pp : this.n1;
1029
+ this.nq = this.q7 != null ? this.q7 : this.pt != null ? this.pt : this.n5;
1030
+ this.nn = this.p8 != null ? this.p8 : this.pr != null ? this.pr : this.n3;
934
1031
  break;
935
1032
  }
936
1033
  }
937
- ju() {
1034
+ j6() {
938
1035
  if (this.disabled) {
939
1036
  return;
940
1037
  }
@@ -942,192 +1039,212 @@ export let XButton = /*@__PURE__*/ (() => {
942
1039
  this.clicked(this, new ButtonClickEventArgs());
943
1040
  }
944
1041
  }
945
- jt() {
1042
+ j5() {
946
1043
  this.focused = false;
947
- this.j3();
1044
+ this.kh();
948
1045
  }
949
- jw() {
1046
+ j8() {
950
1047
  this.focused = true;
951
- this.j3();
1048
+ this.kh();
952
1049
  }
953
- jy() {
954
- this.al = false;
955
- this.j3();
1050
+ kc() {
1051
+ this.a0 = false;
1052
+ this.kh();
1053
+ if (this.mouseLeave != null) {
1054
+ this.mouseLeave(this, new MouseEventArgs());
1055
+ }
956
1056
  }
957
- jx() {
958
- this.al = true;
959
- this.j3();
1057
+ kb() {
1058
+ this.a0 = true;
1059
+ this.kh();
1060
+ if (this.mouseEnter != null) {
1061
+ this.mouseEnter(this, new MouseEventArgs());
1062
+ }
960
1063
  }
961
- j3() {
1064
+ j9() {
1065
+ if (this.gotFocus != null) {
1066
+ this.gotFocus(this, new FocusEventArgs());
1067
+ }
1068
+ }
1069
+ ka(a) {
1070
+ if (this.lostFocus != null) {
1071
+ this.lostFocus(this, ((() => {
1072
+ let $ret = new FocusEventArgs();
1073
+ $ret.a = a;
1074
+ return $ret;
1075
+ })()));
1076
+ }
1077
+ }
1078
+ kh() {
962
1079
  let a = this.view.q;
963
1080
  if (a == null) {
964
1081
  return;
965
1082
  }
966
- NativeUI.m(a, this.kd);
967
- NativeUI.l(a, this.na);
968
- if (!isNaN_(this.aw)) {
969
- NativeUI.n(a, new Thickness(0, this.aw));
1083
+ NativeUI.n(a, this.kr);
1084
+ NativeUI.m(a, this.ng);
1085
+ if (!isNaN_(this.bf)) {
1086
+ NativeUI.o(a, new Thickness(0, this.bf));
970
1087
  }
971
1088
  if (this.disabled) {
972
- this.view.as(this.cd, this.p);
1089
+ this.view.ax(this.cq, this.u);
973
1090
  }
974
- else if (this.focused && this.ak) {
975
- this.view.as(this.ce, this.p);
1091
+ else if (this.focused && this.az) {
1092
+ this.view.ax(this.cr, this.u);
976
1093
  }
977
1094
  else {
978
- if (this.al) {
979
- this.view.as(this.cf, this.p);
1095
+ if (this.a0 && !this.ar) {
1096
+ this.view.ax(this.cs, this.u);
980
1097
  }
981
1098
  else {
982
- this.view.as(this.cg, this.p);
1099
+ this.view.ax(this.ct, this.u);
983
1100
  }
984
1101
  }
985
1102
  if (this.disabled) {
986
- NativeUI.k(a, this.nb);
1103
+ NativeUI.l(a, this.nh);
987
1104
  }
988
- else if (this.focused && this.ak) {
989
- NativeUI.k(a, this.ne);
1105
+ else if (this.focused && this.az) {
1106
+ NativeUI.l(a, this.nk);
990
1107
  }
991
1108
  else {
992
- if (this.al) {
993
- NativeUI.k(a, this.ng);
1109
+ if (this.a0 && !this.ar) {
1110
+ NativeUI.l(a, this.nm);
994
1111
  }
995
1112
  else {
996
- NativeUI.k(a, this.m9);
1113
+ NativeUI.l(a, this.nf);
997
1114
  }
998
1115
  }
999
- this.view.ar(this.nj, BrushUtil.g(0, 0, 0, 0));
1000
- if (this.v != null) {
1001
- this.view.au(this.v);
1116
+ this.view.aw(this.np, BrushUtil.g(0, 0, 0, 0));
1117
+ if (this.aa != null) {
1118
+ this.view.az(this.aa);
1002
1119
  }
1003
1120
  if (this.disabled) {
1004
- NativeUI.o(this.view.r, this.nd);
1005
- NativeUI.p(this.view.r, this.nd);
1121
+ NativeUI.p(this.view.s, this.nj);
1122
+ NativeUI.q(this.view.s, this.nj);
1006
1123
  }
1007
- else if (this.focused && this.ak) {
1008
- NativeUI.o(this.view.r, this.nf);
1009
- NativeUI.p(this.view.r, this.nf);
1124
+ else if (this.focused && this.az) {
1125
+ NativeUI.p(this.view.s, this.nl);
1126
+ NativeUI.q(this.view.s, this.nl);
1010
1127
  }
1011
1128
  else {
1012
- if (this.al) {
1013
- NativeUI.o(this.view.r, this.nh);
1014
- NativeUI.p(this.view.r, this.nh);
1129
+ if (this.a0 && !this.ar) {
1130
+ NativeUI.p(this.view.s, this.nn);
1131
+ NativeUI.q(this.view.s, this.nn);
1015
1132
  }
1016
1133
  else {
1017
- NativeUI.o(this.view.r, this.nk);
1018
- NativeUI.p(this.view.r, this.nk);
1134
+ NativeUI.p(this.view.s, this.nq);
1135
+ NativeUI.q(this.view.s, this.nq);
1019
1136
  }
1020
1137
  }
1021
1138
  }
1022
- j5(a) {
1023
- this.sh = ThemeResolver.e(a, XButton.rt, XButton.pa);
1024
- this.r5 = ThemeResolver.e(a, XButton.rh, XButton.oy);
1025
- this.no = ThemeResolver.e(a, XButton.p8, XButton.np);
1026
- this.r = ThemeResolver.a(a, XButton.s, XButton.q);
1027
- this.r8 = ThemeResolver.e(a, XButton.rk, XButton.o1);
1028
- this.r9 = ThemeResolver.e(a, XButton.rl, XButton.o2);
1029
- this.sa = ThemeResolver.e(a, XButton.rm, XButton.o3);
1030
- this.d2 = ThemeResolver.c(a, XButton.du, XButton.cx);
1031
- this.d5 = ThemeResolver.c(a, XButton.dx, XButton.c0);
1032
- this.d4 = ThemeResolver.c(a, XButton.dw, XButton.cz);
1033
- this.d3 = ThemeResolver.c(a, XButton.dv, XButton.cy);
1034
- this.r7 = ThemeResolver.e(a, XButton.rj, XButton.o0);
1035
- this.sf = ThemeResolver.e(a, XButton.rr, XButton.o8);
1036
- this.ku = ThemeResolver.d(a, XButton.ks, XButton.kk);
1037
- this.bc = ThemeResolver.b(a, XButton.ba, XButton.a2);
1038
- this.r6 = ThemeResolver.e(a, XButton.ri, XButton.oz);
1039
- this.sg = ThemeResolver.e(a, XButton.rs, XButton.o9);
1040
- this.se = ThemeResolver.e(a, XButton.rq, XButton.o7);
1041
- this.sd = ThemeResolver.e(a, XButton.rp, XButton.o6);
1042
- this.sb = ThemeResolver.e(a, XButton.rn, XButton.o4);
1043
- this.sc = ThemeResolver.e(a, XButton.ro, XButton.o5);
1044
- this.po = ThemeResolver.e(a, XButton.qm, XButton.n3);
1045
- this.pp = ThemeResolver.e(a, XButton.qn, XButton.n4);
1046
- this.pq = ThemeResolver.e(a, XButton.qo, XButton.n5);
1047
- this.c5 = ThemeResolver.c(a, XButton.dh, XButton.cl);
1048
- this.c8 = ThemeResolver.c(a, XButton.dk, XButton.co);
1049
- this.c7 = ThemeResolver.c(a, XButton.dj, XButton.cn);
1050
- this.c6 = ThemeResolver.c(a, XButton.di, XButton.cm);
1051
- this.pn = ThemeResolver.e(a, XButton.ql, XButton.n2);
1052
- this.pv = ThemeResolver.e(a, XButton.qt, XButton.oa);
1053
- this.km = ThemeResolver.d(a, XButton.kp, XButton.kh);
1054
- this.a4 = ThemeResolver.b(a, XButton.a7, XButton.az);
1055
- this.pm = ThemeResolver.e(a, XButton.qk, XButton.n1);
1056
- this.pw = ThemeResolver.e(a, XButton.qu, XButton.ob);
1057
- this.pu = ThemeResolver.e(a, XButton.qs, XButton.n9);
1058
- this.pt = ThemeResolver.e(a, XButton.qr, XButton.n8);
1059
- this.pr = ThemeResolver.e(a, XButton.qp, XButton.n6);
1060
- this.ps = ThemeResolver.e(a, XButton.qq, XButton.n7);
1061
- this.rw = ThemeResolver.e(a, XButton.q8, XButton.op);
1062
- this.rx = ThemeResolver.e(a, XButton.q9, XButton.oq);
1063
- this.ry = ThemeResolver.e(a, XButton.ra, XButton.or);
1064
- this.dy = ThemeResolver.c(a, XButton.dq, XButton.ct);
1065
- this.d1 = ThemeResolver.c(a, XButton.dt, XButton.cw);
1066
- this.d0 = ThemeResolver.c(a, XButton.ds, XButton.cv);
1067
- this.dz = ThemeResolver.c(a, XButton.dr, XButton.cu);
1068
- this.rv = ThemeResolver.e(a, XButton.q7, XButton.oo);
1069
- this.r3 = ThemeResolver.e(a, XButton.rf, XButton.ow);
1070
- this.kt = ThemeResolver.d(a, XButton.kr, XButton.kj);
1071
- this.bb = ThemeResolver.b(a, XButton.a9, XButton.a1);
1072
- this.ru = ThemeResolver.e(a, XButton.q6, XButton.on);
1073
- this.r4 = ThemeResolver.e(a, XButton.rg, XButton.ox);
1074
- this.r2 = ThemeResolver.e(a, XButton.re, XButton.ov);
1075
- this.r1 = ThemeResolver.e(a, XButton.rd, XButton.ou);
1076
- this.rz = ThemeResolver.e(a, XButton.rb, XButton.os);
1077
- this.r0 = ThemeResolver.e(a, XButton.rc, XButton.ot);
1078
- this.pz = ThemeResolver.e(a, XButton.qx, XButton.oe);
1079
- this.p0 = ThemeResolver.e(a, XButton.qy, XButton.of);
1080
- this.p1 = ThemeResolver.e(a, XButton.qz, XButton.og);
1081
- this.c9 = ThemeResolver.c(a, XButton.dl, XButton.cp);
1082
- this.dc = ThemeResolver.c(a, XButton.dp, XButton.cs);
1083
- this.db = ThemeResolver.c(a, XButton.dn, XButton.cr);
1084
- this.da = ThemeResolver.c(a, XButton.dm, XButton.cq);
1085
- this.py = ThemeResolver.e(a, XButton.qw, XButton.od);
1086
- this.p6 = ThemeResolver.e(a, XButton.q4, XButton.ol);
1087
- this.kn = ThemeResolver.d(a, XButton.kq, XButton.ki);
1088
- this.a5 = ThemeResolver.b(a, XButton.a8, XButton.a0);
1089
- this.px = ThemeResolver.e(a, XButton.qv, XButton.oc);
1090
- this.p7 = ThemeResolver.e(a, XButton.q5, XButton.om);
1091
- this.p5 = ThemeResolver.e(a, XButton.q3, XButton.ok);
1092
- this.p4 = ThemeResolver.e(a, XButton.q2, XButton.oj);
1093
- this.p2 = ThemeResolver.e(a, XButton.q0, XButton.oh);
1094
- this.p3 = ThemeResolver.e(a, XButton.q1, XButton.oi);
1095
- this.pd = ThemeResolver.e(a, XButton.qb, XButton.ns);
1096
- this.pe = ThemeResolver.e(a, XButton.qc, XButton.nt);
1097
- this.pf = ThemeResolver.e(a, XButton.qd, XButton.nu);
1098
- this.c1 = ThemeResolver.c(a, XButton.dd, XButton.ch);
1099
- this.c4 = ThemeResolver.c(a, XButton.dg, XButton.ck);
1100
- this.c3 = ThemeResolver.c(a, XButton.df, XButton.cj);
1101
- this.c2 = ThemeResolver.c(a, XButton.de, XButton.ci);
1102
- this.pc = ThemeResolver.e(a, XButton.qa, XButton.nr);
1103
- this.pk = ThemeResolver.e(a, XButton.qi, XButton.nz);
1104
- this.kl = ThemeResolver.d(a, XButton.ko, XButton.kg);
1105
- this.a3 = ThemeResolver.b(a, XButton.a6, XButton.ay);
1106
- this.pb = ThemeResolver.e(a, XButton.p9, XButton.nq);
1107
- this.pl = ThemeResolver.e(a, XButton.qj, XButton.n0);
1108
- this.pj = ThemeResolver.e(a, XButton.qh, XButton.ny);
1109
- this.pi = ThemeResolver.e(a, XButton.qg, XButton.nx);
1110
- this.pg = ThemeResolver.e(a, XButton.qe, XButton.nv);
1111
- this.ph = ThemeResolver.e(a, XButton.qf, XButton.nw);
1112
- }
1113
- get bh() {
1114
- return this.at;
1115
- }
1116
- set bh(a) {
1117
- let b = this.at;
1118
- this.at = a;
1119
- if (b != this.at) {
1120
- this.jz("MinWidth", b, a);
1121
- }
1122
- }
1123
- get bg() {
1124
- return this.as;
1125
- }
1126
- set bg(a) {
1127
- let b = this.as;
1128
- this.as = a;
1129
- if (b != this.as) {
1130
- this.jz("MinHeight", b, a);
1139
+ kj(a) {
1140
+ this.pf = XButton.k.ae(a, "UmbraShadowColor");
1141
+ this.o3 = XButton.k.ae(a, "PenumbraShadowColor");
1142
+ this.nu = XButton.k.ae(a, "AmbientShadowColor");
1143
+ this.v = XButton.k.d(a, "ElevationMode");
1144
+ this.o6 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
1145
+ this.o7 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
1146
+ this.o8 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
1147
+ this.da = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
1148
+ this.dd = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
1149
+ this.dc = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
1150
+ this.db = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
1151
+ this.o5 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
1152
+ this.pd = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
1153
+ this.ky = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
1154
+ this.bp = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
1155
+ this.o4 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
1156
+ this.pe = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
1157
+ this.pc = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
1158
+ this.pb = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
1159
+ this.o9 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
1160
+ this.pa = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
1161
+ this.n8 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBackgroundColor");
1162
+ this.n9 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBorderColor");
1163
+ this.oa = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledTextColor");
1164
+ this.cy = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledElevation");
1165
+ this.c1 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "RestingElevation");
1166
+ this.c0 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverElevation");
1167
+ this.cz = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusElevation");
1168
+ this.n7 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderColor");
1169
+ this.of = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "RippleColor");
1170
+ this.kv = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 1), "CornerRadius");
1171
+ this.bm = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderWidth");
1172
+ this.n6 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BackgroundColor");
1173
+ this.og = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "TextColor");
1174
+ this.oe = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverTextColor");
1175
+ this.od = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverBackgroundColor");
1176
+ this.ob = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusBackgroundColor");
1177
+ this.oc = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusTextColor");
1178
+ this.ou = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBackgroundColor");
1179
+ this.ov = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBorderColor");
1180
+ this.ow = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledTextColor");
1181
+ this.c6 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledElevation");
1182
+ this.c9 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "RestingElevation");
1183
+ this.c8 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverElevation");
1184
+ this.c7 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusElevation");
1185
+ this.ot = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderColor");
1186
+ this.o1 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "RippleColor");
1187
+ this.kx = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 2), "CornerRadius");
1188
+ this.bo = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderWidth");
1189
+ this.os = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BackgroundColor");
1190
+ this.o2 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "TextColor");
1191
+ this.o0 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverTextColor");
1192
+ this.oz = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverBackgroundColor");
1193
+ this.ox = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusBackgroundColor");
1194
+ this.oy = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusTextColor");
1195
+ this.oj = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBackgroundColor");
1196
+ this.ok = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBorderColor");
1197
+ this.ol = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledTextColor");
1198
+ this.c2 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledElevation");
1199
+ this.c5 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "RestingElevation");
1200
+ this.c4 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverElevation");
1201
+ this.c3 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusElevation");
1202
+ this.oi = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderColor");
1203
+ this.oq = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "RippleColor");
1204
+ this.kw = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 4), "CornerRadius");
1205
+ this.bn = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderWidth");
1206
+ this.oh = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BackgroundColor");
1207
+ this.or = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "TextColor");
1208
+ this.op = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverTextColor");
1209
+ this.oo = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverBackgroundColor");
1210
+ this.om = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusBackgroundColor");
1211
+ this.on = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusTextColor");
1212
+ this.nx = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBackgroundColor");
1213
+ this.ny = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBorderColor");
1214
+ this.nz = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledTextColor");
1215
+ this.cu = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledElevation");
1216
+ this.cx = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "RestingElevation");
1217
+ this.cw = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverElevation");
1218
+ this.cv = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusElevation");
1219
+ this.nw = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderColor");
1220
+ this.n4 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "RippleColor");
1221
+ this.ku = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 3), "CornerRadius");
1222
+ this.bl = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderWidth");
1223
+ this.nv = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BackgroundColor");
1224
+ this.n5 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "TextColor");
1225
+ this.n3 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverTextColor");
1226
+ this.n2 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverBackgroundColor");
1227
+ this.n0 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusBackgroundColor");
1228
+ this.n1 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusTextColor");
1229
+ }
1230
+ get bu() {
1231
+ return this.bc;
1232
+ }
1233
+ set bu(a) {
1234
+ let b = this.bc;
1235
+ this.bc = a;
1236
+ if (b != this.bc) {
1237
+ this.kd("MinWidth", b, a);
1238
+ }
1239
+ }
1240
+ get bt() {
1241
+ return this.bb;
1242
+ }
1243
+ set bt(a) {
1244
+ let b = this.bb;
1245
+ this.bb = a;
1246
+ if (b != this.bb) {
1247
+ this.kd("MinHeight", b, a);
1131
1248
  }
1132
1249
  }
1133
1250
  get e() {
@@ -1137,187 +1254,207 @@ export let XButton = /*@__PURE__*/ (() => {
1137
1254
  let b = this.d;
1138
1255
  this.d = a;
1139
1256
  if (b != this.d) {
1140
- this.jz("DisplayType", enumGetBox(ButtonDisplayStyle_$type, b), enumGetBox(ButtonDisplayStyle_$type, a));
1257
+ this.kd("DisplayType", enumGetBox(ButtonDisplayStyle_$type, b), enumGetBox(ButtonDisplayStyle_$type, a));
1141
1258
  }
1142
1259
  }
1143
- get m() {
1144
- return this.k;
1260
+ get r() {
1261
+ return this.p;
1145
1262
  }
1146
- set m(a) {
1147
- let b = this.k;
1148
- this.k = a;
1149
- if (b != this.k) {
1150
- this.jz("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
1263
+ set r(a) {
1264
+ let b = this.p;
1265
+ this.p = a;
1266
+ if (b != this.p) {
1267
+ this.kd("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
1151
1268
  }
1152
1269
  }
1153
- get i() {
1154
- return this.g;
1270
+ get n() {
1271
+ return this.l;
1155
1272
  }
1156
- set i(a) {
1157
- let b = this.g;
1158
- this.g = a;
1159
- if (b != this.g) {
1160
- this.jz("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
1273
+ set n(a) {
1274
+ let b = this.l;
1275
+ this.l = a;
1276
+ if (b != this.l) {
1277
+ this.kd("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
1161
1278
  }
1162
1279
  }
1163
- get l() {
1164
- return this.j;
1280
+ get q() {
1281
+ return this.o;
1165
1282
  }
1166
- set l(a) {
1167
- let b = this.j;
1168
- this.j = a;
1169
- if (b != this.j) {
1170
- this.jz("ActualDensity", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
1283
+ set q(a) {
1284
+ let b = this.o;
1285
+ this.o = a;
1286
+ if (b != this.o) {
1287
+ this.kd("ActualDensity", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
1171
1288
  }
1172
1289
  }
1173
- get na() {
1174
- return this.k2;
1290
+ get ng() {
1291
+ return this.k8;
1175
1292
  }
1176
- set na(a) {
1177
- let b = this.k2;
1178
- this.k2 = a;
1179
- if (b != this.k2) {
1180
- this.jz("ActualBorderColor", b, a);
1293
+ set ng(a) {
1294
+ let b = this.k8;
1295
+ this.k8 = a;
1296
+ if (b != this.k8) {
1297
+ this.kd("ActualBorderColor", b, a);
1181
1298
  }
1182
1299
  }
1183
- get nl() {
1184
- return this.ld;
1300
+ get nr() {
1301
+ return this.lj;
1185
1302
  }
1186
- set nl(a) {
1187
- let b = this.ld;
1188
- this.ld = a;
1189
- if (b != this.ld) {
1190
- this.jz("ActualUmbraShadowColor", b, a);
1303
+ set nr(a) {
1304
+ let b = this.lj;
1305
+ this.lj = a;
1306
+ if (b != this.lj) {
1307
+ this.kd("ActualUmbraShadowColor", b, a);
1191
1308
  }
1192
1309
  }
1193
- get ni() {
1194
- return this.la;
1310
+ get no() {
1311
+ return this.lg;
1195
1312
  }
1196
- set ni(a) {
1197
- let b = this.la;
1198
- this.la = a;
1199
- if (b != this.la) {
1200
- this.jz("ActualPenumbraShadowColor", b, a);
1313
+ set no(a) {
1314
+ let b = this.lg;
1315
+ this.lg = a;
1316
+ if (b != this.lg) {
1317
+ this.kd("ActualPenumbraShadowColor", b, a);
1201
1318
  }
1202
1319
  }
1203
- get m8() {
1204
- return this.k0;
1320
+ get ne() {
1321
+ return this.k6;
1205
1322
  }
1206
- set m8(a) {
1207
- let b = this.k0;
1208
- this.k0 = a;
1209
- if (b != this.k0) {
1210
- this.jz("ActualAmbientShadowColor", b, a);
1323
+ set ne(a) {
1324
+ let b = this.k6;
1325
+ this.k6 = a;
1326
+ if (b != this.k6) {
1327
+ this.kd("ActualAmbientShadowColor", b, a);
1211
1328
  }
1212
1329
  }
1213
- get cg() {
1214
- return this.bn;
1330
+ get ct() {
1331
+ return this.b0;
1215
1332
  }
1216
- set cg(a) {
1217
- let b = this.bn;
1218
- this.bn = a;
1219
- if (b != this.bn) {
1220
- this.jz("ActualRestingElevation", b, a);
1333
+ set ct(a) {
1334
+ let b = this.b0;
1335
+ this.b0 = a;
1336
+ if (b != this.b0) {
1337
+ this.kd("ActualRestingElevation", b, a);
1221
1338
  }
1222
1339
  }
1223
- get ce() {
1224
- return this.bl;
1340
+ get cr() {
1341
+ return this.by;
1225
1342
  }
1226
- set ce(a) {
1227
- let b = this.bl;
1228
- this.bl = a;
1229
- if (b != this.bl) {
1230
- this.jz("ActualFocusElevation", b, a);
1343
+ set cr(a) {
1344
+ let b = this.by;
1345
+ this.by = a;
1346
+ if (b != this.by) {
1347
+ this.kd("ActualFocusElevation", b, a);
1231
1348
  }
1232
1349
  }
1233
- get cf() {
1234
- return this.bm;
1350
+ get cs() {
1351
+ return this.bz;
1235
1352
  }
1236
- set cf(a) {
1237
- let b = this.bm;
1238
- this.bm = a;
1239
- if (b != this.bm) {
1240
- this.jz("ActualHoverElevation", b, a);
1353
+ set cs(a) {
1354
+ let b = this.bz;
1355
+ this.bz = a;
1356
+ if (b != this.bz) {
1357
+ this.kd("ActualHoverElevation", b, a);
1241
1358
  }
1242
1359
  }
1243
- get nj() {
1244
- return this.lb;
1360
+ get np() {
1361
+ return this.lh;
1245
1362
  }
1246
- set nj(a) {
1247
- let b = this.lb;
1248
- this.lb = a;
1249
- if (b != this.lb) {
1250
- this.jz("ActualRippleColor", b, a);
1363
+ set np(a) {
1364
+ let b = this.lh;
1365
+ this.lh = a;
1366
+ if (b != this.lh) {
1367
+ this.kd("ActualRippleColor", b, a);
1251
1368
  }
1252
1369
  }
1253
- get kd() {
1254
- return this.j6;
1370
+ get kr() {
1371
+ return this.kk;
1255
1372
  }
1256
- set kd(a) {
1257
- let b = this.j6;
1258
- this.j6 = a;
1259
- if (b != this.j6) {
1260
- this.jz("ActualCornerRadius", b, a);
1373
+ set kr(a) {
1374
+ let b = this.kk;
1375
+ this.kk = a;
1376
+ if (b != this.kk) {
1377
+ this.kd("ActualCornerRadius", b, a);
1261
1378
  }
1262
1379
  }
1263
- get m9() {
1264
- return this.k1;
1380
+ get nf() {
1381
+ return this.k7;
1265
1382
  }
1266
- set m9(a) {
1267
- let b = this.k1;
1268
- this.k1 = a;
1269
- if (b != this.k1) {
1270
- this.jz("ActualBackgroundColor", b, a);
1383
+ set nf(a) {
1384
+ let b = this.k7;
1385
+ this.k7 = a;
1386
+ if (b != this.k7) {
1387
+ this.kd("ActualBackgroundColor", b, a);
1271
1388
  }
1272
1389
  }
1273
- get nb() {
1274
- return this.k3;
1390
+ get nh() {
1391
+ return this.k9;
1275
1392
  }
1276
- set nb(a) {
1277
- let b = this.k3;
1278
- this.k3 = a;
1279
- if (b != this.k3) {
1280
- this.jz("ActualDisabledBackgroundColor", b, a);
1393
+ set nh(a) {
1394
+ let b = this.k9;
1395
+ this.k9 = a;
1396
+ if (b != this.k9) {
1397
+ this.kd("ActualDisabledBackgroundColor", b, a);
1281
1398
  }
1282
1399
  }
1283
- get nc() {
1284
- return this.k4;
1400
+ get ni() {
1401
+ return this.la;
1285
1402
  }
1286
- set nc(a) {
1287
- let b = this.k4;
1288
- this.k4 = a;
1289
- if (b != this.k4) {
1290
- this.jz("ActualDisabledBorderColor", b, a);
1403
+ set ni(a) {
1404
+ let b = this.la;
1405
+ this.la = a;
1406
+ if (b != this.la) {
1407
+ this.kd("ActualDisabledBorderColor", b, a);
1408
+ }
1409
+ }
1410
+ get nj() {
1411
+ return this.lb;
1412
+ }
1413
+ set nj(a) {
1414
+ let b = this.lb;
1415
+ this.lb = a;
1416
+ if (b != this.lb) {
1417
+ this.kd("ActualDisabledTextColor", b, a);
1291
1418
  }
1292
1419
  }
1293
- get nd() {
1294
- return this.k5;
1420
+ get cq() {
1421
+ return this.bx;
1295
1422
  }
1296
- set nd(a) {
1297
- let b = this.k5;
1298
- this.k5 = a;
1299
- if (b != this.k5) {
1300
- this.jz("ActualDisabledTextColor", b, a);
1423
+ set cq(a) {
1424
+ let b = this.bx;
1425
+ this.bx = a;
1426
+ if (b != this.bx) {
1427
+ this.kd("ActualDisabledElevation", b, a);
1301
1428
  }
1302
1429
  }
1303
- get cd() {
1304
- return this.bk;
1430
+ get u() {
1431
+ return this.s;
1305
1432
  }
1306
- set cd(a) {
1307
- let b = this.bk;
1308
- this.bk = a;
1309
- if (b != this.bk) {
1310
- this.jz("ActualDisabledElevation", b, a);
1433
+ set u(a) {
1434
+ let b = this.s;
1435
+ this.s = a;
1436
+ if (b != this.s) {
1437
+ this.kd("ActualElevationMode", enumGetBox(ElevationMode_$type, b), enumGetBox(ElevationMode_$type, a));
1311
1438
  }
1312
1439
  }
1313
- get p() {
1314
- return this.n;
1440
+ get nq() {
1441
+ return this.li;
1442
+ }
1443
+ set nq(a) {
1444
+ let b = this.li;
1445
+ this.li = a;
1446
+ if (b != this.li) {
1447
+ this.kd("ActualTextColor", b, a);
1448
+ }
1449
+ }
1450
+ get nn() {
1451
+ return this.lf;
1315
1452
  }
1316
- set p(a) {
1317
- let b = this.n;
1318
- this.n = a;
1319
- if (b != this.n) {
1320
- this.jz("ActualElevationMode", enumGetBox(ElevationMode_$type, b), enumGetBox(ElevationMode_$type, a));
1453
+ set nn(a) {
1454
+ let b = this.lf;
1455
+ this.lf = a;
1456
+ if (b != this.lf) {
1457
+ this.kd("ActualHoverTextColor", b, a);
1321
1458
  }
1322
1459
  }
1323
1460
  get nk() {
@@ -1327,1277 +1464,1367 @@ export let XButton = /*@__PURE__*/ (() => {
1327
1464
  let b = this.lc;
1328
1465
  this.lc = a;
1329
1466
  if (b != this.lc) {
1330
- this.jz("ActualTextColor", b, a);
1331
- }
1332
- }
1333
- get nh() {
1334
- return this.k9;
1335
- }
1336
- set nh(a) {
1337
- let b = this.k9;
1338
- this.k9 = a;
1339
- if (b != this.k9) {
1340
- this.jz("ActualHoverTextColor", b, a);
1467
+ this.kd("ActualFocusBackgroundColor", b, a);
1341
1468
  }
1342
1469
  }
1343
- get ne() {
1344
- return this.k6;
1470
+ get nl() {
1471
+ return this.ld;
1345
1472
  }
1346
- set ne(a) {
1347
- let b = this.k6;
1348
- this.k6 = a;
1349
- if (b != this.k6) {
1350
- this.jz("ActualFocusBackgroundColor", b, a);
1473
+ set nl(a) {
1474
+ let b = this.ld;
1475
+ this.ld = a;
1476
+ if (b != this.ld) {
1477
+ this.kd("ActualFocusTextColor", b, a);
1351
1478
  }
1352
1479
  }
1353
- get nf() {
1354
- return this.k7;
1480
+ get nm() {
1481
+ return this.le;
1355
1482
  }
1356
- set nf(a) {
1357
- let b = this.k7;
1358
- this.k7 = a;
1359
- if (b != this.k7) {
1360
- this.jz("ActualFocusTextColor", b, a);
1483
+ set nm(a) {
1484
+ let b = this.le;
1485
+ this.le = a;
1486
+ if (b != this.le) {
1487
+ this.kd("ActualHoverBackgroundColor", b, a);
1361
1488
  }
1362
1489
  }
1363
- get ng() {
1364
- return this.k8;
1490
+ get bf() {
1491
+ return this.a2;
1365
1492
  }
1366
- set ng(a) {
1367
- let b = this.k8;
1368
- this.k8 = a;
1369
- if (b != this.k8) {
1370
- this.jz("ActualHoverBackgroundColor", b, a);
1493
+ set bf(a) {
1494
+ let b = this.a2;
1495
+ this.a2 = a;
1496
+ if (b != this.a2) {
1497
+ this.kd("ActualBorderWidth", b, a);
1371
1498
  }
1372
1499
  }
1373
- get aw() {
1374
- return this.an;
1500
+ get qv() {
1501
+ return this.m1;
1375
1502
  }
1376
- set aw(a) {
1377
- let b = this.an;
1378
- this.an = a;
1379
- if (b != this.an) {
1380
- this.jz("ActualBorderWidth", b, a);
1503
+ set qv(a) {
1504
+ let b = this.m1;
1505
+ this.m1 = a;
1506
+ if (b != this.m1) {
1507
+ this.kd("RaisedBackgroundColor", b, a);
1381
1508
  }
1382
1509
  }
1383
- get tx() {
1384
- return this.mv;
1510
+ get qx() {
1511
+ return this.m3;
1385
1512
  }
1386
- set tx(a) {
1387
- let b = this.mv;
1388
- this.mv = a;
1389
- if (b != this.mv) {
1390
- this.jz("RaisedBackgroundColor", b, a);
1513
+ set qx(a) {
1514
+ let b = this.m3;
1515
+ this.m3 = a;
1516
+ if (b != this.m3) {
1517
+ this.kd("RaisedDisabledBackgroundColor", b, a);
1391
1518
  }
1392
1519
  }
1393
- get tz() {
1394
- return this.mx;
1520
+ get qy() {
1521
+ return this.m4;
1395
1522
  }
1396
- set tz(a) {
1397
- let b = this.mx;
1398
- this.mx = a;
1399
- if (b != this.mx) {
1400
- this.jz("RaisedDisabledBackgroundColor", b, a);
1523
+ set qy(a) {
1524
+ let b = this.m4;
1525
+ this.m4 = a;
1526
+ if (b != this.m4) {
1527
+ this.kd("RaisedDisabledBorderColor", b, a);
1401
1528
  }
1402
1529
  }
1403
- get t0() {
1404
- return this.my;
1530
+ get qz() {
1531
+ return this.m5;
1405
1532
  }
1406
- set t0(a) {
1407
- let b = this.my;
1408
- this.my = a;
1409
- if (b != this.my) {
1410
- this.jz("RaisedDisabledBorderColor", b, a);
1533
+ set qz(a) {
1534
+ let b = this.m5;
1535
+ this.m5 = a;
1536
+ if (b != this.m5) {
1537
+ this.kd("RaisedDisabledTextColor", b, a);
1411
1538
  }
1412
1539
  }
1413
- get t1() {
1414
- return this.mz;
1540
+ get dy() {
1541
+ return this.ck;
1415
1542
  }
1416
- set t1(a) {
1417
- let b = this.mz;
1418
- this.mz = a;
1419
- if (b != this.mz) {
1420
- this.jz("RaisedDisabledTextColor", b, a);
1543
+ set dy(a) {
1544
+ let b = this.ck;
1545
+ this.ck = a;
1546
+ if (b != this.ck) {
1547
+ this.kd("RaisedDisabledElevation", b, a);
1421
1548
  }
1422
1549
  }
1423
- get ep() {
1424
- return this.b7;
1550
+ get q2() {
1551
+ return this.m8;
1425
1552
  }
1426
- set ep(a) {
1427
- let b = this.b7;
1428
- this.b7 = a;
1429
- if (b != this.b7) {
1430
- this.jz("RaisedDisabledElevation", b, a);
1553
+ set q2(a) {
1554
+ let b = this.m8;
1555
+ this.m8 = a;
1556
+ if (b != this.m8) {
1557
+ this.kd("RaisedHoverBackgroundColor", b, a);
1431
1558
  }
1432
1559
  }
1433
- get t4() {
1560
+ get qw() {
1434
1561
  return this.m2;
1435
1562
  }
1436
- set t4(a) {
1563
+ set qw(a) {
1437
1564
  let b = this.m2;
1438
1565
  this.m2 = a;
1439
1566
  if (b != this.m2) {
1440
- this.jz("RaisedHoverBackgroundColor", b, a);
1567
+ this.kd("RaisedBorderColor", b, a);
1441
1568
  }
1442
1569
  }
1443
- get ty() {
1444
- return this.mw;
1570
+ get d1() {
1571
+ return this.cn;
1445
1572
  }
1446
- set ty(a) {
1447
- let b = this.mw;
1448
- this.mw = a;
1449
- if (b != this.mw) {
1450
- this.jz("RaisedBorderColor", b, a);
1573
+ set d1(a) {
1574
+ let b = this.cn;
1575
+ this.cn = a;
1576
+ if (b != this.cn) {
1577
+ this.kd("RaisedRestingElevation", b, a);
1451
1578
  }
1452
1579
  }
1453
- get es() {
1454
- return this.ca;
1580
+ get d0() {
1581
+ return this.cm;
1455
1582
  }
1456
- set es(a) {
1457
- let b = this.ca;
1458
- this.ca = a;
1459
- if (b != this.ca) {
1460
- this.jz("RaisedRestingElevation", b, a);
1583
+ set d0(a) {
1584
+ let b = this.cm;
1585
+ this.cm = a;
1586
+ if (b != this.cm) {
1587
+ this.kd("RaisedHoverElevation", b, a);
1461
1588
  }
1462
1589
  }
1463
- get er() {
1464
- return this.b9;
1590
+ get dz() {
1591
+ return this.cl;
1465
1592
  }
1466
- set er(a) {
1467
- let b = this.b9;
1468
- this.b9 = a;
1469
- if (b != this.b9) {
1470
- this.jz("RaisedHoverElevation", b, a);
1593
+ set dz(a) {
1594
+ let b = this.cl;
1595
+ this.cl = a;
1596
+ if (b != this.cl) {
1597
+ this.kd("RaisedFocusElevation", b, a);
1471
1598
  }
1472
1599
  }
1473
- get eq() {
1474
- return this.b8;
1600
+ get bw() {
1601
+ return this.be;
1475
1602
  }
1476
- set eq(a) {
1477
- let b = this.b8;
1478
- this.b8 = a;
1479
- if (b != this.b8) {
1480
- this.jz("RaisedFocusElevation", b, a);
1603
+ set bw(a) {
1604
+ let b = this.be;
1605
+ this.be = a;
1606
+ if (b != this.be) {
1607
+ this.kd("RaisedBorderWidth", b, a);
1481
1608
  }
1482
1609
  }
1483
- get bj() {
1484
- return this.av;
1610
+ get k3() {
1611
+ return this.kq;
1485
1612
  }
1486
- set bj(a) {
1487
- let b = this.av;
1488
- this.av = a;
1489
- if (b != this.av) {
1490
- this.jz("RaisedBorderWidth", b, a);
1613
+ set k3(a) {
1614
+ let b = this.kq;
1615
+ this.kq = a;
1616
+ {
1617
+ this.kd("RaisedCornerRadius", b, a);
1491
1618
  }
1492
1619
  }
1493
- get kz() {
1494
- return this.kc;
1620
+ get q4() {
1621
+ return this.na;
1495
1622
  }
1496
- set kz(a) {
1497
- let b = this.kc;
1498
- this.kc = a;
1499
- {
1500
- this.jz("RaisedCornerRadius", b, a);
1623
+ set q4(a) {
1624
+ let b = this.na;
1625
+ this.na = a;
1626
+ if (b != this.na) {
1627
+ this.kd("RaisedRippleColor", b, a);
1501
1628
  }
1502
1629
  }
1503
- get t6() {
1504
- return this.m4;
1630
+ get pu() {
1631
+ return this.lz;
1505
1632
  }
1506
- set t6(a) {
1507
- let b = this.m4;
1508
- this.m4 = a;
1509
- if (b != this.m4) {
1510
- this.jz("RaisedRippleColor", b, a);
1633
+ set pu(a) {
1634
+ let b = this.lz;
1635
+ this.lz = a;
1636
+ if (b != this.lz) {
1637
+ this.kd("FlatBackgroundColor", b, a);
1511
1638
  }
1512
1639
  }
1513
- get sw() {
1514
- return this.lt;
1640
+ get pw() {
1641
+ return this.l1;
1515
1642
  }
1516
- set sw(a) {
1517
- let b = this.lt;
1518
- this.lt = a;
1519
- if (b != this.lt) {
1520
- this.jz("FlatBackgroundColor", b, a);
1643
+ set pw(a) {
1644
+ let b = this.l1;
1645
+ this.l1 = a;
1646
+ if (b != this.l1) {
1647
+ this.kd("FlatDisabledBackgroundColor", b, a);
1521
1648
  }
1522
1649
  }
1523
- get sy() {
1524
- return this.lv;
1650
+ get px() {
1651
+ return this.l2;
1525
1652
  }
1526
- set sy(a) {
1527
- let b = this.lv;
1528
- this.lv = a;
1529
- if (b != this.lv) {
1530
- this.jz("FlatDisabledBackgroundColor", b, a);
1653
+ set px(a) {
1654
+ let b = this.l2;
1655
+ this.l2 = a;
1656
+ if (b != this.l2) {
1657
+ this.kd("FlatDisabledBorderColor", b, a);
1531
1658
  }
1532
1659
  }
1533
- get sz() {
1534
- return this.lw;
1660
+ get py() {
1661
+ return this.l3;
1535
1662
  }
1536
- set sz(a) {
1537
- let b = this.lw;
1538
- this.lw = a;
1539
- if (b != this.lw) {
1540
- this.jz("FlatDisabledBorderColor", b, a);
1663
+ set py(a) {
1664
+ let b = this.l3;
1665
+ this.l3 = a;
1666
+ if (b != this.l3) {
1667
+ this.kd("FlatDisabledTextColor", b, a);
1541
1668
  }
1542
1669
  }
1543
- get s0() {
1544
- return this.lx;
1670
+ get dj() {
1671
+ return this.b6;
1545
1672
  }
1546
- set s0(a) {
1547
- let b = this.lx;
1548
- this.lx = a;
1549
- if (b != this.lx) {
1550
- this.jz("FlatDisabledTextColor", b, a);
1673
+ set dj(a) {
1674
+ let b = this.b6;
1675
+ this.b6 = a;
1676
+ if (b != this.b6) {
1677
+ this.kd("FlatDisabledElevation", b, a);
1551
1678
  }
1552
1679
  }
1553
- get eb() {
1554
- return this.bt;
1680
+ get p1() {
1681
+ return this.l6;
1555
1682
  }
1556
- set eb(a) {
1557
- let b = this.bt;
1558
- this.bt = a;
1559
- if (b != this.bt) {
1560
- this.jz("FlatDisabledElevation", b, a);
1683
+ set p1(a) {
1684
+ let b = this.l6;
1685
+ this.l6 = a;
1686
+ if (b != this.l6) {
1687
+ this.kd("FlatHoverBackgroundColor", b, a);
1561
1688
  }
1562
1689
  }
1563
- get s3() {
1690
+ get pv() {
1564
1691
  return this.l0;
1565
1692
  }
1566
- set s3(a) {
1693
+ set pv(a) {
1567
1694
  let b = this.l0;
1568
1695
  this.l0 = a;
1569
1696
  if (b != this.l0) {
1570
- this.jz("FlatHoverBackgroundColor", b, a);
1697
+ this.kd("FlatBorderColor", b, a);
1571
1698
  }
1572
1699
  }
1573
- get sx() {
1574
- return this.lu;
1700
+ get dm() {
1701
+ return this.b9;
1575
1702
  }
1576
- set sx(a) {
1577
- let b = this.lu;
1578
- this.lu = a;
1579
- if (b != this.lu) {
1580
- this.jz("FlatBorderColor", b, a);
1703
+ set dm(a) {
1704
+ let b = this.b9;
1705
+ this.b9 = a;
1706
+ if (b != this.b9) {
1707
+ this.kd("FlatRestingElevation", b, a);
1581
1708
  }
1582
1709
  }
1583
- get ee() {
1584
- return this.bw;
1710
+ get dl() {
1711
+ return this.b8;
1585
1712
  }
1586
- set ee(a) {
1587
- let b = this.bw;
1588
- this.bw = a;
1589
- if (b != this.bw) {
1590
- this.jz("FlatRestingElevation", b, a);
1713
+ set dl(a) {
1714
+ let b = this.b8;
1715
+ this.b8 = a;
1716
+ if (b != this.b8) {
1717
+ this.kd("FlatHoverElevation", b, a);
1591
1718
  }
1592
1719
  }
1593
- get ed() {
1594
- return this.bv;
1720
+ get dk() {
1721
+ return this.b7;
1595
1722
  }
1596
- set ed(a) {
1597
- let b = this.bv;
1598
- this.bv = a;
1599
- if (b != this.bv) {
1600
- this.jz("FlatHoverElevation", b, a);
1723
+ set dk(a) {
1724
+ let b = this.b7;
1725
+ this.b7 = a;
1726
+ if (b != this.b7) {
1727
+ this.kd("FlatFocusElevation", b, a);
1601
1728
  }
1602
1729
  }
1603
- get ec() {
1604
- return this.bu;
1730
+ get p3() {
1731
+ return this.l8;
1605
1732
  }
1606
- set ec(a) {
1607
- let b = this.bu;
1608
- this.bu = a;
1609
- if (b != this.bu) {
1610
- this.jz("FlatFocusElevation", b, a);
1733
+ set p3(a) {
1734
+ let b = this.l8;
1735
+ this.l8 = a;
1736
+ if (b != this.l8) {
1737
+ this.kd("FlatRippleColor", b, a);
1611
1738
  }
1612
1739
  }
1613
- get s5() {
1614
- return this.l2;
1740
+ get p4() {
1741
+ return this.l9;
1615
1742
  }
1616
- set s5(a) {
1617
- let b = this.l2;
1618
- this.l2 = a;
1619
- if (b != this.l2) {
1620
- this.jz("FlatRippleColor", b, a);
1743
+ set p4(a) {
1744
+ let b = this.l9;
1745
+ this.l9 = a;
1746
+ if (b != this.l9) {
1747
+ this.kd("FlatTextColor", b, a);
1621
1748
  }
1622
1749
  }
1623
- get s6() {
1624
- return this.l3;
1750
+ get p2() {
1751
+ return this.l7;
1625
1752
  }
1626
- set s6(a) {
1627
- let b = this.l3;
1628
- this.l3 = a;
1629
- if (b != this.l3) {
1630
- this.jz("FlatTextColor", b, a);
1753
+ set p2(a) {
1754
+ let b = this.l7;
1755
+ this.l7 = a;
1756
+ if (b != this.l7) {
1757
+ this.kd("FlatHoverTextColor", b, a);
1631
1758
  }
1632
1759
  }
1633
- get s4() {
1634
- return this.l1;
1760
+ get pz() {
1761
+ return this.l4;
1635
1762
  }
1636
- set s4(a) {
1637
- let b = this.l1;
1638
- this.l1 = a;
1639
- if (b != this.l1) {
1640
- this.jz("FlatHoverTextColor", b, a);
1763
+ set pz(a) {
1764
+ let b = this.l4;
1765
+ this.l4 = a;
1766
+ if (b != this.l4) {
1767
+ this.kd("FlatFocusBackgroundColor", b, a);
1641
1768
  }
1642
1769
  }
1643
- get s1() {
1644
- return this.ly;
1645
- }
1646
- set s1(a) {
1647
- let b = this.ly;
1648
- this.ly = a;
1649
- if (b != this.ly) {
1650
- this.jz("FlatFocusBackgroundColor", b, a);
1651
- }
1770
+ get p0() {
1771
+ return this.l5;
1652
1772
  }
1653
- get s2() {
1654
- return this.lz;
1655
- }
1656
- set s2(a) {
1657
- let b = this.lz;
1658
- this.lz = a;
1659
- if (b != this.lz) {
1660
- this.jz("FlatFocusTextColor", b, a);
1773
+ set p0(a) {
1774
+ let b = this.l5;
1775
+ this.l5 = a;
1776
+ if (b != this.l5) {
1777
+ this.kd("FlatFocusTextColor", b, a);
1661
1778
  }
1662
1779
  }
1663
- get be() {
1664
- return this.aq;
1780
+ get br() {
1781
+ return this.a9;
1665
1782
  }
1666
- set be(a) {
1667
- let b = this.aq;
1668
- this.aq = a;
1669
- if (b != this.aq) {
1670
- this.jz("FlatBorderWidth", b, a);
1783
+ set br(a) {
1784
+ let b = this.a9;
1785
+ this.a9 = a;
1786
+ if (b != this.a9) {
1787
+ this.kd("FlatBorderWidth", b, a);
1671
1788
  }
1672
1789
  }
1673
- get kw() {
1674
- return this.j9;
1790
+ get k0() {
1791
+ return this.kn;
1675
1792
  }
1676
- set kw(a) {
1677
- let b = this.j9;
1678
- this.j9 = a;
1793
+ set k0(a) {
1794
+ let b = this.kn;
1795
+ this.kn = a;
1679
1796
  {
1680
- this.jz("FlatCornerRadius", b, a);
1797
+ this.kd("FlatCornerRadius", b, a);
1681
1798
  }
1682
1799
  }
1683
- get nm() {
1684
- return this.le;
1800
+ get ns() {
1801
+ return this.lk;
1685
1802
  }
1686
- set nm(a) {
1687
- let b = this.le;
1688
- this.le = a;
1689
- if (b != this.le) {
1690
- this.jz("BackgroundColor", b, a);
1803
+ set ns(a) {
1804
+ let b = this.lk;
1805
+ this.lk = a;
1806
+ if (b != this.lk) {
1807
+ this.kd("BackgroundColor", b, a);
1691
1808
  }
1692
1809
  }
1693
- get si() {
1694
- return this.lg;
1810
+ get pg() {
1811
+ return this.lm;
1695
1812
  }
1696
- set si(a) {
1697
- let b = this.lg;
1698
- this.lg = a;
1699
- if (b != this.lg) {
1700
- this.jz("DisabledBackgroundColor", b, a);
1813
+ set pg(a) {
1814
+ let b = this.lm;
1815
+ this.lm = a;
1816
+ if (b != this.lm) {
1817
+ this.kd("DisabledBackgroundColor", b, a);
1701
1818
  }
1702
1819
  }
1703
- get sj() {
1704
- return this.lh;
1820
+ get ph() {
1821
+ return this.ln;
1705
1822
  }
1706
- set sj(a) {
1707
- let b = this.lh;
1708
- this.lh = a;
1709
- if (b != this.lh) {
1710
- this.jz("DisabledBorderColor", b, a);
1823
+ set ph(a) {
1824
+ let b = this.ln;
1825
+ this.ln = a;
1826
+ if (b != this.ln) {
1827
+ this.kd("DisabledBorderColor", b, a);
1711
1828
  }
1712
1829
  }
1713
- get sk() {
1714
- return this.li;
1830
+ get pi() {
1831
+ return this.lo;
1715
1832
  }
1716
- set sk(a) {
1717
- let b = this.li;
1718
- this.li = a;
1719
- if (b != this.li) {
1720
- this.jz("DisabledTextColor", b, a);
1833
+ set pi(a) {
1834
+ let b = this.lo;
1835
+ this.lo = a;
1836
+ if (b != this.lo) {
1837
+ this.kd("DisabledTextColor", b, a);
1721
1838
  }
1722
1839
  }
1723
- get d6() {
1724
- return this.bo;
1840
+ get de() {
1841
+ return this.b1;
1725
1842
  }
1726
- set d6(a) {
1727
- let b = this.bo;
1728
- this.bo = a;
1729
- if (b != this.bo) {
1730
- this.jz("DisabledElevation", b, a);
1843
+ set de(a) {
1844
+ let b = this.b1;
1845
+ this.b1 = a;
1846
+ if (b != this.b1) {
1847
+ this.kd("DisabledElevation", b, a);
1731
1848
  }
1732
1849
  }
1733
- get t() {
1734
- return this.o;
1850
+ get w() {
1851
+ return this.t;
1735
1852
  }
1736
- set t(a) {
1737
- let b = this.o;
1738
- this.o = a;
1739
- if (b != this.o) {
1740
- this.jz("ElevationMode", enumGetBox(ElevationMode_$type, b), enumGetBox(ElevationMode_$type, a));
1853
+ set w(a) {
1854
+ let b = this.t;
1855
+ this.t = a;
1856
+ if (b != this.t) {
1857
+ this.kd("ElevationMode", enumGetBox(ElevationMode_$type, b), enumGetBox(ElevationMode_$type, a));
1741
1858
  }
1742
1859
  }
1743
- get s9() {
1744
- return this.l6;
1860
+ get p7() {
1861
+ return this.mc;
1745
1862
  }
1746
- set s9(a) {
1747
- let b = this.l6;
1748
- this.l6 = a;
1749
- if (b != this.l6) {
1750
- this.jz("HoverBackgroundColor", b, a);
1863
+ set p7(a) {
1864
+ let b = this.mc;
1865
+ this.mc = a;
1866
+ if (b != this.mc) {
1867
+ this.kd("HoverBackgroundColor", b, a);
1751
1868
  }
1752
1869
  }
1753
- get nn() {
1754
- return this.lf;
1870
+ get nt() {
1871
+ return this.ll;
1755
1872
  }
1756
- set nn(a) {
1757
- let b = this.lf;
1758
- this.lf = a;
1759
- if (b != this.lf) {
1760
- this.jz("BorderColor", b, a);
1873
+ set nt(a) {
1874
+ let b = this.ll;
1875
+ this.ll = a;
1876
+ if (b != this.ll) {
1877
+ this.kd("BorderColor", b, a);
1878
+ }
1879
+ }
1880
+ get d2() {
1881
+ return this.co;
1882
+ }
1883
+ set d2(a) {
1884
+ let b = this.co;
1885
+ this.co = a;
1886
+ if (b != this.co) {
1887
+ this.kd("RestingElevation", b, a);
1761
1888
  }
1762
1889
  }
1763
- get et() {
1890
+ get dp() {
1764
1891
  return this.cb;
1765
1892
  }
1766
- set et(a) {
1893
+ set dp(a) {
1767
1894
  let b = this.cb;
1768
1895
  this.cb = a;
1769
1896
  if (b != this.cb) {
1770
- this.jz("RestingElevation", b, a);
1897
+ this.kd("HoverElevation", b, a);
1771
1898
  }
1772
1899
  }
1773
- get eg() {
1774
- return this.by;
1900
+ get dn() {
1901
+ return this.ca;
1775
1902
  }
1776
- set eg(a) {
1777
- let b = this.by;
1778
- this.by = a;
1779
- if (b != this.by) {
1780
- this.jz("HoverElevation", b, a);
1903
+ set dn(a) {
1904
+ let b = this.ca;
1905
+ this.ca = a;
1906
+ if (b != this.ca) {
1907
+ this.kd("FocusElevation", b, a);
1781
1908
  }
1782
1909
  }
1783
- get ef() {
1784
- return this.bx;
1910
+ get aa() {
1911
+ return this.z;
1785
1912
  }
1786
- set ef(a) {
1787
- let b = this.bx;
1788
- this.bx = a;
1789
- if (b != this.bx) {
1790
- this.jz("FocusElevation", b, a);
1913
+ set aa(a) {
1914
+ let b = this.z;
1915
+ this.z = a;
1916
+ if (b != this.z) {
1917
+ this.kd("TextStyle", b, a);
1791
1918
  }
1792
1919
  }
1793
- get v() {
1794
- return this.u;
1920
+ get q7() {
1921
+ return this.nd;
1795
1922
  }
1796
- set v(a) {
1797
- let b = this.u;
1798
- this.u = a;
1799
- if (b != this.u) {
1800
- this.jz("TextStyle", b, a);
1923
+ set q7(a) {
1924
+ let b = this.nd;
1925
+ this.nd = a;
1926
+ if (b != this.nd) {
1927
+ this.kd("TextColor", b, a);
1801
1928
  }
1802
1929
  }
1803
- get t9() {
1804
- return this.m7;
1930
+ get p8() {
1931
+ return this.me;
1805
1932
  }
1806
- set t9(a) {
1807
- let b = this.m7;
1808
- this.m7 = a;
1809
- if (b != this.m7) {
1810
- this.jz("TextColor", b, a);
1933
+ set p8(a) {
1934
+ let b = this.me;
1935
+ this.me = a;
1936
+ if (b != this.me) {
1937
+ this.kd("HoverTextColor", b, a);
1811
1938
  }
1812
1939
  }
1813
- get ta() {
1814
- return this.l8;
1940
+ get q6() {
1941
+ return this.nc;
1815
1942
  }
1816
- set ta(a) {
1817
- let b = this.l8;
1818
- this.l8 = a;
1819
- if (b != this.l8) {
1820
- this.jz("HoverTextColor", b, a);
1943
+ set q6(a) {
1944
+ let b = this.nc;
1945
+ this.nc = a;
1946
+ if (b != this.nc) {
1947
+ this.kd("RippleColor", b, a);
1821
1948
  }
1822
1949
  }
1823
- get t8() {
1824
- return this.m6;
1950
+ get q5() {
1951
+ return this.nb;
1825
1952
  }
1826
- set t8(a) {
1827
- let b = this.m6;
1828
- this.m6 = a;
1829
- if (b != this.m6) {
1830
- this.jz("RippleColor", b, a);
1953
+ set q5(a) {
1954
+ let b = this.nb;
1955
+ this.nb = a;
1956
+ if (b != this.nb) {
1957
+ this.kd("RaisedTextColor", b, a);
1831
1958
  }
1832
1959
  }
1833
- get t7() {
1834
- return this.m5;
1960
+ get q3() {
1961
+ return this.m9;
1835
1962
  }
1836
- set t7(a) {
1837
- let b = this.m5;
1838
- this.m5 = a;
1839
- if (b != this.m5) {
1840
- this.jz("RaisedTextColor", b, a);
1963
+ set q3(a) {
1964
+ let b = this.m9;
1965
+ this.m9 = a;
1966
+ if (b != this.m9) {
1967
+ this.kd("RaisedHoverTextColor", b, a);
1841
1968
  }
1842
1969
  }
1843
- get t5() {
1844
- return this.m3;
1970
+ get q0() {
1971
+ return this.m6;
1845
1972
  }
1846
- set t5(a) {
1847
- let b = this.m3;
1848
- this.m3 = a;
1849
- if (b != this.m3) {
1850
- this.jz("RaisedHoverTextColor", b, a);
1973
+ set q0(a) {
1974
+ let b = this.m6;
1975
+ this.m6 = a;
1976
+ if (b != this.m6) {
1977
+ this.kd("RaisedFocusBackgroundColor", b, a);
1851
1978
  }
1852
1979
  }
1853
- get t2() {
1854
- return this.m0;
1980
+ get q1() {
1981
+ return this.m7;
1855
1982
  }
1856
- set t2(a) {
1857
- let b = this.m0;
1858
- this.m0 = a;
1859
- if (b != this.m0) {
1860
- this.jz("RaisedFocusBackgroundColor", b, a);
1983
+ set q1(a) {
1984
+ let b = this.m7;
1985
+ this.m7 = a;
1986
+ if (b != this.m7) {
1987
+ this.kd("RaisedFocusTextColor", b, a);
1861
1988
  }
1862
1989
  }
1863
- get t3() {
1864
- return this.m1;
1990
+ get p5() {
1991
+ return this.ma;
1865
1992
  }
1866
- set t3(a) {
1867
- let b = this.m1;
1868
- this.m1 = a;
1869
- if (b != this.m1) {
1870
- this.jz("RaisedFocusTextColor", b, a);
1993
+ set p5(a) {
1994
+ let b = this.ma;
1995
+ this.ma = a;
1996
+ if (b != this.ma) {
1997
+ this.kd("FocusBackgroundColor", b, a);
1871
1998
  }
1872
1999
  }
1873
- get s7() {
1874
- return this.l4;
2000
+ get p6() {
2001
+ return this.mb;
1875
2002
  }
1876
- set s7(a) {
1877
- let b = this.l4;
1878
- this.l4 = a;
1879
- if (b != this.l4) {
1880
- this.jz("FocusBackgroundColor", b, a);
2003
+ set p6(a) {
2004
+ let b = this.mb;
2005
+ this.mb = a;
2006
+ if (b != this.mb) {
2007
+ this.kd("FocusTextColor", b, a);
1881
2008
  }
1882
2009
  }
1883
- get s8() {
1884
- return this.l5;
2010
+ get bg() {
2011
+ return this.a3;
1885
2012
  }
1886
- set s8(a) {
1887
- let b = this.l5;
1888
- this.l5 = a;
1889
- if (b != this.l5) {
1890
- this.jz("FocusTextColor", b, a);
2013
+ set bg(a) {
2014
+ let b = this.a3;
2015
+ this.a3 = a;
2016
+ if (b != this.a3) {
2017
+ this.kd("BorderWidth", b, a);
1891
2018
  }
1892
2019
  }
1893
- get ax() {
1894
- return this.ao;
2020
+ get kt() {
2021
+ return this.kl;
1895
2022
  }
1896
- set ax(a) {
1897
- let b = this.ao;
1898
- this.ao = a;
1899
- if (b != this.ao) {
1900
- this.jz("BorderWidth", b, a);
2023
+ set kt(a) {
2024
+ let b = this.kl;
2025
+ this.kl = a;
2026
+ {
2027
+ this.kd("CornerRadius", b, a);
1901
2028
  }
1902
2029
  }
1903
- get kf() {
1904
- return this.j7;
2030
+ get qk() {
2031
+ return this.mq;
1905
2032
  }
1906
- set kf(a) {
1907
- let b = this.j7;
1908
- this.j7 = a;
1909
- {
1910
- this.jz("CornerRadius", b, a);
2033
+ set qk(a) {
2034
+ let b = this.mq;
2035
+ this.mq = a;
2036
+ if (b != this.mq) {
2037
+ this.kd("OutlinedBackgroundColor", b, a);
1911
2038
  }
1912
2039
  }
1913
- get tm() {
1914
- return this.mk;
2040
+ get qm() {
2041
+ return this.ms;
1915
2042
  }
1916
- set tm(a) {
1917
- let b = this.mk;
1918
- this.mk = a;
1919
- if (b != this.mk) {
1920
- this.jz("OutlinedBackgroundColor", b, a);
2043
+ set qm(a) {
2044
+ let b = this.ms;
2045
+ this.ms = a;
2046
+ if (b != this.ms) {
2047
+ this.kd("OutlinedDisabledBackgroundColor", b, a);
1921
2048
  }
1922
2049
  }
1923
- get to() {
1924
- return this.mm;
2050
+ get qn() {
2051
+ return this.mt;
1925
2052
  }
1926
- set to(a) {
1927
- let b = this.mm;
1928
- this.mm = a;
1929
- if (b != this.mm) {
1930
- this.jz("OutlinedDisabledBackgroundColor", b, a);
2053
+ set qn(a) {
2054
+ let b = this.mt;
2055
+ this.mt = a;
2056
+ if (b != this.mt) {
2057
+ this.kd("OutlinedDisabledBorderColor", b, a);
1931
2058
  }
1932
2059
  }
1933
- get tp() {
1934
- return this.mn;
2060
+ get qo() {
2061
+ return this.mu;
1935
2062
  }
1936
- set tp(a) {
1937
- let b = this.mn;
1938
- this.mn = a;
1939
- if (b != this.mn) {
1940
- this.jz("OutlinedDisabledBorderColor", b, a);
2063
+ set qo(a) {
2064
+ let b = this.mu;
2065
+ this.mu = a;
2066
+ if (b != this.mu) {
2067
+ this.kd("OutlinedDisabledTextColor", b, a);
1941
2068
  }
1942
2069
  }
1943
- get tq() {
1944
- return this.mo;
2070
+ get du() {
2071
+ return this.cg;
1945
2072
  }
1946
- set tq(a) {
1947
- let b = this.mo;
1948
- this.mo = a;
1949
- if (b != this.mo) {
1950
- this.jz("OutlinedDisabledTextColor", b, a);
2073
+ set du(a) {
2074
+ let b = this.cg;
2075
+ this.cg = a;
2076
+ if (b != this.cg) {
2077
+ this.kd("OutlinedDisabledElevation", b, a);
1951
2078
  }
1952
2079
  }
1953
- get el() {
1954
- return this.b3;
2080
+ get qr() {
2081
+ return this.mx;
1955
2082
  }
1956
- set el(a) {
1957
- let b = this.b3;
1958
- this.b3 = a;
1959
- if (b != this.b3) {
1960
- this.jz("OutlinedDisabledElevation", b, a);
2083
+ set qr(a) {
2084
+ let b = this.mx;
2085
+ this.mx = a;
2086
+ if (b != this.mx) {
2087
+ this.kd("OutlinedHoverBackgroundColor", b, a);
1961
2088
  }
1962
2089
  }
1963
- get tt() {
2090
+ get ql() {
1964
2091
  return this.mr;
1965
2092
  }
1966
- set tt(a) {
2093
+ set ql(a) {
1967
2094
  let b = this.mr;
1968
2095
  this.mr = a;
1969
2096
  if (b != this.mr) {
1970
- this.jz("OutlinedHoverBackgroundColor", b, a);
2097
+ this.kd("OutlinedBorderColor", b, a);
1971
2098
  }
1972
2099
  }
1973
- get tn() {
1974
- return this.ml;
2100
+ get dx() {
2101
+ return this.cj;
1975
2102
  }
1976
- set tn(a) {
1977
- let b = this.ml;
1978
- this.ml = a;
1979
- if (b != this.ml) {
1980
- this.jz("OutlinedBorderColor", b, a);
2103
+ set dx(a) {
2104
+ let b = this.cj;
2105
+ this.cj = a;
2106
+ if (b != this.cj) {
2107
+ this.kd("OutlinedRestingElevation", b, a);
1981
2108
  }
1982
2109
  }
1983
- get eo() {
1984
- return this.b6;
2110
+ get dw() {
2111
+ return this.ci;
1985
2112
  }
1986
- set eo(a) {
1987
- let b = this.b6;
1988
- this.b6 = a;
1989
- if (b != this.b6) {
1990
- this.jz("OutlinedRestingElevation", b, a);
2113
+ set dw(a) {
2114
+ let b = this.ci;
2115
+ this.ci = a;
2116
+ if (b != this.ci) {
2117
+ this.kd("OutlinedHoverElevation", b, a);
1991
2118
  }
1992
2119
  }
1993
- get en() {
1994
- return this.b5;
2120
+ get dv() {
2121
+ return this.ch;
1995
2122
  }
1996
- set en(a) {
1997
- let b = this.b5;
1998
- this.b5 = a;
1999
- if (b != this.b5) {
2000
- this.jz("OutlinedHoverElevation", b, a);
2123
+ set dv(a) {
2124
+ let b = this.ch;
2125
+ this.ch = a;
2126
+ if (b != this.ch) {
2127
+ this.kd("OutlinedFocusElevation", b, a);
2001
2128
  }
2002
2129
  }
2003
- get em() {
2004
- return this.b4;
2130
+ get bv() {
2131
+ return this.bd;
2005
2132
  }
2006
- set em(a) {
2007
- let b = this.b4;
2008
- this.b4 = a;
2009
- if (b != this.b4) {
2010
- this.jz("OutlinedFocusElevation", b, a);
2133
+ set bv(a) {
2134
+ let b = this.bd;
2135
+ this.bd = a;
2136
+ if (b != this.bd) {
2137
+ this.kd("OutlinedBorderWidth", b, a);
2011
2138
  }
2012
2139
  }
2013
- get bi() {
2014
- return this.au;
2140
+ get k2() {
2141
+ return this.kp;
2015
2142
  }
2016
- set bi(a) {
2017
- let b = this.au;
2018
- this.au = a;
2019
- if (b != this.au) {
2020
- this.jz("OutlinedBorderWidth", b, a);
2143
+ set k2(a) {
2144
+ let b = this.kp;
2145
+ this.kp = a;
2146
+ {
2147
+ this.kd("OutlinedCornerRadius", b, a);
2021
2148
  }
2022
2149
  }
2023
- get ky() {
2024
- return this.kb;
2150
+ get qt() {
2151
+ return this.mz;
2025
2152
  }
2026
- set ky(a) {
2027
- let b = this.kb;
2028
- this.kb = a;
2029
- {
2030
- this.jz("OutlinedCornerRadius", b, a);
2153
+ set qt(a) {
2154
+ let b = this.mz;
2155
+ this.mz = a;
2156
+ if (b != this.mz) {
2157
+ this.kd("OutlinedRippleColor", b, a);
2031
2158
  }
2032
2159
  }
2033
- get tv() {
2034
- return this.mt;
2160
+ get qu() {
2161
+ return this.m0;
2035
2162
  }
2036
- set tv(a) {
2037
- let b = this.mt;
2038
- this.mt = a;
2039
- if (b != this.mt) {
2040
- this.jz("OutlinedRippleColor", b, a);
2163
+ set qu(a) {
2164
+ let b = this.m0;
2165
+ this.m0 = a;
2166
+ if (b != this.m0) {
2167
+ this.kd("OutlinedTextColor", b, a);
2041
2168
  }
2042
2169
  }
2043
- get tw() {
2044
- return this.mu;
2170
+ get qs() {
2171
+ return this.my;
2045
2172
  }
2046
- set tw(a) {
2047
- let b = this.mu;
2048
- this.mu = a;
2049
- if (b != this.mu) {
2050
- this.jz("OutlinedTextColor", b, a);
2173
+ set qs(a) {
2174
+ let b = this.my;
2175
+ this.my = a;
2176
+ if (b != this.my) {
2177
+ this.kd("OutlinedHoverTextColor", b, a);
2178
+ }
2179
+ }
2180
+ get qp() {
2181
+ return this.mv;
2182
+ }
2183
+ set qp(a) {
2184
+ let b = this.mv;
2185
+ this.mv = a;
2186
+ if (b != this.mv) {
2187
+ this.kd("OutlinedFocusBackgroundColor", b, a);
2188
+ }
2189
+ }
2190
+ get qq() {
2191
+ return this.mw;
2192
+ }
2193
+ set qq(a) {
2194
+ let b = this.mw;
2195
+ this.mw = a;
2196
+ if (b != this.mw) {
2197
+ this.kd("OutlinedFocusTextColor", b, a);
2198
+ }
2199
+ }
2200
+ get pj() {
2201
+ return this.lp;
2202
+ }
2203
+ set pj(a) {
2204
+ let b = this.lp;
2205
+ this.lp = a;
2206
+ if (b != this.lp) {
2207
+ this.kd("FabBackgroundColor", b, a);
2208
+ }
2209
+ }
2210
+ get pl() {
2211
+ return this.lr;
2212
+ }
2213
+ set pl(a) {
2214
+ let b = this.lr;
2215
+ this.lr = a;
2216
+ if (b != this.lr) {
2217
+ this.kd("FabDisabledBackgroundColor", b, a);
2218
+ }
2219
+ }
2220
+ get pm() {
2221
+ return this.ls;
2222
+ }
2223
+ set pm(a) {
2224
+ let b = this.ls;
2225
+ this.ls = a;
2226
+ if (b != this.ls) {
2227
+ this.kd("FabDisabledBorderColor", b, a);
2228
+ }
2229
+ }
2230
+ get pn() {
2231
+ return this.lt;
2232
+ }
2233
+ set pn(a) {
2234
+ let b = this.lt;
2235
+ this.lt = a;
2236
+ if (b != this.lt) {
2237
+ this.kd("FabDisabledTextColor", b, a);
2238
+ }
2239
+ }
2240
+ get df() {
2241
+ return this.b2;
2242
+ }
2243
+ set df(a) {
2244
+ let b = this.b2;
2245
+ this.b2 = a;
2246
+ if (b != this.b2) {
2247
+ this.kd("FabDisabledElevation", b, a);
2248
+ }
2249
+ }
2250
+ get pq() {
2251
+ return this.md;
2252
+ }
2253
+ set pq(a) {
2254
+ let b = this.md;
2255
+ this.md = a;
2256
+ if (b != this.md) {
2257
+ this.kd("FabHoverBackgroundColor", b, a);
2258
+ }
2259
+ }
2260
+ get pk() {
2261
+ return this.lq;
2262
+ }
2263
+ set pk(a) {
2264
+ let b = this.lq;
2265
+ this.lq = a;
2266
+ if (b != this.lq) {
2267
+ this.kd("FabBorderColor", b, a);
2268
+ }
2269
+ }
2270
+ get di() {
2271
+ return this.b5;
2272
+ }
2273
+ set di(a) {
2274
+ let b = this.b5;
2275
+ this.b5 = a;
2276
+ if (b != this.b5) {
2277
+ this.kd("FabRestingElevation", b, a);
2051
2278
  }
2052
2279
  }
2053
- get tu() {
2054
- return this.ms;
2280
+ get dh() {
2281
+ return this.b4;
2055
2282
  }
2056
- set tu(a) {
2057
- let b = this.ms;
2058
- this.ms = a;
2059
- if (b != this.ms) {
2060
- this.jz("OutlinedHoverTextColor", b, a);
2283
+ set dh(a) {
2284
+ let b = this.b4;
2285
+ this.b4 = a;
2286
+ if (b != this.b4) {
2287
+ this.kd("FabHoverElevation", b, a);
2061
2288
  }
2062
2289
  }
2063
- get tr() {
2064
- return this.mp;
2290
+ get dg() {
2291
+ return this.b3;
2065
2292
  }
2066
- set tr(a) {
2067
- let b = this.mp;
2068
- this.mp = a;
2069
- if (b != this.mp) {
2070
- this.jz("OutlinedFocusBackgroundColor", b, a);
2293
+ set dg(a) {
2294
+ let b = this.b3;
2295
+ this.b3 = a;
2296
+ if (b != this.b3) {
2297
+ this.kd("FabFocusElevation", b, a);
2071
2298
  }
2072
2299
  }
2073
- get ts() {
2074
- return this.mq;
2300
+ get bq() {
2301
+ return this.a8;
2075
2302
  }
2076
- set ts(a) {
2077
- let b = this.mq;
2078
- this.mq = a;
2079
- if (b != this.mq) {
2080
- this.jz("OutlinedFocusTextColor", b, a);
2303
+ set bq(a) {
2304
+ let b = this.a8;
2305
+ this.a8 = a;
2306
+ if (b != this.a8) {
2307
+ this.kd("FabBorderWidth", b, a);
2081
2308
  }
2082
2309
  }
2083
- get sl() {
2084
- return this.lj;
2310
+ get kz() {
2311
+ return this.km;
2085
2312
  }
2086
- set sl(a) {
2087
- let b = this.lj;
2088
- this.lj = a;
2089
- if (b != this.lj) {
2090
- this.jz("FabBackgroundColor", b, a);
2313
+ set kz(a) {
2314
+ let b = this.km;
2315
+ this.km = a;
2316
+ {
2317
+ this.kd("FabCornerRadius", b, a);
2091
2318
  }
2092
2319
  }
2093
- get sn() {
2094
- return this.ll;
2320
+ get ps() {
2321
+ return this.lx;
2095
2322
  }
2096
- set sn(a) {
2097
- let b = this.ll;
2098
- this.ll = a;
2099
- if (b != this.ll) {
2100
- this.jz("FabDisabledBackgroundColor", b, a);
2323
+ set ps(a) {
2324
+ let b = this.lx;
2325
+ this.lx = a;
2326
+ if (b != this.lx) {
2327
+ this.kd("FabRippleColor", b, a);
2101
2328
  }
2102
2329
  }
2103
- get so() {
2104
- return this.lm;
2330
+ get pt() {
2331
+ return this.ly;
2105
2332
  }
2106
- set so(a) {
2107
- let b = this.lm;
2108
- this.lm = a;
2109
- if (b != this.lm) {
2110
- this.jz("FabDisabledBorderColor", b, a);
2333
+ set pt(a) {
2334
+ let b = this.ly;
2335
+ this.ly = a;
2336
+ if (b != this.ly) {
2337
+ this.kd("FabTextColor", b, a);
2111
2338
  }
2112
2339
  }
2113
- get sp() {
2114
- return this.ln;
2340
+ get pr() {
2341
+ return this.lw;
2115
2342
  }
2116
- set sp(a) {
2117
- let b = this.ln;
2118
- this.ln = a;
2119
- if (b != this.ln) {
2120
- this.jz("FabDisabledTextColor", b, a);
2343
+ set pr(a) {
2344
+ let b = this.lw;
2345
+ this.lw = a;
2346
+ if (b != this.lw) {
2347
+ this.kd("FabHoverTextColor", b, a);
2121
2348
  }
2122
2349
  }
2123
- get d7() {
2124
- return this.bp;
2350
+ get po() {
2351
+ return this.lu;
2125
2352
  }
2126
- set d7(a) {
2127
- let b = this.bp;
2128
- this.bp = a;
2129
- if (b != this.bp) {
2130
- this.jz("FabDisabledElevation", b, a);
2353
+ set po(a) {
2354
+ let b = this.lu;
2355
+ this.lu = a;
2356
+ if (b != this.lu) {
2357
+ this.kd("FabFocusBackgroundColor", b, a);
2131
2358
  }
2132
2359
  }
2133
- get ss() {
2134
- return this.l7;
2360
+ get pp() {
2361
+ return this.lv;
2135
2362
  }
2136
- set ss(a) {
2137
- let b = this.l7;
2138
- this.l7 = a;
2139
- if (b != this.l7) {
2140
- this.jz("FabHoverBackgroundColor", b, a);
2363
+ set pp(a) {
2364
+ let b = this.lv;
2365
+ this.lv = a;
2366
+ if (b != this.lv) {
2367
+ this.kd("FabFocusTextColor", b, a);
2141
2368
  }
2142
2369
  }
2143
- get sm() {
2144
- return this.lk;
2370
+ get p9() {
2371
+ return this.mf;
2145
2372
  }
2146
- set sm(a) {
2147
- let b = this.lk;
2148
- this.lk = a;
2149
- if (b != this.lk) {
2150
- this.jz("FabBorderColor", b, a);
2373
+ set p9(a) {
2374
+ let b = this.mf;
2375
+ this.mf = a;
2376
+ if (b != this.mf) {
2377
+ this.kd("IconBackgroundColor", b, a);
2151
2378
  }
2152
2379
  }
2153
- get ea() {
2154
- return this.bs;
2380
+ get qb() {
2381
+ return this.mh;
2155
2382
  }
2156
- set ea(a) {
2157
- let b = this.bs;
2158
- this.bs = a;
2159
- if (b != this.bs) {
2160
- this.jz("FabRestingElevation", b, a);
2383
+ set qb(a) {
2384
+ let b = this.mh;
2385
+ this.mh = a;
2386
+ if (b != this.mh) {
2387
+ this.kd("IconDisabledBackgroundColor", b, a);
2161
2388
  }
2162
2389
  }
2163
- get d9() {
2164
- return this.br;
2390
+ get qc() {
2391
+ return this.mi;
2165
2392
  }
2166
- set d9(a) {
2167
- let b = this.br;
2168
- this.br = a;
2169
- if (b != this.br) {
2170
- this.jz("FabHoverElevation", b, a);
2393
+ set qc(a) {
2394
+ let b = this.mi;
2395
+ this.mi = a;
2396
+ if (b != this.mi) {
2397
+ this.kd("IconDisabledBorderColor", b, a);
2171
2398
  }
2172
2399
  }
2173
- get d8() {
2174
- return this.bq;
2400
+ get qd() {
2401
+ return this.mj;
2175
2402
  }
2176
- set d8(a) {
2177
- let b = this.bq;
2178
- this.bq = a;
2179
- if (b != this.bq) {
2180
- this.jz("FabFocusElevation", b, a);
2403
+ set qd(a) {
2404
+ let b = this.mj;
2405
+ this.mj = a;
2406
+ if (b != this.mj) {
2407
+ this.kd("IconDisabledTextColor", b, a);
2181
2408
  }
2182
2409
  }
2183
- get bd() {
2184
- return this.ap;
2410
+ get dq() {
2411
+ return this.cc;
2185
2412
  }
2186
- set bd(a) {
2187
- let b = this.ap;
2188
- this.ap = a;
2189
- if (b != this.ap) {
2190
- this.jz("FabBorderWidth", b, a);
2413
+ set dq(a) {
2414
+ let b = this.cc;
2415
+ this.cc = a;
2416
+ if (b != this.cc) {
2417
+ this.kd("IconDisabledElevation", b, a);
2191
2418
  }
2192
2419
  }
2193
- get kv() {
2194
- return this.j8;
2420
+ get qg() {
2421
+ return this.mm;
2195
2422
  }
2196
- set kv(a) {
2197
- let b = this.j8;
2198
- this.j8 = a;
2199
- {
2200
- this.jz("FabCornerRadius", b, a);
2423
+ set qg(a) {
2424
+ let b = this.mm;
2425
+ this.mm = a;
2426
+ if (b != this.mm) {
2427
+ this.kd("IconHoverBackgroundColor", b, a);
2201
2428
  }
2202
2429
  }
2203
- get su() {
2204
- return this.lr;
2430
+ get qa() {
2431
+ return this.mg;
2205
2432
  }
2206
- set su(a) {
2207
- let b = this.lr;
2208
- this.lr = a;
2209
- if (b != this.lr) {
2210
- this.jz("FabRippleColor", b, a);
2433
+ set qa(a) {
2434
+ let b = this.mg;
2435
+ this.mg = a;
2436
+ if (b != this.mg) {
2437
+ this.kd("IconBorderColor", b, a);
2211
2438
  }
2212
2439
  }
2213
- get sv() {
2214
- return this.ls;
2440
+ get dt() {
2441
+ return this.cf;
2215
2442
  }
2216
- set sv(a) {
2217
- let b = this.ls;
2218
- this.ls = a;
2219
- if (b != this.ls) {
2220
- this.jz("FabTextColor", b, a);
2443
+ set dt(a) {
2444
+ let b = this.cf;
2445
+ this.cf = a;
2446
+ if (b != this.cf) {
2447
+ this.kd("IconRestingElevation", b, a);
2221
2448
  }
2222
2449
  }
2223
- get st() {
2224
- return this.lq;
2450
+ get ds() {
2451
+ return this.ce;
2225
2452
  }
2226
- set st(a) {
2227
- let b = this.lq;
2228
- this.lq = a;
2229
- if (b != this.lq) {
2230
- this.jz("FabHoverTextColor", b, a);
2453
+ set ds(a) {
2454
+ let b = this.ce;
2455
+ this.ce = a;
2456
+ if (b != this.ce) {
2457
+ this.kd("IconHoverElevation", b, a);
2231
2458
  }
2232
2459
  }
2233
- get sq() {
2234
- return this.lo;
2460
+ get dr() {
2461
+ return this.cd;
2235
2462
  }
2236
- set sq(a) {
2237
- let b = this.lo;
2238
- this.lo = a;
2239
- if (b != this.lo) {
2240
- this.jz("FabFocusBackgroundColor", b, a);
2463
+ set dr(a) {
2464
+ let b = this.cd;
2465
+ this.cd = a;
2466
+ if (b != this.cd) {
2467
+ this.kd("IconFocusElevation", b, a);
2241
2468
  }
2242
2469
  }
2243
- get sr() {
2244
- return this.lp;
2470
+ get bs() {
2471
+ return this.ba;
2245
2472
  }
2246
- set sr(a) {
2247
- let b = this.lp;
2248
- this.lp = a;
2249
- if (b != this.lp) {
2250
- this.jz("FabFocusTextColor", b, a);
2473
+ set bs(a) {
2474
+ let b = this.ba;
2475
+ this.ba = a;
2476
+ if (b != this.ba) {
2477
+ this.kd("IconBorderWidth", b, a);
2251
2478
  }
2252
2479
  }
2253
- get tb() {
2254
- return this.l9;
2480
+ get k1() {
2481
+ return this.ko;
2255
2482
  }
2256
- set tb(a) {
2257
- let b = this.l9;
2258
- this.l9 = a;
2259
- if (b != this.l9) {
2260
- this.jz("IconBackgroundColor", b, a);
2483
+ set k1(a) {
2484
+ let b = this.ko;
2485
+ this.ko = a;
2486
+ {
2487
+ this.kd("IconCornerRadius", b, a);
2261
2488
  }
2262
2489
  }
2263
- get td() {
2264
- return this.mb;
2490
+ get qi() {
2491
+ return this.mo;
2265
2492
  }
2266
- set td(a) {
2267
- let b = this.mb;
2268
- this.mb = a;
2269
- if (b != this.mb) {
2270
- this.jz("IconDisabledBackgroundColor", b, a);
2493
+ set qi(a) {
2494
+ let b = this.mo;
2495
+ this.mo = a;
2496
+ if (b != this.mo) {
2497
+ this.kd("IconRippleColor", b, a);
2271
2498
  }
2272
2499
  }
2273
- get te() {
2274
- return this.mc;
2500
+ get qj() {
2501
+ return this.mp;
2275
2502
  }
2276
- set te(a) {
2277
- let b = this.mc;
2278
- this.mc = a;
2279
- if (b != this.mc) {
2280
- this.jz("IconDisabledBorderColor", b, a);
2503
+ set qj(a) {
2504
+ let b = this.mp;
2505
+ this.mp = a;
2506
+ if (b != this.mp) {
2507
+ this.kd("IconTextColor", b, a);
2281
2508
  }
2282
2509
  }
2283
- get tf() {
2284
- return this.md;
2510
+ get qh() {
2511
+ return this.mn;
2285
2512
  }
2286
- set tf(a) {
2287
- let b = this.md;
2288
- this.md = a;
2289
- if (b != this.md) {
2290
- this.jz("IconDisabledTextColor", b, a);
2513
+ set qh(a) {
2514
+ let b = this.mn;
2515
+ this.mn = a;
2516
+ if (b != this.mn) {
2517
+ this.kd("IconHoverTextColor", b, a);
2291
2518
  }
2292
2519
  }
2293
- get eh() {
2294
- return this.bz;
2520
+ get qe() {
2521
+ return this.mk;
2295
2522
  }
2296
- set eh(a) {
2297
- let b = this.bz;
2298
- this.bz = a;
2299
- if (b != this.bz) {
2300
- this.jz("IconDisabledElevation", b, a);
2523
+ set qe(a) {
2524
+ let b = this.mk;
2525
+ this.mk = a;
2526
+ if (b != this.mk) {
2527
+ this.kd("IconFocusBackgroundColor", b, a);
2301
2528
  }
2302
2529
  }
2303
- get ti() {
2304
- return this.mg;
2530
+ get qf() {
2531
+ return this.ml;
2305
2532
  }
2306
- set ti(a) {
2307
- let b = this.mg;
2308
- this.mg = a;
2309
- if (b != this.mg) {
2310
- this.jz("IconHoverBackgroundColor", b, a);
2533
+ set qf(a) {
2534
+ let b = this.ml;
2535
+ this.ml = a;
2536
+ if (b != this.ml) {
2537
+ this.kd("IconFocusTextColor", b, a);
2311
2538
  }
2312
2539
  }
2313
- get tc() {
2314
- return this.ma;
2540
+ get hu() {
2541
+ return this.ei;
2315
2542
  }
2316
- set tc(a) {
2317
- let b = this.ma;
2318
- this.ma = a;
2319
- if (b != this.ma) {
2320
- this.jz("IconBorderColor", b, a);
2543
+ set hu(a) {
2544
+ let b = this.ei;
2545
+ this.ei = a;
2546
+ if (b != this.ei) {
2547
+ this.kd("InputId", b, a);
2321
2548
  }
2322
2549
  }
2323
- get ek() {
2324
- return this.b2;
2550
+ get hs() {
2551
+ return this.eh;
2325
2552
  }
2326
- set ek(a) {
2327
- let b = this.b2;
2328
- this.b2 = a;
2329
- if (b != this.b2) {
2330
- this.jz("IconRestingElevation", b, a);
2553
+ set hs(a) {
2554
+ let b = this.eh;
2555
+ this.eh = a;
2556
+ if (b != this.eh) {
2557
+ this.kd("Id", b, a);
2331
2558
  }
2332
2559
  }
2333
- get ej() {
2334
- return this.b1;
2560
+ get fw() {
2561
+ return this.ee;
2335
2562
  }
2336
- set ej(a) {
2337
- let b = this.b1;
2338
- this.b1 = a;
2339
- if (b != this.b1) {
2340
- this.jz("IconHoverElevation", b, a);
2563
+ set fw(a) {
2564
+ let b = this.ee;
2565
+ this.ee = a;
2566
+ if (b != this.ee) {
2567
+ this.kd("Display", b, a);
2341
2568
  }
2342
2569
  }
2343
- get ei() {
2344
- return this.b0;
2570
+ get ff() {
2571
+ return this.ed;
2345
2572
  }
2346
- set ei(a) {
2347
- let b = this.b0;
2348
- this.b0 = a;
2349
- if (b != this.b0) {
2350
- this.jz("IconFocusElevation", b, a);
2573
+ set ff(a) {
2574
+ let b = this.ed;
2575
+ this.ed = a;
2576
+ if (b != this.ed) {
2577
+ this.kd("ChildContentDisplay", b, this.ed);
2351
2578
  }
2352
2579
  }
2353
- get bf() {
2354
- return this.ar;
2580
+ get g0() {
2581
+ return this.ef;
2355
2582
  }
2356
- set bf(a) {
2357
- let b = this.ar;
2358
- this.ar = a;
2359
- if (b != this.ar) {
2360
- this.jz("IconBorderWidth", b, a);
2583
+ set g0(a) {
2584
+ let b = this.ef;
2585
+ this.ef = a;
2586
+ if (b != this.ef) {
2587
+ this.kd("FlexDirection", b, a);
2361
2588
  }
2362
2589
  }
2363
- get kx() {
2364
- return this.ka;
2590
+ get g2() {
2591
+ return this.eg;
2365
2592
  }
2366
- set kx(a) {
2367
- let b = this.ka;
2368
- this.ka = a;
2369
- {
2370
- this.jz("IconCornerRadius", b, a);
2593
+ set g2(a) {
2594
+ let b = this.eg;
2595
+ this.eg = a;
2596
+ if (b != this.eg) {
2597
+ this.kd("FlexGrow", b, a);
2371
2598
  }
2372
2599
  }
2373
- get tk() {
2374
- return this.mi;
2600
+ get e7() {
2601
+ return this.eb;
2375
2602
  }
2376
- set tk(a) {
2377
- let b = this.mi;
2378
- this.mi = a;
2379
- if (b != this.mi) {
2380
- this.jz("IconRippleColor", b, a);
2603
+ set e7(a) {
2604
+ let b = this.eb;
2605
+ this.eb = a;
2606
+ if (b != this.eb) {
2607
+ this.kd("AlignItems", b, a);
2381
2608
  }
2382
2609
  }
2383
- get tl() {
2384
- return this.mj;
2610
+ get ea() {
2611
+ return this.d6;
2385
2612
  }
2386
- set tl(a) {
2387
- let b = this.mj;
2388
- this.mj = a;
2389
- if (b != this.mj) {
2390
- this.jz("IconTextColor", b, a);
2613
+ set ea(a) {
2614
+ let b = this.d6;
2615
+ this.d6 = a;
2616
+ if (b != this.d6) {
2617
+ this.kd("Value", b, a);
2391
2618
  }
2392
2619
  }
2393
- get tj() {
2394
- return this.mh;
2620
+ get h2() {
2621
+ return this.ej;
2395
2622
  }
2396
- set tj(a) {
2397
- let b = this.mh;
2398
- this.mh = a;
2399
- if (b != this.mh) {
2400
- this.jz("IconHoverTextColor", b, a);
2623
+ set h2(a) {
2624
+ let b = this.ej;
2625
+ this.ej = a;
2626
+ if (b != this.ej) {
2627
+ this.kd("Name", b, a);
2401
2628
  }
2402
2629
  }
2403
- get tg() {
2404
- return this.me;
2630
+ get aw() {
2631
+ return this.ak;
2405
2632
  }
2406
- set tg(a) {
2407
- let b = this.me;
2408
- this.me = a;
2409
- if (b != this.me) {
2410
- this.jz("IconFocusBackgroundColor", b, a);
2633
+ get d3() {
2634
+ return this.cp;
2635
+ }
2636
+ set d3(a) {
2637
+ let b = this.cp;
2638
+ this.cp = a;
2639
+ this.ak = true;
2640
+ if (b != this.cp) {
2641
+ this.kd("TabIndex", b, a);
2411
2642
  }
2412
2643
  }
2413
- get th() {
2414
- return this.mf;
2644
+ get e9() {
2645
+ return this.ec;
2415
2646
  }
2416
- set th(a) {
2417
- let b = this.mf;
2418
- this.mf = a;
2419
- if (b != this.mf) {
2420
- this.jz("IconFocusTextColor", b, a);
2647
+ set e9(a) {
2648
+ let b = this.ec;
2649
+ this.ec = a;
2650
+ if (b != this.ec) {
2651
+ this.kd("AriaLabel", b, a);
2421
2652
  }
2422
2653
  }
2423
- get h8() {
2424
- return this.e7;
2654
+ get av() {
2655
+ return this.aj;
2425
2656
  }
2426
- set h8(a) {
2427
- let b = this.e7;
2428
- this.e7 = a;
2429
- if (b != this.e7) {
2430
- this.jz("InputId", b, a);
2657
+ set av(a) {
2658
+ let b = this.aj;
2659
+ this.aj = a;
2660
+ if (b != this.aj) {
2661
+ this.kd("FillAvailableSpace", b, this.aj);
2431
2662
  }
2432
2663
  }
2433
- get h6() {
2434
- return this.e6;
2664
+ get focused() {
2665
+ return this.am;
2435
2666
  }
2436
- set h6(a) {
2437
- let b = this.e6;
2438
- this.e6 = a;
2439
- if (b != this.e6) {
2440
- this.jz("Id", b, a);
2667
+ set focused(a) {
2668
+ let b = this.am;
2669
+ this.am = a;
2670
+ if (b != this.am) {
2671
+ this.kd("IsFocused", b, a);
2441
2672
  }
2442
2673
  }
2443
- get gc() {
2444
- return this.e3;
2674
+ get az() {
2675
+ return this.an;
2445
2676
  }
2446
- set gc(a) {
2447
- let b = this.e3;
2448
- this.e3 = a;
2449
- if (b != this.e3) {
2450
- this.jz("Display", b, a);
2677
+ set az(a) {
2678
+ let b = this.an;
2679
+ this.an = a;
2680
+ if (b != this.an) {
2681
+ this.kd("IsFocusStyleEnabled", b, a);
2451
2682
  }
2452
2683
  }
2453
- get hf() {
2454
- return this.e4;
2684
+ get at() {
2685
+ return this.ah;
2455
2686
  }
2456
- set hf(a) {
2457
- let b = this.e4;
2458
- this.e4 = a;
2459
- if (b != this.e4) {
2460
- this.jz("FlexDirection", b, a);
2687
+ set at(a) {
2688
+ let b = this.ah;
2689
+ this.ah = a;
2690
+ if (b != this.ah) {
2691
+ this.kd("DisableRipple", b, a);
2461
2692
  }
2462
2693
  }
2463
- get hh() {
2464
- return this.e5;
2694
+ get ap() {
2695
+ return this.ad;
2465
2696
  }
2466
- set hh(a) {
2467
- let b = this.e5;
2468
- this.e5 = a;
2469
- if (b != this.e5) {
2470
- this.jz("FlexGrow", b, a);
2697
+ set ap(a) {
2698
+ let b = this.ad;
2699
+ this.ad = a;
2700
+ if (b != this.ad) {
2701
+ this.kd("ActualDisableRipple", b, a);
2471
2702
  }
2472
2703
  }
2473
- get fw() {
2474
- return this.e1;
2704
+ get ar() {
2705
+ return this.af;
2475
2706
  }
2476
- set fw(a) {
2477
- let b = this.e1;
2478
- this.e1 = a;
2479
- if (b != this.e1) {
2480
- this.jz("AlignItems", b, a);
2707
+ set ar(a) {
2708
+ let b = this.af;
2709
+ this.af = a;
2710
+ if (b != this.af) {
2711
+ this.kd("DisableHover", b, this.af);
2481
2712
  }
2482
2713
  }
2483
- get e0() {
2484
- return this.ex;
2714
+ get a0() {
2715
+ return this.ao;
2485
2716
  }
2486
- set e0(a) {
2487
- let b = this.ex;
2488
- this.ex = a;
2489
- if (b != this.ex) {
2490
- this.jz("Value", b, a);
2717
+ set a0(a) {
2718
+ let b = this.ao;
2719
+ this.ao = a;
2720
+ if (b != this.ao) {
2721
+ this.kd("IsHover", b, a);
2491
2722
  }
2492
2723
  }
2493
- get ih() {
2494
- return this.e8;
2724
+ get disabled() {
2725
+ return this.al;
2495
2726
  }
2496
- set ih(a) {
2497
- let b = this.e8;
2498
- this.e8 = a;
2499
- if (b != this.e8) {
2500
- this.jz("Name", b, a);
2727
+ set disabled(a) {
2728
+ let b = this.al;
2729
+ this.al = a;
2730
+ if (b != this.al) {
2731
+ this.kd("IsDisabled", b, a);
2501
2732
  }
2502
2733
  }
2503
- get ah() {
2504
- return this.z;
2505
- }
2506
- get eu() {
2507
- return this.cc;
2734
+ get au() {
2735
+ return this.ai;
2508
2736
  }
2509
- set eu(a) {
2510
- let b = this.cc;
2511
- this.cc = a;
2512
- this.z = true;
2513
- if (b != this.cc) {
2514
- this.jz("TabIndex", b, a);
2737
+ set au(a) {
2738
+ let b = this.ai;
2739
+ this.ai = a;
2740
+ if (b != this.ai) {
2741
+ this.kd("DisableTransitions", b, a);
2515
2742
  }
2516
2743
  }
2517
- get fy() {
2518
- return this.e2;
2744
+ get as() {
2745
+ return this.ag;
2519
2746
  }
2520
- set fy(a) {
2521
- let b = this.e2;
2522
- this.e2 = a;
2523
- if (b != this.e2) {
2524
- this.jz("AriaLabel", b, a);
2747
+ set as(a) {
2748
+ let b = this.ag;
2749
+ this.ag = a;
2750
+ if (b != this.ag) {
2751
+ this.kd("DisablePointer", b, this.ag);
2525
2752
  }
2526
2753
  }
2527
- get focused() {
2528
- return this.ab;
2754
+ get bi() {
2755
+ return this.a5;
2529
2756
  }
2530
- set focused(a) {
2531
- let b = this.ab;
2532
- this.ab = a;
2533
- if (b != this.ab) {
2534
- this.jz("IsFocused", b, a);
2757
+ set bi(a) {
2758
+ let b = this.a5;
2759
+ this.a5 = a;
2760
+ if (b != this.a5) {
2761
+ this.kd("ContentPaddingLeft", b, this.a5);
2535
2762
  }
2536
2763
  }
2537
- get ak() {
2538
- return this.ac;
2764
+ get bk() {
2765
+ return this.a7;
2539
2766
  }
2540
- set ak(a) {
2541
- let b = this.ac;
2542
- this.ac = a;
2543
- if (b != this.ac) {
2544
- this.jz("IsFocusStyleEnabled", b, a);
2767
+ set bk(a) {
2768
+ let b = this.a7;
2769
+ this.a7 = a;
2770
+ if (b != this.a7) {
2771
+ this.kd("ContentPaddingTop", b, this.a7);
2545
2772
  }
2546
2773
  }
2547
- get af() {
2548
- return this.x;
2774
+ get bj() {
2775
+ return this.a6;
2549
2776
  }
2550
- set af(a) {
2551
- let b = this.x;
2552
- this.x = a;
2553
- if (b != this.x) {
2554
- this.jz("DisableRipple", b, a);
2777
+ set bj(a) {
2778
+ let b = this.a6;
2779
+ this.a6 = a;
2780
+ if (b != this.a6) {
2781
+ this.kd("ContentPaddingRight", b, this.a6);
2555
2782
  }
2556
2783
  }
2557
- get ae() {
2558
- return this.w;
2784
+ get bh() {
2785
+ return this.a4;
2559
2786
  }
2560
- set ae(a) {
2561
- let b = this.w;
2562
- this.w = a;
2563
- if (b != this.w) {
2564
- this.jz("ActualDisableRipple", b, a);
2787
+ set bh(a) {
2788
+ let b = this.a4;
2789
+ this.a4 = a;
2790
+ if (b != this.a4) {
2791
+ this.kd("ContentPaddingBottom", b, this.a4);
2565
2792
  }
2566
2793
  }
2567
- get al() {
2568
- return this.ad;
2794
+ get k5() {
2795
+ return this.k4;
2569
2796
  }
2570
- set al(a) {
2571
- let b = this.ad;
2572
- this.ad = a;
2573
- if (b != this.ad) {
2574
- this.jz("IsHover", b, a);
2797
+ set k5(a) {
2798
+ let b = this.k4;
2799
+ this.k4 = a;
2800
+ if (b != this.k4) {
2801
+ this.kd("HorizontalContentAlignment", enumGetBox(HorizontalAlignment_$type, b), enumGetBox(HorizontalAlignment_$type, this.k4));
2575
2802
  }
2576
2803
  }
2577
- get disabled() {
2578
- return this.aa;
2804
+ get q9() {
2805
+ return this.q8;
2579
2806
  }
2580
- set disabled(a) {
2581
- let b = this.aa;
2582
- this.aa = a;
2583
- if (b != this.aa) {
2584
- this.jz("IsDisabled", b, a);
2807
+ set q9(a) {
2808
+ let b = this.q8;
2809
+ this.q8 = a;
2810
+ if (b != this.q8) {
2811
+ this.kd("VerticalContentAlignment", enumGetBox(VerticalAlignment_$type, b), enumGetBox(VerticalAlignment_$type, this.q8));
2585
2812
  }
2586
2813
  }
2587
- get ag() {
2588
- return this.y;
2814
+ get aq() {
2815
+ return this.ae;
2589
2816
  }
2590
- set ag(a) {
2591
- let b = this.y;
2592
- this.y = a;
2593
- if (b != this.y) {
2594
- this.jz("DisableTransitions", b, a);
2817
+ set aq(a) {
2818
+ let b = this.ae;
2819
+ this.ae = a;
2820
+ if (b != this.ae) {
2821
+ this.kd("ClickTunneling", b, this.ae);
2595
2822
  }
2596
2823
  }
2597
- j0() {
2598
- this.jr();
2599
- this.view.ar(this.nj, BrushUtil.g(0, 0, 0, 0));
2824
+ ke() {
2600
2825
  this.j3();
2826
+ this.view.aw(this.np, BrushUtil.g(0, 0, 0, 0));
2827
+ this.kh();
2601
2828
  }
2602
2829
  get a() {
2603
2830
  let a = new AnimationKeyFrameEffectTiming();
@@ -2605,67 +2832,70 @@ export let XButton = /*@__PURE__*/ (() => {
2605
2832
  a.b = 0;
2606
2833
  return a;
2607
2834
  }
2608
- jr() {
2609
- this.view.ab();
2835
+ j3() {
2836
+ this.view.ae();
2610
2837
  }
2611
2838
  onDetachedFromUI() {
2612
- this.view.af();
2839
+ this.view.aj();
2613
2840
  }
2614
2841
  onAttachedToUI() {
2615
- this.view.ad();
2842
+ this.view.ag();
2616
2843
  }
2617
2844
  appendButtonContent(a) {
2618
- this.view.z(a);
2845
+ this.view.ac(a);
2619
2846
  }
2620
2847
  clearButtonContent() {
2621
- this.view.aa();
2848
+ this.view.ad();
2622
2849
  }
2623
- am() {
2850
+ getButtonContent() {
2851
+ return this.view.r();
2852
+ }
2853
+ a1() {
2624
2854
  return this.view.g();
2625
2855
  }
2626
- ey() {
2856
+ d7() {
2627
2857
  return this.b();
2628
2858
  }
2629
- gg() {
2859
+ f0() {
2630
2860
  let a = this.b();
2631
2861
  return a.ab();
2632
2862
  }
2633
2863
  b() {
2634
2864
  let a = this.view.q;
2635
- let b = this.view.r;
2865
+ let b = this.view.s;
2636
2866
  let c = new ButtonVisualModelExport();
2637
2867
  let d = UIElementPropertyAccessorFactory.c.a(12, 0);
2638
2868
  let e = d.b(a);
2639
2869
  let f = this.view.a();
2640
2870
  c.s = f[0];
2641
2871
  c.q = f[1];
2642
- c.p = NativeUI.c(a);
2643
- c.t = NativeUI.i(a);
2644
- c.h = this.i;
2645
- c.i = this.l;
2646
- c.c = AppearanceHelper.a(NativeUI.ag(a));
2647
- c.g = AppearanceHelper.a(this.nl);
2648
- c.d = AppearanceHelper.a(this.ni);
2649
- c.a = AppearanceHelper.a(this.m8);
2650
- c.u = this.cg;
2651
- c.e = AppearanceHelper.a(this.nj);
2652
- c.ah = this.kd;
2653
- c.b = AppearanceHelper.a(NativeUI.af(a));
2654
- c.j = this.p;
2655
- c.f = AppearanceHelper.a(NativeUI.ah(b));
2656
- c.o = this.aw;
2657
- c.x = this.gc;
2658
- c.y = this.hf;
2659
- c.z = this.hh;
2660
- c.w = this.fw;
2661
- c.v = this.view.r.getNativeElement().innerText;
2662
- c.aa = this.ih;
2872
+ c.p = NativeUI.d(a);
2873
+ c.t = NativeUI.j(a);
2874
+ c.h = this.n;
2875
+ c.i = this.q;
2876
+ c.c = AppearanceHelper.a(NativeUI.ai(a));
2877
+ c.g = AppearanceHelper.a(this.nr);
2878
+ c.d = AppearanceHelper.a(this.no);
2879
+ c.a = AppearanceHelper.a(this.ne);
2880
+ c.u = this.ct;
2881
+ c.e = AppearanceHelper.a(this.np);
2882
+ c.ah = this.kr;
2883
+ c.b = AppearanceHelper.a(NativeUI.ah(a));
2884
+ c.j = this.u;
2885
+ c.f = AppearanceHelper.a(NativeUI.aj(b));
2886
+ c.o = this.bf;
2887
+ c.x = this.fw;
2888
+ c.y = this.g0;
2889
+ c.z = this.g2;
2890
+ c.w = this.e7;
2891
+ c.v = this.view.s.getNativeElement().innerText;
2892
+ c.aa = this.h2;
2663
2893
  c.m = this.focused;
2664
- c.k = this.ae;
2665
- c.n = this.al;
2894
+ c.k = this.ap;
2895
+ c.n = this.a0;
2666
2896
  c.l = this.disabled;
2667
- if (this.v != null) {
2668
- let g = this.v;
2897
+ if (this.aa != null) {
2898
+ let g = this.aa;
2669
2899
  if (this.view != null && g.n == null) {
2670
2900
  let h = this.view.k;
2671
2901
  let i = FontUtil.getFontInfoFromString(h, g.fontString);
@@ -2695,190 +2925,367 @@ export let XButton = /*@__PURE__*/ (() => {
2695
2925
  return c;
2696
2926
  }
2697
2927
  provideContainer(a) {
2698
- this.view.ae(a);
2928
+ this.view.ai(a);
2699
2929
  }
2700
2930
  }
2701
2931
  XButton.$t = /*@__PURE__*/ markType(XButton, 'XButton', Base.$, [INotifyPropertyChanged_$type]);
2702
- XButton.rt = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2703
- XButton.rh = /*@__PURE__*/ BrushUtil.g(30, 0, 0, 0);
2704
- XButton.p8 = /*@__PURE__*/ BrushUtil.g(20, 0, 0, 0);
2705
- XButton.s = 1;
2706
- XButton.rk = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2707
- XButton.rl = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2708
- XButton.rm = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2709
- XButton.du = 0;
2710
- XButton.dx = 2;
2711
- XButton.dw = 4;
2712
- XButton.dv = 8;
2713
- XButton.rj = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2714
- XButton.rr = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2715
- XButton.ks = /*@__PURE__*/ new CornerRadius(0, 4);
2716
- XButton.ba = NaN;
2717
- XButton.ri = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2718
- XButton.rs = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2719
- XButton.rq = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2720
- XButton.rp = /*@__PURE__*/ BrushUtil.g(255, 220, 83, 145);
2721
- XButton.rn = /*@__PURE__*/ BrushUtil.g(255, 220, 83, 145);
2722
- XButton.ro = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2723
- XButton.qm = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2724
- XButton.qn = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2725
- XButton.qo = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2726
- XButton.dh = 0;
2727
- XButton.dk = 0;
2728
- XButton.dj = 0;
2729
- XButton.di = 0;
2730
- XButton.ql = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2731
- XButton.qt = null;
2732
- XButton.kp = /*@__PURE__*/ new CornerRadius(0, 4);
2733
- XButton.a7 = NaN;
2734
- XButton.qk = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2735
- XButton.qu = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2736
- XButton.qs = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2737
- XButton.qr = /*@__PURE__*/ BrushUtil.g(13, 228, 28, 119);
2738
- XButton.qp = /*@__PURE__*/ BrushUtil.g(30, 228, 28, 119);
2739
- XButton.qq = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2740
- XButton.q8 = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2741
- XButton.q9 = /*@__PURE__*/ BrushUtil.g(30, 0, 0, 0);
2742
- XButton.ra = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2743
- XButton.dq = 0;
2744
- XButton.dt = 0;
2745
- XButton.ds = 0;
2746
- XButton.dr = 0;
2747
- XButton.q7 = /*@__PURE__*/ BrushUtil.g(30, 0, 0, 0);
2748
- XButton.rf = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2749
- XButton.kr = /*@__PURE__*/ new CornerRadius(0, 4);
2750
- XButton.a9 = 1;
2751
- XButton.q6 = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2752
- XButton.rg = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2753
- XButton.re = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2754
- XButton.rd = /*@__PURE__*/ BrushUtil.g(13, 228, 28, 119);
2755
- XButton.rb = /*@__PURE__*/ BrushUtil.g(30, 228, 28, 119);
2756
- XButton.rc = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2757
- XButton.qx = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2758
- XButton.qy = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2759
- XButton.qz = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2760
- XButton.dl = 0;
2761
- XButton.dp = 0;
2762
- XButton.dn = 0;
2763
- XButton.dm = 0;
2764
- XButton.qw = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2765
- XButton.q4 = null;
2766
- XButton.kq = /*@__PURE__*/ new CornerRadius(0, 28);
2767
- XButton.a8 = NaN;
2768
- XButton.qv = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2769
- XButton.q5 = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2770
- XButton.q3 = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2771
- XButton.q2 = /*@__PURE__*/ BrushUtil.g(30, 0, 0, 0);
2772
- XButton.q0 = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2773
- XButton.q1 = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2774
- XButton.qb = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2775
- XButton.qc = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2776
- XButton.qd = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2777
- XButton.dd = 0;
2778
- XButton.dg = 6;
2779
- XButton.df = 12;
2780
- XButton.de = 12;
2781
- XButton.qa = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2782
- XButton.qi = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2783
- XButton.ko = /*@__PURE__*/ new CornerRadius(0, 28);
2784
- XButton.a6 = NaN;
2785
- XButton.p9 = /*@__PURE__*/ BrushUtil.g(255, 228, 28, 119);
2786
- XButton.qj = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2787
- XButton.qh = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2788
- XButton.qg = /*@__PURE__*/ BrushUtil.g(255, 220, 83, 145);
2789
- XButton.qe = /*@__PURE__*/ BrushUtil.g(255, 220, 83, 145);
2790
- XButton.qf = /*@__PURE__*/ BrushUtil.g(255, 0, 0, 0);
2791
- XButton.pa = /*@__PURE__*/ BrushUtil.g(100, 33, 150, 243);
2792
- XButton.oy = /*@__PURE__*/ BrushUtil.g(70, 33, 150, 243);
2793
- XButton.np = /*@__PURE__*/ BrushUtil.g(40, 33, 150, 243);
2794
- XButton.q = 2;
2795
- XButton.o1 = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2796
- XButton.o2 = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2797
- XButton.o3 = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2798
- XButton.cx = 0;
2799
- XButton.c0 = 0;
2800
- XButton.cz = 0;
2801
- XButton.cy = 2;
2802
- XButton.o0 = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2803
- XButton.o8 = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2804
- XButton.kk = /*@__PURE__*/ new CornerRadius(0, 3);
2805
- XButton.a2 = NaN;
2806
- XButton.oz = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2807
- XButton.o9 = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2808
- XButton.o7 = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2809
- XButton.o6 = /*@__PURE__*/ BrushUtil.g(255, 27, 135, 220);
2810
- XButton.o4 = /*@__PURE__*/ BrushUtil.g(255, 21, 112, 184);
2811
- XButton.o5 = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2812
- XButton.n3 = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2813
- XButton.n4 = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2814
- XButton.n5 = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2815
- XButton.cl = 0;
2816
- XButton.co = 0;
2817
- XButton.cn = 0;
2818
- XButton.cm = 2;
2819
- XButton.n2 = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2820
- XButton.oa = /*@__PURE__*/ BrushUtil.g(100, 33, 150, 243);
2821
- XButton.kh = /*@__PURE__*/ new CornerRadius(0, 3);
2822
- XButton.az = NaN;
2823
- XButton.n1 = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2824
- XButton.ob = /*@__PURE__*/ BrushUtil.g(255, 119, 119, 119);
2825
- XButton.n9 = /*@__PURE__*/ BrushUtil.g(255, 119, 119, 119);
2826
- XButton.n8 = /*@__PURE__*/ BrushUtil.g(26, 33, 150, 243);
2827
- XButton.n6 = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2828
- XButton.n7 = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2829
- XButton.op = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2830
- XButton.oq = /*@__PURE__*/ BrushUtil.g(30, 0, 0, 0);
2831
- XButton.or = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2832
- XButton.ct = 0;
2833
- XButton.cw = 0;
2834
- XButton.cv = 0;
2835
- XButton.cu = 2;
2836
- XButton.oo = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2837
- XButton.ow = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2838
- XButton.kj = /*@__PURE__*/ new CornerRadius(0, 3);
2839
- XButton.a1 = 1;
2840
- XButton.on = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2841
- XButton.ox = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2842
- XButton.ov = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2843
- XButton.ou = /*@__PURE__*/ BrushUtil.g(26, 33, 150, 243);
2844
- XButton.os = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2845
- XButton.ot = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2846
- XButton.oe = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2847
- XButton.of = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2848
- XButton.og = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2849
- XButton.cp = 0;
2850
- XButton.cs = 0;
2851
- XButton.cr = 0;
2852
- XButton.cq = 2;
2853
- XButton.od = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2854
- XButton.ol = null;
2855
- XButton.ki = /*@__PURE__*/ new CornerRadius(0, 28);
2856
- XButton.a0 = NaN;
2857
- XButton.oc = /*@__PURE__*/ BrushUtil.g(0, 0, 0, 0);
2858
- XButton.om = /*@__PURE__*/ BrushUtil.g(255, 119, 119, 119);
2859
- XButton.ok = /*@__PURE__*/ BrushUtil.g(255, 119, 119, 119);
2860
- XButton.oj = /*@__PURE__*/ BrushUtil.g(30, 0, 0, 0);
2861
- XButton.oh = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2862
- XButton.oi = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2863
- XButton.ns = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2864
- XButton.nt = /*@__PURE__*/ BrushUtil.g(10, 0, 0, 0);
2865
- XButton.nu = /*@__PURE__*/ BrushUtil.g(66, 0, 0, 0);
2866
- XButton.ch = 0;
2867
- XButton.ck = 0;
2868
- XButton.cj = 0;
2869
- XButton.ci = 2;
2870
- XButton.nr = /*@__PURE__*/ BrushUtil.g(138, 0, 0, 0);
2871
- XButton.nz = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2872
- XButton.kg = /*@__PURE__*/ new CornerRadius(0, 28);
2873
- XButton.ay = NaN;
2874
- XButton.nq = /*@__PURE__*/ BrushUtil.g(255, 33, 150, 243);
2875
- XButton.n0 = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2876
- XButton.ny = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2877
- XButton.nx = /*@__PURE__*/ BrushUtil.g(255, 27, 135, 220);
2878
- XButton.nv = /*@__PURE__*/ BrushUtil.g(255, 21, 112, 184);
2879
- XButton.nw = /*@__PURE__*/ BrushUtil.g(255, 255, 255, 255);
2880
- XButton.h = 2;
2881
- XButton.ew = 0;
2882
- XButton.ev = 0;
2932
+ XButton.m = 2;
2933
+ XButton.d5 = 0;
2934
+ XButton.d4 = 0;
2935
+ XButton.i = /*@__PURE__*/ new Theme(1, /*@__PURE__*/ ((() => {
2936
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
2937
+ $ret.addItem("UmbraShadowColor", BrushUtil.g(66, 0, 0, 0));
2938
+ $ret.addItem("PenumbraShadowColor", BrushUtil.g(30, 0, 0, 0));
2939
+ $ret.addItem("AmbientShadowColor", BrushUtil.g(20, 0, 0, 0));
2940
+ $ret.addItem("ElevationMode", enumGetBox(ElevationMode_$type, 1));
2941
+ return $ret;
2942
+ })()), /*@__PURE__*/ ((() => {
2943
+ let $ret = new Dictionary$2(Base.$, Theme.$, 0);
2944
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 0), new Theme(0, ((() => {
2945
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
2946
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(10, 0, 0, 0));
2947
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(10, 0, 0, 0));
2948
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
2949
+ $ret.addItem("DisabledElevation", 0);
2950
+ $ret.addItem("RestingElevation", 2);
2951
+ $ret.addItem("HoverElevation", 4);
2952
+ $ret.addItem("FocusElevation", 8);
2953
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
2954
+ $ret.addItem("RippleColor", BrushUtil.g(255, 255, 255, 255));
2955
+ $ret.addItem("CornerRadius", new CornerRadius(0, 4));
2956
+ $ret.addItem("BorderWidth", NaN);
2957
+ $ret.addItem("BackgroundColor", BrushUtil.g(255, 228, 28, 119));
2958
+ $ret.addItem("TextColor", BrushUtil.g(255, 0, 0, 0));
2959
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 0, 0, 0));
2960
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(255, 220, 83, 145));
2961
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 220, 83, 145));
2962
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 0, 0, 0));
2963
+ return $ret;
2964
+ })())));
2965
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 1), new Theme(0, ((() => {
2966
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
2967
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
2968
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(0, 0, 0, 0));
2969
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
2970
+ $ret.addItem("DisabledElevation", 0);
2971
+ $ret.addItem("RestingElevation", 0);
2972
+ $ret.addItem("HoverElevation", 0);
2973
+ $ret.addItem("FocusElevation", 0);
2974
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
2975
+ $ret.addItem("RippleColor", null);
2976
+ $ret.addItem("CornerRadius", new CornerRadius(0, 4));
2977
+ $ret.addItem("BorderWidth", NaN);
2978
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
2979
+ $ret.addItem("TextColor", BrushUtil.g(255, 0, 0, 0));
2980
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 228, 28, 119));
2981
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(13, 228, 28, 119));
2982
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(30, 228, 28, 119));
2983
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 228, 28, 119));
2984
+ return $ret;
2985
+ })())));
2986
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 2), new Theme(0, ((() => {
2987
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
2988
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
2989
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(30, 0, 0, 0));
2990
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
2991
+ $ret.addItem("DisabledElevation", 0);
2992
+ $ret.addItem("RestingElevation", 0);
2993
+ $ret.addItem("HoverElevation", 0);
2994
+ $ret.addItem("FocusElevation", 0);
2995
+ $ret.addItem("BorderColor", BrushUtil.g(30, 0, 0, 0));
2996
+ $ret.addItem("RippleColor", BrushUtil.g(0, 0, 0, 0));
2997
+ $ret.addItem("CornerRadius", new CornerRadius(0, 4));
2998
+ $ret.addItem("BorderWidth", 1);
2999
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3000
+ $ret.addItem("TextColor", BrushUtil.g(255, 228, 28, 119));
3001
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 228, 28, 119));
3002
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(13, 228, 28, 119));
3003
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(30, 228, 28, 119));
3004
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 228, 28, 119));
3005
+ return $ret;
3006
+ })())));
3007
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 4), new Theme(0, ((() => {
3008
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3009
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3010
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(0, 0, 0, 0));
3011
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3012
+ $ret.addItem("DisabledElevation", 0);
3013
+ $ret.addItem("RestingElevation", 0);
3014
+ $ret.addItem("HoverElevation", 0);
3015
+ $ret.addItem("FocusElevation", 0);
3016
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3017
+ $ret.addItem("RippleColor", null);
3018
+ $ret.addItem("CornerRadius", new CornerRadius(0, 28));
3019
+ $ret.addItem("BorderWidth", NaN);
3020
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3021
+ $ret.addItem("TextColor", BrushUtil.g(255, 0, 0, 0));
3022
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 0, 0, 0));
3023
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(30, 0, 0, 0));
3024
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(66, 0, 0, 0));
3025
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 0, 0, 0));
3026
+ return $ret;
3027
+ })())));
3028
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 3), new Theme(0, ((() => {
3029
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3030
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(10, 0, 0, 0));
3031
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(10, 0, 0, 0));
3032
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3033
+ $ret.addItem("DisabledElevation", 0);
3034
+ $ret.addItem("RestingElevation", 6);
3035
+ $ret.addItem("HoverElevation", 12);
3036
+ $ret.addItem("FocusElevation", 12);
3037
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3038
+ $ret.addItem("RippleColor", BrushUtil.g(255, 255, 255, 255));
3039
+ $ret.addItem("CornerRadius", new CornerRadius(0, 28));
3040
+ $ret.addItem("BorderWidth", NaN);
3041
+ $ret.addItem("BackgroundColor", BrushUtil.g(255, 228, 28, 119));
3042
+ $ret.addItem("TextColor", BrushUtil.g(255, 0, 0, 0));
3043
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 0, 0, 0));
3044
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(255, 220, 83, 145));
3045
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 220, 83, 145));
3046
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 0, 0, 0));
3047
+ return $ret;
3048
+ })())));
3049
+ return $ret;
3050
+ })()));
3051
+ XButton.h = /*@__PURE__*/ new Theme(1, /*@__PURE__*/ ((() => {
3052
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3053
+ $ret.addItem("UmbraShadowColor", BrushUtil.g(100, 33, 150, 243));
3054
+ $ret.addItem("PenumbraShadowColor", BrushUtil.g(70, 33, 150, 243));
3055
+ $ret.addItem("AmbientShadowColor", BrushUtil.g(40, 33, 150, 243));
3056
+ $ret.addItem("ElevationMode", enumGetBox(ElevationMode_$type, 2));
3057
+ return $ret;
3058
+ })()), /*@__PURE__*/ ((() => {
3059
+ let $ret = new Dictionary$2(Base.$, Theme.$, 0);
3060
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 0), new Theme(0, ((() => {
3061
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3062
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(10, 0, 0, 0));
3063
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(10, 0, 0, 0));
3064
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3065
+ $ret.addItem("DisabledElevation", 0);
3066
+ $ret.addItem("RestingElevation", 0);
3067
+ $ret.addItem("HoverElevation", 0);
3068
+ $ret.addItem("FocusElevation", 2);
3069
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3070
+ $ret.addItem("RippleColor", BrushUtil.g(255, 255, 255, 255));
3071
+ $ret.addItem("CornerRadius", new CornerRadius(0, 3));
3072
+ $ret.addItem("BorderWidth", NaN);
3073
+ $ret.addItem("BackgroundColor", BrushUtil.g(255, 33, 150, 243));
3074
+ $ret.addItem("TextColor", BrushUtil.g(255, 255, 255, 255));
3075
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 255, 255, 255));
3076
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(255, 27, 135, 220));
3077
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 21, 112, 184));
3078
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 255, 255, 255));
3079
+ return $ret;
3080
+ })())));
3081
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 1), new Theme(0, ((() => {
3082
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3083
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3084
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(0, 0, 0, 0));
3085
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3086
+ $ret.addItem("DisabledElevation", 0);
3087
+ $ret.addItem("RestingElevation", 0);
3088
+ $ret.addItem("HoverElevation", 0);
3089
+ $ret.addItem("FocusElevation", 2);
3090
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3091
+ $ret.addItem("RippleColor", BrushUtil.g(100, 33, 150, 243));
3092
+ $ret.addItem("CornerRadius", new CornerRadius(0, 3));
3093
+ $ret.addItem("BorderWidth", NaN);
3094
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3095
+ $ret.addItem("TextColor", BrushUtil.g(255, 119, 119, 119));
3096
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 119, 119, 119));
3097
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(26, 33, 150, 243));
3098
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3099
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 33, 150, 243));
3100
+ return $ret;
3101
+ })())));
3102
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 2), new Theme(0, ((() => {
3103
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3104
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3105
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(30, 0, 0, 0));
3106
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3107
+ $ret.addItem("DisabledElevation", 0);
3108
+ $ret.addItem("RestingElevation", 0);
3109
+ $ret.addItem("HoverElevation", 0);
3110
+ $ret.addItem("FocusElevation", 2);
3111
+ $ret.addItem("BorderColor", BrushUtil.g(255, 33, 150, 243));
3112
+ $ret.addItem("RippleColor", BrushUtil.g(0, 0, 0, 0));
3113
+ $ret.addItem("CornerRadius", new CornerRadius(0, 3));
3114
+ $ret.addItem("BorderWidth", 1);
3115
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3116
+ $ret.addItem("TextColor", BrushUtil.g(255, 33, 150, 243));
3117
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 33, 150, 243));
3118
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(26, 33, 150, 243));
3119
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 33, 150, 243));
3120
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 255, 255, 255));
3121
+ return $ret;
3122
+ })())));
3123
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 4), new Theme(0, ((() => {
3124
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3125
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3126
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(0, 0, 0, 0));
3127
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3128
+ $ret.addItem("DisabledElevation", 0);
3129
+ $ret.addItem("RestingElevation", 0);
3130
+ $ret.addItem("HoverElevation", 0);
3131
+ $ret.addItem("FocusElevation", 2);
3132
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3133
+ $ret.addItem("RippleColor", null);
3134
+ $ret.addItem("CornerRadius", new CornerRadius(0, 28));
3135
+ $ret.addItem("BorderWidth", NaN);
3136
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3137
+ $ret.addItem("TextColor", BrushUtil.g(255, 119, 119, 119));
3138
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 119, 119, 119));
3139
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(30, 0, 0, 0));
3140
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(66, 0, 0, 0));
3141
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 33, 150, 243));
3142
+ return $ret;
3143
+ })())));
3144
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 3), new Theme(0, ((() => {
3145
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3146
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(10, 0, 0, 0));
3147
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(10, 0, 0, 0));
3148
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3149
+ $ret.addItem("DisabledElevation", 0);
3150
+ $ret.addItem("RestingElevation", 0);
3151
+ $ret.addItem("HoverElevation", 0);
3152
+ $ret.addItem("FocusElevation", 2);
3153
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3154
+ $ret.addItem("RippleColor", BrushUtil.g(255, 255, 255, 255));
3155
+ $ret.addItem("CornerRadius", new CornerRadius(0, 28));
3156
+ $ret.addItem("BorderWidth", NaN);
3157
+ $ret.addItem("BackgroundColor", BrushUtil.g(255, 33, 150, 243));
3158
+ $ret.addItem("TextColor", BrushUtil.g(255, 255, 255, 255));
3159
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 255, 255, 255));
3160
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(255, 27, 135, 220));
3161
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 21, 112, 184));
3162
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 255, 255, 255));
3163
+ return $ret;
3164
+ })())));
3165
+ return $ret;
3166
+ })()));
3167
+ XButton.j = /*@__PURE__*/ new Theme(1, /*@__PURE__*/ ((() => {
3168
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3169
+ $ret.addItem("UmbraShadowColor", BrushUtil.g(100, 33, 150, 243));
3170
+ $ret.addItem("PenumbraShadowColor", BrushUtil.g(70, 33, 150, 243));
3171
+ $ret.addItem("AmbientShadowColor", BrushUtil.g(40, 33, 150, 243));
3172
+ $ret.addItem("ElevationMode", enumGetBox(ElevationMode_$type, 2));
3173
+ return $ret;
3174
+ })()), /*@__PURE__*/ ((() => {
3175
+ let $ret = new Dictionary$2(Base.$, Theme.$, 0);
3176
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 0), new Theme(0, ((() => {
3177
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3178
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(10, 0, 0, 0));
3179
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(10, 0, 0, 0));
3180
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3181
+ $ret.addItem("DisabledElevation", 0);
3182
+ $ret.addItem("RestingElevation", 0);
3183
+ $ret.addItem("HoverElevation", 0);
3184
+ $ret.addItem("FocusElevation", 2);
3185
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3186
+ $ret.addItem("RippleColor", BrushUtil.g(255, 255, 255, 255));
3187
+ $ret.addItem("CornerRadius", new CornerRadius(0, 3));
3188
+ $ret.addItem("BorderWidth", NaN);
3189
+ $ret.addItem("BackgroundColor", BrushUtil.g(255, 33, 150, 243));
3190
+ $ret.addItem("TextColor", BrushUtil.g(255, 255, 255, 255));
3191
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 255, 255, 255));
3192
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(255, 27, 135, 220));
3193
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 21, 112, 184));
3194
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 255, 255, 255));
3195
+ return $ret;
3196
+ })())));
3197
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 1), new Theme(0, ((() => {
3198
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3199
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3200
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(0, 0, 0, 0));
3201
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3202
+ $ret.addItem("DisabledElevation", 0);
3203
+ $ret.addItem("RestingElevation", 0);
3204
+ $ret.addItem("HoverElevation", 0);
3205
+ $ret.addItem("FocusElevation", 2);
3206
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3207
+ $ret.addItem("RippleColor", BrushUtil.g(100, 33, 150, 243));
3208
+ $ret.addItem("CornerRadius", new CornerRadius(0, 3));
3209
+ $ret.addItem("BorderWidth", NaN);
3210
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3211
+ $ret.addItem("TextColor", BrushUtil.g(255, 119, 119, 119));
3212
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 119, 119, 119));
3213
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(26, 33, 150, 243));
3214
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3215
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 33, 150, 243));
3216
+ return $ret;
3217
+ })())));
3218
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 2), new Theme(0, ((() => {
3219
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3220
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3221
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(30, 0, 0, 0));
3222
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3223
+ $ret.addItem("DisabledElevation", 0);
3224
+ $ret.addItem("RestingElevation", 0);
3225
+ $ret.addItem("HoverElevation", 0);
3226
+ $ret.addItem("FocusElevation", 2);
3227
+ $ret.addItem("BorderColor", BrushUtil.g(255, 33, 150, 243));
3228
+ $ret.addItem("RippleColor", BrushUtil.g(0, 0, 0, 0));
3229
+ $ret.addItem("CornerRadius", new CornerRadius(0, 3));
3230
+ $ret.addItem("BorderWidth", 1);
3231
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3232
+ $ret.addItem("TextColor", BrushUtil.g(255, 33, 150, 243));
3233
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 33, 150, 243));
3234
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(26, 33, 150, 243));
3235
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 33, 150, 243));
3236
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 255, 255, 255));
3237
+ return $ret;
3238
+ })())));
3239
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 4), new Theme(0, ((() => {
3240
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3241
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(0, 0, 0, 0));
3242
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(0, 0, 0, 0));
3243
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3244
+ $ret.addItem("DisabledElevation", 0);
3245
+ $ret.addItem("RestingElevation", 0);
3246
+ $ret.addItem("HoverElevation", 0);
3247
+ $ret.addItem("FocusElevation", 2);
3248
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3249
+ $ret.addItem("RippleColor", null);
3250
+ $ret.addItem("CornerRadius", new CornerRadius(0, 28));
3251
+ $ret.addItem("BorderWidth", NaN);
3252
+ $ret.addItem("BackgroundColor", BrushUtil.g(0, 0, 0, 0));
3253
+ $ret.addItem("TextColor", BrushUtil.g(255, 0, 0, 0));
3254
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 0, 0, 0));
3255
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(51, 178, 191, 220));
3256
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(51, 178, 191, 220));
3257
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 0, 0, 0));
3258
+ return $ret;
3259
+ })())));
3260
+ $ret.addItem(enumGetBox(ButtonDisplayStyle_$type, 3), new Theme(0, ((() => {
3261
+ let $ret = new Dictionary$2(String_$type, Base.$, 0);
3262
+ $ret.addItem("DisabledBackgroundColor", BrushUtil.g(10, 0, 0, 0));
3263
+ $ret.addItem("DisabledBorderColor", BrushUtil.g(10, 0, 0, 0));
3264
+ $ret.addItem("DisabledTextColor", BrushUtil.g(66, 0, 0, 0));
3265
+ $ret.addItem("DisabledElevation", 0);
3266
+ $ret.addItem("RestingElevation", 0);
3267
+ $ret.addItem("HoverElevation", 0);
3268
+ $ret.addItem("FocusElevation", 2);
3269
+ $ret.addItem("BorderColor", BrushUtil.g(138, 0, 0, 0));
3270
+ $ret.addItem("RippleColor", BrushUtil.g(255, 255, 255, 255));
3271
+ $ret.addItem("CornerRadius", new CornerRadius(0, 28));
3272
+ $ret.addItem("BorderWidth", NaN);
3273
+ $ret.addItem("BackgroundColor", BrushUtil.g(255, 33, 150, 243));
3274
+ $ret.addItem("TextColor", BrushUtil.g(255, 255, 255, 255));
3275
+ $ret.addItem("HoverTextColor", BrushUtil.g(255, 255, 255, 255));
3276
+ $ret.addItem("HoverBackgroundColor", BrushUtil.g(255, 27, 135, 220));
3277
+ $ret.addItem("FocusBackgroundColor", BrushUtil.g(255, 21, 112, 184));
3278
+ $ret.addItem("FocusTextColor", BrushUtil.g(255, 255, 255, 255));
3279
+ return $ret;
3280
+ })())));
3281
+ return $ret;
3282
+ })()));
3283
+ XButton.k = /*@__PURE__*/ new ThemeResolver(1, /*@__PURE__*/ ((() => {
3284
+ let $ret = new Dictionary$2(BaseControlTheme_$type, Theme.$, 0);
3285
+ $ret.addItem(2, XButton.i);
3286
+ $ret.addItem(1, XButton.h);
3287
+ $ret.addItem(3, XButton.j);
3288
+ return $ret;
3289
+ })()), 2);
2883
3290
  return XButton;
2884
3291
  })();