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
|
@@ -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.
|
|
29
|
+
this.aj = null;
|
|
27
30
|
this.ag = null;
|
|
28
31
|
this.ah = null;
|
|
29
|
-
this.
|
|
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.
|
|
35
|
+
this.aa = null;
|
|
36
36
|
this.x = null;
|
|
37
|
+
this.y = null;
|
|
37
38
|
this.ac = null;
|
|
38
|
-
this.
|
|
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.
|
|
49
|
-
this.
|
|
50
|
-
this.
|
|
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.
|
|
54
|
-
this.
|
|
55
|
-
this.
|
|
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.
|
|
59
|
-
this.
|
|
60
|
-
this.
|
|
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.
|
|
64
|
-
this.
|
|
65
|
-
this.
|
|
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.
|
|
69
|
-
this.
|
|
70
|
-
this.
|
|
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.
|
|
74
|
-
this.
|
|
75
|
-
this.
|
|
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.
|
|
84
|
-
this.
|
|
85
|
-
this.
|
|
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.
|
|
89
|
-
this.
|
|
90
|
-
this.
|
|
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.
|
|
94
|
-
this.
|
|
95
|
-
this.
|
|
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.
|
|
99
|
-
this.
|
|
100
|
-
this.
|
|
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.
|
|
104
|
-
this.
|
|
105
|
-
this.
|
|
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.
|
|
109
|
-
this.
|
|
110
|
-
this.
|
|
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
|
-
|
|
115
|
-
if (this.
|
|
116
|
-
this.
|
|
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
|
-
|
|
125
|
-
if (this.
|
|
126
|
-
this.
|
|
137
|
+
al(a, b) {
|
|
138
|
+
if (this.ab != null) {
|
|
139
|
+
this.ab(this.af, new NativeUIPopupClosedEventArgs());
|
|
127
140
|
}
|
|
128
141
|
}
|
|
129
|
-
|
|
142
|
+
ao(a, b) {
|
|
130
143
|
if (this.z != null) {
|
|
131
|
-
this.z(this.
|
|
144
|
+
this.z(this.ai, new NativeUIMouseEventArgs());
|
|
132
145
|
}
|
|
133
146
|
}
|
|
134
|
-
|
|
135
|
-
if (this.
|
|
136
|
-
this.
|
|
147
|
+
ap(a, b) {
|
|
148
|
+
if (this.aa != null) {
|
|
149
|
+
this.aa(this.aj, new NativeUIMouseEventArgs());
|
|
137
150
|
}
|
|
138
151
|
}
|
|
139
|
-
|
|
152
|
+
am(a, b) {
|
|
140
153
|
if (this.x != null) {
|
|
141
|
-
this.x(this.
|
|
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.
|
|
152
|
-
case 25: return c.
|
|
153
|
-
case 26: return c.
|
|
154
|
-
case 17: return c.
|
|
155
|
-
case 23: return c.
|
|
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.
|
|
161
|
-
case 37: return c.
|
|
162
|
-
case 40: return c.
|
|
163
|
-
case 41: return c.
|
|
164
|
-
case 43: switch (c.
|
|
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.
|
|
169
|
-
case 39: return c.
|
|
170
|
-
case 61: return c.
|
|
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.
|
|
197
|
+
d.am = c;
|
|
179
198
|
break;
|
|
180
199
|
case 26:
|
|
181
|
-
d.
|
|
200
|
+
d.a9 = typeGetValue(c);
|
|
182
201
|
break;
|
|
183
202
|
case 17:
|
|
184
|
-
d.
|
|
203
|
+
d.a1 = c;
|
|
185
204
|
break;
|
|
186
205
|
case 23:
|
|
187
|
-
d.
|
|
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.
|
|
219
|
+
d.at = c;
|
|
201
220
|
break;
|
|
202
221
|
case 37:
|
|
203
|
-
d.
|
|
222
|
+
d.as = c;
|
|
204
223
|
break;
|
|
205
224
|
case 40:
|
|
206
|
-
d.
|
|
225
|
+
d.bb = typeGetValue(c);
|
|
207
226
|
break;
|
|
208
227
|
case 41:
|
|
209
|
-
d.
|
|
228
|
+
d.au = c;
|
|
210
229
|
break;
|
|
211
230
|
case 42:
|
|
212
|
-
d.
|
|
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.
|
|
236
|
+
d.v = 1;
|
|
218
237
|
break;
|
|
219
238
|
case 2:
|
|
220
|
-
d.
|
|
239
|
+
d.v = 2;
|
|
221
240
|
break;
|
|
222
241
|
}
|
|
223
242
|
break;
|
|
224
243
|
case 39:
|
|
225
|
-
d.
|
|
244
|
+
d.ao = c;
|
|
226
245
|
break;
|
|
227
246
|
case 61:
|
|
228
|
-
d.
|
|
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.
|
|
256
|
+
a.b6();
|
|
238
257
|
}
|
|
239
258
|
notifyContentSizeChanged(a) {
|
|
240
|
-
a.
|
|
259
|
+
a.b9();
|
|
241
260
|
}
|
|
242
261
|
notifyExclusionRectChanged(a, b) {
|
|
243
|
-
a.
|
|
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.
|
|
284
|
+
return a.aw();
|
|
266
285
|
}
|
|
267
286
|
addChild(a, b) {
|
|
268
|
-
this.
|
|
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.
|
|
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.
|
|
297
|
+
return this.ae._inner[b];
|
|
279
298
|
}
|
|
280
299
|
getChildrenCount(a) {
|
|
281
|
-
return this.
|
|
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.
|
|
305
|
+
this.ae.remove(b);
|
|
287
306
|
}
|
|
288
307
|
removeChildAt(a, b) {
|
|
289
308
|
let c = a;
|
|
290
|
-
c.removePopupContent(this.
|
|
291
|
-
this.
|
|
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]);
|