igniteui-webcomponents-inputs 4.3.3-beta.1 → 4.3.3-beta.2
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 +89 -50
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/DatePickerView_combined.js +83 -44
- package/esm2015/lib/igc-date-picker-component.js +9 -9
- package/esm5/lib/DatePickerView_combined.js +80 -41
- package/esm5/lib/igc-date-picker-component.js +9 -9
- package/fesm2015/igniteui-webcomponents-inputs.js +92 -53
- package/fesm5/igniteui-webcomponents-inputs.js +89 -50
- package/lib/DatePickerView_combined.d.ts +16 -14
- package/package.json +2 -2
|
@@ -75,7 +75,8 @@ export declare class DatePickerView extends Base {
|
|
|
75
75
|
private x;
|
|
76
76
|
private al;
|
|
77
77
|
private document_Click;
|
|
78
|
-
|
|
78
|
+
private window_Resize;
|
|
79
|
+
a0(a: boolean): Rect;
|
|
79
80
|
a(): number[];
|
|
80
81
|
private c;
|
|
81
82
|
ai(): void;
|
|
@@ -124,9 +125,9 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
124
125
|
private bj;
|
|
125
126
|
get b3(): string;
|
|
126
127
|
set b3(a: string);
|
|
127
|
-
private
|
|
128
|
-
get
|
|
129
|
-
set
|
|
128
|
+
private dt;
|
|
129
|
+
get dw(): Brush;
|
|
130
|
+
set dw(a: Brush);
|
|
130
131
|
private static ab;
|
|
131
132
|
private z;
|
|
132
133
|
get ac(): FontInfo;
|
|
@@ -149,12 +150,12 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
149
150
|
private aa;
|
|
150
151
|
get ad(): FontInfo;
|
|
151
152
|
set ad(a: FontInfo);
|
|
152
|
-
private
|
|
153
|
-
get
|
|
154
|
-
set
|
|
155
|
-
private
|
|
156
|
-
get
|
|
157
|
-
set
|
|
153
|
+
private du;
|
|
154
|
+
get dx(): Brush;
|
|
155
|
+
set dx(a: Brush);
|
|
156
|
+
private ds;
|
|
157
|
+
get dv(): Brush;
|
|
158
|
+
set dv(a: Brush);
|
|
158
159
|
private ao;
|
|
159
160
|
get az(): boolean;
|
|
160
161
|
set az(a: boolean);
|
|
@@ -201,15 +202,15 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
201
202
|
protected da(a: string, b: any, c: any): void;
|
|
202
203
|
protected dd(a: string, b: any, c: any): void;
|
|
203
204
|
private co;
|
|
204
|
-
private
|
|
205
|
+
private dp;
|
|
205
206
|
private dk;
|
|
206
|
-
private
|
|
207
|
+
private dn;
|
|
207
208
|
cr(): void;
|
|
208
209
|
private c0;
|
|
209
210
|
private cz;
|
|
210
211
|
private cy;
|
|
211
|
-
|
|
212
|
-
private
|
|
212
|
+
dr(a: string): void;
|
|
213
|
+
private dq;
|
|
213
214
|
private dl;
|
|
214
215
|
cp(): void;
|
|
215
216
|
private al;
|
|
@@ -221,6 +222,7 @@ export declare class DatePicker extends Base implements INotifyPropertyChanged {
|
|
|
221
222
|
cx(): void;
|
|
222
223
|
dc(): void;
|
|
223
224
|
private dj;
|
|
225
|
+
dm(): void;
|
|
224
226
|
cq(): void;
|
|
225
227
|
focus(a?: boolean): void;
|
|
226
228
|
cw(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-inputs",
|
|
3
|
-
"version": "4.3.3-beta.
|
|
3
|
+
"version": "4.3.3-beta.2",
|
|
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": "4.3.3-beta.
|
|
17
|
+
"igniteui-webcomponents-core": "4.3.3-beta.2"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"typings": "igniteui-webcomponents-inputs.d.ts",
|