igniteui-angular-inputs 18.1.1 → 18.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { markEnum } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export var MultiSliderVisualArea_$type = markEnum('MultiSliderVisualArea', 'Thumb,0|RangeThumb,1|Bar,2|None,3');
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
|
+
import { Base, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var MultiSliderYValueChangingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(MultiSliderYValueChangingEventArgs, _super);
|
|
14
|
+
function MultiSliderYValueChangingEventArgs() {
|
|
15
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
_this.a = 0;
|
|
17
|
+
return _this;
|
|
18
|
+
}
|
|
19
|
+
MultiSliderYValueChangingEventArgs.$t = markType(MultiSliderYValueChangingEventArgs, 'MultiSliderYValueChangingEventArgs');
|
|
20
|
+
return MultiSliderYValueChangingEventArgs;
|
|
21
|
+
}(Base));
|
|
22
|
+
export { MultiSliderYValueChangingEventArgs };
|
|
@@ -4,192 +4,4 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
import { Base, markType } from "igniteui-angular-core";
|
|
9
|
-
import { INativeUIElementFactory_$type } from "igniteui-angular-core";
|
|
10
|
-
import { NativeUIComponent } from "igniteui-angular-core";
|
|
11
|
-
import { XInputGroup } from "./XInputGroup";
|
|
12
|
-
import { XInput } from "./XInput";
|
|
13
|
-
import { XInputBridge } from "./XInputBridge";
|
|
14
|
-
import { NativeUIInput } from "igniteui-angular-core";
|
|
15
|
-
import { XButton } from "./XButton";
|
|
16
|
-
import { XButtonBridge } from "./XButtonBridge";
|
|
17
|
-
import { NativeUIButton } from "igniteui-angular-core";
|
|
18
|
-
import { XCheckbox } from "./XCheckbox";
|
|
19
|
-
import { XCheckboxBridge } from "./XCheckboxBridge";
|
|
20
|
-
import { NativeUICheckbox } from "igniteui-angular-core";
|
|
21
|
-
import { XIcon } from "./XIcon";
|
|
22
|
-
import { XIconBridge } from "./XIconBridge";
|
|
23
|
-
import { NativeUIIcon } from "igniteui-angular-core";
|
|
24
|
-
import { Popup } from "igniteui-angular-core";
|
|
25
|
-
import { XPopupBridge } from "./XPopupBridge";
|
|
26
|
-
import { NativeUIPopup } from "igniteui-angular-core";
|
|
27
|
-
/**
|
|
28
|
-
* @hidden
|
|
29
|
-
*/
|
|
30
|
-
var NativeUIXInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
31
|
-
__extends(NativeUIXInputsFactory, _super);
|
|
32
|
-
function NativeUIXInputsFactory() {
|
|
33
|
-
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
34
|
-
_this.c = 2;
|
|
35
|
-
return _this;
|
|
36
|
-
}
|
|
37
|
-
Object.defineProperty(NativeUIXInputsFactory, "b", {
|
|
38
|
-
get: function () {
|
|
39
|
-
if (NativeUIXInputsFactory.a == null) {
|
|
40
|
-
NativeUIXInputsFactory.a = new NativeUIXInputsFactory();
|
|
41
|
-
}
|
|
42
|
-
return NativeUIXInputsFactory.a;
|
|
43
|
-
},
|
|
44
|
-
enumerable: false,
|
|
45
|
-
configurable: true
|
|
46
|
-
});
|
|
47
|
-
NativeUIXInputsFactory.j = function () {
|
|
48
|
-
NativeUIComponent.ar(NativeUIXInputsFactory.b);
|
|
49
|
-
};
|
|
50
|
-
Object.defineProperty(NativeUIXInputsFactory.prototype, "flavor", {
|
|
51
|
-
get: function () {
|
|
52
|
-
return this.c;
|
|
53
|
-
},
|
|
54
|
-
enumerable: false,
|
|
55
|
-
configurable: true
|
|
56
|
-
});
|
|
57
|
-
NativeUIXInputsFactory.prototype.createComponent = function (a, b, c) {
|
|
58
|
-
switch (b) {
|
|
59
|
-
case 1:
|
|
60
|
-
this.d(a, c);
|
|
61
|
-
break;
|
|
62
|
-
case 6:
|
|
63
|
-
this.e(a, c);
|
|
64
|
-
break;
|
|
65
|
-
case 10:
|
|
66
|
-
this.g(a, c);
|
|
67
|
-
break;
|
|
68
|
-
case 2:
|
|
69
|
-
this.h(a, c);
|
|
70
|
-
break;
|
|
71
|
-
case 11:
|
|
72
|
-
this.f(a, c);
|
|
73
|
-
break;
|
|
74
|
-
case 12:
|
|
75
|
-
this.i(a, c);
|
|
76
|
-
break;
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
NativeUIXInputsFactory.prototype.createComponentSync = function (a, b, c) {
|
|
80
|
-
this.createComponent(a, b, c);
|
|
81
|
-
};
|
|
82
|
-
NativeUIXInputsFactory.prototype.supportsComponent = function (a) {
|
|
83
|
-
switch (a) {
|
|
84
|
-
case 1: return true;
|
|
85
|
-
case 6: return true;
|
|
86
|
-
case 10: return true;
|
|
87
|
-
case 2: return true;
|
|
88
|
-
case 11: return true;
|
|
89
|
-
case 12: return true;
|
|
90
|
-
}
|
|
91
|
-
return false;
|
|
92
|
-
};
|
|
93
|
-
NativeUIXInputsFactory.prototype.h = function (a, b) {
|
|
94
|
-
var c = a;
|
|
95
|
-
var d = c.createElement("div");
|
|
96
|
-
var e = c.getSubRenderer(d);
|
|
97
|
-
var f = new XInputGroup();
|
|
98
|
-
f.provideContainer(e);
|
|
99
|
-
var g = e.getExternal(f, e.rootWrapper, null);
|
|
100
|
-
var h = c.createElement("div");
|
|
101
|
-
h.setRawStyleProperty("width", "100%");
|
|
102
|
-
var i = c.getSubRenderer(h);
|
|
103
|
-
var j = new XInput();
|
|
104
|
-
j.provideContainer(i);
|
|
105
|
-
var k = e.getExternal(j, i.rootWrapper, null);
|
|
106
|
-
f.appendContentChild(h);
|
|
107
|
-
f.inputs.add(j);
|
|
108
|
-
var l = new XInputBridge(f);
|
|
109
|
-
var m = new NativeUIInput();
|
|
110
|
-
m.an = d;
|
|
111
|
-
m.d = l;
|
|
112
|
-
b(m);
|
|
113
|
-
};
|
|
114
|
-
NativeUIXInputsFactory.prototype.d = function (a, b) {
|
|
115
|
-
var c = a;
|
|
116
|
-
var d = c.createElement("div");
|
|
117
|
-
var e = c.getSubRenderer(d);
|
|
118
|
-
var f = new XButton();
|
|
119
|
-
f.provideContainer(e);
|
|
120
|
-
f.ff = "none";
|
|
121
|
-
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
122
|
-
var h = new XButtonBridge(f);
|
|
123
|
-
var i = new NativeUIButton();
|
|
124
|
-
i.an = d;
|
|
125
|
-
i.d = h;
|
|
126
|
-
b(i);
|
|
127
|
-
};
|
|
128
|
-
NativeUIXInputsFactory.prototype.e = function (a, b) {
|
|
129
|
-
var c = a;
|
|
130
|
-
var d = c.createElement("div");
|
|
131
|
-
var e = c.getSubRenderer(d);
|
|
132
|
-
var f = new XCheckbox();
|
|
133
|
-
f.provideContainer(e);
|
|
134
|
-
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
135
|
-
var h = new XCheckboxBridge(f);
|
|
136
|
-
var i = new NativeUICheckbox();
|
|
137
|
-
i.an = d;
|
|
138
|
-
i.d = h;
|
|
139
|
-
b(i);
|
|
140
|
-
};
|
|
141
|
-
NativeUIXInputsFactory.prototype.g = function (a, b) {
|
|
142
|
-
var c = a;
|
|
143
|
-
var d = c.createElement("div");
|
|
144
|
-
var e = c.getSubRenderer(d);
|
|
145
|
-
var f = new XIcon();
|
|
146
|
-
f.provideContainer(e);
|
|
147
|
-
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
148
|
-
var h = new XIconBridge(f);
|
|
149
|
-
var i = new NativeUIIcon();
|
|
150
|
-
i.an = d;
|
|
151
|
-
i.d = h;
|
|
152
|
-
var j = c.createElement("div");
|
|
153
|
-
var k = c.getSubRenderer(j);
|
|
154
|
-
var l = new XButton();
|
|
155
|
-
l.provideContainer(k);
|
|
156
|
-
l.e = 4;
|
|
157
|
-
l.ff = "none";
|
|
158
|
-
var m = k.getExternal(l, k.rootWrapper, k.getExternal(l, null, null));
|
|
159
|
-
var n = new XButtonBridge(l);
|
|
160
|
-
var o = new NativeUIButton();
|
|
161
|
-
o.an = j;
|
|
162
|
-
o.d = n;
|
|
163
|
-
o.bm = i;
|
|
164
|
-
b(o);
|
|
165
|
-
};
|
|
166
|
-
NativeUIXInputsFactory.prototype.f = function (a, b) {
|
|
167
|
-
var c = a;
|
|
168
|
-
var d = c.createElement("div");
|
|
169
|
-
var e = c.getSubRenderer(d);
|
|
170
|
-
var f = new XIcon();
|
|
171
|
-
f.provideContainer(e);
|
|
172
|
-
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
173
|
-
var h = new XIconBridge(f);
|
|
174
|
-
var i = new NativeUIIcon();
|
|
175
|
-
i.an = d;
|
|
176
|
-
i.d = h;
|
|
177
|
-
b(i);
|
|
178
|
-
};
|
|
179
|
-
NativeUIXInputsFactory.prototype.i = function (a, b) {
|
|
180
|
-
var c = a;
|
|
181
|
-
var d = c.createElement("div");
|
|
182
|
-
var e = c.getSubRenderer(d);
|
|
183
|
-
var f = new Popup();
|
|
184
|
-
f.provideRenderer(e);
|
|
185
|
-
var g = new XPopupBridge(f);
|
|
186
|
-
var h = new NativeUIPopup();
|
|
187
|
-
h.an = d;
|
|
188
|
-
h.d = g;
|
|
189
|
-
b(h);
|
|
190
|
-
};
|
|
191
|
-
NativeUIXInputsFactory.$t = markType(NativeUIXInputsFactory, 'NativeUIXInputsFactory', Base.$, [INativeUIElementFactory_$type]);
|
|
192
|
-
NativeUIXInputsFactory.a = null;
|
|
193
|
-
return NativeUIXInputsFactory;
|
|
194
|
-
}(Base));
|
|
195
|
-
export { NativeUIXInputsFactory };
|
|
7
|
+
export { NativeUIXInputsFactory } from "./NativeUIXInputsFactory_combined";
|