igniteui-webcomponents-inputs 5.4.0-beta.0 → 5.4.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 +688 -626
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/DatePickerView_combined.js +2 -2
- package/esm2015/lib/IconView_combined.js +336 -288
- package/esm2015/lib/InputGroupView_combined.js +216 -209
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/XButtonBridge.js +2 -2
- package/esm2015/lib/XButtonGroupBridge.js +2 -2
- package/esm2015/lib/XComponentBridge.js +1 -1
- package/esm2015/lib/XIconBridge.js +5 -5
- package/esm2015/lib/XInputBridge.js +22 -22
- package/esm2015/lib/XPopupBridge.js +5 -5
- package/esm2015/lib/igc-x-icon-component.js +46 -46
- package/esm2015/lib/igc-x-label-component.js +51 -51
- package/esm5/lib/DatePickerView_combined.js +2 -2
- package/esm5/lib/IconView_combined.js +328 -272
- package/esm5/lib/InputGroupView_combined.js +209 -202
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/XButtonBridge.js +2 -2
- package/esm5/lib/XButtonGroupBridge.js +2 -2
- package/esm5/lib/XComponentBridge.js +1 -1
- package/esm5/lib/XIconBridge.js +5 -5
- package/esm5/lib/XInputBridge.js +22 -22
- package/esm5/lib/XPopupBridge.js +5 -5
- package/esm5/lib/igc-x-icon-component.js +46 -46
- package/esm5/lib/igc-x-label-component.js +51 -51
- package/fesm2015/igniteui-webcomponents-inputs.js +703 -649
- package/fesm5/igniteui-webcomponents-inputs.js +687 -625
- package/lib/IconView_combined.d.ts +94 -84
- package/lib/InputGroupView_combined.d.ts +75 -74
- package/package.json +2 -2
|
@@ -210,11 +210,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
210
210
|
* Gets the actual color to use for the text color.
|
|
211
211
|
*/
|
|
212
212
|
get: function () {
|
|
213
|
-
return brushToString(this.i.
|
|
213
|
+
return brushToString(this.i.c3);
|
|
214
214
|
},
|
|
215
215
|
set: function (v) {
|
|
216
|
-
this.i.
|
|
217
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
216
|
+
this.i.c3 = stringToBrush(v);
|
|
217
|
+
this._a("actualTextColor", brushToString(this.i.c3));
|
|
218
218
|
},
|
|
219
219
|
enumerable: false,
|
|
220
220
|
configurable: true
|
|
@@ -224,11 +224,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
224
224
|
* Gets the actual color to use for the text color.
|
|
225
225
|
*/
|
|
226
226
|
get: function () {
|
|
227
|
-
return brushToString(this.i.
|
|
227
|
+
return brushToString(this.i.c0);
|
|
228
228
|
},
|
|
229
229
|
set: function (v) {
|
|
230
|
-
this.i.
|
|
231
|
-
this._a("actualHighlightTextColor", brushToString(this.i.
|
|
230
|
+
this.i.c0 = stringToBrush(v);
|
|
231
|
+
this._a("actualHighlightTextColor", brushToString(this.i.c0));
|
|
232
232
|
},
|
|
233
233
|
enumerable: false,
|
|
234
234
|
configurable: true
|
|
@@ -238,11 +238,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
238
238
|
* Gets the actual color to use for the text color when highlighted and hovered.
|
|
239
239
|
*/
|
|
240
240
|
get: function () {
|
|
241
|
-
return brushToString(this.i.
|
|
241
|
+
return brushToString(this.i.c1);
|
|
242
242
|
},
|
|
243
243
|
set: function (v) {
|
|
244
|
-
this.i.
|
|
245
|
-
this._a("actualHoverHighlightTextColor", brushToString(this.i.
|
|
244
|
+
this.i.c1 = stringToBrush(v);
|
|
245
|
+
this._a("actualHoverHighlightTextColor", brushToString(this.i.c1));
|
|
246
246
|
},
|
|
247
247
|
enumerable: false,
|
|
248
248
|
configurable: true
|
|
@@ -252,11 +252,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
252
252
|
* Gets the actual hover color to use for the text.
|
|
253
253
|
*/
|
|
254
254
|
get: function () {
|
|
255
|
-
return brushToString(this.i.
|
|
255
|
+
return brushToString(this.i.c2);
|
|
256
256
|
},
|
|
257
257
|
set: function (v) {
|
|
258
|
-
this.i.
|
|
259
|
-
this._a("actualHoverTextColor", brushToString(this.i.
|
|
258
|
+
this.i.c2 = stringToBrush(v);
|
|
259
|
+
this._a("actualHoverTextColor", brushToString(this.i.c2));
|
|
260
260
|
},
|
|
261
261
|
enumerable: false,
|
|
262
262
|
configurable: true
|
|
@@ -266,11 +266,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
266
266
|
* Gets or sets the color to use for the text.
|
|
267
267
|
*/
|
|
268
268
|
get: function () {
|
|
269
|
-
return brushToString(this.i.
|
|
269
|
+
return brushToString(this.i.dj);
|
|
270
270
|
},
|
|
271
271
|
set: function (v) {
|
|
272
|
-
this.i.
|
|
273
|
-
this._a("textColor", brushToString(this.i.
|
|
272
|
+
this.i.dj = stringToBrush(v);
|
|
273
|
+
this._a("textColor", brushToString(this.i.dj));
|
|
274
274
|
},
|
|
275
275
|
enumerable: false,
|
|
276
276
|
configurable: true
|
|
@@ -280,11 +280,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
280
280
|
* Gets or sets the color to use for the text.
|
|
281
281
|
*/
|
|
282
282
|
get: function () {
|
|
283
|
-
return brushToString(this.i.
|
|
283
|
+
return brushToString(this.i.dg);
|
|
284
284
|
},
|
|
285
285
|
set: function (v) {
|
|
286
|
-
this.i.
|
|
287
|
-
this._a("highlightTextColor", brushToString(this.i.
|
|
286
|
+
this.i.dg = stringToBrush(v);
|
|
287
|
+
this._a("highlightTextColor", brushToString(this.i.dg));
|
|
288
288
|
},
|
|
289
289
|
enumerable: false,
|
|
290
290
|
configurable: true
|
|
@@ -294,11 +294,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
294
294
|
* Gets or sets the color to use for the text.
|
|
295
295
|
*/
|
|
296
296
|
get: function () {
|
|
297
|
-
return brushToString(this.i.
|
|
297
|
+
return brushToString(this.i.dh);
|
|
298
298
|
},
|
|
299
299
|
set: function (v) {
|
|
300
|
-
this.i.
|
|
301
|
-
this._a("hoverHighlightTextColor", brushToString(this.i.
|
|
300
|
+
this.i.dh = stringToBrush(v);
|
|
301
|
+
this._a("hoverHighlightTextColor", brushToString(this.i.dh));
|
|
302
302
|
},
|
|
303
303
|
enumerable: false,
|
|
304
304
|
configurable: true
|
|
@@ -327,11 +327,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
327
327
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
328
328
|
*/
|
|
329
329
|
get: function () {
|
|
330
|
-
return brushToString(this.i.
|
|
330
|
+
return brushToString(this.i.di);
|
|
331
331
|
},
|
|
332
332
|
set: function (v) {
|
|
333
|
-
this.i.
|
|
334
|
-
this._a("hoverTextColor", brushToString(this.i.
|
|
333
|
+
this.i.di = stringToBrush(v);
|
|
334
|
+
this._a("hoverTextColor", brushToString(this.i.di));
|
|
335
335
|
},
|
|
336
336
|
enumerable: false,
|
|
337
337
|
configurable: true
|
|
@@ -341,10 +341,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
341
341
|
* Gets or sets the id to use for the checkbox.
|
|
342
342
|
*/
|
|
343
343
|
get: function () {
|
|
344
|
-
return this.i.
|
|
344
|
+
return this.i.bw;
|
|
345
345
|
},
|
|
346
346
|
set: function (v) {
|
|
347
|
-
this.i.
|
|
347
|
+
this.i.bw = v;
|
|
348
348
|
},
|
|
349
349
|
enumerable: false,
|
|
350
350
|
configurable: true
|
|
@@ -354,10 +354,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
354
354
|
* Gets or sets the id to use for the checkbox.
|
|
355
355
|
*/
|
|
356
356
|
get: function () {
|
|
357
|
-
return this.i.
|
|
357
|
+
return this.i.bk;
|
|
358
358
|
},
|
|
359
359
|
set: function (v) {
|
|
360
|
-
this.i.
|
|
360
|
+
this.i.bk = v;
|
|
361
361
|
},
|
|
362
362
|
enumerable: false,
|
|
363
363
|
configurable: true
|
|
@@ -367,10 +367,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
367
367
|
* Gets or sets the id to use for the checkbox.
|
|
368
368
|
*/
|
|
369
369
|
get: function () {
|
|
370
|
-
return this.i.
|
|
370
|
+
return this.i.bn;
|
|
371
371
|
},
|
|
372
372
|
set: function (v) {
|
|
373
|
-
this.i.
|
|
373
|
+
this.i.bn = v;
|
|
374
374
|
},
|
|
375
375
|
enumerable: false,
|
|
376
376
|
configurable: true
|
|
@@ -380,10 +380,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
380
380
|
* Gets or sets the flex-grow setting for the button.
|
|
381
381
|
*/
|
|
382
382
|
get: function () {
|
|
383
|
-
return this.i.
|
|
383
|
+
return this.i.bp;
|
|
384
384
|
},
|
|
385
385
|
set: function (v) {
|
|
386
|
-
this.i.
|
|
386
|
+
this.i.bp = v;
|
|
387
387
|
},
|
|
388
388
|
enumerable: false,
|
|
389
389
|
configurable: true
|
|
@@ -393,10 +393,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
393
393
|
* Gets or sets the id to use for the checkbox.
|
|
394
394
|
*/
|
|
395
395
|
get: function () {
|
|
396
|
-
return this.i.
|
|
396
|
+
return this.i.bc;
|
|
397
397
|
},
|
|
398
398
|
set: function (v) {
|
|
399
|
-
this.i.
|
|
399
|
+
this.i.bc = v;
|
|
400
400
|
},
|
|
401
401
|
enumerable: false,
|
|
402
402
|
configurable: true
|
|
@@ -406,10 +406,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
406
406
|
* Gets or sets the id to use for the checkbox.
|
|
407
407
|
*/
|
|
408
408
|
get: function () {
|
|
409
|
-
return this.i.
|
|
409
|
+
return this.i.be;
|
|
410
410
|
},
|
|
411
411
|
set: function (v) {
|
|
412
|
-
this.i.
|
|
412
|
+
this.i.be = v;
|
|
413
413
|
},
|
|
414
414
|
enumerable: false,
|
|
415
415
|
configurable: true
|
|
@@ -419,11 +419,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
419
419
|
* Gets or sets TabIndex to use for the checkbox.
|
|
420
420
|
*/
|
|
421
421
|
get: function () {
|
|
422
|
-
return this.i.
|
|
422
|
+
return this.i.au;
|
|
423
423
|
},
|
|
424
424
|
set: function (v) {
|
|
425
|
-
this.i.
|
|
426
|
-
this._a("tabIndex", this.i.
|
|
425
|
+
this.i.au = +v;
|
|
426
|
+
this._a("tabIndex", this.i.au);
|
|
427
427
|
},
|
|
428
428
|
enumerable: false,
|
|
429
429
|
configurable: true
|
|
@@ -433,10 +433,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
433
433
|
* Gets or sets the for attribute to use for the label.
|
|
434
434
|
*/
|
|
435
435
|
get: function () {
|
|
436
|
-
return this.i.
|
|
436
|
+
return this.i.br;
|
|
437
437
|
},
|
|
438
438
|
set: function (v) {
|
|
439
|
-
this.i.
|
|
439
|
+
this.i.br = v;
|
|
440
440
|
},
|
|
441
441
|
enumerable: false,
|
|
442
442
|
configurable: true
|
|
@@ -446,10 +446,10 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
446
446
|
* Gets or sets the value of the aria-label attribute.
|
|
447
447
|
*/
|
|
448
448
|
get: function () {
|
|
449
|
-
return this.i.
|
|
449
|
+
return this.i.bg;
|
|
450
450
|
},
|
|
451
451
|
set: function (v) {
|
|
452
|
-
this.i.
|
|
452
|
+
this.i.bg = v;
|
|
453
453
|
},
|
|
454
454
|
enumerable: false,
|
|
455
455
|
configurable: true
|
|
@@ -472,11 +472,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
472
472
|
* Gets or sets whether the label is hovered.
|
|
473
473
|
*/
|
|
474
474
|
get: function () {
|
|
475
|
-
return this.i.
|
|
475
|
+
return this.i.ao;
|
|
476
476
|
},
|
|
477
477
|
set: function (v) {
|
|
478
|
-
this.i.
|
|
479
|
-
this._a("isHover", this.i.
|
|
478
|
+
this.i.ao = ensureBool(v);
|
|
479
|
+
this._a("isHover", this.i.ao);
|
|
480
480
|
},
|
|
481
481
|
enumerable: false,
|
|
482
482
|
configurable: true
|
|
@@ -486,11 +486,11 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
486
486
|
* Gets or sets the value for the label.
|
|
487
487
|
*/
|
|
488
488
|
get: function () {
|
|
489
|
-
return this.i.
|
|
489
|
+
return this.i.as;
|
|
490
490
|
},
|
|
491
491
|
set: function (v) {
|
|
492
|
-
this.i.
|
|
493
|
-
this._a("value", this.i.
|
|
492
|
+
this.i.as = ensureBool(v);
|
|
493
|
+
this._a("value", this.i.as);
|
|
494
494
|
},
|
|
495
495
|
enumerable: false,
|
|
496
496
|
configurable: true
|
|
@@ -520,7 +520,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
520
520
|
|
|
521
521
|
*/
|
|
522
522
|
IgcXLabelComponent.prototype.exportVisualModel = function () {
|
|
523
|
-
var iv = this.i.
|
|
523
|
+
var iv = this.i.aw();
|
|
524
524
|
return (iv);
|
|
525
525
|
};
|
|
526
526
|
/**
|
|
@@ -528,7 +528,7 @@ var IgcXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
528
528
|
|
|
529
529
|
*/
|
|
530
530
|
IgcXLabelComponent.prototype.exportSerializedVisualModel = function () {
|
|
531
|
-
var iv = this.i.
|
|
531
|
+
var iv = this.i.bm();
|
|
532
532
|
return (iv);
|
|
533
533
|
};
|
|
534
534
|
IgcXLabelComponent._observedAttributesIgcXLabelComponent = null;
|