igniteui-angular-inputs 18.2.0 → 19.0.1
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-angular-inputs.umd.js +3069 -2910
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +26 -26
- package/esm2015/lib/ButtonView_combined.js +1716 -1662
- package/esm2015/lib/CalendarView_combined.js +312 -298
- package/esm2015/lib/IconViewType.js +11 -0
- package/esm2015/lib/IconView_combined.js +462 -432
- package/esm2015/lib/InputGroupView_combined.js +115 -93
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +4 -4
- package/esm2015/lib/XButtonBridge.js +39 -35
- package/esm2015/lib/XButtonGroupBridge.js +2 -2
- package/esm2015/lib/XCheckboxBridge.js +8 -8
- package/esm2015/lib/XComponentBridge.js +1 -1
- package/esm2015/lib/XIconBridge.js +25 -23
- package/esm2015/lib/XInputBridge.js +16 -16
- package/esm2015/lib/XPopupBridge.js +5 -3
- package/esm2015/lib/igx-x-button-component.js +396 -385
- package/esm2015/lib/igx-x-icon-component.js +63 -63
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/ButtonGroupView_combined.js +26 -26
- package/esm5/lib/ButtonView_combined.js +1583 -1525
- package/esm5/lib/CalendarView_combined.js +312 -298
- package/esm5/lib/IconViewType.js +11 -0
- package/esm5/lib/IconView_combined.js +449 -419
- package/esm5/lib/InputGroupView_combined.js +115 -93
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/NativeUIXInputsFactory_combined.js +4 -4
- package/esm5/lib/XButtonBridge.js +39 -35
- package/esm5/lib/XButtonGroupBridge.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +8 -8
- package/esm5/lib/XComponentBridge.js +1 -1
- package/esm5/lib/XIconBridge.js +25 -23
- package/esm5/lib/XInputBridge.js +16 -16
- package/esm5/lib/XPopupBridge.js +5 -3
- package/esm5/lib/igx-x-button-component.js +400 -385
- package/esm5/lib/igx-x-icon-component.js +63 -63
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-angular-inputs.js +3204 -3054
- package/fesm5/igniteui-angular-inputs.js +3070 -2912
- package/lib/ButtonView_combined.d.ts +513 -504
- package/lib/CalendarView_combined.d.ts +38 -35
- package/lib/IconViewType.d.ts +16 -0
- package/lib/IconView_combined.d.ts +115 -111
- package/lib/InputGroupView_combined.d.ts +28 -26
- package/lib/igx-x-button-component.d.ts +7 -1
- package/package.json +5 -5
- package/public_api.d.ts +1 -0
|
@@ -79,10 +79,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
79
79
|
* Gets or sets the base built in theme to use for the button.
|
|
80
80
|
*/
|
|
81
81
|
get: function () {
|
|
82
|
-
return this.i.
|
|
82
|
+
return this.i.m;
|
|
83
83
|
},
|
|
84
84
|
set: function (v) {
|
|
85
|
-
this.i.
|
|
85
|
+
this.i.m = ensureEnum(BaseControlTheme_$type, v);
|
|
86
86
|
},
|
|
87
87
|
enumerable: false,
|
|
88
88
|
configurable: true
|
|
@@ -92,10 +92,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
92
92
|
* Gets the fill color currently used by the icon.
|
|
93
93
|
*/
|
|
94
94
|
get: function () {
|
|
95
|
-
return brushToString(this.i.
|
|
95
|
+
return brushToString(this.i.c1);
|
|
96
96
|
},
|
|
97
97
|
set: function (v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.c1 = stringToBrush(v);
|
|
99
99
|
},
|
|
100
100
|
enumerable: false,
|
|
101
101
|
configurable: true
|
|
@@ -105,10 +105,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
105
105
|
* Gets the stroke color currently used by the icon.
|
|
106
106
|
*/
|
|
107
107
|
get: function () {
|
|
108
|
-
return brushToString(this.i.
|
|
108
|
+
return brushToString(this.i.c2);
|
|
109
109
|
},
|
|
110
110
|
set: function (v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.c2 = stringToBrush(v);
|
|
112
112
|
},
|
|
113
113
|
enumerable: false,
|
|
114
114
|
configurable: true
|
|
@@ -118,10 +118,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
118
118
|
* Gets the text color currently used by the icon.
|
|
119
119
|
*/
|
|
120
120
|
get: function () {
|
|
121
|
-
return brushToString(this.i.
|
|
121
|
+
return brushToString(this.i.c3);
|
|
122
122
|
},
|
|
123
123
|
set: function (v) {
|
|
124
|
-
this.i.
|
|
124
|
+
this.i.c3 = stringToBrush(v);
|
|
125
125
|
},
|
|
126
126
|
enumerable: false,
|
|
127
127
|
configurable: true
|
|
@@ -131,10 +131,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
131
131
|
* Gets the stroke width currently used by the icon.
|
|
132
132
|
*/
|
|
133
133
|
get: function () {
|
|
134
|
-
return this.i.
|
|
134
|
+
return this.i.ai;
|
|
135
135
|
},
|
|
136
136
|
set: function (v) {
|
|
137
|
-
this.i.
|
|
137
|
+
this.i.ai = +v;
|
|
138
138
|
},
|
|
139
139
|
enumerable: false,
|
|
140
140
|
configurable: true
|
|
@@ -157,10 +157,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
157
157
|
* Gets or sets the stroke color to use for the icon.
|
|
158
158
|
*/
|
|
159
159
|
get: function () {
|
|
160
|
-
return brushToString(this.i.
|
|
160
|
+
return brushToString(this.i.dh);
|
|
161
161
|
},
|
|
162
162
|
set: function (v) {
|
|
163
|
-
this.i.
|
|
163
|
+
this.i.dh = stringToBrush(v);
|
|
164
164
|
},
|
|
165
165
|
enumerable: false,
|
|
166
166
|
configurable: true
|
|
@@ -170,10 +170,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
170
170
|
* Gets or sets the stroke thickness to use for the icon.
|
|
171
171
|
*/
|
|
172
172
|
get: function () {
|
|
173
|
-
return this.i.
|
|
173
|
+
return this.i.ao;
|
|
174
174
|
},
|
|
175
175
|
set: function (v) {
|
|
176
|
-
this.i.
|
|
176
|
+
this.i.ao = +v;
|
|
177
177
|
},
|
|
178
178
|
enumerable: false,
|
|
179
179
|
configurable: true
|
|
@@ -183,10 +183,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
183
183
|
* Gets or sets the text color to use for the icon.
|
|
184
184
|
*/
|
|
185
185
|
get: function () {
|
|
186
|
-
return brushToString(this.i.
|
|
186
|
+
return brushToString(this.i.di);
|
|
187
187
|
},
|
|
188
188
|
set: function (v) {
|
|
189
|
-
this.i.
|
|
189
|
+
this.i.di = stringToBrush(v);
|
|
190
190
|
},
|
|
191
191
|
enumerable: false,
|
|
192
192
|
configurable: true
|
|
@@ -196,10 +196,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
196
196
|
* Gets or sets the fill color to use when the icon is hovered.
|
|
197
197
|
*/
|
|
198
198
|
get: function () {
|
|
199
|
-
return brushToString(this.i.
|
|
199
|
+
return brushToString(this.i.da);
|
|
200
200
|
},
|
|
201
201
|
set: function (v) {
|
|
202
|
-
this.i.
|
|
202
|
+
this.i.da = stringToBrush(v);
|
|
203
203
|
},
|
|
204
204
|
enumerable: false,
|
|
205
205
|
configurable: true
|
|
@@ -209,10 +209,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
209
209
|
* Gets or sets the stroke color to use when the icon is hovered.
|
|
210
210
|
*/
|
|
211
211
|
get: function () {
|
|
212
|
-
return brushToString(this.i.
|
|
212
|
+
return brushToString(this.i.db);
|
|
213
213
|
},
|
|
214
214
|
set: function (v) {
|
|
215
|
-
this.i.
|
|
215
|
+
this.i.db = stringToBrush(v);
|
|
216
216
|
},
|
|
217
217
|
enumerable: false,
|
|
218
218
|
configurable: true
|
|
@@ -222,10 +222,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
222
222
|
* Gets or sets the stroke thickness to use when the icon is hovered.
|
|
223
223
|
*/
|
|
224
224
|
get: function () {
|
|
225
|
-
return this.i.
|
|
225
|
+
return this.i.am;
|
|
226
226
|
},
|
|
227
227
|
set: function (v) {
|
|
228
|
-
this.i.
|
|
228
|
+
this.i.am = +v;
|
|
229
229
|
},
|
|
230
230
|
enumerable: false,
|
|
231
231
|
configurable: true
|
|
@@ -235,10 +235,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
235
235
|
* Gets or sets the text color to use when the icon is hovered.
|
|
236
236
|
*/
|
|
237
237
|
get: function () {
|
|
238
|
-
return brushToString(this.i.
|
|
238
|
+
return brushToString(this.i.dc);
|
|
239
239
|
},
|
|
240
240
|
set: function (v) {
|
|
241
|
-
this.i.
|
|
241
|
+
this.i.dc = stringToBrush(v);
|
|
242
242
|
},
|
|
243
243
|
enumerable: false,
|
|
244
244
|
configurable: true
|
|
@@ -284,10 +284,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
284
284
|
* class.
|
|
285
285
|
*/
|
|
286
286
|
get: function () {
|
|
287
|
-
return brushToString(this.i.
|
|
287
|
+
return brushToString(this.i.dd);
|
|
288
288
|
},
|
|
289
289
|
set: function (v) {
|
|
290
|
-
this.i.
|
|
290
|
+
this.i.dd = stringToBrush(v);
|
|
291
291
|
},
|
|
292
292
|
enumerable: false,
|
|
293
293
|
configurable: true
|
|
@@ -301,10 +301,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
301
301
|
* class.
|
|
302
302
|
*/
|
|
303
303
|
get: function () {
|
|
304
|
-
return brushToString(this.i.
|
|
304
|
+
return brushToString(this.i.de);
|
|
305
305
|
},
|
|
306
306
|
set: function (v) {
|
|
307
|
-
this.i.
|
|
307
|
+
this.i.de = stringToBrush(v);
|
|
308
308
|
},
|
|
309
309
|
enumerable: false,
|
|
310
310
|
configurable: true
|
|
@@ -318,10 +318,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
318
318
|
* class.
|
|
319
319
|
*/
|
|
320
320
|
get: function () {
|
|
321
|
-
return brushToString(this.i.
|
|
321
|
+
return brushToString(this.i.df);
|
|
322
322
|
},
|
|
323
323
|
set: function (v) {
|
|
324
|
-
this.i.
|
|
324
|
+
this.i.df = stringToBrush(v);
|
|
325
325
|
},
|
|
326
326
|
enumerable: false,
|
|
327
327
|
configurable: true
|
|
@@ -335,10 +335,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
335
335
|
* class.
|
|
336
336
|
*/
|
|
337
337
|
get: function () {
|
|
338
|
-
return brushToString(this.i.
|
|
338
|
+
return brushToString(this.i.dg);
|
|
339
339
|
},
|
|
340
340
|
set: function (v) {
|
|
341
|
-
this.i.
|
|
341
|
+
this.i.dg = stringToBrush(v);
|
|
342
342
|
},
|
|
343
343
|
enumerable: false,
|
|
344
344
|
configurable: true
|
|
@@ -348,10 +348,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
348
348
|
* Gets or sets the image source for the icon. Used if none of the other icon types are not used.
|
|
349
349
|
*/
|
|
350
350
|
get: function () {
|
|
351
|
-
return this.i.
|
|
351
|
+
return this.i.az;
|
|
352
352
|
},
|
|
353
353
|
set: function (v) {
|
|
354
|
-
this.i.
|
|
354
|
+
this.i.az = v;
|
|
355
355
|
},
|
|
356
356
|
enumerable: false,
|
|
357
357
|
configurable: true
|
|
@@ -361,10 +361,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
361
361
|
* Gets or sets data url for the icon to use.
|
|
362
362
|
*/
|
|
363
363
|
get: function () {
|
|
364
|
-
return this.i.
|
|
364
|
+
return this.i.bc;
|
|
365
365
|
},
|
|
366
366
|
set: function (v) {
|
|
367
|
-
this.i.
|
|
367
|
+
this.i.bc = v;
|
|
368
368
|
},
|
|
369
369
|
enumerable: false,
|
|
370
370
|
configurable: true
|
|
@@ -417,15 +417,15 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
417
417
|
* Gets or sets the use for the button.
|
|
418
418
|
*/
|
|
419
419
|
get: function () {
|
|
420
|
-
if (this.i.
|
|
420
|
+
if (this.i.o == null) {
|
|
421
421
|
return null;
|
|
422
422
|
}
|
|
423
|
-
return this.i.
|
|
423
|
+
return this.i.o.fontString;
|
|
424
424
|
},
|
|
425
425
|
set: function (v) {
|
|
426
426
|
var fi = new FontInfo();
|
|
427
427
|
fi.fontString = v;
|
|
428
|
-
this.i.
|
|
428
|
+
this.i.o = fi;
|
|
429
429
|
},
|
|
430
430
|
enumerable: false,
|
|
431
431
|
configurable: true
|
|
@@ -435,10 +435,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
435
435
|
* Gets or sets the id to use for the checkbox.
|
|
436
436
|
*/
|
|
437
437
|
get: function () {
|
|
438
|
-
return this.i.
|
|
438
|
+
return this.i.bm;
|
|
439
439
|
},
|
|
440
440
|
set: function (v) {
|
|
441
|
-
this.i.
|
|
441
|
+
this.i.bm = v;
|
|
442
442
|
},
|
|
443
443
|
enumerable: false,
|
|
444
444
|
configurable: true
|
|
@@ -448,10 +448,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
448
448
|
* Gets or sets TabIndex to use for the checkbox.
|
|
449
449
|
*/
|
|
450
450
|
get: function () {
|
|
451
|
-
return this.i.
|
|
451
|
+
return this.i.av;
|
|
452
452
|
},
|
|
453
453
|
set: function (v) {
|
|
454
|
-
this.i.
|
|
454
|
+
this.i.av = +v;
|
|
455
455
|
},
|
|
456
456
|
enumerable: false,
|
|
457
457
|
configurable: true
|
|
@@ -461,10 +461,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
461
461
|
* Gets or sets the value of the aria-label attribute.
|
|
462
462
|
*/
|
|
463
463
|
get: function () {
|
|
464
|
-
return this.i.
|
|
464
|
+
return this.i.a9;
|
|
465
465
|
},
|
|
466
466
|
set: function (v) {
|
|
467
|
-
this.i.
|
|
467
|
+
this.i.a9 = v;
|
|
468
468
|
},
|
|
469
469
|
enumerable: false,
|
|
470
470
|
configurable: true
|
|
@@ -474,10 +474,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
474
474
|
* Gets or sets whether the icon is hovered.
|
|
475
475
|
*/
|
|
476
476
|
get: function () {
|
|
477
|
-
return this.i.
|
|
477
|
+
return this.i.v;
|
|
478
478
|
},
|
|
479
479
|
set: function (v) {
|
|
480
|
-
this.i.
|
|
480
|
+
this.i.v = ensureBool(v);
|
|
481
481
|
},
|
|
482
482
|
enumerable: false,
|
|
483
483
|
configurable: true
|
|
@@ -497,10 +497,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
497
497
|
});
|
|
498
498
|
Object.defineProperty(IgxXIconComponent.prototype, "opacity", {
|
|
499
499
|
get: function () {
|
|
500
|
-
return this.i.
|
|
500
|
+
return this.i.an;
|
|
501
501
|
},
|
|
502
502
|
set: function (v) {
|
|
503
|
-
this.i.
|
|
503
|
+
this.i.an = +v;
|
|
504
504
|
},
|
|
505
505
|
enumerable: false,
|
|
506
506
|
configurable: true
|
|
@@ -510,10 +510,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
510
510
|
* Gets or sets the viewbox left for the svg icon.
|
|
511
511
|
*/
|
|
512
512
|
get: function () {
|
|
513
|
-
return this.i.
|
|
513
|
+
return this.i.aq;
|
|
514
514
|
},
|
|
515
515
|
set: function (v) {
|
|
516
|
-
this.i.
|
|
516
|
+
this.i.aq = +v;
|
|
517
517
|
},
|
|
518
518
|
enumerable: false,
|
|
519
519
|
configurable: true
|
|
@@ -523,10 +523,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
523
523
|
* Gets or sets the viewbox top for the svg icon.
|
|
524
524
|
*/
|
|
525
525
|
get: function () {
|
|
526
|
-
return this.i.
|
|
526
|
+
return this.i.ar;
|
|
527
527
|
},
|
|
528
528
|
set: function (v) {
|
|
529
|
-
this.i.
|
|
529
|
+
this.i.ar = +v;
|
|
530
530
|
},
|
|
531
531
|
enumerable: false,
|
|
532
532
|
configurable: true
|
|
@@ -536,10 +536,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
536
536
|
* Gets or sets the viewbox width for the svg icon.
|
|
537
537
|
*/
|
|
538
538
|
get: function () {
|
|
539
|
-
return this.i.
|
|
539
|
+
return this.i.as;
|
|
540
540
|
},
|
|
541
541
|
set: function (v) {
|
|
542
|
-
this.i.
|
|
542
|
+
this.i.as = +v;
|
|
543
543
|
},
|
|
544
544
|
enumerable: false,
|
|
545
545
|
configurable: true
|
|
@@ -549,10 +549,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
549
549
|
* Gets or sets the viewbox height for the svg icon.
|
|
550
550
|
*/
|
|
551
551
|
get: function () {
|
|
552
|
-
return this.i.
|
|
552
|
+
return this.i.ap;
|
|
553
553
|
},
|
|
554
554
|
set: function (v) {
|
|
555
|
-
this.i.
|
|
555
|
+
this.i.ap = +v;
|
|
556
556
|
},
|
|
557
557
|
enumerable: false,
|
|
558
558
|
configurable: true
|
|
@@ -562,10 +562,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
562
562
|
* Gets or sets the width of the icon.
|
|
563
563
|
*/
|
|
564
564
|
get: function () {
|
|
565
|
-
return this.i.
|
|
565
|
+
return this.i.at;
|
|
566
566
|
},
|
|
567
567
|
set: function (v) {
|
|
568
|
-
this.i.
|
|
568
|
+
this.i.at = +v;
|
|
569
569
|
},
|
|
570
570
|
enumerable: false,
|
|
571
571
|
configurable: true
|
|
@@ -575,10 +575,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
575
575
|
* Gets or sets the height of the icon.
|
|
576
576
|
*/
|
|
577
577
|
get: function () {
|
|
578
|
-
return this.i.
|
|
578
|
+
return this.i.al;
|
|
579
579
|
},
|
|
580
580
|
set: function (v) {
|
|
581
|
-
this.i.
|
|
581
|
+
this.i.al = +v;
|
|
582
582
|
},
|
|
583
583
|
enumerable: false,
|
|
584
584
|
configurable: true
|
|
@@ -659,7 +659,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
659
659
|
|
|
660
660
|
*/
|
|
661
661
|
IgxXIconComponent.prototype.exportVisualModel = function () {
|
|
662
|
-
var iv = this.i.
|
|
662
|
+
var iv = this.i.ay();
|
|
663
663
|
return (iv);
|
|
664
664
|
};
|
|
665
665
|
/**
|
|
@@ -667,7 +667,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
667
667
|
|
|
668
668
|
*/
|
|
669
669
|
IgxXIconComponent.prototype.exportSerializedVisualModel = function () {
|
|
670
|
-
var iv = this.i.
|
|
670
|
+
var iv = this.i.be();
|
|
671
671
|
return (iv);
|
|
672
672
|
};
|
|
673
673
|
IgxXIconComponent.prototype._runInZone = function (act) {
|
package/esm5/public_api.js
CHANGED
|
@@ -155,6 +155,7 @@ export * from './lib/igx-input-change-event-args';
|
|
|
155
155
|
export * from './lib/InputShiftType';
|
|
156
156
|
export * from './lib/XIcon';
|
|
157
157
|
export * from './lib/IconClickedEventArgs';
|
|
158
|
+
export * from './lib/IconViewType';
|
|
158
159
|
export * from './lib/XButton';
|
|
159
160
|
export * from './lib/ThemeResolver';
|
|
160
161
|
export * from './lib/Theme';
|