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
|
@@ -118,8 +118,8 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
118
118
|
this.n.setStyleProperty("overflow", "hidden");
|
|
119
119
|
this.n.setStyleProperty("white-space", "no-wrap");
|
|
120
120
|
this.n.setStyleProperty("color", "#000");
|
|
121
|
-
this.n.setStyleProperty("background", this.b.
|
|
122
|
-
NativeUI.o(this.n, this.b.
|
|
121
|
+
this.n.setStyleProperty("background", this.b.nh._fill);
|
|
122
|
+
NativeUI.o(this.n, this.b.ks);
|
|
123
123
|
this.n.setAttribute("id", this.b.hu);
|
|
124
124
|
this.av();
|
|
125
125
|
this.h.add(c.listen("change", runOn(this, this.x)));
|
|
@@ -208,6 +208,19 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
208
208
|
g = "2.5rem";
|
|
209
209
|
l = ".4375rem";
|
|
210
210
|
break;
|
|
211
|
+
case 4:
|
|
212
|
+
m = "0.09375rem 0.5rem";
|
|
213
|
+
j = "0.5rem";
|
|
214
|
+
f = "1.5rem";
|
|
215
|
+
e = "1.5rem";
|
|
216
|
+
h = "1.5rem";
|
|
217
|
+
g = "1.5rem";
|
|
218
|
+
l = "0.21875rem";
|
|
219
|
+
b = "1rem";
|
|
220
|
+
a = "1rem";
|
|
221
|
+
d = "1rem";
|
|
222
|
+
c = "1rem";
|
|
223
|
+
break;
|
|
211
224
|
}
|
|
212
225
|
if (!isNaN_(this.b.bi) && !isNaN_(this.b.bk) && !isNaN_(this.b.bj) && !isNaN_(this.b.bh)) {
|
|
213
226
|
m = this.b.bk + "px " + this.b.bj + "px " + this.b.bh + "px " + this.b.bi + "px";
|
|
@@ -253,7 +266,7 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
253
266
|
}
|
|
254
267
|
};
|
|
255
268
|
ButtonView.prototype.as = function () {
|
|
256
|
-
switch (this.b.
|
|
269
|
+
switch (this.b.k7) {
|
|
257
270
|
case 1:
|
|
258
271
|
this.n.setStyleProperty("justify-content", "center");
|
|
259
272
|
this.o.setStyleProperty("flex-grow", "unset");
|
|
@@ -397,7 +410,7 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
397
410
|
this.b.j9();
|
|
398
411
|
};
|
|
399
412
|
ButtonView.prototype.ab = function (a) {
|
|
400
|
-
this.b.ka(a.originalEvent.relatedTarget);
|
|
413
|
+
this.b.ka(a.originalEvent.relatedTarget, a.originalEvent.target);
|
|
401
414
|
};
|
|
402
415
|
ButtonView.prototype.f = function () {
|
|
403
416
|
return false;
|
|
@@ -457,7 +470,7 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
457
470
|
this.c.aw = b;
|
|
458
471
|
};
|
|
459
472
|
ButtonView.prototype.ax = function (a, b) {
|
|
460
|
-
var c = ElevationHelper.e(a, this.b.
|
|
473
|
+
var c = ElevationHelper.e(a, this.b.nt, this.b.nq, this.b.ng, b);
|
|
461
474
|
this.n.setStyleProperty("box-shadow", c);
|
|
462
475
|
};
|
|
463
476
|
ButtonView.prototype.az = function (a) {
|
|
@@ -496,226 +509,226 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
496
509
|
var _this = _super.call(this) || this;
|
|
497
510
|
_this._view = null;
|
|
498
511
|
_this.d9 = null;
|
|
499
|
-
_this.
|
|
500
|
-
_this.
|
|
501
|
-
_this.
|
|
512
|
+
_this.ph = XButton.k.ae(XButton.m, "UmbraShadowColor");
|
|
513
|
+
_this.o5 = XButton.k.ae(XButton.m, "PenumbraShadowColor");
|
|
514
|
+
_this.nw = XButton.k.ae(XButton.m, "AmbientShadowColor");
|
|
502
515
|
_this.v = XButton.k.d(XButton.m, "ElevationMode");
|
|
503
|
-
_this.
|
|
504
|
-
_this.
|
|
505
|
-
_this.
|
|
516
|
+
_this.o8 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
|
|
517
|
+
_this.o9 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
|
|
518
|
+
_this.pa = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
|
|
506
519
|
_this.da = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
|
|
507
520
|
_this.dd = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
|
|
508
521
|
_this.dc = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
|
|
509
522
|
_this.db = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
|
|
510
|
-
_this.
|
|
511
|
-
_this.
|
|
512
|
-
_this.
|
|
523
|
+
_this.o7 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
|
|
524
|
+
_this.pf = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
|
|
525
|
+
_this.kz = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
|
|
513
526
|
_this.bp = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
|
|
514
|
-
_this.
|
|
515
|
-
_this.
|
|
516
|
-
_this.
|
|
517
|
-
_this.
|
|
518
|
-
_this.
|
|
519
|
-
_this.
|
|
520
|
-
_this.
|
|
521
|
-
_this.
|
|
522
|
-
_this.
|
|
527
|
+
_this.o6 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
|
|
528
|
+
_this.pg = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
|
|
529
|
+
_this.pe = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
|
|
530
|
+
_this.pd = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
|
|
531
|
+
_this.pb = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
|
|
532
|
+
_this.pc = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
|
|
533
|
+
_this.oa = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBackgroundColor");
|
|
534
|
+
_this.ob = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBorderColor");
|
|
535
|
+
_this.oc = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledTextColor");
|
|
523
536
|
_this.cy = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledElevation");
|
|
524
537
|
_this.c1 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "RestingElevation");
|
|
525
538
|
_this.c0 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverElevation");
|
|
526
539
|
_this.cz = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusElevation");
|
|
527
|
-
_this.
|
|
528
|
-
_this.
|
|
529
|
-
_this.
|
|
540
|
+
_this.n9 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderColor");
|
|
541
|
+
_this.oh = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "RippleColor");
|
|
542
|
+
_this.kw = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "CornerRadius");
|
|
530
543
|
_this.bm = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderWidth");
|
|
531
|
-
_this.
|
|
532
|
-
_this.
|
|
533
|
-
_this.
|
|
534
|
-
_this.
|
|
535
|
-
_this.
|
|
536
|
-
_this.
|
|
537
|
-
_this.
|
|
538
|
-
_this.
|
|
539
|
-
_this.
|
|
544
|
+
_this.n8 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "BackgroundColor");
|
|
545
|
+
_this.oi = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "TextColor");
|
|
546
|
+
_this.og = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverTextColor");
|
|
547
|
+
_this.of = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverBackgroundColor");
|
|
548
|
+
_this.od = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusBackgroundColor");
|
|
549
|
+
_this.oe = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusTextColor");
|
|
550
|
+
_this.ow = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBackgroundColor");
|
|
551
|
+
_this.ox = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBorderColor");
|
|
552
|
+
_this.oy = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledTextColor");
|
|
540
553
|
_this.c6 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledElevation");
|
|
541
554
|
_this.c9 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "RestingElevation");
|
|
542
555
|
_this.c8 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverElevation");
|
|
543
556
|
_this.c7 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusElevation");
|
|
544
|
-
_this.
|
|
545
|
-
_this.
|
|
546
|
-
_this.
|
|
557
|
+
_this.ov = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderColor");
|
|
558
|
+
_this.o3 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "RippleColor");
|
|
559
|
+
_this.ky = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "CornerRadius");
|
|
547
560
|
_this.bo = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderWidth");
|
|
548
|
-
_this.
|
|
549
|
-
_this.
|
|
550
|
-
_this.
|
|
551
|
-
_this.
|
|
552
|
-
_this.
|
|
553
|
-
_this.
|
|
554
|
-
_this.
|
|
555
|
-
_this.
|
|
556
|
-
_this.
|
|
561
|
+
_this.ou = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "BackgroundColor");
|
|
562
|
+
_this.o4 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "TextColor");
|
|
563
|
+
_this.o2 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverTextColor");
|
|
564
|
+
_this.o1 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverBackgroundColor");
|
|
565
|
+
_this.oz = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusBackgroundColor");
|
|
566
|
+
_this.o0 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusTextColor");
|
|
567
|
+
_this.ol = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBackgroundColor");
|
|
568
|
+
_this.om = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBorderColor");
|
|
569
|
+
_this.on = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledTextColor");
|
|
557
570
|
_this.c2 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledElevation");
|
|
558
571
|
_this.c5 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "RestingElevation");
|
|
559
572
|
_this.c4 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverElevation");
|
|
560
573
|
_this.c3 = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusElevation");
|
|
561
|
-
_this.
|
|
562
|
-
_this.
|
|
563
|
-
_this.
|
|
574
|
+
_this.ok = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderColor");
|
|
575
|
+
_this.os = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "RippleColor");
|
|
576
|
+
_this.kx = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "CornerRadius");
|
|
564
577
|
_this.bn = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderWidth");
|
|
565
|
-
_this.
|
|
566
|
-
_this.
|
|
567
|
-
_this.
|
|
568
|
-
_this.
|
|
569
|
-
_this.
|
|
570
|
-
_this.
|
|
571
|
-
_this.
|
|
572
|
-
_this.
|
|
573
|
-
_this.
|
|
578
|
+
_this.oj = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "BackgroundColor");
|
|
579
|
+
_this.ot = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "TextColor");
|
|
580
|
+
_this.or = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverTextColor");
|
|
581
|
+
_this.oq = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverBackgroundColor");
|
|
582
|
+
_this.oo = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusBackgroundColor");
|
|
583
|
+
_this.op = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusTextColor");
|
|
584
|
+
_this.nz = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBackgroundColor");
|
|
585
|
+
_this.n0 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBorderColor");
|
|
586
|
+
_this.n1 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledTextColor");
|
|
574
587
|
_this.cu = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledElevation");
|
|
575
588
|
_this.cx = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "RestingElevation");
|
|
576
589
|
_this.cw = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverElevation");
|
|
577
590
|
_this.cv = XButton.k.n(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusElevation");
|
|
578
|
-
_this.
|
|
579
|
-
_this.
|
|
580
|
-
_this.
|
|
591
|
+
_this.ny = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderColor");
|
|
592
|
+
_this.n6 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "RippleColor");
|
|
593
|
+
_this.kv = XButton.k.y(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "CornerRadius");
|
|
581
594
|
_this.bl = XButton.k.i(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderWidth");
|
|
582
|
-
_this.
|
|
583
|
-
_this.
|
|
584
|
-
_this.
|
|
585
|
-
_this.
|
|
586
|
-
_this.
|
|
587
|
-
_this.
|
|
595
|
+
_this.nx = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "BackgroundColor");
|
|
596
|
+
_this.n7 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "TextColor");
|
|
597
|
+
_this.n5 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverTextColor");
|
|
598
|
+
_this.n4 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverBackgroundColor");
|
|
599
|
+
_this.n2 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusBackgroundColor");
|
|
600
|
+
_this.n3 = XButton.k.ad(XButton.m, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusTextColor");
|
|
588
601
|
_this.bc = NaN;
|
|
589
602
|
_this.bb = NaN;
|
|
590
603
|
_this.d = 0;
|
|
591
604
|
_this.p = 0;
|
|
592
605
|
_this.l = 0;
|
|
593
606
|
_this.o = 1;
|
|
594
|
-
_this.
|
|
595
|
-
_this.
|
|
596
|
-
_this.
|
|
597
|
-
_this.
|
|
607
|
+
_this.la = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
|
|
608
|
+
_this.ll = ThemeResolver.ag(XButton.m, XButton.k, "UmbraShadowColor");
|
|
609
|
+
_this.li = ThemeResolver.ag(XButton.m, XButton.k, "PenumbraShadowColor");
|
|
610
|
+
_this.k8 = ThemeResolver.ag(XButton.m, XButton.k, "AmbientShadowColor");
|
|
598
611
|
_this.b0 = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
|
|
599
612
|
_this.by = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
|
|
600
613
|
_this.bz = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
|
|
601
|
-
_this.
|
|
602
|
-
_this.
|
|
603
|
-
_this.
|
|
604
|
-
_this.
|
|
605
|
-
_this.
|
|
606
|
-
_this.
|
|
614
|
+
_this.lj = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
|
|
615
|
+
_this.kl = ThemeResolver.aa(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
|
|
616
|
+
_this.k9 = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
|
|
617
|
+
_this.lb = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
|
|
618
|
+
_this.lc = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
|
|
619
|
+
_this.ld = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
|
|
607
620
|
_this.bx = ThemeResolver.p(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
|
|
608
621
|
_this.s = ThemeResolver.f(XButton.m, XButton.k, "ElevationMode");
|
|
609
|
-
_this.
|
|
610
|
-
_this.
|
|
611
|
-
_this.
|
|
612
|
-
_this.
|
|
613
|
-
_this.
|
|
622
|
+
_this.lk = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
|
|
623
|
+
_this.lh = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
|
|
624
|
+
_this.le = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
|
|
625
|
+
_this.lf = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
|
|
626
|
+
_this.lg = ThemeResolver.af(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
|
|
614
627
|
_this.a2 = ThemeResolver.k(XButton.m, XButton.k, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
|
|
615
|
-
_this.m1 = null;
|
|
616
628
|
_this.m3 = null;
|
|
617
|
-
_this.m4 = null;
|
|
618
629
|
_this.m5 = null;
|
|
630
|
+
_this.m6 = null;
|
|
631
|
+
_this.m7 = null;
|
|
619
632
|
_this.ck = -1;
|
|
620
|
-
_this.
|
|
621
|
-
_this.
|
|
633
|
+
_this.na = null;
|
|
634
|
+
_this.m4 = null;
|
|
622
635
|
_this.cn = -1;
|
|
623
636
|
_this.cm = -1;
|
|
624
637
|
_this.cl = -1;
|
|
625
638
|
_this.be = NaN;
|
|
626
|
-
_this.
|
|
627
|
-
_this.
|
|
628
|
-
_this.lz = null;
|
|
639
|
+
_this.kr = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
640
|
+
_this.nc = null;
|
|
629
641
|
_this.l1 = null;
|
|
630
|
-
_this.l2 = null;
|
|
631
642
|
_this.l3 = null;
|
|
643
|
+
_this.l4 = null;
|
|
644
|
+
_this.l5 = null;
|
|
632
645
|
_this.b6 = -1;
|
|
633
|
-
_this.
|
|
634
|
-
_this.
|
|
646
|
+
_this.l8 = null;
|
|
647
|
+
_this.l2 = null;
|
|
635
648
|
_this.b9 = -1;
|
|
636
649
|
_this.b8 = -1;
|
|
637
650
|
_this.b7 = -1;
|
|
638
|
-
_this.
|
|
651
|
+
_this.ma = null;
|
|
652
|
+
_this.mb = null;
|
|
639
653
|
_this.l9 = null;
|
|
654
|
+
_this.l6 = null;
|
|
640
655
|
_this.l7 = null;
|
|
641
|
-
_this.l4 = null;
|
|
642
|
-
_this.l5 = null;
|
|
643
656
|
_this.a9 = NaN;
|
|
644
|
-
_this.
|
|
645
|
-
_this.lk = null;
|
|
657
|
+
_this.ko = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
646
658
|
_this.lm = null;
|
|
647
|
-
_this.ln = null;
|
|
648
659
|
_this.lo = null;
|
|
660
|
+
_this.lp = null;
|
|
661
|
+
_this.lq = null;
|
|
649
662
|
_this.b1 = -1;
|
|
650
663
|
_this.t = 0;
|
|
651
|
-
_this.
|
|
652
|
-
_this.
|
|
664
|
+
_this.me = null;
|
|
665
|
+
_this.ln = null;
|
|
653
666
|
_this.co = -1;
|
|
654
667
|
_this.cb = -1;
|
|
655
668
|
_this.ca = -1;
|
|
656
669
|
_this.z = null;
|
|
670
|
+
_this.nf = null;
|
|
671
|
+
_this.mg = null;
|
|
672
|
+
_this.ne = null;
|
|
657
673
|
_this.nd = null;
|
|
658
|
-
_this.me = null;
|
|
659
|
-
_this.nc = null;
|
|
660
674
|
_this.nb = null;
|
|
675
|
+
_this.m8 = null;
|
|
661
676
|
_this.m9 = null;
|
|
662
|
-
_this.
|
|
663
|
-
_this.
|
|
664
|
-
_this.ma = null;
|
|
665
|
-
_this.mb = null;
|
|
677
|
+
_this.mc = null;
|
|
678
|
+
_this.md = null;
|
|
666
679
|
_this.a3 = NaN;
|
|
667
|
-
_this.
|
|
668
|
-
_this.mq = null;
|
|
680
|
+
_this.km = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
669
681
|
_this.ms = null;
|
|
670
|
-
_this.mt = null;
|
|
671
682
|
_this.mu = null;
|
|
683
|
+
_this.mv = null;
|
|
684
|
+
_this.mw = null;
|
|
672
685
|
_this.cg = -1;
|
|
673
|
-
_this.
|
|
674
|
-
_this.
|
|
686
|
+
_this.mz = null;
|
|
687
|
+
_this.mt = null;
|
|
675
688
|
_this.cj = -1;
|
|
676
689
|
_this.ci = -1;
|
|
677
690
|
_this.ch = -1;
|
|
678
691
|
_this.bd = NaN;
|
|
679
|
-
_this.
|
|
680
|
-
_this.
|
|
692
|
+
_this.kq = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
693
|
+
_this.m1 = null;
|
|
694
|
+
_this.m2 = null;
|
|
681
695
|
_this.m0 = null;
|
|
696
|
+
_this.mx = null;
|
|
682
697
|
_this.my = null;
|
|
683
|
-
_this.mv = null;
|
|
684
|
-
_this.mw = null;
|
|
685
|
-
_this.lp = null;
|
|
686
698
|
_this.lr = null;
|
|
687
|
-
_this.ls = null;
|
|
688
699
|
_this.lt = null;
|
|
700
|
+
_this.lu = null;
|
|
701
|
+
_this.lv = null;
|
|
689
702
|
_this.b2 = -1;
|
|
690
|
-
_this.
|
|
691
|
-
_this.
|
|
703
|
+
_this.mf = null;
|
|
704
|
+
_this.ls = null;
|
|
692
705
|
_this.b5 = -1;
|
|
693
706
|
_this.b4 = -1;
|
|
694
707
|
_this.b3 = -1;
|
|
695
708
|
_this.a8 = NaN;
|
|
696
|
-
_this.
|
|
697
|
-
_this.
|
|
709
|
+
_this.kn = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
710
|
+
_this.lz = null;
|
|
711
|
+
_this.l0 = null;
|
|
698
712
|
_this.ly = null;
|
|
699
713
|
_this.lw = null;
|
|
700
|
-
_this.
|
|
701
|
-
_this.lv = null;
|
|
702
|
-
_this.mf = null;
|
|
714
|
+
_this.lx = null;
|
|
703
715
|
_this.mh = null;
|
|
704
|
-
_this.mi = null;
|
|
705
716
|
_this.mj = null;
|
|
717
|
+
_this.mk = null;
|
|
718
|
+
_this.ml = null;
|
|
706
719
|
_this.cc = -1;
|
|
707
|
-
_this.
|
|
708
|
-
_this.
|
|
720
|
+
_this.mo = null;
|
|
721
|
+
_this.mi = null;
|
|
709
722
|
_this.cf = -1;
|
|
710
723
|
_this.ce = -1;
|
|
711
724
|
_this.cd = -1;
|
|
712
725
|
_this.ba = NaN;
|
|
713
|
-
_this.
|
|
714
|
-
_this.
|
|
726
|
+
_this.kp = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
727
|
+
_this.mq = null;
|
|
728
|
+
_this.mr = null;
|
|
715
729
|
_this.mp = null;
|
|
730
|
+
_this.mm = null;
|
|
716
731
|
_this.mn = null;
|
|
717
|
-
_this.mk = null;
|
|
718
|
-
_this.ml = null;
|
|
719
732
|
_this.ei = "ig-native-button-" + XButton.d5++;
|
|
720
733
|
_this.eh = "ig-button-" + XButton.d4++;
|
|
721
734
|
_this.ee = "inline-block";
|
|
@@ -742,8 +755,8 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
742
755
|
_this.a7 = NaN;
|
|
743
756
|
_this.a6 = NaN;
|
|
744
757
|
_this.a4 = NaN;
|
|
745
|
-
_this.
|
|
746
|
-
_this.
|
|
758
|
+
_this.k6 = 1;
|
|
759
|
+
_this.ra = 1;
|
|
747
760
|
_this.ae = true;
|
|
748
761
|
_this.propertyChanged = null;
|
|
749
762
|
_this.clicked = null;
|
|
@@ -881,24 +894,25 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
881
894
|
case "IconTextColor":
|
|
882
895
|
case "IconHoverTextColor":
|
|
883
896
|
case "ElevationMode":
|
|
884
|
-
this.
|
|
897
|
+
this.kj();
|
|
885
898
|
break;
|
|
886
899
|
case "BaseTheme":
|
|
887
|
-
this.
|
|
888
|
-
this.
|
|
900
|
+
this.kk(this.n == 0 ? 2 : this.n);
|
|
901
|
+
this.kj();
|
|
889
902
|
break;
|
|
890
903
|
case "IsDisabled":
|
|
891
904
|
this.ap = this.disabled || this.at;
|
|
892
|
-
this.
|
|
905
|
+
this.kj();
|
|
893
906
|
this.view.aq();
|
|
907
|
+
this.ki();
|
|
894
908
|
break;
|
|
895
909
|
case "DisableRipple":
|
|
896
910
|
this.ap = this.disabled || this.at;
|
|
897
|
-
this.
|
|
911
|
+
this.kj();
|
|
898
912
|
break;
|
|
899
913
|
case "TextStyle":
|
|
900
914
|
case "DisableHover":
|
|
901
|
-
this.
|
|
915
|
+
this.ki();
|
|
902
916
|
break;
|
|
903
917
|
case "ActualDisableRipple":
|
|
904
918
|
this.view.ak();
|
|
@@ -913,7 +927,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
913
927
|
case "ActualFocusTextColor":
|
|
914
928
|
case "ActualHoverTextColor":
|
|
915
929
|
case "ActualElevationMode":
|
|
916
|
-
this.
|
|
930
|
+
this.ki();
|
|
917
931
|
break;
|
|
918
932
|
case "Density":
|
|
919
933
|
this.q = this.r == 0 ? 1 : this.r;
|
|
@@ -921,13 +935,16 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
921
935
|
case "ActualDensity":
|
|
922
936
|
case "ActualBorderWidth":
|
|
923
937
|
case "ActualCornerRadius":
|
|
938
|
+
if (this.e == 4) {
|
|
939
|
+
this.kh();
|
|
940
|
+
}
|
|
924
941
|
this.view.ay();
|
|
925
|
-
this.
|
|
942
|
+
this.ki();
|
|
926
943
|
break;
|
|
927
944
|
case "DisplayType":
|
|
928
945
|
this.view.ay();
|
|
946
|
+
this.kj();
|
|
929
947
|
this.ki();
|
|
930
|
-
this.kh();
|
|
931
948
|
break;
|
|
932
949
|
case "ContentPaddingLeft":
|
|
933
950
|
case "ContentPaddingTop":
|
|
@@ -972,112 +989,124 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
972
989
|
break;
|
|
973
990
|
}
|
|
974
991
|
};
|
|
975
|
-
XButton.prototype.
|
|
976
|
-
return new CornerRadius(1, !isNaN_(a.
|
|
992
|
+
XButton.prototype.kt = function (a, b) {
|
|
993
|
+
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);
|
|
977
994
|
};
|
|
978
|
-
XButton.prototype.
|
|
995
|
+
XButton.prototype.kj = function () {
|
|
979
996
|
this.u = this.w != 0 ? this.w : this.v;
|
|
980
|
-
this.
|
|
981
|
-
this.
|
|
982
|
-
this.
|
|
997
|
+
this.nt = this.ph;
|
|
998
|
+
this.nq = this.o5;
|
|
999
|
+
this.ng = this.nw;
|
|
983
1000
|
switch (this.e) {
|
|
984
1001
|
case 0:
|
|
985
|
-
this.nh = this.pg != null ? this.pg : this.qx != null ? this.qx : this.o6;
|
|
986
|
-
this.ni = this.ph != null ? this.ph : this.qy != null ? this.qy : this.o7;
|
|
987
1002
|
this.nj = this.pi != null ? this.pi : this.qz != null ? this.qz : this.o8;
|
|
1003
|
+
this.nk = this.pj != null ? this.pj : this.q0 != null ? this.q0 : this.o9;
|
|
1004
|
+
this.nl = this.pk != null ? this.pk : this.q1 != null ? this.q1 : this.pa;
|
|
988
1005
|
this.cq = this.de >= 0 ? this.de : this.dy >= 0 ? this.dy : this.da;
|
|
989
1006
|
this.ct = this.d2 >= 0 ? this.d2 : this.d1 >= 0 ? this.d1 : this.dd;
|
|
990
1007
|
this.cs = this.dp >= 0 ? this.dp : this.d0 >= 0 ? this.d0 : this.dc;
|
|
991
1008
|
this.cr = this.dn >= 0 ? this.dn : this.dz >= 0 ? this.dz : this.db;
|
|
992
|
-
this.
|
|
993
|
-
this.
|
|
994
|
-
this.
|
|
995
|
-
this.
|
|
1009
|
+
this.ni = this.nv != null ? this.nv : this.qy != null ? this.qy : this.o7;
|
|
1010
|
+
this.nh = this.nu != null ? this.nu : this.qx != null ? this.qx : this.o6;
|
|
1011
|
+
this.no = this.p9 != null ? this.p9 : this.q4 != null ? this.q4 : this.pd;
|
|
1012
|
+
this.ks = this.kt(this.ku, this.kt(this.k5, this.kz));
|
|
996
1013
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bw) ? this.bw : this.bp;
|
|
997
|
-
this.
|
|
998
|
-
this.
|
|
999
|
-
this.nl = this.p6 != null ? this.p6 : this.q1 != null ? this.q1 : this.pa;
|
|
1000
|
-
this.nq = this.q7 != null ? this.q7 : this.q5 != null ? this.q5 : this.pe;
|
|
1014
|
+
this.nr = this.q8 != null ? this.q8 : this.q6 != null ? this.q6 : this.pf;
|
|
1015
|
+
this.nm = this.p7 != null ? this.p7 : this.q2 != null ? this.q2 : this.pb;
|
|
1001
1016
|
this.nn = this.p8 != null ? this.p8 : this.q3 != null ? this.q3 : this.pc;
|
|
1017
|
+
this.ns = this.q9 != null ? this.q9 : this.q7 != null ? this.q7 : this.pg;
|
|
1018
|
+
this.np = this.qa != null ? this.qa : this.q5 != null ? this.q5 : this.pe;
|
|
1002
1019
|
break;
|
|
1003
1020
|
case 2:
|
|
1004
|
-
this.nh = this.pg != null ? this.pg : this.qm != null ? this.qm : this.ou;
|
|
1005
|
-
this.ni = this.ph != null ? this.ph : this.qn != null ? this.qn : this.ov;
|
|
1006
1021
|
this.nj = this.pi != null ? this.pi : this.qo != null ? this.qo : this.ow;
|
|
1022
|
+
this.nk = this.pj != null ? this.pj : this.qp != null ? this.qp : this.ox;
|
|
1023
|
+
this.nl = this.pk != null ? this.pk : this.qq != null ? this.qq : this.oy;
|
|
1007
1024
|
this.cq = this.de >= 0 ? this.de : this.du >= 0 ? this.du : this.c6;
|
|
1008
1025
|
this.ct = this.d2 >= 0 ? this.d2 : this.dx >= 0 ? this.dx : this.c9;
|
|
1009
1026
|
this.cs = this.dp >= 0 ? this.dp : this.dw >= 0 ? this.dw : this.c8;
|
|
1010
1027
|
this.cr = this.dn >= 0 ? this.dn : this.dv >= 0 ? this.dv : this.c7;
|
|
1011
|
-
this.
|
|
1012
|
-
this.
|
|
1013
|
-
this.
|
|
1014
|
-
this.
|
|
1028
|
+
this.ni = this.nv != null ? this.nv : this.qn != null ? this.qn : this.ov;
|
|
1029
|
+
this.nh = this.p9 != null ? this.p9 : this.nu != null ? this.nu : this.qm != null ? this.qm : this.ou;
|
|
1030
|
+
this.no = this.qt != null ? this.qt : this.o1;
|
|
1031
|
+
this.ks = this.kt(this.ku, this.kt(this.k4, this.ky));
|
|
1015
1032
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bv) ? this.bv : this.bo;
|
|
1016
|
-
this.
|
|
1017
|
-
this.
|
|
1018
|
-
this.nl = this.p6 != null ? this.p6 : this.qq != null ? this.qq : this.oy;
|
|
1019
|
-
this.nq = this.q7 != null ? this.q7 : this.qu != null ? this.qu : this.o2;
|
|
1033
|
+
this.nr = this.q8 != null ? this.q8 : this.qv != null ? this.qv : this.o3;
|
|
1034
|
+
this.nm = this.p7 != null ? this.p7 : this.qr != null ? this.qr : this.oz;
|
|
1020
1035
|
this.nn = this.p8 != null ? this.p8 : this.qs != null ? this.qs : this.o0;
|
|
1036
|
+
this.ns = this.q9 != null ? this.q9 : this.qw != null ? this.qw : this.o4;
|
|
1037
|
+
this.np = this.qa != null ? this.qa : this.qu != null ? this.qu : this.o2;
|
|
1021
1038
|
break;
|
|
1022
1039
|
case 1:
|
|
1023
|
-
this.nh = this.pg != null ? this.pg : this.pw != null ? this.pw : this.n8;
|
|
1024
|
-
this.ni = this.ph != null ? this.ph : this.px != null ? this.px : this.n9;
|
|
1025
1040
|
this.nj = this.pi != null ? this.pi : this.py != null ? this.py : this.oa;
|
|
1041
|
+
this.nk = this.pj != null ? this.pj : this.pz != null ? this.pz : this.ob;
|
|
1042
|
+
this.nl = this.pk != null ? this.pk : this.p0 != null ? this.p0 : this.oc;
|
|
1026
1043
|
this.cq = this.de >= 0 ? this.de : this.dj >= 0 ? this.dj : this.cy;
|
|
1027
1044
|
this.ct = this.d2 >= 0 ? this.d2 : this.dm >= 0 ? this.dm : this.c1;
|
|
1028
1045
|
this.cs = this.dp >= 0 ? this.dp : this.dl >= 0 ? this.dl : this.c0;
|
|
1029
1046
|
this.cr = this.dn >= 0 ? this.dn : this.dk >= 0 ? this.dk : this.cz;
|
|
1030
|
-
this.
|
|
1031
|
-
this.
|
|
1032
|
-
this.
|
|
1033
|
-
this.
|
|
1047
|
+
this.ni = this.nv != null ? this.nv : this.px != null ? this.px : this.n9;
|
|
1048
|
+
this.nh = this.nu != null ? this.nu : this.pw != null ? this.pw : this.n8;
|
|
1049
|
+
this.no = this.p9 != null ? this.p9 : this.p3 != null ? this.p3 : this.of;
|
|
1050
|
+
this.ks = this.kt(this.ku, this.kt(this.k1, this.kw));
|
|
1034
1051
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.br) ? this.br : this.bm;
|
|
1035
|
-
this.
|
|
1036
|
-
this.
|
|
1037
|
-
this.nl = this.p6 != null ? this.p6 : this.p0 != null ? this.p0 : this.oc;
|
|
1038
|
-
this.nq = this.q7 != null ? this.q7 : this.p4 != null ? this.p4 : this.og;
|
|
1052
|
+
this.nr = this.q8 != null ? this.q8 : this.p5 != null ? this.p5 : this.oh;
|
|
1053
|
+
this.nm = this.p7 != null ? this.p7 : this.p1 != null ? this.p1 : this.od;
|
|
1039
1054
|
this.nn = this.p8 != null ? this.p8 : this.p2 != null ? this.p2 : this.oe;
|
|
1055
|
+
this.ns = this.q9 != null ? this.q9 : this.p6 != null ? this.p6 : this.oi;
|
|
1056
|
+
this.np = this.qa != null ? this.qa : this.p4 != null ? this.p4 : this.og;
|
|
1040
1057
|
break;
|
|
1041
1058
|
case 4:
|
|
1042
|
-
this.nh = this.pg != null ? this.pg : this.qb != null ? this.qb : this.oj;
|
|
1043
|
-
this.ni = this.ph != null ? this.ph : this.qc != null ? this.qc : this.ok;
|
|
1044
1059
|
this.nj = this.pi != null ? this.pi : this.qd != null ? this.qd : this.ol;
|
|
1060
|
+
this.nk = this.pj != null ? this.pj : this.qe != null ? this.qe : this.om;
|
|
1061
|
+
this.nl = this.pk != null ? this.pk : this.qf != null ? this.qf : this.on;
|
|
1045
1062
|
this.cq = this.de >= 0 ? this.de : this.dq >= 0 ? this.dq : this.c2;
|
|
1046
1063
|
this.ct = this.d2 >= 0 ? this.d2 : this.dt >= 0 ? this.dt : this.c5;
|
|
1047
1064
|
this.cs = this.dp >= 0 ? this.dp : this.ds >= 0 ? this.ds : this.c4;
|
|
1048
1065
|
this.cr = this.dn >= 0 ? this.dn : this.dr >= 0 ? this.dr : this.c3;
|
|
1049
|
-
this.
|
|
1050
|
-
this.
|
|
1051
|
-
this.
|
|
1052
|
-
this.
|
|
1066
|
+
this.ni = this.nv != null ? this.nv : this.qc != null ? this.qc : this.ok;
|
|
1067
|
+
this.nh = this.nu != null ? this.nu : this.qb != null ? this.qb : this.oj;
|
|
1068
|
+
this.no = this.p9 != null ? this.p9 : this.qi != null ? this.qi : this.oq;
|
|
1069
|
+
this.kh();
|
|
1053
1070
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bs) ? this.bs : this.bn;
|
|
1054
|
-
this.
|
|
1055
|
-
this.
|
|
1056
|
-
this.nl = this.p6 != null ? this.p6 : this.qf != null ? this.qf : this.on;
|
|
1057
|
-
this.nq = this.q7 != null ? this.q7 : this.qj != null ? this.qj : this.or;
|
|
1071
|
+
this.nr = this.q8 != null ? this.q8 : this.qk != null ? this.qk : this.os;
|
|
1072
|
+
this.nm = this.p7 != null ? this.p7 : this.qg != null ? this.qg : this.oo;
|
|
1058
1073
|
this.nn = this.p8 != null ? this.p8 : this.qh != null ? this.qh : this.op;
|
|
1074
|
+
this.ns = this.q9 != null ? this.q9 : this.ql != null ? this.ql : this.ot;
|
|
1075
|
+
this.np = this.qa != null ? this.qa : this.qj != null ? this.qj : this.or;
|
|
1059
1076
|
break;
|
|
1060
1077
|
case 3:
|
|
1061
|
-
this.nh = this.pg != null ? this.pg : this.pl != null ? this.pl : this.nx;
|
|
1062
|
-
this.ni = this.ph != null ? this.ph : this.pm != null ? this.pm : this.ny;
|
|
1063
1078
|
this.nj = this.pi != null ? this.pi : this.pn != null ? this.pn : this.nz;
|
|
1079
|
+
this.nk = this.pj != null ? this.pj : this.po != null ? this.po : this.n0;
|
|
1080
|
+
this.nl = this.pk != null ? this.pk : this.pp != null ? this.pp : this.n1;
|
|
1064
1081
|
this.cq = this.de >= 0 ? this.de : this.df >= 0 ? this.df : this.cu;
|
|
1065
1082
|
this.ct = this.d2 >= 0 ? this.d2 : this.di >= 0 ? this.di : this.cx;
|
|
1066
1083
|
this.cs = this.dp >= 0 ? this.dp : this.dh >= 0 ? this.dh : this.cw;
|
|
1067
1084
|
this.cr = this.dn >= 0 ? this.dn : this.dg >= 0 ? this.dg : this.cv;
|
|
1068
|
-
this.
|
|
1069
|
-
this.
|
|
1070
|
-
this.
|
|
1071
|
-
this.
|
|
1085
|
+
this.ni = this.nv != null ? this.nv : this.pm != null ? this.pm : this.ny;
|
|
1086
|
+
this.nh = this.nu != null ? this.nu : this.pl != null ? this.pl : this.nx;
|
|
1087
|
+
this.no = this.p9 != null ? this.p9 : this.ps != null ? this.ps : this.n4;
|
|
1088
|
+
this.ks = this.kt(this.ku, this.kt(this.k0, this.kv));
|
|
1072
1089
|
this.bf = !isNaN_(this.bg) ? this.bg : !isNaN_(this.bq) ? this.bq : this.bl;
|
|
1073
|
-
this.
|
|
1074
|
-
this.
|
|
1075
|
-
this.nl = this.p6 != null ? this.p6 : this.pp != null ? this.pp : this.n1;
|
|
1076
|
-
this.nq = this.q7 != null ? this.q7 : this.pt != null ? this.pt : this.n5;
|
|
1090
|
+
this.nr = this.q8 != null ? this.q8 : this.pu != null ? this.pu : this.pf;
|
|
1091
|
+
this.nm = this.p7 != null ? this.p7 : this.pq != null ? this.pq : this.n2;
|
|
1077
1092
|
this.nn = this.p8 != null ? this.p8 : this.pr != null ? this.pr : this.n3;
|
|
1093
|
+
this.ns = this.q9 != null ? this.q9 : this.pv != null ? this.pv : this.n7;
|
|
1094
|
+
this.np = this.qa != null ? this.qa : this.pt != null ? this.pt : this.n5;
|
|
1078
1095
|
break;
|
|
1079
1096
|
}
|
|
1080
1097
|
};
|
|
1098
|
+
XButton.prototype.kh = function () {
|
|
1099
|
+
this.ks = this.kt(this.ku, this.kt(this.k3, this.k2(this.kx)));
|
|
1100
|
+
};
|
|
1101
|
+
XButton.prototype.k2 = function (a) {
|
|
1102
|
+
switch (this.q) {
|
|
1103
|
+
case 1: return a;
|
|
1104
|
+
case 2: return a;
|
|
1105
|
+
case 3: return a;
|
|
1106
|
+
case 4: return new CornerRadius(0, 16);
|
|
1107
|
+
}
|
|
1108
|
+
return a;
|
|
1109
|
+
};
|
|
1081
1110
|
XButton.prototype.j6 = function () {
|
|
1082
1111
|
if (this.disabled) {
|
|
1083
1112
|
return;
|
|
@@ -1088,22 +1117,22 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1088
1117
|
};
|
|
1089
1118
|
XButton.prototype.j5 = function () {
|
|
1090
1119
|
this.focused = false;
|
|
1091
|
-
this.
|
|
1120
|
+
this.ki();
|
|
1092
1121
|
};
|
|
1093
1122
|
XButton.prototype.j8 = function () {
|
|
1094
1123
|
this.focused = true;
|
|
1095
|
-
this.
|
|
1124
|
+
this.ki();
|
|
1096
1125
|
};
|
|
1097
1126
|
XButton.prototype.kc = function () {
|
|
1098
1127
|
this.a0 = false;
|
|
1099
|
-
this.
|
|
1128
|
+
this.ki();
|
|
1100
1129
|
if (this.mouseLeave != null) {
|
|
1101
1130
|
this.mouseLeave(this, new MouseEventArgs());
|
|
1102
1131
|
}
|
|
1103
1132
|
};
|
|
1104
1133
|
XButton.prototype.kb = function () {
|
|
1105
1134
|
this.a0 = true;
|
|
1106
|
-
this.
|
|
1135
|
+
this.ki();
|
|
1107
1136
|
if (this.mouseEnter != null) {
|
|
1108
1137
|
this.mouseEnter(this, new MouseEventArgs());
|
|
1109
1138
|
}
|
|
@@ -1113,22 +1142,23 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1113
1142
|
this.gotFocus(this, new FocusEventArgs());
|
|
1114
1143
|
}
|
|
1115
1144
|
};
|
|
1116
|
-
XButton.prototype.ka = function (a) {
|
|
1145
|
+
XButton.prototype.ka = function (a, b) {
|
|
1117
1146
|
if (this.lostFocus != null) {
|
|
1118
1147
|
this.lostFocus(this, ((function () {
|
|
1119
1148
|
var $ret = new FocusEventArgs();
|
|
1120
|
-
$ret.
|
|
1149
|
+
$ret.b = a;
|
|
1150
|
+
$ret.a = b;
|
|
1121
1151
|
return $ret;
|
|
1122
1152
|
})()));
|
|
1123
1153
|
}
|
|
1124
1154
|
};
|
|
1125
|
-
XButton.prototype.
|
|
1155
|
+
XButton.prototype.ki = function () {
|
|
1126
1156
|
var a = this.view.q;
|
|
1127
1157
|
if (a == null) {
|
|
1128
1158
|
return;
|
|
1129
1159
|
}
|
|
1130
|
-
NativeUI.o(a, this.
|
|
1131
|
-
NativeUI.n(a, this.
|
|
1160
|
+
NativeUI.o(a, this.ks);
|
|
1161
|
+
NativeUI.n(a, this.ni);
|
|
1132
1162
|
if (!isNaN_(this.bf)) {
|
|
1133
1163
|
NativeUI.p(a, new Thickness(0, this.bf));
|
|
1134
1164
|
}
|
|
@@ -1147,132 +1177,132 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1147
1177
|
}
|
|
1148
1178
|
}
|
|
1149
1179
|
if (this.disabled) {
|
|
1150
|
-
NativeUI.m(a, this.
|
|
1180
|
+
NativeUI.m(a, this.nj);
|
|
1151
1181
|
}
|
|
1152
1182
|
else if (this.focused && this.az) {
|
|
1153
|
-
NativeUI.m(a, this.
|
|
1183
|
+
NativeUI.m(a, this.nm);
|
|
1154
1184
|
}
|
|
1155
1185
|
else {
|
|
1156
1186
|
if (this.a0 && !this.ar) {
|
|
1157
|
-
NativeUI.m(a, this.
|
|
1187
|
+
NativeUI.m(a, this.no);
|
|
1158
1188
|
}
|
|
1159
1189
|
else {
|
|
1160
|
-
NativeUI.m(a, this.
|
|
1190
|
+
NativeUI.m(a, this.nh);
|
|
1161
1191
|
}
|
|
1162
1192
|
}
|
|
1163
|
-
this.view.aw(this.
|
|
1193
|
+
this.view.aw(this.nr, BrushUtil.h(0, 0, 0, 0));
|
|
1164
1194
|
if (this.aa != null) {
|
|
1165
1195
|
this.view.az(this.aa);
|
|
1166
1196
|
}
|
|
1167
1197
|
if (this.disabled) {
|
|
1168
|
-
NativeUI.q(this.view.s, this.nj);
|
|
1169
|
-
NativeUI.r(this.view.s, this.nj);
|
|
1170
|
-
}
|
|
1171
|
-
else if (this.focused && this.az) {
|
|
1172
1198
|
NativeUI.q(this.view.s, this.nl);
|
|
1173
1199
|
NativeUI.r(this.view.s, this.nl);
|
|
1174
1200
|
}
|
|
1201
|
+
else if (this.focused && this.az) {
|
|
1202
|
+
NativeUI.q(this.view.s, this.nn);
|
|
1203
|
+
NativeUI.r(this.view.s, this.nn);
|
|
1204
|
+
}
|
|
1175
1205
|
else {
|
|
1176
1206
|
if (this.a0 && !this.ar) {
|
|
1177
|
-
NativeUI.q(this.view.s, this.
|
|
1178
|
-
NativeUI.r(this.view.s, this.
|
|
1207
|
+
NativeUI.q(this.view.s, this.np);
|
|
1208
|
+
NativeUI.r(this.view.s, this.np);
|
|
1179
1209
|
}
|
|
1180
1210
|
else {
|
|
1181
|
-
NativeUI.q(this.view.s, this.
|
|
1182
|
-
NativeUI.r(this.view.s, this.
|
|
1211
|
+
NativeUI.q(this.view.s, this.ns);
|
|
1212
|
+
NativeUI.r(this.view.s, this.ns);
|
|
1183
1213
|
}
|
|
1184
1214
|
}
|
|
1185
1215
|
};
|
|
1186
|
-
XButton.prototype.
|
|
1187
|
-
this.
|
|
1188
|
-
this.
|
|
1189
|
-
this.
|
|
1216
|
+
XButton.prototype.kk = function (a) {
|
|
1217
|
+
this.ph = XButton.k.ae(a, "UmbraShadowColor");
|
|
1218
|
+
this.o5 = XButton.k.ae(a, "PenumbraShadowColor");
|
|
1219
|
+
this.nw = XButton.k.ae(a, "AmbientShadowColor");
|
|
1190
1220
|
this.v = XButton.k.d(a, "ElevationMode");
|
|
1191
|
-
this.
|
|
1192
|
-
this.
|
|
1193
|
-
this.
|
|
1221
|
+
this.o8 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBackgroundColor");
|
|
1222
|
+
this.o9 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledBorderColor");
|
|
1223
|
+
this.pa = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledTextColor");
|
|
1194
1224
|
this.da = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "DisabledElevation");
|
|
1195
1225
|
this.dd = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "RestingElevation");
|
|
1196
1226
|
this.dc = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverElevation");
|
|
1197
1227
|
this.db = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusElevation");
|
|
1198
|
-
this.
|
|
1199
|
-
this.
|
|
1200
|
-
this.
|
|
1228
|
+
this.o7 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderColor");
|
|
1229
|
+
this.pf = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "RippleColor");
|
|
1230
|
+
this.kz = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 0), "CornerRadius");
|
|
1201
1231
|
this.bp = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BorderWidth");
|
|
1202
|
-
this.
|
|
1203
|
-
this.
|
|
1204
|
-
this.
|
|
1205
|
-
this.
|
|
1206
|
-
this.
|
|
1207
|
-
this.
|
|
1208
|
-
this.
|
|
1209
|
-
this.
|
|
1210
|
-
this.
|
|
1232
|
+
this.o6 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "BackgroundColor");
|
|
1233
|
+
this.pg = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "TextColor");
|
|
1234
|
+
this.pe = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverTextColor");
|
|
1235
|
+
this.pd = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "HoverBackgroundColor");
|
|
1236
|
+
this.pb = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusBackgroundColor");
|
|
1237
|
+
this.pc = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 0), "FocusTextColor");
|
|
1238
|
+
this.oa = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBackgroundColor");
|
|
1239
|
+
this.ob = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledBorderColor");
|
|
1240
|
+
this.oc = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledTextColor");
|
|
1211
1241
|
this.cy = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "DisabledElevation");
|
|
1212
1242
|
this.c1 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "RestingElevation");
|
|
1213
1243
|
this.c0 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverElevation");
|
|
1214
1244
|
this.cz = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusElevation");
|
|
1215
|
-
this.
|
|
1216
|
-
this.
|
|
1217
|
-
this.
|
|
1245
|
+
this.n9 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderColor");
|
|
1246
|
+
this.oh = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "RippleColor");
|
|
1247
|
+
this.kw = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 1), "CornerRadius");
|
|
1218
1248
|
this.bm = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BorderWidth");
|
|
1219
|
-
this.
|
|
1220
|
-
this.
|
|
1221
|
-
this.
|
|
1222
|
-
this.
|
|
1223
|
-
this.
|
|
1224
|
-
this.
|
|
1225
|
-
this.
|
|
1226
|
-
this.
|
|
1227
|
-
this.
|
|
1249
|
+
this.n8 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "BackgroundColor");
|
|
1250
|
+
this.oi = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "TextColor");
|
|
1251
|
+
this.og = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverTextColor");
|
|
1252
|
+
this.of = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "HoverBackgroundColor");
|
|
1253
|
+
this.od = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusBackgroundColor");
|
|
1254
|
+
this.oe = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 1), "FocusTextColor");
|
|
1255
|
+
this.ow = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBackgroundColor");
|
|
1256
|
+
this.ox = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledBorderColor");
|
|
1257
|
+
this.oy = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledTextColor");
|
|
1228
1258
|
this.c6 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "DisabledElevation");
|
|
1229
1259
|
this.c9 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "RestingElevation");
|
|
1230
1260
|
this.c8 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverElevation");
|
|
1231
1261
|
this.c7 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusElevation");
|
|
1232
|
-
this.
|
|
1233
|
-
this.
|
|
1234
|
-
this.
|
|
1262
|
+
this.ov = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderColor");
|
|
1263
|
+
this.o3 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "RippleColor");
|
|
1264
|
+
this.ky = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 2), "CornerRadius");
|
|
1235
1265
|
this.bo = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BorderWidth");
|
|
1236
|
-
this.
|
|
1237
|
-
this.
|
|
1238
|
-
this.
|
|
1239
|
-
this.
|
|
1240
|
-
this.
|
|
1241
|
-
this.
|
|
1242
|
-
this.
|
|
1243
|
-
this.
|
|
1244
|
-
this.
|
|
1266
|
+
this.ou = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "BackgroundColor");
|
|
1267
|
+
this.o4 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "TextColor");
|
|
1268
|
+
this.o2 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverTextColor");
|
|
1269
|
+
this.o1 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "HoverBackgroundColor");
|
|
1270
|
+
this.oz = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusBackgroundColor");
|
|
1271
|
+
this.o0 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 2), "FocusTextColor");
|
|
1272
|
+
this.ol = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBackgroundColor");
|
|
1273
|
+
this.om = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledBorderColor");
|
|
1274
|
+
this.on = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledTextColor");
|
|
1245
1275
|
this.c2 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "DisabledElevation");
|
|
1246
1276
|
this.c5 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "RestingElevation");
|
|
1247
1277
|
this.c4 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverElevation");
|
|
1248
1278
|
this.c3 = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusElevation");
|
|
1249
|
-
this.
|
|
1250
|
-
this.
|
|
1251
|
-
this.
|
|
1279
|
+
this.ok = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderColor");
|
|
1280
|
+
this.os = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "RippleColor");
|
|
1281
|
+
this.kx = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 4), "CornerRadius");
|
|
1252
1282
|
this.bn = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BorderWidth");
|
|
1253
|
-
this.
|
|
1254
|
-
this.
|
|
1255
|
-
this.
|
|
1256
|
-
this.
|
|
1257
|
-
this.
|
|
1258
|
-
this.
|
|
1259
|
-
this.
|
|
1260
|
-
this.
|
|
1261
|
-
this.
|
|
1283
|
+
this.oj = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "BackgroundColor");
|
|
1284
|
+
this.ot = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "TextColor");
|
|
1285
|
+
this.or = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverTextColor");
|
|
1286
|
+
this.oq = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "HoverBackgroundColor");
|
|
1287
|
+
this.oo = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusBackgroundColor");
|
|
1288
|
+
this.op = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 4), "FocusTextColor");
|
|
1289
|
+
this.nz = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBackgroundColor");
|
|
1290
|
+
this.n0 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledBorderColor");
|
|
1291
|
+
this.n1 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledTextColor");
|
|
1262
1292
|
this.cu = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "DisabledElevation");
|
|
1263
1293
|
this.cx = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "RestingElevation");
|
|
1264
1294
|
this.cw = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverElevation");
|
|
1265
1295
|
this.cv = XButton.k.n(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusElevation");
|
|
1266
|
-
this.
|
|
1267
|
-
this.
|
|
1268
|
-
this.
|
|
1296
|
+
this.ny = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderColor");
|
|
1297
|
+
this.n6 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "RippleColor");
|
|
1298
|
+
this.kv = XButton.k.y(a, enumGetBox(ButtonDisplayStyle_$type, 3), "CornerRadius");
|
|
1269
1299
|
this.bl = XButton.k.i(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BorderWidth");
|
|
1270
|
-
this.
|
|
1271
|
-
this.
|
|
1272
|
-
this.
|
|
1273
|
-
this.
|
|
1274
|
-
this.
|
|
1275
|
-
this.
|
|
1300
|
+
this.nx = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "BackgroundColor");
|
|
1301
|
+
this.n7 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "TextColor");
|
|
1302
|
+
this.n5 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverTextColor");
|
|
1303
|
+
this.n4 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "HoverBackgroundColor");
|
|
1304
|
+
this.n2 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusBackgroundColor");
|
|
1305
|
+
this.n3 = XButton.k.ad(a, enumGetBox(ButtonDisplayStyle_$type, 3), "FocusTextColor");
|
|
1276
1306
|
};
|
|
1277
1307
|
Object.defineProperty(XButton.prototype, "bu", {
|
|
1278
1308
|
get: function () {
|
|
@@ -1358,56 +1388,56 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1358
1388
|
enumerable: false,
|
|
1359
1389
|
configurable: true
|
|
1360
1390
|
});
|
|
1361
|
-
Object.defineProperty(XButton.prototype, "
|
|
1391
|
+
Object.defineProperty(XButton.prototype, "ni", {
|
|
1362
1392
|
get: function () {
|
|
1363
|
-
return this.
|
|
1393
|
+
return this.la;
|
|
1364
1394
|
},
|
|
1365
1395
|
set: function (a) {
|
|
1366
|
-
var b = this.
|
|
1367
|
-
this.
|
|
1368
|
-
if (b != this.
|
|
1396
|
+
var b = this.la;
|
|
1397
|
+
this.la = a;
|
|
1398
|
+
if (b != this.la) {
|
|
1369
1399
|
this.kd("ActualBorderColor", b, a);
|
|
1370
1400
|
}
|
|
1371
1401
|
},
|
|
1372
1402
|
enumerable: false,
|
|
1373
1403
|
configurable: true
|
|
1374
1404
|
});
|
|
1375
|
-
Object.defineProperty(XButton.prototype, "
|
|
1405
|
+
Object.defineProperty(XButton.prototype, "nt", {
|
|
1376
1406
|
get: function () {
|
|
1377
|
-
return this.
|
|
1407
|
+
return this.ll;
|
|
1378
1408
|
},
|
|
1379
1409
|
set: function (a) {
|
|
1380
|
-
var b = this.
|
|
1381
|
-
this.
|
|
1382
|
-
if (b != this.
|
|
1410
|
+
var b = this.ll;
|
|
1411
|
+
this.ll = a;
|
|
1412
|
+
if (b != this.ll) {
|
|
1383
1413
|
this.kd("ActualUmbraShadowColor", b, a);
|
|
1384
1414
|
}
|
|
1385
1415
|
},
|
|
1386
1416
|
enumerable: false,
|
|
1387
1417
|
configurable: true
|
|
1388
1418
|
});
|
|
1389
|
-
Object.defineProperty(XButton.prototype, "
|
|
1419
|
+
Object.defineProperty(XButton.prototype, "nq", {
|
|
1390
1420
|
get: function () {
|
|
1391
|
-
return this.
|
|
1421
|
+
return this.li;
|
|
1392
1422
|
},
|
|
1393
1423
|
set: function (a) {
|
|
1394
|
-
var b = this.
|
|
1395
|
-
this.
|
|
1396
|
-
if (b != this.
|
|
1424
|
+
var b = this.li;
|
|
1425
|
+
this.li = a;
|
|
1426
|
+
if (b != this.li) {
|
|
1397
1427
|
this.kd("ActualPenumbraShadowColor", b, a);
|
|
1398
1428
|
}
|
|
1399
1429
|
},
|
|
1400
1430
|
enumerable: false,
|
|
1401
1431
|
configurable: true
|
|
1402
1432
|
});
|
|
1403
|
-
Object.defineProperty(XButton.prototype, "
|
|
1433
|
+
Object.defineProperty(XButton.prototype, "ng", {
|
|
1404
1434
|
get: function () {
|
|
1405
|
-
return this.
|
|
1435
|
+
return this.k8;
|
|
1406
1436
|
},
|
|
1407
1437
|
set: function (a) {
|
|
1408
|
-
var b = this.
|
|
1409
|
-
this.
|
|
1410
|
-
if (b != this.
|
|
1438
|
+
var b = this.k8;
|
|
1439
|
+
this.k8 = a;
|
|
1440
|
+
if (b != this.k8) {
|
|
1411
1441
|
this.kd("ActualAmbientShadowColor", b, a);
|
|
1412
1442
|
}
|
|
1413
1443
|
},
|
|
@@ -1456,84 +1486,84 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1456
1486
|
enumerable: false,
|
|
1457
1487
|
configurable: true
|
|
1458
1488
|
});
|
|
1459
|
-
Object.defineProperty(XButton.prototype, "
|
|
1489
|
+
Object.defineProperty(XButton.prototype, "nr", {
|
|
1460
1490
|
get: function () {
|
|
1461
|
-
return this.
|
|
1491
|
+
return this.lj;
|
|
1462
1492
|
},
|
|
1463
1493
|
set: function (a) {
|
|
1464
|
-
var b = this.
|
|
1465
|
-
this.
|
|
1466
|
-
if (b != this.
|
|
1494
|
+
var b = this.lj;
|
|
1495
|
+
this.lj = a;
|
|
1496
|
+
if (b != this.lj) {
|
|
1467
1497
|
this.kd("ActualRippleColor", b, a);
|
|
1468
1498
|
}
|
|
1469
1499
|
},
|
|
1470
1500
|
enumerable: false,
|
|
1471
1501
|
configurable: true
|
|
1472
1502
|
});
|
|
1473
|
-
Object.defineProperty(XButton.prototype, "
|
|
1503
|
+
Object.defineProperty(XButton.prototype, "ks", {
|
|
1474
1504
|
get: function () {
|
|
1475
|
-
return this.
|
|
1505
|
+
return this.kl;
|
|
1476
1506
|
},
|
|
1477
1507
|
set: function (a) {
|
|
1478
|
-
var b = this.
|
|
1479
|
-
this.
|
|
1480
|
-
if (b
|
|
1508
|
+
var b = this.kl;
|
|
1509
|
+
this.kl = a;
|
|
1510
|
+
if (!b.equals(this.kl)) {
|
|
1481
1511
|
this.kd("ActualCornerRadius", b, a);
|
|
1482
1512
|
}
|
|
1483
1513
|
},
|
|
1484
1514
|
enumerable: false,
|
|
1485
1515
|
configurable: true
|
|
1486
1516
|
});
|
|
1487
|
-
Object.defineProperty(XButton.prototype, "
|
|
1517
|
+
Object.defineProperty(XButton.prototype, "nh", {
|
|
1488
1518
|
get: function () {
|
|
1489
|
-
return this.
|
|
1519
|
+
return this.k9;
|
|
1490
1520
|
},
|
|
1491
1521
|
set: function (a) {
|
|
1492
|
-
var b = this.
|
|
1493
|
-
this.
|
|
1494
|
-
if (b != this.
|
|
1522
|
+
var b = this.k9;
|
|
1523
|
+
this.k9 = a;
|
|
1524
|
+
if (b != this.k9) {
|
|
1495
1525
|
this.kd("ActualBackgroundColor", b, a);
|
|
1496
1526
|
}
|
|
1497
1527
|
},
|
|
1498
1528
|
enumerable: false,
|
|
1499
1529
|
configurable: true
|
|
1500
1530
|
});
|
|
1501
|
-
Object.defineProperty(XButton.prototype, "
|
|
1531
|
+
Object.defineProperty(XButton.prototype, "nj", {
|
|
1502
1532
|
get: function () {
|
|
1503
|
-
return this.
|
|
1533
|
+
return this.lb;
|
|
1504
1534
|
},
|
|
1505
1535
|
set: function (a) {
|
|
1506
|
-
var b = this.
|
|
1507
|
-
this.
|
|
1508
|
-
if (b != this.
|
|
1536
|
+
var b = this.lb;
|
|
1537
|
+
this.lb = a;
|
|
1538
|
+
if (b != this.lb) {
|
|
1509
1539
|
this.kd("ActualDisabledBackgroundColor", b, a);
|
|
1510
1540
|
}
|
|
1511
1541
|
},
|
|
1512
1542
|
enumerable: false,
|
|
1513
1543
|
configurable: true
|
|
1514
1544
|
});
|
|
1515
|
-
Object.defineProperty(XButton.prototype, "
|
|
1545
|
+
Object.defineProperty(XButton.prototype, "nk", {
|
|
1516
1546
|
get: function () {
|
|
1517
|
-
return this.
|
|
1547
|
+
return this.lc;
|
|
1518
1548
|
},
|
|
1519
1549
|
set: function (a) {
|
|
1520
|
-
var b = this.
|
|
1521
|
-
this.
|
|
1522
|
-
if (b != this.
|
|
1550
|
+
var b = this.lc;
|
|
1551
|
+
this.lc = a;
|
|
1552
|
+
if (b != this.lc) {
|
|
1523
1553
|
this.kd("ActualDisabledBorderColor", b, a);
|
|
1524
1554
|
}
|
|
1525
1555
|
},
|
|
1526
1556
|
enumerable: false,
|
|
1527
1557
|
configurable: true
|
|
1528
1558
|
});
|
|
1529
|
-
Object.defineProperty(XButton.prototype, "
|
|
1559
|
+
Object.defineProperty(XButton.prototype, "nl", {
|
|
1530
1560
|
get: function () {
|
|
1531
|
-
return this.
|
|
1561
|
+
return this.ld;
|
|
1532
1562
|
},
|
|
1533
1563
|
set: function (a) {
|
|
1534
|
-
var b = this.
|
|
1535
|
-
this.
|
|
1536
|
-
if (b != this.
|
|
1564
|
+
var b = this.ld;
|
|
1565
|
+
this.ld = a;
|
|
1566
|
+
if (b != this.ld) {
|
|
1537
1567
|
this.kd("ActualDisabledTextColor", b, a);
|
|
1538
1568
|
}
|
|
1539
1569
|
},
|
|
@@ -1568,70 +1598,70 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1568
1598
|
enumerable: false,
|
|
1569
1599
|
configurable: true
|
|
1570
1600
|
});
|
|
1571
|
-
Object.defineProperty(XButton.prototype, "
|
|
1601
|
+
Object.defineProperty(XButton.prototype, "ns", {
|
|
1572
1602
|
get: function () {
|
|
1573
|
-
return this.
|
|
1603
|
+
return this.lk;
|
|
1574
1604
|
},
|
|
1575
1605
|
set: function (a) {
|
|
1576
|
-
var b = this.
|
|
1577
|
-
this.
|
|
1578
|
-
if (b != this.
|
|
1606
|
+
var b = this.lk;
|
|
1607
|
+
this.lk = a;
|
|
1608
|
+
if (b != this.lk) {
|
|
1579
1609
|
this.kd("ActualTextColor", b, a);
|
|
1580
1610
|
}
|
|
1581
1611
|
},
|
|
1582
1612
|
enumerable: false,
|
|
1583
1613
|
configurable: true
|
|
1584
1614
|
});
|
|
1585
|
-
Object.defineProperty(XButton.prototype, "
|
|
1615
|
+
Object.defineProperty(XButton.prototype, "np", {
|
|
1586
1616
|
get: function () {
|
|
1587
|
-
return this.
|
|
1617
|
+
return this.lh;
|
|
1588
1618
|
},
|
|
1589
1619
|
set: function (a) {
|
|
1590
|
-
var b = this.
|
|
1591
|
-
this.
|
|
1592
|
-
if (b != this.
|
|
1620
|
+
var b = this.lh;
|
|
1621
|
+
this.lh = a;
|
|
1622
|
+
if (b != this.lh) {
|
|
1593
1623
|
this.kd("ActualHoverTextColor", b, a);
|
|
1594
1624
|
}
|
|
1595
1625
|
},
|
|
1596
1626
|
enumerable: false,
|
|
1597
1627
|
configurable: true
|
|
1598
1628
|
});
|
|
1599
|
-
Object.defineProperty(XButton.prototype, "
|
|
1629
|
+
Object.defineProperty(XButton.prototype, "nm", {
|
|
1600
1630
|
get: function () {
|
|
1601
|
-
return this.
|
|
1631
|
+
return this.le;
|
|
1602
1632
|
},
|
|
1603
1633
|
set: function (a) {
|
|
1604
|
-
var b = this.
|
|
1605
|
-
this.
|
|
1606
|
-
if (b != this.
|
|
1634
|
+
var b = this.le;
|
|
1635
|
+
this.le = a;
|
|
1636
|
+
if (b != this.le) {
|
|
1607
1637
|
this.kd("ActualFocusBackgroundColor", b, a);
|
|
1608
1638
|
}
|
|
1609
1639
|
},
|
|
1610
1640
|
enumerable: false,
|
|
1611
1641
|
configurable: true
|
|
1612
1642
|
});
|
|
1613
|
-
Object.defineProperty(XButton.prototype, "
|
|
1643
|
+
Object.defineProperty(XButton.prototype, "nn", {
|
|
1614
1644
|
get: function () {
|
|
1615
|
-
return this.
|
|
1645
|
+
return this.lf;
|
|
1616
1646
|
},
|
|
1617
1647
|
set: function (a) {
|
|
1618
|
-
var b = this.
|
|
1619
|
-
this.
|
|
1620
|
-
if (b != this.
|
|
1648
|
+
var b = this.lf;
|
|
1649
|
+
this.lf = a;
|
|
1650
|
+
if (b != this.lf) {
|
|
1621
1651
|
this.kd("ActualFocusTextColor", b, a);
|
|
1622
1652
|
}
|
|
1623
1653
|
},
|
|
1624
1654
|
enumerable: false,
|
|
1625
1655
|
configurable: true
|
|
1626
1656
|
});
|
|
1627
|
-
Object.defineProperty(XButton.prototype, "
|
|
1657
|
+
Object.defineProperty(XButton.prototype, "no", {
|
|
1628
1658
|
get: function () {
|
|
1629
|
-
return this.
|
|
1659
|
+
return this.lg;
|
|
1630
1660
|
},
|
|
1631
1661
|
set: function (a) {
|
|
1632
|
-
var b = this.
|
|
1633
|
-
this.
|
|
1634
|
-
if (b != this.
|
|
1662
|
+
var b = this.lg;
|
|
1663
|
+
this.lg = a;
|
|
1664
|
+
if (b != this.lg) {
|
|
1635
1665
|
this.kd("ActualHoverBackgroundColor", b, a);
|
|
1636
1666
|
}
|
|
1637
1667
|
},
|
|
@@ -1652,56 +1682,56 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1652
1682
|
enumerable: false,
|
|
1653
1683
|
configurable: true
|
|
1654
1684
|
});
|
|
1655
|
-
Object.defineProperty(XButton.prototype, "
|
|
1685
|
+
Object.defineProperty(XButton.prototype, "qx", {
|
|
1656
1686
|
get: function () {
|
|
1657
|
-
return this.
|
|
1687
|
+
return this.m3;
|
|
1658
1688
|
},
|
|
1659
1689
|
set: function (a) {
|
|
1660
|
-
var b = this.
|
|
1661
|
-
this.
|
|
1662
|
-
if (b != this.
|
|
1690
|
+
var b = this.m3;
|
|
1691
|
+
this.m3 = a;
|
|
1692
|
+
if (b != this.m3) {
|
|
1663
1693
|
this.kd("RaisedBackgroundColor", b, a);
|
|
1664
1694
|
}
|
|
1665
1695
|
},
|
|
1666
1696
|
enumerable: false,
|
|
1667
1697
|
configurable: true
|
|
1668
1698
|
});
|
|
1669
|
-
Object.defineProperty(XButton.prototype, "
|
|
1699
|
+
Object.defineProperty(XButton.prototype, "qz", {
|
|
1670
1700
|
get: function () {
|
|
1671
|
-
return this.
|
|
1701
|
+
return this.m5;
|
|
1672
1702
|
},
|
|
1673
1703
|
set: function (a) {
|
|
1674
|
-
var b = this.
|
|
1675
|
-
this.
|
|
1676
|
-
if (b != this.
|
|
1704
|
+
var b = this.m5;
|
|
1705
|
+
this.m5 = a;
|
|
1706
|
+
if (b != this.m5) {
|
|
1677
1707
|
this.kd("RaisedDisabledBackgroundColor", b, a);
|
|
1678
1708
|
}
|
|
1679
1709
|
},
|
|
1680
1710
|
enumerable: false,
|
|
1681
1711
|
configurable: true
|
|
1682
1712
|
});
|
|
1683
|
-
Object.defineProperty(XButton.prototype, "
|
|
1713
|
+
Object.defineProperty(XButton.prototype, "q0", {
|
|
1684
1714
|
get: function () {
|
|
1685
|
-
return this.
|
|
1715
|
+
return this.m6;
|
|
1686
1716
|
},
|
|
1687
1717
|
set: function (a) {
|
|
1688
|
-
var b = this.
|
|
1689
|
-
this.
|
|
1690
|
-
if (b != this.
|
|
1718
|
+
var b = this.m6;
|
|
1719
|
+
this.m6 = a;
|
|
1720
|
+
if (b != this.m6) {
|
|
1691
1721
|
this.kd("RaisedDisabledBorderColor", b, a);
|
|
1692
1722
|
}
|
|
1693
1723
|
},
|
|
1694
1724
|
enumerable: false,
|
|
1695
1725
|
configurable: true
|
|
1696
1726
|
});
|
|
1697
|
-
Object.defineProperty(XButton.prototype, "
|
|
1727
|
+
Object.defineProperty(XButton.prototype, "q1", {
|
|
1698
1728
|
get: function () {
|
|
1699
|
-
return this.
|
|
1729
|
+
return this.m7;
|
|
1700
1730
|
},
|
|
1701
1731
|
set: function (a) {
|
|
1702
|
-
var b = this.
|
|
1703
|
-
this.
|
|
1704
|
-
if (b != this.
|
|
1732
|
+
var b = this.m7;
|
|
1733
|
+
this.m7 = a;
|
|
1734
|
+
if (b != this.m7) {
|
|
1705
1735
|
this.kd("RaisedDisabledTextColor", b, a);
|
|
1706
1736
|
}
|
|
1707
1737
|
},
|
|
@@ -1722,28 +1752,28 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1722
1752
|
enumerable: false,
|
|
1723
1753
|
configurable: true
|
|
1724
1754
|
});
|
|
1725
|
-
Object.defineProperty(XButton.prototype, "
|
|
1755
|
+
Object.defineProperty(XButton.prototype, "q4", {
|
|
1726
1756
|
get: function () {
|
|
1727
|
-
return this.
|
|
1757
|
+
return this.na;
|
|
1728
1758
|
},
|
|
1729
1759
|
set: function (a) {
|
|
1730
|
-
var b = this.
|
|
1731
|
-
this.
|
|
1732
|
-
if (b != this.
|
|
1760
|
+
var b = this.na;
|
|
1761
|
+
this.na = a;
|
|
1762
|
+
if (b != this.na) {
|
|
1733
1763
|
this.kd("RaisedHoverBackgroundColor", b, a);
|
|
1734
1764
|
}
|
|
1735
1765
|
},
|
|
1736
1766
|
enumerable: false,
|
|
1737
1767
|
configurable: true
|
|
1738
1768
|
});
|
|
1739
|
-
Object.defineProperty(XButton.prototype, "
|
|
1769
|
+
Object.defineProperty(XButton.prototype, "qy", {
|
|
1740
1770
|
get: function () {
|
|
1741
|
-
return this.
|
|
1771
|
+
return this.m4;
|
|
1742
1772
|
},
|
|
1743
1773
|
set: function (a) {
|
|
1744
|
-
var b = this.
|
|
1745
|
-
this.
|
|
1746
|
-
if (b != this.
|
|
1774
|
+
var b = this.m4;
|
|
1775
|
+
this.m4 = a;
|
|
1776
|
+
if (b != this.m4) {
|
|
1747
1777
|
this.kd("RaisedBorderColor", b, a);
|
|
1748
1778
|
}
|
|
1749
1779
|
},
|
|
@@ -1806,13 +1836,13 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1806
1836
|
enumerable: false,
|
|
1807
1837
|
configurable: true
|
|
1808
1838
|
});
|
|
1809
|
-
Object.defineProperty(XButton.prototype, "
|
|
1839
|
+
Object.defineProperty(XButton.prototype, "k5", {
|
|
1810
1840
|
get: function () {
|
|
1811
|
-
return this.
|
|
1841
|
+
return this.kr;
|
|
1812
1842
|
},
|
|
1813
1843
|
set: function (a) {
|
|
1814
|
-
var b = this.
|
|
1815
|
-
this.
|
|
1844
|
+
var b = this.kr;
|
|
1845
|
+
this.kr = a;
|
|
1816
1846
|
{
|
|
1817
1847
|
this.kd("RaisedCornerRadius", b, a);
|
|
1818
1848
|
}
|
|
@@ -1820,70 +1850,70 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1820
1850
|
enumerable: false,
|
|
1821
1851
|
configurable: true
|
|
1822
1852
|
});
|
|
1823
|
-
Object.defineProperty(XButton.prototype, "
|
|
1853
|
+
Object.defineProperty(XButton.prototype, "q6", {
|
|
1824
1854
|
get: function () {
|
|
1825
|
-
return this.
|
|
1855
|
+
return this.nc;
|
|
1826
1856
|
},
|
|
1827
1857
|
set: function (a) {
|
|
1828
|
-
var b = this.
|
|
1829
|
-
this.
|
|
1830
|
-
if (b != this.
|
|
1858
|
+
var b = this.nc;
|
|
1859
|
+
this.nc = a;
|
|
1860
|
+
if (b != this.nc) {
|
|
1831
1861
|
this.kd("RaisedRippleColor", b, a);
|
|
1832
1862
|
}
|
|
1833
1863
|
},
|
|
1834
1864
|
enumerable: false,
|
|
1835
1865
|
configurable: true
|
|
1836
1866
|
});
|
|
1837
|
-
Object.defineProperty(XButton.prototype, "
|
|
1867
|
+
Object.defineProperty(XButton.prototype, "pw", {
|
|
1838
1868
|
get: function () {
|
|
1839
|
-
return this.
|
|
1869
|
+
return this.l1;
|
|
1840
1870
|
},
|
|
1841
1871
|
set: function (a) {
|
|
1842
|
-
var b = this.
|
|
1843
|
-
this.
|
|
1844
|
-
if (b != this.
|
|
1872
|
+
var b = this.l1;
|
|
1873
|
+
this.l1 = a;
|
|
1874
|
+
if (b != this.l1) {
|
|
1845
1875
|
this.kd("FlatBackgroundColor", b, a);
|
|
1846
1876
|
}
|
|
1847
1877
|
},
|
|
1848
1878
|
enumerable: false,
|
|
1849
1879
|
configurable: true
|
|
1850
1880
|
});
|
|
1851
|
-
Object.defineProperty(XButton.prototype, "
|
|
1881
|
+
Object.defineProperty(XButton.prototype, "py", {
|
|
1852
1882
|
get: function () {
|
|
1853
|
-
return this.
|
|
1883
|
+
return this.l3;
|
|
1854
1884
|
},
|
|
1855
1885
|
set: function (a) {
|
|
1856
|
-
var b = this.
|
|
1857
|
-
this.
|
|
1858
|
-
if (b != this.
|
|
1886
|
+
var b = this.l3;
|
|
1887
|
+
this.l3 = a;
|
|
1888
|
+
if (b != this.l3) {
|
|
1859
1889
|
this.kd("FlatDisabledBackgroundColor", b, a);
|
|
1860
1890
|
}
|
|
1861
1891
|
},
|
|
1862
1892
|
enumerable: false,
|
|
1863
1893
|
configurable: true
|
|
1864
1894
|
});
|
|
1865
|
-
Object.defineProperty(XButton.prototype, "
|
|
1895
|
+
Object.defineProperty(XButton.prototype, "pz", {
|
|
1866
1896
|
get: function () {
|
|
1867
|
-
return this.
|
|
1897
|
+
return this.l4;
|
|
1868
1898
|
},
|
|
1869
1899
|
set: function (a) {
|
|
1870
|
-
var b = this.
|
|
1871
|
-
this.
|
|
1872
|
-
if (b != this.
|
|
1900
|
+
var b = this.l4;
|
|
1901
|
+
this.l4 = a;
|
|
1902
|
+
if (b != this.l4) {
|
|
1873
1903
|
this.kd("FlatDisabledBorderColor", b, a);
|
|
1874
1904
|
}
|
|
1875
1905
|
},
|
|
1876
1906
|
enumerable: false,
|
|
1877
1907
|
configurable: true
|
|
1878
1908
|
});
|
|
1879
|
-
Object.defineProperty(XButton.prototype, "
|
|
1909
|
+
Object.defineProperty(XButton.prototype, "p0", {
|
|
1880
1910
|
get: function () {
|
|
1881
|
-
return this.
|
|
1911
|
+
return this.l5;
|
|
1882
1912
|
},
|
|
1883
1913
|
set: function (a) {
|
|
1884
|
-
var b = this.
|
|
1885
|
-
this.
|
|
1886
|
-
if (b != this.
|
|
1914
|
+
var b = this.l5;
|
|
1915
|
+
this.l5 = a;
|
|
1916
|
+
if (b != this.l5) {
|
|
1887
1917
|
this.kd("FlatDisabledTextColor", b, a);
|
|
1888
1918
|
}
|
|
1889
1919
|
},
|
|
@@ -1904,28 +1934,28 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1904
1934
|
enumerable: false,
|
|
1905
1935
|
configurable: true
|
|
1906
1936
|
});
|
|
1907
|
-
Object.defineProperty(XButton.prototype, "
|
|
1937
|
+
Object.defineProperty(XButton.prototype, "p3", {
|
|
1908
1938
|
get: function () {
|
|
1909
|
-
return this.
|
|
1939
|
+
return this.l8;
|
|
1910
1940
|
},
|
|
1911
1941
|
set: function (a) {
|
|
1912
|
-
var b = this.
|
|
1913
|
-
this.
|
|
1914
|
-
if (b != this.
|
|
1942
|
+
var b = this.l8;
|
|
1943
|
+
this.l8 = a;
|
|
1944
|
+
if (b != this.l8) {
|
|
1915
1945
|
this.kd("FlatHoverBackgroundColor", b, a);
|
|
1916
1946
|
}
|
|
1917
1947
|
},
|
|
1918
1948
|
enumerable: false,
|
|
1919
1949
|
configurable: true
|
|
1920
1950
|
});
|
|
1921
|
-
Object.defineProperty(XButton.prototype, "
|
|
1951
|
+
Object.defineProperty(XButton.prototype, "px", {
|
|
1922
1952
|
get: function () {
|
|
1923
|
-
return this.
|
|
1953
|
+
return this.l2;
|
|
1924
1954
|
},
|
|
1925
1955
|
set: function (a) {
|
|
1926
|
-
var b = this.
|
|
1927
|
-
this.
|
|
1928
|
-
if (b != this.
|
|
1956
|
+
var b = this.l2;
|
|
1957
|
+
this.l2 = a;
|
|
1958
|
+
if (b != this.l2) {
|
|
1929
1959
|
this.kd("FlatBorderColor", b, a);
|
|
1930
1960
|
}
|
|
1931
1961
|
},
|
|
@@ -1974,70 +2004,70 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1974
2004
|
enumerable: false,
|
|
1975
2005
|
configurable: true
|
|
1976
2006
|
});
|
|
1977
|
-
Object.defineProperty(XButton.prototype, "
|
|
2007
|
+
Object.defineProperty(XButton.prototype, "p5", {
|
|
1978
2008
|
get: function () {
|
|
1979
|
-
return this.
|
|
2009
|
+
return this.ma;
|
|
1980
2010
|
},
|
|
1981
2011
|
set: function (a) {
|
|
1982
|
-
var b = this.
|
|
1983
|
-
this.
|
|
1984
|
-
if (b != this.
|
|
2012
|
+
var b = this.ma;
|
|
2013
|
+
this.ma = a;
|
|
2014
|
+
if (b != this.ma) {
|
|
1985
2015
|
this.kd("FlatRippleColor", b, a);
|
|
1986
2016
|
}
|
|
1987
2017
|
},
|
|
1988
2018
|
enumerable: false,
|
|
1989
2019
|
configurable: true
|
|
1990
2020
|
});
|
|
1991
|
-
Object.defineProperty(XButton.prototype, "
|
|
2021
|
+
Object.defineProperty(XButton.prototype, "p6", {
|
|
1992
2022
|
get: function () {
|
|
1993
|
-
return this.
|
|
2023
|
+
return this.mb;
|
|
1994
2024
|
},
|
|
1995
2025
|
set: function (a) {
|
|
1996
|
-
var b = this.
|
|
1997
|
-
this.
|
|
1998
|
-
if (b != this.
|
|
2026
|
+
var b = this.mb;
|
|
2027
|
+
this.mb = a;
|
|
2028
|
+
if (b != this.mb) {
|
|
1999
2029
|
this.kd("FlatTextColor", b, a);
|
|
2000
2030
|
}
|
|
2001
2031
|
},
|
|
2002
2032
|
enumerable: false,
|
|
2003
2033
|
configurable: true
|
|
2004
2034
|
});
|
|
2005
|
-
Object.defineProperty(XButton.prototype, "
|
|
2035
|
+
Object.defineProperty(XButton.prototype, "p4", {
|
|
2006
2036
|
get: function () {
|
|
2007
|
-
return this.
|
|
2037
|
+
return this.l9;
|
|
2008
2038
|
},
|
|
2009
2039
|
set: function (a) {
|
|
2010
|
-
var b = this.
|
|
2011
|
-
this.
|
|
2012
|
-
if (b != this.
|
|
2040
|
+
var b = this.l9;
|
|
2041
|
+
this.l9 = a;
|
|
2042
|
+
if (b != this.l9) {
|
|
2013
2043
|
this.kd("FlatHoverTextColor", b, a);
|
|
2014
2044
|
}
|
|
2015
2045
|
},
|
|
2016
2046
|
enumerable: false,
|
|
2017
2047
|
configurable: true
|
|
2018
2048
|
});
|
|
2019
|
-
Object.defineProperty(XButton.prototype, "
|
|
2049
|
+
Object.defineProperty(XButton.prototype, "p1", {
|
|
2020
2050
|
get: function () {
|
|
2021
|
-
return this.
|
|
2051
|
+
return this.l6;
|
|
2022
2052
|
},
|
|
2023
2053
|
set: function (a) {
|
|
2024
|
-
var b = this.
|
|
2025
|
-
this.
|
|
2026
|
-
if (b != this.
|
|
2054
|
+
var b = this.l6;
|
|
2055
|
+
this.l6 = a;
|
|
2056
|
+
if (b != this.l6) {
|
|
2027
2057
|
this.kd("FlatFocusBackgroundColor", b, a);
|
|
2028
2058
|
}
|
|
2029
2059
|
},
|
|
2030
2060
|
enumerable: false,
|
|
2031
2061
|
configurable: true
|
|
2032
2062
|
});
|
|
2033
|
-
Object.defineProperty(XButton.prototype, "
|
|
2063
|
+
Object.defineProperty(XButton.prototype, "p2", {
|
|
2034
2064
|
get: function () {
|
|
2035
|
-
return this.
|
|
2065
|
+
return this.l7;
|
|
2036
2066
|
},
|
|
2037
2067
|
set: function (a) {
|
|
2038
|
-
var b = this.
|
|
2039
|
-
this.
|
|
2040
|
-
if (b != this.
|
|
2068
|
+
var b = this.l7;
|
|
2069
|
+
this.l7 = a;
|
|
2070
|
+
if (b != this.l7) {
|
|
2041
2071
|
this.kd("FlatFocusTextColor", b, a);
|
|
2042
2072
|
}
|
|
2043
2073
|
},
|
|
@@ -2058,13 +2088,13 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2058
2088
|
enumerable: false,
|
|
2059
2089
|
configurable: true
|
|
2060
2090
|
});
|
|
2061
|
-
Object.defineProperty(XButton.prototype, "
|
|
2091
|
+
Object.defineProperty(XButton.prototype, "k1", {
|
|
2062
2092
|
get: function () {
|
|
2063
|
-
return this.
|
|
2093
|
+
return this.ko;
|
|
2064
2094
|
},
|
|
2065
2095
|
set: function (a) {
|
|
2066
|
-
var b = this.
|
|
2067
|
-
this.
|
|
2096
|
+
var b = this.ko;
|
|
2097
|
+
this.ko = a;
|
|
2068
2098
|
{
|
|
2069
2099
|
this.kd("FlatCornerRadius", b, a);
|
|
2070
2100
|
}
|
|
@@ -2072,56 +2102,56 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2072
2102
|
enumerable: false,
|
|
2073
2103
|
configurable: true
|
|
2074
2104
|
});
|
|
2075
|
-
Object.defineProperty(XButton.prototype, "
|
|
2105
|
+
Object.defineProperty(XButton.prototype, "nu", {
|
|
2076
2106
|
get: function () {
|
|
2077
|
-
return this.
|
|
2107
|
+
return this.lm;
|
|
2078
2108
|
},
|
|
2079
2109
|
set: function (a) {
|
|
2080
|
-
var b = this.
|
|
2081
|
-
this.
|
|
2082
|
-
if (b != this.
|
|
2110
|
+
var b = this.lm;
|
|
2111
|
+
this.lm = a;
|
|
2112
|
+
if (b != this.lm) {
|
|
2083
2113
|
this.kd("BackgroundColor", b, a);
|
|
2084
2114
|
}
|
|
2085
2115
|
},
|
|
2086
2116
|
enumerable: false,
|
|
2087
2117
|
configurable: true
|
|
2088
2118
|
});
|
|
2089
|
-
Object.defineProperty(XButton.prototype, "
|
|
2119
|
+
Object.defineProperty(XButton.prototype, "pi", {
|
|
2090
2120
|
get: function () {
|
|
2091
|
-
return this.
|
|
2121
|
+
return this.lo;
|
|
2092
2122
|
},
|
|
2093
2123
|
set: function (a) {
|
|
2094
|
-
var b = this.
|
|
2095
|
-
this.
|
|
2096
|
-
if (b != this.
|
|
2124
|
+
var b = this.lo;
|
|
2125
|
+
this.lo = a;
|
|
2126
|
+
if (b != this.lo) {
|
|
2097
2127
|
this.kd("DisabledBackgroundColor", b, a);
|
|
2098
2128
|
}
|
|
2099
2129
|
},
|
|
2100
2130
|
enumerable: false,
|
|
2101
2131
|
configurable: true
|
|
2102
2132
|
});
|
|
2103
|
-
Object.defineProperty(XButton.prototype, "
|
|
2133
|
+
Object.defineProperty(XButton.prototype, "pj", {
|
|
2104
2134
|
get: function () {
|
|
2105
|
-
return this.
|
|
2135
|
+
return this.lp;
|
|
2106
2136
|
},
|
|
2107
2137
|
set: function (a) {
|
|
2108
|
-
var b = this.
|
|
2109
|
-
this.
|
|
2110
|
-
if (b != this.
|
|
2138
|
+
var b = this.lp;
|
|
2139
|
+
this.lp = a;
|
|
2140
|
+
if (b != this.lp) {
|
|
2111
2141
|
this.kd("DisabledBorderColor", b, a);
|
|
2112
2142
|
}
|
|
2113
2143
|
},
|
|
2114
2144
|
enumerable: false,
|
|
2115
2145
|
configurable: true
|
|
2116
2146
|
});
|
|
2117
|
-
Object.defineProperty(XButton.prototype, "
|
|
2147
|
+
Object.defineProperty(XButton.prototype, "pk", {
|
|
2118
2148
|
get: function () {
|
|
2119
|
-
return this.
|
|
2149
|
+
return this.lq;
|
|
2120
2150
|
},
|
|
2121
2151
|
set: function (a) {
|
|
2122
|
-
var b = this.
|
|
2123
|
-
this.
|
|
2124
|
-
if (b != this.
|
|
2152
|
+
var b = this.lq;
|
|
2153
|
+
this.lq = a;
|
|
2154
|
+
if (b != this.lq) {
|
|
2125
2155
|
this.kd("DisabledTextColor", b, a);
|
|
2126
2156
|
}
|
|
2127
2157
|
},
|
|
@@ -2156,28 +2186,28 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2156
2186
|
enumerable: false,
|
|
2157
2187
|
configurable: true
|
|
2158
2188
|
});
|
|
2159
|
-
Object.defineProperty(XButton.prototype, "
|
|
2189
|
+
Object.defineProperty(XButton.prototype, "p9", {
|
|
2160
2190
|
get: function () {
|
|
2161
|
-
return this.
|
|
2191
|
+
return this.me;
|
|
2162
2192
|
},
|
|
2163
2193
|
set: function (a) {
|
|
2164
|
-
var b = this.
|
|
2165
|
-
this.
|
|
2166
|
-
if (b != this.
|
|
2194
|
+
var b = this.me;
|
|
2195
|
+
this.me = a;
|
|
2196
|
+
if (b != this.me) {
|
|
2167
2197
|
this.kd("HoverBackgroundColor", b, a);
|
|
2168
2198
|
}
|
|
2169
2199
|
},
|
|
2170
2200
|
enumerable: false,
|
|
2171
2201
|
configurable: true
|
|
2172
2202
|
});
|
|
2173
|
-
Object.defineProperty(XButton.prototype, "
|
|
2203
|
+
Object.defineProperty(XButton.prototype, "nv", {
|
|
2174
2204
|
get: function () {
|
|
2175
|
-
return this.
|
|
2205
|
+
return this.ln;
|
|
2176
2206
|
},
|
|
2177
2207
|
set: function (a) {
|
|
2178
|
-
var b = this.
|
|
2179
|
-
this.
|
|
2180
|
-
if (b != this.
|
|
2208
|
+
var b = this.ln;
|
|
2209
|
+
this.ln = a;
|
|
2210
|
+
if (b != this.ln) {
|
|
2181
2211
|
this.kd("BorderColor", b, a);
|
|
2182
2212
|
}
|
|
2183
2213
|
},
|
|
@@ -2240,126 +2270,126 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2240
2270
|
enumerable: false,
|
|
2241
2271
|
configurable: true
|
|
2242
2272
|
});
|
|
2243
|
-
Object.defineProperty(XButton.prototype, "
|
|
2273
|
+
Object.defineProperty(XButton.prototype, "q9", {
|
|
2244
2274
|
get: function () {
|
|
2245
|
-
return this.
|
|
2275
|
+
return this.nf;
|
|
2246
2276
|
},
|
|
2247
2277
|
set: function (a) {
|
|
2248
|
-
var b = this.
|
|
2249
|
-
this.
|
|
2250
|
-
if (b != this.
|
|
2278
|
+
var b = this.nf;
|
|
2279
|
+
this.nf = a;
|
|
2280
|
+
if (b != this.nf) {
|
|
2251
2281
|
this.kd("TextColor", b, a);
|
|
2252
2282
|
}
|
|
2253
2283
|
},
|
|
2254
2284
|
enumerable: false,
|
|
2255
2285
|
configurable: true
|
|
2256
2286
|
});
|
|
2257
|
-
Object.defineProperty(XButton.prototype, "
|
|
2287
|
+
Object.defineProperty(XButton.prototype, "qa", {
|
|
2258
2288
|
get: function () {
|
|
2259
|
-
return this.
|
|
2289
|
+
return this.mg;
|
|
2260
2290
|
},
|
|
2261
2291
|
set: function (a) {
|
|
2262
|
-
var b = this.
|
|
2263
|
-
this.
|
|
2264
|
-
if (b != this.
|
|
2292
|
+
var b = this.mg;
|
|
2293
|
+
this.mg = a;
|
|
2294
|
+
if (b != this.mg) {
|
|
2265
2295
|
this.kd("HoverTextColor", b, a);
|
|
2266
2296
|
}
|
|
2267
2297
|
},
|
|
2268
2298
|
enumerable: false,
|
|
2269
2299
|
configurable: true
|
|
2270
2300
|
});
|
|
2271
|
-
Object.defineProperty(XButton.prototype, "
|
|
2301
|
+
Object.defineProperty(XButton.prototype, "q8", {
|
|
2272
2302
|
get: function () {
|
|
2273
|
-
return this.
|
|
2303
|
+
return this.ne;
|
|
2274
2304
|
},
|
|
2275
2305
|
set: function (a) {
|
|
2276
|
-
var b = this.
|
|
2277
|
-
this.
|
|
2278
|
-
if (b != this.
|
|
2306
|
+
var b = this.ne;
|
|
2307
|
+
this.ne = a;
|
|
2308
|
+
if (b != this.ne) {
|
|
2279
2309
|
this.kd("RippleColor", b, a);
|
|
2280
2310
|
}
|
|
2281
2311
|
},
|
|
2282
2312
|
enumerable: false,
|
|
2283
2313
|
configurable: true
|
|
2284
2314
|
});
|
|
2285
|
-
Object.defineProperty(XButton.prototype, "
|
|
2315
|
+
Object.defineProperty(XButton.prototype, "q7", {
|
|
2286
2316
|
get: function () {
|
|
2287
|
-
return this.
|
|
2317
|
+
return this.nd;
|
|
2288
2318
|
},
|
|
2289
2319
|
set: function (a) {
|
|
2290
|
-
var b = this.
|
|
2291
|
-
this.
|
|
2292
|
-
if (b != this.
|
|
2320
|
+
var b = this.nd;
|
|
2321
|
+
this.nd = a;
|
|
2322
|
+
if (b != this.nd) {
|
|
2293
2323
|
this.kd("RaisedTextColor", b, a);
|
|
2294
2324
|
}
|
|
2295
2325
|
},
|
|
2296
2326
|
enumerable: false,
|
|
2297
2327
|
configurable: true
|
|
2298
2328
|
});
|
|
2299
|
-
Object.defineProperty(XButton.prototype, "
|
|
2329
|
+
Object.defineProperty(XButton.prototype, "q5", {
|
|
2300
2330
|
get: function () {
|
|
2301
|
-
return this.
|
|
2331
|
+
return this.nb;
|
|
2302
2332
|
},
|
|
2303
2333
|
set: function (a) {
|
|
2304
|
-
var b = this.
|
|
2305
|
-
this.
|
|
2306
|
-
if (b != this.
|
|
2334
|
+
var b = this.nb;
|
|
2335
|
+
this.nb = a;
|
|
2336
|
+
if (b != this.nb) {
|
|
2307
2337
|
this.kd("RaisedHoverTextColor", b, a);
|
|
2308
2338
|
}
|
|
2309
2339
|
},
|
|
2310
2340
|
enumerable: false,
|
|
2311
2341
|
configurable: true
|
|
2312
2342
|
});
|
|
2313
|
-
Object.defineProperty(XButton.prototype, "
|
|
2343
|
+
Object.defineProperty(XButton.prototype, "q2", {
|
|
2314
2344
|
get: function () {
|
|
2315
|
-
return this.
|
|
2345
|
+
return this.m8;
|
|
2316
2346
|
},
|
|
2317
2347
|
set: function (a) {
|
|
2318
|
-
var b = this.
|
|
2319
|
-
this.
|
|
2320
|
-
if (b != this.
|
|
2348
|
+
var b = this.m8;
|
|
2349
|
+
this.m8 = a;
|
|
2350
|
+
if (b != this.m8) {
|
|
2321
2351
|
this.kd("RaisedFocusBackgroundColor", b, a);
|
|
2322
2352
|
}
|
|
2323
2353
|
},
|
|
2324
2354
|
enumerable: false,
|
|
2325
2355
|
configurable: true
|
|
2326
2356
|
});
|
|
2327
|
-
Object.defineProperty(XButton.prototype, "
|
|
2357
|
+
Object.defineProperty(XButton.prototype, "q3", {
|
|
2328
2358
|
get: function () {
|
|
2329
|
-
return this.
|
|
2359
|
+
return this.m9;
|
|
2330
2360
|
},
|
|
2331
2361
|
set: function (a) {
|
|
2332
|
-
var b = this.
|
|
2333
|
-
this.
|
|
2334
|
-
if (b != this.
|
|
2362
|
+
var b = this.m9;
|
|
2363
|
+
this.m9 = a;
|
|
2364
|
+
if (b != this.m9) {
|
|
2335
2365
|
this.kd("RaisedFocusTextColor", b, a);
|
|
2336
2366
|
}
|
|
2337
2367
|
},
|
|
2338
2368
|
enumerable: false,
|
|
2339
2369
|
configurable: true
|
|
2340
2370
|
});
|
|
2341
|
-
Object.defineProperty(XButton.prototype, "
|
|
2371
|
+
Object.defineProperty(XButton.prototype, "p7", {
|
|
2342
2372
|
get: function () {
|
|
2343
|
-
return this.
|
|
2373
|
+
return this.mc;
|
|
2344
2374
|
},
|
|
2345
2375
|
set: function (a) {
|
|
2346
|
-
var b = this.
|
|
2347
|
-
this.
|
|
2348
|
-
if (b != this.
|
|
2376
|
+
var b = this.mc;
|
|
2377
|
+
this.mc = a;
|
|
2378
|
+
if (b != this.mc) {
|
|
2349
2379
|
this.kd("FocusBackgroundColor", b, a);
|
|
2350
2380
|
}
|
|
2351
2381
|
},
|
|
2352
2382
|
enumerable: false,
|
|
2353
2383
|
configurable: true
|
|
2354
2384
|
});
|
|
2355
|
-
Object.defineProperty(XButton.prototype, "
|
|
2385
|
+
Object.defineProperty(XButton.prototype, "p8", {
|
|
2356
2386
|
get: function () {
|
|
2357
|
-
return this.
|
|
2387
|
+
return this.md;
|
|
2358
2388
|
},
|
|
2359
2389
|
set: function (a) {
|
|
2360
|
-
var b = this.
|
|
2361
|
-
this.
|
|
2362
|
-
if (b != this.
|
|
2390
|
+
var b = this.md;
|
|
2391
|
+
this.md = a;
|
|
2392
|
+
if (b != this.md) {
|
|
2363
2393
|
this.kd("FocusTextColor", b, a);
|
|
2364
2394
|
}
|
|
2365
2395
|
},
|
|
@@ -2380,13 +2410,13 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2380
2410
|
enumerable: false,
|
|
2381
2411
|
configurable: true
|
|
2382
2412
|
});
|
|
2383
|
-
Object.defineProperty(XButton.prototype, "
|
|
2413
|
+
Object.defineProperty(XButton.prototype, "ku", {
|
|
2384
2414
|
get: function () {
|
|
2385
|
-
return this.
|
|
2415
|
+
return this.km;
|
|
2386
2416
|
},
|
|
2387
2417
|
set: function (a) {
|
|
2388
|
-
var b = this.
|
|
2389
|
-
this.
|
|
2418
|
+
var b = this.km;
|
|
2419
|
+
this.km = a;
|
|
2390
2420
|
{
|
|
2391
2421
|
this.kd("CornerRadius", b, a);
|
|
2392
2422
|
}
|
|
@@ -2394,56 +2424,56 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2394
2424
|
enumerable: false,
|
|
2395
2425
|
configurable: true
|
|
2396
2426
|
});
|
|
2397
|
-
Object.defineProperty(XButton.prototype, "
|
|
2427
|
+
Object.defineProperty(XButton.prototype, "qm", {
|
|
2398
2428
|
get: function () {
|
|
2399
|
-
return this.
|
|
2429
|
+
return this.ms;
|
|
2400
2430
|
},
|
|
2401
2431
|
set: function (a) {
|
|
2402
|
-
var b = this.
|
|
2403
|
-
this.
|
|
2404
|
-
if (b != this.
|
|
2432
|
+
var b = this.ms;
|
|
2433
|
+
this.ms = a;
|
|
2434
|
+
if (b != this.ms) {
|
|
2405
2435
|
this.kd("OutlinedBackgroundColor", b, a);
|
|
2406
2436
|
}
|
|
2407
2437
|
},
|
|
2408
2438
|
enumerable: false,
|
|
2409
2439
|
configurable: true
|
|
2410
2440
|
});
|
|
2411
|
-
Object.defineProperty(XButton.prototype, "
|
|
2441
|
+
Object.defineProperty(XButton.prototype, "qo", {
|
|
2412
2442
|
get: function () {
|
|
2413
|
-
return this.
|
|
2443
|
+
return this.mu;
|
|
2414
2444
|
},
|
|
2415
2445
|
set: function (a) {
|
|
2416
|
-
var b = this.
|
|
2417
|
-
this.
|
|
2418
|
-
if (b != this.
|
|
2446
|
+
var b = this.mu;
|
|
2447
|
+
this.mu = a;
|
|
2448
|
+
if (b != this.mu) {
|
|
2419
2449
|
this.kd("OutlinedDisabledBackgroundColor", b, a);
|
|
2420
2450
|
}
|
|
2421
2451
|
},
|
|
2422
2452
|
enumerable: false,
|
|
2423
2453
|
configurable: true
|
|
2424
2454
|
});
|
|
2425
|
-
Object.defineProperty(XButton.prototype, "
|
|
2455
|
+
Object.defineProperty(XButton.prototype, "qp", {
|
|
2426
2456
|
get: function () {
|
|
2427
|
-
return this.
|
|
2457
|
+
return this.mv;
|
|
2428
2458
|
},
|
|
2429
2459
|
set: function (a) {
|
|
2430
|
-
var b = this.
|
|
2431
|
-
this.
|
|
2432
|
-
if (b != this.
|
|
2460
|
+
var b = this.mv;
|
|
2461
|
+
this.mv = a;
|
|
2462
|
+
if (b != this.mv) {
|
|
2433
2463
|
this.kd("OutlinedDisabledBorderColor", b, a);
|
|
2434
2464
|
}
|
|
2435
2465
|
},
|
|
2436
2466
|
enumerable: false,
|
|
2437
2467
|
configurable: true
|
|
2438
2468
|
});
|
|
2439
|
-
Object.defineProperty(XButton.prototype, "
|
|
2469
|
+
Object.defineProperty(XButton.prototype, "qq", {
|
|
2440
2470
|
get: function () {
|
|
2441
|
-
return this.
|
|
2471
|
+
return this.mw;
|
|
2442
2472
|
},
|
|
2443
2473
|
set: function (a) {
|
|
2444
|
-
var b = this.
|
|
2445
|
-
this.
|
|
2446
|
-
if (b != this.
|
|
2474
|
+
var b = this.mw;
|
|
2475
|
+
this.mw = a;
|
|
2476
|
+
if (b != this.mw) {
|
|
2447
2477
|
this.kd("OutlinedDisabledTextColor", b, a);
|
|
2448
2478
|
}
|
|
2449
2479
|
},
|
|
@@ -2464,28 +2494,28 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2464
2494
|
enumerable: false,
|
|
2465
2495
|
configurable: true
|
|
2466
2496
|
});
|
|
2467
|
-
Object.defineProperty(XButton.prototype, "
|
|
2497
|
+
Object.defineProperty(XButton.prototype, "qt", {
|
|
2468
2498
|
get: function () {
|
|
2469
|
-
return this.
|
|
2499
|
+
return this.mz;
|
|
2470
2500
|
},
|
|
2471
2501
|
set: function (a) {
|
|
2472
|
-
var b = this.
|
|
2473
|
-
this.
|
|
2474
|
-
if (b != this.
|
|
2502
|
+
var b = this.mz;
|
|
2503
|
+
this.mz = a;
|
|
2504
|
+
if (b != this.mz) {
|
|
2475
2505
|
this.kd("OutlinedHoverBackgroundColor", b, a);
|
|
2476
2506
|
}
|
|
2477
2507
|
},
|
|
2478
2508
|
enumerable: false,
|
|
2479
2509
|
configurable: true
|
|
2480
2510
|
});
|
|
2481
|
-
Object.defineProperty(XButton.prototype, "
|
|
2511
|
+
Object.defineProperty(XButton.prototype, "qn", {
|
|
2482
2512
|
get: function () {
|
|
2483
|
-
return this.
|
|
2513
|
+
return this.mt;
|
|
2484
2514
|
},
|
|
2485
2515
|
set: function (a) {
|
|
2486
|
-
var b = this.
|
|
2487
|
-
this.
|
|
2488
|
-
if (b != this.
|
|
2516
|
+
var b = this.mt;
|
|
2517
|
+
this.mt = a;
|
|
2518
|
+
if (b != this.mt) {
|
|
2489
2519
|
this.kd("OutlinedBorderColor", b, a);
|
|
2490
2520
|
}
|
|
2491
2521
|
},
|
|
@@ -2548,13 +2578,13 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2548
2578
|
enumerable: false,
|
|
2549
2579
|
configurable: true
|
|
2550
2580
|
});
|
|
2551
|
-
Object.defineProperty(XButton.prototype, "
|
|
2581
|
+
Object.defineProperty(XButton.prototype, "k4", {
|
|
2552
2582
|
get: function () {
|
|
2553
|
-
return this.
|
|
2583
|
+
return this.kq;
|
|
2554
2584
|
},
|
|
2555
2585
|
set: function (a) {
|
|
2556
|
-
var b = this.
|
|
2557
|
-
this.
|
|
2586
|
+
var b = this.kq;
|
|
2587
|
+
this.kq = a;
|
|
2558
2588
|
{
|
|
2559
2589
|
this.kd("OutlinedCornerRadius", b, a);
|
|
2560
2590
|
}
|
|
@@ -2562,126 +2592,126 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2562
2592
|
enumerable: false,
|
|
2563
2593
|
configurable: true
|
|
2564
2594
|
});
|
|
2565
|
-
Object.defineProperty(XButton.prototype, "
|
|
2595
|
+
Object.defineProperty(XButton.prototype, "qv", {
|
|
2566
2596
|
get: function () {
|
|
2567
|
-
return this.
|
|
2597
|
+
return this.m1;
|
|
2568
2598
|
},
|
|
2569
2599
|
set: function (a) {
|
|
2570
|
-
var b = this.
|
|
2571
|
-
this.
|
|
2572
|
-
if (b != this.
|
|
2600
|
+
var b = this.m1;
|
|
2601
|
+
this.m1 = a;
|
|
2602
|
+
if (b != this.m1) {
|
|
2573
2603
|
this.kd("OutlinedRippleColor", b, a);
|
|
2574
2604
|
}
|
|
2575
2605
|
},
|
|
2576
2606
|
enumerable: false,
|
|
2577
2607
|
configurable: true
|
|
2578
2608
|
});
|
|
2579
|
-
Object.defineProperty(XButton.prototype, "
|
|
2609
|
+
Object.defineProperty(XButton.prototype, "qw", {
|
|
2580
2610
|
get: function () {
|
|
2581
|
-
return this.
|
|
2611
|
+
return this.m2;
|
|
2582
2612
|
},
|
|
2583
2613
|
set: function (a) {
|
|
2584
|
-
var b = this.
|
|
2585
|
-
this.
|
|
2586
|
-
if (b != this.
|
|
2614
|
+
var b = this.m2;
|
|
2615
|
+
this.m2 = a;
|
|
2616
|
+
if (b != this.m2) {
|
|
2587
2617
|
this.kd("OutlinedTextColor", b, a);
|
|
2588
2618
|
}
|
|
2589
2619
|
},
|
|
2590
2620
|
enumerable: false,
|
|
2591
2621
|
configurable: true
|
|
2592
2622
|
});
|
|
2593
|
-
Object.defineProperty(XButton.prototype, "
|
|
2623
|
+
Object.defineProperty(XButton.prototype, "qu", {
|
|
2594
2624
|
get: function () {
|
|
2595
|
-
return this.
|
|
2625
|
+
return this.m0;
|
|
2596
2626
|
},
|
|
2597
2627
|
set: function (a) {
|
|
2598
|
-
var b = this.
|
|
2599
|
-
this.
|
|
2600
|
-
if (b != this.
|
|
2628
|
+
var b = this.m0;
|
|
2629
|
+
this.m0 = a;
|
|
2630
|
+
if (b != this.m0) {
|
|
2601
2631
|
this.kd("OutlinedHoverTextColor", b, a);
|
|
2602
2632
|
}
|
|
2603
2633
|
},
|
|
2604
2634
|
enumerable: false,
|
|
2605
2635
|
configurable: true
|
|
2606
2636
|
});
|
|
2607
|
-
Object.defineProperty(XButton.prototype, "
|
|
2637
|
+
Object.defineProperty(XButton.prototype, "qr", {
|
|
2608
2638
|
get: function () {
|
|
2609
|
-
return this.
|
|
2610
|
-
},
|
|
2611
|
-
set: function (a) {
|
|
2612
|
-
var b = this.
|
|
2613
|
-
this.
|
|
2614
|
-
if (b != this.
|
|
2639
|
+
return this.mx;
|
|
2640
|
+
},
|
|
2641
|
+
set: function (a) {
|
|
2642
|
+
var b = this.mx;
|
|
2643
|
+
this.mx = a;
|
|
2644
|
+
if (b != this.mx) {
|
|
2615
2645
|
this.kd("OutlinedFocusBackgroundColor", b, a);
|
|
2616
2646
|
}
|
|
2617
2647
|
},
|
|
2618
2648
|
enumerable: false,
|
|
2619
2649
|
configurable: true
|
|
2620
2650
|
});
|
|
2621
|
-
Object.defineProperty(XButton.prototype, "
|
|
2651
|
+
Object.defineProperty(XButton.prototype, "qs", {
|
|
2622
2652
|
get: function () {
|
|
2623
|
-
return this.
|
|
2653
|
+
return this.my;
|
|
2624
2654
|
},
|
|
2625
2655
|
set: function (a) {
|
|
2626
|
-
var b = this.
|
|
2627
|
-
this.
|
|
2628
|
-
if (b != this.
|
|
2656
|
+
var b = this.my;
|
|
2657
|
+
this.my = a;
|
|
2658
|
+
if (b != this.my) {
|
|
2629
2659
|
this.kd("OutlinedFocusTextColor", b, a);
|
|
2630
2660
|
}
|
|
2631
2661
|
},
|
|
2632
2662
|
enumerable: false,
|
|
2633
2663
|
configurable: true
|
|
2634
2664
|
});
|
|
2635
|
-
Object.defineProperty(XButton.prototype, "
|
|
2665
|
+
Object.defineProperty(XButton.prototype, "pl", {
|
|
2636
2666
|
get: function () {
|
|
2637
|
-
return this.
|
|
2667
|
+
return this.lr;
|
|
2638
2668
|
},
|
|
2639
2669
|
set: function (a) {
|
|
2640
|
-
var b = this.
|
|
2641
|
-
this.
|
|
2642
|
-
if (b != this.
|
|
2670
|
+
var b = this.lr;
|
|
2671
|
+
this.lr = a;
|
|
2672
|
+
if (b != this.lr) {
|
|
2643
2673
|
this.kd("FabBackgroundColor", b, a);
|
|
2644
2674
|
}
|
|
2645
2675
|
},
|
|
2646
2676
|
enumerable: false,
|
|
2647
2677
|
configurable: true
|
|
2648
2678
|
});
|
|
2649
|
-
Object.defineProperty(XButton.prototype, "
|
|
2679
|
+
Object.defineProperty(XButton.prototype, "pn", {
|
|
2650
2680
|
get: function () {
|
|
2651
|
-
return this.
|
|
2681
|
+
return this.lt;
|
|
2652
2682
|
},
|
|
2653
2683
|
set: function (a) {
|
|
2654
|
-
var b = this.
|
|
2655
|
-
this.
|
|
2656
|
-
if (b != this.
|
|
2684
|
+
var b = this.lt;
|
|
2685
|
+
this.lt = a;
|
|
2686
|
+
if (b != this.lt) {
|
|
2657
2687
|
this.kd("FabDisabledBackgroundColor", b, a);
|
|
2658
2688
|
}
|
|
2659
2689
|
},
|
|
2660
2690
|
enumerable: false,
|
|
2661
2691
|
configurable: true
|
|
2662
2692
|
});
|
|
2663
|
-
Object.defineProperty(XButton.prototype, "
|
|
2693
|
+
Object.defineProperty(XButton.prototype, "po", {
|
|
2664
2694
|
get: function () {
|
|
2665
|
-
return this.
|
|
2695
|
+
return this.lu;
|
|
2666
2696
|
},
|
|
2667
2697
|
set: function (a) {
|
|
2668
|
-
var b = this.
|
|
2669
|
-
this.
|
|
2670
|
-
if (b != this.
|
|
2698
|
+
var b = this.lu;
|
|
2699
|
+
this.lu = a;
|
|
2700
|
+
if (b != this.lu) {
|
|
2671
2701
|
this.kd("FabDisabledBorderColor", b, a);
|
|
2672
2702
|
}
|
|
2673
2703
|
},
|
|
2674
2704
|
enumerable: false,
|
|
2675
2705
|
configurable: true
|
|
2676
2706
|
});
|
|
2677
|
-
Object.defineProperty(XButton.prototype, "
|
|
2707
|
+
Object.defineProperty(XButton.prototype, "pp", {
|
|
2678
2708
|
get: function () {
|
|
2679
|
-
return this.
|
|
2709
|
+
return this.lv;
|
|
2680
2710
|
},
|
|
2681
2711
|
set: function (a) {
|
|
2682
|
-
var b = this.
|
|
2683
|
-
this.
|
|
2684
|
-
if (b != this.
|
|
2712
|
+
var b = this.lv;
|
|
2713
|
+
this.lv = a;
|
|
2714
|
+
if (b != this.lv) {
|
|
2685
2715
|
this.kd("FabDisabledTextColor", b, a);
|
|
2686
2716
|
}
|
|
2687
2717
|
},
|
|
@@ -2702,28 +2732,28 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2702
2732
|
enumerable: false,
|
|
2703
2733
|
configurable: true
|
|
2704
2734
|
});
|
|
2705
|
-
Object.defineProperty(XButton.prototype, "
|
|
2735
|
+
Object.defineProperty(XButton.prototype, "ps", {
|
|
2706
2736
|
get: function () {
|
|
2707
|
-
return this.
|
|
2737
|
+
return this.mf;
|
|
2708
2738
|
},
|
|
2709
2739
|
set: function (a) {
|
|
2710
|
-
var b = this.
|
|
2711
|
-
this.
|
|
2712
|
-
if (b != this.
|
|
2740
|
+
var b = this.mf;
|
|
2741
|
+
this.mf = a;
|
|
2742
|
+
if (b != this.mf) {
|
|
2713
2743
|
this.kd("FabHoverBackgroundColor", b, a);
|
|
2714
2744
|
}
|
|
2715
2745
|
},
|
|
2716
2746
|
enumerable: false,
|
|
2717
2747
|
configurable: true
|
|
2718
2748
|
});
|
|
2719
|
-
Object.defineProperty(XButton.prototype, "
|
|
2749
|
+
Object.defineProperty(XButton.prototype, "pm", {
|
|
2720
2750
|
get: function () {
|
|
2721
|
-
return this.
|
|
2751
|
+
return this.ls;
|
|
2722
2752
|
},
|
|
2723
2753
|
set: function (a) {
|
|
2724
|
-
var b = this.
|
|
2725
|
-
this.
|
|
2726
|
-
if (b != this.
|
|
2754
|
+
var b = this.ls;
|
|
2755
|
+
this.ls = a;
|
|
2756
|
+
if (b != this.ls) {
|
|
2727
2757
|
this.kd("FabBorderColor", b, a);
|
|
2728
2758
|
}
|
|
2729
2759
|
},
|
|
@@ -2786,13 +2816,13 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2786
2816
|
enumerable: false,
|
|
2787
2817
|
configurable: true
|
|
2788
2818
|
});
|
|
2789
|
-
Object.defineProperty(XButton.prototype, "
|
|
2819
|
+
Object.defineProperty(XButton.prototype, "k0", {
|
|
2790
2820
|
get: function () {
|
|
2791
|
-
return this.
|
|
2821
|
+
return this.kn;
|
|
2792
2822
|
},
|
|
2793
2823
|
set: function (a) {
|
|
2794
|
-
var b = this.
|
|
2795
|
-
this.
|
|
2824
|
+
var b = this.kn;
|
|
2825
|
+
this.kn = a;
|
|
2796
2826
|
{
|
|
2797
2827
|
this.kd("FabCornerRadius", b, a);
|
|
2798
2828
|
}
|
|
@@ -2800,126 +2830,126 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2800
2830
|
enumerable: false,
|
|
2801
2831
|
configurable: true
|
|
2802
2832
|
});
|
|
2803
|
-
Object.defineProperty(XButton.prototype, "
|
|
2833
|
+
Object.defineProperty(XButton.prototype, "pu", {
|
|
2804
2834
|
get: function () {
|
|
2805
|
-
return this.
|
|
2835
|
+
return this.lz;
|
|
2806
2836
|
},
|
|
2807
2837
|
set: function (a) {
|
|
2808
|
-
var b = this.
|
|
2809
|
-
this.
|
|
2810
|
-
if (b != this.
|
|
2838
|
+
var b = this.lz;
|
|
2839
|
+
this.lz = a;
|
|
2840
|
+
if (b != this.lz) {
|
|
2811
2841
|
this.kd("FabRippleColor", b, a);
|
|
2812
2842
|
}
|
|
2813
2843
|
},
|
|
2814
2844
|
enumerable: false,
|
|
2815
2845
|
configurable: true
|
|
2816
2846
|
});
|
|
2817
|
-
Object.defineProperty(XButton.prototype, "
|
|
2847
|
+
Object.defineProperty(XButton.prototype, "pv", {
|
|
2818
2848
|
get: function () {
|
|
2819
|
-
return this.
|
|
2849
|
+
return this.l0;
|
|
2820
2850
|
},
|
|
2821
2851
|
set: function (a) {
|
|
2822
|
-
var b = this.
|
|
2823
|
-
this.
|
|
2824
|
-
if (b != this.
|
|
2852
|
+
var b = this.l0;
|
|
2853
|
+
this.l0 = a;
|
|
2854
|
+
if (b != this.l0) {
|
|
2825
2855
|
this.kd("FabTextColor", b, a);
|
|
2826
2856
|
}
|
|
2827
2857
|
},
|
|
2828
2858
|
enumerable: false,
|
|
2829
2859
|
configurable: true
|
|
2830
2860
|
});
|
|
2831
|
-
Object.defineProperty(XButton.prototype, "
|
|
2861
|
+
Object.defineProperty(XButton.prototype, "pt", {
|
|
2832
2862
|
get: function () {
|
|
2833
|
-
return this.
|
|
2863
|
+
return this.ly;
|
|
2834
2864
|
},
|
|
2835
2865
|
set: function (a) {
|
|
2836
|
-
var b = this.
|
|
2837
|
-
this.
|
|
2838
|
-
if (b != this.
|
|
2866
|
+
var b = this.ly;
|
|
2867
|
+
this.ly = a;
|
|
2868
|
+
if (b != this.ly) {
|
|
2839
2869
|
this.kd("FabHoverTextColor", b, a);
|
|
2840
2870
|
}
|
|
2841
2871
|
},
|
|
2842
2872
|
enumerable: false,
|
|
2843
2873
|
configurable: true
|
|
2844
2874
|
});
|
|
2845
|
-
Object.defineProperty(XButton.prototype, "
|
|
2875
|
+
Object.defineProperty(XButton.prototype, "pq", {
|
|
2846
2876
|
get: function () {
|
|
2847
|
-
return this.
|
|
2877
|
+
return this.lw;
|
|
2848
2878
|
},
|
|
2849
2879
|
set: function (a) {
|
|
2850
|
-
var b = this.
|
|
2851
|
-
this.
|
|
2852
|
-
if (b != this.
|
|
2880
|
+
var b = this.lw;
|
|
2881
|
+
this.lw = a;
|
|
2882
|
+
if (b != this.lw) {
|
|
2853
2883
|
this.kd("FabFocusBackgroundColor", b, a);
|
|
2854
2884
|
}
|
|
2855
2885
|
},
|
|
2856
2886
|
enumerable: false,
|
|
2857
2887
|
configurable: true
|
|
2858
2888
|
});
|
|
2859
|
-
Object.defineProperty(XButton.prototype, "
|
|
2889
|
+
Object.defineProperty(XButton.prototype, "pr", {
|
|
2860
2890
|
get: function () {
|
|
2861
|
-
return this.
|
|
2891
|
+
return this.lx;
|
|
2862
2892
|
},
|
|
2863
2893
|
set: function (a) {
|
|
2864
|
-
var b = this.
|
|
2865
|
-
this.
|
|
2866
|
-
if (b != this.
|
|
2894
|
+
var b = this.lx;
|
|
2895
|
+
this.lx = a;
|
|
2896
|
+
if (b != this.lx) {
|
|
2867
2897
|
this.kd("FabFocusTextColor", b, a);
|
|
2868
2898
|
}
|
|
2869
2899
|
},
|
|
2870
2900
|
enumerable: false,
|
|
2871
2901
|
configurable: true
|
|
2872
2902
|
});
|
|
2873
|
-
Object.defineProperty(XButton.prototype, "
|
|
2903
|
+
Object.defineProperty(XButton.prototype, "qb", {
|
|
2874
2904
|
get: function () {
|
|
2875
|
-
return this.
|
|
2905
|
+
return this.mh;
|
|
2876
2906
|
},
|
|
2877
2907
|
set: function (a) {
|
|
2878
|
-
var b = this.
|
|
2879
|
-
this.
|
|
2880
|
-
if (b != this.
|
|
2908
|
+
var b = this.mh;
|
|
2909
|
+
this.mh = a;
|
|
2910
|
+
if (b != this.mh) {
|
|
2881
2911
|
this.kd("IconBackgroundColor", b, a);
|
|
2882
2912
|
}
|
|
2883
2913
|
},
|
|
2884
2914
|
enumerable: false,
|
|
2885
2915
|
configurable: true
|
|
2886
2916
|
});
|
|
2887
|
-
Object.defineProperty(XButton.prototype, "
|
|
2917
|
+
Object.defineProperty(XButton.prototype, "qd", {
|
|
2888
2918
|
get: function () {
|
|
2889
|
-
return this.
|
|
2919
|
+
return this.mj;
|
|
2890
2920
|
},
|
|
2891
2921
|
set: function (a) {
|
|
2892
|
-
var b = this.
|
|
2893
|
-
this.
|
|
2894
|
-
if (b != this.
|
|
2922
|
+
var b = this.mj;
|
|
2923
|
+
this.mj = a;
|
|
2924
|
+
if (b != this.mj) {
|
|
2895
2925
|
this.kd("IconDisabledBackgroundColor", b, a);
|
|
2896
2926
|
}
|
|
2897
2927
|
},
|
|
2898
2928
|
enumerable: false,
|
|
2899
2929
|
configurable: true
|
|
2900
2930
|
});
|
|
2901
|
-
Object.defineProperty(XButton.prototype, "
|
|
2931
|
+
Object.defineProperty(XButton.prototype, "qe", {
|
|
2902
2932
|
get: function () {
|
|
2903
|
-
return this.
|
|
2933
|
+
return this.mk;
|
|
2904
2934
|
},
|
|
2905
2935
|
set: function (a) {
|
|
2906
|
-
var b = this.
|
|
2907
|
-
this.
|
|
2908
|
-
if (b != this.
|
|
2936
|
+
var b = this.mk;
|
|
2937
|
+
this.mk = a;
|
|
2938
|
+
if (b != this.mk) {
|
|
2909
2939
|
this.kd("IconDisabledBorderColor", b, a);
|
|
2910
2940
|
}
|
|
2911
2941
|
},
|
|
2912
2942
|
enumerable: false,
|
|
2913
2943
|
configurable: true
|
|
2914
2944
|
});
|
|
2915
|
-
Object.defineProperty(XButton.prototype, "
|
|
2945
|
+
Object.defineProperty(XButton.prototype, "qf", {
|
|
2916
2946
|
get: function () {
|
|
2917
|
-
return this.
|
|
2947
|
+
return this.ml;
|
|
2918
2948
|
},
|
|
2919
2949
|
set: function (a) {
|
|
2920
|
-
var b = this.
|
|
2921
|
-
this.
|
|
2922
|
-
if (b != this.
|
|
2950
|
+
var b = this.ml;
|
|
2951
|
+
this.ml = a;
|
|
2952
|
+
if (b != this.ml) {
|
|
2923
2953
|
this.kd("IconDisabledTextColor", b, a);
|
|
2924
2954
|
}
|
|
2925
2955
|
},
|
|
@@ -2940,28 +2970,28 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2940
2970
|
enumerable: false,
|
|
2941
2971
|
configurable: true
|
|
2942
2972
|
});
|
|
2943
|
-
Object.defineProperty(XButton.prototype, "
|
|
2973
|
+
Object.defineProperty(XButton.prototype, "qi", {
|
|
2944
2974
|
get: function () {
|
|
2945
|
-
return this.
|
|
2975
|
+
return this.mo;
|
|
2946
2976
|
},
|
|
2947
2977
|
set: function (a) {
|
|
2948
|
-
var b = this.
|
|
2949
|
-
this.
|
|
2950
|
-
if (b != this.
|
|
2978
|
+
var b = this.mo;
|
|
2979
|
+
this.mo = a;
|
|
2980
|
+
if (b != this.mo) {
|
|
2951
2981
|
this.kd("IconHoverBackgroundColor", b, a);
|
|
2952
2982
|
}
|
|
2953
2983
|
},
|
|
2954
2984
|
enumerable: false,
|
|
2955
2985
|
configurable: true
|
|
2956
2986
|
});
|
|
2957
|
-
Object.defineProperty(XButton.prototype, "
|
|
2987
|
+
Object.defineProperty(XButton.prototype, "qc", {
|
|
2958
2988
|
get: function () {
|
|
2959
|
-
return this.
|
|
2989
|
+
return this.mi;
|
|
2960
2990
|
},
|
|
2961
2991
|
set: function (a) {
|
|
2962
|
-
var b = this.
|
|
2963
|
-
this.
|
|
2964
|
-
if (b != this.
|
|
2992
|
+
var b = this.mi;
|
|
2993
|
+
this.mi = a;
|
|
2994
|
+
if (b != this.mi) {
|
|
2965
2995
|
this.kd("IconBorderColor", b, a);
|
|
2966
2996
|
}
|
|
2967
2997
|
},
|
|
@@ -3024,13 +3054,13 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3024
3054
|
enumerable: false,
|
|
3025
3055
|
configurable: true
|
|
3026
3056
|
});
|
|
3027
|
-
Object.defineProperty(XButton.prototype, "
|
|
3057
|
+
Object.defineProperty(XButton.prototype, "k3", {
|
|
3028
3058
|
get: function () {
|
|
3029
|
-
return this.
|
|
3059
|
+
return this.kp;
|
|
3030
3060
|
},
|
|
3031
3061
|
set: function (a) {
|
|
3032
|
-
var b = this.
|
|
3033
|
-
this.
|
|
3062
|
+
var b = this.kp;
|
|
3063
|
+
this.kp = a;
|
|
3034
3064
|
{
|
|
3035
3065
|
this.kd("IconCornerRadius", b, a);
|
|
3036
3066
|
}
|
|
@@ -3038,70 +3068,70 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3038
3068
|
enumerable: false,
|
|
3039
3069
|
configurable: true
|
|
3040
3070
|
});
|
|
3041
|
-
Object.defineProperty(XButton.prototype, "
|
|
3071
|
+
Object.defineProperty(XButton.prototype, "qk", {
|
|
3042
3072
|
get: function () {
|
|
3043
|
-
return this.
|
|
3073
|
+
return this.mq;
|
|
3044
3074
|
},
|
|
3045
3075
|
set: function (a) {
|
|
3046
|
-
var b = this.
|
|
3047
|
-
this.
|
|
3048
|
-
if (b != this.
|
|
3076
|
+
var b = this.mq;
|
|
3077
|
+
this.mq = a;
|
|
3078
|
+
if (b != this.mq) {
|
|
3049
3079
|
this.kd("IconRippleColor", b, a);
|
|
3050
3080
|
}
|
|
3051
3081
|
},
|
|
3052
3082
|
enumerable: false,
|
|
3053
3083
|
configurable: true
|
|
3054
3084
|
});
|
|
3055
|
-
Object.defineProperty(XButton.prototype, "
|
|
3085
|
+
Object.defineProperty(XButton.prototype, "ql", {
|
|
3056
3086
|
get: function () {
|
|
3057
|
-
return this.
|
|
3087
|
+
return this.mr;
|
|
3058
3088
|
},
|
|
3059
3089
|
set: function (a) {
|
|
3060
|
-
var b = this.
|
|
3061
|
-
this.
|
|
3062
|
-
if (b != this.
|
|
3090
|
+
var b = this.mr;
|
|
3091
|
+
this.mr = a;
|
|
3092
|
+
if (b != this.mr) {
|
|
3063
3093
|
this.kd("IconTextColor", b, a);
|
|
3064
3094
|
}
|
|
3065
3095
|
},
|
|
3066
3096
|
enumerable: false,
|
|
3067
3097
|
configurable: true
|
|
3068
3098
|
});
|
|
3069
|
-
Object.defineProperty(XButton.prototype, "
|
|
3099
|
+
Object.defineProperty(XButton.prototype, "qj", {
|
|
3070
3100
|
get: function () {
|
|
3071
|
-
return this.
|
|
3101
|
+
return this.mp;
|
|
3072
3102
|
},
|
|
3073
3103
|
set: function (a) {
|
|
3074
|
-
var b = this.
|
|
3075
|
-
this.
|
|
3076
|
-
if (b != this.
|
|
3104
|
+
var b = this.mp;
|
|
3105
|
+
this.mp = a;
|
|
3106
|
+
if (b != this.mp) {
|
|
3077
3107
|
this.kd("IconHoverTextColor", b, a);
|
|
3078
3108
|
}
|
|
3079
3109
|
},
|
|
3080
3110
|
enumerable: false,
|
|
3081
3111
|
configurable: true
|
|
3082
3112
|
});
|
|
3083
|
-
Object.defineProperty(XButton.prototype, "
|
|
3113
|
+
Object.defineProperty(XButton.prototype, "qg", {
|
|
3084
3114
|
get: function () {
|
|
3085
|
-
return this.
|
|
3115
|
+
return this.mm;
|
|
3086
3116
|
},
|
|
3087
3117
|
set: function (a) {
|
|
3088
|
-
var b = this.
|
|
3089
|
-
this.
|
|
3090
|
-
if (b != this.
|
|
3118
|
+
var b = this.mm;
|
|
3119
|
+
this.mm = a;
|
|
3120
|
+
if (b != this.mm) {
|
|
3091
3121
|
this.kd("IconFocusBackgroundColor", b, a);
|
|
3092
3122
|
}
|
|
3093
3123
|
},
|
|
3094
3124
|
enumerable: false,
|
|
3095
3125
|
configurable: true
|
|
3096
3126
|
});
|
|
3097
|
-
Object.defineProperty(XButton.prototype, "
|
|
3127
|
+
Object.defineProperty(XButton.prototype, "qh", {
|
|
3098
3128
|
get: function () {
|
|
3099
|
-
return this.
|
|
3129
|
+
return this.mn;
|
|
3100
3130
|
},
|
|
3101
3131
|
set: function (a) {
|
|
3102
|
-
var b = this.
|
|
3103
|
-
this.
|
|
3104
|
-
if (b != this.
|
|
3132
|
+
var b = this.mn;
|
|
3133
|
+
this.mn = a;
|
|
3134
|
+
if (b != this.mn) {
|
|
3105
3135
|
this.kd("IconFocusTextColor", b, a);
|
|
3106
3136
|
}
|
|
3107
3137
|
},
|
|
@@ -3466,29 +3496,29 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3466
3496
|
enumerable: false,
|
|
3467
3497
|
configurable: true
|
|
3468
3498
|
});
|
|
3469
|
-
Object.defineProperty(XButton.prototype, "
|
|
3499
|
+
Object.defineProperty(XButton.prototype, "k7", {
|
|
3470
3500
|
get: function () {
|
|
3471
|
-
return this.
|
|
3501
|
+
return this.k6;
|
|
3472
3502
|
},
|
|
3473
3503
|
set: function (a) {
|
|
3474
|
-
var b = this.
|
|
3475
|
-
this.
|
|
3476
|
-
if (b != this.
|
|
3477
|
-
this.kd("HorizontalContentAlignment", enumGetBox(HorizontalAlignment_$type, b), enumGetBox(HorizontalAlignment_$type, this.
|
|
3504
|
+
var b = this.k6;
|
|
3505
|
+
this.k6 = a;
|
|
3506
|
+
if (b != this.k6) {
|
|
3507
|
+
this.kd("HorizontalContentAlignment", enumGetBox(HorizontalAlignment_$type, b), enumGetBox(HorizontalAlignment_$type, this.k6));
|
|
3478
3508
|
}
|
|
3479
3509
|
},
|
|
3480
3510
|
enumerable: false,
|
|
3481
3511
|
configurable: true
|
|
3482
3512
|
});
|
|
3483
|
-
Object.defineProperty(XButton.prototype, "
|
|
3513
|
+
Object.defineProperty(XButton.prototype, "rb", {
|
|
3484
3514
|
get: function () {
|
|
3485
|
-
return this.
|
|
3515
|
+
return this.ra;
|
|
3486
3516
|
},
|
|
3487
3517
|
set: function (a) {
|
|
3488
|
-
var b = this.
|
|
3489
|
-
this.
|
|
3490
|
-
if (b != this.
|
|
3491
|
-
this.kd("VerticalContentAlignment", enumGetBox(VerticalAlignment_$type, b), enumGetBox(VerticalAlignment_$type, this.
|
|
3518
|
+
var b = this.ra;
|
|
3519
|
+
this.ra = a;
|
|
3520
|
+
if (b != this.ra) {
|
|
3521
|
+
this.kd("VerticalContentAlignment", enumGetBox(VerticalAlignment_$type, b), enumGetBox(VerticalAlignment_$type, this.ra));
|
|
3492
3522
|
}
|
|
3493
3523
|
},
|
|
3494
3524
|
enumerable: false,
|
|
@@ -3510,8 +3540,8 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3510
3540
|
});
|
|
3511
3541
|
XButton.prototype.ke = function () {
|
|
3512
3542
|
this.j3();
|
|
3513
|
-
this.view.aw(this.
|
|
3514
|
-
this.
|
|
3543
|
+
this.view.aw(this.nr, BrushUtil.h(0, 0, 0, 0));
|
|
3544
|
+
this.ki();
|
|
3515
3545
|
};
|
|
3516
3546
|
Object.defineProperty(XButton.prototype, "a", {
|
|
3517
3547
|
get: function () {
|
|
@@ -3563,12 +3593,12 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3563
3593
|
c.h = this.n;
|
|
3564
3594
|
c.i = this.q;
|
|
3565
3595
|
c.c = AppearanceHelper.a(NativeUI.ak(a));
|
|
3566
|
-
c.g = AppearanceHelper.a(this.
|
|
3567
|
-
c.d = AppearanceHelper.a(this.
|
|
3568
|
-
c.a = AppearanceHelper.a(this.
|
|
3596
|
+
c.g = AppearanceHelper.a(this.nt);
|
|
3597
|
+
c.d = AppearanceHelper.a(this.nq);
|
|
3598
|
+
c.a = AppearanceHelper.a(this.ng);
|
|
3569
3599
|
c.u = this.ct;
|
|
3570
|
-
c.e = AppearanceHelper.a(this.
|
|
3571
|
-
c.ag = this.
|
|
3600
|
+
c.e = AppearanceHelper.a(this.nr);
|
|
3601
|
+
c.ag = this.ks;
|
|
3572
3602
|
c.b = AppearanceHelper.a(NativeUI.aj(a));
|
|
3573
3603
|
c.j = this.u;
|
|
3574
3604
|
c.f = AppearanceHelper.a(NativeUI.al(b));
|