igniteui-webcomponents-inputs 4.8.1 → 5.0.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 +961 -773
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupVisualModelExport.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +28 -33
- package/esm2015/lib/ButtonVisualModelExport.js +14 -13
- package/esm2015/lib/CalendarVisualModelExport.js +1 -1
- package/esm2015/lib/CheckboxView_combined.js +2 -2
- package/esm2015/lib/DatePickerView_combined.js +325 -322
- package/esm2015/lib/IconView_combined.js +319 -219
- package/esm2015/lib/IconVisualModelExport.js +46 -33
- package/esm2015/lib/NativeUIXInputsFactory.js +9 -9
- package/esm2015/lib/TextBlockVisualModelExport.js +64 -0
- package/esm2015/lib/XButtonBridge.js +11 -4
- package/esm2015/lib/XCheckboxBridge.js +3 -0
- package/esm2015/lib/{DatePicker.js → XDatePicker.js} +1 -1
- package/esm2015/lib/XIconBridge.js +3 -0
- package/esm2015/lib/XIconButtonBridge.js +1 -1
- package/esm2015/lib/XInputBridge.js +3 -0
- package/esm2015/lib/XPopupBridge.js +11 -8
- package/esm2015/lib/{igc-date-picker-component.js → igc-x-date-picker-component.js} +54 -54
- package/esm2015/lib/{igc-date-picker-module.js → igc-x-date-picker-module.js} +7 -7
- package/esm2015/public_api.js +4 -3
- package/esm5/lib/ButtonGroupVisualModelExport.js +1 -1
- package/esm5/lib/ButtonView_combined.js +33 -38
- package/esm5/lib/ButtonVisualModelExport.js +14 -13
- package/esm5/lib/CalendarVisualModelExport.js +1 -1
- package/esm5/lib/CheckboxView_combined.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +336 -333
- package/esm5/lib/IconView_combined.js +316 -216
- package/esm5/lib/IconVisualModelExport.js +50 -33
- package/esm5/lib/NativeUIXInputsFactory.js +9 -9
- package/esm5/lib/TextBlockVisualModelExport.js +66 -0
- package/esm5/lib/XButtonBridge.js +11 -4
- package/esm5/lib/XCheckboxBridge.js +3 -0
- package/esm5/lib/{DatePicker.js → XDatePicker.js} +1 -1
- package/esm5/lib/XIconBridge.js +3 -0
- package/esm5/lib/XIconButtonBridge.js +1 -1
- package/esm5/lib/XInputBridge.js +3 -0
- package/esm5/lib/XPopupBridge.js +11 -8
- package/esm5/lib/{igc-date-picker-component.js → igc-x-date-picker-component.js} +111 -111
- package/esm5/lib/{igc-date-picker-module.js → igc-x-date-picker-module.js} +11 -11
- package/esm5/public_api.js +4 -3
- package/fesm2015/igniteui-webcomponents-inputs.js +883 -700
- package/fesm5/igniteui-webcomponents-inputs.js +959 -772
- package/lib/ButtonVisualModelExport.d.ts +6 -5
- package/lib/DatePickerView_combined.d.ts +75 -74
- package/lib/IconView_combined.d.ts +45 -39
- package/lib/IconVisualModelExport.d.ts +17 -12
- package/lib/TextBlockVisualModelExport.d.ts +21 -0
- package/lib/XButtonBridge.d.ts +1 -0
- package/lib/XCheckboxBridge.d.ts +1 -0
- package/lib/XDatePicker.d.ts +1 -0
- package/lib/XIconBridge.d.ts +1 -0
- package/lib/XInputBridge.d.ts +1 -0
- package/lib/XPopupBridge.d.ts +1 -0
- package/lib/{igc-date-picker-component.d.ts → igc-x-date-picker-component.d.ts} +18 -18
- package/lib/igc-x-date-picker-module.d.ts +3 -0
- package/package.json +2 -2
- package/public_api.d.ts +4 -3
- package/lib/DatePicker.d.ts +0 -1
- package/lib/igc-date-picker-module.d.ts +0 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { IVisualData } from "igniteui-webcomponents-core";
|
|
2
3
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
3
4
|
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
|
|
4
5
|
import { BrushAppearanceData } from "igniteui-webcomponents-core";
|
|
@@ -7,7 +8,7 @@ import { ElevationMode } from "igniteui-webcomponents-core";
|
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
10
|
-
export declare class ButtonVisualModelExport extends Base {
|
|
11
|
+
export declare class ButtonVisualModelExport extends Base implements IVisualData {
|
|
11
12
|
static $t: Type;
|
|
12
13
|
s: number;
|
|
13
14
|
q: number;
|
|
@@ -21,17 +22,17 @@ export declare class ButtonVisualModelExport extends Base {
|
|
|
21
22
|
a: BrushAppearanceData;
|
|
22
23
|
u: number;
|
|
23
24
|
e: BrushAppearanceData;
|
|
24
|
-
|
|
25
|
+
ag: CornerRadius;
|
|
25
26
|
b: BrushAppearanceData;
|
|
26
27
|
j: ElevationMode;
|
|
27
28
|
f: BrushAppearanceData;
|
|
28
29
|
o: number;
|
|
30
|
+
ad: string;
|
|
29
31
|
ae: string;
|
|
30
32
|
af: string;
|
|
31
|
-
ag: string;
|
|
32
33
|
r: number;
|
|
34
|
+
ab: string;
|
|
33
35
|
ac: string;
|
|
34
|
-
ad: string;
|
|
35
36
|
x: string;
|
|
36
37
|
y: string;
|
|
37
38
|
z: string;
|
|
@@ -42,5 +43,5 @@ export declare class ButtonVisualModelExport extends Base {
|
|
|
42
43
|
k: boolean;
|
|
43
44
|
n: boolean;
|
|
44
45
|
l: boolean;
|
|
45
|
-
|
|
46
|
+
serialize(): string;
|
|
46
47
|
}
|
|
@@ -27,7 +27,7 @@ import { DatePickerVisualModelExport } from "./DatePickerVisualModelExport";
|
|
|
27
27
|
export declare class DatePickerView extends Base {
|
|
28
28
|
static $t: Type;
|
|
29
29
|
constructor();
|
|
30
|
-
b:
|
|
30
|
+
b: XDatePicker;
|
|
31
31
|
am(): void;
|
|
32
32
|
d: DomRenderer;
|
|
33
33
|
private k;
|
|
@@ -84,11 +84,11 @@ export declare class DatePickerView extends Base {
|
|
|
84
84
|
/**
|
|
85
85
|
* @hidden
|
|
86
86
|
*/
|
|
87
|
-
export declare class
|
|
87
|
+
export declare class XDatePicker extends Base implements INotifyPropertyChanged {
|
|
88
88
|
static $t: Type;
|
|
89
89
|
private h;
|
|
90
|
-
private static readonly bq;
|
|
91
90
|
private static readonly br;
|
|
91
|
+
private static readonly bs;
|
|
92
92
|
private u;
|
|
93
93
|
private q;
|
|
94
94
|
private o;
|
|
@@ -96,51 +96,51 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
96
96
|
private m;
|
|
97
97
|
private n;
|
|
98
98
|
private c;
|
|
99
|
-
private bg;
|
|
100
|
-
private bk;
|
|
101
|
-
private bn;
|
|
102
99
|
private bh;
|
|
103
|
-
private
|
|
100
|
+
private bl;
|
|
101
|
+
private bo;
|
|
102
|
+
private bi;
|
|
103
|
+
private bn;
|
|
104
104
|
private ah;
|
|
105
105
|
private at;
|
|
106
106
|
private ar;
|
|
107
|
-
private
|
|
107
|
+
private a6;
|
|
108
108
|
private ai;
|
|
109
109
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
110
110
|
constructor();
|
|
111
111
|
selectedValueChanged: (sender: any, args: SelectedValueChangedEventArgs) => void;
|
|
112
|
-
|
|
112
|
+
dc(a: Date, b: Date): void;
|
|
113
113
|
notifySizeChanged(): void;
|
|
114
114
|
destroy(): void;
|
|
115
115
|
provideContainer(a: DomRenderer): void;
|
|
116
116
|
setName(a: string): void;
|
|
117
117
|
private ae;
|
|
118
118
|
private get af();
|
|
119
|
-
private
|
|
119
|
+
private a8;
|
|
120
120
|
get value(): Date;
|
|
121
121
|
set value(a: Date);
|
|
122
|
-
private
|
|
123
|
-
get
|
|
124
|
-
set
|
|
125
|
-
private
|
|
126
|
-
get
|
|
127
|
-
set
|
|
128
|
-
private
|
|
129
|
-
get
|
|
130
|
-
set
|
|
122
|
+
private a7;
|
|
123
|
+
get bb(): Date;
|
|
124
|
+
set bb(a: Date);
|
|
125
|
+
private bk;
|
|
126
|
+
get b4(): string;
|
|
127
|
+
set b4(a: string);
|
|
128
|
+
private du;
|
|
129
|
+
get dx(): Brush;
|
|
130
|
+
set dx(a: Brush);
|
|
131
131
|
private static ab;
|
|
132
132
|
private z;
|
|
133
133
|
get ac(): FontInfo;
|
|
134
134
|
set ac(a: FontInfo);
|
|
135
|
-
private
|
|
136
|
-
get
|
|
137
|
-
set
|
|
135
|
+
private bm;
|
|
136
|
+
get cc(): string;
|
|
137
|
+
set cc(a: string);
|
|
138
|
+
private a5;
|
|
139
|
+
get ba(): Date;
|
|
140
|
+
set ba(a: Date);
|
|
138
141
|
private a4;
|
|
139
142
|
get a9(): Date;
|
|
140
143
|
set a9(a: Date);
|
|
141
|
-
private a3;
|
|
142
|
-
get a8(): Date;
|
|
143
|
-
set a8(a: Date);
|
|
144
144
|
private x;
|
|
145
145
|
get y(): ControlDisplayDensity;
|
|
146
146
|
set y(a: ControlDisplayDensity);
|
|
@@ -150,18 +150,18 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
150
150
|
private aa;
|
|
151
151
|
get ad(): FontInfo;
|
|
152
152
|
set ad(a: FontInfo);
|
|
153
|
-
private
|
|
154
|
-
get
|
|
155
|
-
set
|
|
156
|
-
private
|
|
157
|
-
get
|
|
158
|
-
set
|
|
153
|
+
private dv;
|
|
154
|
+
get dy(): Brush;
|
|
155
|
+
set dy(a: Brush);
|
|
156
|
+
private dt;
|
|
157
|
+
get dw(): Brush;
|
|
158
|
+
set dw(a: Brush);
|
|
159
159
|
private ao;
|
|
160
|
-
get az(): boolean;
|
|
161
|
-
set az(a: boolean);
|
|
162
|
-
private ap;
|
|
163
160
|
get a0(): boolean;
|
|
164
161
|
set a0(a: boolean);
|
|
162
|
+
private ap;
|
|
163
|
+
get a1(): boolean;
|
|
164
|
+
set a1(a: boolean);
|
|
165
165
|
private ag;
|
|
166
166
|
get au(): boolean;
|
|
167
167
|
set au(a: boolean);
|
|
@@ -175,21 +175,21 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
175
175
|
get l(): FirstWeek;
|
|
176
176
|
set l(a: FirstWeek);
|
|
177
177
|
private aq;
|
|
178
|
-
get
|
|
179
|
-
set
|
|
178
|
+
get a2(): boolean;
|
|
179
|
+
set a2(a: boolean);
|
|
180
180
|
private a;
|
|
181
181
|
private d;
|
|
182
182
|
get e(): DateFormats;
|
|
183
183
|
set e(a: DateFormats);
|
|
184
|
-
private
|
|
185
|
-
get
|
|
186
|
-
set
|
|
184
|
+
private bj;
|
|
185
|
+
get bz(): string;
|
|
186
|
+
set bz(a: string);
|
|
187
187
|
private aj;
|
|
188
188
|
get av(): boolean;
|
|
189
189
|
set av(a: boolean);
|
|
190
|
-
private
|
|
191
|
-
get
|
|
192
|
-
set
|
|
190
|
+
private be;
|
|
191
|
+
get bf(): number;
|
|
192
|
+
set bf(a: number);
|
|
193
193
|
private ak;
|
|
194
194
|
get aw(): boolean;
|
|
195
195
|
set aw(a: boolean);
|
|
@@ -197,50 +197,51 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
197
197
|
get ax(): boolean;
|
|
198
198
|
set ax(a: boolean);
|
|
199
199
|
private as;
|
|
200
|
-
get
|
|
201
|
-
set
|
|
202
|
-
protected
|
|
203
|
-
protected
|
|
204
|
-
private
|
|
200
|
+
get a3(): boolean;
|
|
201
|
+
set a3(a: boolean);
|
|
202
|
+
protected db(a: string, b: any, c: any): void;
|
|
203
|
+
protected de(a: string, b: any, c: any): void;
|
|
204
|
+
private az;
|
|
205
|
+
private cp;
|
|
206
|
+
private dq;
|
|
207
|
+
private dl;
|
|
205
208
|
private dp;
|
|
206
|
-
|
|
207
|
-
private
|
|
208
|
-
cr(): void;
|
|
209
|
+
cs(): void;
|
|
210
|
+
private c1;
|
|
209
211
|
private c0;
|
|
210
212
|
private cz;
|
|
211
|
-
|
|
212
|
-
dr
|
|
213
|
-
private
|
|
214
|
-
|
|
215
|
-
cp(): void;
|
|
213
|
+
ds(a: string): void;
|
|
214
|
+
private dr;
|
|
215
|
+
private dm;
|
|
216
|
+
cq(): void;
|
|
216
217
|
private al;
|
|
217
|
-
c8(): void;
|
|
218
218
|
c9(): void;
|
|
219
|
-
|
|
219
|
+
da(): void;
|
|
220
|
+
ct(): void;
|
|
221
|
+
private co;
|
|
220
222
|
private cn;
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
cq(): void;
|
|
223
|
+
cy(): void;
|
|
224
|
+
dd(): void;
|
|
225
|
+
private dk;
|
|
226
|
+
dn(): void;
|
|
227
|
+
cr(): void;
|
|
227
228
|
focus(a?: boolean): void;
|
|
229
|
+
cx(): void;
|
|
230
|
+
dg(): void;
|
|
228
231
|
cw(): void;
|
|
229
|
-
df(): void;
|
|
230
|
-
cv(): void;
|
|
231
|
-
c3(): void;
|
|
232
232
|
c4(): void;
|
|
233
|
-
|
|
234
|
-
private
|
|
235
|
-
|
|
236
|
-
|
|
233
|
+
c5(): void;
|
|
234
|
+
private dj;
|
|
235
|
+
private dh;
|
|
236
|
+
bg(): any;
|
|
237
|
+
bw(): string;
|
|
237
238
|
b(): DatePickerVisualModelExport;
|
|
238
239
|
gotFocus: (sender: any, args: GotFocusEventArgs) => void;
|
|
239
240
|
lostFocus: (sender: any, args: LostFocusEventArgs) => void;
|
|
240
241
|
keyDown: (sender: any, args: KeyEventArgs) => void;
|
|
241
242
|
changing: (sender: any, args: InputChangeEventArgs) => void;
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
243
|
+
c6(a: GotFocusEventArgs): void;
|
|
244
|
+
c8(a: LostFocusEventArgs): void;
|
|
245
|
+
c7(a: KeyEventArgs): void;
|
|
246
|
+
c3(a: InputChangeEventArgs): void;
|
|
246
247
|
}
|
|
@@ -6,6 +6,7 @@ import { SVGNode } from "igniteui-webcomponents-core";
|
|
|
6
6
|
import { FastIterationDictionary$2 } from "igniteui-webcomponents-core";
|
|
7
7
|
import { Brush } from "igniteui-webcomponents-core";
|
|
8
8
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
9
|
+
import { PrimitiveVisualData } from "igniteui-webcomponents-core";
|
|
9
10
|
import { IIcon } from "igniteui-webcomponents-core";
|
|
10
11
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
11
12
|
import { BrushCollection } from "igniteui-webcomponents-core";
|
|
@@ -17,50 +18,55 @@ import { IconVisualModelExport } from "./IconVisualModelExport";
|
|
|
17
18
|
export declare class IconView extends Base {
|
|
18
19
|
static $t: Type;
|
|
19
20
|
constructor();
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
private
|
|
25
|
-
private
|
|
26
|
-
get
|
|
27
|
-
get
|
|
28
|
-
get
|
|
29
|
-
get
|
|
30
|
-
n: List$1<Tuple$2<SVGNode, any>>;
|
|
31
|
-
o: List$1<Tuple$2<SVGNode, any>>;
|
|
32
|
-
p: List$1<Tuple$2<SVGNode, any>>;
|
|
21
|
+
d: XIcon;
|
|
22
|
+
ak(): void;
|
|
23
|
+
l(): boolean;
|
|
24
|
+
v: DomRenderer;
|
|
25
|
+
private g;
|
|
26
|
+
private o;
|
|
27
|
+
get z(): any;
|
|
28
|
+
get aa(): any;
|
|
29
|
+
get c(): any[];
|
|
30
|
+
get m(): boolean;
|
|
33
31
|
q: List$1<Tuple$2<SVGNode, any>>;
|
|
34
32
|
r: List$1<Tuple$2<SVGNode, any>>;
|
|
35
|
-
|
|
33
|
+
s: List$1<Tuple$2<SVGNode, any>>;
|
|
34
|
+
t: List$1<Tuple$2<SVGNode, any>>;
|
|
35
|
+
u: List$1<Tuple$2<SVGNode, any>>;
|
|
36
36
|
e: FastIterationDictionary$2<string, List$1<Tuple$2<SVGNode, any>>>;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
al(a: string): void;
|
|
43
|
-
private h;
|
|
44
|
-
am(): void;
|
|
45
|
-
ar(): void;
|
|
46
|
-
private k;
|
|
47
|
-
ai(a: Brush, b: string): void;
|
|
48
|
-
aj(a: any, b: Brush): void;
|
|
49
|
-
ak(a: any, b: Brush): void;
|
|
50
|
-
private z;
|
|
51
|
-
ah(): void;
|
|
52
|
-
private aa;
|
|
37
|
+
f: FastIterationDictionary$2<string, List$1<Tuple$2<SVGNode, any>>>;
|
|
38
|
+
ai(a: DomRenderer): void;
|
|
39
|
+
at(a: string): void;
|
|
40
|
+
au(a: string[]): void;
|
|
41
|
+
as(a: string): void;
|
|
53
42
|
private ab;
|
|
54
|
-
|
|
55
|
-
private
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
private
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
43
|
+
ap(a: string): void;
|
|
44
|
+
private k;
|
|
45
|
+
ar(): void;
|
|
46
|
+
aw(): void;
|
|
47
|
+
private n;
|
|
48
|
+
am(a: Brush, b: string): void;
|
|
49
|
+
an(a: any, b: Brush): void;
|
|
50
|
+
ao(a: any, b: Brush): void;
|
|
51
|
+
private ac;
|
|
52
|
+
al(): void;
|
|
63
53
|
private ad;
|
|
54
|
+
private ae;
|
|
55
|
+
private j;
|
|
56
|
+
private y;
|
|
57
|
+
private x;
|
|
58
|
+
private w;
|
|
59
|
+
private p;
|
|
60
|
+
ag(): void;
|
|
61
|
+
aj(): void;
|
|
62
|
+
av(a: FontInfo): void;
|
|
63
|
+
b(): number[];
|
|
64
|
+
private ah;
|
|
65
|
+
a(): PrimitiveVisualData[];
|
|
66
|
+
private af;
|
|
67
|
+
private h;
|
|
68
|
+
private aq;
|
|
69
|
+
private i;
|
|
64
70
|
}
|
|
65
71
|
/**
|
|
66
72
|
* @hidden
|
|
@@ -1,27 +1,32 @@
|
|
|
1
1
|
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { PrimitiveVisualData } from "igniteui-webcomponents-core";
|
|
2
3
|
import { BrushAppearanceData } from "igniteui-webcomponents-core";
|
|
3
4
|
/**
|
|
4
5
|
* @hidden
|
|
5
6
|
*/
|
|
6
7
|
export declare class IconVisualModelExport extends Base {
|
|
7
8
|
static $t: Type;
|
|
8
|
-
h: number;
|
|
9
|
-
f: number;
|
|
10
|
-
e: number;
|
|
11
9
|
i: number;
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
g: number;
|
|
11
|
+
f: number;
|
|
12
|
+
j: number;
|
|
13
|
+
a: PrimitiveVisualData[];
|
|
14
14
|
b: BrushAppearanceData;
|
|
15
|
-
d:
|
|
15
|
+
d: BrushAppearanceData;
|
|
16
|
+
c: BrushAppearanceData;
|
|
17
|
+
e: number;
|
|
16
18
|
private _svgPath;
|
|
17
19
|
get svgPath(): string;
|
|
18
20
|
set svgPath(a: string);
|
|
19
|
-
|
|
21
|
+
private _svg;
|
|
22
|
+
get svg(): string;
|
|
23
|
+
set svg(a: string);
|
|
24
|
+
k: string;
|
|
25
|
+
q: string;
|
|
26
|
+
r: string;
|
|
27
|
+
s: string;
|
|
28
|
+
h: number;
|
|
20
29
|
o: string;
|
|
21
30
|
p: string;
|
|
22
|
-
|
|
23
|
-
g: number;
|
|
24
|
-
m: string;
|
|
25
|
-
n: string;
|
|
26
|
-
k(): string;
|
|
31
|
+
l(): string;
|
|
27
32
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { BrushAppearanceData } from "igniteui-webcomponents-core";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class TextBlockVisualModelExport extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
c: number;
|
|
9
|
+
e: number;
|
|
10
|
+
f: number;
|
|
11
|
+
b: number;
|
|
12
|
+
a: BrushAppearanceData;
|
|
13
|
+
k: string;
|
|
14
|
+
l: string;
|
|
15
|
+
m: string;
|
|
16
|
+
d: number;
|
|
17
|
+
i: string;
|
|
18
|
+
j: string;
|
|
19
|
+
h: string;
|
|
20
|
+
g(): string;
|
|
21
|
+
}
|
package/lib/XButtonBridge.d.ts
CHANGED
|
@@ -36,4 +36,5 @@ export declare class XButtonBridge extends XComponentBridge {
|
|
|
36
36
|
getHorizontalContentAlignment(a: any): NativeUIComponentHorizontalAlignment;
|
|
37
37
|
setVerticalContentAlignment(a: any, b: NativeUIComponentVerticalAlignment): void;
|
|
38
38
|
getVerticalContentAlignment(a: any): NativeUIComponentVerticalAlignment;
|
|
39
|
+
exportVisualData(a: any): any;
|
|
39
40
|
}
|
package/lib/XCheckboxBridge.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { XDatePicker } from "./DatePickerView_combined";
|
package/lib/XIconBridge.d.ts
CHANGED
package/lib/XInputBridge.d.ts
CHANGED
package/lib/XPopupBridge.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export declare class XPopupBridge extends XComponentBridge implements INativeUIP
|
|
|
42
42
|
notifyExclusionRectChanged(a: any, b: Rect): void;
|
|
43
43
|
private v;
|
|
44
44
|
private u;
|
|
45
|
+
exportVisualData(a: any): any;
|
|
45
46
|
private ac;
|
|
46
47
|
addChild(a: any, b: NativeUIComponent): void;
|
|
47
48
|
insertChild(a: any, b: number, c: NativeUIComponent): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { XDatePicker } from './XDatePicker';
|
|
2
2
|
import { IgcSelectedValueChangedEventArgs } from "./igc-selected-value-changed-event-args";
|
|
3
3
|
import { IgcGotFocusEventArgs } from "./igc-got-focus-event-args";
|
|
4
4
|
import { IgcLostFocusEventArgs } from "./igc-lost-focus-event-args";
|
|
@@ -10,7 +10,7 @@ import { DateFormats } from "./DateFormats";
|
|
|
10
10
|
import { DayOfWeek } from "./DayOfWeek";
|
|
11
11
|
import { FirstWeek } from "./FirstWeek";
|
|
12
12
|
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
13
|
-
export declare class
|
|
13
|
+
export declare class IgcXDatePickerComponent extends IgcHTMLElement {
|
|
14
14
|
private _height;
|
|
15
15
|
private _width;
|
|
16
16
|
set height(value: string);
|
|
@@ -22,7 +22,7 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
22
22
|
constructor();
|
|
23
23
|
updateStyle(): void;
|
|
24
24
|
destroy(): void;
|
|
25
|
-
protected createImplementation():
|
|
25
|
+
protected createImplementation(): XDatePicker;
|
|
26
26
|
private _datePicker;
|
|
27
27
|
private _disconnected;
|
|
28
28
|
disconnectedCallback(): void;
|
|
@@ -33,17 +33,17 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
33
33
|
/**
|
|
34
34
|
* @hidden
|
|
35
35
|
*/
|
|
36
|
-
get i():
|
|
36
|
+
get i(): XDatePicker; /**
|
|
37
37
|
* @hidden
|
|
38
38
|
*/
|
|
39
|
-
static _createFromInternal(internal: any):
|
|
39
|
+
static _createFromInternal(internal: any): IgcXDatePickerComponent;
|
|
40
40
|
private _settingAttributes;
|
|
41
41
|
protected _attached: boolean;
|
|
42
42
|
private _queuedSetAttributes;
|
|
43
43
|
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
|
|
44
44
|
protected _flushQueuedAttributes(): void;
|
|
45
45
|
protected _a(attrName: string, attrValue: any): void;
|
|
46
|
-
private static
|
|
46
|
+
private static _observedAttributesIgcXDatePickerComponent;
|
|
47
47
|
static get observedAttributes(): string[];
|
|
48
48
|
private _updatingFromAttribute;
|
|
49
49
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
@@ -201,26 +201,26 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
201
201
|
/**
|
|
202
202
|
* Called when date is selected.
|
|
203
203
|
*/
|
|
204
|
-
get selectedValueChanged(): (s:
|
|
205
|
-
set selectedValueChanged(ev: (s:
|
|
204
|
+
get selectedValueChanged(): (s: IgcXDatePickerComponent, e: IgcSelectedValueChangedEventArgs) => void;
|
|
205
|
+
set selectedValueChanged(ev: (s: IgcXDatePickerComponent, e: IgcSelectedValueChangedEventArgs) => void);
|
|
206
206
|
private _gotFocus;
|
|
207
207
|
private _gotFocus_wrapped;
|
|
208
|
-
get gotFocus(): (s:
|
|
209
|
-
set gotFocus(ev: (s:
|
|
208
|
+
get gotFocus(): (s: IgcXDatePickerComponent, e: IgcGotFocusEventArgs) => void;
|
|
209
|
+
set gotFocus(ev: (s: IgcXDatePickerComponent, e: IgcGotFocusEventArgs) => void);
|
|
210
210
|
private _lostFocus;
|
|
211
211
|
private _lostFocus_wrapped;
|
|
212
|
-
get lostFocus(): (s:
|
|
213
|
-
set lostFocus(ev: (s:
|
|
212
|
+
get lostFocus(): (s: IgcXDatePickerComponent, e: IgcLostFocusEventArgs) => void;
|
|
213
|
+
set lostFocus(ev: (s: IgcXDatePickerComponent, e: IgcLostFocusEventArgs) => void);
|
|
214
214
|
private _keyDown;
|
|
215
215
|
private _keyDown_wrapped;
|
|
216
|
-
get keyDown(): (s:
|
|
217
|
-
set keyDown(ev: (s:
|
|
216
|
+
get keyDown(): (s: IgcXDatePickerComponent, e: IgcKeyEventArgs) => void;
|
|
217
|
+
set keyDown(ev: (s: IgcXDatePickerComponent, e: IgcKeyEventArgs) => void);
|
|
218
218
|
private _changing;
|
|
219
219
|
private _changing_wrapped;
|
|
220
|
-
get changing(): (s:
|
|
221
|
-
set changing(ev: (s:
|
|
220
|
+
get changing(): (s: IgcXDatePickerComponent, e: IgcInputChangeEventArgs) => void;
|
|
221
|
+
set changing(ev: (s: IgcXDatePickerComponent, e: IgcInputChangeEventArgs) => void);
|
|
222
222
|
private _valueChange;
|
|
223
223
|
private _valueChange_wrapped;
|
|
224
|
-
get valueChange(): (s:
|
|
225
|
-
set valueChange(ev: (s:
|
|
224
|
+
get valueChange(): (s: IgcXDatePickerComponent, e: Date) => void;
|
|
225
|
+
set valueChange(ev: (s: IgcXDatePickerComponent, e: Date) => void);
|
|
226
226
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-inputs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-beta.0",
|
|
4
4
|
"description": "Ignite UI Web Components inputs components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-inputs",
|
|
6
6
|
"keywords": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "
|
|
17
|
+
"igniteui-webcomponents-core": "5.0.0-beta.0"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"typings": "igniteui-webcomponents-inputs.d.ts",
|
package/public_api.d.ts
CHANGED
|
@@ -11,11 +11,11 @@ export * from './lib/FirstWeek';
|
|
|
11
11
|
export * from './lib/CalendarVisualModelExport';
|
|
12
12
|
export * from './lib/TextElementsVisualModelExport';
|
|
13
13
|
export * from './lib/XCalendarLocaleEn';
|
|
14
|
-
export * from './lib/igc-date-picker-module';
|
|
15
|
-
export * from './lib/igc-date-picker-component';
|
|
14
|
+
export * from './lib/igc-x-date-picker-module';
|
|
15
|
+
export * from './lib/igc-x-date-picker-component';
|
|
16
16
|
export * from './lib/DateTimeValueFormatter';
|
|
17
17
|
export * from './lib/DatePickerView';
|
|
18
|
-
export * from './lib/
|
|
18
|
+
export * from './lib/XDatePicker';
|
|
19
19
|
export * from './lib/GotFocusEventArgs';
|
|
20
20
|
export * from './lib/igc-got-focus-event-args';
|
|
21
21
|
export * from './lib/LostFocusEventArgs';
|
|
@@ -110,3 +110,4 @@ export * from './lib/LabelVisualModelExport';
|
|
|
110
110
|
export * from './lib/PrefixVisualModelExport';
|
|
111
111
|
export * from './lib/RippleVisualModelExport';
|
|
112
112
|
export * from './lib/SuffixVisualModelExport';
|
|
113
|
+
export * from './lib/TextBlockVisualModelExport';
|
package/lib/DatePicker.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { DatePicker } from "./DatePickerView_combined";
|