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.
- package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +55 -0
package/esm5/lib/XPopupBridge.js
CHANGED
|
@@ -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.
|
|
30
|
+
_this.aj = null;
|
|
28
31
|
_this.ag = null;
|
|
29
32
|
_this.ah = null;
|
|
30
|
-
_this.
|
|
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.
|
|
36
|
+
_this.aa = null;
|
|
37
37
|
_this.x = null;
|
|
38
|
+
_this.y = null;
|
|
38
39
|
_this.ac = null;
|
|
39
|
-
_this.
|
|
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.
|
|
51
|
-
this.
|
|
52
|
-
this.
|
|
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.
|
|
56
|
-
this.
|
|
57
|
-
this.
|
|
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.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
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.
|
|
66
|
-
this.
|
|
67
|
-
this.
|
|
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.
|
|
71
|
-
this.
|
|
72
|
-
this.
|
|
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.
|
|
76
|
-
this.
|
|
77
|
-
this.
|
|
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.
|
|
86
|
-
this.
|
|
87
|
-
this.
|
|
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.
|
|
91
|
-
this.
|
|
92
|
-
this.
|
|
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.
|
|
96
|
-
this.
|
|
97
|
-
this.
|
|
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.
|
|
101
|
-
this.
|
|
102
|
-
this.
|
|
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.
|
|
106
|
-
this.
|
|
107
|
-
this.
|
|
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.
|
|
111
|
-
this.
|
|
112
|
-
this.
|
|
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.
|
|
117
|
-
if (this.
|
|
118
|
-
this.
|
|
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.
|
|
127
|
-
if (this.
|
|
128
|
-
this.
|
|
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.
|
|
144
|
+
XPopupBridge.prototype.ao = function (a, b) {
|
|
132
145
|
if (this.z != null) {
|
|
133
|
-
this.z(this.
|
|
146
|
+
this.z(this.ai, new NativeUIMouseEventArgs());
|
|
134
147
|
}
|
|
135
148
|
};
|
|
136
|
-
XPopupBridge.prototype.
|
|
137
|
-
if (this.
|
|
138
|
-
this.
|
|
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.
|
|
154
|
+
XPopupBridge.prototype.am = function (a, b) {
|
|
142
155
|
if (this.x != null) {
|
|
143
|
-
this.x(this.
|
|
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.
|
|
154
|
-
case 25: return c.
|
|
155
|
-
case 26: return c.
|
|
156
|
-
case 17: return c.
|
|
157
|
-
case 23: return c.
|
|
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.
|
|
163
|
-
case 37: return c.
|
|
164
|
-
case 40: return c.
|
|
165
|
-
case 41: return c.
|
|
166
|
-
case 43: switch (c.
|
|
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.
|
|
171
|
-
case 39: return c.
|
|
172
|
-
case 61: return c.
|
|
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.
|
|
199
|
+
d.am = c;
|
|
181
200
|
break;
|
|
182
201
|
case 26:
|
|
183
|
-
d.
|
|
202
|
+
d.a9 = typeGetValue(c);
|
|
184
203
|
break;
|
|
185
204
|
case 17:
|
|
186
|
-
d.
|
|
205
|
+
d.a1 = c;
|
|
187
206
|
break;
|
|
188
207
|
case 23:
|
|
189
|
-
d.
|
|
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.
|
|
221
|
+
d.at = c;
|
|
203
222
|
break;
|
|
204
223
|
case 37:
|
|
205
|
-
d.
|
|
224
|
+
d.as = c;
|
|
206
225
|
break;
|
|
207
226
|
case 40:
|
|
208
|
-
d.
|
|
227
|
+
d.bb = typeGetValue(c);
|
|
209
228
|
break;
|
|
210
229
|
case 41:
|
|
211
|
-
d.
|
|
230
|
+
d.au = c;
|
|
212
231
|
break;
|
|
213
232
|
case 42:
|
|
214
|
-
d.
|
|
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.
|
|
238
|
+
d.v = 1;
|
|
220
239
|
break;
|
|
221
240
|
case 2:
|
|
222
|
-
d.
|
|
241
|
+
d.v = 2;
|
|
223
242
|
break;
|
|
224
243
|
}
|
|
225
244
|
break;
|
|
226
245
|
case 39:
|
|
227
|
-
d.
|
|
246
|
+
d.ao = c;
|
|
228
247
|
break;
|
|
229
248
|
case 61:
|
|
230
|
-
d.
|
|
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.
|
|
258
|
+
a.b6();
|
|
240
259
|
};
|
|
241
260
|
XPopupBridge.prototype.notifyContentSizeChanged = function (a) {
|
|
242
|
-
a.
|
|
261
|
+
a.b9();
|
|
243
262
|
};
|
|
244
263
|
XPopupBridge.prototype.notifyExclusionRectChanged = function (a, b) {
|
|
245
|
-
a.
|
|
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.
|
|
286
|
+
return a.aw();
|
|
268
287
|
};
|
|
269
288
|
XPopupBridge.prototype.addChild = function (a, b) {
|
|
270
|
-
this.
|
|
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.
|
|
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.
|
|
299
|
+
return this.ae._inner[b];
|
|
281
300
|
};
|
|
282
301
|
XPopupBridge.prototype.getChildrenCount = function (a) {
|
|
283
|
-
return this.
|
|
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.
|
|
307
|
+
this.ae.remove(b);
|
|
289
308
|
};
|
|
290
309
|
XPopupBridge.prototype.removeChildAt = function (a, b) {
|
|
291
310
|
var c = a;
|
|
292
|
-
c.removePopupContent(this.
|
|
293
|
-
this.
|
|
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;
|