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.
Files changed (224) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
  2. package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +19 -19
  4. package/esm2015/lib/ButtonView_combined.js +820 -790
  5. package/esm2015/lib/CalendarView_combined.js +82 -82
  6. package/esm2015/lib/ColorEditor.js +7 -0
  7. package/esm2015/lib/ColorEditorBridge.js +7 -0
  8. package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
  9. package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
  10. package/esm2015/lib/ColorEditorPanel.js +7 -0
  11. package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
  12. package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
  13. package/esm2015/lib/ColorEditorPanelView.js +7 -0
  14. package/esm2015/lib/ColorEditorView.js +7 -0
  15. package/esm2015/lib/DatePickerView_combined.js +18 -18
  16. package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
  17. package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
  18. package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
  19. package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
  20. package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
  21. package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
  22. package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
  23. package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
  24. package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  25. package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
  26. package/esm2015/lib/ISliderTrackOwner.js +11 -0
  27. package/esm2015/lib/IconClickedEventArgs.js +10 -0
  28. package/esm2015/lib/IconView_combined.js +345 -314
  29. package/esm2015/lib/InputGroupView_combined.js +456 -355
  30. package/esm2015/lib/MultiSlider.js +7 -0
  31. package/esm2015/lib/MultiSliderBridge.js +165 -0
  32. package/esm2015/lib/MultiSliderCursor.js +11 -0
  33. package/esm2015/lib/MultiSliderHitInfo.js +22 -0
  34. package/esm2015/lib/MultiSliderOrientation.js +17 -0
  35. package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
  36. package/esm2015/lib/MultiSliderThumb.js +7 -0
  37. package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
  38. package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
  39. package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
  40. package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
  41. package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
  42. package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
  43. package/esm2015/lib/MultiSliderView.js +7 -0
  44. package/esm2015/lib/MultiSliderView_combined.js +1785 -0
  45. package/esm2015/lib/MultiSliderVisualArea.js +11 -0
  46. package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
  47. package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
  48. package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
  49. package/esm2015/lib/XButtonBridge.js +25 -20
  50. package/esm2015/lib/XButtonGroupBridge.js +177 -0
  51. package/esm2015/lib/XComponentBridge.js +3 -0
  52. package/esm2015/lib/XIconBridge.js +20 -16
  53. package/esm2015/lib/XInputBridge.js +274 -26
  54. package/esm2015/lib/XPopupBridge.js +117 -98
  55. package/esm2015/lib/igx-color-editor-component.js +470 -0
  56. package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
  57. package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
  58. package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
  59. package/esm2015/lib/igx-color-editor-module.js +39 -0
  60. package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
  61. package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
  62. package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
  63. package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
  64. package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
  65. package/esm2015/lib/igx-multi-slider-component.js +642 -0
  66. package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
  67. package/esm2015/lib/igx-multi-slider-module.js +36 -0
  68. package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
  69. package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
  70. package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
  71. package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
  72. package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
  73. package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
  74. package/esm2015/lib/igx-x-button-component.js +262 -262
  75. package/esm2015/lib/igx-x-icon-component.js +66 -55
  76. package/esm2015/lib/igx-x-input-group-component.js +48 -48
  77. package/esm2015/lib/igx-x-label-component.js +41 -40
  78. package/esm2015/public_api.js +55 -0
  79. package/esm5/lib/ButtonGroupView_combined.js +19 -19
  80. package/esm5/lib/ButtonView_combined.js +765 -735
  81. package/esm5/lib/CalendarView_combined.js +82 -82
  82. package/esm5/lib/ColorEditor.js +7 -0
  83. package/esm5/lib/ColorEditorBridge.js +7 -0
  84. package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
  85. package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
  86. package/esm5/lib/ColorEditorPanel.js +7 -0
  87. package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
  88. package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
  89. package/esm5/lib/ColorEditorPanelView.js +7 -0
  90. package/esm5/lib/ColorEditorView.js +7 -0
  91. package/esm5/lib/DatePickerView_combined.js +18 -18
  92. package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
  93. package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
  94. package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
  95. package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
  96. package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
  97. package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
  98. package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
  99. package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
  100. package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  101. package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
  102. package/esm5/lib/ISliderTrackOwner.js +11 -0
  103. package/esm5/lib/IconClickedEventArgs.js +13 -1
  104. package/esm5/lib/IconView_combined.js +336 -301
  105. package/esm5/lib/InputGroupView_combined.js +444 -343
  106. package/esm5/lib/MultiSlider.js +7 -0
  107. package/esm5/lib/MultiSliderBridge.js +167 -0
  108. package/esm5/lib/MultiSliderCursor.js +11 -0
  109. package/esm5/lib/MultiSliderHitInfo.js +24 -0
  110. package/esm5/lib/MultiSliderOrientation.js +17 -0
  111. package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
  112. package/esm5/lib/MultiSliderThumb.js +7 -0
  113. package/esm5/lib/MultiSliderThumbCollection.js +22 -0
  114. package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
  115. package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
  116. package/esm5/lib/MultiSliderThumb_combined.js +352 -0
  117. package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
  118. package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
  119. package/esm5/lib/MultiSliderView.js +7 -0
  120. package/esm5/lib/MultiSliderView_combined.js +2006 -0
  121. package/esm5/lib/MultiSliderVisualArea.js +11 -0
  122. package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
  123. package/esm5/lib/NativeUIXInputsFactory.js +1 -189
  124. package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
  125. package/esm5/lib/XButtonBridge.js +25 -20
  126. package/esm5/lib/XButtonGroupBridge.js +179 -0
  127. package/esm5/lib/XComponentBridge.js +3 -0
  128. package/esm5/lib/XIconBridge.js +20 -16
  129. package/esm5/lib/XInputBridge.js +274 -26
  130. package/esm5/lib/XPopupBridge.js +117 -98
  131. package/esm5/lib/igx-color-editor-component.js +555 -0
  132. package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
  133. package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
  134. package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
  135. package/esm5/lib/igx-color-editor-module.js +38 -0
  136. package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
  137. package/esm5/lib/igx-color-editor-panel-component.js +435 -0
  138. package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
  139. package/esm5/lib/igx-color-editor-panel-module.js +59 -0
  140. package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
  141. package/esm5/lib/igx-multi-slider-component.js +842 -0
  142. package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
  143. package/esm5/lib/igx-multi-slider-module.js +35 -0
  144. package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
  145. package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
  146. package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
  147. package/esm5/lib/igx-multi-slider-thumb.js +134 -0
  148. package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
  149. package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
  150. package/esm5/lib/igx-x-button-component.js +262 -262
  151. package/esm5/lib/igx-x-icon-component.js +70 -55
  152. package/esm5/lib/igx-x-input-group-component.js +48 -48
  153. package/esm5/lib/igx-x-label-component.js +41 -40
  154. package/esm5/public_api.js +55 -0
  155. package/fesm2015/igniteui-angular-inputs.js +15626 -7466
  156. package/fesm5/igniteui-angular-inputs.js +16802 -7565
  157. package/lib/ButtonView_combined.d.ts +243 -241
  158. package/lib/ColorEditor.d.ts +1 -0
  159. package/lib/ColorEditorBridge.d.ts +1 -0
  160. package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
  161. package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
  162. package/lib/ColorEditorPanel.d.ts +1 -0
  163. package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
  164. package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
  165. package/lib/ColorEditorPanelView.d.ts +1 -0
  166. package/lib/ColorEditorView.d.ts +1 -0
  167. package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
  168. package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
  169. package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
  170. package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
  171. package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
  172. package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
  173. package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
  174. package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
  175. package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
  176. package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
  177. package/lib/ISliderTrackOwner.d.ts +15 -0
  178. package/lib/IconClickedEventArgs.d.ts +3 -0
  179. package/lib/IconView_combined.d.ts +88 -84
  180. package/lib/InputGroupView_combined.d.ts +120 -113
  181. package/lib/MultiSlider.d.ts +1 -0
  182. package/lib/MultiSliderBridge.d.ts +24 -0
  183. package/lib/MultiSliderCursor.d.ts +15 -0
  184. package/lib/MultiSliderHitInfo.d.ts +13 -0
  185. package/lib/MultiSliderOrientation.d.ts +10 -0
  186. package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
  187. package/lib/MultiSliderThumb.d.ts +1 -0
  188. package/lib/MultiSliderThumbCollection.d.ts +10 -0
  189. package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
  190. package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
  191. package/lib/MultiSliderThumb_combined.d.ts +76 -0
  192. package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
  193. package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
  194. package/lib/MultiSliderView.d.ts +1 -0
  195. package/lib/MultiSliderView_combined.d.ts +298 -0
  196. package/lib/MultiSliderVisualArea.d.ts +14 -0
  197. package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
  198. package/lib/NativeUIXInputsFactory.d.ts +1 -24
  199. package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
  200. package/lib/XButtonGroupBridge.d.ts +29 -0
  201. package/lib/XInputBridge.d.ts +29 -5
  202. package/lib/XPopupBridge.d.ts +12 -9
  203. package/lib/igx-color-editor-component.d.ts +161 -0
  204. package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
  205. package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
  206. package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
  207. package/lib/igx-color-editor-module.d.ts +10 -0
  208. package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
  209. package/lib/igx-color-editor-panel-component.d.ts +125 -0
  210. package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
  211. package/lib/igx-color-editor-panel-module.d.ts +13 -0
  212. package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
  213. package/lib/igx-multi-slider-component.d.ts +200 -0
  214. package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
  215. package/lib/igx-multi-slider-module.d.ts +9 -0
  216. package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
  217. package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
  218. package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
  219. package/lib/igx-multi-slider-thumb.d.ts +33 -0
  220. package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
  221. package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
  222. package/lib/igx-x-icon-component.d.ts +6 -1
  223. package/package.json +2 -2
  224. 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.bc = "flex-start";
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.i();
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.k = null;
448
+ this.m = null;
446
449
  this.d = null;
