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