igniteui-angular-inputs 18.1.1 → 18.2.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-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +55 -0
|
@@ -90,8 +90,8 @@ export let ButtonView = /*@__PURE__*/ (() => {
|
|
|
90
90
|
this.n.setStyleProperty("overflow", "hidden");
|
|
91
91
|
this.n.setStyleProperty("white-space", "no-wrap");
|
|
92
92
|
this.n.setStyleProperty("color", "#000");
|
|
93
|
-
this.n.setStyleProperty("background", this.b.
|
|
94
|
-
NativeUI.o(this.n, this.b.
|
|
93
|
+
this.n.setStyleProperty("background", this.b.nh._fill);
|
|
94
|
+
NativeUI.o(this.n, this.b.ks);
|
|
95
95
|
this.n.setAttribute("id", this.b.hu);
|
|
96
96
|
this.av();
|
|
97
97
|
this.h.add(c.listen("change", runOn(this, this.x)));
|
|
@@ -180,6 +180,19 @@ export let ButtonView = /*@__PURE__*/ (() => {
|
|
|
180
180
|
g = "2.5rem";
|
|
181
181
|
l = ".4375rem";
|
|
182
182
|
break;
|
|
183
|
+
case 4:
|
|
184
|
+
m = "0.09375rem 0.5rem";
|
|
185
|
+
j = "0.5rem";
|
|
186
|
+
f = "1.5rem";
|
|
187
|
+
e = "1.5rem";
|
|
188
|
+
h = "1.5rem";
|
|
189
|
+
g = "1.5rem";
|
|
190
|
+
l = "0.21875rem";
|
|
191
|
+
b = "1rem";
|
|
192
|
+
a = "1rem";
|
|
193
|
+
d = "1rem";
|
|
194
|
+
c = "1rem";
|
|
195
|
+
break;
|
|
183
196
|
}
|
|
184
197
|
if (!isNaN_(this.b.bi) && !isNaN_(this.b.bk) && !isNaN_(this.b.bj) && !isNaN_(this.b.bh)) {
|
|
185
198
|
m = this.b.bk + "px " + this.b.bj + "px " + this.b.bh + "px " + this.b.bi + "px";
|
|
@@ -225,7 +238,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
|
|
|
225
238
|
}
|
|
226
239
|
}
|
|
227
240
|
as() {
|
|
228
|
-
switch (this.b.
|
|
241
|
+
switch (this.b.k7) {
|
|
229
242
|
case 1:
|
|
230
243
|
this.n.setStyleProperty("justify-content", "center");
|
|
231
244
|
this.o.setStyleProperty("flex-grow", "unset");
|
|
@@ -369,7 +382,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
|
|
|
369
382
|
this.b.j9();
|
|
370
383
|
}
|
|
371
384
|
ab(a) {
|
|
372
|
-
this.b.ka(a.originalEvent.relatedTarget);
|
|
385
|
+
this.b.ka(a.originalEvent.relatedTarget, a.originalEvent.target);
|
|
373
386
|
}
|
|
374
387
|
f() {
|
|
375
388
|
return false;
|
|
@@ -412,7 +425,7 @@ export let ButtonView = /*@__PURE__*/ (() => {
|
|
|
412
425
|
this.c.aw = b;
|
|
413
426
|
}
|
|
414
427
|
ax(a, b) {
|
|
415
|
-
let c = ElevationHelper.e(a, this.b.
|
|
428
|
+
let c = ElevationHelper.e(a, this.b.nt, this.b.nq, this.b.ng, b);
|
|
416
429
|
this.n.setStyleProperty("box-shadow", c);
|
|
417
430
|
}
|
|
418
431
|
az(a) {
|
|
@@ -451,226 +464,226 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
451
464
|
super();
|
|
452
465
|
this._view = null;
|
|
453
466
|
this.d9 = null;
|
|
454
|
-
this.
|
|
455
|
-
this.
|
|
456
|
-
this.
|
|
467
|
+
this.ph = XButton.k.ae(XButton.m, "UmbraShadowColor");
|
|
468
|
+
this.o5 = XButton.k.ae(XButton.m, "PenumbraShadowColor");
|
|
469
|
+
this.nw = XButton.k.ae(XButton.m, "AmbientShadowColor");
|
|
457
470
|
this.v = XButton.k.d(XButton.m, "ElevationMode");
|
|
458
|
-
this.
|
|
459
|
-
this.
|
|
460
|
-
this.
|
|
471
|
+
this.o8 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
|
|
472
|
+
this.o9 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
|
|
473
|
+
this.pa = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
|
|
461
474
|
this.da = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
|
|
462
475
|
this.dd = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
|
|
463
476
|
this.dc = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
|
|
464
477
|
this.db = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
|
|
465
|
-
this.
|
|
466
|
-
this.
|
|
467
|
-
this.
|
|
478
|
+
this.o7 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
|
|
479
|
+
this.pf = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
|
|
480
|
+
this.kz = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
|
|
468
481
|
this.bp = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
|
|
469
|
-
this.
|
|
470
|
-
this.
|
|
471
|
-
this.
|
|
472
|
-
this.
|
|
473
|
-
this.
|
|
474
|
-
this.
|
|
475
|
-
this.
|
|
476
|
-
this.
|
|
477
|
-
this.
|
|
482
|
+
this.o6 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
|
|
483
|
+
this.pg = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
|
|
484
|
+
this.pe = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
|
|
485
|
+
this.pd = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
|
|
486
|
+
this.pb = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
|
|
487
|
+
this.pc = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
|
|
488
|
+
this.oa = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBackgroundColor");
|
|
489
|
+
this.ob = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBorderColor");
|
|
490
|
+
this.oc = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledTextColor");
|
|
478
491
|
this.cy = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledElevation");
|
|
479
492
|
this.c1 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "RestingElevation");
|
|
480
493
|
this.c0 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverElevation");
|
|
481
494
|
this.cz = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusElevation");
|
|
482
|
-
this.
|
|
483
|
-
this.
|
|
484
|
-
this.
|
|
495
|
+
this.n9 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderColor");
|
|
496
|
+
this.oh = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "RippleColor");
|
|
497
|
+
this.kw = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "CornerRadius");
|
|
485
498
|
this.bm = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderWidth");
|
|
486
|
-
this.
|
|
487
|
-
this.
|
|
488
|
-
this.
|
|
489
|
-
this.
|
|
490
|
-
this.
|
|
491
|
-
this.
|
|
492
|
-
this.
|
|
493
|
-
this.
|
|
494
|
-
this.
|
|
499
|
+
this.n8 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BackgroundColor");
|
|
500
|
+
this.oi = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "TextColor");
|
|
501
|
+
this.og = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverTextColor");
|
|
502
|
+
this.of = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverBackgroundColor");
|
|
503
|
+
this.od = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusBackgroundColor");
|
|
504
|
+
this.oe = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusTextColor");
|
|
505
|
+
this.ow = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBackgroundColor");
|
|
506
|
+
this.ox = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBorderColor");
|
|
507
|
+
this.oy = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledTextColor");
|
|
495
508
|
this.c6 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledElevation");
|
|
496
509
|
this.c9 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "RestingElevation");
|
|
497
510
|
this.c8 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverElevation");
|
|
498
511
|
this.c7 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusElevation");
|
|
499
|
-
this.
|
|
500
|
-
this.
|
|
501
|
-
this.
|
|
512
|
+
this.ov = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderColor");
|
|
513
|
+
this.o3 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "RippleColor");
|
|
514
|
+
this.ky = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "CornerRadius");
|
|
502
515
|
this.bo = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderWidth");
|
|
503
|
-
this.
|
|
504
|
-
this.
|
|
505
|
-
this.
|
|
506
|
-
this.
|
|
507
|
-
this.
|
|
508
|
-
this.
|
|
509
|
-
this.
|
|
510
|
-
this.
|
|
511
|
-
this.
|
|
516
|
+
this.ou = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BackgroundColor");
|
|
517
|
+
this.o4 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "TextColor");
|
|
518
|
+
this.o2 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverTextColor");
|
|
519
|
+
this.o1 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverBackgroundColor");
|
|
520
|
+
this.oz = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusBackgroundColor");
|
|
521
|
+
this.o0 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusTextColor");
|
|
522
|
+
this.ol = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBackgroundColor");
|
|
523
|
+
this.om = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBorderColor");
|
|
524
|
+
this.on = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledTextColor");
|
|
512
525
|
this.c2 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledElevation");
|
|
513
526
|
this.c5 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "RestingElevation");
|
|
514
527
|
this.c4 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverElevation");
|
|
515
528
|
this.c3 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusElevation");
|
|
516
|
-
this.
|
|
517
|
-
this.
|
|
518
|
-
this.
|
|
529
|
+
this.ok = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderColor");
|
|
530
|
+
this.os = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "RippleColor");
|
|
531
|
+
this.kx = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "CornerRadius");
|
|
519
532
|
this.bn = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderWidth");
|
|
520
|
-
this.
|
|
521
|
-
this.
|
|
522
|
-
this.
|
|
523
|
-
this.
|
|
524
|
-
this.
|
|
525
|
-
this.
|
|
526
|
-
this.
|
|
527
|
-
this.
|
|
528
|
-
this.
|
|
533
|
+
this.oj = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BackgroundColor");
|
|
534
|
+
this.ot = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "TextColor");
|
|
535
|
+
this.or = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverTextColor");
|
|
536
|
+
this.oq = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverBackgroundColor");
|
|
537
|
+
this.oo = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusBackgroundColor");
|
|
538
|
+
this.op = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusTextColor");
|
|
539
|
+
this.nz = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBackgroundColor");
|
|
540
|
+
this.n0 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBorderColor");
|
|
541
|
+
this.n1 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledTextColor");
|
|
529
542
|
this.cu = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledElevation");
|
|
530
543
|
this.cx = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "RestingElevation");
|
|
531
544
|
this.cw = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverElevation");
|
|
532
545
|
this.cv = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusElevation");
|
|
533
|
-
this.
|
|
534
|
-
this.
|
|
535
|
-
this.
|
|
546
|
+
this.ny = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderColor");
|
|
547
|
+
this.n6 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "RippleColor");
|
|
548
|
+
this.kv = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "CornerRadius");
|
|
536
549
|
this.bl = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderWidth");
|
|
537
|
-
this.
|
|
538
|
-
this.
|
|
539
|
-
this.
|
|
540
|
-
this.
|
|
541
|
-
this.
|
|
542
|
-
this.
|
|
550
|
+
this.nx = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BackgroundColor");
|
|
551
|
+
this.n7 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "TextColor");
|
|
552
|
+
this.n5 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverTextColor");
|
|
553
|
+
this.n4 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverBackgroundColor");
|
|
554
|
+
this.n2 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusBackgroundColor");
|
|
555
|
+
this.n3 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusTextColor");
|
|
543
556
|
this.bc = NaN;
|
|
544
557
|
this.bb = NaN;
|
|
545
558
|
this.d = 0;
|
|
546
559
|
this.p = 0;
|
|
547
560
|
this.l = 0;
|
|
548
561
|
this.o = 1;
|
|
549
|
-
this.
|
|
550
|
-
this.
|
|
551
|
-
this.
|
|
552
|
-
this.
|
|
562
|
+
this.la = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
|
|
563
|
+
this.ll = ThemeResolver.ag(XButton.m, XButton.k, "UmbraShadowColor");
|
|
564
|
+
this.li = ThemeResolver.ag(XButton.m, XButton.k, "PenumbraShadowColor");
|
|
565
|
+
this.k8 = ThemeResolver.ag(XButton.m, XButton.k, "AmbientShadowColor");
|
|
553
566
|
this.b0 = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
|
|
554
567
|
this.by = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
|
|
555
568
|
this.bz = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
|
|
556
|
-
this.
|
|
557
|
-
this.
|
|
558
|
-
this.
|
|
559
|
-
this.
|
|
560
|
-
this.
|
|
561
|
-
this.
|
|
569
|
+
this.lj = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
|
|
570
|
+
this.kl = ThemeResolver.aa(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
|
|
571
|
+
this.k9 = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
|
|
572
|
+
this.lb = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
|
|
573
|
+
this.lc = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
|
|
574
|
+
this.ld = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
|
|
562
575
|
this.bx = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
|
|
563
576
|
this.s = ThemeResolver.f(XButton.m, XButton.k, "ElevationMode");
|
|
564
|
-
this.
|
|
565
|
-
this.
|
|
566
|
-
this.
|
|
567
|
-
this.
|
|
568
|
-
this.
|
|
577
|
+
this.lk = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
|
|
578
|
+
this.lh = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
|
|
579
|
+
this.le = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
|
|
580
|
+
this.lf = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
|
|
581
|
+
this.lg = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
|
|
569
582
|
this.a2 = ThemeResolver.k(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
|
|
570
|
-
this.m1 = null;
|
|
571
583
|
this.m3 = null;
|
|
572
|
-
this.m4 = null;
|
|
573
584
|
this.m5 = null;
|
|
585
|
+
this.m6 = null;
|
|
586
|
+
this.m7 = null;
|
|
574
587
|
this.ck = -1;
|
|
575
|
-
this.
|
|
576
|
-
this.
|
|
588
|
+
this.na = null;
|
|
589
|
+
this.m4 = null;
|
|
577
590
|
this.cn = -1;
|
|
578
591
|
this.cm = -1;
|
|
579
592
|
this.cl = -1;
|
|
580
593
|
this.be = NaN;
|
|
581
|
-
this.
|
|
582
|
-
this.
|
|
583
|
-
this.lz = null;
|
|
594
|
+
this.kr = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
595
|
+
this.nc = null;
|
|
584
596
|
this.l1 = null;
|
|
585
|
-
this.l2 = null;
|
|
586
597
|
this.l3 = null;
|
|
598
|
+
this.l4 = null;
|
|
599
|
+
this.l5 = null;
|
|
587
600
|
this.b6 = -1;
|
|
588
|
-
this.
|
|
589
|
-
this.
|
|
601
|
+
this.l8 = null;
|
|
602
|
+
this.l2 = null;
|
|
590
603
|
this.b9 = -1;
|
|
591
604
|
this.b8 = -1;
|
|
592
605
|
this.b7 = -1;
|
|
593
|
-
this.
|
|
606
|
+
this.ma = null;
|
|
607
|
+
this.mb = null;
|
|
594
608
|
this.l9 = null;
|
|
609
|
+
this.l6 = null;
|
|
595
610
|
this.l7 = null;
|
|
596
|
-
this.l4 = null;
|
|
597
|
-
this.l5 = null;
|
|
598
611
|
this.a9 = NaN;
|
|
599
|
-
this.
|
|
600
|
-
this.lk = null;
|
|
612
|
+
this.ko = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
601
613
|
this.lm = null;
|
|
602
|
-
this.ln = null;
|
|
603
614
|
this.lo = null;
|
|
615
|
+
this.lp = null;
|
|
616
|
+
this.lq = null;
|
|
604
617
|
this.b1 = -1;
|
|
605
618
|
this.t = 0;
|
|
606
|
-
this.
|
|
607
|
-
this.
|
|
619
|
+
this.me = null;
|
|
620
|
+
this.ln = null;
|
|
608
621
|
this.co = -1;
|
|
609
622
|
this.cb = -1;
|
|
610
623
|
this.ca = -1;
|
|
611
624
|
this.z = null;
|
|
625
|
+
this.nf = null;
|
|
626
|
+
this.mg = null;
|
|
627
|
+
this.ne = null;
|
|
612
628
|
this.nd = null;
|
|
613
|
-
this.me = null;
|
|
614
|
-
this.nc = null;
|
|
615
629
|
this.nb = null;
|
|
630
|
+
this.m8 = null;
|
|
616
631
|
this.m9 = null;
|
|
617
|
-
this.
|
|
618
|
-
this.
|
|
619
|
-
this.ma = null;
|
|
620
|
-
this.mb = null;
|
|
632
|
+
this.mc = null;
|
|
633
|
+
this.md = null;
|
|
621
634
|
this.a3 = NaN;
|
|
622
|
-
this.
|
|
623
|
-
this.mq = null;
|
|
635
|
+
this.km = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
624
636
|
this.ms = null;
|
|
625
|
-
this.mt = null;
|
|
626
637
|
this.mu = null;
|
|
638
|
+
this.mv = null;
|
|
639
|
+
this.mw = null;
|
|
627
640
|
this.cg = -1;
|
|
628
|
-
this.
|
|
629
|
-
this.
|
|
641
|
+
this.mz = null;
|
|
642
|
+
this.mt = null;
|
|
630
643
|
this.cj = -1;
|
|
631
644
|
this.ci = -1;
|
|
632
645
|
this.ch = -1;
|
|
633
646
|
this.bd = NaN;
|
|
634
|
-
this.
|
|
635
|
-
this.
|
|
647
|
+
this.kq = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
648
|
+
this.m1 = null;
|
|
649
|
+
this.m2 = null;
|
|
636
650
|
this.m0 = null;
|
|
651
|
+
this.mx = null;
|
|
637
652
|
this.my = null;
|
|
638
|
-
this.mv = null;
|
|
639
|
-
this.mw = null;
|
|
640
|
-
this.lp = null;
|
|
641
653
|
this.lr = null;
|
|
642
|
-
this.ls = null;
|
|
643
654
|
this.lt = null;
|
|
655
|
+
this.lu = null;
|
|
656
|
+
this.lv = null;
|
|
644
657
|
this.b2 = -1;
|
|
645
|
-
this.
|
|
646
|
-
this.
|
|
658
|
+
this.mf = null;
|
|
659
|
+
this.ls = null;
|
|
647
660
|
this.b5 = -1;
|
|
648
661
|
this.b4 = -1;
|
|
649
662
|
this.b3 = -1;
|
|
650
663
|
this.a8 = NaN;
|
|
651
|
-
this.
|
|
652
|
-
this.
|
|
664
|
+
this.kn = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
665
|
+
this.lz = null;
|
|
666
|
+
this.l0 = null;
|
|
653
667
|
this.ly = null;
|
|
654
668
|
this.lw = null;
|
|
655
|
-
this.
|
|
656
|
-
this.lv = null;
|
|
657
|
-
this.mf = null;
|
|
669
|
+
this.lx = null;
|
|
658
670
|
this.mh = null;
|
|
659
|
-
this.mi = null;
|
|
660
671
|
this.mj = null;
|
|
672
|
+
this.mk = null;
|
|
673
|
+
this.ml = null;
|
|
661
674
|
this.cc = -1;
|
|
662
|
-
this.
|
|
663
|
-
this.
|
|
675
|
+
this.mo = null;
|
|
676
|
+
this.mi = null;
|
|
664
677
|
this.cf = -1;
|
|
665
678
|
this.ce = -1;
|
|
666
679
|
this.cd = -1;
|
|
667
680
|
this.ba = NaN;
|
|
668
|
-
this.
|
|
669
|
-
this.
|
|
681
|
+
this.kp = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
682
|
+
this.mq = null;
|
|
683
|
+
this.mr = null;
|
|
670
684
|
this.mp = null;
|
|
685
|
+
this.mm = null;
|
|
671
686
|
this.mn = null;
|
|
672
|
-
this.mk = null;
|
|
673
|
-
this.ml = null;
|
|
674
687
|
this.ei = "ig-native-button-" + XButton.d5++;
|
|
675
688
|
this.eh = "ig-button-" + XButton.d4++;
|
|
676
689
|
this.ee = "inline-block";
|
|
@@ -697,8 +710,8 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
697
710
|
this.a7 = NaN;
|
|
698
711
|
this.a6 = NaN;
|
|
699
712
|
this.a4 = NaN;
|
|
700
|
-
this.
|
|
701
|
-
this.
|
|
713
|
+
this.k6 = 1;
|
|
714
|
+
this.ra = 1;
|
|
702
715
|
this.ae = true;
|
|
703
716
|
this.propertyChanged = null;
|
|
704
717
|
this.clicked = null;
|
|
@@ -831,24 +844,25 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
831
844
|
case "IconTextColor":
|
|
832
845
|
case "IconHoverTextColor":
|
|
833
846
|
case "ElevationMode":
|
|
834
|
-
this.
|
|
847
|
+
this.kj();
|
|
835
848
|
break;
|
|
836
849
|
case "BaseTheme":
|
|
837
|
-
this.
|
|
838
|
-
this.
|
|
850
|
+
this.kk(this.n == 0 ? 2 : this.n);
|
|
851
|
+
this.kj();
|
|
839
852
|
break;
|
|
840
853
|
case "IsDisabled":
|
|
841
854
|
this.ap = this.disabled || this.at;
|
|
842
|
-
this.
|
|
855
|
+
this.kj();
|
|
843
856
|
this.view.aq();
|
|
857
|
+
this.ki();
|
|
844
858
|
break;
|
|
845
859
|
case "DisableRipple":
|
|
846
860
|
this.ap = this.disabled || this.at;
|
|
847
|
-
this.
|
|
861
|
+
this.kj();
|
|
848
862
|
break;
|
|
849
863
|
case "TextStyle":
|
|
850
864
|
case "DisableHover":
|
|
851
|
-
this.
|
|
865
|
+
this.ki();
|
|
852
866
|
break;
|
|
853
867
|
case "ActualDisableRipple":
|
|
854
868
|
this.view.ak();
|
|
@@ -863,7 +877,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
863
877
|
case "ActualFocusTextColor":
|
|
864
878
|
case "ActualHoverTextColor":
|
|
865
879
|
case "ActualElevationMode":
|
|
866
|
-
this.
|
|
880
|
+
this.ki();
|
|
867
881
|
break;
|
|
868
882
|
case "Density":
|
|
869
883
|
this.q = this.r == 0 ? 1 : this.r;
|
|
@@ -871,13 +885,16 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
871
885
|
case "ActualDensity":
|
|
872
886
|
case "ActualBorderWidth":
|
|
873
887
|
case "ActualCornerRadius":
|
|
888
|
+
if (this.e == 4) {
|
|
889
|
+
this.kh();
|
|
890
|
+
}
|
|
874
891
|
this.view.ay();
|
|
875
|
-
this.
|
|
892
|
+
this.ki();
|
|
876
893
|
break;
|
|
877
894
|
case "DisplayType":
|
|
878
895
|
this.view.ay();
|
|
896
|
+
this.kj();
|
|
879
897
|
this.ki();
|
|
880
|
-
this.kh();
|
|
881
898
|
break;
|
|
882
899
|
case "ContentPaddingLeft":
|
|
883
900
|
case "ContentPaddingTop":
|
|
@@ -922,112 +939,124 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
922
939
|
break;
|
|
923
940
|
}
|
|
924
941
|
}
|
|
925
|
-
|
|
926
|
-
return new CornerRadius(1, !isNaN_(a.
|
|
942
|
+
kt(a, b) {
|
|
943
|
+
return new CornerRadius(1, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.e) ? a.e : b.e, !isNaN_(a.c) ? a.c : b.c, !isNaN_(a.b) ? a.b : b.b);
|
|
927
944
|
}
|
|
928
|
-
|
|
945
|
+
kj() {
|
|
929
946
|
this.u = this.w != 0 ? this.w : this.v;
|
|
930
|
-
this.
|
|
931
|
-
this.
|
|
932
|
-
this.
|
|
947
|
+
this.nt = this.ph;
|
|
948
|
+
this.nq = this.o5;
|
|
949
|
+
this.ng = this.nw;
|
|
933
950
|
switch (this.e) {
|
|
934
951
|
case 0:
|
|
935
|
-
this.nh = this.pg != null ? this.pg : this.qx != null ? this.qx : this.o6;
|
|
936
|
-
this.ni = this.ph != null ? this.ph : this.qy != null ? this.qy : this.o7;
|
|
937
952
|
this.nj = this.pi != null ? this.pi : this.qz != null ? this.qz : this.o8;
|
|
953
|
+
this.nk = this.pj != null ? this.pj : this.q0 != null ? this.q0 : this.o9;
|
|
954
|
+
this.nl = this.pk != null ? this.pk : this.q1 != null ? this.q1 : this.pa;
|
|
938
955
|
this.cq = this.de >= 0 ? this.de : this.dy >= 0 ? this.dy : this.da;
|
|
939
956
|
this.ct = this.d2 >= 0 ? this.d2 : this.d1 >= 0 ? this.d1 : this.dd;
|
|
940
957
|
this.cs = this.dp >= 0 ? this.dp : this.d0 >= 0 ? this.d0 : this.dc;
|
|
941
958
|
this.cr = this.dn >= 0 ? this.dn : this.dz >= 0 ? this.dz : this.db;
|
|
942
|
-
this.
|
|
943
|
-
this.
|
|
944
|
-
this.
|
|
945
|
-
this.
|
|
959
|
+
this.ni = this.nv != null ? this.nv : this.qy != null ? this.qy : this.o7;
|
|
960
|
+
this.nh = this.nu != null ? this.nu : this.qx != null ? this.qx : this.o6;
|
|
961
|
+
this.no = this.p9 != null ? this.p9 : this.q4 != null ? this.q4 : this.pd;
|
|
962
|
+
this.ks = this.kt(this.ku, this.kt(this.k5, this.kz));
|
|
946
963
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bw) ? this.bw : this.bp;
|
|
947
|
-
this.
|
|
948
|
-
this.
|
|
949
|
-
this.nl = this.p6 != null ? this.p6 : this.q1 != null ? this.q1 : this.pa;
|
|
950
|
-
this.nq = this.q7 != null ? this.q7 : this.q5 != null ? this.q5 : this.pe;
|
|
964
|
+
this.nr = this.q8 != null ? this.q8 : this.q6 != null ? this.q6 : this.pf;
|
|
965
|
+
this.nm = this.p7 != null ? this.p7 : this.q2 != null ? this.q2 : this.pb;
|
|
951
966
|
this.nn = this.p8 != null ? this.p8 : this.q3 != null ? this.q3 : this.pc;
|
|
967
|
+
this.ns = this.q9 != null ? this.q9 : this.q7 != null ? this.q7 : this.pg;
|
|
968
|
+
this.np = this.qa != null ? this.qa : this.q5 != null ? this.q5 : this.pe;
|
|
952
969
|
break;
|
|
953
970
|
case 2:
|
|
954
|
-
this.nh = this.pg != null ? this.pg : this.qm != null ? this.qm : this.ou;
|
|
955
|
-
this.ni = this.ph != null ? this.ph : this.qn != null ? this.qn : this.ov;
|
|
956
971
|
this.nj = this.pi != null ? this.pi : this.qo != null ? this.qo : this.ow;
|
|
972
|
+
this.nk = this.pj != null ? this.pj : this.qp != null ? this.qp : this.ox;
|
|
973
|
+
this.nl = this.pk != null ? this.pk : this.qq != null ? this.qq : this.oy;
|
|
957
974
|
this.cq = this.de >= 0 ? this.de : this.du >= 0 ? this.du : this.c6;
|
|
958
975
|
this.ct = this.d2 >= 0 ? this.d2 : this.dx >= 0 ? this.dx : this.c9;
|
|
959
976
|
this.cs = this.dp >= 0 ? this.dp : this.dw >= 0 ? this.dw : this.c8;
|
|
960
977
|
this.cr = this.dn >= 0 ? this.dn : this.dv >= 0 ? this.dv : this.c7;
|
|
961
|
-
this.
|
|
962
|
-
this.
|
|
963
|
-
this.
|
|
964
|
-
this.
|
|
978
|
+
this.ni = this.nv != null ? this.nv : this.qn != null ? this.qn : this.ov;
|
|
979
|
+
this.nh = this.p9 != null ? this.p9 : this.nu != null ? this.nu : this.qm != null ? this.qm : this.ou;
|
|
980
|
+
this.no = this.qt != null ? this.qt : this.o1;
|
|
981
|
+
this.ks = this.kt(this.ku, this.kt(this.k4, this.ky));
|
|
965
982
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bv) ? this.bv : this.bo;
|
|
966
|
-
this.
|
|
967
|
-
this.
|
|
968
|
-
this.nl = this.p6 != null ? this.p6 : this.qq != null ? this.qq : this.oy;
|
|
969
|
-
this.nq = this.q7 != null ? this.q7 : this.qu != null ? this.qu : this.o2;
|
|
983
|
+
this.nr = this.q8 != null ? this.q8 : this.qv != null ? this.qv : this.o3;
|
|
984
|
+
this.nm = this.p7 != null ? this.p7 : this.qr != null ? this.qr : this.oz;
|
|
970
985
|
this.nn = this.p8 != null ? this.p8 : this.qs != null ? this.qs : this.o0;
|
|
986
|
+
this.ns = this.q9 != null ? this.q9 : this.qw != null ? this.qw : this.o4;
|
|
987
|
+
this.np = this.qa != null ? this.qa : this.qu != null ? this.qu : this.o2;
|
|
971
988
|
break;
|
|
972
989
|
case 1:
|
|
973
|
-
this.nh = this.pg != null ? this.pg : this.pw != null ? this.pw : this.n8;
|
|
974
|
-
this.ni = this.ph != null ? this.ph : this.px != null ? this.px : this.n9;
|
|
975
990
|
this.nj = this.pi != null ? this.pi : this.py != null ? this.py : this.oa;
|
|
991
|
+
this.nk = this.pj != null ? this.pj : this.pz != null ? this.pz : this.ob;
|
|
992
|
+
this.nl = this.pk != null ? this.pk : this.p0 != null ? this.p0 : this.oc;
|
|
976
993
|
this.cq = this.de >= 0 ? this.de : this.dj >= 0 ? this.dj : this.cy;
|
|
977
994
|
this.ct = this.d2 >= 0 ? this.d2 : this.dm >= 0 ? this.dm : this.c1;
|
|
978
995
|
this.cs = this.dp >= 0 ? this.dp : this.dl >= 0 ? this.dl : this.c0;
|
|
979
996
|
this.cr = this.dn >= 0 ? this.dn : this.dk >= 0 ? this.dk : this.cz;
|
|
980
|
-
this.
|
|
981
|
-
this.
|
|
982
|
-
this.
|
|
983
|
-
this.
|
|
997
|
+
this.ni = this.nv != null ? this.nv : this.px != null ? this.px : this.n9;
|
|
998
|
+
this.nh = this.nu != null ? this.nu : this.pw != null ? this.pw : this.n8;
|
|
999
|
+
this.no = this.p9 != null ? this.p9 : this.p3 != null ? this.p3 : this.of;
|
|
1000
|
+
this.ks = this.kt(this.ku, this.kt(this.k1, this.kw));
|
|
984
1001
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.br) ? this.br : this.bm;
|
|
985
|
-
this.
|
|
986
|
-
this.
|
|
987
|
-
this.nl = this.p6 != null ? this.p6 : this.p0 != null ? this.p0 : this.oc;
|
|
988
|
-
this.nq = this.q7 != null ? this.q7 : this.p4 != null ? this.p4 : this.og;
|
|
1002
|
+
this.nr = this.q8 != null ? this.q8 : this.p5 != null ? this.p5 : this.oh;
|
|
1003
|
+
this.nm = this.p7 != null ? this.p7 : this.p1 != null ? this.p1 : this.od;
|
|
989
1004
|
this.nn = this.p8 != null ? this.p8 : this.p2 != null ? this.p2 : this.oe;
|
|
1005
|
+
this.ns = this.q9 != null ? this.q9 : this.p6 != null ? this.p6 : this.oi;
|
|
1006
|
+
this.np = this.qa != null ? this.qa : this.p4 != null ? this.p4 : this.og;
|
|
990
1007
|
break;
|
|
991
1008
|
case 4:
|
|
992
|
-
this.nh = this.pg != null ? this.pg : this.qb != null ? this.qb : this.oj;
|
|
993
|
-
this.ni = this.ph != null ? this.ph : this.qc != null ? this.qc : this.ok;
|
|
994
1009
|
this.nj = this.pi != null ? this.pi : this.qd != null ? this.qd : this.ol;
|
|
1010
|
+
this.nk = this.pj != null ? this.pj : this.qe != null ? this.qe : this.om;
|
|
1011
|
+
this.nl = this.pk != null ? this.pk : this.qf != null ? this.qf : this.on;
|
|
995
1012
|
this.cq = this.de >= 0 ? this.de : this.dq >= 0 ? this.dq : this.c2;
|
|
996
1013
|
this.ct = this.d2 >= 0 ? this.d2 : this.dt >= 0 ? this.dt : this.c5;
|
|
997
1014
|
this.cs = this.dp >= 0 ? this.dp : this.ds >= 0 ? this.ds : this.c4;
|
|
998
1015
|
this.cr = this.dn >= 0 ? this.dn : this.dr >= 0 ? this.dr : this.c3;
|
|
999
|
-
this.
|
|
1000
|
-
this.
|
|
1001
|
-
this.
|
|
1002
|
-
this.
|
|
1016
|
+
this.ni = this.nv != null ? this.nv : this.qc != null ? this.qc : this.ok;
|
|
1017
|
+
this.nh = this.nu != null ? this.nu : this.qb != null ? this.qb : this.oj;
|
|
1018
|
+
this.no = this.p9 != null ? this.p9 : this.qi != null ? this.qi : this.oq;
|
|
1019
|
+
this.kh();
|
|
1003
1020
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bs) ? this.bs : this.bn;
|
|
1004
|
-
this.
|
|
1005
|
-
this.
|
|
1006
|
-
this.nl = this.p6 != null ? this.p6 : this.qf != null ? this.qf : this.on;
|
|
1007
|
-
this.nq = this.q7 != null ? this.q7 : this.qj != null ? this.qj : this.or;
|
|
1021
|
+
this.nr = this.q8 != null ? this.q8 : this.qk != null ? this.qk : this.os;
|
|
1022
|
+
this.nm = this.p7 != null ? this.p7 : this.qg != null ? this.qg : this.oo;
|
|
1008
1023
|
this.nn = this.p8 != null ? this.p8 : this.qh != null ? this.qh : this.op;
|
|
1024
|
+
this.ns = this.q9 != null ? this.q9 : this.ql != null ? this.ql : this.ot;
|
|
1025
|
+
this.np = this.qa != null ? this.qa : this.qj != null ? this.qj : this.or;
|
|
1009
1026
|
break;
|
|
1010
1027
|
case 3:
|
|
1011
|
-
this.nh = this.pg != null ? this.pg : this.pl != null ? this.pl : this.nx;
|
|
1012
|
-
this.ni = this.ph != null ? this.ph : this.pm != null ? this.pm : this.ny;
|
|
1013
1028
|
this.nj = this.pi != null ? this.pi : this.pn != null ? this.pn : this.nz;
|
|
1029
|
+
this.nk = this.pj != null ? this.pj : this.po != null ? this.po : this.n0;
|
|
1030
|
+
this.nl = this.pk != null ? this.pk : this.pp != null ? this.pp : this.n1;
|
|
1014
1031
|
this.cq = this.de >= 0 ? this.de : this.df >= 0 ? this.df : this.cu;
|
|
1015
1032
|
this.ct = this.d2 >= 0 ? this.d2 : this.di >= 0 ? this.di : this.cx;
|
|
1016
1033
|
this.cs = this.dp >= 0 ? this.dp : this.dh >= 0 ? this.dh : this.cw;
|
|
1017
1034
|
this.cr = this.dn >= 0 ? this.dn : this.dg >= 0 ? this.dg : this.cv;
|
|
1018
|
-
this.
|
|
1019
|
-
this.
|
|
1020
|
-
this.
|
|
1021
|
-
this.
|
|
1035
|
+
this.ni = this.nv != null ? this.nv : this.pm != null ? this.pm : this.ny;
|
|
1036
|
+
this.nh = this.nu != null ? this.nu : this.pl != null ? this.pl : this.nx;
|
|
1037
|
+
this.no = this.p9 != null ? this.p9 : this.ps != null ? this.ps : this.n4;
|
|
1038
|
+
this.ks = this.kt(this.ku, this.kt(this.k0, this.kv));
|
|
1022
1039
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bq) ? this.bq : this.bl;
|
|
1023
|
-
this.
|
|
1024
|
-
this.
|
|
1025
|
-
this.nl = this.p6 != null ? this.p6 : this.pp != null ? this.pp : this.n1;
|
|
1026
|
-
this.nq = this.q7 != null ? this.q7 : this.pt != null ? this.pt : this.n5;
|
|
1040
|
+
this.nr = this.q8 != null ? this.q8 : this.pu != null ? this.pu : this.pf;
|
|
1041
|
+
this.nm = this.p7 != null ? this.p7 : this.pq != null ? this.pq : this.n2;
|
|
1027
1042
|
this.nn = this.p8 != null ? this.p8 : this.pr != null ? this.pr : this.n3;
|
|
1043
|
+
this.ns = this.q9 != null ? this.q9 : this.pv != null ? this.pv : this.n7;
|
|
1044
|
+
this.np = this.qa != null ? this.qa : this.pt != null ? this.pt : this.n5;
|
|
1028
1045
|
break;
|
|
1029
1046
|
}
|
|
1030
1047
|
}
|
|
1048
|
+
kh() {
|
|
1049
|
+
this.ks = this.kt(this.ku, this.kt(this.k3, this.k2(this.kx)));
|
|
1050
|
+
}
|
|
1051
|
+
k2(a) {
|
|
1052
|
+
switch (this.q) {
|
|
1053
|
+
case 1: return a;
|
|
1054
|
+
case 2: return a;
|
|
1055
|
+
case 3: return a;
|
|
1056
|
+
case 4: return new CornerRadius(0, 16);
|
|
1057
|
+
}
|
|
1058
|
+
return a;
|
|
1059
|
+
}
|
|
1031
1060
|
j6() {
|
|
1032
1061
|
if (this.disabled) {
|
|
1033
1062
|
return;
|
|
@@ -1038,22 +1067,22 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1038
1067
|
}
|
|
1039
1068
|
j5() {
|
|
1040
1069
|
this.focused = false;
|
|
1041
|
-
this.
|
|
1070
|
+
this.ki();
|
|
1042
1071
|
}
|
|
1043
1072
|
j8() {
|
|
1044
1073
|
this.focused = true;
|
|
1045
|
-
this.
|
|
1074
|
+
this.ki();
|
|
1046
1075
|
}
|
|
1047
1076
|
kc() {
|
|
1048
1077
|
this.a0 = false;
|
|
1049
|
-
this.
|
|
1078
|
+
this.ki();
|
|
1050
1079
|
if (this.mouseLeave != null) {
|
|
1051
1080
|
this.mouseLeave(this, new MouseEventArgs());
|
|
1052
1081
|
}
|
|
1053
1082
|
}
|
|
1054
1083
|
kb() {
|
|
1055
1084
|
this.a0 = true;
|
|
1056
|
-
this.
|
|
1085
|
+
this.ki();
|
|
1057
1086
|
if (this.mouseEnter != null) {
|
|
1058
1087
|
this.mouseEnter(this, new MouseEventArgs());
|
|
1059
1088
|
}
|
|
@@ -1063,22 +1092,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1063
1092
|
this.gotFocus(this, new FocusEventArgs());
|
|
1064
1093
|
}
|
|
1065
1094
|
}
|
|
1066
|
-
ka(a) {
|
|
1095
|
+
ka(a, b) {
|
|
1067
1096
|
if (this.lostFocus != null) {
|
|
1068
1097
|
this.lostFocus(this, ((() => {
|
|
1069
1098
|
let $ret = new FocusEventArgs();
|
|
1070
|
-
$ret.
|
|
1099
|
+
$ret.b = a;
|
|
1100
|
+
$ret.a = b;
|
|
1071
1101
|
return $ret;
|
|
1072
1102
|
})()));
|
|
1073
1103
|
}
|
|
1074
1104
|
}
|
|
1075
|
-
|
|
1105
|
+
ki() {
|
|
1076
1106
|
let a = this.view.q;
|
|
1077
1107
|
if (a == null) {
|
|
1078
1108
|
return;
|
|
1079
1109
|
}
|
|
1080
|
-
NativeUI.o(a, this.
|
|
1081
|
-
NativeUI.n(a, this.
|
|
1110
|
+
NativeUI.o(a, this.ks);
|
|
1111
|
+
NativeUI.n(a, this.ni);
|
|
1082
1112
|
if (!isNaN_(this.bf)) {
|
|
1083
1113
|
NativeUI.p(a, new Thickness(0, this.bf));
|
|
1084
1114
|
}
|
|
@@ -1097,132 +1127,132 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1097
1127
|
}
|
|
1098
1128
|
}
|
|
1099
1129
|
if (this.disabled) {
|
|
1100
|
-
NativeUI.m(a, this.
|
|
1130
|
+
NativeUI.m(a, this.nj);
|
|
1101
1131
|
}
|
|
1102
1132
|
else if (this.focused && this.az) {
|
|
1103
|
-
NativeUI.m(a, this.
|
|
1133
|
+
NativeUI.m(a, this.nm);
|
|
1104
1134
|
}
|
|
1105
1135
|
else {
|
|
1106
1136
|
if (this.a0 && !this.ar) {
|
|
1107
|
-
NativeUI.m(a, this.
|
|
1137
|
+
NativeUI.m(a, this.no);
|
|
1108
1138
|
}
|
|
1109
1139
|
else {
|
|
1110
|
-
NativeUI.m(a, this.
|
|
1140
|
+
NativeUI.m(a, this.nh);
|
|
1111
1141
|
}
|
|
1112
1142
|
}
|
|
1113
|
-
this.view.aw(this.
|
|
1143
|
+
this.view.aw(this.nr, BrushUtil.h(0, 0, 0, 0));
|
|
1114
1144
|
if (this.aa != null) {
|
|
1115
1145
|
this.view.az(this.aa);
|
|
1116
1146
|
}
|
|
1117
1147
|
if (this.disabled) {
|
|
1118
|
-
NativeUI.q(this.view.s, this.nj);
|
|
1119
|
-
NativeUI.r(this.view.s, this.nj);
|
|
1120
|
-
}
|
|
1121
|
-
else if (this.focused && this.az) {
|
|
1122
1148
|
NativeUI.q(this.view.s, this.nl);
|
|
1123
1149
|
NativeUI.r(this.view.s, this.nl);
|
|
1124
1150
|
}
|
|
1151
|
+
else if (this.focused && this.az) {
|
|
1152
|
+
NativeUI.q(this.view.s, this.nn);
|
|
1153
|
+
NativeUI.r(this.view.s, this.nn);
|
|
1154
|
+
}
|
|
1125
1155
|
else {
|
|
1126
1156
|
if (this.a0 && !this.ar) {
|
|
1127
|
-
NativeUI.q(this.view.s, this.
|
|
1128
|
-
NativeUI.r(this.view.s, this.
|
|
1157
|
+
NativeUI.q(this.view.s, this.np);
|
|
1158
|
+
NativeUI.r(this.view.s, this.np);
|
|
1129
1159
|
}
|
|
1130
1160
|
else {
|
|
1131
|
-
NativeUI.q(this.view.s, this.
|
|
1132
|
-
NativeUI.r(this.view.s, this.
|
|
1161
|
+
NativeUI.q(this.view.s, this.ns);
|
|
1162
|
+
NativeUI.r(this.view.s, this.ns);
|
|
1133
1163
|
}
|
|
1134
1164
|
}
|
|
1135
1165
|
}
|
|
1136
|
-
|
|
1137
|
-
this.
|
|
1138
|
-
this.
|
|
1139
|
-
this.
|
|
1166
|
+
kk(a) {
|
|
1167
|
+
this.ph = XButton.k.ae(a, "UmbraShadowColor");
|
|
1168
|
+
this.o5 = XButton.k.ae(a, "PenumbraShadowColor");
|
|
1169
|
+
this.nw = XButton.k.ae(a, "AmbientShadowColor");
|
|
1140
1170
|
this.v = XButton.k.d(a, "ElevationMode");
|
|
1141
|
-
this.
|
|
1142
|
-
this.
|
|
1143
|
-
this.
|
|
1171
|
+
this.o8 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
|
|
1172
|
+
this.o9 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
|
|
1173
|
+
this.pa = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
|
|
1144
1174
|
this.da = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
|
|
1145
1175
|
this.dd = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
|
|
1146
1176
|
this.dc = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
|
|
1147
1177
|
this.db = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
|
|
1148
|
-
this.
|
|
1149
|
-
this.
|
|
1150
|
-
this.
|
|
1178
|
+
this.o7 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
|
|
1179
|
+
this.pf = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
|
|
1180
|
+
this.kz = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
|
|
1151
1181
|
this.bp = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
|
|
1152
|
-
this.
|
|
1153
|
-
this.
|
|
1154
|
-
this.
|
|
1155
|
-
this.
|
|
1156
|
-
this.
|
|
1157
|
-
this.
|
|
1158
|
-
this.
|
|
1159
|
-
this.
|
|
1160
|
-
this.
|
|
1182
|
+
this.o6 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
|
|
1183
|
+
this.pg = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
|
|
1184
|
+
this.pe = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
|
|
1185
|
+
this.pd = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
|
|
1186
|
+
this.pb = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
|
|
1187
|
+
this.pc = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
|
|
1188
|
+
this.oa = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBackgroundColor");
|
|
1189
|
+
this.ob = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBorderColor");
|
|
1190
|
+
this.oc = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledTextColor");
|
|
1161
1191
|
this.cy = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledElevation");
|
|
1162
1192
|
this.c1 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "RestingElevation");
|
|
1163
1193
|
this.c0 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverElevation");
|
|
1164
1194
|
this.cz = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusElevation");
|
|
1165
|
-
this.
|
|
1166
|
-
this.
|
|
1167
|
-
this.
|
|
1195
|
+
this.n9 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderColor");
|
|
1196
|
+
this.oh = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "RippleColor");
|
|
1197
|
+
this.kw = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 1), "CornerRadius");
|
|
1168
1198
|
this.bm = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderWidth");
|
|
1169
|
-
this.
|
|
1170
|
-
this.
|
|
1171
|
-
this.
|
|
1172
|
-
this.
|
|
1173
|
-
this.
|
|
1174
|
-
this.
|
|
1175
|
-
this.
|
|
1176
|
-
this.
|
|
1177
|
-
this.
|
|
1199
|
+
this.n8 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BackgroundColor");
|
|
1200
|
+
this.oi = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "TextColor");
|
|
1201
|
+
this.og = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverTextColor");
|
|
1202
|
+
this.of = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverBackgroundColor");
|
|
1203
|
+
this.od = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusBackgroundColor");
|
|
1204
|
+
this.oe = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusTextColor");
|
|
1205
|
+
this.ow = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBackgroundColor");
|
|
1206
|
+
this.ox = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBorderColor");
|
|
1207
|
+
this.oy = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledTextColor");
|
|
1178
1208
|
this.c6 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledElevation");
|
|
1179
1209
|
this.c9 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "RestingElevation");
|
|
1180
1210
|
this.c8 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverElevation");
|
|
1181
1211
|
this.c7 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusElevation");
|
|
1182
|
-
this.
|
|
1183
|
-
this.
|
|
1184
|
-
this.
|
|
1212
|
+
this.ov = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderColor");
|
|
1213
|
+
this.o3 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "RippleColor");
|
|
1214
|
+
this.ky = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 2), "CornerRadius");
|
|
1185
1215
|
this.bo = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderWidth");
|
|
1186
|
-
this.
|
|
1187
|
-
this.
|
|
1188
|
-
this.
|
|
1189
|
-
this.
|
|
1190
|
-
this.
|
|
1191
|
-
this.
|
|
1192
|
-
this.
|
|
1193
|
-
this.
|
|
1194
|
-
this.
|
|
1216
|
+
this.ou = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BackgroundColor");
|
|
1217
|
+
this.o4 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "TextColor");
|
|
1218
|
+
this.o2 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverTextColor");
|
|
1219
|
+
this.o1 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverBackgroundColor");
|
|
1220
|
+
this.oz = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusBackgroundColor");
|
|
1221
|
+
this.o0 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusTextColor");
|
|
1222
|
+
this.ol = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBackgroundColor");
|
|
1223
|
+
this.om = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBorderColor");
|
|
1224
|
+
this.on = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledTextColor");
|
|
1195
1225
|
this.c2 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledElevation");
|
|
1196
1226
|
this.c5 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "RestingElevation");
|
|
1197
1227
|
this.c4 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverElevation");
|
|
1198
1228
|
this.c3 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusElevation");
|
|
1199
|
-
this.
|
|
1200
|
-
this.
|
|
1201
|
-
this.
|
|
1229
|
+
this.ok = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderColor");
|
|
1230
|
+
this.os = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "RippleColor");
|
|
1231
|
+
this.kx = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 4), "CornerRadius");
|
|
1202
1232
|
this.bn = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderWidth");
|
|
1203
|
-
this.
|
|
1204
|
-
this.
|
|
1205
|
-
this.
|
|
1206
|
-
this.
|
|
1207
|
-
this.
|
|
1208
|
-
this.
|
|
1209
|
-
this.
|
|
1210
|
-
this.
|
|
1211
|
-
this.
|
|
1233
|
+
this.oj = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BackgroundColor");
|
|
1234
|
+
this.ot = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "TextColor");
|
|
1235
|
+
this.or = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverTextColor");
|
|
1236
|
+
this.oq = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverBackgroundColor");
|
|
1237
|
+
this.oo = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusBackgroundColor");
|
|
1238
|
+
this.op = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusTextColor");
|
|
1239
|
+
this.nz = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBackgroundColor");
|
|
1240
|
+
this.n0 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBorderColor");
|
|
1241
|
+
this.n1 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledTextColor");
|
|
1212
1242
|
this.cu = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledElevation");
|
|
1213
1243
|
this.cx = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "RestingElevation");
|
|
1214
1244
|
this.cw = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverElevation");
|
|
1215
1245
|
this.cv = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusElevation");
|
|
1216
|
-
this.
|
|
1217
|
-
this.
|
|
1218
|
-
this.
|
|
1246
|
+
this.ny = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderColor");
|
|
1247
|
+
this.n6 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "RippleColor");
|
|
1248
|
+
this.kv = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 3), "CornerRadius");
|
|
1219
1249
|
this.bl = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderWidth");
|
|
1220
|
-
this.
|
|
1221
|
-
this.
|
|
1222
|
-
this.
|
|
1223
|
-
this.
|
|
1224
|
-
this.
|
|
1225
|
-
this.
|
|
1250
|
+
this.nx = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BackgroundColor");
|
|
1251
|
+
this.n7 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "TextColor");
|
|
1252
|
+
this.n5 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverTextColor");
|
|
1253
|
+
this.n4 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverBackgroundColor");
|
|
1254
|
+
this.n2 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusBackgroundColor");
|
|
1255
|
+
this.n3 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusTextColor");
|
|
1226
1256
|
}
|
|
1227
1257
|
get bu() {
|
|
1228
1258
|
return this.bc;
|
|
@@ -1284,43 +1314,43 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1284
1314
|
this.kd("ActualDensity", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
|
|
1285
1315
|
}
|
|
1286
1316
|
}
|
|
1287
|
-
get
|
|
1288
|
-
return this.
|
|
1317
|
+
get ni() {
|
|
1318
|
+
return this.la;
|
|
1289
1319
|
}
|
|
1290
|
-
set
|
|
1291
|
-
let b = this.
|
|
1292
|
-
this.
|
|
1293
|
-
if (b != this.
|
|
1320
|
+
set ni(a) {
|
|
1321
|
+
let b = this.la;
|
|
1322
|
+
this.la = a;
|
|
1323
|
+
if (b != this.la) {
|
|
1294
1324
|
this.kd("ActualBorderColor", b, a);
|
|
1295
1325
|
}
|
|
1296
1326
|
}
|
|
1297
|
-
get
|
|
1298
|
-
return this.
|
|
1327
|
+
get nt() {
|
|
1328
|
+
return this.ll;
|
|
1299
1329
|
}
|
|
1300
|
-
set
|
|
1301
|
-
let b = this.
|
|
1302
|
-
this.
|
|
1303
|
-
if (b != this.
|
|
1330
|
+
set nt(a) {
|
|
1331
|
+
let b = this.ll;
|
|
1332
|
+
this.ll = a;
|
|
1333
|
+
if (b != this.ll) {
|
|
1304
1334
|
this.kd("ActualUmbraShadowColor", b, a);
|
|
1305
1335
|
}
|
|
1306
1336
|
}
|
|
1307
|
-
get
|
|
1308
|
-
return this.
|
|
1337
|
+
get nq() {
|
|
1338
|
+
return this.li;
|
|
1309
1339
|
}
|
|
1310
|
-
set
|
|
1311
|
-
let b = this.
|
|
1312
|
-
this.
|
|
1313
|
-
if (b != this.
|
|
1340
|
+
set nq(a) {
|
|
1341
|
+
let b = this.li;
|
|
1342
|
+
this.li = a;
|
|
1343
|
+
if (b != this.li) {
|
|
1314
1344
|
this.kd("ActualPenumbraShadowColor", b, a);
|
|
1315
1345
|
}
|
|
1316
1346
|
}
|
|
1317
|
-
get
|
|
1318
|
-
return this.
|
|
1347
|
+
get ng() {
|
|
1348
|
+
return this.k8;
|
|
1319
1349
|
}
|
|
1320
|
-
set
|
|
1321
|
-
let b = this.
|
|
1322
|
-
this.
|
|
1323
|
-
if (b != this.
|
|
1350
|
+
set ng(a) {
|
|
1351
|
+
let b = this.k8;
|
|
1352
|
+
this.k8 = a;
|
|
1353
|
+
if (b != this.k8) {
|
|
1324
1354
|
this.kd("ActualAmbientShadowColor", b, a);
|
|
1325
1355
|
}
|
|
1326
1356
|
}
|
|
@@ -1354,36 +1384,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1354
1384
|
this.kd("ActualHoverElevation", b, a);
|
|
1355
1385
|
}
|
|
1356
1386
|
}
|
|
1357
|
-
get
|
|
1358
|
-
return this.
|
|
1387
|
+
get nr() {
|
|
1388
|
+
return this.lj;
|
|
1359
1389
|
}
|
|
1360
|
-
set
|
|
1361
|
-
let b = this.
|
|
1362
|
-
this.
|
|
1363
|
-
if (b != this.
|
|
1390
|
+
set nr(a) {
|
|
1391
|
+
let b = this.lj;
|
|
1392
|
+
this.lj = a;
|
|
1393
|
+
if (b != this.lj) {
|
|
1364
1394
|
this.kd("ActualRippleColor", b, a);
|
|
1365
1395
|
}
|
|
1366
1396
|
}
|
|
1367
|
-
get
|
|
1368
|
-
return this.
|
|
1397
|
+
get ks() {
|
|
1398
|
+
return this.kl;
|
|
1369
1399
|
}
|
|
1370
|
-
set
|
|
1371
|
-
let b = this.
|
|
1372
|
-
this.
|
|
1373
|
-
if (b
|
|
1400
|
+
set ks(a) {
|
|
1401
|
+
let b = this.kl;
|
|
1402
|
+
this.kl = a;
|
|
1403
|
+
if (!b.equals(this.kl)) {
|
|
1374
1404
|
this.kd("ActualCornerRadius", b, a);
|
|
1375
1405
|
}
|
|
1376
1406
|
}
|
|
1377
|
-
get nf() {
|
|
1378
|
-
return this.k7;
|
|
1379
|
-
}
|
|
1380
|
-
set nf(a) {
|
|
1381
|
-
let b = this.k7;
|
|
1382
|
-
this.k7 = a;
|
|
1383
|
-
if (b != this.k7) {
|
|
1384
|
-
this.kd("ActualBackgroundColor", b, a);
|
|
1385
|
-
}
|
|
1386
|
-
}
|
|
1387
1407
|
get nh() {
|
|
1388
1408
|
return this.k9;
|
|
1389
1409
|
}
|
|
@@ -1391,17 +1411,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1391
1411
|
let b = this.k9;
|
|
1392
1412
|
this.k9 = a;
|
|
1393
1413
|
if (b != this.k9) {
|
|
1394
|
-
this.kd("
|
|
1395
|
-
}
|
|
1396
|
-
}
|
|
1397
|
-
get ni() {
|
|
1398
|
-
return this.la;
|
|
1399
|
-
}
|
|
1400
|
-
set ni(a) {
|
|
1401
|
-
let b = this.la;
|
|
1402
|
-
this.la = a;
|
|
1403
|
-
if (b != this.la) {
|
|
1404
|
-
this.kd("ActualDisabledBorderColor", b, a);
|
|
1414
|
+
this.kd("ActualBackgroundColor", b, a);
|
|
1405
1415
|
}
|
|
1406
1416
|
}
|
|
1407
1417
|
get nj() {
|
|
@@ -1411,6 +1421,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1411
1421
|
let b = this.lb;
|
|
1412
1422
|
this.lb = a;
|
|
1413
1423
|
if (b != this.lb) {
|
|
1424
|
+
this.kd("ActualDisabledBackgroundColor", b, a);
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
get nk() {
|
|
1428
|
+
return this.lc;
|
|
1429
|
+
}
|
|
1430
|
+
set nk(a) {
|
|
1431
|
+
let b = this.lc;
|
|
1432
|
+
this.lc = a;
|
|
1433
|
+
if (b != this.lc) {
|
|
1434
|
+
this.kd("ActualDisabledBorderColor", b, a);
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
get nl() {
|
|
1438
|
+
return this.ld;
|
|
1439
|
+
}
|
|
1440
|
+
set nl(a) {
|
|
1441
|
+
let b = this.ld;
|
|
1442
|
+
this.ld = a;
|
|
1443
|
+
if (b != this.ld) {
|
|
1414
1444
|
this.kd("ActualDisabledTextColor", b, a);
|
|
1415
1445
|
}
|
|
1416
1446
|
}
|
|
@@ -1434,16 +1464,36 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1434
1464
|
this.kd("ActualElevationMode", enumGetBox(ElevationMode_$type, b), enumGetBox(ElevationMode_$type, a));
|
|
1435
1465
|
}
|
|
1436
1466
|
}
|
|
1437
|
-
get
|
|
1438
|
-
return this.
|
|
1467
|
+
get ns() {
|
|
1468
|
+
return this.lk;
|
|
1439
1469
|
}
|
|
1440
|
-
set
|
|
1441
|
-
let b = this.
|
|
1442
|
-
this.
|
|
1443
|
-
if (b != this.
|
|
1470
|
+
set ns(a) {
|
|
1471
|
+
let b = this.lk;
|
|
1472
|
+
this.lk = a;
|
|
1473
|
+
if (b != this.lk) {
|
|
1444
1474
|
this.kd("ActualTextColor", b, a);
|
|
1445
1475
|
}
|
|
1446
1476
|
}
|
|
1477
|
+
get np() {
|
|
1478
|
+
return this.lh;
|
|
1479
|
+
}
|
|
1480
|
+
set np(a) {
|
|
1481
|
+
let b = this.lh;
|
|
1482
|
+
this.lh = a;
|
|
1483
|
+
if (b != this.lh) {
|
|
1484
|
+
this.kd("ActualHoverTextColor", b, a);
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
get nm() {
|
|
1488
|
+
return this.le;
|
|
1489
|
+
}
|
|
1490
|
+
set nm(a) {
|
|
1491
|
+
let b = this.le;
|
|
1492
|
+
this.le = a;
|
|
1493
|
+
if (b != this.le) {
|
|
1494
|
+
this.kd("ActualFocusBackgroundColor", b, a);
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1447
1497
|
get nn() {
|
|
1448
1498
|
return this.lf;
|
|
1449
1499
|
}
|
|
@@ -1451,36 +1501,16 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1451
1501
|
let b = this.lf;
|
|
1452
1502
|
this.lf = a;
|
|
1453
1503
|
if (b != this.lf) {
|
|
1454
|
-
this.kd("ActualHoverTextColor", b, a);
|
|
1455
|
-
}
|
|
1456
|
-
}
|
|
1457
|
-
get nk() {
|
|
1458
|
-
return this.lc;
|
|
1459
|
-
}
|
|
1460
|
-
set nk(a) {
|
|
1461
|
-
let b = this.lc;
|
|
1462
|
-
this.lc = a;
|
|
1463
|
-
if (b != this.lc) {
|
|
1464
|
-
this.kd("ActualFocusBackgroundColor", b, a);
|
|
1465
|
-
}
|
|
1466
|
-
}
|
|
1467
|
-
get nl() {
|
|
1468
|
-
return this.ld;
|
|
1469
|
-
}
|
|
1470
|
-
set nl(a) {
|
|
1471
|
-
let b = this.ld;
|
|
1472
|
-
this.ld = a;
|
|
1473
|
-
if (b != this.ld) {
|
|
1474
1504
|
this.kd("ActualFocusTextColor", b, a);
|
|
1475
1505
|
}
|
|
1476
1506
|
}
|
|
1477
|
-
get
|
|
1478
|
-
return this.
|
|
1507
|
+
get no() {
|
|
1508
|
+
return this.lg;
|
|
1479
1509
|
}
|
|
1480
|
-
set
|
|
1481
|
-
let b = this.
|
|
1482
|
-
this.
|
|
1483
|
-
if (b != this.
|
|
1510
|
+
set no(a) {
|
|
1511
|
+
let b = this.lg;
|
|
1512
|
+
this.lg = a;
|
|
1513
|
+
if (b != this.lg) {
|
|
1484
1514
|
this.kd("ActualHoverBackgroundColor", b, a);
|
|
1485
1515
|
}
|
|
1486
1516
|
}
|
|
@@ -1494,16 +1524,6 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1494
1524
|
this.kd("ActualBorderWidth", b, a);
|
|
1495
1525
|
}
|
|
1496
1526
|
}
|
|
1497
|
-
get qv() {
|
|
1498
|
-
return this.m1;
|
|
1499
|
-
}
|
|
1500
|
-
set qv(a) {
|
|
1501
|
-
let b = this.m1;
|
|
1502
|
-
this.m1 = a;
|
|
1503
|
-
if (b != this.m1) {
|
|
1504
|
-
this.kd("RaisedBackgroundColor", b, a);
|
|
1505
|
-
}
|
|
1506
|
-
}
|
|
1507
1527
|
get qx() {
|
|
1508
1528
|
return this.m3;
|
|
1509
1529
|
}
|
|
@@ -1511,17 +1531,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1511
1531
|
let b = this.m3;
|
|
1512
1532
|
this.m3 = a;
|
|
1513
1533
|
if (b != this.m3) {
|
|
1514
|
-
this.kd("
|
|
1515
|
-
}
|
|
1516
|
-
}
|
|
1517
|
-
get qy() {
|
|
1518
|
-
return this.m4;
|
|
1519
|
-
}
|
|
1520
|
-
set qy(a) {
|
|
1521
|
-
let b = this.m4;
|
|
1522
|
-
this.m4 = a;
|
|
1523
|
-
if (b != this.m4) {
|
|
1524
|
-
this.kd("RaisedDisabledBorderColor", b, a);
|
|
1534
|
+
this.kd("RaisedBackgroundColor", b, a);
|
|
1525
1535
|
}
|
|
1526
1536
|
}
|
|
1527
1537
|
get qz() {
|
|
@@ -1531,6 +1541,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1531
1541
|
let b = this.m5;
|
|
1532
1542
|
this.m5 = a;
|
|
1533
1543
|
if (b != this.m5) {
|
|
1544
|
+
this.kd("RaisedDisabledBackgroundColor", b, a);
|
|
1545
|
+
}
|
|
1546
|
+
}
|
|
1547
|
+
get q0() {
|
|
1548
|
+
return this.m6;
|
|
1549
|
+
}
|
|
1550
|
+
set q0(a) {
|
|
1551
|
+
let b = this.m6;
|
|
1552
|
+
this.m6 = a;
|
|
1553
|
+
if (b != this.m6) {
|
|
1554
|
+
this.kd("RaisedDisabledBorderColor", b, a);
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
get q1() {
|
|
1558
|
+
return this.m7;
|
|
1559
|
+
}
|
|
1560
|
+
set q1(a) {
|
|
1561
|
+
let b = this.m7;
|
|
1562
|
+
this.m7 = a;
|
|
1563
|
+
if (b != this.m7) {
|
|
1534
1564
|
this.kd("RaisedDisabledTextColor", b, a);
|
|
1535
1565
|
}
|
|
1536
1566
|
}
|
|
@@ -1544,23 +1574,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1544
1574
|
this.kd("RaisedDisabledElevation", b, a);
|
|
1545
1575
|
}
|
|
1546
1576
|
}
|
|
1547
|
-
get
|
|
1548
|
-
return this.
|
|
1577
|
+
get q4() {
|
|
1578
|
+
return this.na;
|
|
1549
1579
|
}
|
|
1550
|
-
set
|
|
1551
|
-
let b = this.
|
|
1552
|
-
this.
|
|
1553
|
-
if (b != this.
|
|
1580
|
+
set q4(a) {
|
|
1581
|
+
let b = this.na;
|
|
1582
|
+
this.na = a;
|
|
1583
|
+
if (b != this.na) {
|
|
1554
1584
|
this.kd("RaisedHoverBackgroundColor", b, a);
|
|
1555
1585
|
}
|
|
1556
1586
|
}
|
|
1557
|
-
get
|
|
1558
|
-
return this.
|
|
1587
|
+
get qy() {
|
|
1588
|
+
return this.m4;
|
|
1559
1589
|
}
|
|
1560
|
-
set
|
|
1561
|
-
let b = this.
|
|
1562
|
-
this.
|
|
1563
|
-
if (b != this.
|
|
1590
|
+
set qy(a) {
|
|
1591
|
+
let b = this.m4;
|
|
1592
|
+
this.m4 = a;
|
|
1593
|
+
if (b != this.m4) {
|
|
1564
1594
|
this.kd("RaisedBorderColor", b, a);
|
|
1565
1595
|
}
|
|
1566
1596
|
}
|
|
@@ -1604,36 +1634,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1604
1634
|
this.kd("RaisedBorderWidth", b, a);
|
|
1605
1635
|
}
|
|
1606
1636
|
}
|
|
1607
|
-
get
|
|
1608
|
-
return this.
|
|
1637
|
+
get k5() {
|
|
1638
|
+
return this.kr;
|
|
1609
1639
|
}
|
|
1610
|
-
set
|
|
1611
|
-
let b = this.
|
|
1612
|
-
this.
|
|
1640
|
+
set k5(a) {
|
|
1641
|
+
let b = this.kr;
|
|
1642
|
+
this.kr = a;
|
|
1613
1643
|
{
|
|
1614
1644
|
this.kd("RaisedCornerRadius", b, a);
|
|
1615
1645
|
}
|
|
1616
1646
|
}
|
|
1617
|
-
get
|
|
1618
|
-
return this.
|
|
1647
|
+
get q6() {
|
|
1648
|
+
return this.nc;
|
|
1619
1649
|
}
|
|
1620
|
-
set
|
|
1621
|
-
let b = this.
|
|
1622
|
-
this.
|
|
1623
|
-
if (b != this.
|
|
1650
|
+
set q6(a) {
|
|
1651
|
+
let b = this.nc;
|
|
1652
|
+
this.nc = a;
|
|
1653
|
+
if (b != this.nc) {
|
|
1624
1654
|
this.kd("RaisedRippleColor", b, a);
|
|
1625
1655
|
}
|
|
1626
1656
|
}
|
|
1627
|
-
get pu() {
|
|
1628
|
-
return this.lz;
|
|
1629
|
-
}
|
|
1630
|
-
set pu(a) {
|
|
1631
|
-
let b = this.lz;
|
|
1632
|
-
this.lz = a;
|
|
1633
|
-
if (b != this.lz) {
|
|
1634
|
-
this.kd("FlatBackgroundColor", b, a);
|
|
1635
|
-
}
|
|
1636
|
-
}
|
|
1637
1657
|
get pw() {
|
|
1638
1658
|
return this.l1;
|
|
1639
1659
|
}
|
|
@@ -1641,17 +1661,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1641
1661
|
let b = this.l1;
|
|
1642
1662
|
this.l1 = a;
|
|
1643
1663
|
if (b != this.l1) {
|
|
1644
|
-
this.kd("
|
|
1645
|
-
}
|
|
1646
|
-
}
|
|
1647
|
-
get px() {
|
|
1648
|
-
return this.l2;
|
|
1649
|
-
}
|
|
1650
|
-
set px(a) {
|
|
1651
|
-
let b = this.l2;
|
|
1652
|
-
this.l2 = a;
|
|
1653
|
-
if (b != this.l2) {
|
|
1654
|
-
this.kd("FlatDisabledBorderColor", b, a);
|
|
1664
|
+
this.kd("FlatBackgroundColor", b, a);
|
|
1655
1665
|
}
|
|
1656
1666
|
}
|
|
1657
1667
|
get py() {
|
|
@@ -1661,6 +1671,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1661
1671
|
let b = this.l3;
|
|
1662
1672
|
this.l3 = a;
|
|
1663
1673
|
if (b != this.l3) {
|
|
1674
|
+
this.kd("FlatDisabledBackgroundColor", b, a);
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
get pz() {
|
|
1678
|
+
return this.l4;
|
|
1679
|
+
}
|
|
1680
|
+
set pz(a) {
|
|
1681
|
+
let b = this.l4;
|
|
1682
|
+
this.l4 = a;
|
|
1683
|
+
if (b != this.l4) {
|
|
1684
|
+
this.kd("FlatDisabledBorderColor", b, a);
|
|
1685
|
+
}
|
|
1686
|
+
}
|
|
1687
|
+
get p0() {
|
|
1688
|
+
return this.l5;
|
|
1689
|
+
}
|
|
1690
|
+
set p0(a) {
|
|
1691
|
+
let b = this.l5;
|
|
1692
|
+
this.l5 = a;
|
|
1693
|
+
if (b != this.l5) {
|
|
1664
1694
|
this.kd("FlatDisabledTextColor", b, a);
|
|
1665
1695
|
}
|
|
1666
1696
|
}
|
|
@@ -1674,23 +1704,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1674
1704
|
this.kd("FlatDisabledElevation", b, a);
|
|
1675
1705
|
}
|
|
1676
1706
|
}
|
|
1677
|
-
get
|
|
1678
|
-
return this.
|
|
1707
|
+
get p3() {
|
|
1708
|
+
return this.l8;
|
|
1679
1709
|
}
|
|
1680
|
-
set
|
|
1681
|
-
let b = this.
|
|
1682
|
-
this.
|
|
1683
|
-
if (b != this.
|
|
1710
|
+
set p3(a) {
|
|
1711
|
+
let b = this.l8;
|
|
1712
|
+
this.l8 = a;
|
|
1713
|
+
if (b != this.l8) {
|
|
1684
1714
|
this.kd("FlatHoverBackgroundColor", b, a);
|
|
1685
1715
|
}
|
|
1686
1716
|
}
|
|
1687
|
-
get
|
|
1688
|
-
return this.
|
|
1717
|
+
get px() {
|
|
1718
|
+
return this.l2;
|
|
1689
1719
|
}
|
|
1690
|
-
set
|
|
1691
|
-
let b = this.
|
|
1692
|
-
this.
|
|
1693
|
-
if (b != this.
|
|
1720
|
+
set px(a) {
|
|
1721
|
+
let b = this.l2;
|
|
1722
|
+
this.l2 = a;
|
|
1723
|
+
if (b != this.l2) {
|
|
1694
1724
|
this.kd("FlatBorderColor", b, a);
|
|
1695
1725
|
}
|
|
1696
1726
|
}
|
|
@@ -1724,16 +1754,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1724
1754
|
this.kd("FlatFocusElevation", b, a);
|
|
1725
1755
|
}
|
|
1726
1756
|
}
|
|
1727
|
-
get
|
|
1728
|
-
return this.
|
|
1757
|
+
get p5() {
|
|
1758
|
+
return this.ma;
|
|
1729
1759
|
}
|
|
1730
|
-
set
|
|
1731
|
-
let b = this.
|
|
1732
|
-
this.
|
|
1733
|
-
if (b != this.
|
|
1760
|
+
set p5(a) {
|
|
1761
|
+
let b = this.ma;
|
|
1762
|
+
this.ma = a;
|
|
1763
|
+
if (b != this.ma) {
|
|
1734
1764
|
this.kd("FlatRippleColor", b, a);
|
|
1735
1765
|
}
|
|
1736
1766
|
}
|
|
1767
|
+
get p6() {
|
|
1768
|
+
return this.mb;
|
|
1769
|
+
}
|
|
1770
|
+
set p6(a) {
|
|
1771
|
+
let b = this.mb;
|
|
1772
|
+
this.mb = a;
|
|
1773
|
+
if (b != this.mb) {
|
|
1774
|
+
this.kd("FlatTextColor", b, a);
|
|
1775
|
+
}
|
|
1776
|
+
}
|
|
1737
1777
|
get p4() {
|
|
1738
1778
|
return this.l9;
|
|
1739
1779
|
}
|
|
@@ -1741,7 +1781,17 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1741
1781
|
let b = this.l9;
|
|
1742
1782
|
this.l9 = a;
|
|
1743
1783
|
if (b != this.l9) {
|
|
1744
|
-
this.kd("
|
|
1784
|
+
this.kd("FlatHoverTextColor", b, a);
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
get p1() {
|
|
1788
|
+
return this.l6;
|
|
1789
|
+
}
|
|
1790
|
+
set p1(a) {
|
|
1791
|
+
let b = this.l6;
|
|
1792
|
+
this.l6 = a;
|
|
1793
|
+
if (b != this.l6) {
|
|
1794
|
+
this.kd("FlatFocusBackgroundColor", b, a);
|
|
1745
1795
|
}
|
|
1746
1796
|
}
|
|
1747
1797
|
get p2() {
|
|
@@ -1751,26 +1801,6 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1751
1801
|
let b = this.l7;
|
|
1752
1802
|
this.l7 = a;
|
|
1753
1803
|
if (b != this.l7) {
|
|
1754
|
-
this.kd("FlatHoverTextColor", b, a);
|
|
1755
|
-
}
|
|
1756
|
-
}
|
|
1757
|
-
get pz() {
|
|
1758
|
-
return this.l4;
|
|
1759
|
-
}
|
|
1760
|
-
set pz(a) {
|
|
1761
|
-
let b = this.l4;
|
|
1762
|
-
this.l4 = a;
|
|
1763
|
-
if (b != this.l4) {
|
|
1764
|
-
this.kd("FlatFocusBackgroundColor", b, a);
|
|
1765
|
-
}
|
|
1766
|
-
}
|
|
1767
|
-
get p0() {
|
|
1768
|
-
return this.l5;
|
|
1769
|
-
}
|
|
1770
|
-
set p0(a) {
|
|
1771
|
-
let b = this.l5;
|
|
1772
|
-
this.l5 = a;
|
|
1773
|
-
if (b != this.l5) {
|
|
1774
1804
|
this.kd("FlatFocusTextColor", b, a);
|
|
1775
1805
|
}
|
|
1776
1806
|
}
|
|
@@ -1784,44 +1814,24 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1784
1814
|
this.kd("FlatBorderWidth", b, a);
|
|
1785
1815
|
}
|
|
1786
1816
|
}
|
|
1787
|
-
get
|
|
1788
|
-
return this.
|
|
1817
|
+
get k1() {
|
|
1818
|
+
return this.ko;
|
|
1789
1819
|
}
|
|
1790
|
-
set
|
|
1791
|
-
let b = this.
|
|
1792
|
-
this.
|
|
1820
|
+
set k1(a) {
|
|
1821
|
+
let b = this.ko;
|
|
1822
|
+
this.ko = a;
|
|
1793
1823
|
{
|
|
1794
1824
|
this.kd("FlatCornerRadius", b, a);
|
|
1795
1825
|
}
|
|
1796
1826
|
}
|
|
1797
|
-
get
|
|
1798
|
-
return this.lk;
|
|
1799
|
-
}
|
|
1800
|
-
set ns(a) {
|
|
1801
|
-
let b = this.lk;
|
|
1802
|
-
this.lk = a;
|
|
1803
|
-
if (b != this.lk) {
|
|
1804
|
-
this.kd("BackgroundColor", b, a);
|
|
1805
|
-
}
|
|
1806
|
-
}
|
|
1807
|
-
get pg() {
|
|
1827
|
+
get nu() {
|
|
1808
1828
|
return this.lm;
|
|
1809
1829
|
}
|
|
1810
|
-
set
|
|
1830
|
+
set nu(a) {
|
|
1811
1831
|
let b = this.lm;
|
|
1812
1832
|
this.lm = a;
|
|
1813
1833
|
if (b != this.lm) {
|
|
1814
|
-
this.kd("
|
|
1815
|
-
}
|
|
1816
|
-
}
|
|
1817
|
-
get ph() {
|
|
1818
|
-
return this.ln;
|
|
1819
|
-
}
|
|
1820
|
-
set ph(a) {
|
|
1821
|
-
let b = this.ln;
|
|
1822
|
-
this.ln = a;
|
|
1823
|
-
if (b != this.ln) {
|
|
1824
|
-
this.kd("DisabledBorderColor", b, a);
|
|
1834
|
+
this.kd("BackgroundColor", b, a);
|
|
1825
1835
|
}
|
|
1826
1836
|
}
|
|
1827
1837
|
get pi() {
|
|
@@ -1831,6 +1841,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1831
1841
|
let b = this.lo;
|
|
1832
1842
|
this.lo = a;
|
|
1833
1843
|
if (b != this.lo) {
|
|
1844
|
+
this.kd("DisabledBackgroundColor", b, a);
|
|
1845
|
+
}
|
|
1846
|
+
}
|
|
1847
|
+
get pj() {
|
|
1848
|
+
return this.lp;
|
|
1849
|
+
}
|
|
1850
|
+
set pj(a) {
|
|
1851
|
+
let b = this.lp;
|
|
1852
|
+
this.lp = a;
|
|
1853
|
+
if (b != this.lp) {
|
|
1854
|
+
this.kd("DisabledBorderColor", b, a);
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1857
|
+
get pk() {
|
|
1858
|
+
return this.lq;
|
|
1859
|
+
}
|
|
1860
|
+
set pk(a) {
|
|
1861
|
+
let b = this.lq;
|
|
1862
|
+
this.lq = a;
|
|
1863
|
+
if (b != this.lq) {
|
|
1834
1864
|
this.kd("DisabledTextColor", b, a);
|
|
1835
1865
|
}
|
|
1836
1866
|
}
|
|
@@ -1854,23 +1884,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1854
1884
|
this.kd("ElevationMode", enumGetBox(ElevationMode_$type, b), enumGetBox(ElevationMode_$type, a));
|
|
1855
1885
|
}
|
|
1856
1886
|
}
|
|
1857
|
-
get
|
|
1858
|
-
return this.
|
|
1887
|
+
get p9() {
|
|
1888
|
+
return this.me;
|
|
1859
1889
|
}
|
|
1860
|
-
set
|
|
1861
|
-
let b = this.
|
|
1862
|
-
this.
|
|
1863
|
-
if (b != this.
|
|
1890
|
+
set p9(a) {
|
|
1891
|
+
let b = this.me;
|
|
1892
|
+
this.me = a;
|
|
1893
|
+
if (b != this.me) {
|
|
1864
1894
|
this.kd("HoverBackgroundColor", b, a);
|
|
1865
1895
|
}
|
|
1866
1896
|
}
|
|
1867
|
-
get
|
|
1868
|
-
return this.
|
|
1897
|
+
get nv() {
|
|
1898
|
+
return this.ln;
|
|
1869
1899
|
}
|
|
1870
|
-
set
|
|
1871
|
-
let b = this.
|
|
1872
|
-
this.
|
|
1873
|
-
if (b != this.
|
|
1900
|
+
set nv(a) {
|
|
1901
|
+
let b = this.ln;
|
|
1902
|
+
this.ln = a;
|
|
1903
|
+
if (b != this.ln) {
|
|
1874
1904
|
this.kd("BorderColor", b, a);
|
|
1875
1905
|
}
|
|
1876
1906
|
}
|
|
@@ -1914,36 +1944,46 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1914
1944
|
this.kd("TextStyle", b, a);
|
|
1915
1945
|
}
|
|
1916
1946
|
}
|
|
1917
|
-
get
|
|
1918
|
-
return this.
|
|
1947
|
+
get q9() {
|
|
1948
|
+
return this.nf;
|
|
1919
1949
|
}
|
|
1920
|
-
set
|
|
1921
|
-
let b = this.
|
|
1922
|
-
this.
|
|
1923
|
-
if (b != this.
|
|
1950
|
+
set q9(a) {
|
|
1951
|
+
let b = this.nf;
|
|
1952
|
+
this.nf = a;
|
|
1953
|
+
if (b != this.nf) {
|
|
1924
1954
|
this.kd("TextColor", b, a);
|
|
1925
1955
|
}
|
|
1926
1956
|
}
|
|
1927
|
-
get
|
|
1928
|
-
return this.
|
|
1957
|
+
get qa() {
|
|
1958
|
+
return this.mg;
|
|
1929
1959
|
}
|
|
1930
|
-
set
|
|
1931
|
-
let b = this.
|
|
1932
|
-
this.
|
|
1933
|
-
if (b != this.
|
|
1960
|
+
set qa(a) {
|
|
1961
|
+
let b = this.mg;
|
|
1962
|
+
this.mg = a;
|
|
1963
|
+
if (b != this.mg) {
|
|
1934
1964
|
this.kd("HoverTextColor", b, a);
|
|
1935
1965
|
}
|
|
1936
1966
|
}
|
|
1937
|
-
get
|
|
1938
|
-
return this.
|
|
1967
|
+
get q8() {
|
|
1968
|
+
return this.ne;
|
|
1939
1969
|
}
|
|
1940
|
-
set
|
|
1941
|
-
let b = this.
|
|
1942
|
-
this.
|
|
1943
|
-
if (b != this.
|
|
1970
|
+
set q8(a) {
|
|
1971
|
+
let b = this.ne;
|
|
1972
|
+
this.ne = a;
|
|
1973
|
+
if (b != this.ne) {
|
|
1944
1974
|
this.kd("RippleColor", b, a);
|
|
1945
1975
|
}
|
|
1946
1976
|
}
|
|
1977
|
+
get q7() {
|
|
1978
|
+
return this.nd;
|
|
1979
|
+
}
|
|
1980
|
+
set q7(a) {
|
|
1981
|
+
let b = this.nd;
|
|
1982
|
+
this.nd = a;
|
|
1983
|
+
if (b != this.nd) {
|
|
1984
|
+
this.kd("RaisedTextColor", b, a);
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1947
1987
|
get q5() {
|
|
1948
1988
|
return this.nb;
|
|
1949
1989
|
}
|
|
@@ -1951,7 +1991,17 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1951
1991
|
let b = this.nb;
|
|
1952
1992
|
this.nb = a;
|
|
1953
1993
|
if (b != this.nb) {
|
|
1954
|
-
this.kd("
|
|
1994
|
+
this.kd("RaisedHoverTextColor", b, a);
|
|
1995
|
+
}
|
|
1996
|
+
}
|
|
1997
|
+
get q2() {
|
|
1998
|
+
return this.m8;
|
|
1999
|
+
}
|
|
2000
|
+
set q2(a) {
|
|
2001
|
+
let b = this.m8;
|
|
2002
|
+
this.m8 = a;
|
|
2003
|
+
if (b != this.m8) {
|
|
2004
|
+
this.kd("RaisedFocusBackgroundColor", b, a);
|
|
1955
2005
|
}
|
|
1956
2006
|
}
|
|
1957
2007
|
get q3() {
|
|
@@ -1961,46 +2011,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
1961
2011
|
let b = this.m9;
|
|
1962
2012
|
this.m9 = a;
|
|
1963
2013
|
if (b != this.m9) {
|
|
1964
|
-
this.kd("RaisedHoverTextColor", b, a);
|
|
1965
|
-
}
|
|
1966
|
-
}
|
|
1967
|
-
get q0() {
|
|
1968
|
-
return this.m6;
|
|
1969
|
-
}
|
|
1970
|
-
set q0(a) {
|
|
1971
|
-
let b = this.m6;
|
|
1972
|
-
this.m6 = a;
|
|
1973
|
-
if (b != this.m6) {
|
|
1974
|
-
this.kd("RaisedFocusBackgroundColor", b, a);
|
|
1975
|
-
}
|
|
1976
|
-
}
|
|
1977
|
-
get q1() {
|
|
1978
|
-
return this.m7;
|
|
1979
|
-
}
|
|
1980
|
-
set q1(a) {
|
|
1981
|
-
let b = this.m7;
|
|
1982
|
-
this.m7 = a;
|
|
1983
|
-
if (b != this.m7) {
|
|
1984
2014
|
this.kd("RaisedFocusTextColor", b, a);
|
|
1985
2015
|
}
|
|
1986
2016
|
}
|
|
1987
|
-
get
|
|
1988
|
-
return this.
|
|
2017
|
+
get p7() {
|
|
2018
|
+
return this.mc;
|
|
1989
2019
|
}
|
|
1990
|
-
set
|
|
1991
|
-
let b = this.
|
|
1992
|
-
this.
|
|
1993
|
-
if (b != this.
|
|
2020
|
+
set p7(a) {
|
|
2021
|
+
let b = this.mc;
|
|
2022
|
+
this.mc = a;
|
|
2023
|
+
if (b != this.mc) {
|
|
1994
2024
|
this.kd("FocusBackgroundColor", b, a);
|
|
1995
2025
|
}
|
|
1996
2026
|
}
|
|
1997
|
-
get
|
|
1998
|
-
return this.
|
|
2027
|
+
get p8() {
|
|
2028
|
+
return this.md;
|
|
1999
2029
|
}
|
|
2000
|
-
set
|
|
2001
|
-
let b = this.
|
|
2002
|
-
this.
|
|
2003
|
-
if (b != this.
|
|
2030
|
+
set p8(a) {
|
|
2031
|
+
let b = this.md;
|
|
2032
|
+
this.md = a;
|
|
2033
|
+
if (b != this.md) {
|
|
2004
2034
|
this.kd("FocusTextColor", b, a);
|
|
2005
2035
|
}
|
|
2006
2036
|
}
|
|
@@ -2014,26 +2044,16 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2014
2044
|
this.kd("BorderWidth", b, a);
|
|
2015
2045
|
}
|
|
2016
2046
|
}
|
|
2017
|
-
get
|
|
2018
|
-
return this.
|
|
2047
|
+
get ku() {
|
|
2048
|
+
return this.km;
|
|
2019
2049
|
}
|
|
2020
|
-
set
|
|
2021
|
-
let b = this.
|
|
2022
|
-
this.
|
|
2050
|
+
set ku(a) {
|
|
2051
|
+
let b = this.km;
|
|
2052
|
+
this.km = a;
|
|
2023
2053
|
{
|
|
2024
2054
|
this.kd("CornerRadius", b, a);
|
|
2025
2055
|
}
|
|
2026
2056
|
}
|
|
2027
|
-
get qk() {
|
|
2028
|
-
return this.mq;
|
|
2029
|
-
}
|
|
2030
|
-
set qk(a) {
|
|
2031
|
-
let b = this.mq;
|
|
2032
|
-
this.mq = a;
|
|
2033
|
-
if (b != this.mq) {
|
|
2034
|
-
this.kd("OutlinedBackgroundColor", b, a);
|
|
2035
|
-
}
|
|
2036
|
-
}
|
|
2037
2057
|
get qm() {
|
|
2038
2058
|
return this.ms;
|
|
2039
2059
|
}
|
|
@@ -2041,17 +2061,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2041
2061
|
let b = this.ms;
|
|
2042
2062
|
this.ms = a;
|
|
2043
2063
|
if (b != this.ms) {
|
|
2044
|
-
this.kd("
|
|
2045
|
-
}
|
|
2046
|
-
}
|
|
2047
|
-
get qn() {
|
|
2048
|
-
return this.mt;
|
|
2049
|
-
}
|
|
2050
|
-
set qn(a) {
|
|
2051
|
-
let b = this.mt;
|
|
2052
|
-
this.mt = a;
|
|
2053
|
-
if (b != this.mt) {
|
|
2054
|
-
this.kd("OutlinedDisabledBorderColor", b, a);
|
|
2064
|
+
this.kd("OutlinedBackgroundColor", b, a);
|
|
2055
2065
|
}
|
|
2056
2066
|
}
|
|
2057
2067
|
get qo() {
|
|
@@ -2061,6 +2071,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2061
2071
|
let b = this.mu;
|
|
2062
2072
|
this.mu = a;
|
|
2063
2073
|
if (b != this.mu) {
|
|
2074
|
+
this.kd("OutlinedDisabledBackgroundColor", b, a);
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
get qp() {
|
|
2078
|
+
return this.mv;
|
|
2079
|
+
}
|
|
2080
|
+
set qp(a) {
|
|
2081
|
+
let b = this.mv;
|
|
2082
|
+
this.mv = a;
|
|
2083
|
+
if (b != this.mv) {
|
|
2084
|
+
this.kd("OutlinedDisabledBorderColor", b, a);
|
|
2085
|
+
}
|
|
2086
|
+
}
|
|
2087
|
+
get qq() {
|
|
2088
|
+
return this.mw;
|
|
2089
|
+
}
|
|
2090
|
+
set qq(a) {
|
|
2091
|
+
let b = this.mw;
|
|
2092
|
+
this.mw = a;
|
|
2093
|
+
if (b != this.mw) {
|
|
2064
2094
|
this.kd("OutlinedDisabledTextColor", b, a);
|
|
2065
2095
|
}
|
|
2066
2096
|
}
|
|
@@ -2074,23 +2104,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2074
2104
|
this.kd("OutlinedDisabledElevation", b, a);
|
|
2075
2105
|
}
|
|
2076
2106
|
}
|
|
2077
|
-
get
|
|
2078
|
-
return this.
|
|
2107
|
+
get qt() {
|
|
2108
|
+
return this.mz;
|
|
2079
2109
|
}
|
|
2080
|
-
set
|
|
2081
|
-
let b = this.
|
|
2082
|
-
this.
|
|
2083
|
-
if (b != this.
|
|
2110
|
+
set qt(a) {
|
|
2111
|
+
let b = this.mz;
|
|
2112
|
+
this.mz = a;
|
|
2113
|
+
if (b != this.mz) {
|
|
2084
2114
|
this.kd("OutlinedHoverBackgroundColor", b, a);
|
|
2085
2115
|
}
|
|
2086
2116
|
}
|
|
2087
|
-
get
|
|
2088
|
-
return this.
|
|
2117
|
+
get qn() {
|
|
2118
|
+
return this.mt;
|
|
2089
2119
|
}
|
|
2090
|
-
set
|
|
2091
|
-
let b = this.
|
|
2092
|
-
this.
|
|
2093
|
-
if (b != this.
|
|
2120
|
+
set qn(a) {
|
|
2121
|
+
let b = this.mt;
|
|
2122
|
+
this.mt = a;
|
|
2123
|
+
if (b != this.mt) {
|
|
2094
2124
|
this.kd("OutlinedBorderColor", b, a);
|
|
2095
2125
|
}
|
|
2096
2126
|
}
|
|
@@ -2134,26 +2164,36 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2134
2164
|
this.kd("OutlinedBorderWidth", b, a);
|
|
2135
2165
|
}
|
|
2136
2166
|
}
|
|
2137
|
-
get
|
|
2138
|
-
return this.
|
|
2167
|
+
get k4() {
|
|
2168
|
+
return this.kq;
|
|
2139
2169
|
}
|
|
2140
|
-
set
|
|
2141
|
-
let b = this.
|
|
2142
|
-
this.
|
|
2170
|
+
set k4(a) {
|
|
2171
|
+
let b = this.kq;
|
|
2172
|
+
this.kq = a;
|
|
2143
2173
|
{
|
|
2144
2174
|
this.kd("OutlinedCornerRadius", b, a);
|
|
2145
2175
|
}
|
|
2146
2176
|
}
|
|
2147
|
-
get
|
|
2148
|
-
return this.
|
|
2177
|
+
get qv() {
|
|
2178
|
+
return this.m1;
|
|
2149
2179
|
}
|
|
2150
|
-
set
|
|
2151
|
-
let b = this.
|
|
2152
|
-
this.
|
|
2153
|
-
if (b != this.
|
|
2180
|
+
set qv(a) {
|
|
2181
|
+
let b = this.m1;
|
|
2182
|
+
this.m1 = a;
|
|
2183
|
+
if (b != this.m1) {
|
|
2154
2184
|
this.kd("OutlinedRippleColor", b, a);
|
|
2155
2185
|
}
|
|
2156
2186
|
}
|
|
2187
|
+
get qw() {
|
|
2188
|
+
return this.m2;
|
|
2189
|
+
}
|
|
2190
|
+
set qw(a) {
|
|
2191
|
+
let b = this.m2;
|
|
2192
|
+
this.m2 = a;
|
|
2193
|
+
if (b != this.m2) {
|
|
2194
|
+
this.kd("OutlinedTextColor", b, a);
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2157
2197
|
get qu() {
|
|
2158
2198
|
return this.m0;
|
|
2159
2199
|
}
|
|
@@ -2161,47 +2201,27 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2161
2201
|
let b = this.m0;
|
|
2162
2202
|
this.m0 = a;
|
|
2163
2203
|
if (b != this.m0) {
|
|
2164
|
-
this.kd("OutlinedTextColor", b, a);
|
|
2165
|
-
}
|
|
2166
|
-
}
|
|
2167
|
-
get qs() {
|
|
2168
|
-
return this.my;
|
|
2169
|
-
}
|
|
2170
|
-
set qs(a) {
|
|
2171
|
-
let b = this.my;
|
|
2172
|
-
this.my = a;
|
|
2173
|
-
if (b != this.my) {
|
|
2174
2204
|
this.kd("OutlinedHoverTextColor", b, a);
|
|
2175
2205
|
}
|
|
2176
2206
|
}
|
|
2177
|
-
get
|
|
2178
|
-
return this.
|
|
2207
|
+
get qr() {
|
|
2208
|
+
return this.mx;
|
|
2179
2209
|
}
|
|
2180
|
-
set
|
|
2181
|
-
let b = this.
|
|
2182
|
-
this.
|
|
2183
|
-
if (b != this.
|
|
2210
|
+
set qr(a) {
|
|
2211
|
+
let b = this.mx;
|
|
2212
|
+
this.mx = a;
|
|
2213
|
+
if (b != this.mx) {
|
|
2184
2214
|
this.kd("OutlinedFocusBackgroundColor", b, a);
|
|
2185
2215
|
}
|
|
2186
2216
|
}
|
|
2187
|
-
get
|
|
2188
|
-
return this.
|
|
2189
|
-
}
|
|
2190
|
-
set qq(a) {
|
|
2191
|
-
let b = this.mw;
|
|
2192
|
-
this.mw = a;
|
|
2193
|
-
if (b != this.mw) {
|
|
2194
|
-
this.kd("OutlinedFocusTextColor", b, a);
|
|
2195
|
-
}
|
|
2196
|
-
}
|
|
2197
|
-
get pj() {
|
|
2198
|
-
return this.lp;
|
|
2217
|
+
get qs() {
|
|
2218
|
+
return this.my;
|
|
2199
2219
|
}
|
|
2200
|
-
set
|
|
2201
|
-
let b = this.
|
|
2202
|
-
this.
|
|
2203
|
-
if (b != this.
|
|
2204
|
-
this.kd("
|
|
2220
|
+
set qs(a) {
|
|
2221
|
+
let b = this.my;
|
|
2222
|
+
this.my = a;
|
|
2223
|
+
if (b != this.my) {
|
|
2224
|
+
this.kd("OutlinedFocusTextColor", b, a);
|
|
2205
2225
|
}
|
|
2206
2226
|
}
|
|
2207
2227
|
get pl() {
|
|
@@ -2211,17 +2231,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2211
2231
|
let b = this.lr;
|
|
2212
2232
|
this.lr = a;
|
|
2213
2233
|
if (b != this.lr) {
|
|
2214
|
-
this.kd("
|
|
2215
|
-
}
|
|
2216
|
-
}
|
|
2217
|
-
get pm() {
|
|
2218
|
-
return this.ls;
|
|
2219
|
-
}
|
|
2220
|
-
set pm(a) {
|
|
2221
|
-
let b = this.ls;
|
|
2222
|
-
this.ls = a;
|
|
2223
|
-
if (b != this.ls) {
|
|
2224
|
-
this.kd("FabDisabledBorderColor", b, a);
|
|
2234
|
+
this.kd("FabBackgroundColor", b, a);
|
|
2225
2235
|
}
|
|
2226
2236
|
}
|
|
2227
2237
|
get pn() {
|
|
@@ -2231,6 +2241,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2231
2241
|
let b = this.lt;
|
|
2232
2242
|
this.lt = a;
|
|
2233
2243
|
if (b != this.lt) {
|
|
2244
|
+
this.kd("FabDisabledBackgroundColor", b, a);
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2247
|
+
get po() {
|
|
2248
|
+
return this.lu;
|
|
2249
|
+
}
|
|
2250
|
+
set po(a) {
|
|
2251
|
+
let b = this.lu;
|
|
2252
|
+
this.lu = a;
|
|
2253
|
+
if (b != this.lu) {
|
|
2254
|
+
this.kd("FabDisabledBorderColor", b, a);
|
|
2255
|
+
}
|
|
2256
|
+
}
|
|
2257
|
+
get pp() {
|
|
2258
|
+
return this.lv;
|
|
2259
|
+
}
|
|
2260
|
+
set pp(a) {
|
|
2261
|
+
let b = this.lv;
|
|
2262
|
+
this.lv = a;
|
|
2263
|
+
if (b != this.lv) {
|
|
2234
2264
|
this.kd("FabDisabledTextColor", b, a);
|
|
2235
2265
|
}
|
|
2236
2266
|
}
|
|
@@ -2244,23 +2274,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2244
2274
|
this.kd("FabDisabledElevation", b, a);
|
|
2245
2275
|
}
|
|
2246
2276
|
}
|
|
2247
|
-
get
|
|
2248
|
-
return this.
|
|
2277
|
+
get ps() {
|
|
2278
|
+
return this.mf;
|
|
2249
2279
|
}
|
|
2250
|
-
set
|
|
2251
|
-
let b = this.
|
|
2252
|
-
this.
|
|
2253
|
-
if (b != this.
|
|
2280
|
+
set ps(a) {
|
|
2281
|
+
let b = this.mf;
|
|
2282
|
+
this.mf = a;
|
|
2283
|
+
if (b != this.mf) {
|
|
2254
2284
|
this.kd("FabHoverBackgroundColor", b, a);
|
|
2255
2285
|
}
|
|
2256
2286
|
}
|
|
2257
|
-
get
|
|
2258
|
-
return this.
|
|
2287
|
+
get pm() {
|
|
2288
|
+
return this.ls;
|
|
2259
2289
|
}
|
|
2260
|
-
set
|
|
2261
|
-
let b = this.
|
|
2262
|
-
this.
|
|
2263
|
-
if (b != this.
|
|
2290
|
+
set pm(a) {
|
|
2291
|
+
let b = this.ls;
|
|
2292
|
+
this.ls = a;
|
|
2293
|
+
if (b != this.ls) {
|
|
2264
2294
|
this.kd("FabBorderColor", b, a);
|
|
2265
2295
|
}
|
|
2266
2296
|
}
|
|
@@ -2304,26 +2334,36 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2304
2334
|
this.kd("FabBorderWidth", b, a);
|
|
2305
2335
|
}
|
|
2306
2336
|
}
|
|
2307
|
-
get
|
|
2308
|
-
return this.
|
|
2337
|
+
get k0() {
|
|
2338
|
+
return this.kn;
|
|
2309
2339
|
}
|
|
2310
|
-
set
|
|
2311
|
-
let b = this.
|
|
2312
|
-
this.
|
|
2340
|
+
set k0(a) {
|
|
2341
|
+
let b = this.kn;
|
|
2342
|
+
this.kn = a;
|
|
2313
2343
|
{
|
|
2314
2344
|
this.kd("FabCornerRadius", b, a);
|
|
2315
2345
|
}
|
|
2316
2346
|
}
|
|
2317
|
-
get
|
|
2318
|
-
return this.
|
|
2347
|
+
get pu() {
|
|
2348
|
+
return this.lz;
|
|
2319
2349
|
}
|
|
2320
|
-
set
|
|
2321
|
-
let b = this.
|
|
2322
|
-
this.
|
|
2323
|
-
if (b != this.
|
|
2350
|
+
set pu(a) {
|
|
2351
|
+
let b = this.lz;
|
|
2352
|
+
this.lz = a;
|
|
2353
|
+
if (b != this.lz) {
|
|
2324
2354
|
this.kd("FabRippleColor", b, a);
|
|
2325
2355
|
}
|
|
2326
2356
|
}
|
|
2357
|
+
get pv() {
|
|
2358
|
+
return this.l0;
|
|
2359
|
+
}
|
|
2360
|
+
set pv(a) {
|
|
2361
|
+
let b = this.l0;
|
|
2362
|
+
this.l0 = a;
|
|
2363
|
+
if (b != this.l0) {
|
|
2364
|
+
this.kd("FabTextColor", b, a);
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2327
2367
|
get pt() {
|
|
2328
2368
|
return this.ly;
|
|
2329
2369
|
}
|
|
@@ -2331,49 +2371,29 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2331
2371
|
let b = this.ly;
|
|
2332
2372
|
this.ly = a;
|
|
2333
2373
|
if (b != this.ly) {
|
|
2334
|
-
this.kd("
|
|
2374
|
+
this.kd("FabHoverTextColor", b, a);
|
|
2335
2375
|
}
|
|
2336
2376
|
}
|
|
2337
|
-
get
|
|
2377
|
+
get pq() {
|
|
2338
2378
|
return this.lw;
|
|
2339
2379
|
}
|
|
2340
|
-
set
|
|
2380
|
+
set pq(a) {
|
|
2341
2381
|
let b = this.lw;
|
|
2342
2382
|
this.lw = a;
|
|
2343
2383
|
if (b != this.lw) {
|
|
2344
|
-
this.kd("FabHoverTextColor", b, a);
|
|
2345
|
-
}
|
|
2346
|
-
}
|
|
2347
|
-
get po() {
|
|
2348
|
-
return this.lu;
|
|
2349
|
-
}
|
|
2350
|
-
set po(a) {
|
|
2351
|
-
let b = this.lu;
|
|
2352
|
-
this.lu = a;
|
|
2353
|
-
if (b != this.lu) {
|
|
2354
2384
|
this.kd("FabFocusBackgroundColor", b, a);
|
|
2355
2385
|
}
|
|
2356
2386
|
}
|
|
2357
|
-
get
|
|
2358
|
-
return this.
|
|
2387
|
+
get pr() {
|
|
2388
|
+
return this.lx;
|
|
2359
2389
|
}
|
|
2360
|
-
set
|
|
2361
|
-
let b = this.
|
|
2362
|
-
this.
|
|
2363
|
-
if (b != this.
|
|
2390
|
+
set pr(a) {
|
|
2391
|
+
let b = this.lx;
|
|
2392
|
+
this.lx = a;
|
|
2393
|
+
if (b != this.lx) {
|
|
2364
2394
|
this.kd("FabFocusTextColor", b, a);
|
|
2365
2395
|
}
|
|
2366
2396
|
}
|
|
2367
|
-
get p9() {
|
|
2368
|
-
return this.mf;
|
|
2369
|
-
}
|
|
2370
|
-
set p9(a) {
|
|
2371
|
-
let b = this.mf;
|
|
2372
|
-
this.mf = a;
|
|
2373
|
-
if (b != this.mf) {
|
|
2374
|
-
this.kd("IconBackgroundColor", b, a);
|
|
2375
|
-
}
|
|
2376
|
-
}
|
|
2377
2397
|
get qb() {
|
|
2378
2398
|
return this.mh;
|
|
2379
2399
|
}
|
|
@@ -2381,17 +2401,7 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2381
2401
|
let b = this.mh;
|
|
2382
2402
|
this.mh = a;
|
|
2383
2403
|
if (b != this.mh) {
|
|
2384
|
-
this.kd("
|
|
2385
|
-
}
|
|
2386
|
-
}
|
|
2387
|
-
get qc() {
|
|
2388
|
-
return this.mi;
|
|
2389
|
-
}
|
|
2390
|
-
set qc(a) {
|
|
2391
|
-
let b = this.mi;
|
|
2392
|
-
this.mi = a;
|
|
2393
|
-
if (b != this.mi) {
|
|
2394
|
-
this.kd("IconDisabledBorderColor", b, a);
|
|
2404
|
+
this.kd("IconBackgroundColor", b, a);
|
|
2395
2405
|
}
|
|
2396
2406
|
}
|
|
2397
2407
|
get qd() {
|
|
@@ -2401,6 +2411,26 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2401
2411
|
let b = this.mj;
|
|
2402
2412
|
this.mj = a;
|
|
2403
2413
|
if (b != this.mj) {
|
|
2414
|
+
this.kd("IconDisabledBackgroundColor", b, a);
|
|
2415
|
+
}
|
|
2416
|
+
}
|
|
2417
|
+
get qe() {
|
|
2418
|
+
return this.mk;
|
|
2419
|
+
}
|
|
2420
|
+
set qe(a) {
|
|
2421
|
+
let b = this.mk;
|
|
2422
|
+
this.mk = a;
|
|
2423
|
+
if (b != this.mk) {
|
|
2424
|
+
this.kd("IconDisabledBorderColor", b, a);
|
|
2425
|
+
}
|
|
2426
|
+
}
|
|
2427
|
+
get qf() {
|
|
2428
|
+
return this.ml;
|
|
2429
|
+
}
|
|
2430
|
+
set qf(a) {
|
|
2431
|
+
let b = this.ml;
|
|
2432
|
+
this.ml = a;
|
|
2433
|
+
if (b != this.ml) {
|
|
2404
2434
|
this.kd("IconDisabledTextColor", b, a);
|
|
2405
2435
|
}
|
|
2406
2436
|
}
|
|
@@ -2414,23 +2444,23 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2414
2444
|
this.kd("IconDisabledElevation", b, a);
|
|
2415
2445
|
}
|
|
2416
2446
|
}
|
|
2417
|
-
get
|
|
2418
|
-
return this.
|
|
2447
|
+
get qi() {
|
|
2448
|
+
return this.mo;
|
|
2419
2449
|
}
|
|
2420
|
-
set
|
|
2421
|
-
let b = this.
|
|
2422
|
-
this.
|
|
2423
|
-
if (b != this.
|
|
2450
|
+
set qi(a) {
|
|
2451
|
+
let b = this.mo;
|
|
2452
|
+
this.mo = a;
|
|
2453
|
+
if (b != this.mo) {
|
|
2424
2454
|
this.kd("IconHoverBackgroundColor", b, a);
|
|
2425
2455
|
}
|
|
2426
2456
|
}
|
|
2427
|
-
get
|
|
2428
|
-
return this.
|
|
2457
|
+
get qc() {
|
|
2458
|
+
return this.mi;
|
|
2429
2459
|
}
|
|
2430
|
-
set
|
|
2431
|
-
let b = this.
|
|
2432
|
-
this.
|
|
2433
|
-
if (b != this.
|
|
2460
|
+
set qc(a) {
|
|
2461
|
+
let b = this.mi;
|
|
2462
|
+
this.mi = a;
|
|
2463
|
+
if (b != this.mi) {
|
|
2434
2464
|
this.kd("IconBorderColor", b, a);
|
|
2435
2465
|
}
|
|
2436
2466
|
}
|
|
@@ -2474,26 +2504,36 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2474
2504
|
this.kd("IconBorderWidth", b, a);
|
|
2475
2505
|
}
|
|
2476
2506
|
}
|
|
2477
|
-
get
|
|
2478
|
-
return this.
|
|
2507
|
+
get k3() {
|
|
2508
|
+
return this.kp;
|
|
2479
2509
|
}
|
|
2480
|
-
set
|
|
2481
|
-
let b = this.
|
|
2482
|
-
this.
|
|
2510
|
+
set k3(a) {
|
|
2511
|
+
let b = this.kp;
|
|
2512
|
+
this.kp = a;
|
|
2483
2513
|
{
|
|
2484
2514
|
this.kd("IconCornerRadius", b, a);
|
|
2485
2515
|
}
|
|
2486
2516
|
}
|
|
2487
|
-
get
|
|
2488
|
-
return this.
|
|
2517
|
+
get qk() {
|
|
2518
|
+
return this.mq;
|
|
2489
2519
|
}
|
|
2490
|
-
set
|
|
2491
|
-
let b = this.
|
|
2492
|
-
this.
|
|
2493
|
-
if (b != this.
|
|
2520
|
+
set qk(a) {
|
|
2521
|
+
let b = this.mq;
|
|
2522
|
+
this.mq = a;
|
|
2523
|
+
if (b != this.mq) {
|
|
2494
2524
|
this.kd("IconRippleColor", b, a);
|
|
2495
2525
|
}
|
|
2496
2526
|
}
|
|
2527
|
+
get ql() {
|
|
2528
|
+
return this.mr;
|
|
2529
|
+
}
|
|
2530
|
+
set ql(a) {
|
|
2531
|
+
let b = this.mr;
|
|
2532
|
+
this.mr = a;
|
|
2533
|
+
if (b != this.mr) {
|
|
2534
|
+
this.kd("IconTextColor", b, a);
|
|
2535
|
+
}
|
|
2536
|
+
}
|
|
2497
2537
|
get qj() {
|
|
2498
2538
|
return this.mp;
|
|
2499
2539
|
}
|
|
@@ -2501,7 +2541,17 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2501
2541
|
let b = this.mp;
|
|
2502
2542
|
this.mp = a;
|
|
2503
2543
|
if (b != this.mp) {
|
|
2504
|
-
this.kd("
|
|
2544
|
+
this.kd("IconHoverTextColor", b, a);
|
|
2545
|
+
}
|
|
2546
|
+
}
|
|
2547
|
+
get qg() {
|
|
2548
|
+
return this.mm;
|
|
2549
|
+
}
|
|
2550
|
+
set qg(a) {
|
|
2551
|
+
let b = this.mm;
|
|
2552
|
+
this.mm = a;
|
|
2553
|
+
if (b != this.mm) {
|
|
2554
|
+
this.kd("IconFocusBackgroundColor", b, a);
|
|
2505
2555
|
}
|
|
2506
2556
|
}
|
|
2507
2557
|
get qh() {
|
|
@@ -2511,26 +2561,6 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2511
2561
|
let b = this.mn;
|
|
2512
2562
|
this.mn = a;
|
|
2513
2563
|
if (b != this.mn) {
|
|
2514
|
-
this.kd("IconHoverTextColor", b, a);
|
|
2515
|
-
}
|
|
2516
|
-
}
|
|
2517
|
-
get qe() {
|
|
2518
|
-
return this.mk;
|
|
2519
|
-
}
|
|
2520
|
-
set qe(a) {
|
|
2521
|
-
let b = this.mk;
|
|
2522
|
-
this.mk = a;
|
|
2523
|
-
if (b != this.mk) {
|
|
2524
|
-
this.kd("IconFocusBackgroundColor", b, a);
|
|
2525
|
-
}
|
|
2526
|
-
}
|
|
2527
|
-
get qf() {
|
|
2528
|
-
return this.ml;
|
|
2529
|
-
}
|
|
2530
|
-
set qf(a) {
|
|
2531
|
-
let b = this.ml;
|
|
2532
|
-
this.ml = a;
|
|
2533
|
-
if (b != this.ml) {
|
|
2534
2564
|
this.kd("IconFocusTextColor", b, a);
|
|
2535
2565
|
}
|
|
2536
2566
|
}
|
|
@@ -2788,24 +2818,24 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2788
2818
|
this.kd("ContentPaddingBottom", b, this.a4);
|
|
2789
2819
|
}
|
|
2790
2820
|
}
|
|
2791
|
-
get
|
|
2792
|
-
return this.
|
|
2821
|
+
get k7() {
|
|
2822
|
+
return this.k6;
|
|
2793
2823
|
}
|
|
2794
|
-
set
|
|
2795
|
-
let b = this.
|
|
2796
|
-
this.
|
|
2797
|
-
if (b != this.
|
|
2798
|
-
this.kd("HorizontalContentAlignment", enumGetBox(HorizontalAlignment_$type, b), enumGetBox(HorizontalAlignment_$type, this.
|
|
2824
|
+
set k7(a) {
|
|
2825
|
+
let b = this.k6;
|
|
2826
|
+
this.k6 = a;
|
|
2827
|
+
if (b != this.k6) {
|
|
2828
|
+
this.kd("HorizontalContentAlignment", enumGetBox(HorizontalAlignment_$type, b), enumGetBox(HorizontalAlignment_$type, this.k6));
|
|
2799
2829
|
}
|
|
2800
2830
|
}
|
|
2801
|
-
get
|
|
2802
|
-
return this.
|
|
2831
|
+
get rb() {
|
|
2832
|
+
return this.ra;
|
|
2803
2833
|
}
|
|
2804
|
-
set
|
|
2805
|
-
let b = this.
|
|
2806
|
-
this.
|
|
2807
|
-
if (b != this.
|
|
2808
|
-
this.kd("VerticalContentAlignment", enumGetBox(VerticalAlignment_$type, b), enumGetBox(VerticalAlignment_$type, this.
|
|
2834
|
+
set rb(a) {
|
|
2835
|
+
let b = this.ra;
|
|
2836
|
+
this.ra = a;
|
|
2837
|
+
if (b != this.ra) {
|
|
2838
|
+
this.kd("VerticalContentAlignment", enumGetBox(VerticalAlignment_$type, b), enumGetBox(VerticalAlignment_$type, this.ra));
|
|
2809
2839
|
}
|
|
2810
2840
|
}
|
|
2811
2841
|
get aq() {
|
|
@@ -2820,8 +2850,8 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2820
2850
|
}
|
|
2821
2851
|
ke() {
|
|
2822
2852
|
this.j3();
|
|
2823
|
-
this.view.aw(this.
|
|
2824
|
-
this.
|
|
2853
|
+
this.view.aw(this.nr, BrushUtil.h(0, 0, 0, 0));
|
|
2854
|
+
this.ki();
|
|
2825
2855
|
}
|
|
2826
2856
|
get a() {
|
|
2827
2857
|
let a = new AnimationKeyFrameEffectTiming();
|
|
@@ -2869,12 +2899,12 @@ export let XButton = /*@__PURE__*/ (() => {
|
|
|
2869
2899
|
c.h = this.n;
|
|
2870
2900
|
c.i = this.q;
|
|
2871
2901
|
c.c = AppearanceHelper.a(NativeUI.ak(a));
|
|
2872
|
-
c.g = AppearanceHelper.a(this.
|
|
2873
|
-
c.d = AppearanceHelper.a(this.
|
|
2874
|
-
c.a = AppearanceHelper.a(this.
|
|
2902
|
+
c.g = AppearanceHelper.a(this.nt);
|
|
2903
|
+
c.d = AppearanceHelper.a(this.nq);
|
|
2904
|
+
c.a = AppearanceHelper.a(this.ng);
|
|
2875
2905
|
c.u = this.ct;
|
|
2876
|
-
c.e = AppearanceHelper.a(this.
|
|
2877
|
-
c.ag = this.
|
|
2906
|
+
c.e = AppearanceHelper.a(this.nr);
|
|
2907
|
+
c.ag = this.ks;
|
|
2878
2908
|
c.b = AppearanceHelper.a(NativeUI.aj(a));
|
|
2879
2909
|
c.j = this.u;
|
|
2880
2910
|
c.f = AppearanceHelper.a(NativeUI.al(b));
|