igniteui-angular-inputs 18.1.1 → 18.2.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
@@ -14,6 +14,7 @@ import { NativeUIPopupOpenedEventArgs } from "igniteui-angular-core";
14
14
  import { NativeUIPopupClosedEventArgs } from "igniteui-angular-core";
15
15
  import { NativeUIMouseEventArgs } from "igniteui-angular-core";
16
16
  import { NativeUIFocusEventArgs } from "igniteui-angular-core";
17
+ import { NativeUIPopupMeasuringContentEventArgs } from "igniteui-angular-core";
17
18
  import { NativeUIPopupAnimationType_$type } from "igniteui-angular-core";
18
19
  import { NativeUIPopupPointerPosition_$type } from "igniteui-angular-core";
19
20
  /**
@@ -23,20 +24,22 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
23
24
  __extends(XPopupBridge, _super);
24
25
  function XPopupBridge(a) {
25
26
  var _this = _super.call(this, a) || this;
27
+ _this.ak = null;
28
+ _this.af = null;
26
29
  _this.ai = null;
27
- _this.ad = null;
30
+ _this.aj = null;
28
31
  _this.ag = null;
29
32
  _this.ah = null;
30
- _this.ae = null;
31
- _this.af = null;
33
+ _this.ad = null;
32
34
  _this.ab = null;
33
- _this.aa = null;
34
- _this.y = null;
35
35
  _this.z = null;
36
- _this.w = null;
36
+ _this.aa = null;
37
37
  _this.x = null;
38
+ _this.y = null;
38
39
  _this.ac = null;
39
- _this.ac = new List$1(NativeUIComponent.$, 0);
40
+ _this.w = null;
41
+ _this.ae = null;
42
+ _this.ae = new List$1(NativeUIComponent.$, 0);
40
43
  return _this;
41
44
  }
42
45
  XPopupBridge.prototype.contains = function (a, b) {
@@ -47,101 +50,117 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
47
50
  var e = a;
48
51
  switch (c) {
49
52
  case 5:
50
- e.onPopup = delegateCombine(e.onPopup, runOn(this, this.ao));
51
- this.ab = d;
52
- this.ai = b;
53
+ e.onPopup = delegateCombine(e.onPopup, runOn(this, this.aq));
54
+ this.ad = d;
55
+ this.ak = b;
53
56
  break;
54
57
  case 6:
55
- e.onClosed = delegateCombine(e.onClosed, runOn(this, this.aj));
56
- this.aa = d;
57
- this.ad = b;
58
+ e.onClosed = delegateCombine(e.onClosed, runOn(this, this.al));
59
+ this.ab = d;
60
+ this.af = b;
58
61
  break;
59
62
  case 7:
60
- e.popupMouseEnter = delegateCombine(e.popupMouseEnter, runOn(this, this.am));
61
- this.y = d;
62
- this.ag = b;
63
+ e.popupMouseEnter = delegateCombine(e.popupMouseEnter, runOn(this, this.ao));
64
+ this.z = d;
65
+ this.ai = b;
63
66
  break;
64
67
  case 8:
65
- e.popupMouseLeave = delegateCombine(e.popupMouseLeave, runOn(this, this.an));
66
- this.z = d;
67
- this.ah = b;
68
+ e.popupMouseLeave = delegateCombine(e.popupMouseLeave, runOn(this, this.ap));
69
+ this.aa = d;
70
+ this.aj = b;
68
71
  break;
69
72
  case 13:
70
- e.popupGotFocus = delegateCombine(e.popupGotFocus, runOn(this, this.ak));
71
- this.w = d;
72
- this.ae = b;
73
+ e.popupGotFocus = delegateCombine(e.popupGotFocus, runOn(this, this.am));
74
+ this.x = d;
75
+ this.ag = b;
73
76
  break;
74
77
  case 14:
75
- e.popupLostFocus = delegateCombine(e.popupLostFocus, runOn(this, this.al));
76
- this.x = d;
77
- this.af = b;
78
+ e.popupLostFocus = delegateCombine(e.popupLostFocus, runOn(this, this.an));
79
+ this.y = d;
80
+ this.ah = b;
78
81
  break;
82
+ case 28:
83
+ e.measuringContentSize = delegateCombine(e.measuringContentSize, runOn(this, this.ar));
84
+ this.ac = d;
85
+ this.w = b;
86
+ break;
87
+ }
88
+ };
89
+ XPopupBridge.prototype.ar = function (a, b) {
90
+ if (this.ac != null) {
91
+ this.ac(this.w, new NativeUIPopupMeasuringContentEventArgs());
79
92
  }
80
93
  };
81
94
  XPopupBridge.prototype.removeHandler = function (a, b, c, d) {
82
95
  var e = a;
83
96
  switch (c) {
84
97
  case 5:
85
- e.onPopup = delegateRemove(e.onPopup, runOn(this, this.ao));
86
- this.ab = null;
87
- this.ai = null;
98
+ e.onPopup = delegateRemove(e.onPopup, runOn(this, this.aq));
99
+ this.ad = null;
100
+ this.ak = null;
88
101
  break;
89
102
  case 6:
90
- e.onClosed = delegateRemove(e.onClosed, runOn(this, this.aj));
91
- this.aa = null;
92
- this.ad = null;
103
+ e.onClosed = delegateRemove(e.onClosed, runOn(this, this.al));
104
+ this.ab = null;
105
+ this.af = null;
93
106
  break;
94
107
  case 7:
95
- e.popupMouseEnter = delegateRemove(e.popupMouseEnter, runOn(this, this.am));
96
- this.y = null;
97
- this.ag = null;
108
+ e.popupMouseEnter = delegateRemove(e.popupMouseEnter, runOn(this, this.ao));
109
+ this.z = null;
110
+ this.ai = null;
98
111
  break;
99
112
  case 8:
100
- e.popupMouseLeave = delegateRemove(e.popupMouseLeave, runOn(this, this.an));
101
- this.z = null;
102
- this.ah = null;
113
+ e.popupMouseLeave = delegateRemove(e.popupMouseLeave, runOn(this, this.ap));
114
+ this.aa = null;
115
+ this.aj = null;
103
116
  break;
104
117
  case 13:
105
- e.popupGotFocus = delegateRemove(e.popupGotFocus, runOn(this, this.ak));
106
- this.w = null;
107
- this.ae = null;
118
+ e.popupGotFocus = delegateRemove(e.popupGotFocus, runOn(this, this.am));
119
+ this.x = null;
120
+ this.ag = null;
108
121
  break;
109
122
  case 14:
110
- e.popupLostFocus = delegateRemove(e.popupLostFocus, runOn(this, this.al));
111
- this.x = null;
112
- this.af = null;
123
+ e.popupLostFocus = delegateRemove(e.popupLostFocus, runOn(this, this.an));
124
+ this.y = null;
125
+ this.ah = null;
126
+ break;
127
+ case 28:
128
+ e.measuringContentSize = delegateRemove(e.measuringContentSize, runOn(this, this.ar));
129
+ this.ac = null;
130
+ this.w = null;
113
131
  break;
114
132
  }
115
133
  };
116
- XPopupBridge.prototype.ao = function (a, b) {
117
- if (this.ab != null) {
118
- this.ab(this.ai, new NativeUIPopupOpenedEventArgs());
119
- }
120
- };
121
- XPopupBridge.prototype.aj = function (a, b) {
122
- if (this.aa != null) {
123
- this.aa(this.ad, new NativeUIPopupClosedEventArgs());
134
+ XPopupBridge.prototype.aq = function (a, b) {
135
+ if (this.ad != null) {
136
+ this.ad(this.ak, new NativeUIPopupOpenedEventArgs());
124
137
  }
125
138
  };
126
- XPopupBridge.prototype.am = function (a, b) {
127
- if (this.y != null) {
128
- this.y(this.ag, new NativeUIMouseEventArgs());
139
+ XPopupBridge.prototype.al = function (a, b) {
140
+ if (this.ab != null) {
141
+ this.ab(this.af, new NativeUIPopupClosedEventArgs());
129
142
  }
130
143
  };
131
- XPopupBridge.prototype.an = function (a, b) {
144
+ XPopupBridge.prototype.ao = function (a, b) {
132
145
  if (this.z != null) {
133
- this.z(this.ah, new NativeUIMouseEventArgs());
146
+ this.z(this.ai, new NativeUIMouseEventArgs());
134
147
  }
135
148
  };
136
- XPopupBridge.prototype.ak = function (a, b) {
137
- if (this.w != null) {
138
- this.w(this.ae, new NativeUIFocusEventArgs());
149
+ XPopupBridge.prototype.ap = function (a, b) {
150
+ if (this.aa != null) {
151
+ this.aa(this.aj, new NativeUIMouseEventArgs());
139
152
  }
140
153
  };
141
- XPopupBridge.prototype.al = function (a, b) {
154
+ XPopupBridge.prototype.am = function (a, b) {
142
155
  if (this.x != null) {
143
- this.x(this.af, ((function () {
156
+ this.x(this.ag, new NativeUIFocusEventArgs());
157
+ }
158
+ };
159
+ XPopupBridge.prototype.an = function (a, b) {
160
+ if (this.y != null) {
161
+ this.y(this.ah, ((function () {
144
162
  var $ret = new NativeUIFocusEventArgs();
163
+ $ret.b = b.b;
145
164
  $ret.a = b.a;
146
165
  return $ret;
147
166
  })()));
@@ -150,26 +169,26 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
150
169
  XPopupBridge.prototype.getValue = function (a, b) {
151
170
  var c = a;
152
171
  switch (b) {
153
- case 22: return c.aw;
154
- case 25: return c.al;
155
- case 26: return c.a8;
156
- case 17: return c.a0;
157
- case 23: return c.cy;
172
+ case 22: return c.ax;
173
+ case 25: return c.am;
174
+ case 26: return c.a9;
175
+ case 17: return c.a1;
176
+ case 23: return c.c0;
158
177
  case 35: switch (c.p) {
159
178
  case 1: return enumGetBox(NativeUIPopupAnimationType_$type, 1);
160
179
  default: return enumGetBox(NativeUIPopupAnimationType_$type, 0);
161
180
  }
162
- case 36: return c.as;
163
- case 37: return c.ar;
164
- case 40: return c.ba;
165
- case 41: return c.at;
166
- case 43: switch (c.u) {
181
+ case 36: return c.at;
182
+ case 37: return c.as;
183
+ case 40: return c.bb;
184
+ case 41: return c.au;
185
+ case 43: switch (c.v) {
167
186
  case 1: return enumGetBox(NativeUIPopupPointerPosition_$type, 1);
168
187
  default: return enumGetBox(NativeUIPopupPointerPosition_$type, 2);
169
188
  }
170
- case 42: return c.c2;
171
- case 39: return c.an;
172
- case 61: return c.a3;
189
+ case 42: return c.c4;
190
+ case 39: return c.ao;
191
+ case 61: return c.a4;
173
192
  }
174
193
  return _super.prototype.getValue.call(this, a, b);
175
194
  };
@@ -177,16 +196,16 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
177
196
  var d = a;
178
197
  switch (b) {
179
198
  case 25:
180
- d.al = c;
199
+ d.am = c;
181
200
  break;
182
201
  case 26:
183
- d.a8 = typeGetValue(c);
202
+ d.a9 = typeGetValue(c);
184
203
  break;
185
204
  case 17:
186
- d.a0 = c;
205
+ d.a1 = c;
187
206
  break;
188
207
  case 23:
189
- d.cy = c;
208
+ d.c0 = c;
190
209
  break;
191
210
  case 35:
192
211
  switch (EnumUtil.getEnumValue(NativeUIPopupAnimationType_$type, c)) {
@@ -199,35 +218,35 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
199
218
  }
200
219
  break;
201
220
  case 36:
202
- d.as = c;
221
+ d.at = c;
203
222
  break;
204
223
  case 37:
205
- d.ar = c;
224
+ d.as = c;
206
225
  break;
207
226
  case 40:
208
- d.ba = typeGetValue(c);
227
+ d.bb = typeGetValue(c);
209
228
  break;
210
229
  case 41:
211
- d.at = c;
230
+ d.au = c;
212
231
  break;
213
232
  case 42:
214
- d.c2 = c;
233
+ d.c4 = c;
215
234
  break;
216
235
  case 43:
217
236
  switch (EnumUtil.getEnumValue(NativeUIPopupPointerPosition_$type, c)) {
218
237
  case 1:
219
- d.u = 1;
238
+ d.v = 1;
220
239
  break;
221
240
  case 2:
222
- d.u = 2;
241
+ d.v = 2;
223
242
  break;
224
243
  }
225
244
  break;
226
245
  case 39:
227
- d.an = c;
246
+ d.ao = c;
228
247
  break;
229
248
  case 61:
230
- d.a3 = c;
249
+ d.a4 = c;
231
250
  break;
232
251
  }
233
252
  _super.prototype.setValue.call(this, a, b, c);
@@ -236,13 +255,13 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
236
255
  a.showRelativeToExclusionRect(b, this.v(c), this.u(d));
237
256
  };
238
257
  XPopupBridge.prototype.close = function (a) {
239
- a.b5();
258
+ a.b6();
240
259
  };
241
260
  XPopupBridge.prototype.notifyContentSizeChanged = function (a) {
242
- a.b8();
261
+ a.b9();
243
262
  };
244
263
  XPopupBridge.prototype.notifyExclusionRectChanged = function (a, b) {
245
- a.b9(b);
264
+ a.ca(b);
246
265
  };
247
266
  XPopupBridge.prototype.v = function (a) {
248
267
  switch (a) {
@@ -264,33 +283,33 @@ var XPopupBridge = /** @class */ /*@__PURE__*/ (function (_super) {
264
283
  }
265
284
  };
