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
|
@@ -20,11 +20,11 @@ import { TranslateTransform } from "igniteui-angular-core";
|
|
|
20
20
|
import { SuffixShiftType_$type } from "./SuffixShiftType";
|
|
21
21
|
import { PrefixShiftType_$type } from "./PrefixShiftType";
|
|
22
22
|
import { LabelShiftType_$type } from "./LabelShiftType";
|
|
23
|
+
import { isNaN_ } from "igniteui-angular-core";
|
|
23
24
|
import { HorizontalAlignment_$type } from "igniteui-angular-core";
|
|
24
25
|
import { MouseButtonEventArgs } from "igniteui-angular-core";
|
|
25
26
|
import { KeyEventArgs } from "igniteui-angular-core";
|
|
26
27
|
import { InputShiftType_$type } from "./InputShiftType";
|
|
27
|
-
import { isNaN_ } from "igniteui-angular-core";
|
|
28
28
|
import { SuffixVisualModelExport } from "./SuffixVisualModelExport";
|
|
29
29
|
import { PrefixVisualModelExport } from "./PrefixVisualModelExport";
|
|
30
30
|
import { InputGroupDisplayType_$type } from "./InputGroupDisplayType";
|
|
@@ -72,7 +72,7 @@ var InputGroupView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
72
72
|
};
|
|
73
73
|
InputGroupView.prototype.ac = function (a) {
|
|
74
74
|
if (typeCast(XLabel.$, a) !== null) {
|
|
75
|
-
a.
|
|
75
|
+
a.bd = "flex-start";
|
|
76
76
|
}
|
|
77
77
|
};
|
|
78
78
|
InputGroupView.prototype.ae = function (a) {
|
|
@@ -246,6 +246,9 @@ var InputGroupView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
246
246
|
case 3:
|
|
247
247
|
this.p.setStyleProperty("padding-top", ".81818rem");
|
|
248
248
|
break;
|
|
249
|
+
case 4:
|
|
250
|
+
this.p.setStyleProperty("padding-top", ".68899rem");
|
|
251
|
+
break;
|
|
249
252
|
}
|
|
250
253
|
};
|
|
251
254
|
InputGroupView.prototype.aa = function (a) {
|
|
@@ -291,7 +294,7 @@ var InputGroupView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
291
294
|
}
|
|
292
295
|
};
|
|
293
296
|
InputGroupView.prototype.k = function (a) {
|
|
294
|
-
return a.view.
|
|
297
|
+
return a.view.j();
|
|
295
298
|
};
|
|
296
299
|
InputGroupView.prototype.af = function () {
|
|
297
300
|
if (KeyFrameAnimationFactory.h == null) {
|
|
@@ -591,57 +594,58 @@ var LabelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
591
594
|
function LabelView() {
|
|
592
595
|
var _this = _super.call(this) || this;
|
|
593
596
|
_this.c = null;
|
|
594
|
-
_this.
|
|
597
|
+
_this.m = null;
|
|
595
598
|
_this.d = null;
|
|
596
|
-
_this.
|
|
599
|
+
_this.i = new List$1(Delegate_$type, 0);
|
|
600
|
+
_this.r = null;
|
|
601
|
+
_this.f = true;
|
|
602
|
+
_this.n = null;
|
|
597
603
|
_this.o = null;
|
|
598
|
-
_this.
|
|
599
|
-
_this.l = null;
|
|
600
|
-
_this.m = null;
|
|
604
|
+
_this.p = -1;
|
|
601
605
|
return _this;
|
|
602
606
|
}
|
|
603
|
-
LabelView.prototype.
|
|
607
|
+
LabelView.prototype.ae = function () {
|
|
604
608
|
};
|
|
605
|
-
LabelView.prototype.
|
|
609
|
+
LabelView.prototype.g = function () {
|
|
606
610
|
return true;
|
|
607
611
|
};
|
|
608
|
-
Object.defineProperty(LabelView.prototype, "
|
|
612
|
+
Object.defineProperty(LabelView.prototype, "q", {
|
|
609
613
|
get: function () {
|
|
610
|
-
return this.
|
|
614
|
+
return this.n;
|
|
611
615
|
},
|
|
612
616
|
enumerable: false,
|
|
613
617
|
configurable: true
|
|
614
618
|
});
|
|
615
|
-
Object.defineProperty(LabelView.prototype, "
|
|
619
|
+
Object.defineProperty(LabelView.prototype, "an", {
|
|
616
620
|
get: function () {
|
|
617
621
|
return null;
|
|
618
622
|
},
|
|
619
623
|
enumerable: false,
|
|
620
624
|
configurable: true
|
|
621
625
|
});
|
|
622
|
-
Object.defineProperty(LabelView.prototype, "
|
|
626
|
+
Object.defineProperty(LabelView.prototype, "h", {
|
|
623
627
|
get: function () {
|
|
624
628
|
return true;
|
|
625
629
|
},
|
|
626
630
|
enumerable: false,
|
|
627
631
|
configurable: true
|
|
628
632
|
});
|
|
629
|
-
LabelView.prototype.
|
|
633
|
+
LabelView.prototype.v = function () {
|
|
630
634
|
if (KeyFrameAnimationFactory.h == null) {
|
|
631
|
-
KeyFrameAnimationFactory.h = this.
|
|
635
|
+
KeyFrameAnimationFactory.h = this.m;
|
|
632
636
|
}
|
|
633
637
|
};
|
|
634
638
|
LabelView.prototype.b = function (a) {
|
|
635
|
-
return new AnimationKeyFrameEffect(0, this.
|
|
639
|
+
return new AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
|
|
636
640
|
};
|
|
637
641
|
LabelView.prototype.a = function (a) {
|
|
638
|
-
return new AnimationKeyFrameEffect(0, this.
|
|
642
|
+
return new AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
|
|
639
643
|
};
|
|
640
|
-
LabelView.prototype.
|
|
644
|
+
LabelView.prototype.z = function (a) {
|
|
641
645
|
var e_7, _a;
|
|
642
646
|
if (a == null) {
|
|
643
647
|
try {
|
|
644
|
-
for (var _b = __values(fromEnum(this.
|
|
648
|
+
for (var _b = __values(fromEnum(this.i)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
645
649
|
var b = _c.value;
|
|
646
650
|
b();
|
|
647
651
|
}
|
|
@@ -659,12 +663,12 @@ var LabelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
659
663
|
throw e_7.error;
|
|
660
664
|
}
|
|
661
665
|
}
|
|
662
|
-
this.
|
|
666
|
+
this.i.clear();
|
|
663
667
|
}
|
|
664
|
-
this.
|
|
665
|
-
this.
|
|
666
|
-
this.
|
|
667
|
-
var c = this.
|
|
668
|
+
this.m = a;
|
|
669
|
+
this.m.rootWrapper.setStyleProperty("display", "inline-block");
|
|
670
|
+
this.m.rootWrapper.setStyleProperty("position", "relative");
|
|
671
|
+
var c = this.m.createElement("label");
|
|
668
672
|
c.setStyleProperty("position", "relative");
|
|
669
673
|
c.setStyleProperty("display", "inline-block");
|
|
670
674
|
c.setStyleProperty("white-space", "nowrap");
|
|
@@ -673,25 +677,25 @@ var LabelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
673
677
|
c.setStyleProperty("overflow", "hidden");
|
|
674
678
|
c.setStyleProperty("height", "1.125rem");
|
|
675
679
|
c.setStyleProperty("backface-visibility", "hidden");
|
|
676
|
-
NativeUI.q(this.
|
|
680
|
+
NativeUI.q(this.m.rootWrapper, this.c.c2);
|
|
677
681
|
c.setStyleProperty("outline-style", "none");
|
|
678
682
|
c.setStyleProperty("box-shadow", "none");
|
|
679
683
|
c.setStyleProperty("font-family", "Verdana");
|
|
680
684
|
c.setStyleProperty("font-size", "1rem");
|
|
681
|
-
this.
|
|
682
|
-
this.
|
|
683
|
-
this.c.
|
|
685
|
+
this.n = c;
|
|
686
|
+
this.m.append(this.n);
|
|
687
|
+
this.c.ck();
|
|
684
688
|
};
|
|
685
|
-
LabelView.prototype.
|
|
686
|
-
return this.c.l == 0 ? (this.
|
|
689
|
+
LabelView.prototype.l = function () {
|
|
690
|
+
return this.c.l == 0 ? (this.j() * 0.5) : 0;
|
|
687
691
|
};
|
|
688
|
-
LabelView.prototype.
|
|
692
|
+
LabelView.prototype.aj = function () {
|
|
689
693
|
var _this = this;
|
|
690
|
-
this.c.
|
|
694
|
+
this.c.bj = "block";
|
|
691
695
|
var a = new TransformGroup();
|
|
692
696
|
a.j.add(((function () {
|
|
693
697
|
var $ret = new TranslateTransform();
|
|
694
|
-
$ret.k = _this.c.l == 0 ? (_this.
|
|
698
|
+
$ret.k = _this.c.l == 0 ? (_this.j() * 0.5) : 0;
|
|
695
699
|
return $ret;
|
|
696
700
|
})()));
|
|
697
701
|
a.j.add(((function () {
|
|
@@ -700,116 +704,169 @@ var LabelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
700
704
|
$ret.m = 1;
|
|
701
705
|
return $ret;
|
|
702
706
|
})()));
|
|
703
|
-
NativeUI.af(this.
|
|
704
|
-
this.
|
|
705
|
-
this.
|
|
706
|
-
this.
|
|
707
|
+
NativeUI.af(this.m.rootWrapper, a);
|
|
708
|
+
this.n.setStyleProperty("height", "1.125rem");
|
|
709
|
+
this.m.rootWrapper.setStyleProperty("position", "absolute");
|
|
710
|
+
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
707
711
|
};
|
|
708
|
-
LabelView.prototype.
|
|
712
|
+
LabelView.prototype.ak = function () {
|
|
709
713
|
switch (this.c.s) {
|
|
710
714
|
case 1:
|
|
711
|
-
this.
|
|
715
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "0px");
|
|
712
716
|
break;
|
|
713
717
|
case 2:
|
|
714
|
-
this.
|
|
718
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "-.125rem");
|
|
715
719
|
break;
|
|
716
720
|
case 3:
|
|
717
|
-
this.
|
|
721
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "-.25rem");
|
|
722
|
+
break;
|
|
723
|
+
case 4:
|
|
724
|
+
this.m.rootWrapper.setStyleProperty("margin-top", "-.5rem");
|
|
718
725
|
break;
|
|
719
726
|
}
|
|
720
727
|
};
|
|
721
|
-
LabelView.prototype.
|
|
722
|
-
this.
|
|
728
|
+
LabelView.prototype.ai = function () {
|
|
729
|
+
this.n.setText(this.c.text != null ? this.c.text : "");
|
|
723
730
|
};
|
|
724
|
-
LabelView.prototype.
|
|
725
|
-
if (this.
|
|
726
|
-
this.
|
|
727
|
-
if (this.
|
|
728
|
-
this.
|
|
731
|
+
LabelView.prototype.al = function (a) {
|
|
732
|
+
if (this.r != a) {
|
|
733
|
+
this.r = a;
|
|
734
|
+
if (this.o != null) {
|
|
735
|
+
this.o.setAttribute("d", this.r);
|
|
729
736
|
}
|
|
730
737
|
}
|
|
731
738
|
};
|
|
732
|
-
LabelView.prototype.
|
|
733
|
-
if (this.
|
|
734
|
-
this.
|
|
735
|
-
this.
|
|
736
|
-
var ext_ = this.
|
|
739
|
+
LabelView.prototype.ab = function () {
|
|
740
|
+
if (this.m != null) {
|
|
741
|
+
this.m.rootWrapper.setStyleProperty("display", this.c.bj);
|
|
742
|
+
this.n.setStyleProperty("display", this.c.bj);
|
|
743
|
+
var ext_ = this.m.getExternal(this.c, null, null);
|
|
737
744
|
if (ext_ && ext_._onDisplayChanged) {
|
|
738
745
|
ext_._onDisplayChanged();
|
|
739
746
|
}
|
|
740
747
|
;
|
|
741
748
|
}
|
|
742
749
|
};
|
|
743
|
-
LabelView.prototype.
|
|
744
|
-
if (this.
|
|
745
|
-
this.
|
|
746
|
-
this.
|
|
747
|
-
var ext_ = this.
|
|
750
|
+
LabelView.prototype.w = function () {
|
|
751
|
+
if (this.m != null) {
|
|
752
|
+
this.m.rootWrapper.setStyleProperty("align-items", this.c.bb);
|
|
753
|
+
this.n.setStyleProperty("align-items", this.c.bb);
|
|
754
|
+
var ext_ = this.m.getExternal(this.c, null, null);
|
|
748
755
|
if (ext_ && ext_._onAlignItemsChanged) {
|
|
749
756
|
ext_._onAlignItemsChanged();
|
|
750
757
|
}
|
|
751
758
|
;
|
|
752
759
|
}
|
|
753
760
|
};
|
|
754
|
-
LabelView.prototype.
|
|
755
|
-
if (this.
|
|
756
|
-
this.
|
|
757
|
-
this.
|
|
758
|
-
var ext_ = this.
|
|
761
|
+
LabelView.prototype.x = function () {
|
|
762
|
+
if (this.m != null) {
|
|
763
|
+
this.m.rootWrapper.setStyleProperty("align-self", this.c.bd);
|
|
764
|
+
this.n.setStyleProperty("align-self", this.c.bd);
|
|
765
|
+
var ext_ = this.m.getExternal(this.c, null, null);
|
|
759
766
|
if (ext_ && ext_._onAlignSelfChanged) {
|
|
760
767
|
ext_._onAlignSelfChanged();
|
|
761
768
|
}
|
|
762
769
|
;
|
|
763
770
|
}
|
|
764
771
|
};
|
|
765
|
-
LabelView.prototype.
|
|
766
|
-
if (this.
|
|
767
|
-
this.
|
|
768
|
-
this.
|
|
769
|
-
var ext_ = this.
|
|
772
|
+
LabelView.prototype.ac = function () {
|
|
773
|
+
if (this.m != null) {
|
|
774
|
+
this.m.rootWrapper.setStyleProperty("flex-direction", this.c.bm);
|
|
775
|
+
this.n.setStyleProperty("flex-direction", this.c.bm);
|
|
776
|
+
var ext_ = this.m.getExternal(this.c, null, null);
|
|
770
777
|
if (ext_ && ext_._onFlexDirectionChanged) {
|
|
771
778
|
ext_._onFlexDirectionChanged();
|
|
772
779
|
}
|
|
773
780
|
;
|
|
774
781
|
}
|
|
775
782
|
};
|
|
776
|
-
LabelView.prototype.
|
|
777
|
-
if (this.
|
|
778
|
-
this.
|
|
779
|
-
this.
|
|
780
|
-
var ext_ = this.
|
|
783
|
+
LabelView.prototype.ad = function () {
|
|
784
|
+
if (this.m != null) {
|
|
785
|
+
this.m.rootWrapper.setStyleProperty("flex-grow", this.c.bo);
|
|
786
|
+
this.n.setStyleProperty("flex-grow", this.c.bo);
|
|
787
|
+
var ext_ = this.m.getExternal(this.c, null, null);
|
|
781
788
|
if (ext_ && ext_._onFlexGrowChanged) {
|
|
782
789
|
ext_._onFlexGrowChanged();
|
|
783
790
|
}
|
|
784
791
|
;
|
|
785
792
|
}
|
|
786
793
|
};
|
|
787
|
-
LabelView.prototype.
|
|
794
|
+
LabelView.prototype.s = function (a) {
|
|
788
795
|
};
|
|
789
|
-
LabelView.prototype.
|
|
790
|
-
if (this.
|
|
796
|
+
LabelView.prototype.ag = function () {
|
|
797
|
+
if (this.g()) {
|
|
798
|
+
}
|
|
799
|
+
};
|
|
800
|
+
LabelView.prototype.j = function () {
|
|
801
|
+
var a = this.k();
|
|
802
|
+
if (a == 0 || isNaN_(a)) {
|
|
803
|
+
var b = NaN;
|
|
804
|
+
var c = this.m.rootWrapper.parent();
|
|
805
|
+
if (c != null) {
|
|
806
|
+
if (c.getChildCount() > 1) {
|
|
807
|
+
var d = null;
|
|
808
|
+
var e = null;
|
|
809
|
+
for (var f = 0; f < c.getChildCount(); f++) {
|
|
810
|
+
var g = c.getChildAt(f);
|
|
811
|
+
if (g.getNativeElement() == this.m.rootWrapper.getNativeElement()) {
|
|
812
|
+
if (f == c.getChildCount() - 1) {
|
|
813
|
+
d = c.getChildAt(f - 1);
|
|
814
|
+
}
|
|
815
|
+
else {
|
|
816
|
+
e = c.getChildAt(f + 1);
|
|
817
|
+
}
|
|
818
|
+
break;
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
this.m.rootWrapper.remove();
|
|
822
|
+
document.body.appendChild(this.m.rootWrapper.getNativeElement());
|
|
823
|
+
b = this.k();
|
|
824
|
+
this.m.rootWrapper.remove();
|
|
825
|
+
if (e != null) {
|
|
826
|
+
e.before(this.m.rootWrapper);
|
|
827
|
+
}
|
|
828
|
+
else {
|
|
829
|
+
c.append(this.m.rootWrapper);
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
else {
|
|
833
|
+
this.m.rootWrapper.remove();
|
|
834
|
+
document.body.appendChild(this.m.rootWrapper.getNativeElement());
|
|
835
|
+
b = this.k();
|
|
836
|
+
this.m.rootWrapper.remove();
|
|
837
|
+
c.append(this.m.rootWrapper);
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
else {
|
|
841
|
+
this.m.rootWrapper.remove();
|
|
842
|
+
document.body.appendChild(this.m.rootWrapper.getNativeElement());
|
|
843
|
+
b = this.k();
|
|
844
|
+
this.m.rootWrapper.remove();
|
|
845
|
+
}
|
|
846
|
+
return b;
|
|
791
847
|
}
|
|
848
|
+
return a;
|
|
792
849
|
};
|
|
793
|
-
LabelView.prototype.
|
|
794
|
-
var a = this.
|
|
850
|
+
LabelView.prototype.k = function () {
|
|
851
|
+
var a = this.m.rootWrapper.getStyleProperty("height");
|
|
795
852
|
return parseFloat(stringReplace(a, "px", ""));
|
|
796
853
|
};
|
|
797
|
-
LabelView.prototype.
|
|
798
|
-
this.c.
|
|
854
|
+
LabelView.prototype.t = function (a) {
|
|
855
|
+
this.c.cg();
|
|
799
856
|
};
|
|
800
|
-
LabelView.prototype.
|
|
801
|
-
this.c.
|
|
857
|
+
LabelView.prototype.u = function (a) {
|
|
858
|
+
this.c.ch();
|
|
802
859
|
};
|
|
803
|
-
LabelView.prototype.
|
|
804
|
-
this.
|
|
805
|
-
this.
|
|
806
|
-
this.
|
|
860
|
+
LabelView.prototype.y = function () {
|
|
861
|
+
this.f = true;
|
|
862
|
+
this.i.add(this.m.rootWrapper.listen("mouseenter", runOn(this, this.t)));
|
|
863
|
+
this.i.add(this.m.rootWrapper.listen("mouseleave", runOn(this, this.u)));
|
|
807
864
|
};
|
|
808
|
-
LabelView.prototype.
|
|
865
|
+
LabelView.prototype.aa = function () {
|
|
809
866
|
var e_8, _a;
|
|
810
|
-
this.
|
|
867
|
+
this.f = false;
|
|
811
868
|
try {
|
|
812
|
-
for (var _b = __values(fromEnum(this.
|
|
869
|
+
for (var _b = __values(fromEnum(this.i)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
813
870
|
var a = _c.value;
|
|
814
871
|
a();
|
|
815
872
|
}
|
|
@@ -827,15 +884,25 @@ var LabelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
827
884
|
throw e_8.error;
|
|
828
885
|
}
|
|
829
886
|
}
|
|
830
|
-
this.
|
|
887
|
+
this.i.clear();
|
|
831
888
|
};
|
|
832
|
-
LabelView.prototype.
|
|
889
|
+
LabelView.prototype.am = function (a) {
|
|
833
890
|
if (a != null) {
|
|
834
|
-
this.
|
|
891
|
+
this.n.setStyleProperty("font", a.fontString);
|
|
835
892
|
}
|
|
836
893
|
};
|
|
837
|
-
LabelView.prototype.
|
|
838
|
-
NativeUI.q(this.
|
|
894
|
+
LabelView.prototype.ah = function (a) {
|
|
895
|
+
NativeUI.q(this.n, a);
|
|
896
|
+
};
|
|
897
|
+
LabelView.prototype.e = function () {
|
|
898
|
+
return ((function () {
|
|
899
|
+
var $ret = new FontInfo();
|
|
900
|
+
$ret.q = "Verdana";
|
|
901
|
+
$ret.f = 13;
|
|
902
|
+
return $ret;
|
|
903
|
+
})());
|
|
904
|
+
};
|
|
905
|
+
LabelView.prototype.af = function () {
|
|
839
906
|
};
|
|
840
907
|
LabelView.$t = markType(LabelView, 'LabelView');
|
|
841
908
|
return LabelView;
|
|
@@ -1035,6 +1102,10 @@ var InputView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1035
1102
|
this.m.setStyleProperty("height", "1.45455rem");
|
|
1036
1103
|
this.m.setStyleProperty("font-size", ".95455rem");
|
|
1037
1104
|
break;
|
|
1105
|
+
case 4:
|
|
1106
|
+
this.m.setStyleProperty("height", "1.388445rem");
|
|
1107
|
+
this.m.setStyleProperty("font-size", "0.91116rem");
|
|
1108
|
+
break;
|
|
1038
1109
|
}
|
|
1039
1110
|
};
|
|
1040
1111
|
InputView.prototype.a8 = function () {
|
|
@@ -2206,7 +2277,7 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2206
2277
|
}
|
|
2207
2278
|
};
|
|
2208
2279
|
XInputGroup.kr = function (a, b) {
|
|
2209
|
-
return new CornerRadius(1, !isNaN_(a.
|
|
2280
|
+
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);
|
|
2210
2281
|
};
|
|
2211
2282
|
XInputGroup.oh = function (a, b) {
|
|
2212
2283
|
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);
|
|
@@ -2228,7 +2299,7 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2228
2299
|
a.l = 2;
|
|
2229
2300
|
break;
|
|
2230
2301
|
}
|
|
2231
|
-
a.
|
|
2302
|
+
a.cn(_this.ai, false);
|
|
2232
2303
|
});
|
|
2233
2304
|
};
|
|
2234
2305
|
XInputGroup.prototype.kf = function () {
|
|
@@ -2440,7 +2511,7 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2440
2511
|
});
|
|
2441
2512
|
XInputGroup.prototype.onChildrenMutated = function () {
|
|
2442
2513
|
this.jr(function (a) { return a.view.a8(); });
|
|
2443
|
-
this.js(function (a) { return a.view.
|
|
2514
|
+
this.js(function (a) { return a.view.aj(); });
|
|
2444
2515
|
this.jt(function (a) { return a.view.q(); });
|
|
2445
2516
|
this.ju(function (a) { return a.view.q(); });
|
|
2446
2517
|
};
|
|
@@ -2573,11 +2644,11 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2573
2644
|
var _this = this;
|
|
2574
2645
|
this.jp();
|
|
2575
2646
|
if (this.ai) {
|
|
2576
|
-
this.js(function (a) { return a.
|
|
2647
|
+
this.js(function (a) { return a.cn(true, !_this.aj); });
|
|
2577
2648
|
this.jr(function (a) { return a.dq(_this.ar, !_this.aj); });
|
|
2578
2649
|
}
|
|
2579
2650
|
else {
|
|
2580
|
-
this.js(function (a) { return a.
|
|
2651
|
+
this.js(function (a) { return a.cn(false, !_this.aj); });
|
|
2581
2652
|
this.jr(function (a) { return a.dq(_this.ar, !_this.aj); });
|
|
2582
2653
|
}
|
|
2583
2654
|
};
|
|
@@ -2585,12 +2656,12 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2585
2656
|
this.jp();
|
|
2586
2657
|
if (this.ao) {
|
|
2587
2658
|
var a = 1;
|
|
2588
|
-
this.js(function (b) { return b.
|
|
2659
|
+
this.js(function (b) { return b.am = true; });
|
|
2589
2660
|
this.j4(a);
|
|
2590
2661
|
}
|
|
2591
2662
|
else {
|
|
2592
2663
|
var b = -1;
|
|
2593
|
-
this.js(function (c) { return c.
|
|
2664
|
+
this.js(function (c) { return c.am = false; });
|
|
2594
2665
|
this.j4(b);
|
|
2595
2666
|
}
|
|
2596
2667
|
};
|
|
@@ -4374,7 +4445,7 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4374
4445
|
};
|
|
4375
4446
|
XInputGroup.prototype.ensureShift = function () {
|
|
4376
4447
|
this.jr(function (a) { return a.view.a8(); });
|
|
4377
|
-
this.js(function (a) { return a.view.
|
|
4448
|
+
this.js(function (a) { return a.view.aj(); });
|
|
4378
4449
|
this.jt(function (a) { return a.view.q(); });
|
|
4379
4450
|
this.ju(function (a) { return a.view.q(); });
|
|
4380
4451
|
};
|
|
@@ -4427,7 +4498,7 @@ var XInputGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4427
4498
|
if (this.inputs._inner[b].e == null) {
|
|
4428
4499
|
this.inputs._inner[b].e = "Label" + a.l.count.toString();
|
|
4429
4500
|
}
|
|
4430
|
-
a.l.add1(this.inputs._inner[b].
|
|
4501
|
+
a.l.add1(this.inputs._inner[b].av());
|
|
4431
4502
|
}
|
|
4432
4503
|
else if (typeCast(XInput.$, this.inputs._inner[b]) !== null) {
|
|
4433
4504
|
if (this.inputs._inner[b].e == null) {
|
|
@@ -4941,42 +5012,43 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4941
5012
|
_this._view = null;
|
|
4942
5013
|
_this.aa = null;
|
|
4943
5014
|
_this.z = null;
|
|
5015
|
+
_this.ab = false;
|
|
4944
5016
|
_this.r = 0;
|
|
4945
5017
|
_this.q = 1;
|
|
5018
|
+
_this.cu = ThemeResolver.ah(XLabel.o, XLabel.dd, XLabel.c6);
|
|
4946
5019
|
_this.cr = ThemeResolver.ah(XLabel.o, XLabel.da, XLabel.c3);
|
|
4947
|
-
_this.
|
|
4948
|
-
_this.
|
|
4949
|
-
_this.cq = ThemeResolver.ah(XLabel.o, XLabel.c9, XLabel.c2);
|
|
5020
|
+
_this.cs = ThemeResolver.ah(XLabel.o, XLabel.db, XLabel.c4);
|
|
5021
|
+
_this.ct = ThemeResolver.ah(XLabel.o, XLabel.dc, XLabel.c5);
|
|
4950
5022
|
_this.u = null;
|
|
4951
|
-
_this.
|
|
4952
|
-
_this.
|
|
4953
|
-
_this.
|
|
5023
|
+
_this.cy = XLabel.de;
|
|
5024
|
+
_this.cv = XLabel.c7;
|
|
5025
|
+
_this.cw = XLabel.c8;
|
|
4954
5026
|
_this.k = 0;
|
|
4955
|
-
_this.
|
|
4956
|
-
_this.
|
|
5027
|
+
_this.ag = false;
|
|
5028
|
+
_this.ae = false;
|
|
4957
5029
|
_this.v = null;
|
|
4958
|
-
_this.
|
|
4959
|
-
_this.
|
|
4960
|
-
_this.ay = "inline-block";
|
|
5030
|
+
_this.cx = null;
|
|
5031
|
+
_this.a3 = "ig-label-" + XLabel.au++;
|
|
4961
5032
|
_this.az = "inline-block";
|
|
4962
|
-
_this.a0 =
|
|
4963
|
-
_this.av = "center";
|
|
4964
|
-
_this.aw = "center";
|
|
4965
|
-
_this.ar = 0;
|
|
4966
|
-
_this.ab = false;
|
|
5033
|
+
_this.a0 = "inline-block";
|
|
4967
5034
|
_this.a1 = null;
|
|
4968
|
-
_this.
|
|
4969
|
-
_this.
|
|
4970
|
-
_this.
|
|
4971
|
-
_this.ai = false;
|
|
5035
|
+
_this.aw = "center";
|
|
5036
|
+
_this.ax = "center";
|
|
5037
|
+
_this.as = 0;
|
|
4972
5038
|
_this.ac = false;
|
|
5039
|
+
_this.a2 = null;
|
|
5040
|
+
_this.ay = null;
|
|
5041
|
+
_this.a4 = null;
|
|
5042
|
+
_this.af = false;
|
|
5043
|
+
_this.aj = false;
|
|
5044
|
+
_this.ad = false;
|
|
5045
|
+
_this.ai = false;
|
|
4973
5046
|
_this.ah = false;
|
|
4974
|
-
_this.
|
|
4975
|
-
_this.ap = false;
|
|
5047
|
+
_this.aq = false;
|
|
4976
5048
|
var a = new LabelView();
|
|
4977
5049
|
a.c = _this;
|
|
4978
5050
|
_this.view = a;
|
|
4979
|
-
_this.view.
|
|
5051
|
+
_this.view.ae();
|
|
4980
5052
|
return _this;
|
|
4981
5053
|
}
|
|
4982
5054
|
Object.defineProperty(XLabel.prototype, "p", {
|
|
@@ -5016,15 +5088,15 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5016
5088
|
enumerable: false,
|
|
5017
5089
|
configurable: true
|
|
5018
5090
|
});
|
|
5019
|
-
XLabel.prototype.
|
|
5091
|
+
XLabel.prototype.ca = function () {
|
|
5020
5092
|
var _this = this;
|
|
5021
|
-
this.view.
|
|
5093
|
+
this.view.v();
|
|
5022
5094
|
var a = false;
|
|
5023
5095
|
if (this.aa == null) {
|
|
5024
5096
|
var b = new TransformGroup();
|
|
5025
5097
|
b.j.add(((function () {
|
|
5026
5098
|
var $ret = new TranslateTransform();
|
|
5027
|
-
$ret.k = _this.view.
|
|
5099
|
+
$ret.k = _this.view.l();
|
|
5028
5100
|
return $ret;
|
|
5029
5101
|
})()));
|
|
5030
5102
|
b.j.add(((function () {
|
|
@@ -5033,17 +5105,20 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5033
5105
|
$ret.m = 1;
|
|
5034
5106
|
return $ret;
|
|
5035
5107
|
})()));
|
|
5036
|
-
var c_1 = -(this.view.
|
|
5108
|
+
var c_1 = -(this.view.j() * 1.3);
|
|
5037
5109
|
if (this.s == 2) {
|
|
5038
|
-
c_1 = -(this.view.
|
|
5110
|
+
c_1 = -(this.view.j() * 1.05);
|
|
5039
5111
|
}
|
|
5040
5112
|
if (this.s == 3) {
|
|
5041
|
-
c_1 = -(this.view.
|
|
5113
|
+
c_1 = -(this.view.j() * 1.01);
|
|
5114
|
+
}
|
|
5115
|
+
if (this.s == 4) {
|
|
5116
|
+
c_1 = -(this.view.j() * 1.05);
|
|
5042
5117
|
}
|
|
5043
5118
|
var d = new TransformGroup();
|
|
5044
5119
|
d.j.add(((function () {
|
|
5045
5120
|
var $ret = new TranslateTransform();
|
|
5046
|
-
$ret.k = _this.l == 2 ? c_1 : -(_this.view.
|
|
5121
|
+
$ret.k = _this.l == 2 ? c_1 : -(_this.view.j() * 0.65);
|
|
5047
5122
|
return $ret;
|
|
5048
5123
|
})()));
|
|
5049
5124
|
d.j.add(((function () {
|
|
@@ -5055,36 +5130,40 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5055
5130
|
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))));
|
|
5056
5131
|
}
|
|
5057
5132
|
if (this.z == null) {
|
|
5058
|
-
this.z = KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new AnimationKeyFrameProperty(7, this.
|
|
5133
|
+
this.z = KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new AnimationKeyFrameProperty(7, this.c2)).m(new AnimationKeyFrameProperty(7, this.cz)));
|
|
5059
5134
|
}
|
|
5060
5135
|
};
|
|
5061
|
-
XLabel.prototype.
|
|
5136
|
+
XLabel.prototype.cl = function (a, b) {
|
|
5062
5137
|
var _this = this;
|
|
5063
5138
|
if ((b > 0 && a.playbackRate < 0) || (b < 0 && a.playbackRate > 0)) {
|
|
5064
5139
|
a.reverse();
|
|
5065
|
-
if (this.
|
|
5140
|
+
if (this.aq) {
|
|
5066
5141
|
a.finish();
|
|
5067
|
-
this.
|
|
5142
|
+
this.cb(a);
|
|
5068
5143
|
return;
|
|
5069
5144
|
}
|
|
5070
|
-
a.finished.f(function (c) { return _this.
|
|
5145
|
+
a.finished.f(function (c) { return _this.cb(a); });
|
|
5071
5146
|
}
|
|
5072
5147
|
else {
|
|
5073
5148
|
a.play();
|
|
5074
|
-
if (this.
|
|
5149
|
+
if (this.aq) {
|
|
5075
5150
|
a.finish();
|
|
5076
|
-
this.
|
|
5151
|
+
this.cb(a);
|
|
5077
5152
|
return;
|
|
5078
5153
|
}
|
|
5079
|
-
a.finished.f(function (c) { return _this.
|
|
5154
|
+
a.finished.f(function (c) { return _this.cb(a); });
|
|
5080
5155
|
}
|
|
5081
5156
|
};
|
|
5082
|
-
XLabel.prototype.
|
|
5157
|
+
XLabel.prototype.cb = function (a) {
|
|
5083
5158
|
a.commitStyles();
|
|
5084
|
-
if (a == this.aa && this.
|
|
5159
|
+
if (a == this.aa && this.ai) {
|
|
5085
5160
|
this.aa = null;
|
|
5161
|
+
if (this.ab) {
|
|
5162
|
+
this.ab = false;
|
|
5163
|
+
this.cf();
|
|
5164
|
+
}
|
|
5086
5165
|
}
|
|
5087
|
-
if (a == this.z && this.
|
|
5166
|
+
if (a == this.z && this.ah) {
|
|
5088
5167
|
this.z = null;
|
|
5089
5168
|
}
|
|
5090
5169
|
};
|
|
@@ -5092,15 +5171,15 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5092
5171
|
_super.prototype.h.call(this, a, b, c);
|
|
5093
5172
|
switch (a) {
|
|
5094
5173
|
case "BaseTheme":
|
|
5095
|
-
this.
|
|
5096
|
-
this.
|
|
5174
|
+
this.co(this.p);
|
|
5175
|
+
this.cq();
|
|
5097
5176
|
break;
|
|
5098
5177
|
case "TextColor":
|
|
5099
5178
|
case "HoverTextColor":
|
|
5100
5179
|
case "TextStyle":
|
|
5101
5180
|
case "HighlightTextColor":
|
|
5102
5181
|
case "HoverHighlightTextColor":
|
|
5103
|
-
this.
|
|
5182
|
+
this.cq();
|
|
5104
5183
|
break;
|
|
5105
5184
|
case "ActualTextColor":
|
|
5106
5185
|
case "ActualHoverTextColor":
|
|
@@ -5112,7 +5191,7 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5112
5191
|
this.aa = null;
|
|
5113
5192
|
}
|
|
5114
5193
|
else {
|
|
5115
|
-
this.
|
|
5194
|
+
this.ai = true;
|
|
5116
5195
|
}
|
|
5117
5196
|
}
|
|
5118
5197
|
if (this.z != null) {
|
|
@@ -5120,29 +5199,29 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5120
5199
|
this.z = null;
|
|
5121
5200
|
}
|
|
5122
5201
|
else {
|
|
5123
|
-
this.
|
|
5202
|
+
this.ah = true;
|
|
5124
5203
|
}
|
|
5125
5204
|
}
|
|
5126
|
-
this.
|
|
5205
|
+
this.cp();
|
|
5127
5206
|
break;
|
|
5128
5207
|
case "Text":
|
|
5129
|
-
this.view.
|
|
5208
|
+
this.view.ai();
|
|
5130
5209
|
break;
|
|
5131
5210
|
case "Density":
|
|
5132
5211
|
this.s = this.t == 0 ? 1 : this.t;
|
|
5133
5212
|
break;
|
|
5134
5213
|
case "ActualDensity":
|
|
5135
|
-
this.view.
|
|
5136
|
-
this.view.
|
|
5214
|
+
this.view.ak();
|
|
5215
|
+
this.view.aj();
|
|
5137
5216
|
break;
|
|
5138
5217
|
case "InputGroup":
|
|
5139
|
-
this.view.
|
|
5218
|
+
this.view.aj();
|
|
5140
5219
|
break;
|
|
5141
5220
|
case "IsHighlighted":
|
|
5142
|
-
this.
|
|
5221
|
+
this.ce();
|
|
5143
5222
|
break;
|
|
5144
5223
|
case "IsShifted":
|
|
5145
|
-
this.
|
|
5224
|
+
this.cf();
|
|
5146
5225
|
break;
|
|
5147
5226
|
case "ShiftType":
|
|
5148
5227
|
if (this.aa != null) {
|
|
@@ -5150,66 +5229,88 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5150
5229
|
this.aa = null;
|
|
5151
5230
|
}
|
|
5152
5231
|
else {
|
|
5153
|
-
this.
|
|
5232
|
+
this.ai = true;
|
|
5154
5233
|
}
|
|
5155
5234
|
}
|
|
5156
|
-
this.
|
|
5235
|
+
this.ci();
|
|
5157
5236
|
break;
|
|
5158
5237
|
case "Display":
|
|
5159
|
-
this.view.
|
|
5238
|
+
this.view.ab();
|
|
5160
5239
|
break;
|
|
5161
5240
|
case "FlexDirection":
|
|
5162
|
-
this.view.
|
|
5241
|
+
this.view.ac();
|
|
5163
5242
|
break;
|
|
5164
5243
|
case "FlexGrow":
|
|
5165
|
-
this.view.
|
|
5244
|
+
this.view.ad();
|
|
5166
5245
|
break;
|
|
5167
5246
|
case "AlignItems":
|
|
5168
|
-
this.view.
|
|
5247
|
+
this.view.w();
|
|
5169
5248
|
break;
|
|
5170
5249
|
case "AlignSelf":
|
|
5171
|
-
this.view.
|
|
5250
|
+
this.view.x();
|
|
5172
5251
|
break;
|
|
5173
5252
|
}
|
|
5174
5253
|
};
|
|
5175
|
-
XLabel.prototype.
|
|
5176
|
-
this.view.
|
|
5254
|
+
XLabel.prototype.ci = function () {
|
|
5255
|
+
this.view.aj();
|
|
5177
5256
|
};
|
|
5178
|
-
XLabel.prototype.
|
|
5179
|
-
this.
|
|
5257
|
+
XLabel.prototype.cf = function () {
|
|
5258
|
+
this.view.af();
|
|
5259
|
+
this.ca();
|
|
5180
5260
|
var a = 1;
|
|
5181
|
-
var b = this.
|
|
5261
|
+
var b = this.ao;
|
|
5182
5262
|
if (!b) {
|
|
5183
5263
|
a = -1;
|
|
5184
5264
|
}
|
|
5185
|
-
this.
|
|
5265
|
+
this.cl(this.aa, a);
|
|
5186
5266
|
};
|
|
5187
|
-
XLabel.prototype.
|
|
5188
|
-
this.
|
|
5267
|
+
XLabel.prototype.ce = function () {
|
|
5268
|
+
this.ca();
|
|
5189
5269
|
var a = 1;
|
|
5190
|
-
var b = this.
|
|
5270
|
+
var b = this.am;
|
|
5191
5271
|
if (!b) {
|
|
5192
5272
|
a = -1;
|
|
5193
5273
|
}
|
|
5194
|
-
this.
|
|
5274
|
+
this.cl(this.z, a);
|
|
5275
|
+
};
|
|
5276
|
+
XLabel.prototype.onSizeReady = function () {
|
|
5277
|
+
if (this.aa != null) {
|
|
5278
|
+
this.b9();
|
|
5279
|
+
if (this.ao) {
|
|
5280
|
+
this.view.aj();
|
|
5281
|
+
this.cf();
|
|
5282
|
+
}
|
|
5283
|
+
}
|
|
5284
|
+
};
|
|
5285
|
+
XLabel.prototype.b9 = function () {
|
|
5286
|
+
if (this.aa != null && this.aa.playState == 3) {
|
|
5287
|
+
this.aa = null;
|
|
5288
|
+
}
|
|
5289
|
+
else {
|
|
5290
|
+
this.ab = true;
|
|
5291
|
+
this.ai = true;
|
|
5292
|
+
}
|
|
5195
5293
|
};
|
|
5196
|
-
XLabel.prototype.
|
|
5197
|
-
this.
|
|
5198
|
-
this.
|
|
5199
|
-
this.
|
|
5294
|
+
XLabel.prototype.cq = function () {
|
|
5295
|
+
this.c2 = this.di != null ? this.di : XLabel.de;
|
|
5296
|
+
this.c1 = this.dh != null ? this.dh : XLabel.de;
|
|
5297
|
+
this.cz = this.df != null ? this.df : XLabel.c7;
|
|
5200
5298
|
this.w = this.y != null ? this.y : XLabel.x;
|
|
5201
5299
|
};
|
|
5202
|
-
XLabel.prototype.
|
|
5300
|
+
XLabel.prototype.cp = function () {
|
|
5203
5301
|
if (this.w != null) {
|
|
5204
|
-
this.view.
|
|
5302
|
+
this.view.am(this.w);
|
|
5205
5303
|
}
|
|
5206
|
-
|
|
5304
|
+
else {
|
|
5305
|
+
this.view.am(this.view.e());
|
|
5306
|
+
}
|
|
5307
|
+
this.view.ah(this.c2);
|
|
5207
5308
|
};
|
|
5208
|
-
XLabel.prototype.
|
|
5209
|
-
XLabel.
|
|
5210
|
-
XLabel.
|
|
5211
|
-
XLabel.
|
|
5212
|
-
XLabel.
|
|
5309
|
+
XLabel.prototype.co = function (a) {
|
|
5310
|
+
XLabel.de = ThemeResolver.ah(a, XLabel.dd, XLabel.c6);
|
|
5311
|
+
XLabel.c7 = ThemeResolver.ah(a, XLabel.da, XLabel.c3);
|
|
5312
|
+
XLabel.c9 = ThemeResolver.ah(a, XLabel.dc, XLabel.c5);
|
|
5313
|
+
XLabel.c8 = ThemeResolver.ah(a, XLabel.db, XLabel.c4);
|
|
5213
5314
|
};
|
|
5214
5315
|
Object.defineProperty(XLabel.prototype, "t", {
|
|
5215
5316
|
get: function () {
|
|
@@ -5239,56 +5340,56 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5239
5340
|
enumerable: false,
|
|
5240
5341
|
configurable: true
|
|
5241
5342
|
});
|
|
5242
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5343
|
+
Object.defineProperty(XLabel.prototype, "c2", {
|
|
5243
5344
|
get: function () {
|
|
5244
|
-
return this.
|
|
5345
|
+
return this.cu;
|
|
5245
5346
|
},
|
|
5246
5347
|
set: function (a) {
|
|
5247
|
-
var b = this.
|
|
5248
|
-
this.
|
|
5249
|
-
if (b != this.
|
|
5348
|
+
var b = this.cu;
|
|
5349
|
+
this.cu = a;
|
|
5350
|
+
if (b != this.cu) {
|
|
5250
5351
|
this.g("ActualTextColor", b, a);
|
|
5251
5352
|
}
|
|
5252
5353
|
},
|
|
5253
5354
|
enumerable: false,
|
|
5254
5355
|
configurable: true
|
|
5255
5356
|
});
|
|
5256
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5357
|
+
Object.defineProperty(XLabel.prototype, "cz", {
|
|
5257
5358
|
get: function () {
|
|
5258
|
-
return this.
|
|
5359
|
+
return this.cr;
|
|
5259
5360
|
},
|
|
5260
5361
|
set: function (a) {
|
|
5261
|
-
var b = this.
|
|
5262
|
-
this.
|
|
5263
|
-
if (b != this.
|
|
5362
|
+
var b = this.cr;
|
|
5363
|
+
this.cr = a;
|
|
5364
|
+
if (b != this.cr) {
|
|
5264
5365
|
this.g("ActualHighlightTextColor", b, a);
|
|
5265
5366
|
}
|
|
5266
5367
|
},
|
|
5267
5368
|
enumerable: false,
|
|
5268
5369
|
configurable: true
|
|
5269
5370
|
});
|
|
5270
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5371
|
+
Object.defineProperty(XLabel.prototype, "c0", {
|
|
5271
5372
|
get: function () {
|
|
5272
|
-
return this.
|
|
5373
|
+
return this.cs;
|
|
5273
5374
|
},
|
|
5274
5375
|
set: function (a) {
|
|
5275
|
-
var b = this.
|
|
5276
|
-
this.
|
|
5277
|
-
if (b != this.
|
|
5376
|
+
var b = this.cs;
|
|
5377
|
+
this.cs = a;
|
|
5378
|
+
if (b != this.cs) {
|
|
5278
5379
|
this.g("ActualHoverHighlightTextColor", b, a);
|
|
5279
5380
|
}
|
|
5280
5381
|
},
|
|
5281
5382
|
enumerable: false,
|
|
5282
5383
|
configurable: true
|
|
5283
5384
|
});
|
|
5284
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5385
|
+
Object.defineProperty(XLabel.prototype, "c1", {
|
|
5285
5386
|
get: function () {
|
|
5286
|
-
return this.
|
|
5387
|
+
return this.ct;
|
|
5287
5388
|
},
|
|
5288
5389
|
set: function (a) {
|
|
5289
|
-
var b = this.
|
|
5290
|
-
this.
|
|
5291
|
-
if (b != this.
|
|
5390
|
+
var b = this.ct;
|
|
5391
|
+
this.ct = a;
|
|
5392
|
+
if (b != this.ct) {
|
|
5292
5393
|
this.g("ActualHoverTextColor", b, a);
|
|
5293
5394
|
}
|
|
5294
5395
|
},
|
|
@@ -5309,42 +5410,42 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5309
5410
|
enumerable: false,
|
|
5310
5411
|
configurable: true
|
|
5311
5412
|
});
|
|
5312
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5413
|
+
Object.defineProperty(XLabel.prototype, "di", {
|
|
5313
5414
|
get: function () {
|
|
5314
|
-
return this.
|
|
5415
|
+
return this.cy;
|
|
5315
5416
|
},
|
|
5316
5417
|
set: function (a) {
|
|
5317
|
-
var b = this.
|
|
5318
|
-
this.
|
|
5319
|
-
if (b != this.
|
|
5418
|
+
var b = this.cy;
|
|
5419
|
+
this.cy = a;
|
|
5420
|
+
if (b != this.cy) {
|
|
5320
5421
|
this.g("TextColor", b, a);
|
|
5321
5422
|
}
|
|
5322
5423
|
},
|
|
5323
5424
|
enumerable: false,
|
|
5324
5425
|
configurable: true
|
|
5325
5426
|
});
|
|
5326
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5427
|
+
Object.defineProperty(XLabel.prototype, "df", {
|
|
5327
5428
|
get: function () {
|
|
5328
|
-
return this.
|
|
5429
|
+
return this.cv;
|
|
5329
5430
|
},
|
|
5330
5431
|
set: function (a) {
|
|
5331
|
-
var b = this.
|
|
5332
|
-
this.
|
|
5333
|
-
if (b != this.
|
|
5432
|
+
var b = this.cv;
|
|
5433
|
+
this.cv = a;
|
|
5434
|
+
if (b != this.cv) {
|
|
5334
5435
|
this.g("HighlightTextColor", b, a);
|
|
5335
5436
|
}
|
|
5336
5437
|
},
|
|
5337
5438
|
enumerable: false,
|
|
5338
5439
|
configurable: true
|
|
5339
5440
|
});
|
|
5340
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5441
|
+
Object.defineProperty(XLabel.prototype, "dg", {
|
|
5341
5442
|
get: function () {
|
|
5342
|
-
return this.
|
|
5443
|
+
return this.cw;
|
|
5343
5444
|
},
|
|
5344
5445
|
set: function (a) {
|
|
5345
|
-
var b = this.
|
|
5346
|
-
this.
|
|
5347
|
-
if (b != this.
|
|
5446
|
+
var b = this.cw;
|
|
5447
|
+
this.cw = a;
|
|
5448
|
+
if (b != this.cw) {
|
|
5348
5449
|
this.g("HoverHighlightTextColor", b, a);
|
|
5349
5450
|
}
|
|
5350
5451
|
},
|
|
@@ -5365,56 +5466,56 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5365
5466
|
enumerable: false,
|
|
5366
5467
|
configurable: true
|
|
5367
5468
|
});
|
|
5368
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5469
|
+
Object.defineProperty(XLabel.prototype, "ao", {
|
|
5369
5470
|
get: function () {
|
|
5370
|
-
return this.
|
|
5471
|
+
return this.ag;
|
|
5371
5472
|
},
|
|
5372
5473
|
set: function (a) {
|
|
5373
|
-
var b = this.
|
|
5374
|
-
this.
|
|
5375
|
-
if (b != this.
|
|
5474
|
+
var b = this.ag;
|
|
5475
|
+
this.ag = a;
|
|
5476
|
+
if (b != this.ag) {
|
|
5376
5477
|
this.g("IsShifted", b, a);
|
|
5377
5478
|
}
|
|
5378
5479
|
},
|
|
5379
5480
|
enumerable: false,
|
|
5380
5481
|
configurable: true
|
|
5381
5482
|
});
|
|
5382
|
-
XLabel.prototype.
|
|
5483
|
+
XLabel.prototype.cn = function (a, b) {
|
|
5383
5484
|
if (b === void 0) {
|
|
5384
5485
|
b = true;
|
|
5385
5486
|
}
|
|
5386
|
-
var c = this.
|
|
5487
|
+
var c = this.aq;
|
|
5387
5488
|
if (!b) {
|
|
5388
|
-
this.
|
|
5489
|
+
this.aq = true;
|
|
5389
5490
|
}
|
|
5390
5491
|
try {
|
|
5391
|
-
this.
|
|
5492
|
+
this.ao = a;
|
|
5392
5493
|
}
|
|
5393
5494
|
finally {
|
|
5394
5495
|
if (!b) {
|
|
5395
|
-
this.
|
|
5496
|
+
this.aq = c;
|
|
5396
5497
|
}
|
|
5397
5498
|
}
|
|
5398
5499
|
};
|
|
5399
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5500
|
+
Object.defineProperty(XLabel.prototype, "am", {
|
|
5400
5501
|
get: function () {
|
|
5401
|
-
return this.
|
|
5502
|
+
return this.ae;
|
|
5402
5503
|
},
|
|
5403
5504
|
set: function (a) {
|
|
5404
|
-
var b = this.
|
|
5405
|
-
this.
|
|
5406
|
-
if (b != this.
|
|
5505
|
+
var b = this.ae;
|
|
5506
|
+
this.ae = a;
|
|
5507
|
+
if (b != this.ae) {
|
|
5407
5508
|
this.g("IsHighlighted", b, a);
|
|
5408
5509
|
}
|
|
5409
5510
|
},
|
|
5410
5511
|
enumerable: false,
|
|
5411
5512
|
configurable: true
|
|
5412
5513
|
});
|
|
5413
|
-
XLabel.prototype.
|
|
5414
|
-
this.
|
|
5514
|
+
XLabel.prototype.cg = function () {
|
|
5515
|
+
this.an = true;
|
|
5415
5516
|
};
|
|
5416
|
-
XLabel.prototype.
|
|
5417
|
-
this.
|
|
5517
|
+
XLabel.prototype.ch = function () {
|
|
5518
|
+
this.an = false;
|
|
5418
5519
|
};
|
|
5419
5520
|
Object.defineProperty(XLabel.prototype, "y", {
|
|
5420
5521
|
get: function () {
|
|
@@ -5430,49 +5531,35 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5430
5531
|
enumerable: false,
|
|
5431
5532
|
configurable: true
|
|
5432
5533
|
});
|
|
5433
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5534
|
+
Object.defineProperty(XLabel.prototype, "dh", {
|
|
5434
5535
|
get: function () {
|
|
5435
|
-
return this.
|
|
5536
|
+
return this.cx;
|
|
5436
5537
|
},
|
|
5437
5538
|
set: function (a) {
|
|
5438
|
-
var b = this.
|
|
5439
|
-
this.
|
|
5440
|
-
if (b != this.
|
|
5539
|
+
var b = this.cx;
|
|
5540
|
+
this.cx = a;
|
|
5541
|
+
if (b != this.cx) {
|
|
5441
5542
|
this.g("HoverTextColor", b, a);
|
|
5442
5543
|
}
|
|
5443
5544
|
},
|
|
5444
5545
|
enumerable: false,
|
|
5445
5546
|
configurable: true
|
|
5446
5547
|
});
|
|
5447
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5548
|
+
Object.defineProperty(XLabel.prototype, "bv", {
|
|
5448
5549
|
get: function () {
|
|
5449
|
-
return this.
|
|
5550
|
+
return this.a3;
|
|
5450
5551
|
},
|
|
5451
5552
|
set: function (a) {
|
|
5452
|
-
var b = this.
|
|
5453
|
-
this.
|
|
5454
|
-
if (b != this.
|
|
5553
|
+
var b = this.a3;
|
|
5554
|
+
this.a3 = a;
|
|
5555
|
+
if (b != this.a3) {
|
|
5455
5556
|
this.g("Id", b, a);
|
|
5456
5557
|
}
|
|
5457
5558
|
},
|
|
5458
5559
|
enumerable: false,
|
|
5459
5560
|
configurable: true
|
|
5460
5561
|
});
|
|
5461
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5462
|
-
get: function () {
|
|
5463
|
-
return this.ay;
|
|
5464
|
-
},
|
|
5465
|
-
set: function (a) {
|
|
5466
|
-
var b = this.ay;
|
|
5467
|
-
this.ay = a;
|
|
5468
|
-
if (b != this.ay) {
|
|
5469
|
-
this.g("Display", b, a);
|
|
5470
|
-
}
|
|
5471
|
-
},
|
|
5472
|
-
enumerable: false,
|
|
5473
|
-
configurable: true
|
|
5474
|
-
});
|
|
5475
|
-
Object.defineProperty(XLabel.prototype, "bl", {
|
|
5562
|
+
Object.defineProperty(XLabel.prototype, "bj", {
|
|
5476
5563
|
get: function () {
|
|
5477
5564
|
return this.az;
|
|
5478
5565
|
},
|
|
@@ -5480,13 +5567,13 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5480
5567
|
var b = this.az;
|
|
5481
5568
|
this.az = a;
|
|
5482
5569
|
if (b != this.az) {
|
|
5483
|
-
this.g("
|
|
5570
|
+
this.g("Display", b, a);
|
|
5484
5571
|
}
|
|
5485
5572
|
},
|
|
5486
5573
|
enumerable: false,
|
|
5487
5574
|
configurable: true
|
|
5488
5575
|
});
|
|
5489
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5576
|
+
Object.defineProperty(XLabel.prototype, "bm", {
|
|
5490
5577
|
get: function () {
|
|
5491
5578
|
return this.a0;
|
|
5492
5579
|
},
|
|
@@ -5494,27 +5581,27 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5494
5581
|
var b = this.a0;
|
|
5495
5582
|
this.a0 = a;
|
|
5496
5583
|
if (b != this.a0) {
|
|
5497
|
-
this.g("
|
|
5584
|
+
this.g("FlexDirection", b, a);
|
|
5498
5585
|
}
|
|
5499
5586
|
},
|
|
5500
5587
|
enumerable: false,
|
|
5501
5588
|
configurable: true
|
|
5502
5589
|
});
|
|
5503
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5590
|
+
Object.defineProperty(XLabel.prototype, "bo", {
|
|
5504
5591
|
get: function () {
|
|
5505
|
-
return this.
|
|
5592
|
+
return this.a1;
|
|
5506
5593
|
},
|
|
5507
5594
|
set: function (a) {
|
|
5508
|
-
var b = this.
|
|
5509
|
-
this.
|
|
5510
|
-
if (b != this.
|
|
5511
|
-
this.g("
|
|
5595
|
+
var b = this.a1;
|
|
5596
|
+
this.a1 = a;
|
|
5597
|
+
if (b != this.a1) {
|
|
5598
|
+
this.g("FlexGrow", b, a);
|
|
5512
5599
|
}
|
|
5513
5600
|
},
|
|
5514
5601
|
enumerable: false,
|
|
5515
5602
|
configurable: true
|
|
5516
5603
|
});
|
|
5517
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5604
|
+
Object.defineProperty(XLabel.prototype, "bb", {
|
|
5518
5605
|
get: function () {
|
|
5519
5606
|
return this.aw;
|
|
5520
5607
|
},
|
|
@@ -5522,56 +5609,70 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5522
5609
|
var b = this.aw;
|
|
5523
5610
|
this.aw = a;
|
|
5524
5611
|
if (b != this.aw) {
|
|
5612
|
+
this.g("AlignItems", b, a);
|
|
5613
|
+
}
|
|
5614
|
+
},
|
|
5615
|
+
enumerable: false,
|
|
5616
|
+
configurable: true
|
|
5617
|
+
});
|
|
5618
|
+
Object.defineProperty(XLabel.prototype, "bd", {
|
|
5619
|
+
get: function () {
|
|
5620
|
+
return this.ax;
|
|
5621
|
+
},
|
|
5622
|
+
set: function (a) {
|
|
5623
|
+
var b = this.ax;
|
|
5624
|
+
this.ax = a;
|
|
5625
|
+
if (b != this.ax) {
|
|
5525
5626
|
this.g("AlignSelf", b, a);
|
|
5526
5627
|
}
|
|
5527
5628
|
},
|
|
5528
5629
|
enumerable: false,
|
|
5529
5630
|
configurable: true
|
|
5530
5631
|
});
|
|
5531
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5632
|
+
Object.defineProperty(XLabel.prototype, "ak", {
|
|
5532
5633
|
get: function () {
|
|
5533
|
-
return this.
|
|
5634
|
+
return this.ac;
|
|
5534
5635
|
},
|
|
5535
5636
|
enumerable: false,
|
|
5536
5637
|
configurable: true
|
|
5537
5638
|
});
|
|
5538
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5639
|
+
Object.defineProperty(XLabel.prototype, "at", {
|
|
5539
5640
|
get: function () {
|
|
5540
|
-
return this.
|
|
5641
|
+
return this.as;
|
|
5541
5642
|
},
|
|
5542
5643
|
set: function (a) {
|
|
5543
|
-
var b = this.
|
|
5544
|
-
this.
|
|
5545
|
-
this.
|
|
5546
|
-
if (b != this.
|
|
5644
|
+
var b = this.as;
|
|
5645
|
+
this.as = a;
|
|
5646
|
+
this.ac = true;
|
|
5647
|
+
if (b != this.as) {
|
|
5547
5648
|
this.g("TabIndex", b, a);
|
|
5548
5649
|
}
|
|
5549
5650
|
},
|
|
5550
5651
|
enumerable: false,
|
|
5551
5652
|
configurable: true
|
|
5552
5653
|
});
|
|
5553
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5654
|
+
Object.defineProperty(XLabel.prototype, "bq", {
|
|
5554
5655
|
get: function () {
|
|
5555
|
-
return this.
|
|
5656
|
+
return this.a2;
|
|
5556
5657
|
},
|
|
5557
5658
|
set: function (a) {
|
|
5558
|
-
var b = this.
|
|
5559
|
-
this.
|
|
5560
|
-
if (b != this.
|
|
5659
|
+
var b = this.a2;
|
|
5660
|
+
this.a2 = a;
|
|
5661
|
+
if (b != this.a2) {
|
|
5561
5662
|
this.g("TabIndex", b, a);
|
|
5562
5663
|
}
|
|
5563
5664
|
},
|
|
5564
5665
|
enumerable: false,
|
|
5565
5666
|
configurable: true
|
|
5566
5667
|
});
|
|
5567
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5668
|
+
Object.defineProperty(XLabel.prototype, "bf", {
|
|
5568
5669
|
get: function () {
|
|
5569
|
-
return this.
|
|
5670
|
+
return this.ay;
|
|
5570
5671
|
},
|
|
5571
5672
|
set: function (a) {
|
|
5572
|
-
var b = this.
|
|
5573
|
-
this.
|
|
5574
|
-
if (b != this.
|
|
5673
|
+
var b = this.ay;
|
|
5674
|
+
this.ay = a;
|
|
5675
|
+
if (b != this.ay) {
|
|
5575
5676
|
this.g("AriaLabel", b, a);
|
|
5576
5677
|
}
|
|
5577
5678
|
},
|
|
@@ -5580,40 +5681,40 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5580
5681
|
});
|
|
5581
5682
|
Object.defineProperty(XLabel.prototype, "text", {
|
|
5582
5683
|
get: function () {
|
|
5583
|
-
return this.
|
|
5684
|
+
return this.a4;
|
|
5584
5685
|
},
|
|
5585
5686
|
set: function (a) {
|
|
5586
|
-
var b = this.
|
|
5587
|
-
this.
|
|
5588
|
-
if (b != this.
|
|
5687
|
+
var b = this.a4;
|
|
5688
|
+
this.a4 = a;
|
|
5689
|
+
if (b != this.a4) {
|
|
5589
5690
|
this.g("Text", b, a);
|
|
5590
5691
|
}
|
|
5591
5692
|
},
|
|
5592
5693
|
enumerable: false,
|
|
5593
5694
|
configurable: true
|
|
5594
5695
|
});
|
|
5595
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5696
|
+
Object.defineProperty(XLabel.prototype, "an", {
|
|
5596
5697
|
get: function () {
|
|
5597
|
-
return this.
|
|
5698
|
+
return this.af;
|
|
5598
5699
|
},
|
|
5599
5700
|
set: function (a) {
|
|
5600
|
-
var b = this.
|
|
5601
|
-
this.
|
|
5602
|
-
if (b != this.
|
|
5701
|
+
var b = this.af;
|
|
5702
|
+
this.af = a;
|
|
5703
|
+
if (b != this.af) {
|
|
5603
5704
|
this.g("IsHover", b, a);
|
|
5604
5705
|
}
|
|
5605
5706
|
},
|
|
5606
5707
|
enumerable: false,
|
|
5607
5708
|
configurable: true
|
|
5608
5709
|
});
|
|
5609
|
-
Object.defineProperty(XLabel.prototype, "
|
|
5710
|
+
Object.defineProperty(XLabel.prototype, "ar", {
|
|
5610
5711
|
get: function () {
|
|
5611
|
-
return this.
|
|
5712
|
+
return this.aj;
|
|
5612
5713
|
},
|
|
5613
5714
|
set: function (a) {
|
|
5614
|
-
var b = this.
|
|
5615
|
-
this.
|
|
5616
|
-
if (b != this.
|
|
5715
|
+
var b = this.aj;
|
|
5716
|
+
this.aj = a;
|
|
5717
|
+
if (b != this.aj) {
|
|
5617
5718
|
this.g("Value", b, a);
|
|
5618
5719
|
}
|
|
5619
5720
|
},
|
|
@@ -5622,60 +5723,60 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5622
5723
|
});
|
|
5623
5724
|
Object.defineProperty(XLabel.prototype, "disabled", {
|
|
5624
5725
|
get: function () {
|
|
5625
|
-
return this.
|
|
5726
|
+
return this.ad;
|
|
5626
5727
|
},
|
|
5627
5728
|
set: function (a) {
|
|
5628
|
-
var b = this.
|
|
5629
|
-
this.
|
|
5630
|
-
if (b != this.
|
|
5729
|
+
var b = this.ad;
|
|
5730
|
+
this.ad = a;
|
|
5731
|
+
if (b != this.ad) {
|
|
5631
5732
|
this.g("IsDisabled", b, a);
|
|
5632
5733
|
}
|
|
5633
5734
|
},
|
|
5634
5735
|
enumerable: false,
|
|
5635
5736
|
configurable: true
|
|
5636
5737
|
});
|
|
5637
|
-
XLabel.prototype.
|
|
5638
|
-
this.view.
|
|
5738
|
+
XLabel.prototype.ck = function () {
|
|
5739
|
+
this.view.ai();
|
|
5639
5740
|
};
|
|
5640
5741
|
XLabel.prototype.onDetachedFromUI = function () {
|
|
5641
|
-
this.view.
|
|
5742
|
+
this.view.aa();
|
|
5642
5743
|
};
|
|
5643
5744
|
XLabel.prototype.onAttachedToUI = function () {
|
|
5644
|
-
this.view.
|
|
5745
|
+
this.view.y();
|
|
5645
5746
|
};
|
|
5646
|
-
XLabel.prototype.
|
|
5647
|
-
return this.view.
|
|
5747
|
+
XLabel.prototype.ap = function () {
|
|
5748
|
+
return this.view.g();
|
|
5648
5749
|
};
|
|
5649
|
-
XLabel.prototype.
|
|
5750
|
+
XLabel.prototype.av = function () {
|
|
5650
5751
|
return this.j();
|
|
5651
5752
|
};
|
|
5652
|
-
XLabel.prototype.
|
|
5753
|
+
XLabel.prototype.bl = function () {
|
|
5653
5754
|
var a = this.j();
|
|
5654
5755
|
return a.q();
|
|
5655
5756
|
};
|
|
5656
5757
|
XLabel.prototype.j = function () {
|
|
5657
5758
|
var a = new LabelVisualModelExport();
|
|
5658
|
-
var b = this.view.
|
|
5759
|
+
var b = this.view.q;
|
|
5659
5760
|
a.c = this.p;
|
|
5660
5761
|
a.e = this.t;
|
|
5661
5762
|
a.d = this.s;
|
|
5662
5763
|
a.a = AppearanceHelper.a(NativeUI.al(b));
|
|
5663
5764
|
a.b = this.l;
|
|
5664
|
-
a.i = this.
|
|
5665
|
-
a.g = this.
|
|
5666
|
-
a.m = this.
|
|
5667
|
-
a.n = this.
|
|
5668
|
-
a.o = this.
|
|
5669
|
-
a.l = this.
|
|
5765
|
+
a.i = this.ao;
|
|
5766
|
+
a.g = this.am;
|
|
5767
|
+
a.m = this.bj;
|
|
5768
|
+
a.n = this.bm;
|
|
5769
|
+
a.o = this.bo;
|
|
5770
|
+
a.l = this.bb;
|
|
5670
5771
|
a.r = this.text;
|
|
5671
|
-
a.h = this.
|
|
5672
|
-
a.j = this.
|
|
5772
|
+
a.h = this.an;
|
|
5773
|
+
a.j = this.ar;
|
|
5673
5774
|
a.f = this.disabled;
|
|
5674
5775
|
a.p = this.e;
|
|
5675
5776
|
if (this.w != null) {
|
|
5676
5777
|
var c = this.w;
|
|
5677
5778
|
if (this.view != null && c.q == null) {
|
|
5678
|
-
var d = this.view.
|
|
5779
|
+
var d = this.view.m;
|
|
5679
5780
|
var e = FontUtil.getFontInfoFromString(d, c.fontString);
|
|
5680
5781
|
c.q = e.q;
|
|
5681
5782
|
c.f = e.f;
|
|
@@ -5703,24 +5804,24 @@ var XLabel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5703
5804
|
return a;
|
|
5704
5805
|
};
|
|
5705
5806
|
XLabel.prototype.provideContainer = function (a) {
|
|
5706
|
-
this.view.
|
|
5807
|
+
this.view.z(a);
|
|
5707
5808
|
};
|
|
5708
5809
|
XLabel.$t = markType(XLabel, 'XLabel', XInputGroupItem.$);
|
|
5709
|
-
XLabel.
|
|
5710
|
-
XLabel.
|
|
5711
|
-
XLabel.
|
|
5712
|
-
XLabel.
|
|
5713
|
-
XLabel.
|
|
5714
|
-
XLabel.
|
|
5715
|
-
XLabel.
|
|
5716
|
-
XLabel.
|
|
5810
|
+
XLabel.dd = BrushUtil.h(221, 0, 0, 0);
|
|
5811
|
+
XLabel.da = BrushUtil.h(255, 0, 153, 155);
|
|
5812
|
+
XLabel.dc = BrushUtil.h(221, 0, 0, 0);
|
|
5813
|
+
XLabel.db = BrushUtil.h(255, 0, 153, 155);
|
|
5814
|
+
XLabel.c6 = BrushUtil.h(255, 24, 29, 31);
|
|
5815
|
+
XLabel.c3 = BrushUtil.h(255, 33, 150, 243);
|
|
5816
|
+
XLabel.c5 = BrushUtil.h(255, 24, 29, 31);
|
|
5817
|
+
XLabel.c4 = BrushUtil.h(255, 33, 150, 243);
|
|
5717
5818
|
XLabel.o = 2;
|
|
5718
|
-
XLabel.
|
|
5719
|
-
XLabel.
|
|
5720
|
-
XLabel.
|
|
5721
|
-
XLabel.
|
|
5819
|
+
XLabel.de = ThemeResolver.ah(XLabel.o, XLabel.dd, XLabel.c6);
|
|
5820
|
+
XLabel.c7 = ThemeResolver.ah(XLabel.o, XLabel.da, XLabel.c3);
|
|
5821
|
+
XLabel.c9 = ThemeResolver.ah(XLabel.o, XLabel.dc, XLabel.c5);
|
|
5822
|
+
XLabel.c8 = ThemeResolver.ah(XLabel.o, XLabel.db, XLabel.c4);
|
|
5722
5823
|
XLabel.x = null;
|
|
5723
|
-
XLabel.
|
|
5824
|
+
XLabel.au = 0;
|
|
5724
5825
|
return XLabel;
|
|
5725
5826
|
}(XInputGroupItem));
|
|
5726
5827
|
export { XLabel };
|