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
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
|
|
2
2
|
import { DomRenderer } from "igniteui-webcomponents-core";
|
|
3
|
+
import { List$1 } from "igniteui-webcomponents-core";
|
|
4
|
+
import { Tuple$2 } from "igniteui-webcomponents-core";
|
|
5
|
+
import { SVGNode } from "igniteui-webcomponents-core";
|
|
6
|
+
import { FastIterationDictionary$2 } from "igniteui-webcomponents-core";
|
|
3
7
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
4
8
|
import { IIcon } from "igniteui-webcomponents-core";
|
|
5
9
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
6
10
|
import { Brush } from "igniteui-webcomponents-core";
|
|
11
|
+
import { BrushCollection } from "igniteui-webcomponents-core";
|
|
7
12
|
import { IconClickedEventArgs } from "./IconClickedEventArgs";
|
|
8
13
|
import { IconVisualModelExport } from "./IconVisualModelExport";
|
|
9
14
|
/**
|
|
@@ -13,30 +18,40 @@ export declare class IconView extends Base {
|
|
|
13
18
|
static $t: Type;
|
|
14
19
|
constructor();
|
|
15
20
|
b: XIcon;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
private
|
|
20
|
-
private g;
|
|
21
|
-
readonly k: any;
|
|
22
|
-
readonly l: any;
|
|
23
|
-
readonly f: boolean;
|
|
24
|
-
s(a: DomRenderer): void;
|
|
25
|
-
private m;
|
|
26
|
-
x(a: string): void;
|
|
27
|
-
w(): void;
|
|
28
|
-
private n;
|
|
29
|
-
v(): void;
|
|
30
|
-
private o;
|
|
31
|
-
private p;
|
|
32
|
-
private d;
|
|
21
|
+
ac(): void;
|
|
22
|
+
g(): boolean;
|
|
23
|
+
o: DomRenderer;
|
|
24
|
+
private e;
|
|
33
25
|
private i;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
26
|
+
get r(): any;
|
|
27
|
+
get s(): any;
|
|
28
|
+
get h(): boolean;
|
|
29
|
+
j: List$1<Tuple$2<SVGNode, any>>;
|
|
30
|
+
k: List$1<Tuple$2<SVGNode, any>>;
|
|
31
|
+
l: List$1<Tuple$2<SVGNode, any>>;
|
|
32
|
+
m: List$1<Tuple$2<SVGNode, any>>;
|
|
33
|
+
n: List$1<Tuple$2<SVGNode, any>>;
|
|
34
|
+
c: FastIterationDictionary$2<string, List$1<Tuple$2<SVGNode, any>>>;
|
|
35
|
+
d: FastIterationDictionary$2<string, List$1<Tuple$2<SVGNode, any>>>;
|
|
36
|
+
aa(a: DomRenderer): void;
|
|
37
|
+
private u;
|
|
38
|
+
ag(a: string): void;
|
|
39
|
+
private t;
|
|
40
|
+
af(a: string): void;
|
|
41
|
+
ae(): void;
|
|
42
|
+
ai(): void;
|
|
43
|
+
private v;
|
|
44
|
+
ad(): void;
|
|
45
|
+
private w;
|
|
46
|
+
private x;
|
|
47
|
+
private f;
|
|
48
|
+
private p;
|
|
49
|
+
private q;
|
|
50
|
+
y(): void;
|
|
51
|
+
ab(): void;
|
|
52
|
+
ah(a: FontInfo): void;
|
|
38
53
|
a(): number[];
|
|
39
|
-
private
|
|
54
|
+
private z;
|
|
40
55
|
}
|
|
41
56
|
/**
|
|
42
57
|
* @hidden
|
|
@@ -45,83 +60,139 @@ export declare class XIcon extends Base implements INotifyPropertyChanged, IIcon
|
|
|
45
60
|
static $t: Type;
|
|
46
61
|
constructor();
|
|
47
62
|
private _view;
|
|
48
|
-
view: IconView;
|
|
63
|
+
get view(): IconView;
|
|
64
|
+
set view(a: IconView);
|
|
49
65
|
destroy(): void;
|
|
50
|
-
protected
|
|
51
|
-
protected
|
|
52
|
-
private
|
|
53
|
-
protected
|
|
54
|
-
private
|
|
55
|
-
private
|
|
56
|
-
static
|
|
57
|
-
static
|
|
58
|
-
static
|
|
59
|
-
static
|
|
60
|
-
static
|
|
61
|
-
static
|
|
62
|
-
static
|
|
63
|
-
|
|
64
|
-
e: BaseControlTheme;
|
|
65
|
-
private bm;
|
|
66
|
-
bx: Brush;
|
|
67
|
-
private bq;
|
|
68
|
-
b1: Brush;
|
|
69
|
-
private bn;
|
|
70
|
-
by: Brush;
|
|
71
|
-
private bo;
|
|
72
|
-
bz: Brush;
|
|
73
|
-
private bp;
|
|
74
|
-
b0: Brush;
|
|
75
|
-
private p;
|
|
76
|
-
u: number;
|
|
77
|
-
private q;
|
|
78
|
-
v: number;
|
|
79
|
-
private br;
|
|
80
|
-
fill: Brush;
|
|
81
|
-
private bw;
|
|
82
|
-
cb: Brush;
|
|
83
|
-
private ah;
|
|
84
|
-
svgPath: string;
|
|
85
|
-
private bs;
|
|
86
|
-
b7: Brush;
|
|
87
|
-
private bt;
|
|
88
|
-
b8: Brush;
|
|
89
|
-
private bv;
|
|
90
|
-
ca: Brush;
|
|
91
|
-
private r;
|
|
92
|
-
y: number;
|
|
93
|
-
private t;
|
|
94
|
-
aa: number;
|
|
95
|
-
bd(): void;
|
|
96
|
-
be(): void;
|
|
97
|
-
private f;
|
|
98
|
-
g: FontInfo;
|
|
99
|
-
private bu;
|
|
100
|
-
b9: Brush;
|
|
101
|
-
private static ad;
|
|
102
|
-
private ag;
|
|
103
|
-
ay: string;
|
|
104
|
-
private ab;
|
|
66
|
+
protected b5(a: string, b: any, c: any): void;
|
|
67
|
+
protected b7(a: string, b: any, c: any): void;
|
|
68
|
+
private cb;
|
|
69
|
+
protected get p(): boolean;
|
|
70
|
+
private ca;
|
|
71
|
+
private b9;
|
|
72
|
+
static cs: Brush;
|
|
73
|
+
static cx: Brush;
|
|
74
|
+
static cw: Brush;
|
|
75
|
+
static ct: Brush;
|
|
76
|
+
static cu: Brush;
|
|
77
|
+
static cv: Brush;
|
|
78
|
+
static af: number;
|
|
79
|
+
static ae: number;
|
|
105
80
|
private h;
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
private
|
|
109
|
-
|
|
81
|
+
get i(): BaseControlTheme;
|
|
82
|
+
set i(a: BaseControlTheme);
|
|
83
|
+
private cc;
|
|
84
|
+
get cp(): Brush;
|
|
85
|
+
set cp(a: Brush);
|
|
86
|
+
private cd;
|
|
87
|
+
get cq(): Brush;
|
|
88
|
+
set cq(a: Brush);
|
|
89
|
+
private ce;
|
|
90
|
+
get cr(): Brush;
|
|
91
|
+
set cr(a: Brush);
|
|
92
|
+
private t;
|
|
93
|
+
get ad(): number;
|
|
94
|
+
set ad(a: number);
|
|
95
|
+
private cf;
|
|
96
|
+
get fill(): Brush;
|
|
97
|
+
set fill(a: Brush);
|
|
98
|
+
private cn;
|
|
99
|
+
get c5(): Brush;
|
|
100
|
+
set c5(a: Brush);
|
|
101
|
+
private x;
|
|
102
|
+
get aj(): number;
|
|
103
|
+
set aj(a: number);
|
|
104
|
+
private co;
|
|
105
|
+
get c6(): Brush;
|
|
106
|
+
set c6(a: Brush);
|
|
107
|
+
private cg;
|
|
108
|
+
get cy(): Brush;
|
|
109
|
+
set cy(a: Brush);
|
|
110
|
+
private ch;
|
|
111
|
+
get cz(): Brush;
|
|
112
|
+
set cz(a: Brush);
|
|
113
|
+
private v;
|
|
114
|
+
get ah(): number;
|
|
115
|
+
set ah(a: number);
|
|
116
|
+
private ci;
|
|
117
|
+
get c0(): Brush;
|
|
118
|
+
set c0(a: Brush);
|
|
119
|
+
private a;
|
|
120
|
+
get c(): BrushCollection;
|
|
121
|
+
set c(a: BrushCollection);
|
|
122
|
+
private b;
|
|
123
|
+
get d(): BrushCollection;
|
|
124
|
+
set d(a: BrushCollection);
|
|
125
|
+
private cj;
|
|
126
|
+
get c1(): Brush;
|
|
127
|
+
set c1(a: Brush);
|
|
128
|
+
private ck;
|
|
129
|
+
get c2(): Brush;
|
|
130
|
+
set c2(a: Brush);
|
|
131
|
+
private cl;
|
|
132
|
+
get c3(): Brush;
|
|
133
|
+
set c3(a: Brush);
|
|
134
|
+
private cm;
|
|
135
|
+
get c4(): Brush;
|
|
136
|
+
set c4(a: Brush);
|
|
137
|
+
private aw;
|
|
138
|
+
get svgPath(): string;
|
|
139
|
+
set svgPath(a: string);
|
|
140
|
+
private av;
|
|
141
|
+
get svg(): string;
|
|
142
|
+
set svg(a: string);
|
|
143
|
+
b3(): void;
|
|
144
|
+
b4(): void;
|
|
110
145
|
private j;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
private
|
|
115
|
-
|
|
116
|
-
|
|
146
|
+
get k(): FontInfo;
|
|
147
|
+
set k(a: FontInfo);
|
|
148
|
+
private static ar;
|
|
149
|
+
private au;
|
|
150
|
+
get bc(): string;
|
|
151
|
+
set bc(a: string);
|
|
152
|
+
private ap;
|
|
153
|
+
private l;
|
|
154
|
+
get o(): boolean;
|
|
155
|
+
get aq(): number;
|
|
156
|
+
set aq(a: number);
|
|
157
|
+
private at;
|
|
158
|
+
get a1(): string;
|
|
159
|
+
set a1(a: string);
|
|
160
|
+
private n;
|
|
161
|
+
get r(): boolean;
|
|
162
|
+
set r(a: boolean);
|
|
163
|
+
private m;
|
|
164
|
+
get disabled(): boolean;
|
|
165
|
+
set disabled(a: boolean);
|
|
166
|
+
private w;
|
|
167
|
+
get ai(): number;
|
|
168
|
+
set ai(a: number);
|
|
169
|
+
private z;
|
|
170
|
+
get al(): number;
|
|
171
|
+
set al(a: number);
|
|
172
|
+
private aa;
|
|
173
|
+
get am(): number;
|
|
174
|
+
set am(a: number);
|
|
175
|
+
private ab;
|
|
176
|
+
get an(): number;
|
|
177
|
+
set an(a: number);
|
|
178
|
+
private y;
|
|
179
|
+
get ak(): number;
|
|
180
|
+
set ak(a: number);
|
|
181
|
+
private ac;
|
|
182
|
+
get ao(): number;
|
|
183
|
+
set ao(a: number);
|
|
184
|
+
private u;
|
|
185
|
+
get ag(): number;
|
|
186
|
+
set ag(a: number);
|
|
187
|
+
b6(): void;
|
|
117
188
|
clicked: (sender: any, args: IconClickedEventArgs) => void;
|
|
118
189
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
119
190
|
onDetachedFromUI(): void;
|
|
120
191
|
onAttachedToUI(): void;
|
|
121
|
-
|
|
122
|
-
protected
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
192
|
+
b1(): void;
|
|
193
|
+
protected s(): boolean;
|
|
194
|
+
as(): any;
|
|
195
|
+
a4(): string;
|
|
196
|
+
e(): IconVisualModelExport;
|
|
126
197
|
provideContainer(a: DomRenderer): void;
|
|
127
198
|
}
|
|
@@ -5,7 +5,9 @@ import { EventArgs, Type } from "igniteui-webcomponents-core";
|
|
|
5
5
|
export declare class InputChangeEventArgs extends EventArgs {
|
|
6
6
|
static $t: Type;
|
|
7
7
|
private _value;
|
|
8
|
-
value: string;
|
|
8
|
+
get value(): string;
|
|
9
|
+
set value(a: string);
|
|
9
10
|
private _isCompositionInProgress;
|
|
10
|
-
isCompositionInProgress: boolean;
|
|
11
|
+
get isCompositionInProgress(): boolean;
|
|
12
|
+
set isCompositionInProgress(a: boolean);
|
|
11
13
|
}
|