266
285
  XPopupBridge.prototype.exportVisualData = function (a) {
267
- return a.au();
286
+ return a.aw();
268
287
  };
269
288
  XPopupBridge.prototype.addChild = function (a, b) {
270
- this.ac.add(b);
289
+ this.ae.add(b);
271
290
  var c = a;
272
291
  c.appendPopupContent(b.an);
273
292
  };
274
293
  XPopupBridge.prototype.insertChild = function (a, b, c) {
275
- this.ac.add(c);
294
+ this.ae.add(c);
276
295
  var d = a;
277
296
  d.appendPopupContent(c.an);
278
297
  };
279
298
  XPopupBridge.prototype.getChildAt = function (a, b) {
280
- return this.ac._inner[b];
299
+ return this.ae._inner[b];
281
300
  };
282
301
  XPopupBridge.prototype.getChildrenCount = function (a) {
283
- return this.ac.count;
302
+ return this.ae.count;
284
303
  };
285
304
  XPopupBridge.prototype.removeChild = function (a, b) {
286
305
  var c = a;
287
306
  c.removePopupContent(b.an);
288
- this.ac.remove(b);
307
+ this.ae.remove(b);
289
308
  };
290
309
  XPopupBridge.prototype.removeChildAt = function (a, b) {
291
310
  var c = a;
292
- c.removePopupContent(this.ac._inner[b].an);
293
- this.ac.removeAt(b);
311
+ c.removePopupContent(this.ae._inner[b].an);
312
+ this.ae.removeAt(b);
294
313
  };
295
314
  XPopupBridge.$t = markType(XPopupBridge, 'XPopupBridge', XComponentBridge.$, [INativeUIPopupBridge_$type]);
296
315
  return XPopupBridge;