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
|
@@ -19,11 +19,11 @@ import { TranslateTransform } from "igniteui-angular-core";
|
|
|
19
19
|
import { SuffixShiftType_$type } from "./SuffixShiftType";
|
|
20
20
|
import { PrefixShiftType_$type } from "./PrefixShiftType";
|
|
21
21
|
import { LabelShiftType_$type } from "./LabelShiftType";
|
|
22
|
+
import { isNaN_ } from "igniteui-angular-core";
|
|
22
23
|
import { HorizontalAlignment_$type } from "igniteui-angular-core";
|
|
23
24
|
import { MouseButtonEventArgs } from "igniteui-angular-core";
|
|
24
25
|
import { KeyEventArgs } from "igniteui-angular-core";
|
|
25
26
|
import { InputShiftType_$type } from "./InputShiftType";
|
|
26
|
-
import { isNaN_ } from "igniteui-angular-core";
|
|
27
27
|
import { SuffixVisualModelExport } from "./SuffixVisualModelExport";
|
|
28
28
|
import { PrefixVisualModelExport } from "./PrefixVisualModelExport";
|
|
29
29
|
import { InputGroupDisplayType_$type } from "./InputGroupDisplayType";
|
|
@@ -70,7 +70,7 @@ export let InputGroupView = /*@__PURE__*/ (() => {
|
|
|
70
70
|
}
|
|
71
71
|
ac(a) {
|
|
72
72
|
if (typeCast(XLabel.$, a) !== null) {
|
|
73
|
-
a.
|
|
73
|
+
a.bd = "flex-start";
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
ae(a) {
|
|
@@ -194,6 +194,9 @@ export let InputGroupView = /*@__PURE__*/ (() => {
|
|
|
194
194
|
case 3:
|
|
195
195
|
this.p.setStyleProperty("padding-top", ".81818rem");
|
|
196
196
|
break;
|
|
197
|
+
case 4:
|
|
198
|
+
this.p.setStyleProperty("padding-top", ".68899rem");
|
|
199
|
+
break;
|
|
197
200
|
}
|
|
198
201
|
}
|
|
199
202
|
aa(a) {
|
|
@@ -222,7 +225,7 @@ export let InputGroupView = /*@__PURE__*/ (() => {
|
|
|
222
225
|
}
|
|
223
226
|
}
|
|
224
227
|
k(a) {
|
|
225
|
-
return a.view.
|
|
228
|
+
return a.view.j();
|
|
226
229
|
}
|
|
227
230
|
af() {
|
|
228
231
|
if (KeyFrameAnimationFactory.h == null) {
|
|
@@ -442,50 +445,51 @@ export let LabelView = /*@__PURE__*/ (() => {
|
|
|
442
445
|
constructor() {
|
|
443
446
|
super();
|
|
444
447
|
this.c = null;
|
|
445
|
-
this.
|
|
448
|
+
this.m = null;
|
|
446
449
|
this.d = null;
|
|
447
|
-
this.
|
|
450
|
+
this.i = new List$1(Delegate_$type, 0);
|
|
451
|
+
this.r = null;
|
|
452
|
+
this.f = true;
|
|
453
|
+
this.n = null;
|
|
448
454
|
this.o = null;
|
|
449
|
-
this.
|
|
450
|
-
this.l = null;
|
|
451
|
-
this.m = null;
|
|
455
|
+
this.p = -1;
|
|
452
456
|
}
|
|
453
|
-
|
|
457
|
+
ae() {
|
|
454
458
|
}
|
|
455
|
-
|
|
459
|
+
g() {
|
|
456
460
|
return true;
|
|
457
461
|
}
|
|
458
|
-
get
|
|
459
|
-
return this.
|
|
462
|
+
get q() {
|
|
463
|
+
return this.n;
|
|
460
464
|
}
|
|
461
|
-
get
|
|
465
|
+
get an() {
|
|
462
466
|
return null;
|
|
463
467
|
}
|
|
464
|
-
get
|
|
468
|
+
get h() {
|
|
465
469
|
return true;
|
|
466
470
|
}
|
|
467
|
-
|
|
471
|
+
v() {
|
|
468
472
|
if (KeyFrameAnimationFactory.h == null) {
|
|
469
|
-
KeyFrameAnimationFactory.h = this.
|
|
473
|
+
KeyFrameAnimationFactory.h = this.m;
|
|
470
474
|
}
|
|
471
475
|
}
|
|
472
476
|
b(a) {
|
|
473
|
-
return new AnimationKeyFrameEffect(0, this.
|
|
477
|
+
return new AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
|
|
474
478
|
}
|
|
475
479
|
a(a) {
|
|
476
|
-
return new AnimationKeyFrameEffect(0, this.
|
|
480
|
+
return new AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
|
|
477
481
|
}
|
|
478
|
-
|
|
482
|
+
z(a) {
|
|
479
483
|
if (a == null) {
|
|
480
|
-
for (let b of fromEnum(this.
|
|
484
|
+
for (let b of fromEnum(this.i)) {
|
|
481
485
|
b();
|
|
482
486
|
}
|
|
483
|
-
this.
|
|
487
|
+
this.i.clear();
|
|
484
488
|
}
|
|
485
|
-
this.
|
|
486
|
-
this.
|
|
487
|
-
this.
|
|
488
|
-
let c = this.
|
|
489
|
+
this.m = a;
|
|
490
|
+
this.m.rootWrapper.setStyleProperty("display", "inline-block");
|
|
491
|
+
this.m.rootWrapper.setStyleProperty("position", "relative");
|
|
492
|
+
let c = this.m.createElement("label");
|
|
489
493
|
c.setStyleProperty("position", "relative");
|
|
490
494
|
c.setStyleProperty("display", "inline-block");
|
|
491
495
|
c.setStyleProperty("white-space", "nowrap");
|
|
@@ -494,24 +498,24 @@ export let LabelView = /*@__PURE__*/ (() => {
|
|
|
494
498
|
c.setStyleProperty("overflow", "hidden");
|
|
495
499
|
c.setStyleProperty("height", "1.125rem");
|
|
496
500
|
c.setStyleProperty("backface-visibility", "hidden");
|
|
497
|
-
NativeUI.q(this.
|
|
501
|
+
NativeUI.q(this.m.rootWrapper, this.c.c2);
|
|
498
502
|
c.setStyleProperty("outline-style", "none");
|
|
499
503
|
c.setStyleProperty("box-shadow", "none");
|
|
500
504
|
c.setStyleProperty("font-family", "Verdana");
|
|
501
505
|
c.setStyleProperty("font-size", "1rem");
|
|
502
|
-
this.
|
|
503
|
-
this.
|
|
504
|
-
this.c.
|
|
506
|
+
this.n = c;
|
|
507
|
+
this.m.append(this.n);
|
|
508
|
+
this.c.ck();
|
|
505
509
|
}
|
|
506
|
-
|
|
507
|
-
return this.c.l == 0 ? (this.
|
|
510
|
+
l() {
|
|
511
|
+
return this.c.l == 0 ? (this.j() * 0.5) : 0;
|
|
508
512
|
}
|
|
509
|
-
|
|
510
|
-
this.c.
|
|
513
|
+
aj() {
|
|
514
|
+
this.c.bj = "block";
|
|
511
515
|
let a = new TransformGroup();
|
|
512
516
|
a.j.add(((() => {
|
|
513
517
|
let $ret = new TranslateTransform();
|
|
514
|
-
$ret.k = this.c.l == 0 ? (this.
|
|
518
|
+
$ret.k = this.c.l == 0 ? (this.j() * 0.5) : 0;
|
|
515
519
|
return $ret;
|
|
516
520
|
})()));
|
|
517
521
|
a.j.add(((() => {
|
|
@@ -520,125 +524,188 @@ export let LabelView = /*@__PURE__*/ (() => {
|
|
|
520
524
|
$ret.m = 1;
|
|
521
525
|
return $ret;
|
|
522
526
|
})()));
|
|
523
|
-
NativeUI.af(this.
|
|
524
|
-
this.
|
|
525
|
-
this.
|
|
526
|
-
this.
|
|
527
|
+
NativeUI.af(this.m.rootWrapper, a);
|
|
528
|
+
this.n.setStyleProperty("height", "1.125rem");
|
|
529
|
+
this.m.rootWrapper.setStyleProperty("position", "absolute");
|
|
530
|
+
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
527
531
|
}
|
|
528
|
-
|
|
532
|
+
ak() {
|
|
529
533
|
switch (this.c.s) {
|
|
530
534
|
case 1:
|
|
531
|
-
this.
|
|
535
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "0px");
|
|
532
536
|
break;
|
|
533
537
|
case 2:
|
|
534
|
-
this.
|
|
538
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "-.125rem");
|
|
535
539
|
break;
|
|
536
540
|
case 3:
|
|
537
|
-
this.
|
|
541
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "-.25rem");
|
|
542
|
+
break;
|
|
543
|
+
case 4:
|
|
544
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "-.5rem");
|
|
538
545
|
break;
|
|
539
546
|
}
|
|
540
547
|
}
|
|
541
|
-
|
|
542
|
-
this.
|
|
548
|
+
ai() {
|
|
549
|
+
this.n.setText(this.c.text != null ? this.c.text : "");
|
|
543
550
|
}
|
|
544
|
-
|
|
545
|
-
if (this.
|
|
546
|
-
this.
|
|
547
|
-
if (this.
|
|
548
|
-
this.
|
|
551
|
+
al(a) {
|
|
552
|
+
if (this.r != a) {
|
|
553
|
+
this.r = a;
|
|
554
|
+
if (this.o != null) {
|
|
555
|
+
this.o.setAttribute("d", this.r);
|
|
549
556
|
}
|
|
550
557
|
}
|
|
551
558
|
}
|
|
552
|
-
|
|
553
|
-
if (this.
|
|
554
|
-
this.
|
|
555
|
-
this.
|
|
556
|
-
let ext_ = this.
|
|
559
|
+
ab() {
|
|
560
|
+
if (this.m != null) {
|
|
561
|
+
this.m.rootWrapper.setStyleProperty("display", this.c.bj);
|
|
562
|
+
this.n.setStyleProperty("display", this.c.bj);
|
|
563
|
+
let ext_ = this.m.getExternal(this.c, null, null);
|
|
557
564
|
if (ext_ && ext_._onDisplayChanged) {
|
|
558
565
|
ext_._onDisplayChanged();
|
|
559
566
|
}
|
|
560
567
|
;
|
|
561
568
|
}
|
|
562
569
|
}
|
|
563
|
-
|
|
564
|
-
if (this.
|
|
565
|
-
this.
|
|
566
|
-
this.
|
|
567
|
-
let ext_ = this.
|
|
570
|
+
w() {
|
|
571
|
+
if (this.m != null) {
|
|
572
|
+
this.m.rootWrapper.setStyleProperty("align-items", this.c.bb);
|
|
573
|
+
this.n.setStyleProperty("align-items", this.c.bb);
|
|
574
|
+
let ext_ = this.m.getExternal(this.c, null, null);
|
|
568
575
|
if (ext_ && ext_._onAlignItemsChanged) {
|
|
569
576
|
ext_._onAlignItemsChanged();
|
|
570
577
|
}
|
|
571
578
|
;
|
|
572
579
|
}
|
|
573
580
|
}
|
|
574
|
-
|
|
575
|
-
if (this.
|
|
576
|
-
this.
|
|
577
|
-
this.
|
|
578
|
-
let ext_ = this.
|
|
581
|
+
x() {
|
|
582
|
+
if (this.m != null) {
|
|
583
|
+
this.m.rootWrapper.setStyleProperty("align-self", this.c.bd);
|
|
584
|
+
this.n.setStyleProperty("align-self", this.c.bd);
|
|
585
|
+
let ext_ = this.m.getExternal(this.c, null, null);
|
|
579
586
|
if (ext_ && ext_._onAlignSelfChanged) {
|
|
580
587
|
ext_._onAlignSelfChanged();
|
|
581
588
|
}
|
|
582
589
|
;
|
|
583
590
|
}
|
|
584
591
|
}
|
|
585
|
-
|
|
586
|
-
if (this.
|
|
587
|
-
this.
|
|
588
|
-
this.
|
|
589
|
-
let ext_ = this.
|
|
592
|
+
ac() {
|
|
593
|
+
if (this.m != null) {
|
|
594
|
+
this.m.rootWrapper.setStyleProperty("flex-direction", this.c.bm);
|
|
595
|
+
this.n.setStyleProperty("flex-direction", this.c.bm);
|
|
596
|
+
let ext_ = this.m.getExternal(this.c, null, null);
|
|
590
597
|
if (ext_ && ext_._onFlexDirectionChanged) {
|
|
591
598
|
ext_._onFlexDirectionChanged();
|
|
592
599
|
}
|
|
593
600
|
;
|
|
594
601
|
}
|
|
595
602
|
}
|
|
596
|
-
|
|
597
|
-
if (this.
|
|
598
|
-
this.
|
|
599
|
-
this.
|
|
600
|
-
let ext_ = this.
|
|
603
|
+
ad() {
|
|
604
|
+
if (this.m != null) {
|
|
605
|
+
this.m.rootWrapper.setStyleProperty("flex-grow", this.c.bo);
|
|
606
|
+
this.n.setStyleProperty("flex-grow", this.c.bo);
|
|
607
|
+
let ext_ = this.m.getExternal(this.c, null, null);
|
|
601
608
|
if (ext_ && ext_._onFlexGrowChanged) {
|
|
602
609
|
ext_._onFlexGrowChanged();
|
|
603
610
|
}
|
|
604
611
|
;
|
|
605
612
|
}
|
|
606
613
|
}
|
|
607
|
-
|
|
614
|
+
s(a) {
|
|
608
615
|
}
|
|
609
|
-
|
|
610
|
-
if (this.
|
|
616
|
+
ag() {
|
|
617
|
+
if (this.g()) {
|
|
611
618
|
}
|
|
612
619
|
}
|
|
613
|
-
|
|
614
|
-
let a = this.k
|
|
620
|
+
j() {
|
|
621
|
+
let a = this.k();
|
|
622
|
+
if (a == 0 || isNaN_(a)) {
|
|
623
|
+
let b = NaN;
|
|
624
|
+
let c = this.m.rootWrapper.parent();
|
|
625
|
+
if (c != null) {
|
|
626
|
+
if (c.getChildCount() > 1) {
|
|
627
|
+
let d = null;
|
|
628
|
+
let e = null;
|
|
629
|
+
for (let f = 0; f < c.getChildCount(); f++) {
|
|
630
|
+
let g = c.getChildAt(f);
|
|
631
|
+
if (g.getNativeElement() == this.m.rootWrapper.getNativeElement()) {
|
|
632
|
+
if (f == c.getChildCount() - 1) {
|
|
633
|
+
d = c.getChildAt(f - 1);
|
|
634
|
+
}
|
|
635
|
+
else {
|
|
636
|
+
e = c.getChildAt(f + 1);
|
|
637
|
+
}
|
|
638
|
+
break;
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
this.m.rootWrapper.remove();
|
|
642
|
+
document.body.appendChild(this.m.rootWrapper.getNativeElement());
|
|
643
|
+
b = this.k();
|
|
644
|
+
this.m.rootWrapper.remove();
|
|
645
|
+
if (e != null) {
|
|
646
|
+
e.before(this.m.rootWrapper);
|
|
647
|
+
}
|
|
648
|
+
else {
|
|
649
|
+
c.append(this.m.rootWrapper);
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
else {
|
|
653
|
+
this.m.rootWrapper.remove();
|
|
654
|
+
document.body.appendChild(this.m.rootWrapper.getNativeElement());
|
|
655
|
+
b = this.k();
|
|
656
|
+
this.m.rootWrapper.remove();
|
|
657
|
+
c.append(this.m.rootWrapper);
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
else {
|
|
661
|
+
this.m.rootWrapper.remove();
|
|
662
|
+
document.body.appendChild(this.m.rootWrapper.getNativeElement());
|
|
663
|
+
b = this.k();
|
|
664
|
+
this.m.rootWrapper.remove();
|
|
665
|
+
}
|
|
666
|
+
return b;
|
|
667
|
+
}
|
|
668
|
+
return a;
|
|
669
|
+
}
|
|
670
|
+
k() {
|
|
671
|
+
let a = this.m.rootWrapper.getStyleProperty("height");
|
|
615
672
|
return parseFloat(stringReplace(a, "px", ""));
|
|
616
673
|
}
|
|
617
|
-
|
|
618
|
-
this.c.
|
|
674
|
+
t(a) {
|
|
675
|
+
this.c.cg();
|
|
619
676
|
}
|
|
620
|
-
|
|
621
|
-
this.c.
|
|
677
|
+
u(a) {
|
|
678
|
+
this.c.ch();
|
|
622
679
|
}
|
|
623
|
-
|
|
624
|
-
this.
|
|
625
|
-
this.
|
|
626
|
-
this.
|
|
680
|
+
y() {
|
|
681
|
+
this.f = true;
|
|
682
|
+
this.i.add(this.m.rootWrapper.listen("mouseenter", runOn(this, this.t)));
|
|
683
|
+
this.i.add(this.m.rootWrapper.listen("mouseleave", runOn(this, this.u)));
|
|
627
684
|
}
|
|
628
|
-
|
|
629
|
-
this.
|
|
630
|
-
for (let a of fromEnum(this.
|
|
685
|
+
aa() {
|
|
686
|
+
this.f = false;
|
|
687
|
+
for (let a of fromEnum(this.i)) {
|
|
631
688
|
a();
|
|
632
689
|
}
|
|
633
|
-
this.
|
|
690
|
+
this.i.clear();
|
|
634
691
|
}
|
|
635
|
-
|
|
692
|
+
am(a) {
|
|
636
693
|
if (a != null) {
|
|
637
|
-
this.
|
|
694
|
+
this.n.setStyleProperty("font", a.fontString);
|
|
638
695
|
}
|
|
639
696
|
}
|
|
640
|
-
|
|
641
|
-
NativeUI.q(this.
|
|
697
|
+
ah(a) {
|
|
698
|
+
NativeUI.q(this.n, a);
|
|
699
|
+
}
|
|
700
|
+
e() {
|
|
701
|
+
return ((() => {
|
|
702
|
+
let $ret = new FontInfo();
|
|
703
|
+
$ret.q = "Verdana";
|
|
704
|
+
$ret.f = 13;
|
|
705
|
+
return $ret;
|
|
706
|
+
})());
|
|
707
|
+
}
|
|
708
|
+
af() {
|
|
642
709
|
}
|
|
643
710
|
}
|
|
644
711
|
LabelView.$t = markType(LabelView, 'LabelView');
|
|
@@ -808,6 +875,10 @@ export let InputView = /*@__PURE__*/ (() => {
|
|
|
808
875
|
this.m.setStyleProperty("height", "1.45455rem");
|
|
809
876
|
this.m.setStyleProperty("font-size", ".95455rem");
|
|
810
877
|
break;
|
|
878
|
+
case 4:
|
|
879
|
+
this.m.setStyleProperty("height", "1.388445rem");
|
|
880
|
+
this.m.setStyleProperty("font-size", "0.91116rem");
|
|
881
|
+
break;
|
|
811
882
|
}
|
|
812
883
|
}
|
|
813
884
|
a8() {
|
|
@@ -1847,7 +1918,7 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
1847
1918
|
}
|
|
1848
1919
|
}
|
|
1849
1920
|
static kr(a, b) {
|
|
1850
|
-
return new CornerRadius(1, !isNaN_(a.
|
|
1921
|
+
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);
|
|
1851
1922
|
}
|
|
1852
1923
|
static oh(a, b) {
|
|
1853
1924
|
return new Thickness(1, !isNaN_(a.left) ? a.left : b.left, !isNaN_(a.top) ? a.top : b.top, !isNaN_(a.right) ? a.right : b.right, !isNaN_(a.bottom) ? a.bottom : b.bottom);
|
|
@@ -1868,7 +1939,7 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
1868
1939
|
a.l = 2;
|
|
1869
1940
|
break;
|
|
1870
1941
|
}
|
|
1871
|
-
a.
|
|
1942
|
+
a.cn(this.ai, false);
|
|
1872
1943
|
});
|
|
1873
1944
|
}
|
|
1874
1945
|
kf() {
|
|
@@ -2073,7 +2144,7 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
2073
2144
|
}
|
|
2074
2145
|
onChildrenMutated() {
|
|
2075
2146
|
this.jr((a) => a.view.a8());
|
|
2076
|
-
this.js((a) => a.view.
|
|
2147
|
+
this.js((a) => a.view.aj());
|
|
2077
2148
|
this.jt((a) => a.view.q());
|
|
2078
2149
|
this.ju((a) => a.view.q());
|
|
2079
2150
|
}
|
|
@@ -2201,11 +2272,11 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
2201
2272
|
jv() {
|
|
2202
2273
|
this.jp();
|
|
2203
2274
|
if (this.ai) {
|
|
2204
|
-
this.js((a) => a.
|
|
2275
|
+
this.js((a) => a.cn(true, !this.aj));
|
|
2205
2276
|
this.jr((a) => a.dq(this.ar, !this.aj));
|
|
2206
2277
|
}
|
|
2207
2278
|
else {
|
|
2208
|
-
this.js((a) => a.
|
|
2279
|
+
this.js((a) => a.cn(false, !this.aj));
|
|
2209
2280
|
this.jr((a) => a.dq(this.ar, !this.aj));
|
|
2210
2281
|
}
|
|
2211
2282
|
}
|
|
@@ -2213,12 +2284,12 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
2213
2284
|
this.jp();
|
|
2214
2285
|
if (this.ao) {
|
|
2215
2286
|
let a = 1;
|
|
2216
|
-
this.js((b) => b.
|
|
2287
|
+
this.js((b) => b.am = true);
|
|
2217
2288
|
this.j4(a);
|
|
2218
2289
|
}
|
|
2219
2290
|
else {
|
|
2220
2291
|
let b = -1;
|
|
2221
|
-
this.js((c) => c.
|
|
2292
|
+
this.js((c) => c.am = false);
|
|
2222
2293
|
this.j4(b);
|
|
2223
2294
|
}
|
|
2224
2295
|
}
|
|
@@ -3521,7 +3592,7 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3521
3592
|
}
|
|
3522
3593
|
ensureShift() {
|
|
3523
3594
|
this.jr((a) => a.view.a8());
|
|
3524
|
-
this.js((a) => a.view.
|
|
3595
|
+
this.js((a) => a.view.aj());
|
|
3525
3596
|
this.jt((a) => a.view.q());
|
|
3526
3597
|
this.ju((a) => a.view.q());
|
|
3527
3598
|
}
|
|
@@ -3574,7 +3645,7 @@ export let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
3574
3645
|
if (this.inputs._inner[b].e == null) {
|
|
3575
3646
|
this.inputs._inner[b].e = "Label" + a.l.count.toString();
|
|
3576
3647
|
}
|
|
3577
|
-
a.l.add1(this.inputs._inner[b].
|
|
3648
|
+
a.l.add1(this.inputs._inner[b].av());
|
|
3578
3649
|
}
|
|
3579
3650
|
else if (typeCast(XInput.$, this.inputs._inner[b]) !== null) {
|
|
3580
3651
|
if (this.inputs._inner[b].e == null) {
|
|
@@ -4071,42 +4142,43 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4071
4142
|
this._view = null;
|
|
4072
4143
|
this.aa = null;
|
|
4073
4144
|
this.z = null;
|
|
4145
|
+
this.ab = false;
|
|
4074
4146
|
this.r = 0;
|
|
4075
4147
|
this.q = 1;
|
|
4148
|
+
this.cu = ThemeResolver.ah(XLabel.o, XLabel.dd, XLabel.c6);
|
|
4076
4149
|
this.cr = ThemeResolver.ah(XLabel.o, XLabel.da, XLabel.c3);
|
|
4077
|
-
this.
|
|
4078
|
-
this.
|
|
4079
|
-
this.cq = ThemeResolver.ah(XLabel.o, XLabel.c9, XLabel.c2);
|
|
4150
|
+
this.cs = ThemeResolver.ah(XLabel.o, XLabel.db, XLabel.c4);
|
|
4151
|
+
this.ct = ThemeResolver.ah(XLabel.o, XLabel.dc, XLabel.c5);
|
|
4080
4152
|
this.u = null;
|
|
4081
|
-
this.
|
|
4082
|
-
this.
|
|
4083
|
-
this.
|
|
4153
|
+
this.cy = XLabel.de;
|
|
4154
|
+
this.cv = XLabel.c7;
|
|
4155
|
+
this.cw = XLabel.c8;
|
|
4084
4156
|
this.k = 0;
|
|
4085
|
-
this.
|
|
4086
|
-
this.
|
|
4157
|
+
this.ag = false;
|
|
4158
|
+
this.ae = false;
|
|
4087
4159
|
this.v = null;
|
|
4088
|
-
this.
|
|
4089
|
-
this.
|
|
4090
|
-
this.ay = "inline-block";
|
|
4160
|
+
this.cx = null;
|
|
4161
|
+
this.a3 = "ig-label-" + XLabel.au++;
|
|
4091
4162
|
this.az = "inline-block";
|
|
4092
|
-
this.a0 =
|
|
4093
|
-
this.av = "center";
|
|
4094
|
-
this.aw = "center";
|
|
4095
|
-
this.ar = 0;
|
|
4096
|
-
this.ab = false;
|
|
4163
|
+
this.a0 = "inline-block";
|
|
4097
4164
|
this.a1 = null;
|
|
4098
|
-
this.
|
|
4099
|
-
this.
|
|
4100
|
-
this.
|
|
4101
|
-
this.ai = false;
|
|
4165
|
+
this.aw = "center";
|
|
4166
|
+
this.ax = "center";
|
|
4167
|
+
this.as = 0;
|
|
4102
4168
|
this.ac = false;
|
|
4169
|
+
this.a2 = null;
|
|
4170
|
+
this.ay = null;
|
|
4171
|
+
this.a4 = null;
|
|
4172
|
+
this.af = false;
|
|
4173
|
+
this.aj = false;
|
|
4174
|
+
this.ad = false;
|
|
4175
|
+
this.ai = false;
|
|
4103
4176
|
this.ah = false;
|
|
4104
|
-
this.
|
|
4105
|
-
this.ap = false;
|
|
4177
|
+
this.aq = false;
|
|
4106
4178
|
let a = new LabelView();
|
|
4107
4179
|
a.c = this;
|
|
4108
4180
|
this.view = a;
|
|
4109
|
-
this.view.
|
|
4181
|
+
this.view.ae();
|
|
4110
4182
|
}
|
|
4111
4183
|
get p() {
|
|
4112
4184
|
return this.n;
|
|
@@ -4133,14 +4205,14 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4133
4205
|
a.b = 0;
|
|
4134
4206
|
return a;
|
|
4135
4207
|
}
|
|
4136
|
-
|
|
4137
|
-
this.view.
|
|
4208
|
+
ca() {
|
|
4209
|
+
this.view.v();
|
|
4138
4210
|
let a = false;
|
|
4139
4211
|
if (this.aa == null) {
|
|
4140
4212
|
let b = new TransformGroup();
|
|
4141
4213
|
b.j.add(((() => {
|
|
4142
4214
|
let $ret = new TranslateTransform();
|
|
4143
|
-
$ret.k = this.view.
|
|
4215
|
+
$ret.k = this.view.l();
|
|
4144
4216
|
return $ret;
|
|
4145
4217
|
})()));
|
|
4146
4218
|
b.j.add(((() => {
|
|
@@ -4149,17 +4221,20 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4149
4221
|
$ret.m = 1;
|
|
4150
4222
|
return $ret;
|
|
4151
4223
|
})()));
|
|
4152
|
-
let c = -(this.view.
|
|
4224
|
+
let c = -(this.view.j() * 1.3);
|
|
4153
4225
|
if (this.s == 2) {
|
|
4154
|
-
c = -(this.view.
|
|
4226
|
+
c = -(this.view.j() * 1.05);
|
|
4155
4227
|
}
|
|
4156
4228
|
if (this.s == 3) {
|
|
4157
|
-
c = -(this.view.
|
|
4229
|
+
c = -(this.view.j() * 1.01);
|
|
4230
|
+
}
|
|
4231
|
+
if (this.s == 4) {
|
|
4232
|
+
c = -(this.view.j() * 1.05);
|
|
4158
4233
|
}
|
|
4159
4234
|
let d = new TransformGroup();
|
|
4160
4235
|
d.j.add(((() => {
|
|
4161
4236
|
let $ret = new TranslateTransform();
|
|
4162
|
-
$ret.k = this.l == 2 ? c : -(this.view.
|
|
4237
|
+
$ret.k = this.l == 2 ? c : -(this.view.j() * 0.65);
|
|
4163
4238
|
return $ret;
|
|
4164
4239
|
})()));
|
|
4165
4240
|
d.j.add(((() => {
|
|
@@ -4171,35 +4246,39 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4171
4246
|
this.aa = KeyFrameAnimationFactory.f.c(this.view.b(this.i).m(new AnimationKeyFrameProperty(14, b), new AnimationKeyFrameProperty(2, BrushUtil.h(0, 255, 255, 255))).m(new AnimationKeyFrameProperty(14, d), new AnimationKeyFrameProperty(2, BrushUtil.h(this.l == 2 ? 255 : 0, 255, 255, 255))));
|
|
4172
4247
|
}
|
|
4173
4248
|
if (this.z == null) {
|
|
4174
|
-
this.z = KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new AnimationKeyFrameProperty(7, this.
|
|
4249
|
+
this.z = KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new AnimationKeyFrameProperty(7, this.c2)).m(new AnimationKeyFrameProperty(7, this.cz)));
|
|
4175
4250
|
}
|
|
4176
4251
|
}
|
|
4177
|
-
|
|
4252
|
+
cl(a, b) {
|
|
4178
4253
|
if ((b > 0 && a.playbackRate < 0) || (b < 0 && a.playbackRate > 0)) {
|
|
4179
4254
|
a.reverse();
|
|
4180
|
-
if (this.
|
|
4255
|
+
if (this.aq) {
|
|
4181
4256
|
a.finish();
|
|
4182
|
-
this.
|
|
4257
|
+
this.cb(a);
|
|
4183
4258
|
return;
|
|
4184
4259
|
}
|
|
4185
|
-
a.finished.f((c) => this.
|
|
4260
|
+
a.finished.f((c) => this.cb(a));
|
|
4186
4261
|
}
|
|
4187
4262
|
else {
|
|
4188
4263
|
a.play();
|
|
4189
|
-
if (this.
|
|
4264
|
+
if (this.aq) {
|
|
4190
4265
|
a.finish();
|
|
4191
|
-
this.
|
|
4266
|
+
this.cb(a);
|
|
4192
4267
|
return;
|
|
4193
4268
|
}
|
|
4194
|
-
a.finished.f((c) => this.
|
|
4269
|
+
a.finished.f((c) => this.cb(a));
|
|
4195
4270
|
}
|
|
4196
4271
|
}
|
|
4197
|
-
|
|
4272
|
+
cb(a) {
|
|
4198
4273
|
a.commitStyles();
|
|
4199
|
-
if (a == this.aa && this.
|
|
4274
|
+
if (a == this.aa && this.ai) {
|
|
4200
4275
|
this.aa = null;
|
|
4276
|
+
if (this.ab) {
|
|
4277
|
+
this.ab = false;
|
|
4278
|
+
this.cf();
|
|
4279
|
+
}
|
|
4201
4280
|
}
|
|
4202
|
-
if (a == this.z && this.
|
|
4281
|
+
if (a == this.z && this.ah) {
|
|
4203
4282
|
this.z = null;
|
|
4204
4283
|
}
|
|
4205
4284
|
}
|
|
@@ -4207,15 +4286,15 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4207
4286
|
super.h(a, b, c);
|
|
4208
4287
|
switch (a) {
|
|
4209
4288
|
case "BaseTheme":
|
|
4210
|
-
this.
|
|
4211
|
-
this.
|
|
4289
|
+
this.co(this.p);
|
|
4290
|
+
this.cq();
|
|
4212
4291
|
break;
|
|
4213
4292
|
case "TextColor":
|
|
4214
4293
|
case "HoverTextColor":
|
|
4215
4294
|
case "TextStyle":
|
|
4216
4295
|
case "HighlightTextColor":
|
|
4217
4296
|
case "HoverHighlightTextColor":
|
|
4218
|
-
this.
|
|
4297
|
+
this.cq();
|
|
4219
4298
|
break;
|
|
4220
4299
|
case "ActualTextColor":
|
|
4221
4300
|
case "ActualHoverTextColor":
|
|
@@ -4227,7 +4306,7 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4227
4306
|
this.aa = null;
|
|
4228
4307
|
}
|
|
4229
4308
|
else {
|
|
4230
|
-
this.
|
|
4309
|
+
this.ai = true;
|
|
4231
4310
|
}
|
|
4232
4311
|
}
|
|
4233
4312
|
if (this.z != null) {
|
|
@@ -4235,29 +4314,29 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4235
4314
|
this.z = null;
|
|
4236
4315
|
}
|
|
4237
4316
|
else {
|
|
4238
|
-
this.
|
|
4317
|
+
this.ah = true;
|
|
4239
4318
|
}
|
|
4240
4319
|
}
|
|
4241
|
-
this.
|
|
4320
|
+
this.cp();
|
|
4242
4321
|
break;
|
|
4243
4322
|
case "Text":
|
|
4244
|
-
this.view.
|
|
4323
|
+
this.view.ai();
|
|
4245
4324
|
break;
|
|
4246
4325
|
case "Density":
|
|
4247
4326
|
this.s = this.t == 0 ? 1 : this.t;
|
|
4248
4327
|
break;
|
|
4249
4328
|
case "ActualDensity":
|
|
4250
|
-
this.view.
|
|
4251
|
-
this.view.
|
|
4329
|
+
this.view.ak();
|
|
4330
|
+
this.view.aj();
|
|
4252
4331
|
break;
|
|
4253
4332
|
case "InputGroup":
|
|
4254
|
-
this.view.
|
|
4333
|
+
this.view.aj();
|
|
4255
4334
|
break;
|
|
4256
4335
|
case "IsHighlighted":
|
|
4257
|
-
this.
|
|
4336
|
+
this.ce();
|
|
4258
4337
|
break;
|
|
4259
4338
|
case "IsShifted":
|
|
4260
|
-
this.
|
|
4339
|
+
this.cf();
|
|
4261
4340
|
break;
|
|
4262
4341
|
case "ShiftType":
|
|
4263
4342
|
if (this.aa != null) {
|
|
@@ -4265,66 +4344,88 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4265
4344
|
this.aa = null;
|
|
4266
4345
|
}
|
|
4267
4346
|
else {
|
|
4268
|
-
this.
|
|
4347
|
+
this.ai = true;
|
|
4269
4348
|
}
|
|
4270
4349
|
}
|
|
4271
|
-
this.
|
|
4350
|
+
this.ci();
|
|
4272
4351
|
break;
|
|
4273
4352
|
case "Display":
|
|
4274
|
-
this.view.
|
|
4353
|
+
this.view.ab();
|
|
4275
4354
|
break;
|
|
4276
4355
|
case "FlexDirection":
|
|
4277
|
-
this.view.
|
|
4356
|
+
this.view.ac();
|
|
4278
4357
|
break;
|
|
4279
4358
|
case "FlexGrow":
|
|
4280
|
-
this.view.
|
|
4359
|
+
this.view.ad();
|
|
4281
4360
|
break;
|
|
4282
4361
|
case "AlignItems":
|
|
4283
|
-
this.view.
|
|
4362
|
+
this.view.w();
|
|
4284
4363
|
break;
|
|
4285
4364
|
case "AlignSelf":
|
|
4286
|
-
this.view.
|
|
4365
|
+
this.view.x();
|
|
4287
4366
|
break;
|
|
4288
4367
|
}
|
|
4289
4368
|
}
|
|
4290
|
-
|
|
4291
|
-
this.view.
|
|
4369
|
+
ci() {
|
|
4370
|
+
this.view.aj();
|
|
4292
4371
|
}
|
|
4293
|
-
|
|
4294
|
-
this.
|
|
4372
|
+
cf() {
|
|
4373
|
+
this.view.af();
|
|
4374
|
+
this.ca();
|
|
4295
4375
|
let a = 1;
|
|
4296
|
-
let b = this.
|
|
4376
|
+
let b = this.ao;
|
|
4297
4377
|
if (!b) {
|
|
4298
4378
|
a = -1;
|
|
4299
4379
|
}
|
|
4300
|
-
this.
|
|
4380
|
+
this.cl(this.aa, a);
|
|
4301
4381
|
}
|
|
4302
|
-
|
|
4303
|
-
this.
|
|
4382
|
+
ce() {
|
|
4383
|
+
this.ca();
|
|
4304
4384
|
let a = 1;
|
|
4305
|
-
let b = this.
|
|
4385
|
+
let b = this.am;
|
|
4306
4386
|
if (!b) {
|
|
4307
4387
|
a = -1;
|
|
4308
4388
|
}
|
|
4309
|
-
this.
|
|
4389
|
+
this.cl(this.z, a);
|
|
4390
|
+
}
|
|
4391
|
+
onSizeReady() {
|
|
4392
|
+
if (this.aa != null) {
|
|
4393
|
+
this.b9();
|
|
4394
|
+
if (this.ao) {
|
|
4395
|
+
this.view.aj();
|
|
4396
|
+
this.cf();
|
|
4397
|
+
}
|
|
4398
|
+
}
|
|
4399
|
+
}
|
|
4400
|
+
b9() {
|
|
4401
|
+
if (this.aa != null && this.aa.playState == 3) {
|
|
4402
|
+
this.aa = null;
|
|
4403
|
+
}
|
|
4404
|
+
else {
|
|
4405
|
+
this.ab = true;
|
|
4406
|
+
this.ai = true;
|
|
4407
|
+
}
|
|
4310
4408
|
}
|
|
4311
|
-
|
|
4312
|
-
this.
|
|
4313
|
-
this.
|
|
4314
|
-
this.
|
|
4409
|
+
cq() {
|
|
4410
|
+
this.c2 = this.di != null ? this.di : XLabel.de;
|
|
4411
|
+
this.c1 = this.dh != null ? this.dh : XLabel.de;
|
|
4412
|
+
this.cz = this.df != null ? this.df : XLabel.c7;
|
|
4315
4413
|
this.w = this.y != null ? this.y : XLabel.x;
|
|
4316
4414
|
}
|
|
4317
|
-
|
|
4415
|
+
cp() {
|
|
4318
4416
|
if (this.w != null) {
|
|
4319
|
-
this.view.
|
|
4417
|
+
this.view.am(this.w);
|
|
4320
4418
|
}
|
|
4321
|
-
|
|
4419
|
+
else {
|
|
4420
|
+
this.view.am(this.view.e());
|
|
4421
|
+
}
|
|
4422
|
+
this.view.ah(this.c2);
|
|
4322
4423
|
}
|
|
4323
|
-
|
|
4324
|
-
XLabel.
|
|
4325
|
-
XLabel.
|
|
4326
|
-
XLabel.
|
|
4327
|
-
XLabel.
|
|
4424
|
+
co(a) {
|
|
4425
|
+
XLabel.de = ThemeResolver.ah(a, XLabel.dd, XLabel.c6);
|
|
4426
|
+
XLabel.c7 = ThemeResolver.ah(a, XLabel.da, XLabel.c3);
|
|
4427
|
+
XLabel.c9 = ThemeResolver.ah(a, XLabel.dc, XLabel.c5);
|
|
4428
|
+
XLabel.c8 = ThemeResolver.ah(a, XLabel.db, XLabel.c4);
|
|
4328
4429
|
}
|
|
4329
4430
|
get t() {
|
|
4330
4431
|
return this.r;
|
|
@@ -4346,6 +4447,16 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4346
4447
|
this.g("ActualDensity", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
|
|
4347
4448
|
}
|
|
4348
4449
|
}
|
|
4450
|
+
get c2() {
|
|
4451
|
+
return this.cu;
|
|
4452
|
+
}
|
|
4453
|
+
set c2(a) {
|
|
4454
|
+
let b = this.cu;
|
|
4455
|
+
this.cu = a;
|
|
4456
|
+
if (b != this.cu) {
|
|
4457
|
+
this.g("ActualTextColor", b, a);
|
|
4458
|
+
}
|
|
4459
|
+
}
|
|
4349
4460
|
get cz() {
|
|
4350
4461
|
return this.cr;
|
|
4351
4462
|
}
|
|
@@ -4353,36 +4464,26 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4353
4464
|
let b = this.cr;
|
|
4354
4465
|
this.cr = a;
|
|
4355
4466
|
if (b != this.cr) {
|
|
4356
|
-
this.g("ActualTextColor", b, a);
|
|
4357
|
-
}
|
|
4358
|
-
}
|
|
4359
|
-
get cw() {
|
|
4360
|
-
return this.co;
|
|
4361
|
-
}
|
|
4362
|
-
set cw(a) {
|
|
4363
|
-
let b = this.co;
|
|
4364
|
-
this.co = a;
|
|
4365
|
-
if (b != this.co) {
|
|
4366
4467
|
this.g("ActualHighlightTextColor", b, a);
|
|
4367
4468
|
}
|
|
4368
4469
|
}
|
|
4369
|
-
get
|
|
4370
|
-
return this.
|
|
4470
|
+
get c0() {
|
|
4471
|
+
return this.cs;
|
|
4371
4472
|
}
|
|
4372
|
-
set
|
|
4373
|
-
let b = this.
|
|
4374
|
-
this.
|
|
4375
|
-
if (b != this.
|
|
4473
|
+
set c0(a) {
|
|
4474
|
+
let b = this.cs;
|
|
4475
|
+
this.cs = a;
|
|
4476
|
+
if (b != this.cs) {
|
|
4376
4477
|
this.g("ActualHoverHighlightTextColor", b, a);
|
|
4377
4478
|
}
|
|
4378
4479
|
}
|
|
4379
|
-
get
|
|
4380
|
-
return this.
|
|
4480
|
+
get c1() {
|
|
4481
|
+
return this.ct;
|
|
4381
4482
|
}
|
|
4382
|
-
set
|
|
4383
|
-
let b = this.
|
|
4384
|
-
this.
|
|
4385
|
-
if (b != this.
|
|
4483
|
+
set c1(a) {
|
|
4484
|
+
let b = this.ct;
|
|
4485
|
+
this.ct = a;
|
|
4486
|
+
if (b != this.ct) {
|
|
4386
4487
|
this.g("ActualHoverTextColor", b, a);
|
|
4387
4488
|
}
|
|
4388
4489
|
}
|
|
@@ -4396,6 +4497,16 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4396
4497
|
this.g("ActualTextStyle", b, a);
|
|
4397
4498
|
}
|
|
4398
4499
|
}
|
|
4500
|
+
get di() {
|
|
4501
|
+
return this.cy;
|
|
4502
|
+
}
|
|
4503
|
+
set di(a) {
|
|
4504
|
+
let b = this.cy;
|
|
4505
|
+
this.cy = a;
|
|
4506
|
+
if (b != this.cy) {
|
|
4507
|
+
this.g("TextColor", b, a);
|
|
4508
|
+
}
|
|
4509
|
+
}
|
|
4399
4510
|
get df() {
|
|
4400
4511
|
return this.cv;
|
|
4401
4512
|
}
|
|
@@ -4403,26 +4514,16 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4403
4514
|
let b = this.cv;
|
|
4404
4515
|
this.cv = a;
|
|
4405
4516
|
if (b != this.cv) {
|
|
4406
|
-
this.g("TextColor", b, a);
|
|
4407
|
-
}
|
|
4408
|
-
}
|
|
4409
|
-
get dc() {
|
|
4410
|
-
return this.cs;
|
|
4411
|
-
}
|
|
4412
|
-
set dc(a) {
|
|
4413
|
-
let b = this.cs;
|
|
4414
|
-
this.cs = a;
|
|
4415
|
-
if (b != this.cs) {
|
|
4416
4517
|
this.g("HighlightTextColor", b, a);
|
|
4417
4518
|
}
|
|
4418
4519
|
}
|
|
4419
|
-
get
|
|
4420
|
-
return this.
|
|
4520
|
+
get dg() {
|
|
4521
|
+
return this.cw;
|
|
4421
4522
|
}
|
|
4422
|
-
set
|
|
4423
|
-
let b = this.
|
|
4424
|
-
this.
|
|
4425
|
-
if (b != this.
|
|
4523
|
+
set dg(a) {
|
|
4524
|
+
let b = this.cw;
|
|
4525
|
+
this.cw = a;
|
|
4526
|
+
if (b != this.cw) {
|
|
4426
4527
|
this.g("HoverHighlightTextColor", b, a);
|
|
4427
4528
|
}
|
|
4428
4529
|
}
|
|
@@ -4436,45 +4537,45 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4436
4537
|
this.g("ShiftType", enumGetBox(LabelShiftType_$type, b), enumGetBox(LabelShiftType_$type, a));
|
|
4437
4538
|
}
|
|
4438
4539
|
}
|
|
4439
|
-
get
|
|
4440
|
-
return this.
|
|
4540
|
+
get ao() {
|
|
4541
|
+
return this.ag;
|
|
4441
4542
|
}
|
|
4442
|
-
set
|
|
4443
|
-
let b = this.
|
|
4444
|
-
this.
|
|
4445
|
-
if (b != this.
|
|
4543
|
+
set ao(a) {
|
|
4544
|
+
let b = this.ag;
|
|
4545
|
+
this.ag = a;
|
|
4546
|
+
if (b != this.ag) {
|
|
4446
4547
|
this.g("IsShifted", b, a);
|
|
4447
4548
|
}
|
|
4448
4549
|
}
|
|
4449
|
-
|
|
4450
|
-
let c = this.
|
|
4550
|
+
cn(a, b = true) {
|
|
4551
|
+
let c = this.aq;
|
|
4451
4552
|
if (!b) {
|
|
4452
|
-
this.
|
|
4553
|
+
this.aq = true;
|
|
4453
4554
|
}
|
|
4454
4555
|
try {
|
|
4455
|
-
this.
|
|
4556
|
+
this.ao = a;
|
|
4456
4557
|
}
|
|
4457
4558
|
finally {
|
|
4458
4559
|
if (!b) {
|
|
4459
|
-
this.
|
|
4560
|
+
this.aq = c;
|
|
4460
4561
|
}
|
|
4461
4562
|
}
|
|
4462
4563
|
}
|
|
4463
|
-
get
|
|
4464
|
-
return this.
|
|
4564
|
+
get am() {
|
|
4565
|
+
return this.ae;
|
|
4465
4566
|
}
|
|
4466
|
-
set
|
|
4467
|
-
let b = this.
|
|
4468
|
-
this.
|
|
4469
|
-
if (b != this.
|
|
4567
|
+
set am(a) {
|
|
4568
|
+
let b = this.ae;
|
|
4569
|
+
this.ae = a;
|
|
4570
|
+
if (b != this.ae) {
|
|
4470
4571
|
this.g("IsHighlighted", b, a);
|
|
4471
4572
|
}
|
|
4472
4573
|
}
|
|
4473
|
-
|
|
4474
|
-
this.
|
|
4574
|
+
cg() {
|
|
4575
|
+
this.an = true;
|
|
4475
4576
|
}
|
|
4476
|
-
|
|
4477
|
-
this.
|
|
4577
|
+
ch() {
|
|
4578
|
+
this.an = false;
|
|
4478
4579
|
}
|
|
4479
4580
|
get y() {
|
|
4480
4581
|
return this.v;
|
|
@@ -4486,192 +4587,192 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4486
4587
|
this.g("TextStyle", b, a);
|
|
4487
4588
|
}
|
|
4488
4589
|
}
|
|
4489
|
-
get
|
|
4490
|
-
return this.
|
|
4590
|
+
get dh() {
|
|
4591
|
+
return this.cx;
|
|
4491
4592
|
}
|
|
4492
|
-
set
|
|
4493
|
-
let b = this.
|
|
4494
|
-
this.
|
|
4495
|
-
if (b != this.
|
|
4593
|
+
set dh(a) {
|
|
4594
|
+
let b = this.cx;
|
|
4595
|
+
this.cx = a;
|
|
4596
|
+
if (b != this.cx) {
|
|
4496
4597
|
this.g("HoverTextColor", b, a);
|
|
4497
4598
|
}
|
|
4498
4599
|
}
|
|
4499
|
-
get
|
|
4500
|
-
return this.
|
|
4600
|
+
get bv() {
|
|
4601
|
+
return this.a3;
|
|
4501
4602
|
}
|
|
4502
|
-
set
|
|
4503
|
-
let b = this.
|
|
4504
|
-
this.
|
|
4505
|
-
if (b != this.
|
|
4603
|
+
set bv(a) {
|
|
4604
|
+
let b = this.a3;
|
|
4605
|
+
this.a3 = a;
|
|
4606
|
+
if (b != this.a3) {
|
|
4506
4607
|
this.g("Id", b, a);
|
|
4507
4608
|
}
|
|
4508
4609
|
}
|
|
4509
|
-
get
|
|
4510
|
-
return this.ay;
|
|
4511
|
-
}
|
|
4512
|
-
set bi(a) {
|
|
4513
|
-
let b = this.ay;
|
|
4514
|
-
this.ay = a;
|
|
4515
|
-
if (b != this.ay) {
|
|
4516
|
-
this.g("Display", b, a);
|
|
4517
|
-
}
|
|
4518
|
-
}
|
|
4519
|
-
get bl() {
|
|
4610
|
+
get bj() {
|
|
4520
4611
|
return this.az;
|
|
4521
4612
|
}
|
|
4522
|
-
set
|
|
4613
|
+
set bj(a) {
|
|
4523
4614
|
let b = this.az;
|
|
4524
4615
|
this.az = a;
|
|
4525
4616
|
if (b != this.az) {
|
|
4526
|
-
this.g("
|
|
4617
|
+
this.g("Display", b, a);
|
|
4527
4618
|
}
|
|
4528
4619
|
}
|
|
4529
|
-
get
|
|
4620
|
+
get bm() {
|
|
4530
4621
|
return this.a0;
|
|
4531
4622
|
}
|
|
4532
|
-
set
|
|
4623
|
+
set bm(a) {
|
|
4533
4624
|
let b = this.a0;
|
|
4534
4625
|
this.a0 = a;
|
|
4535
4626
|
if (b != this.a0) {
|
|
4536
|
-
this.g("
|
|
4627
|
+
this.g("FlexDirection", b, a);
|
|
4537
4628
|
}
|
|
4538
4629
|
}
|
|
4539
|
-
get
|
|
4540
|
-
return this.
|
|
4630
|
+
get bo() {
|
|
4631
|
+
return this.a1;
|
|
4541
4632
|
}
|
|
4542
|
-
set
|
|
4543
|
-
let b = this.
|
|
4544
|
-
this.
|
|
4545
|
-
if (b != this.
|
|
4546
|
-
this.g("
|
|
4633
|
+
set bo(a) {
|
|
4634
|
+
let b = this.a1;
|
|
4635
|
+
this.a1 = a;
|
|
4636
|
+
if (b != this.a1) {
|
|
4637
|
+
this.g("FlexGrow", b, a);
|
|
4547
4638
|
}
|
|
4548
4639
|
}
|
|
4549
|
-
get
|
|
4640
|
+
get bb() {
|
|
4550
4641
|
return this.aw;
|
|
4551
4642
|
}
|
|
4552
|
-
set
|
|
4643
|
+
set bb(a) {
|
|
4553
4644
|
let b = this.aw;
|
|
4554
4645
|
this.aw = a;
|
|
4555
4646
|
if (b != this.aw) {
|
|
4647
|
+
this.g("AlignItems", b, a);
|
|
4648
|
+
}
|
|
4649
|
+
}
|
|
4650
|
+
get bd() {
|
|
4651
|
+
return this.ax;
|
|
4652
|
+
}
|
|
4653
|
+
set bd(a) {
|
|
4654
|
+
let b = this.ax;
|
|
4655
|
+
this.ax = a;
|
|
4656
|
+
if (b != this.ax) {
|
|
4556
4657
|
this.g("AlignSelf", b, a);
|
|
4557
4658
|
}
|
|
4558
4659
|
}
|
|
4559
|
-
get
|
|
4560
|
-
return this.
|
|
4660
|
+
get ak() {
|
|
4661
|
+
return this.ac;
|
|
4561
4662
|
}
|
|
4562
|
-
get
|
|
4563
|
-
return this.
|
|
4663
|
+
get at() {
|
|
4664
|
+
return this.as;
|
|
4564
4665
|
}
|
|
4565
|
-
set
|
|
4566
|
-
let b = this.
|
|
4567
|
-
this.
|
|
4568
|
-
this.
|
|
4569
|
-
if (b != this.
|
|
4666
|
+
set at(a) {
|
|
4667
|
+
let b = this.as;
|
|
4668
|
+
this.as = a;
|
|
4669
|
+
this.ac = true;
|
|
4670
|
+
if (b != this.as) {
|
|
4570
4671
|
this.g("TabIndex", b, a);
|
|
4571
4672
|
}
|
|
4572
4673
|
}
|
|
4573
|
-
get
|
|
4574
|
-
return this.
|
|
4674
|
+
get bq() {
|
|
4675
|
+
return this.a2;
|
|
4575
4676
|
}
|
|
4576
|
-
set
|
|
4577
|
-
let b = this.
|
|
4578
|
-
this.
|
|
4579
|
-
if (b != this.
|
|
4677
|
+
set bq(a) {
|
|
4678
|
+
let b = this.a2;
|
|
4679
|
+
this.a2 = a;
|
|
4680
|
+
if (b != this.a2) {
|
|
4580
4681
|
this.g("TabIndex", b, a);
|
|
4581
4682
|
}
|
|
4582
4683
|
}
|
|
4583
|
-
get
|
|
4584
|
-
return this.
|
|
4684
|
+
get bf() {
|
|
4685
|
+
return this.ay;
|
|
4585
4686
|
}
|
|
4586
|
-
set
|
|
4587
|
-
let b = this.
|
|
4588
|
-
this.
|
|
4589
|
-
if (b != this.
|
|
4687
|
+
set bf(a) {
|
|
4688
|
+
let b = this.ay;
|
|
4689
|
+
this.ay = a;
|
|
4690
|
+
if (b != this.ay) {
|
|
4590
4691
|
this.g("AriaLabel", b, a);
|
|
4591
4692
|
}
|
|
4592
4693
|
}
|
|
4593
4694
|
get text() {
|
|
4594
|
-
return this.
|
|
4695
|
+
return this.a4;
|
|
4595
4696
|
}
|
|
4596
4697
|
set text(a) {
|
|
4597
|
-
let b = this.
|
|
4598
|
-
this.
|
|
4599
|
-
if (b != this.
|
|
4698
|
+
let b = this.a4;
|
|
4699
|
+
this.a4 = a;
|
|
4700
|
+
if (b != this.a4) {
|
|
4600
4701
|
this.g("Text", b, a);
|
|
4601
4702
|
}
|
|
4602
4703
|
}
|
|
4603
|
-
get
|
|
4604
|
-
return this.
|
|
4704
|
+
get an() {
|
|
4705
|
+
return this.af;
|
|
4605
4706
|
}
|
|
4606
|
-
set
|
|
4607
|
-
let b = this.
|
|
4608
|
-
this.
|
|
4609
|
-
if (b != this.
|
|
4707
|
+
set an(a) {
|
|
4708
|
+
let b = this.af;
|
|
4709
|
+
this.af = a;
|
|
4710
|
+
if (b != this.af) {
|
|
4610
4711
|
this.g("IsHover", b, a);
|
|
4611
4712
|
}
|
|
4612
4713
|
}
|
|
4613
|
-
get
|
|
4614
|
-
return this.
|
|
4714
|
+
get ar() {
|
|
4715
|
+
return this.aj;
|
|
4615
4716
|
}
|
|
4616
|
-
set
|
|
4617
|
-
let b = this.
|
|
4618
|
-
this.
|
|
4619
|
-
if (b != this.
|
|
4717
|
+
set ar(a) {
|
|
4718
|
+
let b = this.aj;
|
|
4719
|
+
this.aj = a;
|
|
4720
|
+
if (b != this.aj) {
|
|
4620
4721
|
this.g("Value", b, a);
|
|
4621
4722
|
}
|
|
4622
4723
|
}
|
|
4623
4724
|
get disabled() {
|
|
4624
|
-
return this.
|
|
4725
|
+
return this.ad;
|
|
4625
4726
|
}
|
|
4626
4727
|
set disabled(a) {
|
|
4627
|
-
let b = this.
|
|
4628
|
-
this.
|
|
4629
|
-
if (b != this.
|
|
4728
|
+
let b = this.ad;
|
|
4729
|
+
this.ad = a;
|
|
4730
|
+
if (b != this.ad) {
|
|
4630
4731
|
this.g("IsDisabled", b, a);
|
|
4631
4732
|
}
|
|
4632
4733
|
}
|
|
4633
|
-
|
|
4634
|
-
this.view.
|
|
4734
|
+
ck() {
|
|
4735
|
+
this.view.ai();
|
|
4635
4736
|
}
|
|
4636
4737
|
onDetachedFromUI() {
|
|
4637
|
-
this.view.
|
|
4738
|
+
this.view.aa();
|
|
4638
4739
|
}
|
|
4639
4740
|
onAttachedToUI() {
|
|
4640
|
-
this.view.
|
|
4741
|
+
this.view.y();
|
|
4641
4742
|
}
|
|
4642
|
-
|
|
4643
|
-
return this.view.
|
|
4743
|
+
ap() {
|
|
4744
|
+
return this.view.g();
|
|
4644
4745
|
}
|
|
4645
|
-
|
|
4746
|
+
av() {
|
|
4646
4747
|
return this.j();
|
|
4647
4748
|
}
|
|
4648
|
-
|
|
4749
|
+
bl() {
|
|
4649
4750
|
let a = this.j();
|
|
4650
4751
|
return a.q();
|
|
4651
4752
|
}
|
|
4652
4753
|
j() {
|
|
4653
4754
|
let a = new LabelVisualModelExport();
|
|
4654
|
-
let b = this.view.
|
|
4755
|
+
let b = this.view.q;
|
|
4655
4756
|
a.c = this.p;
|
|
4656
4757
|
a.e = this.t;
|
|
4657
4758
|
a.d = this.s;
|
|
4658
4759
|
a.a = AppearanceHelper.a(NativeUI.al(b));
|
|
4659
4760
|
a.b = this.l;
|
|
4660
|
-
a.i = this.
|
|
4661
|
-
a.g = this.
|
|
4662
|
-
a.m = this.
|
|
4663
|
-
a.n = this.
|
|
4664
|
-
a.o = this.
|
|
4665
|
-
a.l = this.
|
|
4761
|
+
a.i = this.ao;
|
|
4762
|
+
a.g = this.am;
|
|
4763
|
+
a.m = this.bj;
|
|
4764
|
+
a.n = this.bm;
|
|
4765
|
+
a.o = this.bo;
|
|
4766
|
+
a.l = this.bb;
|
|
4666
4767
|
a.r = this.text;
|
|
4667
|
-
a.h = this.
|
|
4668
|
-
a.j = this.
|
|
4768
|
+
a.h = this.an;
|
|
4769
|
+
a.j = this.ar;
|
|
4669
4770
|
a.f = this.disabled;
|
|
4670
4771
|
a.p = this.e;
|
|
4671
4772
|
if (this.w != null) {
|
|
4672
4773
|
let c = this.w;
|
|
4673
4774
|
if (this.view != null && c.q == null) {
|
|
4674
|
-
let d = this.view.
|
|
4775
|
+
let d = this.view.m;
|
|
4675
4776
|
let e = FontUtil.getFontInfoFromString(d, c.fontString);
|
|
4676
4777
|
c.q = e.q;
|
|
4677
4778
|
c.f = e.f;
|
|
@@ -4699,25 +4800,25 @@ export let XLabel = /*@__PURE__*/ (() => {
|
|
|
4699
4800
|
return a;
|
|
4700
4801
|
}
|
|
4701
4802
|
provideContainer(a) {
|
|
4702
|
-
this.view.
|
|
4803
|
+
this.view.z(a);
|
|
4703
4804
|
}
|
|
4704
4805
|
}
|
|
4705
4806
|
XLabel.$t = markType(XLabel, 'XLabel', XInputGroupItem.$);
|
|
4706
|
-
XLabel.
|
|
4707
|
-
XLabel.
|
|
4708
|
-
XLabel.
|
|
4709
|
-
XLabel.
|
|
4710
|
-
XLabel.
|
|
4711
|
-
XLabel.
|
|
4712
|
-
XLabel.
|
|
4713
|
-
XLabel.
|
|
4807
|
+
XLabel.dd = BrushUtil.h(221, 0, 0, 0);
|
|
4808
|
+
XLabel.da = BrushUtil.h(255, 0, 153, 155);
|
|
4809
|
+
XLabel.dc = BrushUtil.h(221, 0, 0, 0);
|
|
4810
|
+
XLabel.db = BrushUtil.h(255, 0, 153, 155);
|
|
4811
|
+
XLabel.c6 = BrushUtil.h(255, 24, 29, 31);
|
|
4812
|
+
XLabel.c3 = BrushUtil.h(255, 33, 150, 243);
|
|
4813
|
+
XLabel.c5 = BrushUtil.h(255, 24, 29, 31);
|
|
4814
|
+
XLabel.c4 = BrushUtil.h(255, 33, 150, 243);
|
|
4714
4815
|
XLabel.o = 2;
|
|
4715
|
-
XLabel.
|
|
4716
|
-
XLabel.
|
|
4717
|
-
XLabel.
|
|
4718
|
-
XLabel.
|
|
4816
|
+
XLabel.de = ThemeResolver.ah(XLabel.o, XLabel.dd, XLabel.c6);
|
|
4817
|
+
XLabel.c7 = ThemeResolver.ah(XLabel.o, XLabel.da, XLabel.c3);
|
|
4818
|
+
XLabel.c9 = ThemeResolver.ah(XLabel.o, XLabel.dc, XLabel.c5);
|
|
4819
|
+
XLabel.c8 = ThemeResolver.ah(XLabel.o, XLabel.db, XLabel.c4);
|
|
4719
4820
|
XLabel.x = null;
|
|
4720
|
-
XLabel.
|
|
4821
|
+
XLabel.au = 0;
|
|
4721
4822
|
return XLabel;
|
|
4722
4823
|
})();
|
|
4723
4824
|
/**
|