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.
- package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- 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
|
-
|
|
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
|
|
63
|
+
get s() {
|
|
58
64
|
return this.m;
|
|
59
65
|
}
|
|
60
|
-
|
|
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.
|
|
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.
|
|
89
|
-
NativeUI.
|
|
90
|
-
this.n.setAttribute("id", this.b.
|
|
91
|
-
this.
|
|
92
|
-
this.h.add(c.listen("change", runOn(this, this.
|
|
93
|
-
this.h.add(c.listen("click", runOn(this, this.
|
|
94
|
-
this.h.add(c.listen("focus", runOn(this, this.
|
|
95
|
-
this.h.add(c.listen("blur", runOn(this, this.
|
|
96
|
-
this.h.add(this.k.rootWrapper.listen("mouseenter", runOn(this, this.
|
|
97
|
-
this.h.add(this.k.rootWrapper.listen("mouseleave", runOn(this, this.
|
|
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.
|
|
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.
|
|
130
|
-
this.o.setStyleProperty("align-items", this.b.
|
|
131
|
-
let direction_ = this.b.
|
|
132
|
-
let display_ = this.b.
|
|
133
|
-
let alignItems_ = this.b.
|
|
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.
|
|
146
|
+
this.b.ke();
|
|
140
147
|
}
|
|
141
|
-
|
|
142
|
-
this.c.i = this.b.
|
|
148
|
+
ak() {
|
|
149
|
+
this.c.i = this.b.ap;
|
|
143
150
|
}
|
|
144
|
-
|
|
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.
|
|
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.
|
|
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
|
-
|
|
250
|
+
au(a) {
|
|
211
251
|
this.j = a;
|
|
212
252
|
}
|
|
213
|
-
|
|
253
|
+
at(a) {
|
|
214
254
|
this.i = a;
|
|
215
255
|
}
|
|
216
|
-
|
|
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
|
-
|
|
260
|
+
al() {
|
|
221
261
|
if (this.k != null) {
|
|
222
|
-
this.k.rootWrapper.setStyleProperty("display", this.b.
|
|
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.
|
|
226
|
-
let display_ = this.b.
|
|
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
|
-
|
|
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.
|
|
239
|
-
this.n.setStyleProperty("align-items", this.b.
|
|
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.
|
|
243
|
-
let alignItems_ = this.b.
|
|
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
|
-
|
|
302
|
+
am() {
|
|
254
303
|
if (this.k != null) {
|
|
255
|
-
this.k.rootWrapper.setStyleProperty("flex-direction", this.b.
|
|
256
|
-
this.n.setStyleProperty("flex-direction", this.b.
|
|
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.
|
|
261
|
-
let direction_ = this.b.
|
|
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
|
-
|
|
319
|
+
an() {
|
|
271
320
|
if (this.k != null) {
|
|
272
|
-
this.k.rootWrapper.setStyleProperty("flex-grow", this.b.
|
|
273
|
-
this.n.setStyleProperty("flex-grow", this.b.
|
|
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
|
-
|
|
330
|
+
t(a) {
|
|
282
331
|
}
|
|
283
|
-
|
|
332
|
+
av() {
|
|
284
333
|
if (this.g()) {
|
|
285
|
-
let a = this.b.
|
|
286
|
-
this.n.setAttribute("name", this.b.
|
|
287
|
-
this.n.setProperty("value", this.b.
|
|
288
|
-
if (this.b.
|
|
289
|
-
this.n.setAttribute("tabindex", this.b.
|
|
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.
|
|
343
|
+
this.n.setAttribute("aria-label", this.b.e9);
|
|
344
|
+
this.n.setStyleProperty("cursor", !this.b.as ? "pointer" : "unset");
|
|
295
345
|
}
|
|
296
346
|
}
|
|
297
|
-
|
|
347
|
+
ap() {
|
|
298
348
|
if (this.g()) {
|
|
299
|
-
let a = this.b.
|
|
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.
|
|
354
|
+
this.b.kb();
|
|
308
355
|
}
|
|
309
356
|
v(a) {
|
|
310
|
-
this.b.
|
|
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.
|
|
366
|
+
if (!this.b.aq) {
|
|
367
|
+
a.preventDefault();
|
|
368
|
+
}
|
|
369
|
+
this.b.j6();
|
|
314
370
|
}
|
|
315
|
-
|
|
316
|
-
this.b.
|
|
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
|
-
|
|
380
|
+
x(a) {
|
|
322
381
|
}
|
|
323
|
-
|
|
382
|
+
ae() {
|
|
324
383
|
if (KeyFrameAnimationFactory.h == null) {
|
|
325
384
|
KeyFrameAnimationFactory.h = this.k;
|
|
326
385
|
}
|
|
327
386
|
}
|
|
328
|
-
|
|
387
|
+
ag() {
|
|
329
388
|
this.e = true;
|
|
330
|
-
this.h.add(this.n.listen("change", runOn(this, this.
|
|
331
|
-
this.h.add(this.n.listen("click", runOn(this, this.
|
|
332
|
-
this.h.add(this.n.listen("focus", runOn(this, this.
|
|
333
|
-
this.h.add(this.n.listen("blur", runOn(this, this.
|
|
334
|
-
this.h.add(this.m.listen("click", runOn(this, this.
|
|
335
|
-
this.h.add(this.n.listen("mouseenter", runOn(this, this.
|
|
336
|
-
this.h.add(this.n.listen("mouseleave", runOn(this, this.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
413
|
+
aw(a, b) {
|
|
353
414
|
this.c.ax = a;
|
|
354
415
|
this.c.aw = b;
|
|
355
416
|
}
|
|
356
|
-
|
|
357
|
-
let c = ElevationHelper.e(a, this.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
|
-
|
|
421
|
+
az(a) {
|
|
361
422
|
if (a != null) {
|
|
362
423
|
this.m.setStyleProperty("font", a.fontString);
|
|
363
424
|
}
|
|
364
425
|
}
|
|
365
|
-
|
|
426
|
+
ac(a) {
|
|
366
427
|
this.m.append(a);
|
|
367
428
|
}
|
|
368
|
-
|
|
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.
|
|
393
|
-
this.
|
|
394
|
-
this.
|
|
395
|
-
this.
|
|
396
|
-
this.
|
|
397
|
-
this.
|
|
398
|
-
this.
|
|
399
|
-
this.
|
|
400
|
-
this.
|
|
401
|
-
this.
|
|
402
|
-
this.
|
|
403
|
-
this.
|
|
404
|
-
this.
|
|
405
|
-
this.
|
|
406
|
-
this.
|
|
407
|
-
this.
|
|
408
|
-
this.
|
|
409
|
-
this.
|
|
410
|
-
this.
|
|
411
|
-
this.
|
|
412
|
-
this.
|
|
413
|
-
this.
|
|
414
|
-
this.
|
|
415
|
-
this.
|
|
416
|
-
this.
|
|
417
|
-
this.
|
|
418
|
-
this.
|
|
419
|
-
this.
|
|
420
|
-
this.
|
|
421
|
-
this.
|
|
422
|
-
this.
|
|
423
|
-
this.
|
|
424
|
-
this.
|
|
425
|
-
this.
|
|
426
|
-
this.
|
|
427
|
-
this.
|
|
428
|
-
this.
|
|
429
|
-
this.
|
|
430
|
-
this.
|
|
431
|
-
this.
|
|
432
|
-
this.
|
|
433
|
-
this.
|
|
434
|
-
this.
|
|
435
|
-
this.
|
|
436
|
-
this.
|
|
437
|
-
this.
|
|
438
|
-
this.
|
|
439
|
-
this.
|
|
440
|
-
this.
|
|
441
|
-
this.
|
|
442
|
-
this.
|
|
443
|
-
this.
|
|
444
|
-
this.
|
|
445
|
-
this.
|
|
446
|
-
this.
|
|
447
|
-
this.
|
|
448
|
-
this.
|
|
449
|
-
this.
|
|
450
|
-
this.
|
|
451
|
-
this.
|
|
452
|
-
this.
|
|
453
|
-
this.
|
|
454
|
-
this.
|
|
455
|
-
this.
|
|
456
|
-
this.
|
|
457
|
-
this.
|
|
458
|
-
this.
|
|
459
|
-
this.
|
|
460
|
-
this.
|
|
461
|
-
this.
|
|
462
|
-
this.
|
|
463
|
-
this.
|
|
464
|
-
this.
|
|
465
|
-
this.
|
|
466
|
-
this.
|
|
467
|
-
this.
|
|
468
|
-
this.
|
|
469
|
-
this.
|
|
470
|
-
this.
|
|
471
|
-
this.
|
|
472
|
-
this.
|
|
473
|
-
this.
|
|
474
|
-
this.
|
|
475
|
-
this.
|
|
476
|
-
this.
|
|
477
|
-
this.
|
|
478
|
-
this.
|
|
479
|
-
this.
|
|
480
|
-
this.
|
|
481
|
-
this.
|
|
482
|
-
this.
|
|
483
|
-
this.
|
|
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.
|
|
486
|
-
this.
|
|
487
|
-
this.
|
|
488
|
-
this.
|
|
489
|
-
this.
|
|
490
|
-
this.
|
|
491
|
-
this.
|
|
492
|
-
this.
|
|
493
|
-
this.
|
|
494
|
-
this.
|
|
495
|
-
this.
|
|
496
|
-
this.
|
|
497
|
-
this.
|
|
498
|
-
this.
|
|
499
|
-
this.
|
|
500
|
-
this.
|
|
501
|
-
this.
|
|
502
|
-
this.
|
|
503
|
-
this.
|
|
504
|
-
this.
|
|
505
|
-
this.
|
|
506
|
-
this.
|
|
507
|
-
this.
|
|
508
|
-
this.
|
|
509
|
-
this.
|
|
510
|
-
this.
|
|
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.
|
|
523
|
-
this.
|
|
524
|
-
this.
|
|
525
|
-
this.
|
|
526
|
-
this.
|
|
527
|
-
this.
|
|
528
|
-
this.
|
|
529
|
-
this.
|
|
530
|
-
this.
|
|
531
|
-
this.
|
|
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.
|
|
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.
|
|
547
|
-
this.
|
|
548
|
-
this.
|
|
549
|
-
this.
|
|
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.
|
|
554
|
-
this.
|
|
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.
|
|
561
|
-
this.
|
|
562
|
-
this.
|
|
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.
|
|
596
|
-
this.
|
|
597
|
-
this.mb = null;
|
|
607
|
+
this.b1 = -1;
|
|
608
|
+
this.t = 0;
|
|
598
609
|
this.mc = null;
|
|
599
|
-
this.
|
|
600
|
-
this.
|
|
601
|
-
this.
|
|
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.
|
|
605
|
-
this.
|
|
606
|
-
this.
|
|
607
|
-
this.
|
|
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.
|
|
611
|
-
this.
|
|
612
|
-
this.
|
|
613
|
-
this.
|
|
614
|
-
this.
|
|
615
|
-
this.
|
|
616
|
-
this.
|
|
617
|
-
this.
|
|
618
|
-
this.
|
|
619
|
-
this.
|
|
620
|
-
this.
|
|
621
|
-
this.
|
|
622
|
-
this.
|
|
623
|
-
this.
|
|
624
|
-
this.
|
|
625
|
-
this.
|
|
626
|
-
this.
|
|
627
|
-
this.
|
|
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.
|
|
630
|
-
this.
|
|
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.
|
|
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
|
-
|
|
726
|
+
kd(a, b, c) {
|
|
648
727
|
if (this.propertyChanged != null) {
|
|
649
728
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
650
729
|
}
|
|
651
|
-
this.
|
|
730
|
+
this.kf(a, b, c);
|
|
652
731
|
}
|
|
653
|
-
|
|
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.
|
|
838
|
+
this.ki();
|
|
760
839
|
break;
|
|
761
840
|
case "BaseTheme":
|
|
762
|
-
this.
|
|
763
|
-
this.
|
|
841
|
+
this.kj(this.n == 0 ? 2 : this.n);
|
|
842
|
+
this.ki();
|
|
764
843
|
break;
|
|
765
844
|
case "IsDisabled":
|
|
766
|
-
this.
|
|
767
|
-
this.
|
|
768
|
-
this.view.
|
|
845
|
+
this.ap = this.disabled || this.at;
|
|
846
|
+
this.ki();
|
|
847
|
+
this.view.aq();
|
|
769
848
|
break;
|
|
770
849
|
case "DisableRipple":
|
|
771
|
-
this.
|
|
772
|
-
this.
|
|
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.
|
|
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.
|
|
869
|
+
this.kh();
|
|
788
870
|
break;
|
|
789
871
|
case "Density":
|
|
790
|
-
this.
|
|
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.
|
|
796
|
-
this.
|
|
877
|
+
this.view.ay();
|
|
878
|
+
this.kh();
|
|
797
879
|
break;
|
|
798
880
|
case "DisplayType":
|
|
799
|
-
this.view.
|
|
800
|
-
this.
|
|
801
|
-
this.
|
|
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.
|
|
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.
|
|
906
|
+
this.view.am();
|
|
811
907
|
break;
|
|
812
908
|
case "FlexGrow":
|
|
813
|
-
this.view.
|
|
909
|
+
this.view.an();
|
|
814
910
|
break;
|
|
815
911
|
case "AlignItems":
|
|
816
|
-
this.view.
|
|
912
|
+
this.view.af();
|
|
817
913
|
break;
|
|
818
914
|
case "TabIndex":
|
|
819
|
-
|
|
915
|
+
case "DisablePointer":
|
|
916
|
+
this.view.av();
|
|
820
917
|
break;
|
|
821
918
|
case "MinWidth":
|
|
822
|
-
this.view.
|
|
823
|
-
this.view.
|
|
919
|
+
this.view.au(this.bu);
|
|
920
|
+
this.view.ay();
|
|
824
921
|
break;
|
|
825
922
|
case "MinHeight":
|
|
826
|
-
this.view.
|
|
827
|
-
this.view.
|
|
923
|
+
this.view.at(this.bt);
|
|
924
|
+
this.view.ay();
|
|
828
925
|
break;
|
|
829
926
|
}
|
|
830
927
|
}
|
|
831
|
-
|
|
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
|
-
|
|
835
|
-
this.
|
|
836
|
-
this.
|
|
837
|
-
this.
|
|
838
|
-
this.
|
|
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.
|
|
842
|
-
this.
|
|
843
|
-
this.
|
|
844
|
-
this.
|
|
845
|
-
this.
|
|
846
|
-
this.
|
|
847
|
-
this.
|
|
848
|
-
this.
|
|
849
|
-
this.
|
|
850
|
-
this.
|
|
851
|
-
this.
|
|
852
|
-
this.
|
|
853
|
-
this.
|
|
854
|
-
this.
|
|
855
|
-
this.
|
|
856
|
-
this.
|
|
857
|
-
this.
|
|
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.
|
|
861
|
-
this.
|
|
862
|
-
this.
|
|
863
|
-
this.
|
|
864
|
-
this.
|
|
865
|
-
this.
|
|
866
|
-
this.
|
|
867
|
-
this.
|
|
868
|
-
this.
|
|
869
|
-
this.
|
|
870
|
-
this.
|
|
871
|
-
this.
|
|
872
|
-
this.
|
|
873
|
-
this.
|
|
874
|
-
this.
|
|
875
|
-
this.
|
|
876
|
-
this.
|
|
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.
|
|
880
|
-
this.
|
|
881
|
-
this.
|
|
882
|
-
this.
|
|
883
|
-
this.
|
|
884
|
-
this.
|
|
885
|
-
this.
|
|
886
|
-
this.
|
|
887
|
-
this.
|
|
888
|
-
this.
|
|
889
|
-
this.
|
|
890
|
-
this.
|
|
891
|
-
this.
|
|
892
|
-
this.
|
|
893
|
-
this.
|
|
894
|
-
this.
|
|
895
|
-
this.
|
|
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.
|
|
899
|
-
this.
|
|
900
|
-
this.
|
|
901
|
-
this.
|
|
902
|
-
this.
|
|
903
|
-
this.
|
|
904
|
-
this.
|
|
905
|
-
this.
|
|
906
|
-
this.
|
|
907
|
-
this.
|
|
908
|
-
this.
|
|
909
|
-
this.
|
|
910
|
-
this.
|
|
911
|
-
this.
|
|
912
|
-
this.
|
|
913
|
-
this.
|
|
914
|
-
this.
|
|
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.
|
|
918
|
-
this.
|
|
919
|
-
this.
|
|
920
|
-
this.
|
|
921
|
-
this.
|
|
922
|
-
this.
|
|
923
|
-
this.
|
|
924
|
-
this.
|
|
925
|
-
this.
|
|
926
|
-
this.
|
|
927
|
-
this.
|
|
928
|
-
this.
|
|
929
|
-
this.
|
|
930
|
-
this.
|
|
931
|
-
this.
|
|
932
|
-
this.
|
|
933
|
-
this.
|
|
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
|
-
|
|
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
|
-
|
|
1042
|
+
j5() {
|
|
946
1043
|
this.focused = false;
|
|
947
|
-
this.
|
|
1044
|
+
this.kh();
|
|
948
1045
|
}
|
|
949
|
-
|
|
1046
|
+
j8() {
|
|
950
1047
|
this.focused = true;
|
|
951
|
-
this.
|
|
1048
|
+
this.kh();
|
|
952
1049
|
}
|
|
953
|
-
|
|
954
|
-
this.
|
|
955
|
-
this.
|
|
1050
|
+
kc() {
|
|
1051
|
+
this.a0 = false;
|
|
1052
|
+
this.kh();
|
|
1053
|
+
if (this.mouseLeave != null) {
|
|
1054
|
+
this.mouseLeave(this, new MouseEventArgs());
|
|
1055
|
+
}
|
|
956
1056
|
}
|
|
957
|
-
|
|
958
|
-
this.
|
|
959
|
-
this.
|
|
1057
|
+
kb() {
|
|
1058
|
+
this.a0 = true;
|
|
1059
|
+
this.kh();
|
|
1060
|
+
if (this.mouseEnter != null) {
|
|
1061
|
+
this.mouseEnter(this, new MouseEventArgs());
|
|
1062
|
+
}
|
|
960
1063
|
}
|
|
961
|
-
|
|
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.
|
|
967
|
-
NativeUI.
|
|
968
|
-
if (!isNaN_(this.
|
|
969
|
-
NativeUI.
|
|
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.
|
|
1089
|
+
this.view.ax(this.cq, this.u);
|
|
973
1090
|
}
|
|
974
|
-
else if (this.focused && this.
|
|
975
|
-
this.view.
|
|
1091
|
+
else if (this.focused && this.az) {
|
|
1092
|
+
this.view.ax(this.cr, this.u);
|
|
976
1093
|
}
|
|
977
1094
|
else {
|
|
978
|
-
if (this.
|
|
979
|
-
this.view.
|
|
1095
|
+
if (this.a0 && !this.ar) {
|
|
1096
|
+
this.view.ax(this.cs, this.u);
|
|
980
1097
|
}
|
|
981
1098
|
else {
|
|
982
|
-
this.view.
|
|
1099
|
+
this.view.ax(this.ct, this.u);
|
|
983
1100
|
}
|
|
984
1101
|
}
|
|
985
1102
|
if (this.disabled) {
|
|
986
|
-
NativeUI.
|
|
1103
|
+
NativeUI.l(a, this.nh);
|
|
987
1104
|
}
|
|
988
|
-
else if (this.focused && this.
|
|
989
|
-
NativeUI.
|
|
1105
|
+
else if (this.focused && this.az) {
|
|
1106
|
+
NativeUI.l(a, this.nk);
|
|
990
1107
|
}
|
|
991
1108
|
else {
|
|
992
|
-
if (this.
|
|
993
|
-
NativeUI.
|
|
1109
|
+
if (this.a0 && !this.ar) {
|
|
1110
|
+
NativeUI.l(a, this.nm);
|
|
994
1111
|
}
|
|
995
1112
|
else {
|
|
996
|
-
NativeUI.
|
|
1113
|
+
NativeUI.l(a, this.nf);
|
|
997
1114
|
}
|
|
998
1115
|
}
|
|
999
|
-
this.view.
|
|
1000
|
-
if (this.
|
|
1001
|
-
this.view.
|
|
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.
|
|
1005
|
-
NativeUI.
|
|
1121
|
+
NativeUI.p(this.view.s, this.nj);
|
|
1122
|
+
NativeUI.q(this.view.s, this.nj);
|
|
1006
1123
|
}
|
|
1007
|
-
else if (this.focused && this.
|
|
1008
|
-
NativeUI.
|
|
1009
|
-
NativeUI.
|
|
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.
|
|
1013
|
-
NativeUI.
|
|
1014
|
-
NativeUI.
|
|
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.
|
|
1018
|
-
NativeUI.
|
|
1134
|
+
NativeUI.p(this.view.s, this.nq);
|
|
1135
|
+
NativeUI.q(this.view.s, this.nq);
|
|
1019
1136
|
}
|
|
1020
1137
|
}
|
|
1021
1138
|
}
|
|
1022
|
-
|
|
1023
|
-
this.
|
|
1024
|
-
this.
|
|
1025
|
-
this.
|
|
1026
|
-
this.
|
|
1027
|
-
this.
|
|
1028
|
-
this.
|
|
1029
|
-
this.
|
|
1030
|
-
this.
|
|
1031
|
-
this.
|
|
1032
|
-
this.
|
|
1033
|
-
this.
|
|
1034
|
-
this.
|
|
1035
|
-
this.
|
|
1036
|
-
this.
|
|
1037
|
-
this.
|
|
1038
|
-
this.
|
|
1039
|
-
this.
|
|
1040
|
-
this.
|
|
1041
|
-
this.
|
|
1042
|
-
this.
|
|
1043
|
-
this.
|
|
1044
|
-
this.
|
|
1045
|
-
this.
|
|
1046
|
-
this.
|
|
1047
|
-
this.
|
|
1048
|
-
this.
|
|
1049
|
-
this.
|
|
1050
|
-
this.
|
|
1051
|
-
this.
|
|
1052
|
-
this.
|
|
1053
|
-
this.
|
|
1054
|
-
this.
|
|
1055
|
-
this.
|
|
1056
|
-
this.
|
|
1057
|
-
this.
|
|
1058
|
-
this.
|
|
1059
|
-
this.
|
|
1060
|
-
this.
|
|
1061
|
-
this.
|
|
1062
|
-
this.
|
|
1063
|
-
this.
|
|
1064
|
-
this.
|
|
1065
|
-
this.
|
|
1066
|
-
this.
|
|
1067
|
-
this.
|
|
1068
|
-
this.
|
|
1069
|
-
this.
|
|
1070
|
-
this.
|
|
1071
|
-
this.
|
|
1072
|
-
this.
|
|
1073
|
-
this.
|
|
1074
|
-
this.
|
|
1075
|
-
this.
|
|
1076
|
-
this.
|
|
1077
|
-
this.
|
|
1078
|
-
this.
|
|
1079
|
-
this.
|
|
1080
|
-
this.
|
|
1081
|
-
this.
|
|
1082
|
-
this.
|
|
1083
|
-
this.
|
|
1084
|
-
this.
|
|
1085
|
-
this.
|
|
1086
|
-
this.
|
|
1087
|
-
this.
|
|
1088
|
-
this.
|
|
1089
|
-
this.
|
|
1090
|
-
this.
|
|
1091
|
-
this.
|
|
1092
|
-
this.
|
|
1093
|
-
this.
|
|
1094
|
-
this.
|
|
1095
|
-
this.
|
|
1096
|
-
this.
|
|
1097
|
-
this.
|
|
1098
|
-
this.
|
|
1099
|
-
this.
|
|
1100
|
-
this.
|
|
1101
|
-
this.
|
|
1102
|
-
this.
|
|
1103
|
-
this.
|
|
1104
|
-
this.
|
|
1105
|
-
this.
|
|
1106
|
-
this.
|
|
1107
|
-
this.
|
|
1108
|
-
this.
|
|
1109
|
-
this.
|
|
1110
|
-
this.
|
|
1111
|
-
this.
|
|
1112
|
-
}
|
|
1113
|
-
get
|
|
1114
|
-
return this.
|
|
1115
|
-
}
|
|
1116
|
-
set
|
|
1117
|
-
let b = this.
|
|
1118
|
-
this.
|
|
1119
|
-
if (b != this.
|
|
1120
|
-
this.
|
|
1121
|
-
}
|
|
1122
|
-
}
|
|
1123
|
-
get
|
|
1124
|
-
return this.
|
|
1125
|
-
}
|
|
1126
|
-
set
|
|
1127
|
-
let b = this.
|
|
1128
|
-
this.
|
|
1129
|
-
if (b != this.
|
|
1130
|
-
this.
|
|
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.
|
|
1257
|
+
this.kd("DisplayType", enumGetBox(ButtonDisplayStyle_$type, b), enumGetBox(ButtonDisplayStyle_$type, a));
|
|
1141
1258
|
}
|
|
1142
1259
|
}
|
|
1143
|
-
get
|
|
1144
|
-
return this.
|
|
1260
|
+
get r() {
|
|
1261
|
+
return this.p;
|
|
1145
1262
|
}
|
|
1146
|
-
set
|
|
1147
|
-
let b = this.
|
|
1148
|
-
this.
|
|
1149
|
-
if (b != this.
|
|
1150
|
-
this.
|
|
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
|
|
1154
|
-
return this.
|
|
1270
|
+
get n() {
|
|
1271
|
+
return this.l;
|
|
1155
1272
|
}
|
|
1156
|
-
set
|
|
1157
|
-
let b = this.
|
|
1158
|
-
this.
|
|
1159
|
-
if (b != this.
|
|
1160
|
-
this.
|
|
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
|
|
1164
|
-
return this.
|
|
1280
|
+
get q() {
|
|
1281
|
+
return this.o;
|
|
1165
1282
|
}
|
|
1166
|
-
set
|
|
1167
|
-
let b = this.
|
|
1168
|
-
this.
|
|
1169
|
-
if (b != this.
|
|
1170
|
-
this.
|
|
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
|
|
1174
|
-
return this.
|
|
1290
|
+
get ng() {
|
|
1291
|
+
return this.k8;
|
|
1175
1292
|
}
|
|
1176
|
-
set
|
|
1177
|
-
let b = this.
|
|
1178
|
-
this.
|
|
1179
|
-
if (b != this.
|
|
1180
|
-
this.
|
|
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
|
|
1184
|
-
return this.
|
|
1300
|
+
get nr() {
|
|
1301
|
+
return this.lj;
|
|
1185
1302
|
}
|
|
1186
|
-
set
|
|
1187
|
-
let b = this.
|
|
1188
|
-
this.
|
|
1189
|
-
if (b != this.
|
|
1190
|
-
this.
|
|
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
|
|
1194
|
-
return this.
|
|
1310
|
+
get no() {
|
|
1311
|
+
return this.lg;
|
|
1195
1312
|
}
|
|
1196
|
-
set
|
|
1197
|
-
let b = this.
|
|
1198
|
-
this.
|
|
1199
|
-
if (b != this.
|
|
1200
|
-
this.
|
|
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
|
|
1204
|
-
return this.
|
|
1320
|
+
get ne() {
|
|
1321
|
+
return this.k6;
|
|
1205
1322
|
}
|
|
1206
|
-
set
|
|
1207
|
-
let b = this.
|
|
1208
|
-
this.
|
|
1209
|
-
if (b != this.
|
|
1210
|
-
this.
|
|
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
|
|
1214
|
-
return this.
|
|
1330
|
+
get ct() {
|
|
1331
|
+
return this.b0;
|
|
1215
1332
|
}
|
|
1216
|
-
set
|
|
1217
|
-
let b = this.
|
|
1218
|
-
this.
|
|
1219
|
-
if (b != this.
|
|
1220
|
-
this.
|
|
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
|
|
1224
|
-
return this.
|
|
1340
|
+
get cr() {
|
|
1341
|
+
return this.by;
|
|
1225
1342
|
}
|
|
1226
|
-
set
|
|
1227
|
-
let b = this.
|
|
1228
|
-
this.
|
|
1229
|
-
if (b != this.
|
|
1230
|
-
this.
|
|
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
|
|
1234
|
-
return this.
|
|
1350
|
+
get cs() {
|
|
1351
|
+
return this.bz;
|
|
1235
1352
|
}
|
|
1236
|
-
set
|
|
1237
|
-
let b = this.
|
|
1238
|
-
this.
|
|
1239
|
-
if (b != this.
|
|
1240
|
-
this.
|
|
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
|
|
1244
|
-
return this.
|
|
1360
|
+
get np() {
|
|
1361
|
+
return this.lh;
|
|
1245
1362
|
}
|
|
1246
|
-
set
|
|
1247
|
-
let b = this.
|
|
1248
|
-
this.
|
|
1249
|
-
if (b != this.
|
|
1250
|
-
this.
|
|
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
|
|
1254
|
-
return this.
|
|
1370
|
+
get kr() {
|
|
1371
|
+
return this.kk;
|
|
1255
1372
|
}
|
|
1256
|
-
set
|
|
1257
|
-
let b = this.
|
|
1258
|
-
this.
|
|
1259
|
-
if (b != this.
|
|
1260
|
-
this.
|
|
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
|
|
1264
|
-
return this.
|
|
1380
|
+
get nf() {
|
|
1381
|
+
return this.k7;
|
|
1265
1382
|
}
|
|
1266
|
-
set
|
|
1267
|
-
let b = this.
|
|
1268
|
-
this.
|
|
1269
|
-
if (b != this.
|
|
1270
|
-
this.
|
|
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
|
|
1274
|
-
return this.
|
|
1390
|
+
get nh() {
|
|
1391
|
+
return this.k9;
|
|
1275
1392
|
}
|
|
1276
|
-
set
|
|
1277
|
-
let b = this.
|
|
1278
|
-
this.
|
|
1279
|
-
if (b != this.
|
|
1280
|
-
this.
|
|
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
|
|
1284
|
-
return this.
|
|
1400
|
+
get ni() {
|
|
1401
|
+
return this.la;
|
|
1285
1402
|
}
|
|
1286
|
-
set
|
|
1287
|
-
let b = this.
|
|
1288
|
-
this.
|
|
1289
|
-
if (b != this.
|
|
1290
|
-
this.
|
|
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
|
|
1294
|
-
return this.
|
|
1420
|
+
get cq() {
|
|
1421
|
+
return this.bx;
|
|
1295
1422
|
}
|
|
1296
|
-
set
|
|
1297
|
-
let b = this.
|
|
1298
|
-
this.
|
|
1299
|
-
if (b != this.
|
|
1300
|
-
this.
|
|
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
|
|
1304
|
-
return this.
|
|
1430
|
+
get u() {
|
|
1431
|
+
return this.s;
|
|
1305
1432
|
}
|
|
1306
|
-
set
|
|
1307
|
-
let b = this.
|
|
1308
|
-
this.
|
|
1309
|
-
if (b != this.
|
|
1310
|
-
this.
|
|
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
|
|
1314
|
-
return this.
|
|
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
|
|
1317
|
-
let b = this.
|
|
1318
|
-
this.
|
|
1319
|
-
if (b != this.
|
|
1320
|
-
this.
|
|
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.
|
|
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
|
|
1344
|
-
return this.
|
|
1470
|
+
get nl() {
|
|
1471
|
+
return this.ld;
|
|
1345
1472
|
}
|
|
1346
|
-
set
|
|
1347
|
-
let b = this.
|
|
1348
|
-
this.
|
|
1349
|
-
if (b != this.
|
|
1350
|
-
this.
|
|
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
|
|
1354
|
-
return this.
|
|
1480
|
+
get nm() {
|
|
1481
|
+
return this.le;
|
|
1355
1482
|
}
|
|
1356
|
-
set
|
|
1357
|
-
let b = this.
|
|
1358
|
-
this.
|
|
1359
|
-
if (b != this.
|
|
1360
|
-
this.
|
|
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
|
|
1364
|
-
return this.
|
|
1490
|
+
get bf() {
|
|
1491
|
+
return this.a2;
|
|
1365
1492
|
}
|
|
1366
|
-
set
|
|
1367
|
-
let b = this.
|
|
1368
|
-
this.
|
|
1369
|
-
if (b != this.
|
|
1370
|
-
this.
|
|
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
|
|
1374
|
-
return this.
|
|
1500
|
+
get qv() {
|
|
1501
|
+
return this.m1;
|
|
1375
1502
|
}
|
|
1376
|
-
set
|
|
1377
|
-
let b = this.
|
|
1378
|
-
this.
|
|
1379
|
-
if (b != this.
|
|
1380
|
-
this.
|
|
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
|
|
1384
|
-
return this.
|
|
1510
|
+
get qx() {
|
|
1511
|
+
return this.m3;
|
|
1385
1512
|
}
|
|
1386
|
-
set
|
|
1387
|
-
let b = this.
|
|
1388
|
-
this.
|
|
1389
|
-
if (b != this.
|
|
1390
|
-
this.
|
|
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
|
|
1394
|
-
return this.
|
|
1520
|
+
get qy() {
|
|
1521
|
+
return this.m4;
|
|
1395
1522
|
}
|
|
1396
|
-
set
|
|
1397
|
-
let b = this.
|
|
1398
|
-
this.
|
|
1399
|
-
if (b != this.
|
|
1400
|
-
this.
|
|
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
|
|
1404
|
-
return this.
|
|
1530
|
+
get qz() {
|
|
1531
|
+
return this.m5;
|
|
1405
1532
|
}
|
|
1406
|
-
set
|
|
1407
|
-
let b = this.
|
|
1408
|
-
this.
|
|
1409
|
-
if (b != this.
|
|
1410
|
-
this.
|
|
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
|
|
1414
|
-
return this.
|
|
1540
|
+
get dy() {
|
|
1541
|
+
return this.ck;
|
|
1415
1542
|
}
|
|
1416
|
-
set
|
|
1417
|
-
let b = this.
|
|
1418
|
-
this.
|
|
1419
|
-
if (b != this.
|
|
1420
|
-
this.
|
|
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
|
|
1424
|
-
return this.
|
|
1550
|
+
get q2() {
|
|
1551
|
+
return this.m8;
|
|
1425
1552
|
}
|
|
1426
|
-
set
|
|
1427
|
-
let b = this.
|
|
1428
|
-
this.
|
|
1429
|
-
if (b != this.
|
|
1430
|
-
this.
|
|
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
|
|
1560
|
+
get qw() {
|
|
1434
1561
|
return this.m2;
|
|
1435
1562
|
}
|
|
1436
|
-
set
|
|
1563
|
+
set qw(a) {
|
|
1437
1564
|
let b = this.m2;
|
|
1438
1565
|
this.m2 = a;
|
|
1439
1566
|
if (b != this.m2) {
|
|
1440
|
-
this.
|
|
1567
|
+
this.kd("RaisedBorderColor", b, a);
|
|
1441
1568
|
}
|
|
1442
1569
|
}
|
|
1443
|
-
get
|
|
1444
|
-
return this.
|
|
1570
|
+
get d1() {
|
|
1571
|
+
return this.cn;
|
|
1445
1572
|
}
|
|
1446
|
-
set
|
|
1447
|
-
let b = this.
|
|
1448
|
-
this.
|
|
1449
|
-
if (b != this.
|
|
1450
|
-
this.
|
|
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
|
|
1454
|
-
return this.
|
|
1580
|
+
get d0() {
|
|
1581
|
+
return this.cm;
|
|
1455
1582
|
}
|
|
1456
|
-
set
|
|
1457
|
-
let b = this.
|
|
1458
|
-
this.
|
|
1459
|
-
if (b != this.
|
|
1460
|
-
this.
|
|
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
|
|
1464
|
-
return this.
|
|
1590
|
+
get dz() {
|
|
1591
|
+
return this.cl;
|
|
1465
1592
|
}
|
|
1466
|
-
set
|
|
1467
|
-
let b = this.
|
|
1468
|
-
this.
|
|
1469
|
-
if (b != this.
|
|
1470
|
-
this.
|
|
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
|
|
1474
|
-
return this.
|
|
1600
|
+
get bw() {
|
|
1601
|
+
return this.be;
|
|
1475
1602
|
}
|
|
1476
|
-
set
|
|
1477
|
-
let b = this.
|
|
1478
|
-
this.
|
|
1479
|
-
if (b != this.
|
|
1480
|
-
this.
|
|
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
|
|
1484
|
-
return this.
|
|
1610
|
+
get k3() {
|
|
1611
|
+
return this.kq;
|
|
1485
1612
|
}
|
|
1486
|
-
set
|
|
1487
|
-
let b = this.
|
|
1488
|
-
this.
|
|
1489
|
-
|
|
1490
|
-
this.
|
|
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
|
|
1494
|
-
return this.
|
|
1620
|
+
get q4() {
|
|
1621
|
+
return this.na;
|
|
1495
1622
|
}
|
|
1496
|
-
set
|
|
1497
|
-
let b = this.
|
|
1498
|
-
this.
|
|
1499
|
-
{
|
|
1500
|
-
this.
|
|
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
|
|
1504
|
-
return this.
|
|
1630
|
+
get pu() {
|
|
1631
|
+
return this.lz;
|
|
1505
1632
|
}
|
|
1506
|
-
set
|
|
1507
|
-
let b = this.
|
|
1508
|
-
this.
|
|
1509
|
-
if (b != this.
|
|
1510
|
-
this.
|
|
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
|
|
1514
|
-
return this.
|
|
1640
|
+
get pw() {
|
|
1641
|
+
return this.l1;
|
|
1515
1642
|
}
|
|
1516
|
-
set
|
|
1517
|
-
let b = this.
|
|
1518
|
-
this.
|
|
1519
|
-
if (b != this.
|
|
1520
|
-
this.
|
|
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
|
|
1524
|
-
return this.
|
|
1650
|
+
get px() {
|
|
1651
|
+
return this.l2;
|
|
1525
1652
|
}
|
|
1526
|
-
set
|
|
1527
|
-
let b = this.
|
|
1528
|
-
this.
|
|
1529
|
-
if (b != this.
|
|
1530
|
-
this.
|
|
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
|
|
1534
|
-
return this.
|
|
1660
|
+
get py() {
|
|
1661
|
+
return this.l3;
|
|
1535
1662
|
}
|
|
1536
|
-
set
|
|
1537
|
-
let b = this.
|
|
1538
|
-
this.
|
|
1539
|
-
if (b != this.
|
|
1540
|
-
this.
|
|
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
|
|
1544
|
-
return this.
|
|
1670
|
+
get dj() {
|
|
1671
|
+
return this.b6;
|
|
1545
1672
|
}
|
|
1546
|
-
set
|
|
1547
|
-
let b = this.
|
|
1548
|
-
this.
|
|
1549
|
-
if (b != this.
|
|
1550
|
-
this.
|
|
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
|
|
1554
|
-
return this.
|
|
1680
|
+
get p1() {
|
|
1681
|
+
return this.l6;
|
|
1555
1682
|
}
|
|
1556
|
-
set
|
|
1557
|
-
let b = this.
|
|
1558
|
-
this.
|
|
1559
|
-
if (b != this.
|
|
1560
|
-
this.
|
|
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
|
|
1690
|
+
get pv() {
|
|
1564
1691
|
return this.l0;
|
|
1565
1692
|
}
|
|
1566
|
-
set
|
|
1693
|
+
set pv(a) {
|
|
1567
1694
|
let b = this.l0;
|
|
1568
1695
|
this.l0 = a;
|
|
1569
1696
|
if (b != this.l0) {
|
|
1570
|
-
this.
|
|
1697
|
+
this.kd("FlatBorderColor", b, a);
|
|
1571
1698
|
}
|
|
1572
1699
|
}
|
|
1573
|
-
get
|
|
1574
|
-
return this.
|
|
1700
|
+
get dm() {
|
|
1701
|
+
return this.b9;
|
|
1575
1702
|
}
|
|
1576
|
-
set
|
|
1577
|
-
let b = this.
|
|
1578
|
-
this.
|
|
1579
|
-
if (b != this.
|
|
1580
|
-
this.
|
|
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
|
|
1584
|
-
return this.
|
|
1710
|
+
get dl() {
|
|
1711
|
+
return this.b8;
|
|
1585
1712
|
}
|
|
1586
|
-
set
|
|
1587
|
-
let b = this.
|
|
1588
|
-
this.
|
|
1589
|
-
if (b != this.
|
|
1590
|
-
this.
|
|
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
|
|
1594
|
-
return this.
|
|
1720
|
+
get dk() {
|
|
1721
|
+
return this.b7;
|
|
1595
1722
|
}
|
|
1596
|
-
set
|
|
1597
|
-
let b = this.
|
|
1598
|
-
this.
|
|
1599
|
-
if (b != this.
|
|
1600
|
-
this.
|
|
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
|
|
1604
|
-
return this.
|
|
1730
|
+
get p3() {
|
|
1731
|
+
return this.l8;
|
|
1605
1732
|
}
|
|
1606
|
-
set
|
|
1607
|
-
let b = this.
|
|
1608
|
-
this.
|
|
1609
|
-
if (b != this.
|
|
1610
|
-
this.
|
|
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
|
|
1614
|
-
return this.
|
|
1740
|
+
get p4() {
|
|
1741
|
+
return this.l9;
|
|
1615
1742
|
}
|
|
1616
|
-
set
|
|
1617
|
-
let b = this.
|
|
1618
|
-
this.
|
|
1619
|
-
if (b != this.
|
|
1620
|
-
this.
|
|
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
|
|
1624
|
-
return this.
|
|
1750
|
+
get p2() {
|
|
1751
|
+
return this.l7;
|
|
1625
1752
|
}
|
|
1626
|
-
set
|
|
1627
|
-
let b = this.
|
|
1628
|
-
this.
|
|
1629
|
-
if (b != this.
|
|
1630
|
-
this.
|
|
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
|
|
1634
|
-
return this.
|
|
1760
|
+
get pz() {
|
|
1761
|
+
return this.l4;
|
|
1635
1762
|
}
|
|
1636
|
-
set
|
|
1637
|
-
let b = this.
|
|
1638
|
-
this.
|
|
1639
|
-
if (b != this.
|
|
1640
|
-
this.
|
|
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
|
|
1644
|
-
return this.
|
|
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
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
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
|
|
1664
|
-
return this.
|
|
1780
|
+
get br() {
|
|
1781
|
+
return this.a9;
|
|
1665
1782
|
}
|
|
1666
|
-
set
|
|
1667
|
-
let b = this.
|
|
1668
|
-
this.
|
|
1669
|
-
if (b != this.
|
|
1670
|
-
this.
|
|
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
|
|
1674
|
-
return this.
|
|
1790
|
+
get k0() {
|
|
1791
|
+
return this.kn;
|
|
1675
1792
|
}
|
|
1676
|
-
set
|
|
1677
|
-
let b = this.
|
|
1678
|
-
this.
|
|
1793
|
+
set k0(a) {
|
|
1794
|
+
let b = this.kn;
|
|
1795
|
+
this.kn = a;
|
|
1679
1796
|
{
|
|
1680
|
-
this.
|
|
1797
|
+
this.kd("FlatCornerRadius", b, a);
|
|
1681
1798
|
}
|
|
1682
1799
|
}
|
|
1683
|
-
get
|
|
1684
|
-
return this.
|
|
1800
|
+
get ns() {
|
|
1801
|
+
return this.lk;
|
|
1685
1802
|
}
|
|
1686
|
-
set
|
|
1687
|
-
let b = this.
|
|
1688
|
-
this.
|
|
1689
|
-
if (b != this.
|
|
1690
|
-
this.
|
|
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
|
|
1694
|
-
return this.
|
|
1810
|
+
get pg() {
|
|
1811
|
+
return this.lm;
|
|
1695
1812
|
}
|
|
1696
|
-
set
|
|
1697
|
-
let b = this.
|
|
1698
|
-
this.
|
|
1699
|
-
if (b != this.
|
|
1700
|
-
this.
|
|
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
|
|
1704
|
-
return this.
|
|
1820
|
+
get ph() {
|
|
1821
|
+
return this.ln;
|
|
1705
1822
|
}
|
|
1706
|
-
set
|
|
1707
|
-
let b = this.
|
|
1708
|
-
this.
|
|
1709
|
-
if (b != this.
|
|
1710
|
-
this.
|
|
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
|
|
1714
|
-
return this.
|
|
1830
|
+
get pi() {
|
|
1831
|
+
return this.lo;
|
|
1715
1832
|
}
|
|
1716
|
-
set
|
|
1717
|
-
let b = this.
|
|
1718
|
-
this.
|
|
1719
|
-
if (b != this.
|
|
1720
|
-
this.
|
|
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
|
|
1724
|
-
return this.
|
|
1840
|
+
get de() {
|
|
1841
|
+
return this.b1;
|
|
1725
1842
|
}
|
|
1726
|
-
set
|
|
1727
|
-
let b = this.
|
|
1728
|
-
this.
|
|
1729
|
-
if (b != this.
|
|
1730
|
-
this.
|
|
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
|
|
1734
|
-
return this.
|
|
1850
|
+
get w() {
|
|
1851
|
+
return this.t;
|
|
1735
1852
|
}
|
|
1736
|
-
set
|
|
1737
|
-
let b = this.
|
|
1738
|
-
this.
|
|
1739
|
-
if (b != this.
|
|
1740
|
-
this.
|
|
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
|
|
1744
|
-
return this.
|
|
1860
|
+
get p7() {
|
|
1861
|
+
return this.mc;
|
|
1745
1862
|
}
|
|
1746
|
-
set
|
|
1747
|
-
let b = this.
|
|
1748
|
-
this.
|
|
1749
|
-
if (b != this.
|
|
1750
|
-
this.
|
|
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
|
|
1754
|
-
return this.
|
|
1870
|
+
get nt() {
|
|
1871
|
+
return this.ll;
|
|
1755
1872
|
}
|
|
1756
|
-
set
|
|
1757
|
-
let b = this.
|
|
1758
|
-
this.
|
|
1759
|
-
if (b != this.
|
|
1760
|
-
this.
|
|
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
|
|
1890
|
+
get dp() {
|
|
1764
1891
|
return this.cb;
|
|
1765
1892
|
}
|
|
1766
|
-
set
|
|
1893
|
+
set dp(a) {
|
|
1767
1894
|
let b = this.cb;
|
|
1768
1895
|
this.cb = a;
|
|
1769
1896
|
if (b != this.cb) {
|
|
1770
|
-
this.
|
|
1897
|
+
this.kd("HoverElevation", b, a);
|
|
1771
1898
|
}
|
|
1772
1899
|
}
|
|
1773
|
-
get
|
|
1774
|
-
return this.
|
|
1900
|
+
get dn() {
|
|
1901
|
+
return this.ca;
|
|
1775
1902
|
}
|
|
1776
|
-
set
|
|
1777
|
-
let b = this.
|
|
1778
|
-
this.
|
|
1779
|
-
if (b != this.
|
|
1780
|
-
this.
|
|
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
|
|
1784
|
-
return this.
|
|
1910
|
+
get aa() {
|
|
1911
|
+
return this.z;
|
|
1785
1912
|
}
|
|
1786
|
-
set
|
|
1787
|
-
let b = this.
|
|
1788
|
-
this.
|
|
1789
|
-
if (b != this.
|
|
1790
|
-
this.
|
|
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
|
|
1794
|
-
return this.
|
|
1920
|
+
get q7() {
|
|
1921
|
+
return this.nd;
|
|
1795
1922
|
}
|
|
1796
|
-
set
|
|
1797
|
-
let b = this.
|
|
1798
|
-
this.
|
|
1799
|
-
if (b != this.
|
|
1800
|
-
this.
|
|
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
|
|
1804
|
-
return this.
|
|
1930
|
+
get p8() {
|
|
1931
|
+
return this.me;
|
|
1805
1932
|
}
|
|
1806
|
-
set
|
|
1807
|
-
let b = this.
|
|
1808
|
-
this.
|
|
1809
|
-
if (b != this.
|
|
1810
|
-
this.
|
|
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
|
|
1814
|
-
return this.
|
|
1940
|
+
get q6() {
|
|
1941
|
+
return this.nc;
|
|
1815
1942
|
}
|
|
1816
|
-
set
|
|
1817
|
-
let b = this.
|
|
1818
|
-
this.
|
|
1819
|
-
if (b != this.
|
|
1820
|
-
this.
|
|
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
|
|
1824
|
-
return this.
|
|
1950
|
+
get q5() {
|
|
1951
|
+
return this.nb;
|
|
1825
1952
|
}
|
|
1826
|
-
set
|
|
1827
|
-
let b = this.
|
|
1828
|
-
this.
|
|
1829
|
-
if (b != this.
|
|
1830
|
-
this.
|
|
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
|
|
1834
|
-
return this.
|
|
1960
|
+
get q3() {
|
|
1961
|
+
return this.m9;
|
|
1835
1962
|
}
|
|
1836
|
-
set
|
|
1837
|
-
let b = this.
|
|
1838
|
-
this.
|
|
1839
|
-
if (b != this.
|
|
1840
|
-
this.
|
|
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
|
|
1844
|
-
return this.
|
|
1970
|
+
get q0() {
|
|
1971
|
+
return this.m6;
|
|
1845
1972
|
}
|
|
1846
|
-
set
|
|
1847
|
-
let b = this.
|
|
1848
|
-
this.
|
|
1849
|
-
if (b != this.
|
|
1850
|
-
this.
|
|
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
|
|
1854
|
-
return this.
|
|
1980
|
+
get q1() {
|
|
1981
|
+
return this.m7;
|
|
1855
1982
|
}
|
|
1856
|
-
set
|
|
1857
|
-
let b = this.
|
|
1858
|
-
this.
|
|
1859
|
-
if (b != this.
|
|
1860
|
-
this.
|
|
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
|
|
1864
|
-
return this.
|
|
1990
|
+
get p5() {
|
|
1991
|
+
return this.ma;
|
|
1865
1992
|
}
|
|
1866
|
-
set
|
|
1867
|
-
let b = this.
|
|
1868
|
-
this.
|
|
1869
|
-
if (b != this.
|
|
1870
|
-
this.
|
|
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
|
|
1874
|
-
return this.
|
|
2000
|
+
get p6() {
|
|
2001
|
+
return this.mb;
|
|
1875
2002
|
}
|
|
1876
|
-
set
|
|
1877
|
-
let b = this.
|
|
1878
|
-
this.
|
|
1879
|
-
if (b != this.
|
|
1880
|
-
this.
|
|
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
|
|
1884
|
-
return this.
|
|
2010
|
+
get bg() {
|
|
2011
|
+
return this.a3;
|
|
1885
2012
|
}
|
|
1886
|
-
set
|
|
1887
|
-
let b = this.
|
|
1888
|
-
this.
|
|
1889
|
-
if (b != this.
|
|
1890
|
-
this.
|
|
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
|
|
1894
|
-
return this.
|
|
2020
|
+
get kt() {
|
|
2021
|
+
return this.kl;
|
|
1895
2022
|
}
|
|
1896
|
-
set
|
|
1897
|
-
let b = this.
|
|
1898
|
-
this.
|
|
1899
|
-
|
|
1900
|
-
this.
|
|
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
|
|
1904
|
-
return this.
|
|
2030
|
+
get qk() {
|
|
2031
|
+
return this.mq;
|
|
1905
2032
|
}
|
|
1906
|
-
set
|
|
1907
|
-
let b = this.
|
|
1908
|
-
this.
|
|
1909
|
-
{
|
|
1910
|
-
this.
|
|
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
|
|
1914
|
-
return this.
|
|
2040
|
+
get qm() {
|
|
2041
|
+
return this.ms;
|
|
1915
2042
|
}
|
|
1916
|
-
set
|
|
1917
|
-
let b = this.
|
|
1918
|
-
this.
|
|
1919
|
-
if (b != this.
|
|
1920
|
-
this.
|
|
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
|
|
1924
|
-
return this.
|
|
2050
|
+
get qn() {
|
|
2051
|
+
return this.mt;
|
|
1925
2052
|
}
|
|
1926
|
-
set
|
|
1927
|
-
let b = this.
|
|
1928
|
-
this.
|
|
1929
|
-
if (b != this.
|
|
1930
|
-
this.
|
|
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
|
|
1934
|
-
return this.
|
|
2060
|
+
get qo() {
|
|
2061
|
+
return this.mu;
|
|
1935
2062
|
}
|
|
1936
|
-
set
|
|
1937
|
-
let b = this.
|
|
1938
|
-
this.
|
|
1939
|
-
if (b != this.
|
|
1940
|
-
this.
|
|
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
|
|
1944
|
-
return this.
|
|
2070
|
+
get du() {
|
|
2071
|
+
return this.cg;
|
|
1945
2072
|
}
|
|
1946
|
-
set
|
|
1947
|
-
let b = this.
|
|
1948
|
-
this.
|
|
1949
|
-
if (b != this.
|
|
1950
|
-
this.
|
|
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
|
|
1954
|
-
return this.
|
|
2080
|
+
get qr() {
|
|
2081
|
+
return this.mx;
|
|
1955
2082
|
}
|
|
1956
|
-
set
|
|
1957
|
-
let b = this.
|
|
1958
|
-
this.
|
|
1959
|
-
if (b != this.
|
|
1960
|
-
this.
|
|
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
|
|
2090
|
+
get ql() {
|
|
1964
2091
|
return this.mr;
|
|
1965
2092
|
}
|
|
1966
|
-
set
|
|
2093
|
+
set ql(a) {
|
|
1967
2094
|
let b = this.mr;
|
|
1968
2095
|
this.mr = a;
|
|
1969
2096
|
if (b != this.mr) {
|
|
1970
|
-
this.
|
|
2097
|
+
this.kd("OutlinedBorderColor", b, a);
|
|
1971
2098
|
}
|
|
1972
2099
|
}
|
|
1973
|
-
get
|
|
1974
|
-
return this.
|
|
2100
|
+
get dx() {
|
|
2101
|
+
return this.cj;
|
|
1975
2102
|
}
|
|
1976
|
-
set
|
|
1977
|
-
let b = this.
|
|
1978
|
-
this.
|
|
1979
|
-
if (b != this.
|
|
1980
|
-
this.
|
|
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
|
|
1984
|
-
return this.
|
|
2110
|
+
get dw() {
|
|
2111
|
+
return this.ci;
|
|
1985
2112
|
}
|
|
1986
|
-
set
|
|
1987
|
-
let b = this.
|
|
1988
|
-
this.
|
|
1989
|
-
if (b != this.
|
|
1990
|
-
this.
|
|
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
|
|
1994
|
-
return this.
|
|
2120
|
+
get dv() {
|
|
2121
|
+
return this.ch;
|
|
1995
2122
|
}
|
|
1996
|
-
set
|
|
1997
|
-
let b = this.
|
|
1998
|
-
this.
|
|
1999
|
-
if (b != this.
|
|
2000
|
-
this.
|
|
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
|
|
2004
|
-
return this.
|
|
2130
|
+
get bv() {
|
|
2131
|
+
return this.bd;
|
|
2005
2132
|
}
|
|
2006
|
-
set
|
|
2007
|
-
let b = this.
|
|
2008
|
-
this.
|
|
2009
|
-
if (b != this.
|
|
2010
|
-
this.
|
|
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
|
|
2014
|
-
return this.
|
|
2140
|
+
get k2() {
|
|
2141
|
+
return this.kp;
|
|
2015
2142
|
}
|
|
2016
|
-
set
|
|
2017
|
-
let b = this.
|
|
2018
|
-
this.
|
|
2019
|
-
|
|
2020
|
-
this.
|
|
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
|
|
2024
|
-
return this.
|
|
2150
|
+
get qt() {
|
|
2151
|
+
return this.mz;
|
|
2025
2152
|
}
|
|
2026
|
-
set
|
|
2027
|
-
let b = this.
|
|
2028
|
-
this.
|
|
2029
|
-
{
|
|
2030
|
-
this.
|
|
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
|
|
2034
|
-
return this.
|
|
2160
|
+
get qu() {
|
|
2161
|
+
return this.m0;
|
|
2035
2162
|
}
|
|
2036
|
-
set
|
|
2037
|
-
let b = this.
|
|
2038
|
-
this.
|
|
2039
|
-
if (b != this.
|
|
2040
|
-
this.
|
|
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
|
|
2044
|
-
return this.
|
|
2170
|
+
get qs() {
|
|
2171
|
+
return this.my;
|
|
2045
2172
|
}
|
|
2046
|
-
set
|
|
2047
|
-
let b = this.
|
|
2048
|
-
this.
|
|
2049
|
-
if (b != this.
|
|
2050
|
-
this.
|
|
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
|
|
2054
|
-
return this.
|
|
2280
|
+
get dh() {
|
|
2281
|
+
return this.b4;
|
|
2055
2282
|
}
|
|
2056
|
-
set
|
|
2057
|
-
let b = this.
|
|
2058
|
-
this.
|
|
2059
|
-
if (b != this.
|
|
2060
|
-
this.
|
|
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
|
|
2064
|
-
return this.
|
|
2290
|
+
get dg() {
|
|
2291
|
+
return this.b3;
|
|
2065
2292
|
}
|
|
2066
|
-
set
|
|
2067
|
-
let b = this.
|
|
2068
|
-
this.
|
|
2069
|
-
if (b != this.
|
|
2070
|
-
this.
|
|
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
|
|
2074
|
-
return this.
|
|
2300
|
+
get bq() {
|
|
2301
|
+
return this.a8;
|
|
2075
2302
|
}
|
|
2076
|
-
set
|
|
2077
|
-
let b = this.
|
|
2078
|
-
this.
|
|
2079
|
-
if (b != this.
|
|
2080
|
-
this.
|
|
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
|
|
2084
|
-
return this.
|
|
2310
|
+
get kz() {
|
|
2311
|
+
return this.km;
|
|
2085
2312
|
}
|
|
2086
|
-
set
|
|
2087
|
-
let b = this.
|
|
2088
|
-
this.
|
|
2089
|
-
|
|
2090
|
-
this.
|
|
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
|
|
2094
|
-
return this.
|
|
2320
|
+
get ps() {
|
|
2321
|
+
return this.lx;
|
|
2095
2322
|
}
|
|
2096
|
-
set
|
|
2097
|
-
let b = this.
|
|
2098
|
-
this.
|
|
2099
|
-
if (b != this.
|
|
2100
|
-
this.
|
|
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
|
|
2104
|
-
return this.
|
|
2330
|
+
get pt() {
|
|
2331
|
+
return this.ly;
|
|
2105
2332
|
}
|
|
2106
|
-
set
|
|
2107
|
-
let b = this.
|
|
2108
|
-
this.
|
|
2109
|
-
if (b != this.
|
|
2110
|
-
this.
|
|
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
|
|
2114
|
-
return this.
|
|
2340
|
+
get pr() {
|
|
2341
|
+
return this.lw;
|
|
2115
2342
|
}
|
|
2116
|
-
set
|
|
2117
|
-
let b = this.
|
|
2118
|
-
this.
|
|
2119
|
-
if (b != this.
|
|
2120
|
-
this.
|
|
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
|
|
2124
|
-
return this.
|
|
2350
|
+
get po() {
|
|
2351
|
+
return this.lu;
|
|
2125
2352
|
}
|
|
2126
|
-
set
|
|
2127
|
-
let b = this.
|
|
2128
|
-
this.
|
|
2129
|
-
if (b != this.
|
|
2130
|
-
this.
|
|
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
|
|
2134
|
-
return this.
|
|
2360
|
+
get pp() {
|
|
2361
|
+
return this.lv;
|
|
2135
2362
|
}
|
|
2136
|
-
set
|
|
2137
|
-
let b = this.
|
|
2138
|
-
this.
|
|
2139
|
-
if (b != this.
|
|
2140
|
-
this.
|
|
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
|
|
2144
|
-
return this.
|
|
2370
|
+
get p9() {
|
|
2371
|
+
return this.mf;
|
|
2145
2372
|
}
|
|
2146
|
-
set
|
|
2147
|
-
let b = this.
|
|
2148
|
-
this.
|
|
2149
|
-
if (b != this.
|
|
2150
|
-
this.
|
|
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
|
|
2154
|
-
return this.
|
|
2380
|
+
get qb() {
|
|
2381
|
+
return this.mh;
|
|
2155
2382
|
}
|
|
2156
|
-
set
|
|
2157
|
-
let b = this.
|
|
2158
|
-
this.
|
|
2159
|
-
if (b != this.
|
|
2160
|
-
this.
|
|
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
|
|
2164
|
-
return this.
|
|
2390
|
+
get qc() {
|
|
2391
|
+
return this.mi;
|
|
2165
2392
|
}
|
|
2166
|
-
set
|
|
2167
|
-
let b = this.
|
|
2168
|
-
this.
|
|
2169
|
-
if (b != this.
|
|
2170
|
-
this.
|
|
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
|
|
2174
|
-
return this.
|
|
2400
|
+
get qd() {
|
|
2401
|
+
return this.mj;
|
|
2175
2402
|
}
|
|
2176
|
-
set
|
|
2177
|
-
let b = this.
|
|
2178
|
-
this.
|
|
2179
|
-
if (b != this.
|
|
2180
|
-
this.
|
|
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
|
|
2184
|
-
return this.
|
|
2410
|
+
get dq() {
|
|
2411
|
+
return this.cc;
|
|
2185
2412
|
}
|
|
2186
|
-
set
|
|
2187
|
-
let b = this.
|
|
2188
|
-
this.
|
|
2189
|
-
if (b != this.
|
|
2190
|
-
this.
|
|
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
|
|
2194
|
-
return this.
|
|
2420
|
+
get qg() {
|
|
2421
|
+
return this.mm;
|
|
2195
2422
|
}
|
|
2196
|
-
set
|
|
2197
|
-
let b = this.
|
|
2198
|
-
this.
|
|
2199
|
-
{
|
|
2200
|
-
this.
|
|
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
|
|
2204
|
-
return this.
|
|
2430
|
+
get qa() {
|
|
2431
|
+
return this.mg;
|
|
2205
2432
|
}
|
|
2206
|
-
set
|
|
2207
|
-
let b = this.
|
|
2208
|
-
this.
|
|
2209
|
-
if (b != this.
|
|
2210
|
-
this.
|
|
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
|
|
2214
|
-
return this.
|
|
2440
|
+
get dt() {
|
|
2441
|
+
return this.cf;
|
|
2215
2442
|
}
|
|
2216
|
-
set
|
|
2217
|
-
let b = this.
|
|
2218
|
-
this.
|
|
2219
|
-
if (b != this.
|
|
2220
|
-
this.
|
|
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
|
|
2224
|
-
return this.
|
|
2450
|
+
get ds() {
|
|
2451
|
+
return this.ce;
|
|
2225
2452
|
}
|
|
2226
|
-
set
|
|
2227
|
-
let b = this.
|
|
2228
|
-
this.
|
|
2229
|
-
if (b != this.
|
|
2230
|
-
this.
|
|
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
|
|
2234
|
-
return this.
|
|
2460
|
+
get dr() {
|
|
2461
|
+
return this.cd;
|
|
2235
2462
|
}
|
|
2236
|
-
set
|
|
2237
|
-
let b = this.
|
|
2238
|
-
this.
|
|
2239
|
-
if (b != this.
|
|
2240
|
-
this.
|
|
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
|
|
2244
|
-
return this.
|
|
2470
|
+
get bs() {
|
|
2471
|
+
return this.ba;
|
|
2245
2472
|
}
|
|
2246
|
-
set
|
|
2247
|
-
let b = this.
|
|
2248
|
-
this.
|
|
2249
|
-
if (b != this.
|
|
2250
|
-
this.
|
|
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
|
|
2254
|
-
return this.
|
|
2480
|
+
get k1() {
|
|
2481
|
+
return this.ko;
|
|
2255
2482
|
}
|
|
2256
|
-
set
|
|
2257
|
-
let b = this.
|
|
2258
|
-
this.
|
|
2259
|
-
|
|
2260
|
-
this.
|
|
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
|
|
2264
|
-
return this.
|
|
2490
|
+
get qi() {
|
|
2491
|
+
return this.mo;
|
|
2265
2492
|
}
|
|
2266
|
-
set
|
|
2267
|
-
let b = this.
|
|
2268
|
-
this.
|
|
2269
|
-
if (b != this.
|
|
2270
|
-
this.
|
|
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
|
|
2274
|
-
return this.
|
|
2500
|
+
get qj() {
|
|
2501
|
+
return this.mp;
|
|
2275
2502
|
}
|
|
2276
|
-
set
|
|
2277
|
-
let b = this.
|
|
2278
|
-
this.
|
|
2279
|
-
if (b != this.
|
|
2280
|
-
this.
|
|
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
|
|
2284
|
-
return this.
|
|
2510
|
+
get qh() {
|
|
2511
|
+
return this.mn;
|
|
2285
2512
|
}
|
|
2286
|
-
set
|
|
2287
|
-
let b = this.
|
|
2288
|
-
this.
|
|
2289
|
-
if (b != this.
|
|
2290
|
-
this.
|
|
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
|
|
2294
|
-
return this.
|
|
2520
|
+
get qe() {
|
|
2521
|
+
return this.mk;
|
|
2295
2522
|
}
|
|
2296
|
-
set
|
|
2297
|
-
let b = this.
|
|
2298
|
-
this.
|
|
2299
|
-
if (b != this.
|
|
2300
|
-
this.
|
|
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
|
|
2304
|
-
return this.
|
|
2530
|
+
get qf() {
|
|
2531
|
+
return this.ml;
|
|
2305
2532
|
}
|
|
2306
|
-
set
|
|
2307
|
-
let b = this.
|
|
2308
|
-
this.
|
|
2309
|
-
if (b != this.
|
|
2310
|
-
this.
|
|
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
|
|
2314
|
-
return this.
|
|
2540
|
+
get hu() {
|
|
2541
|
+
return this.ei;
|
|
2315
2542
|
}
|
|
2316
|
-
set
|
|
2317
|
-
let b = this.
|
|
2318
|
-
this.
|
|
2319
|
-
if (b != this.
|
|
2320
|
-
this.
|
|
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
|
|
2324
|
-
return this.
|
|
2550
|
+
get hs() {
|
|
2551
|
+
return this.eh;
|
|
2325
2552
|
}
|
|
2326
|
-
set
|
|
2327
|
-
let b = this.
|
|
2328
|
-
this.
|
|
2329
|
-
if (b != this.
|
|
2330
|
-
this.
|
|
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
|
|
2334
|
-
return this.
|
|
2560
|
+
get fw() {
|
|
2561
|
+
return this.ee;
|
|
2335
2562
|
}
|
|
2336
|
-
set
|
|
2337
|
-
let b = this.
|
|
2338
|
-
this.
|
|
2339
|
-
if (b != this.
|
|
2340
|
-
this.
|
|
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
|
|
2344
|
-
return this.
|
|
2570
|
+
get ff() {
|
|
2571
|
+
return this.ed;
|
|
2345
2572
|
}
|
|
2346
|
-
set
|
|
2347
|
-
let b = this.
|
|
2348
|
-
this.
|
|
2349
|
-
if (b != this.
|
|
2350
|
-
this.
|
|
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
|
|
2354
|
-
return this.
|
|
2580
|
+
get g0() {
|
|
2581
|
+
return this.ef;
|
|
2355
2582
|
}
|
|
2356
|
-
set
|
|
2357
|
-
let b = this.
|
|
2358
|
-
this.
|
|
2359
|
-
if (b != this.
|
|
2360
|
-
this.
|
|
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
|
|
2364
|
-
return this.
|
|
2590
|
+
get g2() {
|
|
2591
|
+
return this.eg;
|
|
2365
2592
|
}
|
|
2366
|
-
set
|
|
2367
|
-
let b = this.
|
|
2368
|
-
this.
|
|
2369
|
-
{
|
|
2370
|
-
this.
|
|
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
|
|
2374
|
-
return this.
|
|
2600
|
+
get e7() {
|
|
2601
|
+
return this.eb;
|
|
2375
2602
|
}
|
|
2376
|
-
set
|
|
2377
|
-
let b = this.
|
|
2378
|
-
this.
|
|
2379
|
-
if (b != this.
|
|
2380
|
-
this.
|
|
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
|
|
2384
|
-
return this.
|
|
2610
|
+
get ea() {
|
|
2611
|
+
return this.d6;
|
|
2385
2612
|
}
|
|
2386
|
-
set
|
|
2387
|
-
let b = this.
|
|
2388
|
-
this.
|
|
2389
|
-
if (b != this.
|
|
2390
|
-
this.
|
|
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
|
|
2394
|
-
return this.
|
|
2620
|
+
get h2() {
|
|
2621
|
+
return this.ej;
|
|
2395
2622
|
}
|
|
2396
|
-
set
|
|
2397
|
-
let b = this.
|
|
2398
|
-
this.
|
|
2399
|
-
if (b != this.
|
|
2400
|
-
this.
|
|
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
|
|
2404
|
-
return this.
|
|
2630
|
+
get aw() {
|
|
2631
|
+
return this.ak;
|
|
2405
2632
|
}
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
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
|
|
2414
|
-
return this.
|
|
2644
|
+
get e9() {
|
|
2645
|
+
return this.ec;
|
|
2415
2646
|
}
|
|
2416
|
-
set
|
|
2417
|
-
let b = this.
|
|
2418
|
-
this.
|
|
2419
|
-
if (b != this.
|
|
2420
|
-
this.
|
|
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
|
|
2424
|
-
return this.
|
|
2654
|
+
get av() {
|
|
2655
|
+
return this.aj;
|
|
2425
2656
|
}
|
|
2426
|
-
set
|
|
2427
|
-
let b = this.
|
|
2428
|
-
this.
|
|
2429
|
-
if (b != this.
|
|
2430
|
-
this.
|
|
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
|
|
2434
|
-
return this.
|
|
2664
|
+
get focused() {
|
|
2665
|
+
return this.am;
|
|
2435
2666
|
}
|
|
2436
|
-
set
|
|
2437
|
-
let b = this.
|
|
2438
|
-
this.
|
|
2439
|
-
if (b != this.
|
|
2440
|
-
this.
|
|
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
|
|
2444
|
-
return this.
|
|
2674
|
+
get az() {
|
|
2675
|
+
return this.an;
|
|
2445
2676
|
}
|
|
2446
|
-
set
|
|
2447
|
-
let b = this.
|
|
2448
|
-
this.
|
|
2449
|
-
if (b != this.
|
|
2450
|
-
this.
|
|
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
|
|
2454
|
-
return this.
|
|
2684
|
+
get at() {
|
|
2685
|
+
return this.ah;
|
|
2455
2686
|
}
|
|
2456
|
-
set
|
|
2457
|
-
let b = this.
|
|
2458
|
-
this.
|
|
2459
|
-
if (b != this.
|
|
2460
|
-
this.
|
|
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
|
|
2464
|
-
return this.
|
|
2694
|
+
get ap() {
|
|
2695
|
+
return this.ad;
|
|
2465
2696
|
}
|
|
2466
|
-
set
|
|
2467
|
-
let b = this.
|
|
2468
|
-
this.
|
|
2469
|
-
if (b != this.
|
|
2470
|
-
this.
|
|
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
|
|
2474
|
-
return this.
|
|
2704
|
+
get ar() {
|
|
2705
|
+
return this.af;
|
|
2475
2706
|
}
|
|
2476
|
-
set
|
|
2477
|
-
let b = this.
|
|
2478
|
-
this.
|
|
2479
|
-
if (b != this.
|
|
2480
|
-
this.
|
|
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
|
|
2484
|
-
return this.
|
|
2714
|
+
get a0() {
|
|
2715
|
+
return this.ao;
|
|
2485
2716
|
}
|
|
2486
|
-
set
|
|
2487
|
-
let b = this.
|
|
2488
|
-
this.
|
|
2489
|
-
if (b != this.
|
|
2490
|
-
this.
|
|
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
|
|
2494
|
-
return this.
|
|
2724
|
+
get disabled() {
|
|
2725
|
+
return this.al;
|
|
2495
2726
|
}
|
|
2496
|
-
set
|
|
2497
|
-
let b = this.
|
|
2498
|
-
this.
|
|
2499
|
-
if (b != this.
|
|
2500
|
-
this.
|
|
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
|
|
2504
|
-
return this.
|
|
2505
|
-
}
|
|
2506
|
-
get eu() {
|
|
2507
|
-
return this.cc;
|
|
2734
|
+
get au() {
|
|
2735
|
+
return this.ai;
|
|
2508
2736
|
}
|
|
2509
|
-
set
|
|
2510
|
-
let b = this.
|
|
2511
|
-
this.
|
|
2512
|
-
this.
|
|
2513
|
-
|
|
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
|
|
2518
|
-
return this.
|
|
2744
|
+
get as() {
|
|
2745
|
+
return this.ag;
|
|
2519
2746
|
}
|
|
2520
|
-
set
|
|
2521
|
-
let b = this.
|
|
2522
|
-
this.
|
|
2523
|
-
if (b != this.
|
|
2524
|
-
this.
|
|
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
|
|
2528
|
-
return this.
|
|
2754
|
+
get bi() {
|
|
2755
|
+
return this.a5;
|
|
2529
2756
|
}
|
|
2530
|
-
set
|
|
2531
|
-
let b = this.
|
|
2532
|
-
this.
|
|
2533
|
-
if (b != this.
|
|
2534
|
-
this.
|
|
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
|
|
2538
|
-
return this.
|
|
2764
|
+
get bk() {
|
|
2765
|
+
return this.a7;
|
|
2539
2766
|
}
|
|
2540
|
-
set
|
|
2541
|
-
let b = this.
|
|
2542
|
-
this.
|
|
2543
|
-
if (b != this.
|
|
2544
|
-
this.
|
|
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
|
|
2548
|
-
return this.
|
|
2774
|
+
get bj() {
|
|
2775
|
+
return this.a6;
|
|
2549
2776
|
}
|
|
2550
|
-
set
|
|
2551
|
-
let b = this.
|
|
2552
|
-
this.
|
|
2553
|
-
if (b != this.
|
|
2554
|
-
this.
|
|
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
|
|
2558
|
-
return this.
|
|
2784
|
+
get bh() {
|
|
2785
|
+
return this.a4;
|
|
2559
2786
|
}
|
|
2560
|
-
set
|
|
2561
|
-
let b = this.
|
|
2562
|
-
this.
|
|
2563
|
-
if (b != this.
|
|
2564
|
-
this.
|
|
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
|
|
2568
|
-
return this.
|
|
2794
|
+
get k5() {
|
|
2795
|
+
return this.k4;
|
|
2569
2796
|
}
|
|
2570
|
-
set
|
|
2571
|
-
let b = this.
|
|
2572
|
-
this.
|
|
2573
|
-
if (b != this.
|
|
2574
|
-
this.
|
|
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
|
|
2578
|
-
return this.
|
|
2804
|
+
get q9() {
|
|
2805
|
+
return this.q8;
|
|
2579
2806
|
}
|
|
2580
|
-
set
|
|
2581
|
-
let b = this.
|
|
2582
|
-
this.
|
|
2583
|
-
if (b != this.
|
|
2584
|
-
this.
|
|
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
|
|
2588
|
-
return this.
|
|
2814
|
+
get aq() {
|
|
2815
|
+
return this.ae;
|
|
2589
2816
|
}
|
|
2590
|
-
set
|
|
2591
|
-
let b = this.
|
|
2592
|
-
this.
|
|
2593
|
-
if (b != this.
|
|
2594
|
-
this.
|
|
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
|
-
|
|
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
|
-
|
|
2609
|
-
this.view.
|
|
2835
|
+
j3() {
|
|
2836
|
+
this.view.ae();
|
|
2610
2837
|
}
|
|
2611
2838
|
onDetachedFromUI() {
|
|
2612
|
-
this.view.
|
|
2839
|
+
this.view.aj();
|
|
2613
2840
|
}
|
|
2614
2841
|
onAttachedToUI() {
|
|
2615
|
-
this.view.
|
|
2842
|
+
this.view.ag();
|
|
2616
2843
|
}
|
|
2617
2844
|
appendButtonContent(a) {
|
|
2618
|
-
this.view.
|
|
2845
|
+
this.view.ac(a);
|
|
2619
2846
|
}
|
|
2620
2847
|
clearButtonContent() {
|
|
2621
|
-
this.view.
|
|
2848
|
+
this.view.ad();
|
|
2622
2849
|
}
|
|
2623
|
-
|
|
2850
|
+
getButtonContent() {
|
|
2851
|
+
return this.view.r();
|
|
2852
|
+
}
|
|
2853
|
+
a1() {
|
|
2624
2854
|
return this.view.g();
|
|
2625
2855
|
}
|
|
2626
|
-
|
|
2856
|
+
d7() {
|
|
2627
2857
|
return this.b();
|
|
2628
2858
|
}
|
|
2629
|
-
|
|
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.
|
|
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.
|
|
2643
|
-
c.t = NativeUI.
|
|
2644
|
-
c.h = this.
|
|
2645
|
-
c.i = this.
|
|
2646
|
-
c.c = AppearanceHelper.a(NativeUI.
|
|
2647
|
-
c.g = AppearanceHelper.a(this.
|
|
2648
|
-
c.d = AppearanceHelper.a(this.
|
|
2649
|
-
c.a = AppearanceHelper.a(this.
|
|
2650
|
-
c.u = this.
|
|
2651
|
-
c.e = AppearanceHelper.a(this.
|
|
2652
|
-
c.ah = this.
|
|
2653
|
-
c.b = AppearanceHelper.a(NativeUI.
|
|
2654
|
-
c.j = this.
|
|
2655
|
-
c.f = AppearanceHelper.a(NativeUI.
|
|
2656
|
-
c.o = this.
|
|
2657
|
-
c.x = this.
|
|
2658
|
-
c.y = this.
|
|
2659
|
-
c.z = this.
|
|
2660
|
-
c.w = this.
|
|
2661
|
-
c.v = this.view.
|
|
2662
|
-
c.aa = this.
|
|
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.
|
|
2665
|
-
c.n = this.
|
|
2894
|
+
c.k = this.ap;
|
|
2895
|
+
c.n = this.a0;
|
|
2666
2896
|
c.l = this.disabled;
|
|
2667
|
-
if (this.
|
|
2668
|
-
let g = this.
|
|
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.
|
|
2928
|
+
this.view.ai(a);
|
|
2699
2929
|
}
|
|
2700
2930
|
}
|
|
2701
2931
|
XButton.$t = /*@__PURE__*/ markType(XButton, 'XButton', Base.$, [INotifyPropertyChanged_$type]);
|
|
2702
|
-
XButton.
|
|
2703
|
-
XButton.
|
|
2704
|
-
XButton.
|
|
2705
|
-
XButton.
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
XButton.
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
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
|
})();
|