igniteui-angular-inputs 17.3.0 → 18.0.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-angular-inputs.umd.js +1017 -697
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +22 -22
- package/esm2015/lib/CalendarView_combined.js +16 -14
- package/esm2015/lib/CheckboxView_combined.js +73 -67
- package/esm2015/lib/DatePickerView_combined.js +14 -14
- package/esm2015/lib/IconView_combined.js +663 -467
- package/esm2015/lib/IconVisualModelExport.js +13 -11
- package/esm2015/lib/InputGroupView_combined.js +29 -29
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -1
- package/esm2015/lib/XButtonBridge.js +7 -0
- package/esm2015/lib/XIconBridge.js +58 -31
- package/esm2015/lib/XIconButtonBridge.js +1 -1
- package/esm2015/lib/igx-x-icon-component.js +90 -64
- package/esm5/lib/ButtonView_combined.js +22 -22
- package/esm5/lib/CalendarView_combined.js +16 -14
- package/esm5/lib/CheckboxView_combined.js +77 -67
- package/esm5/lib/DatePickerView_combined.js +14 -14
- package/esm5/lib/IconView_combined.js +685 -444
- package/esm5/lib/IconVisualModelExport.js +13 -11
- package/esm5/lib/InputGroupView_combined.js +29 -29
- package/esm5/lib/NativeUIXInputsFactory.js +1 -1
- package/esm5/lib/XButtonBridge.js +7 -0
- package/esm5/lib/XIconBridge.js +58 -31
- package/esm5/lib/XIconButtonBridge.js +1 -1
- package/esm5/lib/igx-x-icon-component.js +98 -64
- package/fesm2015/igniteui-angular-inputs.js +983 -720
- package/fesm5/igniteui-angular-inputs.js +1018 -698
- package/lib/CheckboxView_combined.d.ts +17 -16
- package/lib/IconView_combined.d.ts +150 -134
- package/lib/IconVisualModelExport.d.ts +4 -3
- package/lib/XIconBridge.d.ts +3 -0
- package/lib/igx-x-icon-component.d.ts +12 -1
- package/package.json +5 -5
|
@@ -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.k;
|
|
83
83
|
},
|
|
84
84
|
set: function (v) {
|
|
85
|
-
this.i.
|
|
85
|
+
this.i.k = 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.cw);
|
|
96
96
|
},
|
|
97
97
|
set: function (v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.cw = 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.cx);
|
|
109
109
|
},
|
|
110
110
|
set: function (v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.cx = 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.cy);
|
|
122
122
|
},
|
|
123
123
|
set: function (v) {
|
|
124
|
-
this.i.
|
|
124
|
+
this.i.cy = 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.af;
|
|
135
135
|
},
|
|
136
136
|
set: function (v) {
|
|
137
|
-
this.i.
|
|
137
|
+
this.i.af = +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.dc);
|
|
161
161
|
},
|
|
162
162
|
set: function (v) {
|
|
163
|
-
this.i.
|
|
163
|
+
this.i.dc = 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.al;
|
|
174
174
|
},
|
|
175
175
|
set: function (v) {
|
|
176
|
-
this.i.
|
|
176
|
+
this.i.al = +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.dd);
|
|
187
187
|
},
|
|
188
188
|
set: function (v) {
|
|
189
|
-
this.i.
|
|
189
|
+
this.i.dd = 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.c5);
|
|
200
200
|
},
|
|
201
201
|
set: function (v) {
|
|
202
|
-
this.i.
|
|
202
|
+
this.i.c5 = 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.c6);
|
|
213
213
|
},
|
|
214
214
|
set: function (v) {
|
|
215
|
-
this.i.
|
|
215
|
+
this.i.c6 = 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.aj;
|
|
226
226
|
},
|
|
227
227
|
set: function (v) {
|
|
228
|
-
this.i.
|
|
228
|
+
this.i.aj = +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.c7);
|
|
239
239
|
},
|
|
240
240
|
set: function (v) {
|
|
241
|
-
this.i.
|
|
241
|
+
this.i.c7 = stringToBrush(v);
|
|
242
242
|
},
|
|
243
243
|
enumerable: false,
|
|
244
244
|
configurable: true
|
|
@@ -251,10 +251,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
251
251
|
* class where # is a number from 0 to count - 1.
|
|
252
252
|
*/
|
|
253
253
|
get: function () {
|
|
254
|
-
return fromBrushCollection(this.i.
|
|
254
|
+
return fromBrushCollection(this.i.e);
|
|
255
255
|
},
|
|
256
256
|
set: function (v) {
|
|
257
|
-
this.i.
|
|
257
|
+
this.i.e = toBrushCollection(v);
|
|
258
258
|
},
|
|
259
259
|
enumerable: false,
|
|
260
260
|
configurable: true
|
|
@@ -267,10 +267,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
267
267
|
* class where # is a number from 0 to count - 1.
|
|
268
268
|
*/
|
|
269
269
|
get: function () {
|
|
270
|
-
return fromBrushCollection(this.i.
|
|
270
|
+
return fromBrushCollection(this.i.f);
|
|
271
271
|
},
|
|
272
272
|
set: function (v) {
|
|
273
|
-
this.i.
|
|
273
|
+
this.i.f = toBrushCollection(v);
|
|
274
274
|
},
|
|
275
275
|
enumerable: false,
|
|
276
276
|
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.c8);
|
|
288
288
|
},
|
|
289
289
|
set: function (v) {
|
|
290
|
-
this.i.
|
|
290
|
+
this.i.c8 = 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.c9);
|
|
305
305
|
},
|
|
306
306
|
set: function (v) {
|
|
307
|
-
this.i.
|
|
307
|
+
this.i.c9 = 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.da);
|
|
322
322
|
},
|
|
323
323
|
set: function (v) {
|
|
324
|
-
this.i.
|
|
324
|
+
this.i.da = stringToBrush(v);
|
|
325
325
|
},
|
|
326
326
|
enumerable: false,
|
|
327
327
|
configurable: true
|
|
@@ -335,10 +335,23 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
335
335
|
* class.
|
|
336
336
|
*/
|
|
337
337
|
get: function () {
|
|
338
|
-
return brushToString(this.i.
|
|
338
|
+
return brushToString(this.i.db);
|
|
339
|
+
},
|
|
340
|
+
set: function (v) {
|
|
341
|
+
this.i.db = stringToBrush(v);
|
|
342
|
+
},
|
|
343
|
+
enumerable: false,
|
|
344
|
+
configurable: true
|
|
345
|
+
});
|
|
346
|
+
Object.defineProperty(IgxXIconComponent.prototype, "dataURL", {
|
|
347
|
+
/**
|
|
348
|
+
* Gets or sets data url for the icon to use.
|
|
349
|
+
*/
|
|
350
|
+
get: function () {
|
|
351
|
+
return this.i.a7;
|
|
339
352
|
},
|
|
340
353
|
set: function (v) {
|
|
341
|
-
this.i.
|
|
354
|
+
this.i.a7 = v;
|
|
342
355
|
},
|
|
343
356
|
enumerable: false,
|
|
344
357
|
configurable: true
|
|
@@ -369,20 +382,37 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
369
382
|
enumerable: false,
|
|
370
383
|
configurable: true
|
|
371
384
|
});
|
|
385
|
+
Object.defineProperty(IgxXIconComponent.prototype, "sVGPaths", {
|
|
386
|
+
/**
|
|
387
|
+
* Gets or sets an array of path data for the icon to use.
|
|
388
|
+
*/
|
|
389
|
+
get: function () {
|
|
390
|
+
return this.i.b;
|
|
391
|
+
},
|
|
392
|
+
set: function (v) {
|
|
393
|
+
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
394
|
+
var re = /\s*(?:,|\s|$)\s*/gm;
|
|
395
|
+
v = v.split(re);
|
|
396
|
+
}
|
|
397
|
+
this.i.b = v;
|
|
398
|
+
},
|
|
399
|
+
enumerable: false,
|
|
400
|
+
configurable: true
|
|
401
|
+
});
|
|
372
402
|
Object.defineProperty(IgxXIconComponent.prototype, "textStyle", {
|
|
373
403
|
/**
|
|
374
404
|
* Gets or sets the use for the button.
|
|
375
405
|
*/
|
|
376
406
|
get: function () {
|
|
377
|
-
if (this.i.
|
|
407
|
+
if (this.i.m == null) {
|
|
378
408
|
return null;
|
|
379
409
|
}
|
|
380
|
-
return this.i.
|
|
410
|
+
return this.i.m.fontString;
|
|
381
411
|
},
|
|
382
412
|
set: function (v) {
|
|
383
413
|
var fi = new FontInfo();
|
|
384
414
|
fi.fontString = v;
|
|
385
|
-
this.i.
|
|
415
|
+
this.i.m = fi;
|
|
386
416
|
},
|
|
387
417
|
enumerable: false,
|
|
388
418
|
configurable: true
|
|
@@ -392,10 +422,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
392
422
|
* Gets or sets the id to use for the checkbox.
|
|
393
423
|
*/
|
|
394
424
|
get: function () {
|
|
395
|
-
return this.i.
|
|
425
|
+
return this.i.bh;
|
|
396
426
|
},
|
|
397
427
|
set: function (v) {
|
|
398
|
-
this.i.
|
|
428
|
+
this.i.bh = v;
|
|
399
429
|
},
|
|
400
430
|
enumerable: false,
|
|
401
431
|
configurable: true
|
|
@@ -405,10 +435,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
405
435
|
* Gets or sets TabIndex to use for the checkbox.
|
|
406
436
|
*/
|
|
407
437
|
get: function () {
|
|
408
|
-
return this.i.
|
|
438
|
+
return this.i.as;
|
|
409
439
|
},
|
|
410
440
|
set: function (v) {
|
|
411
|
-
this.i.
|
|
441
|
+
this.i.as = +v;
|
|
412
442
|
},
|
|
413
443
|
enumerable: false,
|
|
414
444
|
configurable: true
|
|
@@ -418,10 +448,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
418
448
|
* Gets or sets the value of the aria-label attribute.
|
|
419
449
|
*/
|
|
420
450
|
get: function () {
|
|
421
|
-
return this.i.
|
|
451
|
+
return this.i.a4;
|
|
422
452
|
},
|
|
423
453
|
set: function (v) {
|
|
424
|
-
this.i.
|
|
454
|
+
this.i.a4 = v;
|
|
425
455
|
},
|
|
426
456
|
enumerable: false,
|
|
427
457
|
configurable: true
|
|
@@ -431,10 +461,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
431
461
|
* Gets or sets whether the icon is hovered.
|
|
432
462
|
*/
|
|
433
463
|
get: function () {
|
|
434
|
-
return this.i.
|
|
464
|
+
return this.i.t;
|
|
435
465
|
},
|
|
436
466
|
set: function (v) {
|
|
437
|
-
this.i.
|
|
467
|
+
this.i.t = ensureBool(v);
|
|
438
468
|
},
|
|
439
469
|
enumerable: false,
|
|
440
470
|
configurable: true
|
|
@@ -454,10 +484,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
454
484
|
});
|
|
455
485
|
Object.defineProperty(IgxXIconComponent.prototype, "opacity", {
|
|
456
486
|
get: function () {
|
|
457
|
-
return this.i.
|
|
487
|
+
return this.i.ak;
|
|
458
488
|
},
|
|
459
489
|
set: function (v) {
|
|
460
|
-
this.i.
|
|
490
|
+
this.i.ak = +v;
|
|
461
491
|
},
|
|
462
492
|
enumerable: false,
|
|
463
493
|
configurable: true
|
|
@@ -467,10 +497,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
467
497
|
* Gets or sets the viewbox left for the svg icon.
|
|
468
498
|
*/
|
|
469
499
|
get: function () {
|
|
470
|
-
return this.i.
|
|
500
|
+
return this.i.an;
|
|
471
501
|
},
|
|
472
502
|
set: function (v) {
|
|
473
|
-
this.i.
|
|
503
|
+
this.i.an = +v;
|
|
474
504
|
},
|
|
475
505
|
enumerable: false,
|
|
476
506
|
configurable: true
|
|
@@ -480,10 +510,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
480
510
|
* Gets or sets the viewbox top for the svg icon.
|
|
481
511
|
*/
|
|
482
512
|
get: function () {
|
|
483
|
-
return this.i.
|
|
513
|
+
return this.i.ao;
|
|
484
514
|
},
|
|
485
515
|
set: function (v) {
|
|
486
|
-
this.i.
|
|
516
|
+
this.i.ao = +v;
|
|
487
517
|
},
|
|
488
518
|
enumerable: false,
|
|
489
519
|
configurable: true
|
|
@@ -493,10 +523,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
493
523
|
* Gets or sets the viewbox width for the svg icon.
|
|
494
524
|
*/
|
|
495
525
|
get: function () {
|
|
496
|
-
return this.i.
|
|
526
|
+
return this.i.ap;
|
|
497
527
|
},
|
|
498
528
|
set: function (v) {
|
|
499
|
-
this.i.
|
|
529
|
+
this.i.ap = +v;
|
|
500
530
|
},
|
|
501
531
|
enumerable: false,
|
|
502
532
|
configurable: true
|
|
@@ -506,10 +536,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
506
536
|
* Gets or sets the viewbox height for the svg icon.
|
|
507
537
|
*/
|
|
508
538
|
get: function () {
|
|
509
|
-
return this.i.
|
|
539
|
+
return this.i.am;
|
|
510
540
|
},
|
|
511
541
|
set: function (v) {
|
|
512
|
-
this.i.
|
|
542
|
+
this.i.am = +v;
|
|
513
543
|
},
|
|
514
544
|
enumerable: false,
|
|
515
545
|
configurable: true
|
|
@@ -519,10 +549,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
519
549
|
* Gets or sets the width of the icon.
|
|
520
550
|
*/
|
|
521
551
|
get: function () {
|
|
522
|
-
return this.i.
|
|
552
|
+
return this.i.aq;
|
|
523
553
|
},
|
|
524
554
|
set: function (v) {
|
|
525
|
-
this.i.
|
|
555
|
+
this.i.aq = +v;
|
|
526
556
|
},
|
|
527
557
|
enumerable: false,
|
|
528
558
|
configurable: true
|
|
@@ -532,10 +562,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
532
562
|
* Gets or sets the height of the icon.
|
|
533
563
|
*/
|
|
534
564
|
get: function () {
|
|
535
|
-
return this.i.
|
|
565
|
+
return this.i.ai;
|
|
536
566
|
},
|
|
537
567
|
set: function (v) {
|
|
538
|
-
this.i.
|
|
568
|
+
this.i.ai = +v;
|
|
539
569
|
},
|
|
540
570
|
enumerable: false,
|
|
541
571
|
configurable: true
|
|
@@ -616,7 +646,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
616
646
|
|
|
617
647
|
*/
|
|
618
648
|
IgxXIconComponent.prototype.exportVisualModel = function () {
|
|
619
|
-
var iv = this.i.
|
|
649
|
+
var iv = this.i.au();
|
|
620
650
|
return (iv);
|
|
621
651
|
};
|
|
622
652
|
/**
|
|
@@ -624,7 +654,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
624
654
|
|
|
625
655
|
*/
|
|
626
656
|
IgxXIconComponent.prototype.exportSerializedVisualModel = function () {
|
|
627
|
-
var iv = this.i.
|
|
657
|
+
var iv = this.i.a9();
|
|
628
658
|
return (iv);
|
|
629
659
|
};
|
|
630
660
|
IgxXIconComponent.prototype._runInZone = function (act) {
|
|
@@ -636,7 +666,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
636
666
|
}
|
|
637
667
|
};
|
|
638
668
|
IgxXIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXIconComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
|
|
639
|
-
IgxXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", svgPath: "svgPath", svg: "svg", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
669
|
+
IgxXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", dataURL: "dataURL", svgPath: "svgPath", svg: "svg", sVGPaths: "sVGPaths", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
640
670
|
return IgxXIconComponent;
|
|
641
671
|
}());
|
|
642
672
|
export { IgxXIconComponent };
|
|
@@ -694,10 +724,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
694
724
|
type: Input
|
|
695
725
|
}], secondaryStrokeColor: [{
|
|
696
726
|
type: Input
|
|
727
|
+
}], dataURL: [{
|
|
728
|
+
type: Input
|
|
697
729
|
}], svgPath: [{
|
|
698
730
|
type: Input
|
|
699
731
|
}], svg: [{
|
|
700
732
|
type: Input
|
|
733
|
+
}], sVGPaths: [{
|
|
734
|
+
type: Input
|
|
701
735
|
}], textStyle: [{
|
|
702
736
|
type: Input
|
|
703
737
|
}], id: [{
|