igniteui-webcomponents-inputs 4.2.5 → 4.3.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-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- package/public_api.d.ts +3 -0
|
@@ -9,6 +9,7 @@ import { SuffixShiftType } from "./SuffixShiftType";
|
|
|
9
9
|
import { PrefixShiftType } from "./PrefixShiftType";
|
|
10
10
|
import { Brush } from "igniteui-webcomponents-core";
|
|
11
11
|
import { LabelShiftType } from "./LabelShiftType";
|
|
12
|
+
import { HorizontalAlignment } from "igniteui-webcomponents-core";
|
|
12
13
|
import { MouseButtonEventArgs } from "igniteui-webcomponents-core";
|
|
13
14
|
import { KeyEventArgs } from "igniteui-webcomponents-core";
|
|
14
15
|
import { InputShiftType } from "./InputShiftType";
|
|
@@ -18,10 +19,12 @@ import { InputGroupDisplayType } from "./InputGroupDisplayType";
|
|
|
18
19
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
19
20
|
import { CornerRadius } from "igniteui-webcomponents-core";
|
|
20
21
|
import { Thickness } from "igniteui-webcomponents-core";
|
|
22
|
+
import { ThemeResolver } from "./ThemeResolver";
|
|
21
23
|
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
22
24
|
import { InputGroupVisualModelExport } from "./InputGroupVisualModelExport";
|
|
23
25
|
import { LabelVisualModelExport } from "./LabelVisualModelExport";
|
|
24
26
|
import { InputVisualModelExport } from "./InputVisualModelExport";
|
|
27
|
+
import { Theme } from "./Theme";
|
|
25
28
|
import { InputChangeEventArgs } from "./InputChangeEventArgs";
|
|
26
29
|
/**
|
|
27
30
|
* @hidden
|
|
@@ -38,15 +41,15 @@ export declare class InputGroupView extends Base {
|
|
|
38
41
|
l: DomRenderer;
|
|
39
42
|
private e;
|
|
40
43
|
private i;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
get w(): any;
|
|
45
|
+
get as(): Path;
|
|
46
|
+
get h(): boolean;
|
|
44
47
|
ah(a: DomRenderer): void;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
get s(): DomWrapper;
|
|
49
|
+
get v(): any;
|
|
50
|
+
get u(): any;
|
|
51
|
+
get x(): any;
|
|
52
|
+
get y(): any;
|
|
50
53
|
private z;
|
|
51
54
|
aq(a: string): void;
|
|
52
55
|
ap(): void;
|
|
@@ -87,7 +90,7 @@ export declare class SuffixView extends Base {
|
|
|
87
90
|
private g;
|
|
88
91
|
private b;
|
|
89
92
|
private e;
|
|
90
|
-
|
|
93
|
+
get r(): Path;
|
|
91
94
|
m(a: DomRenderer): void;
|
|
92
95
|
q(): void;
|
|
93
96
|
private f;
|
|
@@ -112,7 +115,7 @@ export declare class PrefixView extends Base {
|
|
|
112
115
|
g: DomRenderer;
|
|
113
116
|
private b;
|
|
114
117
|
private e;
|
|
115
|
-
|
|
118
|
+
get r(): Path;
|
|
116
119
|
m(a: DomRenderer): void;
|
|
117
120
|
q(): void;
|
|
118
121
|
private f;
|
|
@@ -137,9 +140,9 @@ export declare class LabelView extends Base {
|
|
|
137
140
|
k: DomRenderer;
|
|
138
141
|
private d;
|
|
139
142
|
private h;
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
+
get n(): any;
|
|
144
|
+
get aj(): Path;
|
|
145
|
+
get g(): boolean;
|
|
143
146
|
s(): void;
|
|
144
147
|
b(a: AnimationKeyFrameEffectTiming): AnimationKeyFrameEffect;
|
|
145
148
|
a(a: AnimationKeyFrameEffectTiming): AnimationKeyFrameEffect;
|
|
@@ -175,63 +178,71 @@ export declare class InputView extends Base {
|
|
|
175
178
|
static $t: Type;
|
|
176
179
|
constructor();
|
|
177
180
|
b: XInput;
|
|
178
|
-
ao(): void;
|
|
179
|
-
f(): boolean;
|
|
180
|
-
j: DomRenderer;
|
|
181
|
-
private c;
|
|
182
|
-
private h;
|
|
183
|
-
readonly o: any;
|
|
184
|
-
readonly a5: Path;
|
|
185
|
-
readonly g: boolean;
|
|
186
|
-
al(a: DomRenderer): void;
|
|
187
|
-
aw(a: boolean): void;
|
|
188
|
-
au(a: boolean): void;
|
|
189
|
-
e: boolean;
|
|
190
|
-
private y;
|
|
191
|
-
private x;
|
|
192
181
|
as(): void;
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
private
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
182
|
+
h(): boolean;
|
|
183
|
+
l: DomRenderer;
|
|
184
|
+
private c;
|
|
185
|
+
private j;
|
|
186
|
+
get q(): any;
|
|
187
|
+
get bd(): Path;
|
|
188
|
+
get i(): boolean;
|
|
189
|
+
ap(a: DomRenderer): void;
|
|
190
|
+
a0(a: boolean): void;
|
|
191
|
+
ay(a: boolean): void;
|
|
192
|
+
a5(a: HorizontalAlignment): void;
|
|
193
|
+
a4(a: boolean): void;
|
|
194
|
+
g: boolean;
|
|
200
195
|
private ab;
|
|
196
|
+
private aa;
|
|
197
|
+
private t;
|
|
198
|
+
aw(): void;
|
|
199
|
+
au(): void;
|
|
200
|
+
a9(): void;
|
|
201
|
+
private f;
|
|
202
|
+
a8(): void;
|
|
203
|
+
private k;
|
|
204
|
+
ax(a: string): void;
|
|
205
|
+
az(a: string): void;
|
|
206
|
+
private x;
|
|
207
|
+
private ae;
|
|
208
|
+
private ai;
|
|
209
|
+
private aj;
|
|
210
|
+
private bc;
|
|
211
|
+
private y;
|
|
212
|
+
private z;
|
|
201
213
|
private af;
|
|
214
|
+
private ah;
|
|
202
215
|
private ag;
|
|
203
|
-
private
|
|
204
|
-
private v;
|
|
205
|
-
private w;
|
|
216
|
+
private ak;
|
|
206
217
|
private ac;
|
|
207
|
-
private ae;
|
|
208
218
|
private ad;
|
|
209
|
-
private ah;
|
|
210
|
-
private z;
|
|
211
|
-
private aa;
|
|
212
|
-
private p;
|
|
213
|
-
a2(a: string): void;
|
|
214
|
-
q(): string;
|
|
215
219
|
private r;
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
220
|
+
ba(a: string): void;
|
|
221
|
+
s(): string;
|
|
222
|
+
private u;
|
|
223
|
+
a7(): void;
|
|
224
|
+
p(): number;
|
|
225
|
+
o(): number;
|
|
226
|
+
a3(a: number): void;
|
|
227
|
+
a1(a: number): void;
|
|
228
|
+
at(): void;
|
|
229
|
+
private v;
|
|
230
|
+
private w;
|
|
223
231
|
private d;
|
|
224
|
-
private
|
|
225
|
-
private
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
ar(): void;
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
private m;
|
|
233
|
+
private n;
|
|
234
|
+
an(): void;
|
|
235
|
+
aq(): void;
|
|
236
|
+
bb(a: FontInfo): void;
|
|
237
|
+
a6(): void;
|
|
238
|
+
ao(): void;
|
|
239
|
+
ar(a: boolean): void;
|
|
240
|
+
av(): void;
|
|
241
|
+
a2(a: number, b: number): void;
|
|
242
|
+
al(): void;
|
|
234
243
|
a(a: AnimationKeyFrameEffectTiming): AnimationKeyFrameEffect;
|
|
244
|
+
private static e;
|
|
245
|
+
private am;
|
|
235
246
|
}
|
|
236
247
|
/**
|
|
237
248
|
* @hidden
|
|
@@ -239,9 +250,11 @@ export declare class InputView extends Base {
|
|
|
239
250
|
export declare abstract class XInputGroupItem extends Base implements INotifyPropertyChanged {
|
|
240
251
|
static $t: Type;
|
|
241
252
|
private c;
|
|
242
|
-
e: string;
|
|
253
|
+
get e(): string;
|
|
254
|
+
set e(a: string);
|
|
243
255
|
private a;
|
|
244
|
-
b: XInputGroup;
|
|
256
|
+
get b(): XInputGroup;
|
|
257
|
+
set b(a: XInputGroup);
|
|
245
258
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
246
259
|
protected g(a: string, b: any, c: any): void;
|
|
247
260
|
protected h(a: string, b: any, c: any): void;
|
|
@@ -253,10 +266,12 @@ export declare class XSuffix extends XInputGroupItem {
|
|
|
253
266
|
static $t: Type;
|
|
254
267
|
constructor();
|
|
255
268
|
private _view;
|
|
256
|
-
view: SuffixView;
|
|
269
|
+
get view(): SuffixView;
|
|
270
|
+
set view(a: SuffixView);
|
|
257
271
|
destroy(): void;
|
|
258
272
|
private j;
|
|
259
|
-
k: SuffixShiftType;
|
|
273
|
+
get k(): SuffixShiftType;
|
|
274
|
+
set k(a: SuffixShiftType);
|
|
260
275
|
protected h(a: string, b: any, c: any): void;
|
|
261
276
|
private al;
|
|
262
277
|
private ai;
|
|
@@ -266,14 +281,18 @@ export declare class XSuffix extends XInputGroupItem {
|
|
|
266
281
|
ak(): void;
|
|
267
282
|
private static s;
|
|
268
283
|
private v;
|
|
269
|
-
z: string;
|
|
284
|
+
get z(): string;
|
|
285
|
+
set z(a: string);
|
|
270
286
|
private u;
|
|
271
|
-
w: string;
|
|
287
|
+
get w(): string;
|
|
288
|
+
set w(a: string);
|
|
272
289
|
private n;
|
|
273
|
-
q: boolean;
|
|
290
|
+
get q(): boolean;
|
|
291
|
+
set q(a: boolean);
|
|
274
292
|
private m;
|
|
275
293
|
private o;
|
|
276
|
-
disabled: boolean;
|
|
294
|
+
get disabled(): boolean;
|
|
295
|
+
set disabled(a: boolean);
|
|
277
296
|
am(): void;
|
|
278
297
|
onDetachedFromUI(): void;
|
|
279
298
|
onAttachedToUI(): void;
|
|
@@ -291,10 +310,12 @@ export declare class XPrefix extends XInputGroupItem {
|
|
|
291
310
|
static $t: Type;
|
|
292
311
|
constructor();
|
|
293
312
|
private _view;
|
|
294
|
-
view: PrefixView;
|
|
313
|
+
get view(): PrefixView;
|
|
314
|
+
set view(a: PrefixView);
|
|
295
315
|
destroy(): void;
|
|
296
316
|
private j;
|
|
297
|
-
k: PrefixShiftType;
|
|
317
|
+
get k(): PrefixShiftType;
|
|
318
|
+
set k(a: PrefixShiftType);
|
|
298
319
|
protected h(a: string, b: any, c: any): void;
|
|
299
320
|
private al;
|
|
300
321
|
private ai;
|
|
@@ -304,14 +325,18 @@ export declare class XPrefix extends XInputGroupItem {
|
|
|
304
325
|
ak(): void;
|
|
305
326
|
private static s;
|
|
306
327
|
private v;
|
|
307
|
-
z: string;
|
|
328
|
+
get z(): string;
|
|
329
|
+
set z(a: string);
|
|
308
330
|
private u;
|
|
309
|
-
w: string;
|
|
331
|
+
get w(): string;
|
|
332
|
+
set w(a: string);
|
|
310
333
|
private n;
|
|
311
|
-
q: boolean;
|
|
334
|
+
get q(): boolean;
|
|
335
|
+
set q(a: boolean);
|
|
312
336
|
private m;
|
|
313
337
|
private o;
|
|
314
|
-
disabled: boolean;
|
|
338
|
+
get disabled(): boolean;
|
|
339
|
+
set disabled(a: boolean);
|
|
315
340
|
am(): void;
|
|
316
341
|
onDetachedFromUI(): void;
|
|
317
342
|
onAttachedToUI(): void;
|
|
@@ -328,618 +353,529 @@ export declare class XPrefix extends XInputGroupItem {
|
|
|
328
353
|
export declare class XInputGroup extends Base implements INotifyPropertyChanged {
|
|
329
354
|
static $t: Type;
|
|
330
355
|
constructor();
|
|
331
|
-
private
|
|
356
|
+
private jm;
|
|
332
357
|
appendContentChild(a: any): void;
|
|
333
|
-
|
|
358
|
+
j7(a: any): void;
|
|
334
359
|
private c;
|
|
335
|
-
d: InputGroupDisplayType;
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
private
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
private
|
|
344
|
-
private
|
|
345
|
-
private
|
|
346
|
-
private
|
|
347
|
-
|
|
360
|
+
get d(): InputGroupDisplayType;
|
|
361
|
+
set d(a: InputGroupDisplayType);
|
|
362
|
+
private r;
|
|
363
|
+
get t(): ControlDisplayDensity;
|
|
364
|
+
set t(a: ControlDisplayDensity);
|
|
365
|
+
private q;
|
|
366
|
+
get s(): ControlDisplayDensity;
|
|
367
|
+
set s(a: ControlDisplayDensity);
|
|
368
|
+
private js;
|
|
369
|
+
private jt;
|
|
370
|
+
private jr;
|
|
371
|
+
private ju;
|
|
372
|
+
private aj;
|
|
373
|
+
private jl;
|
|
374
|
+
private n;
|
|
375
|
+
get p(): BaseControlTheme;
|
|
376
|
+
set p(a: BaseControlTheme);
|
|
348
377
|
private _view;
|
|
349
|
-
view: InputGroupView;
|
|
378
|
+
get view(): InputGroupView;
|
|
379
|
+
set view(a: InputGroupView);
|
|
350
380
|
destroy(): void;
|
|
351
|
-
protected
|
|
352
|
-
protected
|
|
353
|
-
static
|
|
354
|
-
static
|
|
355
|
-
private
|
|
356
|
-
private
|
|
357
|
-
private
|
|
358
|
-
private
|
|
359
|
-
private
|
|
360
|
-
private
|
|
361
|
-
private
|
|
362
|
-
private
|
|
363
|
-
private
|
|
381
|
+
protected j2(a: string, b: any, c: any): void;
|
|
382
|
+
protected j5(a: string, b: any, c: any): void;
|
|
383
|
+
static kr(a: CornerRadius, b: CornerRadius): CornerRadius;
|
|
384
|
+
static oh(a: Thickness, b: Thickness): Thickness;
|
|
385
|
+
private ke;
|
|
386
|
+
private kf;
|
|
387
|
+
private kd;
|
|
388
|
+
private kg;
|
|
389
|
+
private kc;
|
|
390
|
+
private kb;
|
|
391
|
+
private w;
|
|
392
|
+
private u;
|
|
393
|
+
private get a();
|
|
364
394
|
onChildrenMutated(): void;
|
|
365
|
-
private
|
|
366
|
-
|
|
367
|
-
|
|
395
|
+
private jp;
|
|
396
|
+
get al(): boolean;
|
|
397
|
+
j1(): void;
|
|
368
398
|
lostFocus: (sender: any, e: EventArgs) => void;
|
|
369
399
|
gotFocus: (sender: any, e: EventArgs) => void;
|
|
370
|
-
static
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
private
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
static ry: Brush;
|
|
384
|
-
static rx: Brush;
|
|
385
|
-
static gu: number;
|
|
386
|
-
static f8: number;
|
|
387
|
-
static f6: number;
|
|
388
|
-
static f7: number;
|
|
389
|
-
static gv: number;
|
|
390
|
-
static rd: Brush;
|
|
391
|
-
private static ga;
|
|
392
|
-
private static gb;
|
|
393
|
-
private static nh;
|
|
394
|
-
private static tx;
|
|
395
|
-
private static r0;
|
|
396
|
-
private static r1;
|
|
397
|
-
private static r2;
|
|
398
|
-
private static gj;
|
|
399
|
-
private static gi;
|
|
400
|
-
private static gf;
|
|
401
|
-
private static r5;
|
|
402
|
-
private static r6;
|
|
403
|
-
private static r4;
|
|
404
|
-
private static r3;
|
|
405
|
-
private static gg;
|
|
406
|
-
private static ge;
|
|
407
|
-
private static gc;
|
|
408
|
-
private static gd;
|
|
409
|
-
private static gh;
|
|
410
|
-
private static rz;
|
|
411
|
-
private static fv;
|
|
412
|
-
private static fw;
|
|
413
|
-
private static nf;
|
|
414
|
-
private static tv;
|
|
415
|
-
private static ro;
|
|
416
|
-
private static rp;
|
|
417
|
-
private static rq;
|
|
418
|
-
private static f4;
|
|
419
|
-
private static f3;
|
|
420
|
-
private static f0;
|
|
421
|
-
private static rt;
|
|
422
|
-
private static ru;
|
|
423
|
-
private static rs;
|
|
424
|
-
private static rr;
|
|
425
|
-
private static f1;
|
|
426
|
-
private static fz;
|
|
427
|
-
private static fx;
|
|
428
|
-
private static fy;
|
|
429
|
-
private static f2;
|
|
430
|
-
private static rn;
|
|
431
|
-
private static fk;
|
|
432
|
-
private static fl;
|
|
433
|
-
private static ne;
|
|
434
|
-
private static tu;
|
|
435
|
-
private static rg;
|
|
436
|
-
private static rh;
|
|
437
|
-
private static ri;
|
|
438
|
-
private static ft;
|
|
439
|
-
private static fs;
|
|
440
|
-
private static fp;
|
|
441
|
-
private static rl;
|
|
442
|
-
private static rm;
|
|
443
|
-
private static rk;
|
|
444
|
-
private static rj;
|
|
445
|
-
private static fq;
|
|
446
|
-
private static fo;
|
|
447
|
-
private static fm;
|
|
448
|
-
private static fn;
|
|
449
|
-
private static fr;
|
|
450
|
-
private static rf;
|
|
451
|
-
static gk: number;
|
|
452
|
-
static gl: number;
|
|
453
|
-
static ni: CornerRadius;
|
|
454
|
-
static ty: Thickness;
|
|
455
|
-
static r8: Brush;
|
|
456
|
-
static r9: Brush;
|
|
457
|
-
private static sa;
|
|
458
|
-
static gt: number;
|
|
459
|
-
static gs: number;
|
|
460
|
-
static gp: number;
|
|
461
|
-
static sd: Brush;
|
|
462
|
-
static se: Brush;
|
|
463
|
-
static sc: Brush;
|
|
464
|
-
static sb: Brush;
|
|
465
|
-
static gq: number;
|
|
466
|
-
static go: number;
|
|
467
|
-
static gm: number;
|
|
468
|
-
static gn: number;
|
|
469
|
-
static gr: number;
|
|
470
|
-
static r7: Brush;
|
|
471
|
-
static d1: number;
|
|
472
|
-
static ec: number;
|
|
473
|
-
static na: CornerRadius;
|
|
474
|
-
static tq: Thickness;
|
|
475
|
-
static py: Brush;
|
|
476
|
-
static qf: Brush;
|
|
477
|
-
private static qg;
|
|
478
|
-
static e4: number;
|
|
479
|
-
static e3: number;
|
|
480
|
-
static eg: number;
|
|
481
|
-
static qz: Brush;
|
|
482
|
-
static q0: Brush;
|
|
483
|
-
static qi: Brush;
|
|
484
|
-
static qh: Brush;
|
|
485
|
-
static e1: number;
|
|
486
|
-
static ef: number;
|
|
487
|
-
static ed: number;
|
|
488
|
-
static ee: number;
|
|
489
|
-
static e2: number;
|
|
490
|
-
static px: Brush;
|
|
491
|
-
private static eh;
|
|
492
|
-
private static ei;
|
|
493
|
-
private static nb;
|
|
494
|
-
private static tr;
|
|
495
|
-
private static qk;
|
|
496
|
-
private static ql;
|
|
497
|
-
private static qm;
|
|
498
|
-
private static eq;
|
|
499
|
-
private static ep;
|
|
500
|
-
private static em;
|
|
501
|
-
private static qp;
|
|
502
|
-
private static qq;
|
|
503
|
-
private static qo;
|
|
504
|
-
private static qn;
|
|
505
|
-
private static en;
|
|
506
|
-
private static el;
|
|
507
|
-
private static ej;
|
|
508
|
-
private static ek;
|
|
509
|
-
private static eo;
|
|
510
|
-
private static qj;
|
|
511
|
-
private static d2;
|
|
512
|
-
private static d3;
|
|
513
|
-
private static m9;
|
|
514
|
-
private static tp;
|
|
515
|
-
private static p8;
|
|
516
|
-
private static p9;
|
|
517
|
-
private static qa;
|
|
518
|
-
private static eb;
|
|
519
|
-
private static ea;
|
|
520
|
-
private static d7;
|
|
521
|
-
private static qd;
|
|
522
|
-
private static qe;
|
|
523
|
-
private static qc;
|
|
524
|
-
private static qb;
|
|
525
|
-
private static d8;
|
|
526
|
-
private static d6;
|
|
527
|
-
private static d4;
|
|
528
|
-
private static d5;
|
|
529
|
-
private static d9;
|
|
530
|
-
private static p7;
|
|
531
|
-
private static dr;
|
|
532
|
-
private static ds;
|
|
533
|
-
private static m8;
|
|
534
|
-
private static to;
|
|
535
|
-
private static p0;
|
|
536
|
-
private static p1;
|
|
537
|
-
private static p2;
|
|
538
|
-
private static d0;
|
|
539
|
-
private static dz;
|
|
540
|
-
private static dw;
|
|
541
|
-
private static p5;
|
|
542
|
-
private static p6;
|
|
543
|
-
private static p4;
|
|
544
|
-
private static p3;
|
|
545
|
-
private static dx;
|
|
546
|
-
private static dv;
|
|
547
|
-
private static dt;
|
|
548
|
-
private static du;
|
|
549
|
-
private static dy;
|
|
550
|
-
private static pz;
|
|
551
|
-
static er: number;
|
|
552
|
-
static es: number;
|
|
553
|
-
static nc: CornerRadius;
|
|
554
|
-
static ts: Thickness;
|
|
555
|
-
static qs: Brush;
|
|
556
|
-
static qt: Brush;
|
|
557
|
-
private static qu;
|
|
558
|
-
static e0: number;
|
|
559
|
-
static ez: number;
|
|
560
|
-
static ew: number;
|
|
561
|
-
static qx: Brush;
|
|
562
|
-
static qy: Brush;
|
|
563
|
-
static qw: Brush;
|
|
564
|
-
static qv: Brush;
|
|
565
|
-
static ex: number;
|
|
566
|
-
static ev: number;
|
|
567
|
-
static et: number;
|
|
568
|
-
static eu: number;
|
|
569
|
-
static ey: number;
|
|
570
|
-
static qr: Brush;
|
|
571
|
-
private df;
|
|
572
|
-
private e5;
|
|
573
|
-
private m7;
|
|
574
|
-
private tn;
|
|
575
|
-
private pg;
|
|
576
|
-
private q1;
|
|
577
|
-
private q2;
|
|
578
|
-
private hb;
|
|
579
|
-
private ha;
|
|
580
|
-
private e9;
|
|
581
|
-
private sp;
|
|
582
|
-
private sq;
|
|
583
|
-
private q4;
|
|
584
|
-
private q3;
|
|
585
|
-
private g8;
|
|
586
|
-
private e8;
|
|
587
|
-
private e6;
|
|
588
|
-
private e7;
|
|
589
|
-
private g9;
|
|
590
|
-
private pf;
|
|
591
|
-
private fa;
|
|
592
|
-
private fb;
|
|
400
|
+
static o: BaseControlTheme;
|
|
401
|
+
private dw;
|
|
402
|
+
private dx;
|
|
403
|
+
private kv;
|
|
404
|
+
private ol;
|
|
405
|
+
private m9;
|
|
406
|
+
private na;
|
|
407
|
+
private nb;
|
|
408
|
+
private d5;
|
|
409
|
+
private d4;
|
|
410
|
+
private d1;
|
|
411
|
+
private ne;
|
|
412
|
+
private nf;
|
|
593
413
|
private nd;
|
|
594
|
-
private
|
|
595
|
-
private
|
|
596
|
-
private
|
|
597
|
-
private
|
|
598
|
-
private
|
|
599
|
-
private
|
|
600
|
-
private
|
|
601
|
-
private
|
|
602
|
-
private
|
|
603
|
-
private
|
|
604
|
-
private
|
|
605
|
-
private
|
|
606
|
-
private
|
|
607
|
-
private
|
|
608
|
-
private
|
|
609
|
-
private
|
|
610
|
-
private
|
|
611
|
-
private dg;
|
|
612
|
-
private dh;
|
|
414
|
+
private nc;
|
|
415
|
+
private d2;
|
|
416
|
+
private d0;
|
|
417
|
+
private dy;
|
|
418
|
+
private dz;
|
|
419
|
+
private d3;
|
|
420
|
+
private m8;
|
|
421
|
+
private dl;
|
|
422
|
+
private dm;
|
|
423
|
+
private ku;
|
|
424
|
+
private ok;
|
|
425
|
+
private m1;
|
|
426
|
+
private m2;
|
|
427
|
+
private m3;
|
|
428
|
+
private dv;
|
|
429
|
+
private du;
|
|
430
|
+
private dr;
|
|
613
431
|
private m6;
|
|
614
|
-
private
|
|
615
|
-
private
|
|
616
|
-
private
|
|
617
|
-
private
|
|
432
|
+
private m7;
|
|
433
|
+
private m5;
|
|
434
|
+
private m4;
|
|
435
|
+
private ds;
|
|
618
436
|
private dq;
|
|
437
|
+
private dn;
|
|
619
438
|
private dp;
|
|
620
|
-
private
|
|
621
|
-
private
|
|
622
|
-
private
|
|
623
|
-
private
|
|
624
|
-
private
|
|
625
|
-
private
|
|
439
|
+
private dt;
|
|
440
|
+
private m0;
|
|
441
|
+
private db;
|
|
442
|
+
private dc;
|
|
443
|
+
private kt;
|
|
444
|
+
private oj;
|
|
445
|
+
private mt;
|
|
446
|
+
private mu;
|
|
447
|
+
private mv;
|
|
626
448
|
private dk;
|
|
627
|
-
private di;
|
|
628
449
|
private dj;
|
|
629
|
-
private
|
|
630
|
-
private
|
|
631
|
-
private
|
|
632
|
-
private
|
|
633
|
-
private
|
|
634
|
-
private
|
|
635
|
-
private
|
|
636
|
-
private pj;
|
|
637
|
-
private pk;
|
|
638
|
-
private de;
|
|
450
|
+
private dg;
|
|
451
|
+
private my;
|
|
452
|
+
private mz;
|
|
453
|
+
private mx;
|
|
454
|
+
private mw;
|
|
455
|
+
private dh;
|
|
456
|
+
private df;
|
|
639
457
|
private dd;
|
|
640
|
-
private
|
|
641
|
-
private
|
|
642
|
-
private
|
|
643
|
-
private
|
|
644
|
-
private
|
|
645
|
-
private
|
|
646
|
-
private
|
|
647
|
-
private
|
|
648
|
-
private
|
|
649
|
-
private dc;
|
|
650
|
-
private ph;
|
|
651
|
-
private gy;
|
|
652
|
-
private gz;
|
|
458
|
+
private de;
|
|
459
|
+
private di;
|
|
460
|
+
private ms;
|
|
461
|
+
private d6;
|
|
462
|
+
private d7;
|
|
463
|
+
private kw;
|
|
464
|
+
private om;
|
|
465
|
+
private nh;
|
|
466
|
+
private ni;
|
|
653
467
|
private nj;
|
|
654
|
-
private
|
|
655
|
-
private
|
|
656
|
-
private
|
|
657
|
-
private
|
|
658
|
-
private g7;
|
|
659
|
-
private g6;
|
|
660
|
-
private g3;
|
|
661
|
-
private sn;
|
|
662
|
-
private so;
|
|
663
|
-
private sm;
|
|
664
|
-
private sl;
|
|
665
|
-
private g4;
|
|
666
|
-
private g2;
|
|
667
|
-
private g0;
|
|
668
|
-
private g1;
|
|
669
|
-
private g5;
|
|
670
|
-
private sh;
|
|
671
|
-
private mm;
|
|
672
|
-
l7(): void;
|
|
673
|
-
mc(): void;
|
|
674
|
-
mb(): void;
|
|
675
|
-
mt(): void;
|
|
676
|
-
private mg;
|
|
468
|
+
private ef;
|
|
469
|
+
private ee;
|
|
470
|
+
private eb;
|
|
471
|
+
private nm;
|
|
677
472
|
private nn;
|
|
678
|
-
|
|
679
|
-
private
|
|
680
|
-
|
|
681
|
-
private
|
|
682
|
-
|
|
683
|
-
private
|
|
684
|
-
|
|
685
|
-
private
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
private
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
private
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
oy: Brush;
|
|
699
|
-
private nq;
|
|
700
|
-
ow: Brush;
|
|
701
|
-
private np;
|
|
702
|
-
ov: Brush;
|
|
473
|
+
private nl;
|
|
474
|
+
private nk;
|
|
475
|
+
private ec;
|
|
476
|
+
private ea;
|
|
477
|
+
private d8;
|
|
478
|
+
private d9;
|
|
479
|
+
private ed;
|
|
480
|
+
private ng;
|
|
481
|
+
private ka;
|
|
482
|
+
jv(): void;
|
|
483
|
+
j0(): void;
|
|
484
|
+
jz(): void;
|
|
485
|
+
kh(): void;
|
|
486
|
+
private j4;
|
|
487
|
+
private k0;
|
|
488
|
+
get l6(): Brush;
|
|
489
|
+
set l6(a: Brush);
|
|
490
|
+
private k1;
|
|
491
|
+
get l7(): Brush;
|
|
492
|
+
set l7(a: Brush);
|
|
703
493
|
private as;
|
|
704
|
-
cg: number;
|
|
705
|
-
|
|
706
|
-
ce: number;
|
|
707
|
-
private ao;
|
|
708
|
-
cc: number;
|
|
709
|
-
private ap;
|
|
710
|
-
cd: number;
|
|
494
|
+
get cg(): number;
|
|
495
|
+
set cg(a: number);
|
|
711
496
|
private at;
|
|
712
|
-
ch: number;
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
private
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
private
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
private
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
private
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
private
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
private
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
497
|
+
get ch(): number;
|
|
498
|
+
set ch(a: number);
|
|
499
|
+
private ki;
|
|
500
|
+
get ko(): CornerRadius;
|
|
501
|
+
set ko(a: CornerRadius);
|
|
502
|
+
private n8;
|
|
503
|
+
get oe(): Thickness;
|
|
504
|
+
set oe(a: Thickness);
|
|
505
|
+
private a1;
|
|
506
|
+
get cp(): number;
|
|
507
|
+
set cp(a: number);
|
|
508
|
+
private a0;
|
|
509
|
+
get co(): number;
|
|
510
|
+
set co(a: number);
|
|
511
|
+
private ax;
|
|
512
|
+
get cl(): number;
|
|
513
|
+
set cl(a: number);
|
|
514
|
+
private k4;
|
|
515
|
+
get ma(): Brush;
|
|
516
|
+
set ma(a: Brush);
|
|
517
|
+
private k5;
|
|
518
|
+
get mb(): Brush;
|
|
519
|
+
set mb(a: Brush);
|
|
520
|
+
private k3;
|
|
521
|
+
get l9(): Brush;
|
|
522
|
+
set l9(a: Brush);
|
|
523
|
+
private k2;
|
|
524
|
+
get l8(): Brush;
|
|
525
|
+
set l8(a: Brush);
|
|
526
|
+
private ay;
|
|
527
|
+
get cm(): number;
|
|
528
|
+
set cm(a: number);
|
|
529
|
+
private aw;
|
|
530
|
+
get ck(): number;
|
|
531
|
+
set ck(a: number);
|
|
532
|
+
private au;
|
|
533
|
+
get ci(): number;
|
|
534
|
+
set ci(a: number);
|
|
535
|
+
private av;
|
|
536
|
+
get cj(): number;
|
|
537
|
+
set cj(a: number);
|
|
538
|
+
private az;
|
|
539
|
+
get cn(): number;
|
|
540
|
+
set cn(a: number);
|
|
541
|
+
private kz;
|
|
542
|
+
get l5(): Brush;
|
|
543
|
+
set l5(a: Brush);
|
|
544
|
+
private bc;
|
|
545
|
+
get c0(): number;
|
|
546
|
+
set c0(a: number);
|
|
753
547
|
private bn;
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
private
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
private
|
|
766
|
-
|
|
548
|
+
get eg(): number;
|
|
549
|
+
set eg(a: number);
|
|
550
|
+
private k7;
|
|
551
|
+
get md(): Brush;
|
|
552
|
+
set md(a: Brush);
|
|
553
|
+
private kl;
|
|
554
|
+
get ks(): CornerRadius;
|
|
555
|
+
set ks(a: CornerRadius);
|
|
556
|
+
private ob;
|
|
557
|
+
get oi(): Thickness;
|
|
558
|
+
set oi(a: Thickness);
|
|
559
|
+
private cf;
|
|
560
|
+
get e8(): number;
|
|
561
|
+
set e8(a: number);
|
|
562
|
+
private ce;
|
|
563
|
+
get e7(): number;
|
|
564
|
+
set e7(a: number);
|
|
767
565
|
private br;
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
private
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
566
|
+
get ek(): number;
|
|
567
|
+
set ek(a: number);
|
|
568
|
+
private l3;
|
|
569
|
+
get n6(): Brush;
|
|
570
|
+
set n6(a: Brush);
|
|
571
|
+
private l4;
|
|
572
|
+
get n7(): Brush;
|
|
573
|
+
set n7(a: Brush);
|
|
574
|
+
private lo;
|
|
575
|
+
get nq(): Brush;
|
|
576
|
+
set nq(a: Brush);
|
|
577
|
+
private ln;
|
|
578
|
+
get np(): Brush;
|
|
579
|
+
set np(a: Brush);
|
|
580
|
+
private cc;
|
|
581
|
+
get e5(): number;
|
|
582
|
+
set e5(a: number);
|
|
779
583
|
private bq;
|
|
780
|
-
|
|
584
|
+
get ej(): number;
|
|
585
|
+
set ej(a: number);
|
|
781
586
|
private bo;
|
|
782
|
-
|
|
587
|
+
get eh(): number;
|
|
588
|
+
set eh(a: number);
|
|
783
589
|
private bp;
|
|
784
|
-
|
|
590
|
+
get ei(): number;
|
|
591
|
+
set ei(a: number);
|
|
592
|
+
private cd;
|
|
593
|
+
get e6(): number;
|
|
594
|
+
set e6(a: number);
|
|
595
|
+
private k6;
|
|
596
|
+
get mc(): Brush;
|
|
597
|
+
set mc(a: Brush);
|
|
598
|
+
private bs;
|
|
599
|
+
get el(): number;
|
|
600
|
+
set el(a: number);
|
|
785
601
|
private bt;
|
|
786
|
-
|
|
602
|
+
get em(): number;
|
|
603
|
+
set em(a: number);
|
|
604
|
+
private lr;
|
|
605
|
+
get nt(): Brush;
|
|
606
|
+
set nt(a: Brush);
|
|
607
|
+
private lq;
|
|
608
|
+
get ns(): Brush;
|
|
609
|
+
set ns(a: Brush);
|
|
610
|
+
private km;
|
|
611
|
+
get kx(): CornerRadius;
|
|
612
|
+
set kx(a: CornerRadius);
|
|
787
613
|
private oc;
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
private
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
private
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
private
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
private
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
614
|
+
get on(): Thickness;
|
|
615
|
+
set on(a: Thickness);
|
|
616
|
+
private b1;
|
|
617
|
+
get eu(): number;
|
|
618
|
+
set eu(a: number);
|
|
619
|
+
private b0;
|
|
620
|
+
get et(): number;
|
|
621
|
+
set et(a: number);
|
|
622
|
+
private bx;
|
|
623
|
+
get eq(): number;
|
|
624
|
+
set eq(a: number);
|
|
625
|
+
private lu;
|
|
626
|
+
get nw(): Brush;
|
|
627
|
+
set nw(a: Brush);
|
|
628
|
+
private lv;
|
|
629
|
+
get nx(): Brush;
|
|
630
|
+
set nx(a: Brush);
|
|
631
|
+
private lt;
|
|
632
|
+
get nv(): Brush;
|
|
633
|
+
set nv(a: Brush);
|
|
634
|
+
private ls;
|
|
635
|
+
get nu(): Brush;
|
|
636
|
+
set nu(a: Brush);
|
|
637
|
+
private by;
|
|
638
|
+
get er(): number;
|
|
639
|
+
set er(a: number);
|
|
640
|
+
private bw;
|
|
641
|
+
get ep(): number;
|
|
642
|
+
set ep(a: number);
|
|
643
|
+
private bu;
|
|
644
|
+
get en(): number;
|
|
645
|
+
set en(a: number);
|
|
646
|
+
private bv;
|
|
647
|
+
get eo(): number;
|
|
648
|
+
set eo(a: number);
|
|
649
|
+
private bz;
|
|
650
|
+
get es(): number;
|
|
651
|
+
set es(a: number);
|
|
652
|
+
private lp;
|
|
653
|
+
get nr(): Brush;
|
|
654
|
+
set nr(a: Brush);
|
|
815
655
|
private bd;
|
|
816
|
-
c1: number;
|
|
817
|
-
|
|
818
|
-
cz: number;
|
|
819
|
-
private a9;
|
|
820
|
-
cx: number;
|
|
821
|
-
private ba;
|
|
822
|
-
cy: number;
|
|
656
|
+
get c1(): number;
|
|
657
|
+
set c1(a: number);
|
|
823
658
|
private be;
|
|
824
|
-
c2: number;
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
private
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
private
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
private
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
private
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
659
|
+
get c2(): number;
|
|
660
|
+
set c2(a: number);
|
|
661
|
+
private lh;
|
|
662
|
+
get mn(): Brush;
|
|
663
|
+
set mn(a: Brush);
|
|
664
|
+
private lg;
|
|
665
|
+
get mm(): Brush;
|
|
666
|
+
set mm(a: Brush);
|
|
667
|
+
private kk;
|
|
668
|
+
get kq(): CornerRadius;
|
|
669
|
+
set kq(a: CornerRadius);
|
|
670
|
+
private oa;
|
|
671
|
+
get og(): Thickness;
|
|
672
|
+
set og(a: Thickness);
|
|
673
|
+
private bm;
|
|
674
|
+
get da(): number;
|
|
675
|
+
set da(a: number);
|
|
676
|
+
private bl;
|
|
677
|
+
get c9(): number;
|
|
678
|
+
set c9(a: number);
|
|
679
|
+
private bi;
|
|
680
|
+
get c6(): number;
|
|
681
|
+
set c6(a: number);
|
|
682
|
+
private lk;
|
|
683
|
+
get mq(): Brush;
|
|
684
|
+
set mq(a: Brush);
|
|
685
|
+
private ll;
|
|
686
|
+
get mr(): Brush;
|
|
687
|
+
set mr(a: Brush);
|
|
688
|
+
private lj;
|
|
689
|
+
get mp(): Brush;
|
|
690
|
+
set mp(a: Brush);
|
|
691
|
+
private li;
|
|
692
|
+
get mo(): Brush;
|
|
693
|
+
set mo(a: Brush);
|
|
694
|
+
private bj;
|
|
695
|
+
get c7(): number;
|
|
696
|
+
set c7(a: number);
|
|
697
|
+
private bh;
|
|
698
|
+
get c5(): number;
|
|
699
|
+
set c5(a: number);
|
|
700
|
+
private bf;
|
|
701
|
+
get c3(): number;
|
|
702
|
+
set c3(a: number);
|
|
703
|
+
private bg;
|
|
704
|
+
get c4(): number;
|
|
705
|
+
set c4(a: number);
|
|
706
|
+
private bk;
|
|
707
|
+
get c8(): number;
|
|
708
|
+
set c8(a: number);
|
|
709
|
+
private lf;
|
|
710
|
+
get ml(): Brush;
|
|
711
|
+
set ml(a: Brush);
|
|
853
712
|
private a2;
|
|
854
|
-
cq: number;
|
|
855
|
-
|
|
856
|
-
co: number;
|
|
857
|
-
private ay;
|
|
858
|
-
cm: number;
|
|
859
|
-
private az;
|
|
860
|
-
cn: number;
|
|
713
|
+
get cq(): number;
|
|
714
|
+
set cq(a: number);
|
|
861
715
|
private a3;
|
|
862
|
-
cr: number;
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
private
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
private
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
private
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
private
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
716
|
+
get cr(): number;
|
|
717
|
+
set cr(a: number);
|
|
718
|
+
private la;
|
|
719
|
+
get mg(): Brush;
|
|
720
|
+
set mg(a: Brush);
|
|
721
|
+
private k9;
|
|
722
|
+
get mf(): Brush;
|
|
723
|
+
set mf(a: Brush);
|
|
724
|
+
private kj;
|
|
725
|
+
get kp(): CornerRadius;
|
|
726
|
+
set kp(a: CornerRadius);
|
|
727
|
+
private n9;
|
|
728
|
+
get of(): Thickness;
|
|
729
|
+
set of(a: Thickness);
|
|
730
|
+
private bb;
|
|
731
|
+
get cz(): number;
|
|
732
|
+
set cz(a: number);
|
|
733
|
+
private ba;
|
|
734
|
+
get cy(): number;
|
|
735
|
+
set cy(a: number);
|
|
736
|
+
private a7;
|
|
737
|
+
get cv(): number;
|
|
738
|
+
set cv(a: number);
|
|
739
|
+
private ld;
|
|
740
|
+
get mj(): Brush;
|
|
741
|
+
set mj(a: Brush);
|
|
742
|
+
private le;
|
|
743
|
+
get mk(): Brush;
|
|
744
|
+
set mk(a: Brush);
|
|
745
|
+
private lc;
|
|
746
|
+
get mi(): Brush;
|
|
747
|
+
set mi(a: Brush);
|
|
748
|
+
private lb;
|
|
749
|
+
get mh(): Brush;
|
|
750
|
+
set mh(a: Brush);
|
|
751
|
+
private a8;
|
|
752
|
+
get cw(): number;
|
|
753
|
+
set cw(a: number);
|
|
754
|
+
private a6;
|
|
755
|
+
get cu(): number;
|
|
756
|
+
set cu(a: number);
|
|
757
|
+
private a4;
|
|
758
|
+
get cs(): number;
|
|
759
|
+
set cs(a: number);
|
|
760
|
+
private a5;
|
|
761
|
+
get ct(): number;
|
|
762
|
+
set ct(a: number);
|
|
763
|
+
private a9;
|
|
764
|
+
get cx(): number;
|
|
765
|
+
set cx(a: number);
|
|
766
|
+
private k8;
|
|
767
|
+
get me(): Brush;
|
|
768
|
+
set me(a: Brush);
|
|
891
769
|
private b2;
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
hv: number;
|
|
895
|
-
private by;
|
|
896
|
-
ht: number;
|
|
897
|
-
private bz;
|
|
898
|
-
hu: number;
|
|
770
|
+
get ev(): number;
|
|
771
|
+
set ev(a: number);
|
|
899
772
|
private b3;
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
773
|
+
get ew(): number;
|
|
774
|
+
set ew(a: number);
|
|
775
|
+
private ly;
|
|
776
|
+
get n0(): Brush;
|
|
777
|
+
set n0(a: Brush);
|
|
778
|
+
private lx;
|
|
779
|
+
get nz(): Brush;
|
|
780
|
+
set nz(a: Brush);
|
|
781
|
+
private kn;
|
|
782
|
+
get ky(): CornerRadius;
|
|
783
|
+
set ky(a: CornerRadius);
|
|
784
|
+
private od;
|
|
785
|
+
get oo(): Thickness;
|
|
786
|
+
set oo(a: Thickness);
|
|
787
|
+
private cb;
|
|
788
|
+
get e4(): number;
|
|
789
|
+
set e4(a: number);
|
|
790
|
+
private ca;
|
|
791
|
+
get e3(): number;
|
|
792
|
+
set e3(a: number);
|
|
793
|
+
private b7;
|
|
794
|
+
get e0(): number;
|
|
795
|
+
set e0(a: number);
|
|
796
|
+
private l1;
|
|
797
|
+
get n3(): Brush;
|
|
798
|
+
set n3(a: Brush);
|
|
799
|
+
private l2;
|
|
800
|
+
get n4(): Brush;
|
|
801
|
+
set n4(a: Brush);
|
|
802
|
+
private l0;
|
|
803
|
+
get n2(): Brush;
|
|
804
|
+
set n2(a: Brush);
|
|
805
|
+
private lz;
|
|
806
|
+
get n1(): Brush;
|
|
807
|
+
set n1(a: Brush);
|
|
808
|
+
private b8;
|
|
809
|
+
get e1(): number;
|
|
810
|
+
set e1(a: number);
|
|
811
|
+
private b6;
|
|
812
|
+
get ez(): number;
|
|
813
|
+
set ez(a: number);
|
|
814
|
+
private b4;
|
|
815
|
+
get ex(): number;
|
|
816
|
+
set ex(a: number);
|
|
817
|
+
private b5;
|
|
818
|
+
get ey(): number;
|
|
819
|
+
set ey(a: number);
|
|
820
|
+
private b9;
|
|
821
|
+
get e2(): number;
|
|
822
|
+
set e2(a: number);
|
|
823
|
+
private lw;
|
|
824
|
+
get ny(): Brush;
|
|
825
|
+
set ny(a: Brush);
|
|
826
|
+
private ad;
|
|
907
827
|
private z;
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
private
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
private
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
828
|
+
get an(): boolean;
|
|
829
|
+
set an(a: boolean);
|
|
830
|
+
j8(): void;
|
|
831
|
+
private af;
|
|
832
|
+
private ab;
|
|
833
|
+
get ap(): boolean;
|
|
834
|
+
set ap(a: boolean);
|
|
835
|
+
private ae;
|
|
836
|
+
private aa;
|
|
837
|
+
get ao(): boolean;
|
|
838
|
+
set ao(a: boolean);
|
|
839
|
+
private x;
|
|
840
|
+
get ai(): boolean;
|
|
841
|
+
set ai(a: boolean);
|
|
842
|
+
private lm;
|
|
843
|
+
get no(): Brush;
|
|
844
|
+
set no(a: Brush);
|
|
845
|
+
private static fc;
|
|
846
|
+
private ff;
|
|
847
|
+
get hk(): string;
|
|
848
|
+
set hk(a: string);
|
|
849
|
+
private ac;
|
|
850
|
+
get disabled(): boolean;
|
|
851
|
+
set disabled(a: boolean);
|
|
852
|
+
j3(): void;
|
|
923
853
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
924
854
|
onDetachedFromUI(): void;
|
|
925
855
|
onAttachedToUI(): void;
|
|
926
856
|
ensureShift(): void;
|
|
927
|
-
protected
|
|
928
|
-
|
|
929
|
-
|
|
857
|
+
protected aq(): boolean;
|
|
858
|
+
fe(): any;
|
|
859
|
+
hb(): string;
|
|
930
860
|
b(): InputGroupVisualModelExport;
|
|
931
861
|
provideContainer(a: DomRenderer): void;
|
|
932
|
-
private
|
|
933
|
-
private
|
|
934
|
-
private
|
|
935
|
-
private
|
|
936
|
-
private
|
|
937
|
-
|
|
938
|
-
private
|
|
939
|
-
private
|
|
940
|
-
private
|
|
941
|
-
private
|
|
942
|
-
private
|
|
862
|
+
private f;
|
|
863
|
+
private v;
|
|
864
|
+
private ah;
|
|
865
|
+
private y;
|
|
866
|
+
private ag;
|
|
867
|
+
get inputs(): XInputGroupInputCollection;
|
|
868
|
+
private fd;
|
|
869
|
+
private get fb();
|
|
870
|
+
private j9;
|
|
871
|
+
private get ak();
|
|
872
|
+
private get ar();
|
|
873
|
+
static j: Theme;
|
|
874
|
+
static i: Theme;
|
|
875
|
+
static n5: Brush;
|
|
876
|
+
static l: Theme;
|
|
877
|
+
static k: Theme;
|
|
878
|
+
static m: ThemeResolver;
|
|
943
879
|
}
|
|
944
880
|
/**
|
|
945
881
|
* @hidden
|
|
@@ -957,11 +893,13 @@ export declare class XLabel extends XInputGroupItem {
|
|
|
957
893
|
static $t: Type;
|
|
958
894
|
constructor();
|
|
959
895
|
private n;
|
|
960
|
-
p: BaseControlTheme;
|
|
896
|
+
get p(): BaseControlTheme;
|
|
897
|
+
set p(a: BaseControlTheme);
|
|
961
898
|
private _view;
|
|
962
|
-
view: LabelView;
|
|
899
|
+
get view(): LabelView;
|
|
900
|
+
set view(a: LabelView);
|
|
963
901
|
destroy(): void;
|
|
964
|
-
private
|
|
902
|
+
private get i();
|
|
965
903
|
private aa;
|
|
966
904
|
private z;
|
|
967
905
|
private b8;
|
|
@@ -989,70 +927,98 @@ export declare class XLabel extends XInputGroupItem {
|
|
|
989
927
|
private cl;
|
|
990
928
|
private static x;
|
|
991
929
|
private r;
|
|
992
|
-
t: ControlDisplayDensity;
|
|
930
|
+
get t(): ControlDisplayDensity;
|
|
931
|
+
set t(a: ControlDisplayDensity);
|
|
993
932
|
private q;
|
|
994
|
-
s: ControlDisplayDensity;
|
|
933
|
+
get s(): ControlDisplayDensity;
|
|
934
|
+
set s(a: ControlDisplayDensity);
|
|
995
935
|
private cr;
|
|
996
|
-
cz: Brush;
|
|
936
|
+
get cz(): Brush;
|
|
937
|
+
set cz(a: Brush);
|
|
997
938
|
private co;
|
|
998
|
-
cw: Brush;
|
|
939
|
+
get cw(): Brush;
|
|
940
|
+
set cw(a: Brush);
|
|
999
941
|
private cp;
|
|
1000
|
-
cx: Brush;
|
|
942
|
+
get cx(): Brush;
|
|
943
|
+
set cx(a: Brush);
|
|
1001
944
|
private cq;
|
|
1002
|
-
cy: Brush;
|
|
945
|
+
get cy(): Brush;
|
|
946
|
+
set cy(a: Brush);
|
|
1003
947
|
private u;
|
|
1004
|
-
w: FontInfo;
|
|
948
|
+
get w(): FontInfo;
|
|
949
|
+
set w(a: FontInfo);
|
|
1005
950
|
private cv;
|
|
1006
|
-
df: Brush;
|
|
951
|
+
get df(): Brush;
|
|
952
|
+
set df(a: Brush);
|
|
1007
953
|
private cs;
|
|
1008
|
-
dc: Brush;
|
|
954
|
+
get dc(): Brush;
|
|
955
|
+
set dc(a: Brush);
|
|
1009
956
|
private ct;
|
|
1010
|
-
dd: Brush;
|
|
957
|
+
get dd(): Brush;
|
|
958
|
+
set dd(a: Brush);
|
|
1011
959
|
private k;
|
|
1012
|
-
l: LabelShiftType;
|
|
960
|
+
get l(): LabelShiftType;
|
|
961
|
+
set l(a: LabelShiftType);
|
|
1013
962
|
private af;
|
|
1014
|
-
an: boolean;
|
|
963
|
+
get an(): boolean;
|
|
964
|
+
set an(a: boolean);
|
|
1015
965
|
ck(a: boolean, b?: boolean): void;
|
|
1016
966
|
private ad;
|
|
1017
|
-
al: boolean;
|
|
967
|
+
get al(): boolean;
|
|
968
|
+
set al(a: boolean);
|
|
1018
969
|
ce(): void;
|
|
1019
970
|
cf(): void;
|
|
1020
971
|
private v;
|
|
1021
|
-
y: FontInfo;
|
|
972
|
+
get y(): FontInfo;
|
|
973
|
+
set y(a: FontInfo);
|
|
1022
974
|
private cu;
|
|
1023
|
-
de: Brush;
|
|
975
|
+
get de(): Brush;
|
|
976
|
+
set de(a: Brush);
|
|
1024
977
|
private static at;
|
|
1025
978
|
private a2;
|
|
1026
|
-
bu: string;
|
|
979
|
+
get bu(): string;
|
|
980
|
+
set bu(a: string);
|
|
1027
981
|
private ay;
|
|
1028
|
-
bi: string;
|
|
982
|
+
get bi(): string;
|
|
983
|
+
set bi(a: string);
|
|
1029
984
|
private az;
|
|
1030
|
-
bl: string;
|
|
985
|
+
get bl(): string;
|
|
986
|
+
set bl(a: string);
|
|
1031
987
|
private a0;
|
|
1032
|
-
bn: string;
|
|
988
|
+
get bn(): string;
|
|
989
|
+
set bn(a: string);
|
|
1033
990
|
private av;
|
|
1034
|
-
ba: string;
|
|
991
|
+
get ba(): string;
|
|
992
|
+
set ba(a: string);
|
|
1035
993
|
private aw;
|
|
1036
|
-
bc: string;
|
|
994
|
+
get bc(): string;
|
|
995
|
+
set bc(a: string);
|
|
1037
996
|
private ar;
|
|
1038
997
|
private ab;
|
|
1039
|
-
|
|
1040
|
-
as: number;
|
|
998
|
+
get aj(): boolean;
|
|
999
|
+
get as(): number;
|
|
1000
|
+
set as(a: number);
|
|
1041
1001
|
private a1;
|
|
1042
|
-
bp: string;
|
|
1002
|
+
get bp(): string;
|
|
1003
|
+
set bp(a: string);
|
|
1043
1004
|
private ax;
|
|
1044
|
-
be: string;
|
|
1005
|
+
get be(): string;
|
|
1006
|
+
set be(a: string);
|
|
1045
1007
|
private a3;
|
|
1046
|
-
text: string;
|
|
1008
|
+
get text(): string;
|
|
1009
|
+
set text(a: string);
|
|
1047
1010
|
private ae;
|
|
1048
|
-
am: boolean;
|
|
1011
|
+
get am(): boolean;
|
|
1012
|
+
set am(a: boolean);
|
|
1049
1013
|
private ai;
|
|
1050
|
-
aq: boolean;
|
|
1014
|
+
get aq(): boolean;
|
|
1015
|
+
set aq(a: boolean);
|
|
1051
1016
|
private ac;
|
|
1052
1017
|
private ah;
|
|
1053
1018
|
private ag;
|
|
1054
1019
|
ap: boolean;
|
|
1055
|
-
disabled: boolean;
|
|
1020
|
+
get disabled(): boolean;
|
|
1021
|
+
set disabled(a: boolean);
|
|
1056
1022
|
ch(): void;
|
|
1057
1023
|
onDetachedFromUI(): void;
|
|
1058
1024
|
onAttachedToUI(): void;
|
|
@@ -1068,53 +1034,68 @@ export declare class XLabel extends XInputGroupItem {
|
|
|
1068
1034
|
export declare class XInput extends XInputGroupItem {
|
|
1069
1035
|
static $t: Type;
|
|
1070
1036
|
private u;
|
|
1071
|
-
private
|
|
1072
|
-
private
|
|
1037
|
+
private a7;
|
|
1038
|
+
private a8;
|
|
1073
1039
|
private q;
|
|
1074
|
-
private
|
|
1075
|
-
private
|
|
1040
|
+
private bp;
|
|
1041
|
+
private bj;
|
|
1076
1042
|
private ah;
|
|
1077
|
-
private
|
|
1043
|
+
private bk;
|
|
1078
1044
|
private ai;
|
|
1079
1045
|
private aq;
|
|
1080
1046
|
constructor();
|
|
1081
1047
|
private _view;
|
|
1082
|
-
view: InputView;
|
|
1048
|
+
get view(): InputView;
|
|
1049
|
+
set view(a: InputView);
|
|
1083
1050
|
destroy(): void;
|
|
1084
1051
|
private n;
|
|
1085
|
-
o: InputShiftType;
|
|
1052
|
+
get o(): InputShiftType;
|
|
1053
|
+
set o(a: InputShiftType);
|
|
1086
1054
|
private v;
|
|
1087
|
-
w: BaseControlTheme;
|
|
1055
|
+
get w(): BaseControlTheme;
|
|
1056
|
+
set w(a: BaseControlTheme);
|
|
1088
1057
|
private y;
|
|
1089
|
-
aa: ControlDisplayDensity;
|
|
1058
|
+
get aa(): ControlDisplayDensity;
|
|
1059
|
+
set aa(a: ControlDisplayDensity);
|
|
1090
1060
|
private x;
|
|
1091
|
-
z: ControlDisplayDensity;
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1061
|
+
get z(): ControlDisplayDensity;
|
|
1062
|
+
set z(a: ControlDisplayDensity);
|
|
1063
|
+
private bo;
|
|
1064
|
+
get ce(): string;
|
|
1065
|
+
set ce(a: string);
|
|
1066
|
+
private br;
|
|
1067
|
+
get ci(): string;
|
|
1068
|
+
set ci(a: string);
|
|
1096
1069
|
private ak;
|
|
1097
|
-
|
|
1070
|
+
get au(): boolean;
|
|
1071
|
+
set au(a: boolean);
|
|
1072
|
+
private ar;
|
|
1073
|
+
get a1(): boolean;
|
|
1074
|
+
set a1(a: boolean);
|
|
1098
1075
|
protected h(a: string, b: any, c: any): void;
|
|
1099
|
-
private
|
|
1100
|
-
private
|
|
1101
|
-
private
|
|
1102
|
-
private
|
|
1103
|
-
private
|
|
1104
|
-
private
|
|
1105
|
-
static
|
|
1106
|
-
static
|
|
1076
|
+
private di;
|
|
1077
|
+
private dk;
|
|
1078
|
+
private dj;
|
|
1079
|
+
private c8;
|
|
1080
|
+
private dv;
|
|
1081
|
+
private du;
|
|
1082
|
+
static d6: Brush;
|
|
1083
|
+
static d5: Brush;
|
|
1107
1084
|
static ae: FontInfo;
|
|
1108
|
-
private
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1085
|
+
private d0;
|
|
1086
|
+
get d4(): Brush;
|
|
1087
|
+
set d4(a: Brush);
|
|
1088
|
+
private dz;
|
|
1089
|
+
get d3(): Brush;
|
|
1090
|
+
set d3(a: Brush);
|
|
1112
1091
|
private ab;
|
|
1113
|
-
ad: FontInfo;
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1092
|
+
get ad(): FontInfo;
|
|
1093
|
+
set ad(a: FontInfo);
|
|
1094
|
+
private d2;
|
|
1095
|
+
get d8(): Brush;
|
|
1096
|
+
set d8(a: Brush);
|
|
1097
|
+
cz(): void;
|
|
1098
|
+
c7(): void;
|
|
1118
1099
|
keyDown: (sender: any, args: KeyEventArgs) => void;
|
|
1119
1100
|
keyUp: (sender: any, args: KeyEventArgs) => void;
|
|
1120
1101
|
keyPress: (sender: any, args: KeyEventArgs) => void;
|
|
@@ -1122,81 +1103,100 @@ export declare class XInput extends XInputGroupItem {
|
|
|
1122
1103
|
lostFocus: (sender: any, e: EventArgs) => void;
|
|
1123
1104
|
mouseDown: (sender: any, e: MouseButtonEventArgs) => void;
|
|
1124
1105
|
mouseUp: (sender: any, e: MouseButtonEventArgs) => void;
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1106
|
+
da(a: KeyEventArgs): void;
|
|
1107
|
+
dc(a: KeyEventArgs): void;
|
|
1108
|
+
db(a: KeyEventArgs): void;
|
|
1109
|
+
dd(a: MouseButtonEventArgs): void;
|
|
1110
|
+
dg(a: MouseButtonEventArgs): void;
|
|
1111
|
+
dh(): void;
|
|
1112
|
+
c5(): void;
|
|
1113
|
+
c6(): void;
|
|
1131
1114
|
c0(): void;
|
|
1132
1115
|
c1(): void;
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
c9(): void;
|
|
1138
|
-
da(): void;
|
|
1116
|
+
c3(): void;
|
|
1117
|
+
c2(a: string): void;
|
|
1118
|
+
de(): void;
|
|
1119
|
+
df(): void;
|
|
1139
1120
|
private ac;
|
|
1140
|
-
af: FontInfo;
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
private
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
private
|
|
1149
|
-
|
|
1150
|
-
|
|
1121
|
+
get af(): FontInfo;
|
|
1122
|
+
set af(a: FontInfo);
|
|
1123
|
+
private bn;
|
|
1124
|
+
get b8(): string;
|
|
1125
|
+
set b8(a: string);
|
|
1126
|
+
private bq;
|
|
1127
|
+
get cg(): string;
|
|
1128
|
+
set cg(a: string);
|
|
1129
|
+
private d1;
|
|
1130
|
+
get d7(): Brush;
|
|
1131
|
+
set d7(a: Brush);
|
|
1132
|
+
private static bf;
|
|
1133
|
+
private bm;
|
|
1134
|
+
get b5(): string;
|
|
1135
|
+
set b5(a: string);
|
|
1136
|
+
private a9;
|
|
1151
1137
|
private aj;
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
private
|
|
1157
|
-
|
|
1138
|
+
get as(): boolean;
|
|
1139
|
+
get be(): number;
|
|
1140
|
+
set be(a: number);
|
|
1141
|
+
cu(): void;
|
|
1142
|
+
private bl;
|
|
1143
|
+
get b2(): string;
|
|
1144
|
+
set b2(a: string);
|
|
1145
|
+
private bi;
|
|
1146
|
+
get bx(): string;
|
|
1147
|
+
set bx(a: string);
|
|
1158
1148
|
private an;
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1149
|
+
get aw(): boolean;
|
|
1150
|
+
set aw(a: boolean);
|
|
1151
|
+
bh: any;
|
|
1152
|
+
private bs;
|
|
1153
|
+
get cq(): string;
|
|
1154
|
+
set cq(a: string);
|
|
1155
|
+
get at(): boolean;
|
|
1164
1156
|
private am;
|
|
1165
1157
|
private al;
|
|
1166
|
-
disabled: boolean;
|
|
1158
|
+
get disabled(): boolean;
|
|
1159
|
+
set disabled(a: boolean);
|
|
1167
1160
|
private ao;
|
|
1168
|
-
readonly: boolean;
|
|
1169
|
-
|
|
1161
|
+
get readonly(): boolean;
|
|
1162
|
+
set readonly(a: boolean);
|
|
1163
|
+
private dx;
|
|
1164
|
+
get dy(): HorizontalAlignment;
|
|
1165
|
+
set dy(a: HorizontalAlignment);
|
|
1166
|
+
dl(): void;
|
|
1170
1167
|
onDetachedFromUI(): void;
|
|
1171
1168
|
onAttachedToUI(): void;
|
|
1172
|
-
protected
|
|
1173
|
-
|
|
1174
|
-
|
|
1169
|
+
protected az(): boolean;
|
|
1170
|
+
bg(): any;
|
|
1171
|
+
b1(): string;
|
|
1175
1172
|
j(): InputVisualModelExport;
|
|
1176
1173
|
change: (sender: any, args: InputChangeEventArgs) => void;
|
|
1177
1174
|
changing: (sender: any, args: InputChangeEventArgs) => void;
|
|
1178
1175
|
compositionStart: (sender: any, e: EventArgs) => void;
|
|
1179
1176
|
compositionEnd: (sender: any, args: InputChangeEventArgs) => void;
|
|
1180
|
-
|
|
1177
|
+
dr(a: number, b: number): void;
|
|
1181
1178
|
provideContainer(a: DomRenderer): void;
|
|
1182
|
-
|
|
1179
|
+
ct(): void;
|
|
1183
1180
|
focus(a?: boolean): void;
|
|
1184
|
-
|
|
1185
|
-
private
|
|
1186
|
-
private
|
|
1187
|
-
private
|
|
1188
|
-
private
|
|
1189
|
-
private
|
|
1190
|
-
private
|
|
1191
|
-
selectionStart: number;
|
|
1192
|
-
|
|
1181
|
+
dp(): void;
|
|
1182
|
+
private dt;
|
|
1183
|
+
private ds;
|
|
1184
|
+
private dw;
|
|
1185
|
+
private cs;
|
|
1186
|
+
private bb;
|
|
1187
|
+
private ba;
|
|
1188
|
+
get selectionStart(): number;
|
|
1189
|
+
set selectionStart(a: number);
|
|
1190
|
+
get selectionEnd(): number;
|
|
1191
|
+
set selectionEnd(a: number);
|
|
1193
1192
|
private ap;
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1193
|
+
get ay(): boolean;
|
|
1194
|
+
set ay(a: boolean);
|
|
1195
|
+
dq(a: boolean, b?: boolean): void;
|
|
1196
|
+
private c9;
|
|
1197
1197
|
private ag;
|
|
1198
|
-
|
|
1199
|
-
private
|
|
1200
|
-
private
|
|
1201
|
-
private
|
|
1198
|
+
a0: boolean;
|
|
1199
|
+
private cw;
|
|
1200
|
+
private get i();
|
|
1201
|
+
private dm;
|
|
1202
1202
|
}
|