igniteui-webcomponents-inputs 4.2.5 → 4.3.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-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
|
@@ -115,49 +115,70 @@ export declare class XCalendar extends Base implements INotifyPropertyChanged {
|
|
|
115
115
|
destroy(): void;
|
|
116
116
|
provideContainer(a: DomRenderer): void;
|
|
117
117
|
private w;
|
|
118
|
-
private
|
|
118
|
+
private get x();
|
|
119
119
|
private as;
|
|
120
|
-
value: Date;
|
|
120
|
+
get value(): Date;
|
|
121
|
+
set value(a: Date);
|
|
121
122
|
private ar;
|
|
122
|
-
av: Date;
|
|
123
|
+
get av(): Date;
|
|
124
|
+
set av(a: Date);
|
|
123
125
|
private ao;
|
|
124
|
-
au: Date;
|
|
126
|
+
get au(): Date;
|
|
127
|
+
set au(a: Date);
|
|
125
128
|
private an;
|
|
126
|
-
at: Date;
|
|
129
|
+
get at(): Date;
|
|
130
|
+
set at(a: Date);
|
|
127
131
|
private s;
|
|
128
|
-
t: ControlDisplayDensity;
|
|
132
|
+
get t(): ControlDisplayDensity;
|
|
133
|
+
set t(a: ControlDisplayDensity);
|
|
129
134
|
private q;
|
|
130
|
-
r: BaseControlTheme;
|
|
135
|
+
get r(): BaseControlTheme;
|
|
136
|
+
set r(a: BaseControlTheme);
|
|
131
137
|
private c6;
|
|
132
|
-
dg: Brush;
|
|
138
|
+
get dg(): Brush;
|
|
139
|
+
set dg(a: Brush);
|
|
133
140
|
private dc;
|
|
134
|
-
dm: Brush;
|
|
141
|
+
get dm(): Brush;
|
|
142
|
+
set dm(a: Brush);
|
|
135
143
|
private de;
|
|
136
|
-
dp: Brush;
|
|
144
|
+
get dp(): Brush;
|
|
145
|
+
set dp(a: Brush);
|
|
137
146
|
private c9;
|
|
138
|
-
dj: Brush;
|
|
147
|
+
get dj(): Brush;
|
|
148
|
+
set dj(a: Brush);
|
|
139
149
|
private db;
|
|
140
|
-
dl: Brush;
|
|
150
|
+
get dl(): Brush;
|
|
151
|
+
set dl(a: Brush);
|
|
141
152
|
private df;
|
|
142
|
-
dq: Brush;
|
|
153
|
+
get dq(): Brush;
|
|
154
|
+
set dq(a: Brush);
|
|
143
155
|
private dd;
|
|
144
|
-
dn: Brush;
|
|
156
|
+
get dn(): Brush;
|
|
157
|
+
set dn(a: Brush);
|
|
145
158
|
private da;
|
|
146
|
-
dk: Brush;
|
|
159
|
+
get dk(): Brush;
|
|
160
|
+
set dk(a: Brush);
|
|
147
161
|
private c8;
|
|
148
|
-
di: Brush;
|
|
162
|
+
get di(): Brush;
|
|
163
|
+
set di(a: Brush);
|
|
149
164
|
private c7;
|
|
150
|
-
dh: Brush;
|
|
165
|
+
get dh(): Brush;
|
|
166
|
+
set dh(a: Brush);
|
|
151
167
|
private y;
|
|
152
|
-
ae: boolean;
|
|
168
|
+
get ae(): boolean;
|
|
169
|
+
set ae(a: boolean);
|
|
153
170
|
private u;
|
|
154
|
-
v: FontInfo;
|
|
171
|
+
get v(): FontInfo;
|
|
172
|
+
set v(a: FontInfo);
|
|
155
173
|
private k;
|
|
156
|
-
l: DayOfWeek;
|
|
174
|
+
get l(): DayOfWeek;
|
|
175
|
+
set l(a: DayOfWeek);
|
|
157
176
|
private n;
|
|
158
|
-
o: FirstWeek;
|
|
177
|
+
get o(): FirstWeek;
|
|
178
|
+
set o(a: FirstWeek);
|
|
159
179
|
private z;
|
|
160
|
-
af: boolean;
|
|
180
|
+
get af(): boolean;
|
|
181
|
+
set af(a: boolean);
|
|
161
182
|
protected ct(a: string, b: any, c: any): void;
|
|
162
183
|
protected cv(a: string, b: any, c: any): void;
|
|
163
184
|
private c3;
|
|
@@ -5,7 +5,9 @@ import { EventArgs, Type } from "igniteui-webcomponents-core";
|
|
|
5
5
|
export declare class CheckboxChangeEventArgs extends EventArgs {
|
|
6
6
|
static $t: Type;
|
|
7
7
|
private _isChecked;
|
|
8
|
-
isChecked: boolean;
|
|
8
|
+
get isChecked(): boolean;
|
|
9
|
+
set isChecked(a: boolean);
|
|
9
10
|
private _isIndeterminate;
|
|
10
|
-
isIndeterminate: boolean;
|
|
11
|
+
get isIndeterminate(): boolean;
|
|
12
|
+
set isIndeterminate(a: boolean);
|
|
11
13
|
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
|
|
2
2
|
import { DomRenderer } from "igniteui-webcomponents-core";
|
|
3
3
|
import { XRipple } from "./XRipple";
|
|
4
|
+
import { Size } from "igniteui-webcomponents-core";
|
|
4
5
|
import { AnimationKeyFrameEffect } from "igniteui-webcomponents-core";
|
|
5
6
|
import { AnimationKeyFrameEffectTiming } from "igniteui-webcomponents-core";
|
|
6
7
|
import { Brush } from "igniteui-webcomponents-core";
|
|
7
8
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
8
9
|
import { CheckboxLabelPosition } from "./CheckboxLabelPosition";
|
|
10
|
+
import { ThemeResolver } from "./ThemeResolver";
|
|
9
11
|
import { CheckboxChangeEventArgs } from "./CheckboxChangeEventArgs";
|
|
10
12
|
import { CheckboxVisualModelExport } from "./CheckboxVisualModelExport";
|
|
13
|
+
import { Theme } from "./Theme";
|
|
11
14
|
/**
|
|
12
15
|
* @hidden
|
|
13
16
|
*/
|
|
@@ -15,38 +18,41 @@ export declare class CheckboxView extends Base {
|
|
|
15
18
|
static $t: Type;
|
|
16
19
|
constructor();
|
|
17
20
|
c: XCheckbox;
|
|
18
|
-
|
|
21
|
+
ae(): void;
|
|
19
22
|
i(): boolean;
|
|
20
23
|
private l;
|
|
21
24
|
private f;
|
|
22
25
|
private j;
|
|
23
|
-
|
|
24
|
-
private t;
|
|
25
|
-
ag(): void;
|
|
26
|
-
ae(): void;
|
|
26
|
+
ac(a: DomRenderer): void;
|
|
27
27
|
private u;
|
|
28
|
+
ai(): void;
|
|
29
|
+
ak(): Size;
|
|
30
|
+
ah(): void;
|
|
31
|
+
af(): void;
|
|
32
|
+
private v;
|
|
33
|
+
private y;
|
|
28
34
|
private x;
|
|
29
|
-
private w;
|
|
30
35
|
private h;
|
|
31
|
-
private
|
|
32
|
-
|
|
36
|
+
private w;
|
|
37
|
+
z(): void;
|
|
33
38
|
a(a: AnimationKeyFrameEffectTiming): AnimationKeyFrameEffect;
|
|
34
39
|
b(a: AnimationKeyFrameEffectTiming): AnimationKeyFrameEffect;
|
|
35
|
-
private
|
|
40
|
+
private aa;
|
|
36
41
|
private g;
|
|
37
|
-
private
|
|
42
|
+
private r;
|
|
38
43
|
private m;
|
|
39
|
-
private
|
|
40
|
-
|
|
41
|
-
|
|
44
|
+
private q;
|
|
45
|
+
get s(): any;
|
|
46
|
+
get e(): XRipple;
|
|
42
47
|
private n;
|
|
43
|
-
readonly s: any;
|
|
44
|
-
private d;
|
|
45
48
|
private o;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
49
|
+
get t(): any;
|
|
50
|
+
private d;
|
|
51
|
+
private p;
|
|
52
|
+
ab(): void;
|
|
53
|
+
ad(): void;
|
|
54
|
+
ag(): void;
|
|
55
|
+
aj(a: Brush, b: Brush): void;
|
|
50
56
|
k(): number;
|
|
51
57
|
}
|
|
52
58
|
/**
|
|
@@ -56,126 +62,153 @@ export declare class XCheckbox extends Base implements INotifyPropertyChanged {
|
|
|
56
62
|
static $t: Type;
|
|
57
63
|
constructor();
|
|
58
64
|
private _view;
|
|
59
|
-
view: CheckboxView;
|
|
60
|
-
|
|
61
|
-
|
|
65
|
+
get view(): CheckboxView;
|
|
66
|
+
set view(a: CheckboxView);
|
|
67
|
+
private l;
|
|
68
|
+
get n(): BaseControlTheme;
|
|
69
|
+
set n(a: BaseControlTheme);
|
|
62
70
|
destroy(): void;
|
|
63
|
-
protected
|
|
64
|
-
private
|
|
65
|
-
protected
|
|
66
|
-
private
|
|
67
|
-
private cq;
|
|
71
|
+
protected co(a: string, b: any, c: any): void;
|
|
72
|
+
private cu;
|
|
73
|
+
protected cq(a: string, b: any, c: any): void;
|
|
74
|
+
private s;
|
|
68
75
|
private ct;
|
|
69
|
-
|
|
76
|
+
private cw;
|
|
77
|
+
ag: boolean;
|
|
78
|
+
private c6;
|
|
79
|
+
get dl(): Brush;
|
|
80
|
+
set dl(a: Brush);
|
|
81
|
+
private c1;
|
|
82
|
+
get db(): Brush;
|
|
83
|
+
set db(a: Brush);
|
|
70
84
|
private c3;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
85
|
+
get dd(): Brush;
|
|
86
|
+
set dd(a: Brush);
|
|
87
|
+
private c5;
|
|
88
|
+
get dk(): Brush;
|
|
89
|
+
set dk(a: Brush);
|
|
74
90
|
private c0;
|
|
75
|
-
da: Brush;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
91
|
+
get da(): Brush;
|
|
92
|
+
set da(a: Brush);
|
|
93
|
+
private c7;
|
|
94
|
+
get dm(): Brush;
|
|
95
|
+
set dm(a: Brush);
|
|
80
96
|
private c4;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
static
|
|
85
|
-
static
|
|
86
|
-
static
|
|
87
|
-
static
|
|
88
|
-
static
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
dc: Brush;
|
|
105
|
-
ao: number;
|
|
106
|
-
dp: Brush;
|
|
107
|
-
av: number;
|
|
108
|
-
dq: Brush;
|
|
109
|
-
private cu;
|
|
97
|
+
get de(): Brush;
|
|
98
|
+
set de(a: Brush);
|
|
99
|
+
static g: Theme;
|
|
100
|
+
static h: Theme;
|
|
101
|
+
static j: Theme;
|
|
102
|
+
static i: Theme;
|
|
103
|
+
static k: ThemeResolver;
|
|
104
|
+
static m: BaseControlTheme;
|
|
105
|
+
bv: string;
|
|
106
|
+
dj: Brush;
|
|
107
|
+
dg: Brush;
|
|
108
|
+
as: number;
|
|
109
|
+
df: Brush;
|
|
110
|
+
at: number;
|
|
111
|
+
dh: Brush;
|
|
112
|
+
au: number;
|
|
113
|
+
di: Brush;
|
|
114
|
+
private cx;
|
|
115
|
+
private a5;
|
|
116
|
+
get bf(): string;
|
|
117
|
+
set bf(a: string);
|
|
118
|
+
private c2;
|
|
119
|
+
get dc(): Brush;
|
|
120
|
+
set dc(a: Brush);
|
|
110
121
|
private cz;
|
|
111
|
-
c9: Brush;
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
private ac;
|
|
117
|
-
ai: number;
|
|
118
|
-
private ag;
|
|
119
|
-
am: number;
|
|
122
|
+
get c9(): Brush;
|
|
123
|
+
set c9(a: Brush);
|
|
124
|
+
private ak;
|
|
125
|
+
get aq(): number;
|
|
126
|
+
set aq(a: number);
|
|
120
127
|
private ah;
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
private
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
private
|
|
130
|
-
|
|
128
|
+
get an(): number;
|
|
129
|
+
set an(a: number);
|
|
130
|
+
private al;
|
|
131
|
+
get ar(): number;
|
|
132
|
+
set ar(a: number);
|
|
133
|
+
private am;
|
|
134
|
+
get av(): number;
|
|
135
|
+
set av(a: number);
|
|
136
|
+
private aj;
|
|
137
|
+
get ap(): number;
|
|
138
|
+
set ap(a: number);
|
|
139
|
+
private ai;
|
|
140
|
+
get ao(): number;
|
|
141
|
+
set ao(a: number);
|
|
142
|
+
private cy;
|
|
143
|
+
get c8(): Brush;
|
|
144
|
+
set c8(a: Brush);
|
|
131
145
|
private static a1;
|
|
146
|
+
private a9;
|
|
147
|
+
get b1(): string;
|
|
148
|
+
set b1(a: string);
|
|
149
|
+
private static a0;
|
|
132
150
|
private a8;
|
|
133
|
-
|
|
151
|
+
get bz(): string;
|
|
152
|
+
set bz(a: string);
|
|
134
153
|
private ba;
|
|
135
|
-
labelId: string;
|
|
154
|
+
get labelId(): string;
|
|
155
|
+
set labelId(a: string);
|
|
136
156
|
private bb;
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
private o;
|
|
140
|
-
readonly v: boolean;
|
|
141
|
-
a0: number;
|
|
157
|
+
get ca(): string;
|
|
158
|
+
set ca(a: string);
|
|
142
159
|
private ax;
|
|
143
|
-
|
|
160
|
+
private t;
|
|
161
|
+
get aa(): boolean;
|
|
162
|
+
get az(): number;
|
|
163
|
+
set az(a: number);
|
|
164
|
+
private aw;
|
|
165
|
+
get ay(): number;
|
|
166
|
+
set ay(a: number);
|
|
144
167
|
private a7;
|
|
145
|
-
|
|
168
|
+
get bn(): string;
|
|
169
|
+
set bn(a: string);
|
|
146
170
|
private a6;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
171
|
+
get bm(): string;
|
|
172
|
+
set bm(a: string);
|
|
173
|
+
private a2;
|
|
174
|
+
get a4(): any;
|
|
175
|
+
set a4(a: any);
|
|
176
|
+
private w;
|
|
177
|
+
get focused(): boolean;
|
|
178
|
+
set focused(a: boolean);
|
|
152
179
|
change: (sender: any, args: CheckboxChangeEventArgs) => void;
|
|
153
180
|
private d;
|
|
154
|
-
e: CheckboxLabelPosition;
|
|
155
|
-
|
|
156
|
-
t: boolean;
|
|
157
|
-
private p;
|
|
158
|
-
checked: boolean;
|
|
159
|
-
private s;
|
|
160
|
-
indeterminate: boolean;
|
|
181
|
+
get e(): CheckboxLabelPosition;
|
|
182
|
+
set e(a: CheckboxLabelPosition);
|
|
161
183
|
private q;
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
u
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
private
|
|
184
|
+
get y(): boolean;
|
|
185
|
+
set y(a: boolean);
|
|
186
|
+
private u;
|
|
187
|
+
get checked(): boolean;
|
|
188
|
+
set checked(a: boolean);
|
|
189
|
+
private x;
|
|
190
|
+
get indeterminate(): boolean;
|
|
191
|
+
set indeterminate(a: boolean);
|
|
192
|
+
private v;
|
|
193
|
+
get disabled(): boolean;
|
|
194
|
+
set disabled(a: boolean);
|
|
195
|
+
private r;
|
|
196
|
+
get z(): boolean;
|
|
197
|
+
set z(a: boolean);
|
|
198
|
+
cp(): void;
|
|
199
|
+
private get a();
|
|
200
|
+
private ck;
|
|
168
201
|
toggle(): void;
|
|
169
|
-
private
|
|
170
|
-
private
|
|
171
|
-
private
|
|
202
|
+
private cv;
|
|
203
|
+
private o;
|
|
204
|
+
private p;
|
|
172
205
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
173
206
|
onDetachedFromUI(): void;
|
|
174
207
|
onAttachedToUI(): void;
|
|
175
208
|
onContentReady(): void;
|
|
176
|
-
protected
|
|
177
|
-
|
|
178
|
-
|
|
209
|
+
protected af(): boolean;
|
|
210
|
+
a3(): any;
|
|
211
|
+
by(): string;
|
|
179
212
|
b(): CheckboxVisualModelExport;
|
|
180
213
|
provideContainer(a: DomRenderer): void;
|
|
181
214
|
}
|
|
@@ -39,7 +39,7 @@ export declare class DatePickerView extends Base {
|
|
|
39
39
|
private f;
|
|
40
40
|
private i;
|
|
41
41
|
private h;
|
|
42
|
-
|
|
42
|
+
get n(): DomWrapper;
|
|
43
43
|
ag(a: DomRenderer): void;
|
|
44
44
|
private aa;
|
|
45
45
|
ak(a: XInputGroup): void;
|
|
@@ -54,9 +54,10 @@ export declare class DatePickerView extends Base {
|
|
|
54
54
|
s(): any;
|
|
55
55
|
r(): any;
|
|
56
56
|
aq(a: boolean): void;
|
|
57
|
-
|
|
57
|
+
as(a: string): void;
|
|
58
58
|
ap(): void;
|
|
59
59
|
ae(): void;
|
|
60
|
+
ar(): void;
|
|
60
61
|
private ab;
|
|
61
62
|
y(): void;
|
|
62
63
|
an(a: Popup): void;
|
|
@@ -67,8 +68,8 @@ export declare class DatePickerView extends Base {
|
|
|
67
68
|
private x;
|
|
68
69
|
private v;
|
|
69
70
|
private w;
|
|
70
|
-
private
|
|
71
|
-
|
|
71
|
+
private document_Click;
|
|
72
|
+
at(): Rect;
|
|
72
73
|
a(): number[];
|
|
73
74
|
private c;
|
|
74
75
|
af(): void;
|
|
@@ -79,8 +80,8 @@ export declare class DatePickerView extends Base {
|
|
|
79
80
|
export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
80
81
|
static $t: Type;
|
|
81
82
|
private h;
|
|
82
|
-
private static readonly
|
|
83
|
-
private static readonly
|
|
83
|
+
private static readonly bj;
|
|
84
|
+
private static readonly bk;
|
|
84
85
|
private u;
|
|
85
86
|
private q;
|
|
86
87
|
private o;
|
|
@@ -88,110 +89,137 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
88
89
|
private m;
|
|
89
90
|
private n;
|
|
90
91
|
private c;
|
|
91
|
-
private
|
|
92
|
-
private ba;
|
|
92
|
+
private a9;
|
|
93
93
|
private bd;
|
|
94
|
-
private
|
|
95
|
-
private
|
|
94
|
+
private bg;
|
|
95
|
+
private ba;
|
|
96
|
+
private bf;
|
|
96
97
|
private ah;
|
|
98
|
+
private ap;
|
|
97
99
|
private ao;
|
|
98
|
-
private
|
|
99
|
-
private
|
|
100
|
+
private ay;
|
|
101
|
+
private ai;
|
|
100
102
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
101
103
|
constructor();
|
|
102
104
|
selectedValueChanged: (sender: any, args: SelectedValueChangedEventArgs) => void;
|
|
103
|
-
|
|
105
|
+
cz(a: Date, b: Date): void;
|
|
104
106
|
notifySizeChanged(): void;
|
|
105
107
|
destroy(): void;
|
|
106
108
|
provideContainer(a: DomRenderer): void;
|
|
107
109
|
setName(a: string): void;
|
|
108
110
|
private ae;
|
|
109
|
-
private
|
|
111
|
+
private get af();
|
|
112
|
+
private a0;
|
|
113
|
+
get value(): Date;
|
|
114
|
+
set value(a: Date);
|
|
110
115
|
private az;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
private
|
|
117
|
-
|
|
116
|
+
get a3(): Date;
|
|
117
|
+
set a3(a: Date);
|
|
118
|
+
private bc;
|
|
119
|
+
get bv(): string;
|
|
120
|
+
set bv(a: string);
|
|
121
|
+
private de;
|
|
122
|
+
get dh(): Brush;
|
|
123
|
+
set dh(a: Brush);
|
|
118
124
|
private static ab;
|
|
119
125
|
private z;
|
|
120
|
-
ac: FontInfo;
|
|
121
|
-
|
|
122
|
-
|
|
126
|
+
get ac(): FontInfo;
|
|
127
|
+
set ac(a: FontInfo);
|
|
128
|
+
private be;
|
|
129
|
+
get b2(): string;
|
|
130
|
+
set b2(a: string);
|
|
131
|
+
private ax;
|
|
132
|
+
get a2(): Date;
|
|
133
|
+
set a2(a: Date);
|
|
123
134
|
private aw;
|
|
124
|
-
a1: Date;
|
|
125
|
-
|
|
126
|
-
a0: Date;
|
|
135
|
+
get a1(): Date;
|
|
136
|
+
set a1(a: Date);
|
|
127
137
|
private x;
|
|
128
|
-
y: ControlDisplayDensity;
|
|
138
|
+
get y(): ControlDisplayDensity;
|
|
139
|
+
set y(a: ControlDisplayDensity);
|
|
129
140
|
private v;
|
|
130
|
-
w: BaseControlTheme;
|
|
141
|
+
get w(): BaseControlTheme;
|
|
142
|
+
set w(a: BaseControlTheme);
|
|
131
143
|
private aa;
|
|
132
|
-
ad: FontInfo;
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
private
|
|
138
|
-
|
|
144
|
+
get ad(): FontInfo;
|
|
145
|
+
set ad(a: FontInfo);
|
|
146
|
+
private df;
|
|
147
|
+
get di(): Brush;
|
|
148
|
+
set di(a: Brush);
|
|
149
|
+
private dd;
|
|
150
|
+
get dg(): Brush;
|
|
151
|
+
set dg(a: Brush);
|
|
139
152
|
private al;
|
|
140
|
-
at: boolean;
|
|
153
|
+
get at(): boolean;
|
|
154
|
+
set at(a: boolean);
|
|
155
|
+
private am;
|
|
156
|
+
get au(): boolean;
|
|
157
|
+
set au(a: boolean);
|
|
141
158
|
private ag;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
159
|
+
get aq(): boolean;
|
|
160
|
+
set aq(a: boolean);
|
|
161
|
+
private ak;
|
|
162
|
+
get as(): boolean;
|
|
163
|
+
set as(a: boolean);
|
|
145
164
|
private i;
|
|
146
|
-
j: DayOfWeek;
|
|
165
|
+
get j(): DayOfWeek;
|
|
166
|
+
set j(a: DayOfWeek);
|
|
147
167
|
private k;
|
|
148
|
-
l: FirstWeek;
|
|
149
|
-
|
|
150
|
-
|
|
168
|
+
get l(): FirstWeek;
|
|
169
|
+
set l(a: FirstWeek);
|
|
170
|
+
private an;
|
|
171
|
+
get av(): boolean;
|
|
172
|
+
set av(a: boolean);
|
|
151
173
|
private a;
|
|
152
174
|
private d;
|
|
153
|
-
e: DateFormats;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
private
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
private
|
|
167
|
-
private
|
|
168
|
-
c8(a: string): void;
|
|
175
|
+
get e(): DateFormats;
|
|
176
|
+
set e(a: DateFormats);
|
|
177
|
+
private bb;
|
|
178
|
+
get br(): string;
|
|
179
|
+
set br(a: string);
|
|
180
|
+
private aj;
|
|
181
|
+
get ar(): boolean;
|
|
182
|
+
set ar(a: boolean);
|
|
183
|
+
private a6;
|
|
184
|
+
get a7(): number;
|
|
185
|
+
set a7(a: number);
|
|
186
|
+
protected cy(a: string, b: any, c: any): void;
|
|
187
|
+
protected c1(a: string, b: any, c: any): void;
|
|
188
|
+
private ce;
|
|
189
|
+
private da;
|
|
169
190
|
private c7;
|
|
170
|
-
private
|
|
171
|
-
cb(): void;
|
|
172
|
-
ce(): void;
|
|
173
|
-
private b9;
|
|
174
|
-
private b8;
|
|
175
|
-
cj(): void;
|
|
176
|
-
cw(): void;
|
|
177
|
-
cc(): void;
|
|
178
|
-
focus(a?: boolean): void;
|
|
179
|
-
ci(): void;
|
|
180
|
-
cz(): void;
|
|
191
|
+
private c9;
|
|
181
192
|
ch(): void;
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
private
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
193
|
+
private cq;
|
|
194
|
+
private cp;
|
|
195
|
+
private co;
|
|
196
|
+
dc(a: string): void;
|
|
197
|
+
private db;
|
|
198
|
+
private c8;
|
|
199
|
+
cf(): void;
|
|
200
|
+
ci(): void;
|
|
201
|
+
private cd;
|
|
202
|
+
private cc;
|
|
203
|
+
cn(): void;
|
|
204
|
+
c0(): void;
|
|
205
|
+
cg(): void;
|
|
206
|
+
focus(a?: boolean): void;
|
|
207
|
+
cm(): void;
|
|
208
|
+
c3(): void;
|
|
209
|
+
cl(): void;
|
|
210
|
+
ct(): void;
|
|
211
|
+
cu(): void;
|
|
212
|
+
private c6;
|
|
213
|
+
private c4;
|
|
214
|
+
a8(): any;
|
|
215
|
+
bo(): string;
|
|
188
216
|
b(): DatePickerVisualModelExport;
|
|
189
217
|
gotFocus: (sender: any, args: GotFocusEventArgs) => void;
|
|
190
218
|
lostFocus: (sender: any, args: LostFocusEventArgs) => void;
|
|
191
219
|
keyDown: (sender: any, args: KeyEventArgs) => void;
|
|
192
220
|
changing: (sender: any, args: InputChangeEventArgs) => void;
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
221
|
+
cv(a: GotFocusEventArgs): void;
|
|
222
|
+
cx(a: LostFocusEventArgs): void;
|
|
223
|
+
cw(a: KeyEventArgs): void;
|
|
224
|
+
cs(a: InputChangeEventArgs): void;
|
|
197
225
|
}
|