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
|
@@ -26,9 +26,9 @@ export declare class ButtonGroupView extends Base {
|
|
|
26
26
|
private g;
|
|
27
27
|
private b;
|
|
28
28
|
private f;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
get l(): any;
|
|
30
|
+
get ab(): Path;
|
|
31
|
+
get e(): boolean;
|
|
32
32
|
t(a: DomRenderer): void;
|
|
33
33
|
private m;
|
|
34
34
|
z(a: string): void;
|
|
@@ -53,25 +53,31 @@ export declare class XButtonGroup extends Base implements INotifyPropertyChanged
|
|
|
53
53
|
static $t: Type;
|
|
54
54
|
constructor();
|
|
55
55
|
private h;
|
|
56
|
-
i: ButtonGroupDisplayStyle;
|
|
56
|
+
get i(): ButtonGroupDisplayStyle;
|
|
57
|
+
set i(a: ButtonGroupDisplayStyle);
|
|
57
58
|
private n;
|
|
58
|
-
p: BaseControlTheme;
|
|
59
|
+
get p(): BaseControlTheme;
|
|
60
|
+
set p(a: BaseControlTheme);
|
|
59
61
|
private c4;
|
|
60
62
|
appendContentChild(a: any): void;
|
|
61
63
|
private c3;
|
|
62
64
|
private c6;
|
|
63
65
|
private r;
|
|
64
|
-
t: ControlDisplayDensity;
|
|
66
|
+
get t(): ControlDisplayDensity;
|
|
67
|
+
set t(a: ControlDisplayDensity);
|
|
65
68
|
private q;
|
|
66
|
-
s: ControlDisplayDensity;
|
|
69
|
+
get s(): ControlDisplayDensity;
|
|
70
|
+
set s(a: ControlDisplayDensity);
|
|
67
71
|
private a;
|
|
68
|
-
d: number[];
|
|
72
|
+
get d(): number[];
|
|
73
|
+
set d(a: number[]);
|
|
69
74
|
private u;
|
|
70
75
|
private de;
|
|
71
76
|
private c;
|
|
72
77
|
private b;
|
|
73
78
|
private _view;
|
|
74
|
-
view: ButtonGroupView;
|
|
79
|
+
get view(): ButtonGroupView;
|
|
80
|
+
set view(a: ButtonGroupView);
|
|
75
81
|
destroy(): void;
|
|
76
82
|
protected da(a: string, b: any, c: any): void;
|
|
77
83
|
protected dc(a: string, b: any, c: any): void;
|
|
@@ -169,128 +175,188 @@ export declare class XButtonGroup extends Base implements INotifyPropertyChanged
|
|
|
169
175
|
static fl: Brush;
|
|
170
176
|
private dh;
|
|
171
177
|
private ad;
|
|
172
|
-
al: number;
|
|
178
|
+
get al(): number;
|
|
179
|
+
set al(a: number);
|
|
173
180
|
private dm;
|
|
174
|
-
ez: Brush;
|
|
181
|
+
get ez(): Brush;
|
|
182
|
+
set ez(a: Brush);
|
|
175
183
|
private dp;
|
|
176
|
-
e1: Brush;
|
|
184
|
+
get e1(): Brush;
|
|
185
|
+
set e1(a: Brush);
|
|
177
186
|
private du;
|
|
178
|
-
e6: Brush;
|
|
187
|
+
get e6(): Brush;
|
|
188
|
+
set e6(a: Brush);
|
|
179
189
|
private dr;
|
|
180
|
-
e3: Brush;
|
|
190
|
+
get e3(): Brush;
|
|
191
|
+
set e3(a: Brush);
|
|
181
192
|
private dn;
|
|
182
|
-
e0: Brush;
|
|
193
|
+
get e0(): Brush;
|
|
194
|
+
set e0(a: Brush);
|
|
183
195
|
private dq;
|
|
184
|
-
e2: Brush;
|
|
196
|
+
get e2(): Brush;
|
|
197
|
+
set e2(a: Brush);
|
|
185
198
|
private ac;
|
|
186
|
-
ak: number;
|
|
199
|
+
get ak(): number;
|
|
200
|
+
set ak(a: number);
|
|
187
201
|
private dv;
|
|
188
|
-
e7: Brush;
|
|
202
|
+
get e7(): Brush;
|
|
203
|
+
set e7(a: Brush);
|
|
189
204
|
private dy;
|
|
190
|
-
fa: Brush;
|
|
205
|
+
get fa(): Brush;
|
|
206
|
+
set fa(a: Brush);
|
|
191
207
|
private ds;
|
|
192
|
-
e4: Brush;
|
|
208
|
+
get e4(): Brush;
|
|
209
|
+
set e4(a: Brush);
|
|
193
210
|
private dt;
|
|
194
|
-
e5: Brush;
|
|
211
|
+
get e5(): Brush;
|
|
212
|
+
set e5(a: Brush);
|
|
195
213
|
private dw;
|
|
196
|
-
e8: Brush;
|
|
214
|
+
get e8(): Brush;
|
|
215
|
+
set e8(a: Brush);
|
|
197
216
|
private dx;
|
|
198
|
-
e9: Brush;
|
|
217
|
+
get e9(): Brush;
|
|
218
|
+
set e9(a: Brush);
|
|
199
219
|
private ah;
|
|
200
|
-
a1: number;
|
|
220
|
+
get a1(): number;
|
|
221
|
+
set a1(a: number);
|
|
201
222
|
private d7;
|
|
202
|
-
hn: Brush;
|
|
223
|
+
get hn(): Brush;
|
|
224
|
+
set hn(a: Brush);
|
|
203
225
|
private d9;
|
|
204
|
-
hp: Brush;
|
|
226
|
+
get hp(): Brush;
|
|
227
|
+
set hp(a: Brush);
|
|
205
228
|
private ee;
|
|
206
|
-
hu: Brush;
|
|
229
|
+
get hu(): Brush;
|
|
230
|
+
set hu(a: Brush);
|
|
207
231
|
private eb;
|
|
208
|
-
hr: Brush;
|
|
232
|
+
get hr(): Brush;
|
|
233
|
+
set hr(a: Brush);
|
|
209
234
|
private ec;
|
|
210
|
-
hs: Brush;
|
|
235
|
+
get hs(): Brush;
|
|
236
|
+
set hs(a: Brush);
|
|
211
237
|
private d8;
|
|
212
|
-
ho: Brush;
|
|
238
|
+
get ho(): Brush;
|
|
239
|
+
set ho(a: Brush);
|
|
213
240
|
private ea;
|
|
214
|
-
hq: Brush;
|
|
241
|
+
get hq(): Brush;
|
|
242
|
+
set hq(a: Brush);
|
|
215
243
|
private ag;
|
|
216
|
-
a0: number;
|
|
244
|
+
get a0(): number;
|
|
245
|
+
set a0(a: number);
|
|
217
246
|
private ed;
|
|
218
|
-
ht: Brush;
|
|
247
|
+
get ht(): Brush;
|
|
248
|
+
set ht(a: Brush);
|
|
219
249
|
private ev;
|
|
220
|
-
h7: Brush;
|
|
250
|
+
get h7(): Brush;
|
|
251
|
+
set h7(a: Brush);
|
|
221
252
|
private ey;
|
|
222
|
-
ia: Brush;
|
|
253
|
+
get ia(): Brush;
|
|
254
|
+
set ia(a: Brush);
|
|
223
255
|
private ew;
|
|
224
|
-
h8: Brush;
|
|
256
|
+
get h8(): Brush;
|
|
257
|
+
set h8(a: Brush);
|
|
225
258
|
private ex;
|
|
226
|
-
h9: Brush;
|
|
259
|
+
get h9(): Brush;
|
|
260
|
+
set h9(a: Brush);
|
|
227
261
|
private aj;
|
|
228
|
-
a3: number;
|
|
262
|
+
get a3(): number;
|
|
263
|
+
set a3(a: number);
|
|
229
264
|
private ef;
|
|
230
|
-
hv: Brush;
|
|
265
|
+
get hv(): Brush;
|
|
266
|
+
set hv(a: Brush);
|
|
231
267
|
private eh;
|
|
232
|
-
hx: Brush;
|
|
268
|
+
get hx(): Brush;
|
|
269
|
+
set hx(a: Brush);
|
|
233
270
|
private em;
|
|
234
|
-
h2: Brush;
|
|
271
|
+
get h2(): Brush;
|
|
272
|
+
set h2(a: Brush);
|
|
235
273
|
private ej;
|
|
236
|
-
hz: Brush;
|
|
274
|
+
get hz(): Brush;
|
|
275
|
+
set hz(a: Brush);
|
|
237
276
|
private ek;
|
|
238
|
-
h0: Brush;
|
|
277
|
+
get h0(): Brush;
|
|
278
|
+
set h0(a: Brush);
|
|
239
279
|
private eg;
|
|
240
|
-
hw: Brush;
|
|
280
|
+
get hw(): Brush;
|
|
281
|
+
set hw(a: Brush);
|
|
241
282
|
private ei;
|
|
242
|
-
hy: Brush;
|
|
283
|
+
get hy(): Brush;
|
|
284
|
+
set hy(a: Brush);
|
|
243
285
|
private ai;
|
|
244
|
-
a2: number;
|
|
286
|
+
get a2(): number;
|
|
287
|
+
set a2(a: number);
|
|
245
288
|
private el;
|
|
246
|
-
h1: Brush;
|
|
289
|
+
get h1(): Brush;
|
|
290
|
+
set h1(a: Brush);
|
|
247
291
|
private er;
|
|
248
|
-
h3: Brush;
|
|
292
|
+
get h3(): Brush;
|
|
293
|
+
set h3(a: Brush);
|
|
249
294
|
private eu;
|
|
250
|
-
h6: Brush;
|
|
295
|
+
get h6(): Brush;
|
|
296
|
+
set h6(a: Brush);
|
|
251
297
|
static readonly cv: string;
|
|
252
298
|
private es;
|
|
253
|
-
h4: Brush;
|
|
299
|
+
get h4(): Brush;
|
|
300
|
+
set h4(a: Brush);
|
|
254
301
|
private et;
|
|
255
|
-
h5: Brush;
|
|
302
|
+
get h5(): Brush;
|
|
303
|
+
set h5(a: Brush);
|
|
256
304
|
private af;
|
|
257
|
-
az: number;
|
|
305
|
+
get az(): number;
|
|
306
|
+
set az(a: number);
|
|
258
307
|
private dz;
|
|
259
|
-
hb: Brush;
|
|
308
|
+
get hb(): Brush;
|
|
309
|
+
set hb(a: Brush);
|
|
260
310
|
private d1;
|
|
261
|
-
hd: Brush;
|
|
311
|
+
get hd(): Brush;
|
|
312
|
+
set hd(a: Brush);
|
|
262
313
|
private d6;
|
|
263
|
-
hi: Brush;
|
|
314
|
+
get hi(): Brush;
|
|
315
|
+
set hi(a: Brush);
|
|
264
316
|
private d3;
|
|
265
|
-
hf: Brush;
|
|
317
|
+
get hf(): Brush;
|
|
318
|
+
set hf(a: Brush);
|
|
266
319
|
private d4;
|
|
267
|
-
hg: Brush;
|
|
320
|
+
get hg(): Brush;
|
|
321
|
+
set hg(a: Brush);
|
|
268
322
|
private d0;
|
|
269
|
-
hc: Brush;
|
|
323
|
+
get hc(): Brush;
|
|
324
|
+
set hc(a: Brush);
|
|
270
325
|
private d2;
|
|
271
|
-
he: Brush;
|
|
326
|
+
get he(): Brush;
|
|
327
|
+
set he(a: Brush);
|
|
272
328
|
private ae;
|
|
273
|
-
ay: number;
|
|
329
|
+
get ay(): number;
|
|
330
|
+
set ay(a: number);
|
|
274
331
|
private d5;
|
|
275
|
-
hh: Brush;
|
|
332
|
+
get hh(): Brush;
|
|
333
|
+
set hh(a: Brush);
|
|
276
334
|
private en;
|
|
277
|
-
hj: Brush;
|
|
335
|
+
get hj(): Brush;
|
|
336
|
+
set hj(a: Brush);
|
|
278
337
|
private eq;
|
|
279
|
-
hm: Brush;
|
|
338
|
+
get hm(): Brush;
|
|
339
|
+
set hm(a: Brush);
|
|
280
340
|
private eo;
|
|
281
|
-
hk: Brush;
|
|
341
|
+
get hk(): Brush;
|
|
342
|
+
set hk(a: Brush);
|
|
282
343
|
private ep;
|
|
283
|
-
hl: Brush;
|
|
344
|
+
get hl(): Brush;
|
|
345
|
+
set hl(a: Brush);
|
|
284
346
|
private j;
|
|
285
|
-
k: ButtonGroupOrientation;
|
|
347
|
+
get k(): ButtonGroupOrientation;
|
|
348
|
+
set k(a: ButtonGroupOrientation);
|
|
286
349
|
private static a4;
|
|
287
350
|
private a6;
|
|
288
|
-
b5: string;
|
|
351
|
+
get b5(): string;
|
|
352
|
+
set b5(a: string);
|
|
289
353
|
private w;
|
|
290
354
|
private v;
|
|
291
|
-
disabled: boolean;
|
|
355
|
+
get disabled(): boolean;
|
|
356
|
+
set disabled(a: boolean);
|
|
292
357
|
private x;
|
|
293
|
-
z: boolean;
|
|
358
|
+
get z(): boolean;
|
|
359
|
+
set z(a: boolean);
|
|
294
360
|
db(): void;
|
|
295
361
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
296
362
|
onDetachedFromUI(): void;
|
|
@@ -301,6 +367,6 @@ export declare class XButtonGroup extends Base implements INotifyPropertyChanged
|
|
|
301
367
|
e(): ButtonGroupVisualModelExport;
|
|
302
368
|
provideContainer(a: DomRenderer): void;
|
|
303
369
|
private f;
|
|
304
|
-
|
|
370
|
+
get buttons(): XButtonGroupButtonCollection;
|
|
305
371
|
selectionChanged: (sender: any, args: ButtonGroupSelectionChangedEventArgs) => void;
|
|
306
372
|
}
|