igniteui-angular-inputs 19.0.0 → 19.1.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-angular-inputs.umd.js +3805 -3574
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +74 -74
- package/esm2015/lib/ButtonView_combined.js +1890 -1834
- package/esm2015/lib/CalendarView_combined.js +322 -308
- package/esm2015/lib/CheckboxView_combined.js +25 -25
- package/esm2015/lib/DatePickerView_combined.js +6 -6
- package/esm2015/lib/IconViewType.js +11 -0
- package/esm2015/lib/IconView_combined.js +529 -451
- package/esm2015/lib/InputGroupView_combined.js +433 -404
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +43 -43
- package/esm2015/lib/RippleView_combined.js +2 -2
- 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 +22 -22
- package/esm2015/lib/XPopupBridge.js +15 -5
- package/esm2015/lib/igx-x-button-component.js +396 -385
- package/esm2015/lib/igx-x-icon-component.js +63 -63
- package/esm2015/lib/igx-x-label-component.js +40 -40
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/ButtonGroupView_combined.js +74 -74
- package/esm5/lib/ButtonView_combined.js +1756 -1696
- package/esm5/lib/CalendarView_combined.js +322 -308
- package/esm5/lib/CheckboxView_combined.js +25 -25
- package/esm5/lib/DatePickerView_combined.js +6 -6
- package/esm5/lib/IconViewType.js +11 -0
- package/esm5/lib/IconView_combined.js +515 -429
- package/esm5/lib/InputGroupView_combined.js +426 -397
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/NativeUIXInputsFactory_combined.js +43 -43
- package/esm5/lib/RippleView_combined.js +2 -2
- 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 +22 -22
- package/esm5/lib/XPopupBridge.js +15 -5
- package/esm5/lib/igx-x-button-component.js +400 -385
- package/esm5/lib/igx-x-icon-component.js +63 -63
- package/esm5/lib/igx-x-label-component.js +40 -40
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-angular-inputs.js +3962 -3748
- package/fesm5/igniteui-angular-inputs.js +3806 -3576
- 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 +139 -125
- package/lib/InputGroupView_combined.d.ts +103 -100
- package/lib/XPopupBridge.d.ts +1 -0
- package/lib/igx-x-button-component.d.ts +7 -1
- package/package.json +2 -2
- 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.c8);
|
|
96
96
|
},
|
|
97
97
|
set: function (v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.c8 = 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.c9);
|
|
109
109
|
},
|
|
110
110
|
set: function (v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.c9 = 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.da);
|
|
122
122
|
},
|
|
123
123
|
set: function (v) {
|
|
124
|
-
this.i.
|
|
124
|
+
this.i.da = 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.dp);
|
|
161
161
|
},
|
|
162
162
|
set: function (v) {
|
|
163
|
-
this.i.
|
|
163
|
+
this.i.dp = 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.dq);
|
|
187
187
|
},
|
|
188
188
|
set: function (v) {
|
|
189
|
-
this.i.
|
|
189
|
+
this.i.dq = 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.dh);
|
|
200
200
|
},
|
|
201
201
|
set: function (v) {
|
|
202
|
-
this.i.
|
|
202
|
+
this.i.dh = 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.di);
|
|
213
213
|
},
|
|
214
214
|
set: function (v) {
|
|
215
|
-
this.i.
|
|
215
|
+
this.i.di = 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.dj);
|
|
239
239
|
},
|
|
240
240
|
set: function (v) {
|
|
241
|
-
this.i.
|
|
241
|
+
this.i.dj = 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.dk);
|
|
288
288
|
},
|
|
289
289
|
set: function (v) {
|
|
290
|
-
this.i.
|
|
290
|
+
this.i.dk = 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.dl);
|
|
305
305
|
},
|
|
306
306
|
set: function (v) {
|
|
307
|
-
this.i.
|
|
307
|
+
this.i.dl = 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.dm);
|
|
322
322
|
},
|
|
323
323
|
set: function (v) {
|
|
324
|
-
this.i.
|
|
324
|
+
this.i.dm = 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.dn);
|
|
339
339
|
},
|
|
340
340
|
set: function (v) {
|
|
341
|
-
this.i.
|
|
341
|
+
this.i.dn = 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.a1;
|
|
352
352
|
},
|
|
353
353
|
set: function (v) {
|
|
354
|
-
this.i.
|
|
354
|
+
this.i.a1 = 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.bg;
|
|
365
365
|
},
|
|
366
366
|
set: function (v) {
|
|
367
|
-
this.i.
|
|
367
|
+
this.i.bg = 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.bq;
|
|
439
439
|
},
|
|
440
440
|
set: function (v) {
|
|
441
|
-
this.i.
|
|
441
|
+
this.i.bq = 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.bb;
|
|
465
465
|
},
|
|
466
466
|
set: function (v) {
|
|
467
|
-
this.i.
|
|
467
|
+
this.i.bb = 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.a0();
|
|
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.bi();
|
|
671
671
|
return (iv);
|
|
672
672
|
};
|
|
673
673
|
IgxXIconComponent.prototype._runInZone = function (act) {
|
|
@@ -121,10 +121,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
121
121
|
* Gets the actual color to use for the text color.
|
|
122
122
|
*/
|
|
123
123
|
get: function () {
|
|
124
|
-
return brushToString(this.i.
|
|
124
|
+
return brushToString(this.i.c3);
|
|
125
125
|
},
|
|
126
126
|
set: function (v) {
|
|
127
|
-
this.i.
|
|
127
|
+
this.i.c3 = stringToBrush(v);
|
|
128
128
|
},
|
|
129
129
|
enumerable: false,
|
|
130
130
|
configurable: true
|
|
@@ -134,10 +134,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
134
134
|
* Gets the actual color to use for the text color.
|
|
135
135
|
*/
|
|
136
136
|
get: function () {
|
|
137
|
-
return brushToString(this.i.
|
|
137
|
+
return brushToString(this.i.c0);
|
|
138
138
|
},
|
|
139
139
|
set: function (v) {
|
|
140
|
-
this.i.
|
|
140
|
+
this.i.c0 = stringToBrush(v);
|
|
141
141
|
},
|
|
142
142
|
enumerable: false,
|
|
143
143
|
configurable: true
|
|
@@ -147,10 +147,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
147
147
|
* Gets the actual color to use for the text color when highlighted and hovered.
|
|
148
148
|
*/
|
|
149
149
|
get: function () {
|
|
150
|
-
return brushToString(this.i.
|
|
150
|
+
return brushToString(this.i.c1);
|
|
151
151
|
},
|
|
152
152
|
set: function (v) {
|
|
153
|
-
this.i.
|
|
153
|
+
this.i.c1 = stringToBrush(v);
|
|
154
154
|
},
|
|
155
155
|
enumerable: false,
|
|
156
156
|
configurable: true
|
|
@@ -160,10 +160,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
160
160
|
* Gets the actual hover color to use for the text.
|
|
161
161
|
*/
|
|
162
162
|
get: function () {
|
|
163
|
-
return brushToString(this.i.
|
|
163
|
+
return brushToString(this.i.c2);
|
|
164
164
|
},
|
|
165
165
|
set: function (v) {
|
|
166
|
-
this.i.
|
|
166
|
+
this.i.c2 = stringToBrush(v);
|
|
167
167
|
},
|
|
168
168
|
enumerable: false,
|
|
169
169
|
configurable: true
|
|
@@ -173,10 +173,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
173
173
|
* Gets or sets the color to use for the text.
|
|
174
174
|
*/
|
|
175
175
|
get: function () {
|
|
176
|
-
return brushToString(this.i.
|
|
176
|
+
return brushToString(this.i.dj);
|
|
177
177
|
},
|
|
178
178
|
set: function (v) {
|
|
179
|
-
this.i.
|
|
179
|
+
this.i.dj = stringToBrush(v);
|
|
180
180
|
},
|
|
181
181
|
enumerable: false,
|
|
182
182
|
configurable: true
|
|
@@ -186,10 +186,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
186
186
|
* Gets or sets the color to use for the text.
|
|
187
187
|
*/
|
|
188
188
|
get: function () {
|
|
189
|
-
return brushToString(this.i.
|
|
189
|
+
return brushToString(this.i.dg);
|
|
190
190
|
},
|
|
191
191
|
set: function (v) {
|
|
192
|
-
this.i.
|
|
192
|
+
this.i.dg = stringToBrush(v);
|
|
193
193
|
},
|
|
194
194
|
enumerable: false,
|
|
195
195
|
configurable: true
|
|
@@ -199,10 +199,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
199
199
|
* Gets or sets the color to use for the text.
|
|
200
200
|
*/
|
|
201
201
|
get: function () {
|
|
202
|
-
return brushToString(this.i.
|
|
202
|
+
return brushToString(this.i.dh);
|
|
203
203
|
},
|
|
204
204
|
set: function (v) {
|
|
205
|
-
this.i.
|
|
205
|
+
this.i.dh = stringToBrush(v);
|
|
206
206
|
},
|
|
207
207
|
enumerable: false,
|
|
208
208
|
configurable: true
|
|
@@ -230,10 +230,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
230
230
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
231
231
|
*/
|
|
232
232
|
get: function () {
|
|
233
|
-
return brushToString(this.i.
|
|
233
|
+
return brushToString(this.i.di);
|
|
234
234
|
},
|
|
235
235
|
set: function (v) {
|
|
236
|
-
this.i.
|
|
236
|
+
this.i.di = stringToBrush(v);
|
|
237
237
|
},
|
|
238
238
|
enumerable: false,
|
|
239
239
|
configurable: true
|
|
@@ -243,10 +243,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
243
243
|
* Gets or sets the id to use for the checkbox.
|
|
244
244
|
*/
|
|
245
245
|
get: function () {
|
|
246
|
-
return this.i.
|
|
246
|
+
return this.i.bw;
|
|
247
247
|
},
|
|
248
248
|
set: function (v) {
|
|
249
|
-
this.i.
|
|
249
|
+
this.i.bw = v;
|
|
250
250
|
},
|
|
251
251
|
enumerable: false,
|
|
252
252
|
configurable: true
|
|
@@ -256,10 +256,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
256
256
|
* Gets or sets the id to use for the checkbox.
|
|
257
257
|
*/
|
|
258
258
|
get: function () {
|
|
259
|
-
return this.i.
|
|
259
|
+
return this.i.bk;
|
|
260
260
|
},
|
|
261
261
|
set: function (v) {
|
|
262
|
-
this.i.
|
|
262
|
+
this.i.bk = v;
|
|
263
263
|
},
|
|
264
264
|
enumerable: false,
|
|
265
265
|
configurable: true
|
|
@@ -269,10 +269,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
269
269
|
* Gets or sets the id to use for the checkbox.
|
|
270
270
|
*/
|
|
271
271
|
get: function () {
|
|
272
|
-
return this.i.
|
|
272
|
+
return this.i.bn;
|
|
273
273
|
},
|
|
274
274
|
set: function (v) {
|
|
275
|
-
this.i.
|
|
275
|
+
this.i.bn = v;
|
|
276
276
|
},
|
|
277
277
|
enumerable: false,
|
|
278
278
|
configurable: true
|
|
@@ -282,10 +282,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
282
282
|
* Gets or sets the flex-grow setting for the button.
|
|
283
283
|
*/
|
|
284
284
|
get: function () {
|
|
285
|
-
return this.i.
|
|
285
|
+
return this.i.bp;
|
|
286
286
|
},
|
|
287
287
|
set: function (v) {
|
|
288
|
-
this.i.
|
|
288
|
+
this.i.bp = v;
|
|
289
289
|
},
|
|
290
290
|
enumerable: false,
|
|
291
291
|
configurable: true
|
|
@@ -295,10 +295,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
295
295
|
* Gets or sets the id to use for the checkbox.
|
|
296
296
|
*/
|
|
297
297
|
get: function () {
|
|
298
|
-
return this.i.
|
|
298
|
+
return this.i.bc;
|
|
299
299
|
},
|
|
300
300
|
set: function (v) {
|
|
301
|
-
this.i.
|
|
301
|
+
this.i.bc = v;
|
|
302
302
|
},
|
|
303
303
|
enumerable: false,
|
|
304
304
|
configurable: true
|
|
@@ -308,10 +308,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
308
308
|
* Gets or sets the id to use for the checkbox.
|
|
309
309
|
*/
|
|
310
310
|
get: function () {
|
|
311
|
-
return this.i.
|
|
311
|
+
return this.i.be;
|
|
312
312
|
},
|
|
313
313
|
set: function (v) {
|
|
314
|
-
this.i.
|
|
314
|
+
this.i.be = v;
|
|
315
315
|
},
|
|
316
316
|
enumerable: false,
|
|
317
317
|
configurable: true
|
|
@@ -321,10 +321,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
321
321
|
* Gets or sets TabIndex to use for the checkbox.
|
|
322
322
|
*/
|
|
323
323
|
get: function () {
|
|
324
|
-
return this.i.
|
|
324
|
+
return this.i.au;
|
|
325
325
|
},
|
|
326
326
|
set: function (v) {
|
|
327
|
-
this.i.
|
|
327
|
+
this.i.au = +v;
|
|
328
328
|
},
|
|
329
329
|
enumerable: false,
|
|
330
330
|
configurable: true
|
|
@@ -334,10 +334,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
334
334
|
* Gets or sets the for attribute to use for the label.
|
|
335
335
|
*/
|
|
336
336
|
get: function () {
|
|
337
|
-
return this.i.
|
|
337
|
+
return this.i.br;
|
|
338
338
|
},
|
|
339
339
|
set: function (v) {
|
|
340
|
-
this.i.
|
|
340
|
+
this.i.br = v;
|
|
341
341
|
},
|
|
342
342
|
enumerable: false,
|
|
343
343
|
configurable: true
|
|
@@ -347,10 +347,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
347
347
|
* Gets or sets the value of the aria-label attribute.
|
|
348
348
|
*/
|
|
349
349
|
get: function () {
|
|
350
|
-
return this.i.
|
|
350
|
+
return this.i.bg;
|
|
351
351
|
},
|
|
352
352
|
set: function (v) {
|
|
353
|
-
this.i.
|
|
353
|
+
this.i.bg = v;
|
|
354
354
|
},
|
|
355
355
|
enumerable: false,
|
|
356
356
|
configurable: true
|
|
@@ -373,10 +373,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
373
373
|
* Gets or sets whether the label is hovered.
|
|
374
374
|
*/
|
|
375
375
|
get: function () {
|
|
376
|
-
return this.i.
|
|
376
|
+
return this.i.ao;
|
|
377
377
|
},
|
|
378
378
|
set: function (v) {
|
|
379
|
-
this.i.
|
|
379
|
+
this.i.ao = ensureBool(v);
|
|
380
380
|
},
|
|
381
381
|
enumerable: false,
|
|
382
382
|
configurable: true
|
|
@@ -386,10 +386,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
386
386
|
* Gets or sets the value for the label.
|
|
387
387
|
*/
|
|
388
388
|
get: function () {
|
|
389
|
-
return this.i.
|
|
389
|
+
return this.i.as;
|
|
390
390
|
},
|
|
391
391
|
set: function (v) {
|
|
392
|
-
this.i.
|
|
392
|
+
this.i.as = ensureBool(v);
|
|
393
393
|
},
|
|
394
394
|
enumerable: false,
|
|
395
395
|
configurable: true
|
|
@@ -418,7 +418,7 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
418
418
|
|
|
419
419
|
*/
|
|
420
420
|
IgxXLabelComponent.prototype.exportVisualModel = function () {
|
|
421
|
-
var iv = this.i.
|
|
421
|
+
var iv = this.i.aw();
|
|
422
422
|
return (iv);
|
|
423
423
|
};
|
|
424
424
|
/**
|
|
@@ -426,7 +426,7 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
426
426
|
|
|
427
427
|
*/
|
|
428
428
|
IgxXLabelComponent.prototype.exportSerializedVisualModel = function () {
|
|
429
|
-
var iv = this.i.
|
|
429
|
+
var iv = this.i.bm();
|
|
430
430
|
return (iv);
|
|
431
431
|
};
|
|
432
432
|
IgxXLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXLabelComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
|
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';
|