igniteui-webcomponents-inputs 5.2.0 → 5.2.1-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 +3252 -3096
- package/bundles/igniteui-webcomponents-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 +3 -3
- package/esm2015/lib/igc-x-button-component.js +555 -545
- package/esm2015/lib/igc-x-icon-component.js +89 -89
- 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 +3 -3
- package/esm5/lib/igc-x-button-component.js +559 -545
- package/esm5/lib/igc-x-icon-component.js +89 -89
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +3399 -3252
- package/fesm5/igniteui-webcomponents-inputs.js +3253 -3098
- 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/igc-x-button-component.d.ts +5 -0
- package/package.json +2 -2
- package/public_api.d.ts +1 -0
|
@@ -214,11 +214,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
214
214
|
* Gets or sets the base built in theme to use for the button.
|
|
215
215
|
*/
|
|
216
216
|
get: function () {
|
|
217
|
-
return this.i.
|
|
217
|
+
return this.i.m;
|
|
218
218
|
},
|
|
219
219
|
set: function (v) {
|
|
220
|
-
this.i.
|
|
221
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
220
|
+
this.i.m = ensureEnum(BaseControlTheme_$type, v);
|
|
221
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.m));
|
|
222
222
|
},
|
|
223
223
|
enumerable: false,
|
|
224
224
|
configurable: true
|
|
@@ -228,11 +228,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
228
228
|
* Gets the fill color currently used by the icon.
|
|
229
229
|
*/
|
|
230
230
|
get: function () {
|
|
231
|
-
return brushToString(this.i.
|
|
231
|
+
return brushToString(this.i.c1);
|
|
232
232
|
},
|
|
233
233
|
set: function (v) {
|
|
234
|
-
this.i.
|
|
235
|
-
this._a("actualFill", brushToString(this.i.
|
|
234
|
+
this.i.c1 = stringToBrush(v);
|
|
235
|
+
this._a("actualFill", brushToString(this.i.c1));
|
|
236
236
|
},
|
|
237
237
|
enumerable: false,
|
|
238
238
|
configurable: true
|
|
@@ -242,11 +242,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
242
242
|
* Gets the stroke color currently used by the icon.
|
|
243
243
|
*/
|
|
244
244
|
get: function () {
|
|
245
|
-
return brushToString(this.i.
|
|
245
|
+
return brushToString(this.i.c2);
|
|
246
246
|
},
|
|
247
247
|
set: function (v) {
|
|
248
|
-
this.i.
|
|
249
|
-
this._a("actualStroke", brushToString(this.i.
|
|
248
|
+
this.i.c2 = stringToBrush(v);
|
|
249
|
+
this._a("actualStroke", brushToString(this.i.c2));
|
|
250
250
|
},
|
|
251
251
|
enumerable: false,
|
|
252
252
|
configurable: true
|
|
@@ -256,11 +256,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
256
256
|
* Gets the text color currently used by the icon.
|
|
257
257
|
*/
|
|
258
258
|
get: function () {
|
|
259
|
-
return brushToString(this.i.
|
|
259
|
+
return brushToString(this.i.c3);
|
|
260
260
|
},
|
|
261
261
|
set: function (v) {
|
|
262
|
-
this.i.
|
|
263
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
262
|
+
this.i.c3 = stringToBrush(v);
|
|
263
|
+
this._a("actualTextColor", brushToString(this.i.c3));
|
|
264
264
|
},
|
|
265
265
|
enumerable: false,
|
|
266
266
|
configurable: true
|
|
@@ -270,11 +270,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
270
270
|
* Gets the stroke width currently used by the icon.
|
|
271
271
|
*/
|
|
272
272
|
get: function () {
|
|
273
|
-
return this.i.
|
|
273
|
+
return this.i.ai;
|
|
274
274
|
},
|
|
275
275
|
set: function (v) {
|
|
276
|
-
this.i.
|
|
277
|
-
this._a("actualStrokeWidth", this.i.
|
|
276
|
+
this.i.ai = +v;
|
|
277
|
+
this._a("actualStrokeWidth", this.i.ai);
|
|
278
278
|
},
|
|
279
279
|
enumerable: false,
|
|
280
280
|
configurable: true
|
|
@@ -298,11 +298,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
298
298
|
* Gets or sets the stroke color to use for the icon.
|
|
299
299
|
*/
|
|
300
300
|
get: function () {
|
|
301
|
-
return brushToString(this.i.
|
|
301
|
+
return brushToString(this.i.dh);
|
|
302
302
|
},
|
|
303
303
|
set: function (v) {
|
|
304
|
-
this.i.
|
|
305
|
-
this._a("stroke", brushToString(this.i.
|
|
304
|
+
this.i.dh = stringToBrush(v);
|
|
305
|
+
this._a("stroke", brushToString(this.i.dh));
|
|
306
306
|
},
|
|
307
307
|
enumerable: false,
|
|
308
308
|
configurable: true
|
|
@@ -312,11 +312,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
312
312
|
* Gets or sets the stroke thickness to use for the icon.
|
|
313
313
|
*/
|
|
314
314
|
get: function () {
|
|
315
|
-
return this.i.
|
|
315
|
+
return this.i.ao;
|
|
316
316
|
},
|
|
317
317
|
set: function (v) {
|
|
318
|
-
this.i.
|
|
319
|
-
this._a("strokeWidth", this.i.
|
|
318
|
+
this.i.ao = +v;
|
|
319
|
+
this._a("strokeWidth", this.i.ao);
|
|
320
320
|
},
|
|
321
321
|
enumerable: false,
|
|
322
322
|
configurable: true
|
|
@@ -326,11 +326,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
326
326
|
* Gets or sets the text color to use for the icon.
|
|
327
327
|
*/
|
|
328
328
|
get: function () {
|
|
329
|
-
return brushToString(this.i.
|
|
329
|
+
return brushToString(this.i.di);
|
|
330
330
|
},
|
|
331
331
|
set: function (v) {
|
|
332
|
-
this.i.
|
|
333
|
-
this._a("textColor", brushToString(this.i.
|
|
332
|
+
this.i.di = stringToBrush(v);
|
|
333
|
+
this._a("textColor", brushToString(this.i.di));
|
|
334
334
|
},
|
|
335
335
|
enumerable: false,
|
|
336
336
|
configurable: true
|
|
@@ -340,11 +340,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
340
340
|
* Gets or sets the fill color to use when the icon is hovered.
|
|
341
341
|
*/
|
|
342
342
|
get: function () {
|
|
343
|
-
return brushToString(this.i.
|
|
343
|
+
return brushToString(this.i.da);
|
|
344
344
|
},
|
|
345
345
|
set: function (v) {
|
|
346
|
-
this.i.
|
|
347
|
-
this._a("hoverFill", brushToString(this.i.
|
|
346
|
+
this.i.da = stringToBrush(v);
|
|
347
|
+
this._a("hoverFill", brushToString(this.i.da));
|
|
348
348
|
},
|
|
349
349
|
enumerable: false,
|
|
350
350
|
configurable: true
|
|
@@ -354,11 +354,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
354
354
|
* Gets or sets the stroke color to use when the icon is hovered.
|
|
355
355
|
*/
|
|
356
356
|
get: function () {
|
|
357
|
-
return brushToString(this.i.
|
|
357
|
+
return brushToString(this.i.db);
|
|
358
358
|
},
|
|
359
359
|
set: function (v) {
|
|
360
|
-
this.i.
|
|
361
|
-
this._a("hoverStroke", brushToString(this.i.
|
|
360
|
+
this.i.db = stringToBrush(v);
|
|
361
|
+
this._a("hoverStroke", brushToString(this.i.db));
|
|
362
362
|
},
|
|
363
363
|
enumerable: false,
|
|
364
364
|
configurable: true
|
|
@@ -368,11 +368,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
368
368
|
* Gets or sets the stroke thickness to use when the icon is hovered.
|
|
369
369
|
*/
|
|
370
370
|
get: function () {
|
|
371
|
-
return this.i.
|
|
371
|
+
return this.i.am;
|
|
372
372
|
},
|
|
373
373
|
set: function (v) {
|
|
374
|
-
this.i.
|
|
375
|
-
this._a("hoverStrokeThickness", this.i.
|
|
374
|
+
this.i.am = +v;
|
|
375
|
+
this._a("hoverStrokeThickness", this.i.am);
|
|
376
376
|
},
|
|
377
377
|
enumerable: false,
|
|
378
378
|
configurable: true
|
|
@@ -382,11 +382,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
382
382
|
* Gets or sets the text color to use when the icon is hovered.
|
|
383
383
|
*/
|
|
384
384
|
get: function () {
|
|
385
|
-
return brushToString(this.i.
|
|
385
|
+
return brushToString(this.i.dc);
|
|
386
386
|
},
|
|
387
387
|
set: function (v) {
|
|
388
|
-
this.i.
|
|
389
|
-
this._a("hoverTextColor", brushToString(this.i.
|
|
388
|
+
this.i.dc = stringToBrush(v);
|
|
389
|
+
this._a("hoverTextColor", brushToString(this.i.dc));
|
|
390
390
|
},
|
|
391
391
|
enumerable: false,
|
|
392
392
|
configurable: true
|
|
@@ -434,11 +434,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
434
434
|
* class.
|
|
435
435
|
*/
|
|
436
436
|
get: function () {
|
|
437
|
-
return brushToString(this.i.
|
|
437
|
+
return brushToString(this.i.dd);
|
|
438
438
|
},
|
|
439
439
|
set: function (v) {
|
|
440
|
-
this.i.
|
|
441
|
-
this._a("primaryFillColor", brushToString(this.i.
|
|
440
|
+
this.i.dd = stringToBrush(v);
|
|
441
|
+
this._a("primaryFillColor", brushToString(this.i.dd));
|
|
442
442
|
},
|
|
443
443
|
enumerable: false,
|
|
444
444
|
configurable: true
|
|
@@ -452,11 +452,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
452
452
|
* class.
|
|
453
453
|
*/
|
|
454
454
|
get: function () {
|
|
455
|
-
return brushToString(this.i.
|
|
455
|
+
return brushToString(this.i.de);
|
|
456
456
|
},
|
|
457
457
|
set: function (v) {
|
|
458
|
-
this.i.
|
|
459
|
-
this._a("primaryStrokeColor", brushToString(this.i.
|
|
458
|
+
this.i.de = stringToBrush(v);
|
|
459
|
+
this._a("primaryStrokeColor", brushToString(this.i.de));
|
|
460
460
|
},
|
|
461
461
|
enumerable: false,
|
|
462
462
|
configurable: true
|
|
@@ -470,11 +470,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
470
470
|
* class.
|
|
471
471
|
*/
|
|
472
472
|
get: function () {
|
|
473
|
-
return brushToString(this.i.
|
|
473
|
+
return brushToString(this.i.df);
|
|
474
474
|
},
|
|
475
475
|
set: function (v) {
|
|
476
|
-
this.i.
|
|
477
|
-
this._a("secondaryFillColor", brushToString(this.i.
|
|
476
|
+
this.i.df = stringToBrush(v);
|
|
477
|
+
this._a("secondaryFillColor", brushToString(this.i.df));
|
|
478
478
|
},
|
|
479
479
|
enumerable: false,
|
|
480
480
|
configurable: true
|
|
@@ -488,11 +488,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
488
488
|
* class.
|
|
489
489
|
*/
|
|
490
490
|
get: function () {
|
|
491
|
-
return brushToString(this.i.
|
|
491
|
+
return brushToString(this.i.dg);
|
|
492
492
|
},
|
|
493
493
|
set: function (v) {
|
|
494
|
-
this.i.
|
|
495
|
-
this._a("secondaryStrokeColor", brushToString(this.i.
|
|
494
|
+
this.i.dg = stringToBrush(v);
|
|
495
|
+
this._a("secondaryStrokeColor", brushToString(this.i.dg));
|
|
496
496
|
},
|
|
497
497
|
enumerable: false,
|
|
498
498
|
configurable: true
|
|
@@ -502,10 +502,10 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
502
502
|
* Gets or sets the image source for the icon. Used if none of the other icon types are not used.
|
|
503
503
|
*/
|
|
504
504
|
get: function () {
|
|
505
|
-
return this.i.
|
|
505
|
+
return this.i.az;
|
|
506
506
|
},
|
|
507
507
|
set: function (v) {
|
|
508
|
-
this.i.
|
|
508
|
+
this.i.az = v;
|
|
509
509
|
},
|
|
510
510
|
enumerable: false,
|
|
511
511
|
configurable: true
|
|
@@ -515,10 +515,10 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
515
515
|
* Gets or sets data url for the icon to use.
|
|
516
516
|
*/
|
|
517
517
|
get: function () {
|
|
518
|
-
return this.i.
|
|
518
|
+
return this.i.bc;
|
|
519
519
|
},
|
|
520
520
|
set: function (v) {
|
|
521
|
-
this.i.
|
|
521
|
+
this.i.bc = v;
|
|
522
522
|
},
|
|
523
523
|
enumerable: false,
|
|
524
524
|
configurable: true
|
|
@@ -571,16 +571,16 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
571
571
|
* Gets or sets the use for the button.
|
|
572
572
|
*/
|
|
573
573
|
get: function () {
|
|
574
|
-
if (this.i.
|
|
574
|
+
if (this.i.o == null) {
|
|
575
575
|
return null;
|
|
576
576
|
}
|
|
577
|
-
return this.i.
|
|
577
|
+
return this.i.o.fontString;
|
|
578
578
|
},
|
|
579
579
|
set: function (v) {
|
|
580
580
|
var fi = new FontInfo();
|
|
581
581
|
fi.fontString = v;
|
|
582
|
-
this.i.
|
|
583
|
-
this._a("textStyle", this.i.
|
|
582
|
+
this.i.o = fi;
|
|
583
|
+
this._a("textStyle", this.i.o != null ? this.i.o.fontString : "");
|
|
584
584
|
},
|
|
585
585
|
enumerable: false,
|
|
586
586
|
configurable: true
|
|
@@ -590,10 +590,10 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
590
590
|
* Gets or sets the id to use for the checkbox.
|
|
591
591
|
*/
|
|
592
592
|
get: function () {
|
|
593
|
-
return this.i.
|
|
593
|
+
return this.i.bm;
|
|
594
594
|
},
|
|
595
595
|
set: function (v) {
|
|
596
|
-
this.i.
|
|
596
|
+
this.i.bm = v;
|
|
597
597
|
},
|
|
598
598
|
enumerable: false,
|
|
599
599
|
configurable: true
|
|
@@ -603,11 +603,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
603
603
|
* Gets or sets TabIndex to use for the checkbox.
|
|
604
604
|
*/
|
|
605
605
|
get: function () {
|
|
606
|
-
return this.i.
|
|
606
|
+
return this.i.av;
|
|
607
607
|
},
|
|
608
608
|
set: function (v) {
|
|
609
|
-
this.i.
|
|
610
|
-
this._a("tabIndex", this.i.
|
|
609
|
+
this.i.av = +v;
|
|
610
|
+
this._a("tabIndex", this.i.av);
|
|
611
611
|
},
|
|
612
612
|
enumerable: false,
|
|
613
613
|
configurable: true
|
|
@@ -617,10 +617,10 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
617
617
|
* Gets or sets the value of the aria-label attribute.
|
|
618
618
|
*/
|
|
619
619
|
get: function () {
|
|
620
|
-
return this.i.
|
|
620
|
+
return this.i.a9;
|
|
621
621
|
},
|
|
622
622
|
set: function (v) {
|
|
623
|
-
this.i.
|
|
623
|
+
this.i.a9 = v;
|
|
624
624
|
},
|
|
625
625
|
enumerable: false,
|
|
626
626
|
configurable: true
|
|
@@ -630,11 +630,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
630
630
|
* Gets or sets whether the icon is hovered.
|
|
631
631
|
*/
|
|
632
632
|
get: function () {
|
|
633
|
-
return this.i.
|
|
633
|
+
return this.i.v;
|
|
634
634
|
},
|
|
635
635
|
set: function (v) {
|
|
636
|
-
this.i.
|
|
637
|
-
this._a("isHover", this.i.
|
|
636
|
+
this.i.v = ensureBool(v);
|
|
637
|
+
this._a("isHover", this.i.v);
|
|
638
638
|
},
|
|
639
639
|
enumerable: false,
|
|
640
640
|
configurable: true
|
|
@@ -655,11 +655,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
655
655
|
});
|
|
656
656
|
Object.defineProperty(IgcXIconComponent.prototype, "opacity", {
|
|
657
657
|
get: function () {
|
|
658
|
-
return this.i.
|
|
658
|
+
return this.i.an;
|
|
659
659
|
},
|
|
660
660
|
set: function (v) {
|
|
661
|
-
this.i.
|
|
662
|
-
this._a("opacity", this.i.
|
|
661
|
+
this.i.an = +v;
|
|
662
|
+
this._a("opacity", this.i.an);
|
|
663
663
|
},
|
|
664
664
|
enumerable: false,
|
|
665
665
|
configurable: true
|
|
@@ -669,11 +669,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
669
669
|
* Gets or sets the viewbox left for the svg icon.
|
|
670
670
|
*/
|
|
671
671
|
get: function () {
|
|
672
|
-
return this.i.
|
|
672
|
+
return this.i.aq;
|
|
673
673
|
},
|
|
674
674
|
set: function (v) {
|
|
675
|
-
this.i.
|
|
676
|
-
this._a("viewBoxLeft", this.i.
|
|
675
|
+
this.i.aq = +v;
|
|
676
|
+
this._a("viewBoxLeft", this.i.aq);
|
|
677
677
|
},
|
|
678
678
|
enumerable: false,
|
|
679
679
|
configurable: true
|
|
@@ -683,11 +683,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
683
683
|
* Gets or sets the viewbox top for the svg icon.
|
|
684
684
|
*/
|
|
685
685
|
get: function () {
|
|
686
|
-
return this.i.
|
|
686
|
+
return this.i.ar;
|
|
687
687
|
},
|
|
688
688
|
set: function (v) {
|
|
689
|
-
this.i.
|
|
690
|
-
this._a("viewBoxTop", this.i.
|
|
689
|
+
this.i.ar = +v;
|
|
690
|
+
this._a("viewBoxTop", this.i.ar);
|
|
691
691
|
},
|
|
692
692
|
enumerable: false,
|
|
693
693
|
configurable: true
|
|
@@ -697,11 +697,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
697
697
|
* Gets or sets the viewbox width for the svg icon.
|
|
698
698
|
*/
|
|
699
699
|
get: function () {
|
|
700
|
-
return this.i.
|
|
700
|
+
return this.i.as;
|
|
701
701
|
},
|
|
702
702
|
set: function (v) {
|
|
703
|
-
this.i.
|
|
704
|
-
this._a("viewBoxWidth", this.i.
|
|
703
|
+
this.i.as = +v;
|
|
704
|
+
this._a("viewBoxWidth", this.i.as);
|
|
705
705
|
},
|
|
706
706
|
enumerable: false,
|
|
707
707
|
configurable: true
|
|
@@ -711,11 +711,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
711
711
|
* Gets or sets the viewbox height for the svg icon.
|
|
712
712
|
*/
|
|
713
713
|
get: function () {
|
|
714
|
-
return this.i.
|
|
714
|
+
return this.i.ap;
|
|
715
715
|
},
|
|
716
716
|
set: function (v) {
|
|
717
|
-
this.i.
|
|
718
|
-
this._a("viewBoxHeight", this.i.
|
|
717
|
+
this.i.ap = +v;
|
|
718
|
+
this._a("viewBoxHeight", this.i.ap);
|
|
719
719
|
},
|
|
720
720
|
enumerable: false,
|
|
721
721
|
configurable: true
|
|
@@ -725,11 +725,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
725
725
|
* Gets or sets the width of the icon.
|
|
726
726
|
*/
|
|
727
727
|
get: function () {
|
|
728
|
-
return this.i.
|
|
728
|
+
return this.i.at;
|
|
729
729
|
},
|
|
730
730
|
set: function (v) {
|
|
731
|
-
this.i.
|
|
732
|
-
this._a("width", this.i.
|
|
731
|
+
this.i.at = +v;
|
|
732
|
+
this._a("width", this.i.at);
|
|
733
733
|
},
|
|
734
734
|
enumerable: false,
|
|
735
735
|
configurable: true
|
|
@@ -739,11 +739,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
739
739
|
* Gets or sets the height of the icon.
|
|
740
740
|
*/
|
|
741
741
|
get: function () {
|
|
742
|
-
return this.i.
|
|
742
|
+
return this.i.al;
|
|
743
743
|
},
|
|
744
744
|
set: function (v) {
|
|
745
|
-
this.i.
|
|
746
|
-
this._a("height", this.i.
|
|
745
|
+
this.i.al = +v;
|
|
746
|
+
this._a("height", this.i.al);
|
|
747
747
|
},
|
|
748
748
|
enumerable: false,
|
|
749
749
|
configurable: true
|
|
@@ -824,7 +824,7 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
824
824
|
|
|
825
825
|
*/
|
|
826
826
|
IgcXIconComponent.prototype.exportVisualModel = function () {
|
|
827
|
-
var iv = this.i.
|
|
827
|
+
var iv = this.i.ay();
|
|
828
828
|
return (iv);
|
|
829
829
|
};
|
|
830
830
|
/**
|
|
@@ -832,7 +832,7 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
832
832
|
|
|
833
833
|
*/
|
|
834
834
|
IgcXIconComponent.prototype.exportSerializedVisualModel = function () {
|
|
835
|
-
var iv = this.i.
|
|
835
|
+
var iv = this.i.be();
|
|
836
836
|
return (iv);
|
|
837
837
|
};
|
|
838
838
|
IgcXIconComponent._observedAttributesIgcXIconComponent = null;
|
package/esm5/public_api.js
CHANGED
|
@@ -141,6 +141,7 @@ export * from './lib/igc-input-change-event-args';
|
|
|
141
141
|
export * from './lib/InputShiftType';
|
|
142
142
|
export * from './lib/XIcon';
|
|
143
143
|
export * from './lib/IconClickedEventArgs';
|
|
144
|
+
export * from './lib/IconViewType';
|
|
144
145
|
export * from './lib/XButton';
|
|
145
146
|
export * from './lib/ThemeResolver';
|
|
146
147
|
export * from './lib/Theme';
|