igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- package/public_api.d.ts +3 -0
|
@@ -138,14 +138,14 @@ export let ButtonGroupView = /*@__PURE__*/ (() => {
|
|
|
138
138
|
}
|
|
139
139
|
x(a) {
|
|
140
140
|
if (this.a.k == 0) {
|
|
141
|
-
a.
|
|
142
|
-
a.
|
|
143
|
-
a.
|
|
141
|
+
a.fw = "flex";
|
|
142
|
+
a.g0 = "row";
|
|
143
|
+
a.e7 = "center";
|
|
144
144
|
}
|
|
145
145
|
else {
|
|
146
|
-
a.
|
|
147
|
-
a.
|
|
148
|
-
a.
|
|
146
|
+
a.fw = "flex";
|
|
147
|
+
a.g0 = "column";
|
|
148
|
+
a.e7 = "stretch";
|
|
149
149
|
}
|
|
150
150
|
}
|
|
151
151
|
o(a) {
|
|
@@ -169,48 +169,48 @@ export let XButtonGroup = /*@__PURE__*/ (() => {
|
|
|
169
169
|
this.a = new Array(0);
|
|
170
170
|
this.u = false;
|
|
171
171
|
this._view = null;
|
|
172
|
-
this.ax = ThemeResolver.
|
|
173
|
-
this.gz = ThemeResolver.
|
|
174
|
-
this.g1 = ThemeResolver.
|
|
175
|
-
this.g0 = ThemeResolver.
|
|
176
|
-
this.g2 = ThemeResolver.
|
|
177
|
-
this.aw = ThemeResolver.
|
|
178
|
-
this.g6 = ThemeResolver.
|
|
179
|
-
this.g3 = ThemeResolver.
|
|
180
|
-
this.g7 = ThemeResolver.
|
|
181
|
-
this.ha = ThemeResolver.
|
|
182
|
-
this.g4 = ThemeResolver.
|
|
183
|
-
this.g5 = ThemeResolver.
|
|
184
|
-
this.g8 = ThemeResolver.
|
|
185
|
-
this.g9 = ThemeResolver.
|
|
186
|
-
this.ar = ThemeResolver.
|
|
187
|
-
this.fz = ThemeResolver.
|
|
188
|
-
this.f1 = ThemeResolver.
|
|
189
|
-
this.f0 = ThemeResolver.
|
|
190
|
-
this.f2 = ThemeResolver.
|
|
191
|
-
this.aq = ThemeResolver.
|
|
192
|
-
this.f6 = ThemeResolver.
|
|
193
|
-
this.f3 = ThemeResolver.
|
|
194
|
-
this.f7 = ThemeResolver.
|
|
195
|
-
this.ga = ThemeResolver.
|
|
196
|
-
this.f4 = ThemeResolver.
|
|
197
|
-
this.f5 = ThemeResolver.
|
|
198
|
-
this.f8 = ThemeResolver.
|
|
199
|
-
this.f9 = ThemeResolver.
|
|
200
|
-
this.ad = ThemeResolver.
|
|
201
|
-
this.dm = ThemeResolver.
|
|
202
|
-
this.dp = ThemeResolver.
|
|
203
|
-
this.du = ThemeResolver.
|
|
204
|
-
this.dr = ThemeResolver.
|
|
205
|
-
this.dn = ThemeResolver.
|
|
206
|
-
this.dq = ThemeResolver.
|
|
207
|
-
this.ac = ThemeResolver.
|
|
208
|
-
this.dv = ThemeResolver.
|
|
209
|
-
this.dy = ThemeResolver.
|
|
210
|
-
this.ds = ThemeResolver.
|
|
211
|
-
this.dt = ThemeResolver.
|
|
212
|
-
this.dw = ThemeResolver.
|
|
213
|
-
this.dx = ThemeResolver.
|
|
172
|
+
this.ax = ThemeResolver.m(XButtonGroup.o, XButtonGroup.av, XButtonGroup.ap);
|
|
173
|
+
this.gz = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gn, XButtonGroup.fn);
|
|
174
|
+
this.g1 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gp, XButtonGroup.fp);
|
|
175
|
+
this.g0 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.go, XButtonGroup.fo);
|
|
176
|
+
this.g2 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gq, XButtonGroup.fq);
|
|
177
|
+
this.aw = ThemeResolver.m(XButtonGroup.o, XButtonGroup.au, XButtonGroup.ao);
|
|
178
|
+
this.g6 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gu, XButtonGroup.fu);
|
|
179
|
+
this.g3 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gr, XButtonGroup.fr);
|
|
180
|
+
this.g7 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gv, XButtonGroup.fv);
|
|
181
|
+
this.ha = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gy, XButtonGroup.fy);
|
|
182
|
+
this.g4 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gs, XButtonGroup.fs);
|
|
183
|
+
this.g5 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gt, XButtonGroup.ft);
|
|
184
|
+
this.g8 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gw, XButtonGroup.fw);
|
|
185
|
+
this.g9 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gx, XButtonGroup.fx);
|
|
186
|
+
this.ar = ThemeResolver.m(XButtonGroup.o, XButtonGroup.at, XButtonGroup.an);
|
|
187
|
+
this.fz = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gb, XButtonGroup.fb);
|
|
188
|
+
this.f1 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gd, XButtonGroup.fd);
|
|
189
|
+
this.f0 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gc, XButtonGroup.fc);
|
|
190
|
+
this.f2 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.ge, XButtonGroup.fe);
|
|
191
|
+
this.aq = ThemeResolver.m(XButtonGroup.o, XButtonGroup.as, XButtonGroup.am);
|
|
192
|
+
this.f6 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gi, XButtonGroup.fi);
|
|
193
|
+
this.f3 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gf, XButtonGroup.ff);
|
|
194
|
+
this.f7 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gj, XButtonGroup.fj);
|
|
195
|
+
this.ga = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gm, XButtonGroup.fm);
|
|
196
|
+
this.f4 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gg, XButtonGroup.fg);
|
|
197
|
+
this.f5 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gh, XButtonGroup.fh);
|
|
198
|
+
this.f8 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gk, XButtonGroup.fk);
|
|
199
|
+
this.f9 = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gl, XButtonGroup.fl);
|
|
200
|
+
this.ad = ThemeResolver.m(XButtonGroup.o, XButtonGroup.av, XButtonGroup.ap);
|
|
201
|
+
this.dm = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gn, XButtonGroup.fn);
|
|
202
|
+
this.dp = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gp, XButtonGroup.fp);
|
|
203
|
+
this.du = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gu, XButtonGroup.fu);
|
|
204
|
+
this.dr = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gr, XButtonGroup.fr);
|
|
205
|
+
this.dn = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.go, XButtonGroup.fo);
|
|
206
|
+
this.dq = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gq, XButtonGroup.fq);
|
|
207
|
+
this.ac = ThemeResolver.m(XButtonGroup.o, XButtonGroup.au, XButtonGroup.ao);
|
|
208
|
+
this.dv = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gv, XButtonGroup.fv);
|
|
209
|
+
this.dy = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gy, XButtonGroup.fy);
|
|
210
|
+
this.ds = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gs, XButtonGroup.fs);
|
|
211
|
+
this.dt = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gt, XButtonGroup.ft);
|
|
212
|
+
this.dw = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gw, XButtonGroup.fw);
|
|
213
|
+
this.dx = ThemeResolver.ah(XButtonGroup.o, XButtonGroup.gx, XButtonGroup.fx);
|
|
214
214
|
this.ah = NaN;
|
|
215
215
|
this.d7 = null;
|
|
216
216
|
this.d9 = null;
|
|
@@ -475,7 +475,7 @@ export let XButtonGroup = /*@__PURE__*/ (() => {
|
|
|
475
475
|
break;
|
|
476
476
|
case "ActualDensity":
|
|
477
477
|
for (let d = 0; d < this.buttons.count; d++) {
|
|
478
|
-
this.buttons._inner[d].
|
|
478
|
+
this.buttons._inner[d].r = this.s;
|
|
479
479
|
}
|
|
480
480
|
break;
|
|
481
481
|
case "IsDisabled":
|
|
@@ -532,7 +532,7 @@ export let XButtonGroup = /*@__PURE__*/ (() => {
|
|
|
532
532
|
df() {
|
|
533
533
|
for (let a = 0; a < this.buttons.count; a++) {
|
|
534
534
|
let b = this.buttons._inner[a];
|
|
535
|
-
b.
|
|
535
|
+
b.r = this.s;
|
|
536
536
|
if (a == 0) {
|
|
537
537
|
this.di(b);
|
|
538
538
|
}
|
|
@@ -543,27 +543,27 @@ export let XButtonGroup = /*@__PURE__*/ (() => {
|
|
|
543
543
|
this.dk(b);
|
|
544
544
|
}
|
|
545
545
|
b.e = 1;
|
|
546
|
-
b.
|
|
546
|
+
b.az = false;
|
|
547
547
|
if (this.v) {
|
|
548
548
|
b.disabled = this.disabled;
|
|
549
549
|
}
|
|
550
|
-
b.
|
|
551
|
-
b.
|
|
552
|
-
b.
|
|
553
|
-
b.
|
|
554
|
-
b.
|
|
550
|
+
b.nt = this.e0;
|
|
551
|
+
b.bg = this.ak;
|
|
552
|
+
b.ph = this.e2;
|
|
553
|
+
b.pg = this.e1;
|
|
554
|
+
b.pi = this.e3;
|
|
555
555
|
this.view.x(b);
|
|
556
556
|
if (this.aa(b)) {
|
|
557
|
-
b.
|
|
558
|
-
b.
|
|
559
|
-
b.
|
|
560
|
-
b.
|
|
557
|
+
b.ns = this.e7;
|
|
558
|
+
b.q7 = this.fa;
|
|
559
|
+
b.p7 = this.e8;
|
|
560
|
+
b.p8 = this.e9;
|
|
561
561
|
}
|
|
562
562
|
else {
|
|
563
|
-
b.
|
|
564
|
-
b.
|
|
565
|
-
b.
|
|
566
|
-
b.
|
|
563
|
+
b.ns = this.ez;
|
|
564
|
+
b.q7 = this.e6;
|
|
565
|
+
b.p7 = this.e4;
|
|
566
|
+
b.p8 = this.e5;
|
|
567
567
|
}
|
|
568
568
|
}
|
|
569
569
|
}
|
|
@@ -577,53 +577,53 @@ export let XButtonGroup = /*@__PURE__*/ (() => {
|
|
|
577
577
|
return false;
|
|
578
578
|
}
|
|
579
579
|
dk(a) {
|
|
580
|
-
a.
|
|
580
|
+
a.kt = new CornerRadius(1, 0, 0, 0, 0);
|
|
581
581
|
}
|
|
582
582
|
dj(a) {
|
|
583
583
|
if (this.k == 1) {
|
|
584
|
-
a.
|
|
584
|
+
a.kt = new CornerRadius(1, 0, 0, this.al, this.al);
|
|
585
585
|
}
|
|
586
586
|
else {
|
|
587
|
-
a.
|
|
587
|
+
a.kt = new CornerRadius(1, 0, this.al, this.al, 0);
|
|
588
588
|
}
|
|
589
589
|
}
|
|
590
590
|
di(a) {
|
|
591
591
|
if (this.k == 1) {
|
|
592
|
-
a.
|
|
592
|
+
a.kt = new CornerRadius(1, this.al, this.al, 0, 0);
|
|
593
593
|
}
|
|
594
594
|
else {
|
|
595
|
-
a.
|
|
595
|
+
a.kt = new CornerRadius(1, this.al, 0, 0, this.al);
|
|
596
596
|
}
|
|
597
597
|
}
|
|
598
598
|
dh(a) {
|
|
599
|
-
this.ax = ThemeResolver.
|
|
600
|
-
this.gz = ThemeResolver.
|
|
601
|
-
this.g1 = ThemeResolver.
|
|
602
|
-
this.g0 = ThemeResolver.
|
|
603
|
-
this.g2 = ThemeResolver.
|
|
604
|
-
this.aw = ThemeResolver.
|
|
605
|
-
this.g6 = ThemeResolver.
|
|
606
|
-
this.g3 = ThemeResolver.
|
|
607
|
-
this.g7 = ThemeResolver.
|
|
608
|
-
this.ha = ThemeResolver.
|
|
609
|
-
this.g4 = ThemeResolver.
|
|
610
|
-
this.g5 = ThemeResolver.
|
|
611
|
-
this.g8 = ThemeResolver.
|
|
612
|
-
this.g9 = ThemeResolver.
|
|
613
|
-
this.ar = ThemeResolver.
|
|
614
|
-
this.fz = ThemeResolver.
|
|
615
|
-
this.f1 = ThemeResolver.
|
|
616
|
-
this.f0 = ThemeResolver.
|
|
617
|
-
this.f2 = ThemeResolver.
|
|
618
|
-
this.aq = ThemeResolver.
|
|
619
|
-
this.f6 = ThemeResolver.
|
|
620
|
-
this.f3 = ThemeResolver.
|
|
621
|
-
this.f7 = ThemeResolver.
|
|
622
|
-
this.ga = ThemeResolver.
|
|
623
|
-
this.f4 = ThemeResolver.
|
|
624
|
-
this.f5 = ThemeResolver.
|
|
625
|
-
this.f8 = ThemeResolver.
|
|
626
|
-
this.f9 = ThemeResolver.
|
|
599
|
+
this.ax = ThemeResolver.m(a, XButtonGroup.av, XButtonGroup.ap);
|
|
600
|
+
this.gz = ThemeResolver.ah(a, XButtonGroup.gn, XButtonGroup.fn);
|
|
601
|
+
this.g1 = ThemeResolver.ah(a, XButtonGroup.gp, XButtonGroup.fp);
|
|
602
|
+
this.g0 = ThemeResolver.ah(a, XButtonGroup.go, XButtonGroup.fo);
|
|
603
|
+
this.g2 = ThemeResolver.ah(a, XButtonGroup.gq, XButtonGroup.fq);
|
|
604
|
+
this.aw = ThemeResolver.m(a, XButtonGroup.au, XButtonGroup.ao);
|
|
605
|
+
this.g6 = ThemeResolver.ah(a, XButtonGroup.gu, XButtonGroup.fu);
|
|
606
|
+
this.g3 = ThemeResolver.ah(a, XButtonGroup.gr, XButtonGroup.fr);
|
|
607
|
+
this.g7 = ThemeResolver.ah(a, XButtonGroup.gv, XButtonGroup.fv);
|
|
608
|
+
this.ha = ThemeResolver.ah(a, XButtonGroup.gy, XButtonGroup.fy);
|
|
609
|
+
this.g4 = ThemeResolver.ah(a, XButtonGroup.gs, XButtonGroup.fs);
|
|
610
|
+
this.g5 = ThemeResolver.ah(a, XButtonGroup.gt, XButtonGroup.ft);
|
|
611
|
+
this.g8 = ThemeResolver.ah(a, XButtonGroup.gw, XButtonGroup.fw);
|
|
612
|
+
this.g9 = ThemeResolver.ah(a, XButtonGroup.gx, XButtonGroup.fx);
|
|
613
|
+
this.ar = ThemeResolver.m(a, XButtonGroup.at, XButtonGroup.an);
|
|
614
|
+
this.fz = ThemeResolver.ah(a, XButtonGroup.gb, XButtonGroup.fb);
|
|
615
|
+
this.f1 = ThemeResolver.ah(a, XButtonGroup.gd, XButtonGroup.fd);
|
|
616
|
+
this.f0 = ThemeResolver.ah(a, XButtonGroup.gc, XButtonGroup.fc);
|
|
617
|
+
this.f2 = ThemeResolver.ah(a, XButtonGroup.ge, XButtonGroup.fe);
|
|
618
|
+
this.aq = ThemeResolver.m(a, XButtonGroup.as, XButtonGroup.am);
|
|
619
|
+
this.f6 = ThemeResolver.ah(a, XButtonGroup.gi, XButtonGroup.fi);
|
|
620
|
+
this.f3 = ThemeResolver.ah(a, XButtonGroup.gf, XButtonGroup.ff);
|
|
621
|
+
this.f7 = ThemeResolver.ah(a, XButtonGroup.gj, XButtonGroup.fj);
|
|
622
|
+
this.ga = ThemeResolver.ah(a, XButtonGroup.gm, XButtonGroup.fm);
|
|
623
|
+
this.f4 = ThemeResolver.ah(a, XButtonGroup.gg, XButtonGroup.fg);
|
|
624
|
+
this.f5 = ThemeResolver.ah(a, XButtonGroup.gh, XButtonGroup.fh);
|
|
625
|
+
this.f8 = ThemeResolver.ah(a, XButtonGroup.gk, XButtonGroup.fk);
|
|
626
|
+
this.f9 = ThemeResolver.ah(a, XButtonGroup.gl, XButtonGroup.fl);
|
|
627
627
|
}
|
|
628
628
|
get al() {
|
|
629
629
|
return this.ad;
|
|
@@ -1258,7 +1258,7 @@ export let XButtonGroup = /*@__PURE__*/ (() => {
|
|
|
1258
1258
|
a.h = this.z;
|
|
1259
1259
|
a.i = new List$1(ButtonVisualModelExport.$, 0);
|
|
1260
1260
|
for (let b = 0; b < this.buttons.count; b++) {
|
|
1261
|
-
a.i.add1(this.buttons._inner[b].
|
|
1261
|
+
a.i.add1(this.buttons._inner[b].d7());
|
|
1262
1262
|
}
|
|
1263
1263
|
return a;
|
|
1264
1264
|
}
|