igniteui-webcomponents-inputs 7.1.0-alpha.0 → 7.1.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-inputs.umd.js +4621 -4122
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +642 -628
- package/esm2015/lib/ButtonView_combined.js +2039 -1746
- package/esm2015/lib/CalendarView_combined.js +160 -160
- package/esm2015/lib/CheckboxView_combined.js +62 -62
- package/esm2015/lib/DatePickerView_combined.js +4 -4
- package/esm2015/lib/IconView_combined.js +163 -163
- package/esm2015/lib/InputGroupView_combined.js +240 -240
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/MultiSliderView_combined.js +17 -17
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +202 -202
- package/esm2015/lib/RippleView_combined.js +3 -3
- package/esm2015/lib/ThemeResolver.js +38 -22
- package/esm2015/lib/XButtonBridge.js +65 -57
- package/esm2015/lib/XButtonGroupBridge.js +19 -15
- package/esm2015/lib/XCheckboxBridge.js +8 -8
- package/esm2015/lib/XComponentBridge.js +4 -2
- package/esm2015/lib/XIconBridge.js +23 -23
- package/esm2015/lib/XIconButtonBridge.js +7 -7
- package/esm2015/lib/XInputBridge.js +18 -18
- package/esm2015/lib/XPopupBridge.js +28 -28
- package/esm2015/lib/igc-multi-slider-thumb-collection.js +7 -7
- package/esm2015/lib/igc-multi-slider-thumb-component.js +271 -0
- package/esm2015/lib/igc-multi-slider-thumb-module.js +16 -0
- package/esm2015/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -8
- package/esm2015/lib/igc-multi-slider-track-thumb-range.js +5 -15
- package/esm2015/lib/igc-x-button-component.js +567 -567
- package/esm2015/lib/igc-x-button-group-component.js +184 -184
- package/esm2015/lib/igc-x-icon-component.js +10 -10
- package/esm2015/public_api.js +2 -1
- package/esm5/lib/ButtonGroupView_combined.js +620 -606
- package/esm5/lib/ButtonView_combined.js +1953 -1660
- package/esm5/lib/CalendarView_combined.js +160 -160
- package/esm5/lib/CheckboxView_combined.js +62 -62
- package/esm5/lib/DatePickerView_combined.js +4 -4
- package/esm5/lib/IconView_combined.js +158 -158
- package/esm5/lib/InputGroupView_combined.js +240 -240
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/MultiSliderView_combined.js +17 -17
- package/esm5/lib/NativeUIXInputsFactory_combined.js +202 -202
- package/esm5/lib/RippleView_combined.js +3 -3
- package/esm5/lib/ThemeResolver.js +38 -22
- package/esm5/lib/XButtonBridge.js +65 -57
- package/esm5/lib/XButtonGroupBridge.js +19 -15
- package/esm5/lib/XCheckboxBridge.js +8 -8
- package/esm5/lib/XComponentBridge.js +4 -2
- package/esm5/lib/XIconBridge.js +23 -23
- package/esm5/lib/XIconButtonBridge.js +7 -7
- package/esm5/lib/XInputBridge.js +18 -18
- package/esm5/lib/XPopupBridge.js +28 -28
- package/esm5/lib/igc-multi-slider-thumb-collection.js +7 -7
- package/esm5/lib/igc-multi-slider-thumb-component.js +300 -0
- package/esm5/lib/igc-multi-slider-thumb-module.js +20 -0
- package/esm5/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -8
- package/esm5/lib/igc-multi-slider-track-thumb-range.js +5 -15
- package/esm5/lib/igc-x-button-component.js +567 -567
- package/esm5/lib/igc-x-button-group-component.js +184 -184
- package/esm5/lib/igc-x-icon-component.js +10 -10
- package/esm5/public_api.js +2 -1
- package/fesm2015/igniteui-webcomponents-inputs.js +4947 -4459
- package/fesm5/igniteui-webcomponents-inputs.js +4621 -4123
- package/lib/ButtonGroupView_combined.d.ts +181 -179
- package/lib/ButtonView_combined.d.ts +479 -478
- package/lib/IconView_combined.d.ts +33 -34
- package/lib/MultiSliderView_combined.d.ts +1 -1
- package/lib/ThemeResolver.d.ts +18 -15
- package/lib/igc-multi-slider-thumb-collection.d.ts +4 -4
- package/lib/igc-multi-slider-thumb-component.d.ts +53 -0
- package/lib/igc-multi-slider-thumb-module.d.ts +3 -0
- package/lib/igc-multi-slider-thumb-value-changing-event-args.d.ts +3 -3
- package/lib/igc-multi-slider-track-thumb-range.d.ts +5 -5
- package/package.json +2 -2
- package/public_api.d.ts +2 -1
- package/esm2015/lib/igc-multi-slider-thumb.js +0 -109
- package/esm5/lib/igc-multi-slider-thumb.js +0 -132
- package/lib/igc-multi-slider-thumb.d.ts +0 -27
|
@@ -144,7 +144,7 @@ let InputGroupView = /*@__PURE__*/ (() => {
|
|
|
144
144
|
g.setStyleProperty("height", "2px");
|
|
145
145
|
g.setStyleProperty("display", "block");
|
|
146
146
|
g.setStyleProperty("pointer-events", "none");
|
|
147
|
-
NativeUI.
|
|
147
|
+
NativeUI.ai(g, ((() => {
|
|
148
148
|
let $ret = new ScaleTransform();
|
|
149
149
|
$ret.l = 0.5;
|
|
150
150
|
$ret.m = 1;
|
|
@@ -318,7 +318,7 @@ let SuffixView = /*@__PURE__*/ (() => {
|
|
|
318
318
|
$ret.m = 1;
|
|
319
319
|
return $ret;
|
|
320
320
|
})()));
|
|
321
|
-
NativeUI.
|
|
321
|
+
NativeUI.ai(this.h.rootWrapper, b);
|
|
322
322
|
this.h.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
323
323
|
}
|
|
324
324
|
g() {
|
|
@@ -416,7 +416,7 @@ let PrefixView = /*@__PURE__*/ (() => {
|
|
|
416
416
|
$ret.m = 1;
|
|
417
417
|
return $ret;
|
|
418
418
|
})()));
|
|
419
|
-
NativeUI.
|
|
419
|
+
NativeUI.ai(this.h.rootWrapper, b);
|
|
420
420
|
this.h.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
421
421
|
}
|
|
422
422
|
g() {
|
|
@@ -511,7 +511,7 @@ let LabelView = /*@__PURE__*/ (() => {
|
|
|
511
511
|
c.setStyleProperty("overflow", "hidden");
|
|
512
512
|
c.setStyleProperty("height", "1.125rem");
|
|
513
513
|
c.setStyleProperty("backface-visibility", "hidden");
|
|
514
|
-
NativeUI.
|
|
514
|
+
NativeUI.r(this.m.rootWrapper, this.c.c3);
|
|
515
515
|
c.setStyleProperty("outline-style", "none");
|
|
516
516
|
c.setStyleProperty("box-shadow", "none");
|
|
517
517
|
c.setStyleProperty("font-family", "Verdana");
|
|
@@ -537,7 +537,7 @@ let LabelView = /*@__PURE__*/ (() => {
|
|
|
537
537
|
$ret.m = 1;
|
|
538
538
|
return $ret;
|
|
539
539
|
})()));
|
|
540
|
-
NativeUI.
|
|
540
|
+
NativeUI.ai(this.m.rootWrapper, a);
|
|
541
541
|
this.n.setStyleProperty("height", "1.125rem");
|
|
542
542
|
this.m.rootWrapper.setStyleProperty("position", "absolute");
|
|
543
543
|
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
@@ -708,7 +708,7 @@ let LabelView = /*@__PURE__*/ (() => {
|
|
|
708
708
|
}
|
|
709
709
|
}
|
|
710
710
|
ah(a) {
|
|
711
|
-
NativeUI.
|
|
711
|
+
NativeUI.r(this.n, a);
|
|
712
712
|
}
|
|
713
713
|
e() {
|
|
714
714
|
return ((() => {
|
|
@@ -784,7 +784,7 @@ let InputView = /*@__PURE__*/ (() => {
|
|
|
784
784
|
c.setStyleProperty("background-attachment", "initial");
|
|
785
785
|
c.setStyleProperty("background-origin", "initial");
|
|
786
786
|
c.setStyleProperty("background-color", "transparent");
|
|
787
|
-
NativeUI.
|
|
787
|
+
NativeUI.r(c, this.c.d4);
|
|
788
788
|
c.setStyleProperty("outline-style", "none");
|
|
789
789
|
c.setStyleProperty("box-shadow", "none");
|
|
790
790
|
c.setStyleProperty("border-top", "0.1875rem solid transparent");
|
|
@@ -915,7 +915,7 @@ let InputView = /*@__PURE__*/ (() => {
|
|
|
915
915
|
$ret.m = 1;
|
|
916
916
|
return $ret;
|
|
917
917
|
})()));
|
|
918
|
-
NativeUI.
|
|
918
|
+
NativeUI.ai(this.m.rootWrapper, b);
|
|
919
919
|
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
920
920
|
}
|
|
921
921
|
l() {
|
|
@@ -1452,103 +1452,103 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
1452
1452
|
this.gotFocus = null;
|
|
1453
1453
|
this.dw = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
|
|
1454
1454
|
this.dx = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
|
|
1455
|
-
this.kv = XInputGroup.m.
|
|
1456
|
-
this.ol = XInputGroup.m.
|
|
1457
|
-
this.m9 = XInputGroup.m.
|
|
1458
|
-
this.na = XInputGroup.m.
|
|
1459
|
-
this.nb = XInputGroup.m.
|
|
1455
|
+
this.kv = XInputGroup.m.z(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
|
|
1456
|
+
this.ol = XInputGroup.m.ak(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
|
|
1457
|
+
this.m9 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
|
|
1458
|
+
this.na = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
|
|
1459
|
+
this.nb = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "FocusLabelColor");
|
|
1460
1460
|
this.d5 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineWidth");
|
|
1461
1461
|
this.d4 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleWidth");
|
|
1462
1462
|
this.d1 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
|
|
1463
|
-
this.ne = XInputGroup.m.
|
|
1464
|
-
this.nf = XInputGroup.m.
|
|
1465
|
-
this.nd = XInputGroup.m.
|
|
1466
|
-
this.nc = XInputGroup.m.
|
|
1463
|
+
this.ne = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
|
|
1464
|
+
this.nf = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
|
|
1465
|
+
this.nd = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
|
|
1466
|
+
this.nc = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
|
|
1467
1467
|
this.d2 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
|
|
1468
1468
|
this.d0 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
|
|
1469
1469
|
this.dy = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
|
|
1470
1470
|
this.dz = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
|
|
1471
1471
|
this.d3 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleOpacity");
|
|
1472
|
-
this.m8 = XInputGroup.m.
|
|
1472
|
+
this.m8 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
|
|
1473
1473
|
this.dl = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "BorderWidth");
|
|
1474
1474
|
this.dm = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "FocusBorderWidth");
|
|
1475
|
-
this.ku = XInputGroup.m.
|
|
1476
|
-
this.ok = XInputGroup.m.
|
|
1477
|
-
this.m1 = XInputGroup.m.
|
|
1478
|
-
this.m2 = XInputGroup.m.
|
|
1479
|
-
this.m3 = XInputGroup.m.
|
|
1475
|
+
this.ku = XInputGroup.m.z(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "CornerRadius");
|
|
1476
|
+
this.ok = XInputGroup.m.ak(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "ContentPadding");
|
|
1477
|
+
this.m1 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "BorderColor");
|
|
1478
|
+
this.m2 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "FocusBorderColor");
|
|
1479
|
+
this.m3 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "FocusLabelColor");
|
|
1480
1480
|
this.dv = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineWidth");
|
|
1481
1481
|
this.du = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineRippleWidth");
|
|
1482
1482
|
this.dr = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "HoverUnderlineWidth");
|
|
1483
|
-
this.m6 = XInputGroup.m.
|
|
1484
|
-
this.m7 = XInputGroup.m.
|
|
1485
|
-
this.m5 = XInputGroup.m.
|
|
1486
|
-
this.m4 = XInputGroup.m.
|
|
1483
|
+
this.m6 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineColor");
|
|
1484
|
+
this.m7 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineRippleColor");
|
|
1485
|
+
this.m5 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "HoverUnderlineColor");
|
|
1486
|
+
this.m4 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "FocusUnderlineColor");
|
|
1487
1487
|
this.ds = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineOpacity");
|
|
1488
1488
|
this.dq = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "HoverUnderlineOpacity");
|
|
1489
1489
|
this.dn = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "FocusUnderlineOpacity");
|
|
1490
1490
|
this.dp = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "FocusUnderlineRippleOpacity");
|
|
1491
1491
|
this.dt = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineRippleOpacity");
|
|
1492
|
-
this.m0 = XInputGroup.m.
|
|
1492
|
+
this.m0 = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 1), "BackgroundColor");
|
|
1493
1493
|
this.db = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "BorderWidth");
|
|
1494
1494
|
this.dc = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "FocusBorderWidth");
|
|
1495
|
-
this.kt = XInputGroup.m.
|
|
1496
|
-
this.oj = XInputGroup.m.
|
|
1497
|
-
this.mt = XInputGroup.m.
|
|
1498
|
-
this.mu = XInputGroup.m.
|
|
1499
|
-
this.mv = XInputGroup.m.
|
|
1495
|
+
this.kt = XInputGroup.m.z(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "CornerRadius");
|
|
1496
|
+
this.oj = XInputGroup.m.ak(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "ContentPadding");
|
|
1497
|
+
this.mt = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "BorderColor");
|
|
1498
|
+
this.mu = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "FocusBorderColor");
|
|
1499
|
+
this.mv = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "FocusLabelColor");
|
|
1500
1500
|
this.dk = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineWidth");
|
|
1501
1501
|
this.dj = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineRippleWidth");
|
|
1502
1502
|
this.dg = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "HoverUnderlineWidth");
|
|
1503
|
-
this.my = XInputGroup.m.
|
|
1504
|
-
this.mz = XInputGroup.m.
|
|
1505
|
-
this.mx = XInputGroup.m.
|
|
1506
|
-
this.mw = XInputGroup.m.
|
|
1503
|
+
this.my = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineColor");
|
|
1504
|
+
this.mz = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineRippleColor");
|
|
1505
|
+
this.mx = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "HoverUnderlineColor");
|
|
1506
|
+
this.mw = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "FocusUnderlineColor");
|
|
1507
1507
|
this.dh = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineOpacity");
|
|
1508
1508
|
this.df = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "HoverUnderlineOpacity");
|
|
1509
1509
|
this.dd = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "FocusUnderlineOpacity");
|
|
1510
1510
|
this.de = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "FocusUnderlineRippleOpacity");
|
|
1511
1511
|
this.di = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineRippleOpacity");
|
|
1512
|
-
this.ms = XInputGroup.m.
|
|
1512
|
+
this.ms = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 2), "BackgroundColor");
|
|
1513
1513
|
this.d6 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "BorderWidth");
|
|
1514
1514
|
this.d7 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "FocusBorderWidth");
|
|
1515
|
-
this.kw = XInputGroup.m.
|
|
1516
|
-
this.om = XInputGroup.m.
|
|
1517
|
-
this.nh = XInputGroup.m.
|
|
1518
|
-
this.ni = XInputGroup.m.
|
|
1519
|
-
this.nj = XInputGroup.m.
|
|
1515
|
+
this.kw = XInputGroup.m.z(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "CornerRadius");
|
|
1516
|
+
this.om = XInputGroup.m.ak(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "ContentPadding");
|
|
1517
|
+
this.nh = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "BorderColor");
|
|
1518
|
+
this.ni = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "FocusBorderColor");
|
|
1519
|
+
this.nj = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "FocusLabelColor");
|
|
1520
1520
|
this.ef = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineWidth");
|
|
1521
1521
|
this.ee = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineRippleWidth");
|
|
1522
1522
|
this.eb = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "HoverUnderlineWidth");
|
|
1523
|
-
this.nm = XInputGroup.m.
|
|
1524
|
-
this.nn = XInputGroup.m.
|
|
1525
|
-
this.nl = XInputGroup.m.
|
|
1526
|
-
this.nk = XInputGroup.m.
|
|
1523
|
+
this.nm = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineColor");
|
|
1524
|
+
this.nn = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineRippleColor");
|
|
1525
|
+
this.nl = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "HoverUnderlineColor");
|
|
1526
|
+
this.nk = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "FocusUnderlineColor");
|
|
1527
1527
|
this.ec = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineOpacity");
|
|
1528
1528
|
this.ea = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "HoverUnderlineOpacity");
|
|
1529
1529
|
this.d8 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "FocusUnderlineOpacity");
|
|
1530
1530
|
this.d9 = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "FocusUnderlineRippleOpacity");
|
|
1531
1531
|
this.ed = XInputGroup.m.i(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineRippleOpacity");
|
|
1532
|
-
this.ng = XInputGroup.m.
|
|
1533
|
-
this.k0 = ThemeResolver.
|
|
1534
|
-
this.k1 = ThemeResolver.
|
|
1532
|
+
this.ng = XInputGroup.m.af(XInputGroup.o, enumGetBox(InputGroupDisplayType_$type, 3), "BackgroundColor");
|
|
1533
|
+
this.k0 = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
|
|
1534
|
+
this.k1 = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
|
|
1535
1535
|
this.as = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
|
|
1536
1536
|
this.at = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
|
|
1537
|
-
this.ki = ThemeResolver.
|
|
1538
|
-
this.n8 = ThemeResolver.
|
|
1537
|
+
this.ki = ThemeResolver.ab(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
|
|
1538
|
+
this.n8 = ThemeResolver.am(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
|
|
1539
1539
|
this.a1 = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineWidth");
|
|
1540
1540
|
this.a0 = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleWidth");
|
|
1541
1541
|
this.ax = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
|
|
1542
|
-
this.k4 = ThemeResolver.
|
|
1543
|
-
this.k5 = ThemeResolver.
|
|
1544
|
-
this.k3 = ThemeResolver.
|
|
1545
|
-
this.k2 = ThemeResolver.
|
|
1542
|
+
this.k4 = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
|
|
1543
|
+
this.k5 = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
|
|
1544
|
+
this.k3 = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
|
|
1545
|
+
this.k2 = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
|
|
1546
1546
|
this.ay = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
|
|
1547
1547
|
this.aw = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
|
|
1548
1548
|
this.au = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
|
|
1549
1549
|
this.av = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
|
|
1550
1550
|
this.az = ThemeResolver.k(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleOpacity");
|
|
1551
|
-
this.kz = ThemeResolver.
|
|
1551
|
+
this.kz = ThemeResolver.ah(XInputGroup.o, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
|
|
1552
1552
|
this.bc = NaN;
|
|
1553
1553
|
this.bn = NaN;
|
|
1554
1554
|
this.k7 = null;
|
|
@@ -1925,7 +1925,7 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
1925
1925
|
this.jv();
|
|
1926
1926
|
break;
|
|
1927
1927
|
case "IsDisabled":
|
|
1928
|
-
NativeUI.
|
|
1928
|
+
NativeUI.w(this.view.v, !this.disabled);
|
|
1929
1929
|
break;
|
|
1930
1930
|
}
|
|
1931
1931
|
}
|
|
@@ -2108,44 +2108,44 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
2108
2108
|
let e = this.v != null && this.v.playState == 1;
|
|
2109
2109
|
let f = this.w != null && this.w.playState == 1;
|
|
2110
2110
|
let g = this.u != null && this.u.playState == 1;
|
|
2111
|
-
NativeUI.
|
|
2112
|
-
NativeUI.
|
|
2113
|
-
NativeUI.
|
|
2114
|
-
NativeUI.
|
|
2111
|
+
NativeUI.p(a, this.ko);
|
|
2112
|
+
NativeUI.p(b, this.ko);
|
|
2113
|
+
NativeUI.n(a, this.l5);
|
|
2114
|
+
NativeUI.ac(a, this.oe);
|
|
2115
2115
|
if (this.ao) {
|
|
2116
2116
|
if (!g) {
|
|
2117
|
-
NativeUI.
|
|
2118
|
-
NativeUI.
|
|
2117
|
+
NativeUI.o(b, this.l7);
|
|
2118
|
+
NativeUI.q(b, new Thickness(0, this.ch));
|
|
2119
2119
|
}
|
|
2120
2120
|
if (!f) {
|
|
2121
|
-
NativeUI.
|
|
2121
|
+
NativeUI.n(c, this.l8);
|
|
2122
2122
|
}
|
|
2123
2123
|
}
|
|
2124
2124
|
else {
|
|
2125
2125
|
if (!f) {
|
|
2126
2126
|
if (this.ap) {
|
|
2127
|
-
NativeUI.
|
|
2128
|
-
NativeUI.
|
|
2129
|
-
NativeUI.
|
|
2127
|
+
NativeUI.n(c, this.l9);
|
|
2128
|
+
NativeUI.ab(c, this.ck);
|
|
2129
|
+
NativeUI.v(c, this.cl);
|
|
2130
2130
|
}
|
|
2131
2131
|
else {
|
|
2132
|
-
NativeUI.
|
|
2133
|
-
NativeUI.
|
|
2134
|
-
NativeUI.
|
|
2132
|
+
NativeUI.n(c, this.ma);
|
|
2133
|
+
NativeUI.ab(c, this.cm);
|
|
2134
|
+
NativeUI.v(c, this.cp);
|
|
2135
2135
|
}
|
|
2136
2136
|
}
|
|
2137
2137
|
if (!g) {
|
|
2138
|
-
NativeUI.
|
|
2139
|
-
NativeUI.
|
|
2138
|
+
NativeUI.o(b, this.l6);
|
|
2139
|
+
NativeUI.q(b, new Thickness(0, this.cg));
|
|
2140
2140
|
}
|
|
2141
2141
|
if (!f) {
|
|
2142
|
-
NativeUI.
|
|
2142
|
+
NativeUI.n(a, this.l5);
|
|
2143
2143
|
}
|
|
2144
2144
|
}
|
|
2145
2145
|
if (!e) {
|
|
2146
|
-
NativeUI.
|
|
2147
|
-
NativeUI.
|
|
2148
|
-
NativeUI.
|
|
2146
|
+
NativeUI.n(d, this.mb);
|
|
2147
|
+
NativeUI.v(d, this.co);
|
|
2148
|
+
NativeUI.ab(d, this.cn);
|
|
2149
2149
|
}
|
|
2150
2150
|
}
|
|
2151
2151
|
get a() {
|
|
@@ -2202,84 +2202,84 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
2202
2202
|
ka(a) {
|
|
2203
2203
|
this.dw = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
|
|
2204
2204
|
this.dx = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
|
|
2205
|
-
this.kv = XInputGroup.m.
|
|
2206
|
-
this.ol = XInputGroup.m.
|
|
2207
|
-
this.m9 = XInputGroup.m.
|
|
2208
|
-
this.na = XInputGroup.m.
|
|
2209
|
-
this.nb = XInputGroup.m.
|
|
2205
|
+
this.kv = XInputGroup.m.z(a, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
|
|
2206
|
+
this.ol = XInputGroup.m.ak(a, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
|
|
2207
|
+
this.m9 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
|
|
2208
|
+
this.na = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
|
|
2209
|
+
this.nb = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "FocusLabelColor");
|
|
2210
2210
|
this.d5 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineWidth");
|
|
2211
2211
|
this.d4 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleWidth");
|
|
2212
2212
|
this.d1 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
|
|
2213
|
-
this.ne = XInputGroup.m.
|
|
2214
|
-
this.nf = XInputGroup.m.
|
|
2215
|
-
this.nd = XInputGroup.m.
|
|
2216
|
-
this.nc = XInputGroup.m.
|
|
2213
|
+
this.ne = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
|
|
2214
|
+
this.nf = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
|
|
2215
|
+
this.nd = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
|
|
2216
|
+
this.nc = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
|
|
2217
2217
|
this.d2 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
|
|
2218
2218
|
this.d0 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
|
|
2219
2219
|
this.dy = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
|
|
2220
2220
|
this.dz = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
|
|
2221
2221
|
this.d3 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleOpacity");
|
|
2222
|
-
this.m8 = XInputGroup.m.
|
|
2222
|
+
this.m8 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
|
|
2223
2223
|
this.dl = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "BorderWidth");
|
|
2224
2224
|
this.dm = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "FocusBorderWidth");
|
|
2225
|
-
this.ku = XInputGroup.m.
|
|
2226
|
-
this.ok = XInputGroup.m.
|
|
2227
|
-
this.m1 = XInputGroup.m.
|
|
2228
|
-
this.m2 = XInputGroup.m.
|
|
2229
|
-
this.m3 = XInputGroup.m.
|
|
2225
|
+
this.ku = XInputGroup.m.z(a, enumGetBox(InputGroupDisplayType_$type, 1), "CornerRadius");
|
|
2226
|
+
this.ok = XInputGroup.m.ak(a, enumGetBox(InputGroupDisplayType_$type, 1), "ContentPadding");
|
|
2227
|
+
this.m1 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "BorderColor");
|
|
2228
|
+
this.m2 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "FocusBorderColor");
|
|
2229
|
+
this.m3 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "FocusLabelColor");
|
|
2230
2230
|
this.dv = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineWidth");
|
|
2231
2231
|
this.du = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineRippleWidth");
|
|
2232
2232
|
this.dr = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "HoverUnderlineWidth");
|
|
2233
|
-
this.m6 = XInputGroup.m.
|
|
2234
|
-
this.m7 = XInputGroup.m.
|
|
2235
|
-
this.m5 = XInputGroup.m.
|
|
2236
|
-
this.m4 = XInputGroup.m.
|
|
2233
|
+
this.m6 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineColor");
|
|
2234
|
+
this.m7 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineRippleColor");
|
|
2235
|
+
this.m5 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "HoverUnderlineColor");
|
|
2236
|
+
this.m4 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "FocusUnderlineColor");
|
|
2237
2237
|
this.ds = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineOpacity");
|
|
2238
2238
|
this.dq = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "HoverUnderlineOpacity");
|
|
2239
2239
|
this.dn = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "FocusUnderlineOpacity");
|
|
2240
2240
|
this.dp = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "FocusUnderlineRippleOpacity");
|
|
2241
2241
|
this.dt = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 1), "UnderlineRippleOpacity");
|
|
2242
|
-
this.m0 = XInputGroup.m.
|
|
2242
|
+
this.m0 = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 1), "BackgroundColor");
|
|
2243
2243
|
this.db = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "BorderWidth");
|
|
2244
2244
|
this.dc = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "FocusBorderWidth");
|
|
2245
|
-
this.kt = XInputGroup.m.
|
|
2246
|
-
this.oj = XInputGroup.m.
|
|
2247
|
-
this.mt = XInputGroup.m.
|
|
2248
|
-
this.mu = XInputGroup.m.
|
|
2249
|
-
this.mv = XInputGroup.m.
|
|
2245
|
+
this.kt = XInputGroup.m.z(a, enumGetBox(InputGroupDisplayType_$type, 2), "CornerRadius");
|
|
2246
|
+
this.oj = XInputGroup.m.ak(a, enumGetBox(InputGroupDisplayType_$type, 2), "ContentPadding");
|
|
2247
|
+
this.mt = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "BorderColor");
|
|
2248
|
+
this.mu = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "FocusBorderColor");
|
|
2249
|
+
this.mv = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "FocusLabelColor");
|
|
2250
2250
|
this.dk = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineWidth");
|
|
2251
2251
|
this.dj = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineRippleWidth");
|
|
2252
2252
|
this.dg = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "HoverUnderlineWidth");
|
|
2253
|
-
this.my = XInputGroup.m.
|
|
2254
|
-
this.mz = XInputGroup.m.
|
|
2255
|
-
this.mx = XInputGroup.m.
|
|
2256
|
-
this.mw = XInputGroup.m.
|
|
2253
|
+
this.my = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineColor");
|
|
2254
|
+
this.mz = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineRippleColor");
|
|
2255
|
+
this.mx = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "HoverUnderlineColor");
|
|
2256
|
+
this.mw = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "FocusUnderlineColor");
|
|
2257
2257
|
this.dh = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineOpacity");
|
|
2258
2258
|
this.df = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "HoverUnderlineOpacity");
|
|
2259
2259
|
this.dd = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "FocusUnderlineOpacity");
|
|
2260
2260
|
this.de = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "FocusUnderlineRippleOpacity");
|
|
2261
2261
|
this.di = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 2), "UnderlineRippleOpacity");
|
|
2262
|
-
this.ms = XInputGroup.m.
|
|
2262
|
+
this.ms = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 2), "BackgroundColor");
|
|
2263
2263
|
this.d6 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "BorderWidth");
|
|
2264
2264
|
this.d7 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "FocusBorderWidth");
|
|
2265
|
-
this.kw = XInputGroup.m.
|
|
2266
|
-
this.om = XInputGroup.m.
|
|
2267
|
-
this.nh = XInputGroup.m.
|
|
2268
|
-
this.ni = XInputGroup.m.
|
|
2269
|
-
this.nj = XInputGroup.m.
|
|
2265
|
+
this.kw = XInputGroup.m.z(a, enumGetBox(InputGroupDisplayType_$type, 3), "CornerRadius");
|
|
2266
|
+
this.om = XInputGroup.m.ak(a, enumGetBox(InputGroupDisplayType_$type, 3), "ContentPadding");
|
|
2267
|
+
this.nh = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "BorderColor");
|
|
2268
|
+
this.ni = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "FocusBorderColor");
|
|
2269
|
+
this.nj = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "FocusLabelColor");
|
|
2270
2270
|
this.ef = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineWidth");
|
|
2271
2271
|
this.ee = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineRippleWidth");
|
|
2272
2272
|
this.eb = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "HoverUnderlineWidth");
|
|
2273
|
-
this.nm = XInputGroup.m.
|
|
2274
|
-
this.nn = XInputGroup.m.
|
|
2275
|
-
this.nl = XInputGroup.m.
|
|
2276
|
-
this.nk = XInputGroup.m.
|
|
2273
|
+
this.nm = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineColor");
|
|
2274
|
+
this.nn = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineRippleColor");
|
|
2275
|
+
this.nl = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "HoverUnderlineColor");
|
|
2276
|
+
this.nk = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "FocusUnderlineColor");
|
|
2277
2277
|
this.ec = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineOpacity");
|
|
2278
2278
|
this.ea = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "HoverUnderlineOpacity");
|
|
2279
2279
|
this.d8 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "FocusUnderlineOpacity");
|
|
2280
2280
|
this.d9 = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "FocusUnderlineRippleOpacity");
|
|
2281
2281
|
this.ed = XInputGroup.m.i(a, enumGetBox(InputGroupDisplayType_$type, 3), "UnderlineRippleOpacity");
|
|
2282
|
-
this.ng = XInputGroup.m.
|
|
2282
|
+
this.ng = XInputGroup.m.af(a, enumGetBox(InputGroupDisplayType_$type, 3), "BackgroundColor");
|
|
2283
2283
|
}
|
|
2284
2284
|
jv() {
|
|
2285
2285
|
this.jp();
|
|
@@ -3712,22 +3712,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3712
3712
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
3713
3713
|
$ret.addItem("CornerRadius", new CornerRadius(1, 4, 4, 4, 4));
|
|
3714
3714
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3715
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3716
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3717
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3715
|
+
$ret.addItem("BorderColor", BrushUtil.l(138, 0, 0, 0));
|
|
3716
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 0, 153, 155));
|
|
3717
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 0, 153, 155));
|
|
3718
3718
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3719
3719
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3720
3720
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3721
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3722
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3723
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3724
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3721
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3722
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 0, 153, 155));
|
|
3723
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3724
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 0, 153, 155));
|
|
3725
3725
|
$ret.addItem("UnderlineOpacity", 0);
|
|
3726
3726
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
3727
3727
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
3728
3728
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
3729
3729
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3730
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3730
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3731
3731
|
return $ret;
|
|
3732
3732
|
})())));
|
|
3733
3733
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 1), new Theme(0, ((() => {
|
|
@@ -3736,22 +3736,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3736
3736
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
3737
3737
|
$ret.addItem("CornerRadius", new CornerRadius(1, 4, 4, 0, 0));
|
|
3738
3738
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3739
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3740
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3741
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3739
|
+
$ret.addItem("BorderColor", BrushUtil.l(138, 0, 0, 0));
|
|
3740
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 0, 153, 155));
|
|
3741
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 0, 153, 155));
|
|
3742
3742
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3743
3743
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3744
3744
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3745
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3746
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3747
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3748
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3745
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3746
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 0, 153, 155));
|
|
3747
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3748
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 0, 153, 155));
|
|
3749
3749
|
$ret.addItem("UnderlineOpacity", 1);
|
|
3750
3750
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
3751
3751
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
3752
3752
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
3753
3753
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3754
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3754
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(20, 0, 0, 0));
|
|
3755
3755
|
return $ret;
|
|
3756
3756
|
})())));
|
|
3757
3757
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 0), new Theme(0, ((() => {
|
|
@@ -3760,22 +3760,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3760
3760
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
3761
3761
|
$ret.addItem("CornerRadius", new CornerRadius(0, 0));
|
|
3762
3762
|
$ret.addItem("ContentPadding", new Thickness(0, 0));
|
|
3763
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3764
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3765
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3763
|
+
$ret.addItem("BorderColor", BrushUtil.l(138, 0, 0, 0));
|
|
3764
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 0, 153, 155));
|
|
3765
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 0, 153, 155));
|
|
3766
3766
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3767
3767
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3768
3768
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3769
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3770
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3771
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3772
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3769
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3770
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 0, 153, 155));
|
|
3771
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3772
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 0, 153, 155));
|
|
3773
3773
|
$ret.addItem("UnderlineOpacity", 1);
|
|
3774
3774
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
3775
3775
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
3776
3776
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
3777
3777
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3778
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3778
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3779
3779
|
return $ret;
|
|
3780
3780
|
})())));
|
|
3781
3781
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 3), new Theme(0, ((() => {
|
|
@@ -3784,22 +3784,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3784
3784
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
3785
3785
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3786
3786
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3787
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3788
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3789
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3787
|
+
$ret.addItem("BorderColor", BrushUtil.l(138, 0, 0, 0));
|
|
3788
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 0, 153, 155));
|
|
3789
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 0, 153, 155));
|
|
3790
3790
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3791
3791
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3792
3792
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3793
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3794
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3795
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3796
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3793
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3794
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 0, 153, 155));
|
|
3795
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(138, 0, 0, 0));
|
|
3796
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 0, 153, 155));
|
|
3797
3797
|
$ret.addItem("UnderlineOpacity", 0);
|
|
3798
3798
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
3799
3799
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
3800
3800
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
3801
3801
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3802
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3802
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3803
3803
|
return $ret;
|
|
3804
3804
|
})())));
|
|
3805
3805
|
return $ret;
|
|
@@ -3815,22 +3815,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3815
3815
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
3816
3816
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3817
3817
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3818
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3819
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3820
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3818
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3819
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 33, 150, 243));
|
|
3820
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 33, 150, 243));
|
|
3821
3821
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3822
3822
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3823
3823
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3824
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3825
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3826
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3827
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3824
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3825
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 33, 150, 243));
|
|
3826
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3827
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 33, 150, 243));
|
|
3828
3828
|
$ret.addItem("UnderlineOpacity", 0);
|
|
3829
3829
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
3830
3830
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
3831
3831
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
3832
3832
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3833
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3833
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3834
3834
|
return $ret;
|
|
3835
3835
|
})())));
|
|
3836
3836
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 1), new Theme(0, ((() => {
|
|
@@ -3839,22 +3839,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3839
3839
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
3840
3840
|
$ret.addItem("CornerRadius", new CornerRadius(1, 4, 4, 0, 0));
|
|
3841
3841
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3842
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3843
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3844
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3842
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3843
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 33, 150, 243));
|
|
3844
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 33, 150, 243));
|
|
3845
3845
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3846
3846
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3847
3847
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3848
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3849
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3850
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3851
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3848
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3849
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 33, 150, 243));
|
|
3850
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3851
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 33, 150, 243));
|
|
3852
3852
|
$ret.addItem("UnderlineOpacity", 1);
|
|
3853
3853
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
3854
3854
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
3855
3855
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
3856
3856
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3857
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3857
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(20, 0, 0, 0));
|
|
3858
3858
|
return $ret;
|
|
3859
3859
|
})())));
|
|
3860
3860
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 0), new Theme(0, ((() => {
|
|
@@ -3863,22 +3863,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3863
3863
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
3864
3864
|
$ret.addItem("CornerRadius", new CornerRadius(0, 0));
|
|
3865
3865
|
$ret.addItem("ContentPadding", new Thickness(0, 0));
|
|
3866
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3867
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3868
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3866
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3867
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 33, 150, 243));
|
|
3868
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 33, 150, 243));
|
|
3869
3869
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3870
3870
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3871
3871
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3872
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3873
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3874
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3875
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3872
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3873
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 33, 150, 243));
|
|
3874
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3875
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 33, 150, 243));
|
|
3876
3876
|
$ret.addItem("UnderlineOpacity", 1);
|
|
3877
3877
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
3878
3878
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
3879
3879
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
3880
3880
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3881
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3881
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3882
3882
|
return $ret;
|
|
3883
3883
|
})())));
|
|
3884
3884
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 3), new Theme(0, ((() => {
|
|
@@ -3887,27 +3887,27 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3887
3887
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
3888
3888
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3889
3889
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3890
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3891
|
-
$ret.addItem("FocusBorderColor", BrushUtil.
|
|
3892
|
-
$ret.addItem("FocusLabelColor", BrushUtil.
|
|
3890
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3891
|
+
$ret.addItem("FocusBorderColor", BrushUtil.l(255, 33, 150, 243));
|
|
3892
|
+
$ret.addItem("FocusLabelColor", BrushUtil.l(255, 33, 150, 243));
|
|
3893
3893
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3894
3894
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3895
3895
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3896
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3897
|
-
$ret.addItem("UnderlineRippleColor", BrushUtil.
|
|
3898
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3899
|
-
$ret.addItem("FocusUnderlineColor", BrushUtil.
|
|
3896
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3897
|
+
$ret.addItem("UnderlineRippleColor", BrushUtil.l(255, 33, 150, 243));
|
|
3898
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3899
|
+
$ret.addItem("FocusUnderlineColor", BrushUtil.l(255, 33, 150, 243));
|
|
3900
3900
|
$ret.addItem("UnderlineOpacity", 0);
|
|
3901
3901
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
3902
3902
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
3903
3903
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
3904
3904
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3905
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3905
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3906
3906
|
return $ret;
|
|
3907
3907
|
})())));
|
|
3908
3908
|
return $ret;
|
|
3909
3909
|
})()));
|
|
3910
|
-
XInputGroup.n5 = /*@__PURE__*/ BrushUtil.
|
|
3910
|
+
XInputGroup.n5 = /*@__PURE__*/ BrushUtil.l(255, 105, 136, 255);
|
|
3911
3911
|
XInputGroup.l = /*@__PURE__*/ new Theme(1, /*@__PURE__*/ ((() => {
|
|
3912
3912
|
let $ret = new Dictionary$2(String_$type, Base.$, 0);
|
|
3913
3913
|
return $ret;
|
|
@@ -3919,22 +3919,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3919
3919
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
3920
3920
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3921
3921
|
$ret.addItem("ContentPadding", new Thickness(1, 8, 0, 8, 0));
|
|
3922
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3922
|
+
$ret.addItem("BorderColor", BrushUtil.l(25, 0, 0, 0));
|
|
3923
3923
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
3924
3924
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
3925
3925
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3926
3926
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3927
3927
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3928
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3928
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(25, 0, 0, 0));
|
|
3929
3929
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
3930
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3930
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 0, 0, 0));
|
|
3931
3931
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
3932
3932
|
$ret.addItem("UnderlineOpacity", 0);
|
|
3933
3933
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
3934
3934
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
3935
3935
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
3936
3936
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3937
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3937
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3938
3938
|
return $ret;
|
|
3939
3939
|
})())));
|
|
3940
3940
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 1), new Theme(0, ((() => {
|
|
@@ -3943,22 +3943,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3943
3943
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
3944
3944
|
$ret.addItem("CornerRadius", new CornerRadius(1, 4, 4, 0, 0));
|
|
3945
3945
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3946
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3946
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3947
3947
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
3948
3948
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
3949
3949
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3950
3950
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3951
3951
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3952
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3952
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3953
3953
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
3954
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3954
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3955
3955
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
3956
3956
|
$ret.addItem("UnderlineOpacity", 1);
|
|
3957
3957
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
3958
3958
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
3959
3959
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
3960
3960
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3961
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3961
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(25, 0, 0, 0));
|
|
3962
3962
|
return $ret;
|
|
3963
3963
|
})())));
|
|
3964
3964
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 0), new Theme(0, ((() => {
|
|
@@ -3967,22 +3967,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3967
3967
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
3968
3968
|
$ret.addItem("CornerRadius", new CornerRadius(0, 0));
|
|
3969
3969
|
$ret.addItem("ContentPadding", new Thickness(0, 0));
|
|
3970
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3970
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3971
3971
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
3972
3972
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
3973
3973
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3974
3974
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3975
3975
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
3976
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
3976
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3977
3977
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
3978
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
3978
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
3979
3979
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
3980
3980
|
$ret.addItem("UnderlineOpacity", 1);
|
|
3981
3981
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
3982
3982
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
3983
3983
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
3984
3984
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
3985
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
3985
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
3986
3986
|
return $ret;
|
|
3987
3987
|
})())));
|
|
3988
3988
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 3), new Theme(0, ((() => {
|
|
@@ -3991,22 +3991,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3991
3991
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
3992
3992
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3993
3993
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
3994
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
3994
|
+
$ret.addItem("BorderColor", BrushUtil.l(255, 186, 191, 199));
|
|
3995
3995
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
3996
3996
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
3997
3997
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
3998
3998
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
3999
3999
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
4000
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
4000
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
4001
4001
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
4002
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
4002
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(255, 186, 191, 199));
|
|
4003
4003
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
4004
4004
|
$ret.addItem("UnderlineOpacity", 0);
|
|
4005
4005
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
4006
4006
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
4007
4007
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
4008
4008
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
4009
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
4009
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
4010
4010
|
return $ret;
|
|
4011
4011
|
})())));
|
|
4012
4012
|
return $ret;
|
|
@@ -4022,22 +4022,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
4022
4022
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
4023
4023
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
4024
4024
|
$ret.addItem("ContentPadding", new Thickness(1, 8, 0, 8, 0));
|
|
4025
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
4025
|
+
$ret.addItem("BorderColor", BrushUtil.l(51, 255, 255, 255));
|
|
4026
4026
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
4027
4027
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
4028
4028
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
4029
4029
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
4030
4030
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
4031
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
4031
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4032
4032
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
4033
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
4033
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4034
4034
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
4035
4035
|
$ret.addItem("UnderlineOpacity", 0);
|
|
4036
4036
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
4037
4037
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
4038
4038
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
4039
4039
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
4040
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
4040
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
4041
4041
|
return $ret;
|
|
4042
4042
|
})())));
|
|
4043
4043
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 1), new Theme(0, ((() => {
|
|
@@ -4046,22 +4046,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
4046
4046
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
4047
4047
|
$ret.addItem("CornerRadius", new CornerRadius(1, 4, 4, 0, 0));
|
|
4048
4048
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
4049
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
4049
|
+
$ret.addItem("BorderColor", BrushUtil.l(51, 255, 255, 255));
|
|
4050
4050
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
4051
4051
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
4052
4052
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
4053
4053
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
4054
4054
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
4055
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
4055
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4056
4056
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
4057
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
4057
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4058
4058
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
4059
4059
|
$ret.addItem("UnderlineOpacity", 1);
|
|
4060
4060
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
4061
4061
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
4062
4062
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
4063
4063
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
4064
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
4064
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(128, 55, 63, 86));
|
|
4065
4065
|
return $ret;
|
|
4066
4066
|
})())));
|
|
4067
4067
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 0), new Theme(0, ((() => {
|
|
@@ -4070,22 +4070,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
4070
4070
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(0));
|
|
4071
4071
|
$ret.addItem("CornerRadius", new CornerRadius(0, 0));
|
|
4072
4072
|
$ret.addItem("ContentPadding", new Thickness(0, 0));
|
|
4073
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
4073
|
+
$ret.addItem("BorderColor", BrushUtil.l(51, 255, 255, 255));
|
|
4074
4074
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
4075
4075
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
4076
4076
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
4077
4077
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
4078
4078
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
4079
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
4079
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4080
4080
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
4081
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
4081
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4082
4082
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
4083
4083
|
$ret.addItem("UnderlineOpacity", 1);
|
|
4084
4084
|
$ret.addItem("HoverUnderlineOpacity", 1);
|
|
4085
4085
|
$ret.addItem("FocusUnderlineOpacity", 1);
|
|
4086
4086
|
$ret.addItem("FocusUnderlineRippleOpacity", 1);
|
|
4087
4087
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
4088
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
4088
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
4089
4089
|
return $ret;
|
|
4090
4090
|
})())));
|
|
4091
4091
|
$ret.addItem(enumGetBox(InputGroupDisplayType_$type, 3), new Theme(0, ((() => {
|
|
@@ -4094,22 +4094,22 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
4094
4094
|
$ret.addItem("FocusBorderWidth", DeviceUtils.g(2));
|
|
4095
4095
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
4096
4096
|
$ret.addItem("ContentPadding", new Thickness(1, 16, 0, 16, 0));
|
|
4097
|
-
$ret.addItem("BorderColor", BrushUtil.
|
|
4097
|
+
$ret.addItem("BorderColor", BrushUtil.l(51, 255, 255, 255));
|
|
4098
4098
|
$ret.addItem("FocusBorderColor", XInputGroup.n5);
|
|
4099
4099
|
$ret.addItem("FocusLabelColor", XInputGroup.n5);
|
|
4100
4100
|
$ret.addItem("UnderlineWidth", DeviceUtils.g(1));
|
|
4101
4101
|
$ret.addItem("UnderlineRippleWidth", DeviceUtils.g(2));
|
|
4102
4102
|
$ret.addItem("HoverUnderlineWidth", DeviceUtils.g(2));
|
|
4103
|
-
$ret.addItem("UnderlineColor", BrushUtil.
|
|
4103
|
+
$ret.addItem("UnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4104
4104
|
$ret.addItem("UnderlineRippleColor", XInputGroup.n5);
|
|
4105
|
-
$ret.addItem("HoverUnderlineColor", BrushUtil.
|
|
4105
|
+
$ret.addItem("HoverUnderlineColor", BrushUtil.l(51, 255, 255, 255));
|
|
4106
4106
|
$ret.addItem("FocusUnderlineColor", XInputGroup.n5);
|
|
4107
4107
|
$ret.addItem("UnderlineOpacity", 0);
|
|
4108
4108
|
$ret.addItem("HoverUnderlineOpacity", 0);
|
|
4109
4109
|
$ret.addItem("FocusUnderlineOpacity", 0);
|
|
4110
4110
|
$ret.addItem("FocusUnderlineRippleOpacity", 0);
|
|
4111
4111
|
$ret.addItem("UnderlineRippleOpacity", 0);
|
|
4112
|
-
$ret.addItem("BackgroundColor", BrushUtil.
|
|
4112
|
+
$ret.addItem("BackgroundColor", BrushUtil.l(0, 0, 0, 0));
|
|
4113
4113
|
return $ret;
|
|
4114
4114
|
})())));
|
|
4115
4115
|
return $ret;
|
|
@@ -4154,10 +4154,10 @@ let XLabel = /*@__PURE__*/ (() => {
|
|
|
4154
4154
|
this.ab = false;
|
|
4155
4155
|
this.r = 0;
|
|
4156
4156
|
this.q = 1;
|
|
4157
|
-
this.cv = ThemeResolver.
|
|
4158
|
-
this.cs = ThemeResolver.
|
|
4159
|
-
this.ct = ThemeResolver.
|
|
4160
|
-
this.cu = ThemeResolver.
|
|
4157
|
+
this.cv = ThemeResolver.aj(XLabel.o, XLabel.de, XLabel.c7);
|
|
4158
|
+
this.cs = ThemeResolver.aj(XLabel.o, XLabel.db, XLabel.c4);
|
|
4159
|
+
this.ct = ThemeResolver.aj(XLabel.o, XLabel.dc, XLabel.c5);
|
|
4160
|
+
this.cu = ThemeResolver.aj(XLabel.o, XLabel.dd, XLabel.c6);
|
|
4161
4161
|
this.u = null;
|
|
4162
4162
|
this.cz = XLabel.df;
|
|
4163
4163
|
this.cw = XLabel.c8;
|
|
@@ -4252,7 +4252,7 @@ let XLabel = /*@__PURE__*/ (() => {
|
|
|
4252
4252
|
$ret.m = 0.75;
|
|
4253
4253
|
return $ret;
|
|
4254
4254
|
})()));
|
|
4255
|
-
this.aa = KeyFrameAnimationFactory.f.c(this.view.b(this.i).m(new AnimationKeyFrameProperty(14, b), new AnimationKeyFrameProperty(2, BrushUtil.
|
|
4255
|
+
this.aa = KeyFrameAnimationFactory.f.c(this.view.b(this.i).m(new AnimationKeyFrameProperty(14, b), new AnimationKeyFrameProperty(2, BrushUtil.l(0, 255, 255, 255))).m(new AnimationKeyFrameProperty(14, d), new AnimationKeyFrameProperty(2, BrushUtil.l(this.l == 2 ? 255 : 0, 255, 255, 255))));
|
|
4256
4256
|
}
|
|
4257
4257
|
if (this.z == null) {
|
|
4258
4258
|
this.z = KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new AnimationKeyFrameProperty(7, this.c3)).m(new AnimationKeyFrameProperty(7, this.c0)));
|
|
@@ -4437,10 +4437,10 @@ let XLabel = /*@__PURE__*/ (() => {
|
|
|
4437
4437
|
this.view.ah(this.c3);
|
|
4438
4438
|
}
|
|
4439
4439
|
cp(a) {
|
|
4440
|
-
XLabel.df = ThemeResolver.
|
|
4441
|
-
XLabel.c8 = ThemeResolver.
|
|
4442
|
-
XLabel.da = ThemeResolver.
|
|
4443
|
-
XLabel.c9 = ThemeResolver.
|
|
4440
|
+
XLabel.df = ThemeResolver.aj(a, XLabel.de, XLabel.c7);
|
|
4441
|
+
XLabel.c8 = ThemeResolver.aj(a, XLabel.db, XLabel.c4);
|
|
4442
|
+
XLabel.da = ThemeResolver.aj(a, XLabel.dd, XLabel.c6);
|
|
4443
|
+
XLabel.c9 = ThemeResolver.aj(a, XLabel.dc, XLabel.c5);
|
|
4444
4444
|
}
|
|
4445
4445
|
get t() {
|
|
4446
4446
|
return this.r;
|
|
@@ -4771,7 +4771,7 @@ let XLabel = /*@__PURE__*/ (() => {
|
|
|
4771
4771
|
a.c = this.p;
|
|
4772
4772
|
a.e = this.t;
|
|
4773
4773
|
a.d = this.s;
|
|
4774
|
-
a.a = AppearanceHelper.a(NativeUI.
|
|
4774
|
+
a.a = AppearanceHelper.a(NativeUI.ao(b));
|
|
4775
4775
|
a.b = this.l;
|
|
4776
4776
|
a.i = this.ap;
|
|
4777
4777
|
a.g = this.an;
|
|
@@ -4819,19 +4819,19 @@ let XLabel = /*@__PURE__*/ (() => {
|
|
|
4819
4819
|
}
|
|
4820
4820
|
}
|
|
4821
4821
|
XLabel.$t = /*@__PURE__*/ markType(XLabel, 'XLabel', XInputGroupItem.$);
|
|
4822
|
-
XLabel.de = /*@__PURE__*/ BrushUtil.
|
|
4823
|
-
XLabel.db = /*@__PURE__*/ BrushUtil.
|
|
4824
|
-
XLabel.dd = /*@__PURE__*/ BrushUtil.
|
|
4825
|
-
XLabel.dc = /*@__PURE__*/ BrushUtil.
|
|
4826
|
-
XLabel.c7 = /*@__PURE__*/ BrushUtil.
|
|
4827
|
-
XLabel.c4 = /*@__PURE__*/ BrushUtil.
|
|
4828
|
-
XLabel.c6 = /*@__PURE__*/ BrushUtil.
|
|
4829
|
-
XLabel.c5 = /*@__PURE__*/ BrushUtil.
|
|
4822
|
+
XLabel.de = /*@__PURE__*/ BrushUtil.l(221, 0, 0, 0);
|
|
4823
|
+
XLabel.db = /*@__PURE__*/ BrushUtil.l(255, 0, 153, 155);
|
|
4824
|
+
XLabel.dd = /*@__PURE__*/ BrushUtil.l(221, 0, 0, 0);
|
|
4825
|
+
XLabel.dc = /*@__PURE__*/ BrushUtil.l(255, 0, 153, 155);
|
|
4826
|
+
XLabel.c7 = /*@__PURE__*/ BrushUtil.l(255, 24, 29, 31);
|
|
4827
|
+
XLabel.c4 = /*@__PURE__*/ BrushUtil.l(255, 33, 150, 243);
|
|
4828
|
+
XLabel.c6 = /*@__PURE__*/ BrushUtil.l(255, 24, 29, 31);
|
|
4829
|
+
XLabel.c5 = /*@__PURE__*/ BrushUtil.l(255, 33, 150, 243);
|
|
4830
4830
|
XLabel.o = 2;
|
|
4831
|
-
XLabel.df = /*@__PURE__*/ ThemeResolver.
|
|
4832
|
-
XLabel.c8 = /*@__PURE__*/ ThemeResolver.
|
|
4833
|
-
XLabel.da = /*@__PURE__*/ ThemeResolver.
|
|
4834
|
-
XLabel.c9 = /*@__PURE__*/ ThemeResolver.
|
|
4831
|
+
XLabel.df = /*@__PURE__*/ ThemeResolver.aj(XLabel.o, XLabel.de, XLabel.c7);
|
|
4832
|
+
XLabel.c8 = /*@__PURE__*/ ThemeResolver.aj(XLabel.o, XLabel.db, XLabel.c4);
|
|
4833
|
+
XLabel.da = /*@__PURE__*/ ThemeResolver.aj(XLabel.o, XLabel.dd, XLabel.c6);
|
|
4834
|
+
XLabel.c9 = /*@__PURE__*/ ThemeResolver.aj(XLabel.o, XLabel.dc, XLabel.c5);
|
|
4835
4835
|
XLabel.x = null;
|
|
4836
4836
|
XLabel.av = 0;
|
|
4837
4837
|
return XLabel;
|
|
@@ -5083,7 +5083,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
5083
5083
|
if (this.ad != null) {
|
|
5084
5084
|
this.view.bc(this.ad);
|
|
5085
5085
|
}
|
|
5086
|
-
NativeUI.
|
|
5086
|
+
NativeUI.r(this.view.r, this.d4);
|
|
5087
5087
|
this.view.a7();
|
|
5088
5088
|
}
|
|
5089
5089
|
get d4() {
|
|
@@ -5453,7 +5453,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
5453
5453
|
a.l = this.ce;
|
|
5454
5454
|
a.o = this.ci;
|
|
5455
5455
|
a.d = this.au;
|
|
5456
|
-
a.a = AppearanceHelper.a(NativeUI.
|
|
5456
|
+
a.a = AppearanceHelper.a(NativeUI.ao(b));
|
|
5457
5457
|
a.k = this.b8;
|
|
5458
5458
|
a.n = this.cg;
|
|
5459
5459
|
a.e = this.aw;
|
|
@@ -5627,8 +5627,8 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
5627
5627
|
}
|
|
5628
5628
|
}
|
|
5629
5629
|
XInput.$t = /*@__PURE__*/ markType(XInput, 'XInput', XInputGroupItem.$);
|
|
5630
|
-
XInput.d6 = /*@__PURE__*/ BrushUtil.
|
|
5631
|
-
XInput.d5 = /*@__PURE__*/ BrushUtil.
|
|
5630
|
+
XInput.d6 = /*@__PURE__*/ BrushUtil.l(221, 0, 0, 0);
|
|
5631
|
+
XInput.d5 = /*@__PURE__*/ BrushUtil.l(221, 0, 0, 0);
|
|
5632
5632
|
XInput.ae = null;
|
|
5633
5633
|
XInput.bf = 0;
|
|
5634
5634
|
return XInput;
|