447
- this.h = new List$1(Delegate_$type, 0);
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.e = true;
450
- this.l = null;
451
- this.m = null;
455
+ this.p = -1;
452
456
  }
453
- ab() {
457
+ ae() {
454
458
  }
455
- f() {
459
+ g() {
456
460
  return true;
457
461
  }
458
- get n() {
459
- return this.l;
462
+ get q() {
463
+ return this.n;
460
464
  }
461
- get aj() {
465
+ get an() {
462
466
  return null;
463
467
  }
464
- get g() {
468
+ get h() {
465
469
  return true;
466
470
  }
467
- s() {
471
+ v() {
468
472
  if (KeyFrameAnimationFactory.h == null) {
469
- KeyFrameAnimationFactory.h = this.k;
473
+ KeyFrameAnimationFactory.h = this.m;
470
474
  }
471
475
  }
472
476
  b(a) {
473
- return new AnimationKeyFrameEffect(0, this.k.rootWrapper, 0, null, a);
477
+ return new AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
474
478
  }
475
479
  a(a) {
476
- return new AnimationKeyFrameEffect(0, this.k.rootWrapper, 0, null, a);
480
+ return new AnimationKeyFrameEffect(0, this.m.rootWrapper, 0, null, a);
477
481
  }
478
- w(a) {
482
+ z(a) {
479
483
  if (a == null) {
480
- for (let b of fromEnum(this.h)) {
484
+ for (let b of fromEnum(this.i)) {
481
485
  b();
482
486
  }
483
- this.h.clear();
487
+ this.i.clear();
484
488
  }
485
- this.k = a;
486
- this.k.rootWrapper.setStyleProperty("display", "inline-block");
487
- this.k.rootWrapper.setStyleProperty("position", "relative");
488
- let c = this.k.createElement("label");
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.k.rootWrapper, this.c.cz);
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.l = c;
503
- this.k.append(this.l);
504
- this.c.ch();
506
+ this.n = c;
507
+ this.m.append(this.n);
508
+ this.c.ck();
505
509
  }
506
- j() {
507
- return this.c.l == 0 ? (this.i() * 0.5) : 0;
510
+ l() {
511
+ return this.c.l == 0 ? (this.j() * 0.5) : 0;
508
512
  }
509
- af() {
510
- this.c.bi = "block";
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.i() * 0.5) : 0;
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.k.rootWrapper, a);
524
- this.l.setStyleProperty("height", "1.125rem");
525
- this.k.rootWrapper.setStyleProperty("position", "absolute");
526
- this.k.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
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
- ag() {
532
+ ak() {
529
533
  switch (this.c.s) {
530
534
  case 1:
531
- this.k.rootWrapper.setStyleProperty("margin-top", "0px");
535
+ this.m.rootWrapper.setStyleProperty("margin-top", "0px");
532
536
  break;
533
537
  case 2:
534
- this.k.rootWrapper.setStyleProperty("margin-top", "-.125rem");
538
+ this.m.rootWrapper.setStyleProperty("margin-top", "-.125rem");
535
539
  break;
536
540
  case 3:
537
- this.k.rootWrapper.setStyleProperty("margin-top", "-.25rem");
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
- ae() {
542
- this.l.setText(this.c.text != null ? this.c.text : "");
548
+ ai() {
549
+ this.n.setText(this.c.text != null ? this.c.text : "");
543
550
  }
544
- ah(a) {
545
- if (this.o != a) {
546
- this.o = a;
547
- if (this.m != null) {
548
- this.m.setAttribute("d", this.o);
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
- y() {
553
- if (this.k != null) {
554
- this.k.rootWrapper.setStyleProperty("display", this.c.bi);
555
- this.l.setStyleProperty("display", this.c.bi);
556
- let ext_ = this.k.getExternal(this.c, null, null);
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
- t() {
564
- if (this.k != null) {
565
- this.k.rootWrapper.setStyleProperty("align-items", this.c.ba);
566
- this.l.setStyleProperty("align-items", this.c.ba);
567
- let ext_ = this.k.getExternal(this.c, null, null);
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
- u() {
575
- if (this.k != null) {
576
- this.k.rootWrapper.setStyleProperty("align-self", this.c.bc);
577
- this.l.setStyleProperty("align-self", this.c.bc);
578
- let ext_ = this.k.getExternal(this.c, null, null);
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
- z() {
586
- if (this.k != null) {
587
- this.k.rootWrapper.setStyleProperty("flex-direction", this.c.bl);
588
- this.l.setStyleProperty("flex-direction", this.c.bl);
589
- let ext_ = this.k.getExternal(this.c, null, null);
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
- aa() {
597
- if (this.k != null) {
598
- this.k.rootWrapper.setStyleProperty("flex-grow", this.c.bn);
599
- this.l.setStyleProperty("flex-grow", this.c.bn);
600
- let ext_ = this.k.getExternal(this.c, null, null);
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
- p(a) {
614
+ s(a) {
608
615
  }
609
- ac() {
610
- if (this.f()) {
616
+ ag() {
617
+ if (this.g()) {
611
618
  }
612
619
  }
613
- i() {
614
- let a = this.k.rootWrapper.getStyleProperty("height");
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
- q(a) {
618
- this.c.ce();
674
+ t(a) {
675
+ this.c.cg();
619
676
  }
620
- r(a) {
621
- this.c.cf();
677
+ u(a) {
678
+ this.c.ch();
622
679
  }
623
- v() {
624
- this.e = true;
625
- this.h.add(this.k.rootWrapper.listen("mouseenter", runOn(this, this.q)));
626
- this.h.add(this.k.rootWrapper.listen("mouseleave", runOn(this, this.r)));
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
- x() {
629
- this.e = false;
630
- for (let a of fromEnum(this.h)) {
685
+ aa() {
686
+ this.f = false;
687
+ for (let a of fromEnum(this.i)) {
631
688
  a();
632
689
  }
633
- this.h.clear();
690
+ this.i.clear();
634
691
  }
635
- ai(a) {
692
+ am(a) {
636
693
  if (a != null) {
637
- this.l.setStyleProperty("font", a.fontString);
694
+ this.n.setStyleProperty("font", a.fontString);
638
695
  }
639
696
  }
640
- ad(a) {
641
- NativeUI.q(this.l, a);
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.c) ? a.c : b.c, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.b) ? a.b : b.b, !isNaN_(a.a) ? a.a : b.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.ck(this.ai, false);
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.af());
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.ck(true, !this.aj));
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.ck(false, !this.aj));
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.al = true);
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.al = false);
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.af());
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].au());
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.co = ThemeResolver.ah(XLabel.o, XLabel.c7, XLabel.c0);
4078
- this.cp = ThemeResolver.ah(XLabel.o, XLabel.c8, XLabel.c1);
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.cv = XLabel.db;
4082
- this.cs = XLabel.c4;
4083
- this.ct = XLabel.c5;
4153
+ this.cy = XLabel.de;
4154
+ this.cv = XLabel.c7;
4155
+ this.cw = XLabel.c8;
4084
4156
  this.k = 0;
4085
- this.af = false;
4086
- this.ad = false;
4157
+ this.ag = false;
4158
+ this.ae = false;
4087
4159
  this.v = null;
4088
- this.cu = null;
4089
- this.a2 = "ig-label-" + XLabel.at++;
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 = null;
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.ax = null;
4099
- this.a3 = null;
4100
- this.ae = false;
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.ag = false;
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.ab();
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
- b8() {
4137
- this.view.s();
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.j();
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.i() * 1.3);
4224
+ let c = -(this.view.j() * 1.3);
4153
4225
  if (this.s == 2) {
4154
- c = -(this.view.i() * 1.05);
4226
+ c = -(this.view.j() * 1.05);
4155
4227
  }
4156
4228
  if (this.s == 3) {
4157
- c = -(this.view.i() * 1.01);
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.i() * 0.65);
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.cz)).m(new AnimationKeyFrameProperty(7, this.cw)));
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
- ci(a, b) {
4252
+ cl(a, b) {
4178
4253
  if ((b > 0 && a.playbackRate < 0) || (b < 0 && a.playbackRate > 0)) {
4179
4254
  a.reverse();
4180
- if (this.ap) {
4255
+ if (this.aq) {
4181
4256
  a.finish();
4182
- this.b9(a);
4257
+ this.cb(a);
4183
4258
  return;
4184
4259
  }
4185
- a.finished.f((c) => this.b9(a));
4260
+ a.finished.f((c) => this.cb(a));
4186
4261
  }
4187
4262
  else {
4188
4263
  a.play();
4189
- if (this.ap) {
4264
+ if (this.aq) {
4190
4265
  a.finish();
4191
- this.b9(a);
4266
+ this.cb(a);
4192
4267
  return;
4193
4268
  }
4194
- a.finished.f((c) => this.b9(a));
4269
+ a.finished.f((c) => this.cb(a));
4195
4270
  }
4196
4271
  }
4197
- b9(a) {
4272
+ cb(a) {
4198
4273
  a.commitStyles();
4199
- if (a == this.aa && this.ah) {
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.ag) {
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.cl(this.p);
4211
- this.cn();
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.cn();
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.ah = true;
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.ag = true;
4317
+ this.ah = true;
4239
4318
  }
4240
4319
  }
4241
- this.cm();
4320
+ this.cp();
4242
4321
  break;
4243
4322
  case "Text":
4244
- this.view.ae();
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.ag();
4251
- this.view.af();
4329
+ this.view.ak();
4330
+ this.view.aj();
4252
4331
  break;
4253
4332
  case "InputGroup":
4254
- this.view.af();
4333
+ this.view.aj();
4255
4334
  break;
4256
4335
  case "IsHighlighted":
4257
- this.cc();
4336
+ this.ce();
4258
4337
  break;
4259
4338
  case "IsShifted":
4260
- this.cd();
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.ah = true;
4347
+ this.ai = true;
4269
4348
  }
4270
4349
  }
4271
- this.cg();
4350
+ this.ci();
4272
4351
  break;
4273
4352
  case "Display":
4274
- this.view.y();
4353
+ this.view.ab();
4275
4354
  break;
4276
4355
  case "FlexDirection":
4277
- this.view.z();
4356
+ this.view.ac();
4278
4357
  break;
4279
4358
  case "FlexGrow":
4280
- this.view.aa();
4359
+ this.view.ad();
4281
4360
  break;
4282
4361
  case "AlignItems":
4283
- this.view.t();
4362
+ this.view.w();
4284
4363
  break;
4285
4364
  case "AlignSelf":
4286
- this.view.u();
4365
+ this.view.x();
4287
4366
  break;
4288
4367
  }
4289
4368
  }
4290
- cg() {
4291
- this.view.af();
4369
+ ci() {
4370
+ this.view.aj();
4292
4371
  }
4293
- cd() {
4294
- this.b8();
4372
+ cf() {
4373
+ this.view.af();
4374
+ this.ca();
4295
4375
  let a = 1;
4296
- let b = this.an;
4376
+ let b = this.ao;
4297
4377
  if (!b) {
4298
4378
  a = -1;
4299
4379
  }
4300
- this.ci(this.aa, a);
4380
+ this.cl(this.aa, a);
4301
4381
  }
4302
- cc() {
4303
- this.b8();
4382
+ ce() {
4383
+ this.ca();
4304
4384
  let a = 1;
4305
- let b = this.al;
4385
+ let b = this.am;
4306
4386
  if (!b) {
4307
4387
  a = -1;
4308
4388
  }
4309
- this.ci(this.z, a);
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
- cn() {
4312
- this.cz = this.df != null ? this.df : XLabel.db;
4313
- this.cy = this.de != null ? this.de : XLabel.db;
4314
- this.cw = this.dc != null ? this.dc : XLabel.c4;
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
- cm() {
4415
+ cp() {
4318
4416
  if (this.w != null) {
4319
- this.view.ai(this.w);
4417
+ this.view.am(this.w);
4320
4418
  }
4321
- this.view.ad(this.cz);
4419
+ else {
4420
+ this.view.am(this.view.e());
4421
+ }
4422
+ this.view.ah(this.c2);
4322
4423
  }
4323
- cl(a) {
4324
- XLabel.db = ThemeResolver.ah(a, XLabel.da, XLabel.c3);
4325
- XLabel.c4 = ThemeResolver.ah(a, XLabel.c7, XLabel.c0);
4326
- XLabel.c6 = ThemeResolver.ah(a, XLabel.c9, XLabel.c2);
4327
- XLabel.c5 = ThemeResolver.ah(a, XLabel.c8, XLabel.c1);
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 cx() {
4370
- return this.cp;
4470
+ get c0() {
4471
+ return this.cs;
4371
4472
  }
4372
- set cx(a) {
4373
- let b = this.cp;
4374
- this.cp = a;
4375
- if (b != this.cp) {
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 cy() {
4380
- return this.cq;
4480
+ get c1() {
4481
+ return this.ct;
4381
4482
  }
4382
- set cy(a) {
4383
- let b = this.cq;
4384
- this.cq = a;
4385
- if (b != this.cq) {
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 dd() {
4420
- return this.ct;
4520
+ get dg() {
4521
+ return this.cw;
4421
4522
  }
4422
- set dd(a) {
4423
- let b = this.ct;
4424
- this.ct = a;
4425
- if (b != this.ct) {
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 an() {
4440
- return this.af;
4540
+ get ao() {
4541
+ return this.ag;
4441
4542
  }
4442
- set an(a) {
4443
- let b = this.af;
4444
- this.af = a;
4445
- if (b != this.af) {
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
- ck(a, b = true) {
4450
- let c = this.ap;
4550
+ cn(a, b = true) {
4551
+ let c = this.aq;
4451
4552
  if (!b) {
4452
- this.ap = true;
4553
+ this.aq = true;
4453
4554
  }
4454
4555
  try {
4455
- this.an = a;
4556
+ this.ao = a;
4456
4557
  }
4457
4558
  finally {
4458
4559
  if (!b) {
4459
- this.ap = c;
4560
+ this.aq = c;
4460
4561
  }
4461
4562
  }
4462
4563
  }
4463
- get al() {
4464
- return this.ad;
4564
+ get am() {
4565
+ return this.ae;
4465
4566
  }
4466
- set al(a) {
4467
- let b = this.ad;
4468
- this.ad = a;
4469
- if (b != this.ad) {
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
- ce() {
4474
- this.am = true;
4574
+ cg() {
4575
+ this.an = true;
4475
4576
  }
4476
- cf() {
4477
- this.am = false;
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 de() {
4490
- return this.cu;
4590
+ get dh() {
4591
+ return this.cx;
4491
4592
  }
4492
- set de(a) {
4493
- let b = this.cu;
4494
- this.cu = a;
4495
- if (b != this.cu) {
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 bu() {
4500
- return this.a2;
4600
+ get bv() {
4601
+ return this.a3;
4501
4602
  }
4502
- set bu(a) {
4503
- let b = this.a2;
4504
- this.a2 = a;
4505
- if (b != this.a2) {
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 bi() {
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 bl(a) {
4613
+ set bj(a) {
4523
4614
  let b = this.az;
4524
4615
  this.az = a;
4525
4616
  if (b != this.az) {
4526
- this.g("FlexDirection", b, a);
4617
+ this.g("Display", b, a);
4527
4618
  }
4528
4619
  }
4529
- get bn() {
4620
+ get bm() {
4530
4621
  return this.a0;
4531
4622
  }
4532
- set bn(a) {
4623
+ set bm(a) {
4533
4624
  let b = this.a0;
4534
4625
  this.a0 = a;
4535
4626
  if (b != this.a0) {
4536
- this.g("FlexGrow", b, a);
4627
+ this.g("FlexDirection", b, a);
4537
4628
  }
4538
4629
  }
4539
- get ba() {
4540
- return this.av;
4630
+ get bo() {
4631
+ return this.a1;
4541
4632
  }
4542
- set ba(a) {
4543
- let b = this.av;
4544
- this.av = a;
4545
- if (b != this.av) {
4546
- this.g("AlignItems", b, a);
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 bc() {
4640
+ get bb() {
4550
4641
  return this.aw;
4551
4642
  }
4552
- set bc(a) {
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 aj() {
4560
- return this.ab;
4660
+ get ak() {
4661
+ return this.ac;
4561
4662
  }
4562
- get as() {
4563
- return this.ar;
4663
+ get at() {
4664
+ return this.as;
4564
4665
  }
4565
- set as(a) {
4566
- let b = this.ar;
4567
- this.ar = a;
4568
- this.ab = true;
4569
- if (b != this.ar) {
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 bp() {
4574
- return this.a1;
4674
+ get bq() {
4675
+ return this.a2;
4575
4676
  }
4576
- set bp(a) {
4577
- let b = this.a1;
4578
- this.a1 = a;
4579
- if (b != this.a1) {
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 be() {
4584
- return this.ax;
4684
+ get bf() {
4685
+ return this.ay;
4585
4686
  }
4586
- set be(a) {
4587
- let b = this.ax;
4588
- this.ax = a;
4589
- if (b != this.ax) {
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.a3;
4695
+ return this.a4;
4595
4696
  }
4596
4697
  set text(a) {
4597
- let b = this.a3;
4598
- this.a3 = a;
4599
- if (b != this.a3) {
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 am() {
4604
- return this.ae;
4704
+ get an() {
4705
+ return this.af;
4605
4706
  }
4606
- set am(a) {
4607
- let b = this.ae;
4608
- this.ae = a;
4609
- if (b != this.ae) {
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 aq() {
4614
- return this.ai;
4714
+ get ar() {
4715
+ return this.aj;
4615
4716
  }
4616
- set aq(a) {
4617
- let b = this.ai;
4618
- this.ai = a;
4619
- if (b != this.ai) {
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.ac;
4725
+ return this.ad;
4625
4726
  }
4626
4727
  set disabled(a) {
4627
- let b = this.ac;
4628
- this.ac = a;
4629
- if (b != this.ac) {
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
- ch() {
4634
- this.view.ae();
4734
+ ck() {
4735
+ this.view.ai();
4635
4736
  }
4636
4737
  onDetachedFromUI() {
4637
- this.view.x();
4738
+ this.view.aa();
4638
4739
  }
4639
4740
  onAttachedToUI() {
4640
- this.view.v();
4741
+ this.view.y();
4641
4742
  }
4642
- ao() {
4643
- return this.view.f();
4743
+ ap() {
4744
+ return this.view.g();
4644
4745
  }
4645
- au() {
4746
+ av() {
4646
4747
  return this.j();
4647
4748
  }
4648
- bk() {
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.n;
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.an;
4661
- a.g = this.al;
4662
- a.m = this.bi;
4663
- a.n = this.bl;
4664
- a.o = this.bn;
4665
- a.l = this.ba;
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.am;
4668
- a.j = this.aq;
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.k;
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.w(a);
4803
+ this.view.z(a);
4703
4804
  }
4704
4805
  }
4705
4806
  XLabel.$t = markType(XLabel, 'XLabel', XInputGroupItem.$);
4706
- XLabel.da = BrushUtil.h(221, 0, 0, 0);
4707
- XLabel.c7 = BrushUtil.h(255, 0, 153, 155);
4708
- XLabel.c9 = BrushUtil.h(221, 0, 0, 0);
4709
- XLabel.c8 = BrushUtil.h(255, 0, 153, 155);
4710
- XLabel.c3 = BrushUtil.h(255, 24, 29, 31);
4711
- XLabel.c0 = BrushUtil.h(255, 33, 150, 243);
4712
- XLabel.c2 = BrushUtil.h(255, 24, 29, 31);
4713
- XLabel.c1 = BrushUtil.h(255, 33, 150, 243);
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.db = ThemeResolver.ah(XLabel.o, XLabel.da, XLabel.c3);
4716
- XLabel.c4 = ThemeResolver.ah(XLabel.o, XLabel.c7, XLabel.c0);
4717
- XLabel.c6 = ThemeResolver.ah(XLabel.o, XLabel.c9, XLabel.c2);
4718
- XLabel.c5 = ThemeResolver.ah(XLabel.o, XLabel.c8, XLabel.c1);
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.at = 0;
4821
+ XLabel.au = 0;
4721
4822
  return XLabel;
4722
4823
  })();
4723
4824
  /**