igniteui-webcomponents-grids 4.7.2-beta.1 → 4.7.2-beta.2
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-grids.umd.js +940 -828
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +720 -662
- package/esm2015/lib/PropertyEditorView_combined.js +5 -5
- package/esm2015/lib/igc-multi-column-combo-box-component.js +244 -214
- package/esm5/lib/MultiColumnComboBoxView_combined.js +680 -610
- package/esm5/lib/PropertyEditorView_combined.js +5 -5
- package/esm5/lib/igc-multi-column-combo-box-component.js +256 -214
- package/fesm2015/igniteui-webcomponents-grids.js +968 -880
- package/fesm5/igniteui-webcomponents-grids.js +940 -828
- package/grids/combined.js +23 -7
- package/grids/lib/igc-column-component.d.ts +1 -3
- package/grids/lib/igc-position-settings.d.ts +2 -2
- package/grids/lib/igc-row-selector-template-details.d.ts +3 -1
- package/lib/MultiColumnComboBoxView_combined.d.ts +226 -215
- package/lib/igc-multi-column-combo-box-component.d.ts +15 -0
- package/package.json +4 -4
|
@@ -236,11 +236,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
236
236
|
* Gets or sets the ShowClearButton property to detirmine if the clear button is shown
|
|
237
237
|
*/
|
|
238
238
|
get: function () {
|
|
239
|
-
return this.i.
|
|
239
|
+
return this.i.bq;
|
|
240
240
|
},
|
|
241
241
|
set: function (v) {
|
|
242
|
-
this.i.
|
|
243
|
-
this._a("showClearButton", this.i.
|
|
242
|
+
this.i.bq = ensureBool(v);
|
|
243
|
+
this._a("showClearButton", this.i.bq);
|
|
244
244
|
},
|
|
245
245
|
enumerable: false,
|
|
246
246
|
configurable: true
|
|
@@ -267,11 +267,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
267
267
|
* Gets or sets the background color to use for the input group.
|
|
268
268
|
*/
|
|
269
269
|
get: function () {
|
|
270
|
-
return brushToString(this.i.
|
|
270
|
+
return brushToString(this.i.hw);
|
|
271
271
|
},
|
|
272
272
|
set: function (v) {
|
|
273
|
-
this.i.
|
|
274
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
273
|
+
this.i.hw = stringToBrush(v);
|
|
274
|
+
this._a("backgroundColor", brushToString(this.i.hw));
|
|
275
275
|
},
|
|
276
276
|
enumerable: false,
|
|
277
277
|
configurable: true
|
|
@@ -281,11 +281,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
281
281
|
* Gets the actual opacity to use for the underline ripple element.
|
|
282
282
|
*/
|
|
283
283
|
get: function () {
|
|
284
|
-
return brushToString(this.i.
|
|
284
|
+
return brushToString(this.i.hl);
|
|
285
285
|
},
|
|
286
286
|
set: function (v) {
|
|
287
|
-
this.i.
|
|
288
|
-
this._a("actualBackgroundColor", brushToString(this.i.
|
|
287
|
+
this.i.hl = stringToBrush(v);
|
|
288
|
+
this._a("actualBackgroundColor", brushToString(this.i.hl));
|
|
289
289
|
},
|
|
290
290
|
enumerable: false,
|
|
291
291
|
configurable: true
|
|
@@ -323,11 +323,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
323
323
|
* Gets or sets the color to use the border of the input group.
|
|
324
324
|
*/
|
|
325
325
|
get: function () {
|
|
326
|
-
return brushToString(this.i.
|
|
326
|
+
return brushToString(this.i.hx);
|
|
327
327
|
},
|
|
328
328
|
set: function (v) {
|
|
329
|
-
this.i.
|
|
330
|
-
this._a("borderColor", brushToString(this.i.
|
|
329
|
+
this.i.hx = stringToBrush(v);
|
|
330
|
+
this._a("borderColor", brushToString(this.i.hx));
|
|
331
331
|
},
|
|
332
332
|
enumerable: false,
|
|
333
333
|
configurable: true
|
|
@@ -337,11 +337,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
337
337
|
* Gets the actual item background color.
|
|
338
338
|
*/
|
|
339
339
|
get: function () {
|
|
340
|
-
return brushToString(this.i.
|
|
340
|
+
return brushToString(this.i.hm);
|
|
341
341
|
},
|
|
342
342
|
set: function (v) {
|
|
343
|
-
this.i.
|
|
344
|
-
this._a("actualBorderColor", brushToString(this.i.
|
|
343
|
+
this.i.hm = stringToBrush(v);
|
|
344
|
+
this._a("actualBorderColor", brushToString(this.i.hm));
|
|
345
345
|
},
|
|
346
346
|
enumerable: false,
|
|
347
347
|
configurable: true
|
|
@@ -351,11 +351,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
351
351
|
* Gets or sets the border width to use for the border of the item group.
|
|
352
352
|
*/
|
|
353
353
|
get: function () {
|
|
354
|
-
return this.i.
|
|
354
|
+
return this.i.cm;
|
|
355
355
|
},
|
|
356
356
|
set: function (v) {
|
|
357
|
-
this.i.
|
|
358
|
-
this._a("borderWidth", this.i.
|
|
357
|
+
this.i.cm = +v;
|
|
358
|
+
this._a("borderWidth", this.i.cm);
|
|
359
359
|
},
|
|
360
360
|
enumerable: false,
|
|
361
361
|
configurable: true
|
|
@@ -365,11 +365,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
365
365
|
* Gets the actual item border width.
|
|
366
366
|
*/
|
|
367
367
|
get: function () {
|
|
368
|
-
return this.i.
|
|
368
|
+
return this.i.cc;
|
|
369
369
|
},
|
|
370
370
|
set: function (v) {
|
|
371
|
-
this.i.
|
|
372
|
-
this._a("actualBorderWidth", this.i.
|
|
371
|
+
this.i.cc = +v;
|
|
372
|
+
this._a("actualBorderWidth", this.i.cc);
|
|
373
373
|
},
|
|
374
374
|
enumerable: false,
|
|
375
375
|
configurable: true
|
|
@@ -390,235 +390,235 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
390
390
|
});
|
|
391
391
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "contentPaddingBottom", {
|
|
392
392
|
get: function () {
|
|
393
|
-
return this.i.
|
|
393
|
+
return this.i.im ? this.i.im.bottom : NaN;
|
|
394
394
|
},
|
|
395
395
|
set: function (v) {
|
|
396
396
|
this.ensureContentPadding();
|
|
397
|
-
this.i.
|
|
398
|
-
this._a("contentPaddingBottom", this.i.
|
|
399
|
-
this.i.
|
|
397
|
+
this.i.im.bottom = +v;
|
|
398
|
+
this._a("contentPaddingBottom", this.i.im.bottom);
|
|
399
|
+
this.i.im = this.i.im;
|
|
400
400
|
},
|
|
401
401
|
enumerable: false,
|
|
402
402
|
configurable: true
|
|
403
403
|
});
|
|
404
404
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "contentPaddingLeft", {
|
|
405
405
|
get: function () {
|
|
406
|
-
return this.i.
|
|
406
|
+
return this.i.im ? this.i.im.left : NaN;
|
|
407
407
|
},
|
|
408
408
|
set: function (v) {
|
|
409
409
|
this.ensureContentPadding();
|
|
410
|
-
this.i.
|
|
411
|
-
this._a("contentPaddingLeft", this.i.
|
|
412
|
-
this.i.
|
|
410
|
+
this.i.im.left = +v;
|
|
411
|
+
this._a("contentPaddingLeft", this.i.im.left);
|
|
412
|
+
this.i.im = this.i.im;
|
|
413
413
|
},
|
|
414
414
|
enumerable: false,
|
|
415
415
|
configurable: true
|
|
416
416
|
});
|
|
417
417
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "contentPaddingRight", {
|
|
418
418
|
get: function () {
|
|
419
|
-
return this.i.
|
|
419
|
+
return this.i.im ? this.i.im.right : NaN;
|
|
420
420
|
},
|
|
421
421
|
set: function (v) {
|
|
422
422
|
this.ensureContentPadding();
|
|
423
|
-
this.i.
|
|
424
|
-
this._a("contentPaddingRight", this.i.
|
|
425
|
-
this.i.
|
|
423
|
+
this.i.im.right = +v;
|
|
424
|
+
this._a("contentPaddingRight", this.i.im.right);
|
|
425
|
+
this.i.im = this.i.im;
|
|
426
426
|
},
|
|
427
427
|
enumerable: false,
|
|
428
428
|
configurable: true
|
|
429
429
|
});
|
|
430
430
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "contentPaddingTop", {
|
|
431
431
|
get: function () {
|
|
432
|
-
return this.i.
|
|
432
|
+
return this.i.im ? this.i.im.top : NaN;
|
|
433
433
|
},
|
|
434
434
|
set: function (v) {
|
|
435
435
|
this.ensureContentPadding();
|
|
436
|
-
this.i.
|
|
437
|
-
this._a("contentPaddingTop", this.i.
|
|
438
|
-
this.i.
|
|
436
|
+
this.i.im.top = +v;
|
|
437
|
+
this._a("contentPaddingTop", this.i.im.top);
|
|
438
|
+
this.i.im = this.i.im;
|
|
439
439
|
},
|
|
440
440
|
enumerable: false,
|
|
441
441
|
configurable: true
|
|
442
442
|
});
|
|
443
443
|
IgcMultiColumnComboBoxComponent.prototype.ensureContentPadding = function () {
|
|
444
|
-
if (this.i.
|
|
444
|
+
if (this.i.im) {
|
|
445
445
|
return;
|
|
446
446
|
}
|
|
447
|
-
this.i.
|
|
447
|
+
this.i.im = new Thickness(2);
|
|
448
448
|
};
|
|
449
449
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualContentPaddingBottom", {
|
|
450
450
|
get: function () {
|
|
451
|
-
return this.i.
|
|
451
|
+
return this.i.il ? this.i.il.bottom : NaN;
|
|
452
452
|
},
|
|
453
453
|
set: function (v) {
|
|
454
454
|
this.ensureActualContentPadding();
|
|
455
|
-
this.i.
|
|
456
|
-
this._a("actualContentPaddingBottom", this.i.
|
|
457
|
-
this.i.
|
|
455
|
+
this.i.il.bottom = +v;
|
|
456
|
+
this._a("actualContentPaddingBottom", this.i.il.bottom);
|
|
457
|
+
this.i.il = this.i.il;
|
|
458
458
|
},
|
|
459
459
|
enumerable: false,
|
|
460
460
|
configurable: true
|
|
461
461
|
});
|
|
462
462
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualContentPaddingLeft", {
|
|
463
463
|
get: function () {
|
|
464
|
-
return this.i.
|
|
464
|
+
return this.i.il ? this.i.il.left : NaN;
|
|
465
465
|
},
|
|
466
466
|
set: function (v) {
|
|
467
467
|
this.ensureActualContentPadding();
|
|
468
|
-
this.i.
|
|
469
|
-
this._a("actualContentPaddingLeft", this.i.
|
|
470
|
-
this.i.
|
|
468
|
+
this.i.il.left = +v;
|
|
469
|
+
this._a("actualContentPaddingLeft", this.i.il.left);
|
|
470
|
+
this.i.il = this.i.il;
|
|
471
471
|
},
|
|
472
472
|
enumerable: false,
|
|
473
473
|
configurable: true
|
|
474
474
|
});
|
|
475
475
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualContentPaddingRight", {
|
|
476
476
|
get: function () {
|
|
477
|
-
return this.i.
|
|
477
|
+
return this.i.il ? this.i.il.right : NaN;
|
|
478
478
|
},
|
|
479
479
|
set: function (v) {
|
|
480
480
|
this.ensureActualContentPadding();
|
|
481
|
-
this.i.
|
|
482
|
-
this._a("actualContentPaddingRight", this.i.
|
|
483
|
-
this.i.
|
|
481
|
+
this.i.il.right = +v;
|
|
482
|
+
this._a("actualContentPaddingRight", this.i.il.right);
|
|
483
|
+
this.i.il = this.i.il;
|
|
484
484
|
},
|
|
485
485
|
enumerable: false,
|
|
486
486
|
configurable: true
|
|
487
487
|
});
|
|
488
488
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualContentPaddingTop", {
|
|
489
489
|
get: function () {
|
|
490
|
-
return this.i.
|
|
490
|
+
return this.i.il ? this.i.il.top : NaN;
|
|
491
491
|
},
|
|
492
492
|
set: function (v) {
|
|
493
493
|
this.ensureActualContentPadding();
|
|
494
|
-
this.i.
|
|
495
|
-
this._a("actualContentPaddingTop", this.i.
|
|
496
|
-
this.i.
|
|
494
|
+
this.i.il.top = +v;
|
|
495
|
+
this._a("actualContentPaddingTop", this.i.il.top);
|
|
496
|
+
this.i.il = this.i.il;
|
|
497
497
|
},
|
|
498
498
|
enumerable: false,
|
|
499
499
|
configurable: true
|
|
500
500
|
});
|
|
501
501
|
IgcMultiColumnComboBoxComponent.prototype.ensureActualContentPadding = function () {
|
|
502
|
-
if (this.i.
|
|
502
|
+
if (this.i.il) {
|
|
503
503
|
return;
|
|
504
504
|
}
|
|
505
|
-
this.i.
|
|
505
|
+
this.i.il = new Thickness(2);
|
|
506
506
|
};
|
|
507
507
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "cornerRadiusBottomRight", {
|
|
508
508
|
get: function () {
|
|
509
|
-
return this.i.
|
|
509
|
+
return this.i.gx ? this.i.gx.b : NaN;
|
|
510
510
|
},
|
|
511
511
|
set: function (v) {
|
|
512
512
|
this.ensureCornerRadius();
|
|
513
|
-
this.i.
|
|
514
|
-
this._a("cornerRadiusBottomRight", this.i.
|
|
515
|
-
this.i.
|
|
513
|
+
this.i.gx.b = +v;
|
|
514
|
+
this._a("cornerRadiusBottomRight", this.i.gx.b);
|
|
515
|
+
this.i.gx = this.i.gx;
|
|
516
516
|
},
|
|
517
517
|
enumerable: false,
|
|
518
518
|
configurable: true
|
|
519
519
|
});
|
|
520
520
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "cornerRadiusBottomLeft", {
|
|
521
521
|
get: function () {
|
|
522
|
-
return this.i.
|
|
522
|
+
return this.i.gx ? this.i.gx.a : NaN;
|
|
523
523
|
},
|
|
524
524
|
set: function (v) {
|
|
525
525
|
this.ensureCornerRadius();
|
|
526
|
-
this.i.
|
|
527
|
-
this._a("cornerRadiusBottomLeft", this.i.
|
|
528
|
-
this.i.
|
|
526
|
+
this.i.gx.a = +v;
|
|
527
|
+
this._a("cornerRadiusBottomLeft", this.i.gx.a);
|
|
528
|
+
this.i.gx = this.i.gx;
|
|
529
529
|
},
|
|
530
530
|
enumerable: false,
|
|
531
531
|
configurable: true
|
|
532
532
|
});
|
|
533
533
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "cornerRadiusTopLeft", {
|
|
534
534
|
get: function () {
|
|
535
|
-
return this.i.
|
|
535
|
+
return this.i.gx ? this.i.gx.c : NaN;
|
|
536
536
|
},
|
|
537
537
|
set: function (v) {
|
|
538
538
|
this.ensureCornerRadius();
|
|
539
|
-
this.i.
|
|
540
|
-
this._a("cornerRadiusTopLeft", this.i.
|
|
541
|
-
this.i.
|
|
539
|
+
this.i.gx.c = +v;
|
|
540
|
+
this._a("cornerRadiusTopLeft", this.i.gx.c);
|
|
541
|
+
this.i.gx = this.i.gx;
|
|
542
542
|
},
|
|
543
543
|
enumerable: false,
|
|
544
544
|
configurable: true
|
|
545
545
|
});
|
|
546
546
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "cornerRadiusTopRight", {
|
|
547
547
|
get: function () {
|
|
548
|
-
return this.i.
|
|
548
|
+
return this.i.gx ? this.i.gx.d : NaN;
|
|
549
549
|
},
|
|
550
550
|
set: function (v) {
|
|
551
551
|
this.ensureCornerRadius();
|
|
552
|
-
this.i.
|
|
553
|
-
this._a("cornerRadiusTopRight", this.i.
|
|
554
|
-
this.i.
|
|
552
|
+
this.i.gx.d = +v;
|
|
553
|
+
this._a("cornerRadiusTopRight", this.i.gx.d);
|
|
554
|
+
this.i.gx = this.i.gx;
|
|
555
555
|
},
|
|
556
556
|
enumerable: false,
|
|
557
557
|
configurable: true
|
|
558
558
|
});
|
|
559
559
|
IgcMultiColumnComboBoxComponent.prototype.ensureCornerRadius = function () {
|
|
560
|
-
if (this.i.
|
|
560
|
+
if (this.i.gx) {
|
|
561
561
|
return;
|
|
562
562
|
}
|
|
563
|
-
this.i.
|
|
563
|
+
this.i.gx = new CornerRadius(2);
|
|
564
564
|
};
|
|
565
565
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualCornerRadiusBottomRight", {
|
|
566
566
|
get: function () {
|
|
567
|
-
return this.i.
|
|
567
|
+
return this.i.gw ? this.i.gw.b : NaN;
|
|
568
568
|
},
|
|
569
569
|
set: function (v) {
|
|
570
570
|
this.ensureActualCornerRadius();
|
|
571
|
-
this.i.
|
|
572
|
-
this._a("actualCornerRadiusBottomRight", this.i.
|
|
573
|
-
this.i.
|
|
571
|
+
this.i.gw.b = +v;
|
|
572
|
+
this._a("actualCornerRadiusBottomRight", this.i.gw.b);
|
|
573
|
+
this.i.gw = this.i.gw;
|
|
574
574
|
},
|
|
575
575
|
enumerable: false,
|
|
576
576
|
configurable: true
|
|
577
577
|
});
|
|
578
578
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualCornerRadiusBottomLeft", {
|
|
579
579
|
get: function () {
|
|
580
|
-
return this.i.
|
|
580
|
+
return this.i.gw ? this.i.gw.a : NaN;
|
|
581
581
|
},
|
|
582
582
|
set: function (v) {
|
|
583
583
|
this.ensureActualCornerRadius();
|
|
584
|
-
this.i.
|
|
585
|
-
this._a("actualCornerRadiusBottomLeft", this.i.
|
|
586
|
-
this.i.
|
|
584
|
+
this.i.gw.a = +v;
|
|
585
|
+
this._a("actualCornerRadiusBottomLeft", this.i.gw.a);
|
|
586
|
+
this.i.gw = this.i.gw;
|
|
587
587
|
},
|
|
588
588
|
enumerable: false,
|
|
589
589
|
configurable: true
|
|
590
590
|
});
|
|
591
591
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualCornerRadiusTopLeft", {
|
|
592
592
|
get: function () {
|
|
593
|
-
return this.i.
|
|
593
|
+
return this.i.gw ? this.i.gw.c : NaN;
|
|
594
594
|
},
|
|
595
595
|
set: function (v) {
|
|
596
596
|
this.ensureActualCornerRadius();
|
|
597
|
-
this.i.
|
|
598
|
-
this._a("actualCornerRadiusTopLeft", this.i.
|
|
599
|
-
this.i.
|
|
597
|
+
this.i.gw.c = +v;
|
|
598
|
+
this._a("actualCornerRadiusTopLeft", this.i.gw.c);
|
|
599
|
+
this.i.gw = this.i.gw;
|
|
600
600
|
},
|
|
601
601
|
enumerable: false,
|
|
602
602
|
configurable: true
|
|
603
603
|
});
|
|
604
604
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "actualCornerRadiusTopRight", {
|
|
605
605
|
get: function () {
|
|
606
|
-
return this.i.
|
|
606
|
+
return this.i.gw ? this.i.gw.d : NaN;
|
|
607
607
|
},
|
|
608
608
|
set: function (v) {
|
|
609
609
|
this.ensureActualCornerRadius();
|
|
610
|
-
this.i.
|
|
611
|
-
this._a("actualCornerRadiusTopRight", this.i.
|
|
612
|
-
this.i.
|
|
610
|
+
this.i.gw.d = +v;
|
|
611
|
+
this._a("actualCornerRadiusTopRight", this.i.gw.d);
|
|
612
|
+
this.i.gw = this.i.gw;
|
|
613
613
|
},
|
|
614
614
|
enumerable: false,
|
|
615
615
|
configurable: true
|
|
616
616
|
});
|
|
617
617
|
IgcMultiColumnComboBoxComponent.prototype.ensureActualCornerRadius = function () {
|
|
618
|
-
if (this.i.
|
|
618
|
+
if (this.i.gw) {
|
|
619
619
|
return;
|
|
620
620
|
}
|
|
621
|
-
this.i.
|
|
621
|
+
this.i.gw = new CornerRadius(2);
|
|
622
622
|
};
|
|
623
623
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "dataSourceDesiredProperties", {
|
|
624
624
|
/**
|
|
@@ -684,11 +684,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
684
684
|
* Gets or sets the color to use the hovered background of the inputs in the group.
|
|
685
685
|
*/
|
|
686
686
|
get: function () {
|
|
687
|
-
return brushToString(this.i.
|
|
687
|
+
return brushToString(this.i.h9);
|
|
688
688
|
},
|
|
689
689
|
set: function (v) {
|
|
690
|
-
this.i.
|
|
691
|
-
this._a("focusBorderColor", brushToString(this.i.
|
|
690
|
+
this.i.h9 = stringToBrush(v);
|
|
691
|
+
this._a("focusBorderColor", brushToString(this.i.h9));
|
|
692
692
|
},
|
|
693
693
|
enumerable: false,
|
|
694
694
|
configurable: true
|
|
@@ -698,11 +698,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
698
698
|
* Gets the actual item border color.
|
|
699
699
|
*/
|
|
700
700
|
get: function () {
|
|
701
|
-
return brushToString(this.i.
|
|
701
|
+
return brushToString(this.i.hn);
|
|
702
702
|
},
|
|
703
703
|
set: function (v) {
|
|
704
|
-
this.i.
|
|
705
|
-
this._a("actualFocusBorderColor", brushToString(this.i.
|
|
704
|
+
this.i.hn = stringToBrush(v);
|
|
705
|
+
this._a("actualFocusBorderColor", brushToString(this.i.hn));
|
|
706
706
|
},
|
|
707
707
|
enumerable: false,
|
|
708
708
|
configurable: true
|
|
@@ -712,11 +712,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
712
712
|
* Gets or sets the border width to use for the border of the item group when focused.
|
|
713
713
|
*/
|
|
714
714
|
get: function () {
|
|
715
|
-
return this.i.
|
|
715
|
+
return this.i.cy;
|
|
716
716
|
},
|
|
717
717
|
set: function (v) {
|
|
718
|
-
this.i.
|
|
719
|
-
this._a("focusBorderWidth", this.i.
|
|
718
|
+
this.i.cy = +v;
|
|
719
|
+
this._a("focusBorderWidth", this.i.cy);
|
|
720
720
|
},
|
|
721
721
|
enumerable: false,
|
|
722
722
|
configurable: true
|
|
@@ -726,11 +726,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
726
726
|
* Gets the actual item border width.
|
|
727
727
|
*/
|
|
728
728
|
get: function () {
|
|
729
|
-
return this.i.
|
|
729
|
+
return this.i.cd;
|
|
730
730
|
},
|
|
731
731
|
set: function (v) {
|
|
732
|
-
this.i.
|
|
733
|
-
this._a("actualFocusBorderWidth", this.i.
|
|
732
|
+
this.i.cd = +v;
|
|
733
|
+
this._a("actualFocusBorderWidth", this.i.cd);
|
|
734
734
|
},
|
|
735
735
|
enumerable: false,
|
|
736
736
|
configurable: true
|
|
@@ -740,11 +740,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
740
740
|
* Gets or sets the color to use for the underline element.
|
|
741
741
|
*/
|
|
742
742
|
get: function () {
|
|
743
|
-
return brushToString(this.i.
|
|
743
|
+
return brushToString(this.i.ia);
|
|
744
744
|
},
|
|
745
745
|
set: function (v) {
|
|
746
|
-
this.i.
|
|
747
|
-
this._a("focusUnderlineColor", brushToString(this.i.
|
|
746
|
+
this.i.ia = stringToBrush(v);
|
|
747
|
+
this._a("focusUnderlineColor", brushToString(this.i.ia));
|
|
748
748
|
},
|
|
749
749
|
enumerable: false,
|
|
750
750
|
configurable: true
|
|
@@ -754,11 +754,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
754
754
|
* Gets the actual color to use for the underline element when focused.
|
|
755
755
|
*/
|
|
756
756
|
get: function () {
|
|
757
|
-
return brushToString(this.i.
|
|
757
|
+
return brushToString(this.i.ho);
|
|
758
758
|
},
|
|
759
759
|
set: function (v) {
|
|
760
|
-
this.i.
|
|
761
|
-
this._a("actualFocusUnderlineColor", brushToString(this.i.
|
|
760
|
+
this.i.ho = stringToBrush(v);
|
|
761
|
+
this._a("actualFocusUnderlineColor", brushToString(this.i.ho));
|
|
762
762
|
},
|
|
763
763
|
enumerable: false,
|
|
764
764
|
configurable: true
|
|
@@ -768,11 +768,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
768
768
|
* Gets or sets the color to use for the underline element.
|
|
769
769
|
*/
|
|
770
770
|
get: function () {
|
|
771
|
-
return this.i.
|
|
771
|
+
return this.i.cz;
|
|
772
772
|
},
|
|
773
773
|
set: function (v) {
|
|
774
|
-
this.i.
|
|
775
|
-
this._a("focusUnderlineOpacity", this.i.
|
|
774
|
+
this.i.cz = +v;
|
|
775
|
+
this._a("focusUnderlineOpacity", this.i.cz);
|
|
776
776
|
},
|
|
777
777
|
enumerable: false,
|
|
778
778
|
configurable: true
|
|
@@ -782,11 +782,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
782
782
|
* Gets the actual opacity to use for the underline element when focused.
|
|
783
783
|
*/
|
|
784
784
|
get: function () {
|
|
785
|
-
return this.i.
|
|
785
|
+
return this.i.ce;
|
|
786
786
|
},
|
|
787
787
|
set: function (v) {
|
|
788
|
-
this.i.
|
|
789
|
-
this._a("actualFocusUnderlineOpacity", this.i.
|
|
788
|
+
this.i.ce = +v;
|
|
789
|
+
this._a("actualFocusUnderlineOpacity", this.i.ce);
|
|
790
790
|
},
|
|
791
791
|
enumerable: false,
|
|
792
792
|
configurable: true
|
|
@@ -796,11 +796,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
796
796
|
* Gets or sets the opacity to use for the underline ripple element when focused.
|
|
797
797
|
*/
|
|
798
798
|
get: function () {
|
|
799
|
-
return this.i.
|
|
799
|
+
return this.i.c0;
|
|
800
800
|
},
|
|
801
801
|
set: function (v) {
|
|
802
|
-
this.i.
|
|
803
|
-
this._a("focusUnderlineRippleOpacity", this.i.
|
|
802
|
+
this.i.c0 = +v;
|
|
803
|
+
this._a("focusUnderlineRippleOpacity", this.i.c0);
|
|
804
804
|
},
|
|
805
805
|
enumerable: false,
|
|
806
806
|
configurable: true
|
|
@@ -810,11 +810,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
810
810
|
* Gets the actual opacity to use for the underline ripple element when focused.
|
|
811
811
|
*/
|
|
812
812
|
get: function () {
|
|
813
|
-
return this.i.
|
|
813
|
+
return this.i.cf;
|
|
814
814
|
},
|
|
815
815
|
set: function (v) {
|
|
816
|
-
this.i.
|
|
817
|
-
this._a("actualFocusUnderlineRippleOpacity", this.i.
|
|
816
|
+
this.i.cf = +v;
|
|
817
|
+
this._a("actualFocusUnderlineRippleOpacity", this.i.cf);
|
|
818
818
|
},
|
|
819
819
|
enumerable: false,
|
|
820
820
|
configurable: true
|
|
@@ -824,11 +824,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
824
824
|
* Gets or sets the color to use for the underline element.
|
|
825
825
|
*/
|
|
826
826
|
get: function () {
|
|
827
|
-
return brushToString(this.i.
|
|
827
|
+
return brushToString(this.i.ib);
|
|
828
828
|
},
|
|
829
829
|
set: function (v) {
|
|
830
|
-
this.i.
|
|
831
|
-
this._a("hoverUnderlineColor", brushToString(this.i.
|
|
830
|
+
this.i.ib = stringToBrush(v);
|
|
831
|
+
this._a("hoverUnderlineColor", brushToString(this.i.ib));
|
|
832
832
|
},
|
|
833
833
|
enumerable: false,
|
|
834
834
|
configurable: true
|
|
@@ -838,11 +838,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
838
838
|
* Gets the actual color to use for the underline element.
|
|
839
839
|
*/
|
|
840
840
|
get: function () {
|
|
841
|
-
return brushToString(this.i.
|
|
841
|
+
return brushToString(this.i.hp);
|
|
842
842
|
},
|
|
843
843
|
set: function (v) {
|
|
844
|
-
this.i.
|
|
845
|
-
this._a("actualHoverUnderlineColor", brushToString(this.i.
|
|
844
|
+
this.i.hp = stringToBrush(v);
|
|
845
|
+
this._a("actualHoverUnderlineColor", brushToString(this.i.hp));
|
|
846
846
|
},
|
|
847
847
|
enumerable: false,
|
|
848
848
|
configurable: true
|
|
@@ -852,11 +852,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
852
852
|
* Gets or sets the color to use for the underline element.
|
|
853
853
|
*/
|
|
854
854
|
get: function () {
|
|
855
|
-
return this.i.
|
|
855
|
+
return this.i.c1;
|
|
856
856
|
},
|
|
857
857
|
set: function (v) {
|
|
858
|
-
this.i.
|
|
859
|
-
this._a("hoverUnderlineOpacity", this.i.
|
|
858
|
+
this.i.c1 = +v;
|
|
859
|
+
this._a("hoverUnderlineOpacity", this.i.c1);
|
|
860
860
|
},
|
|
861
861
|
enumerable: false,
|
|
862
862
|
configurable: true
|
|
@@ -866,11 +866,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
866
866
|
* Gets the actual opacity to use for the underline element when hovered.
|
|
867
867
|
*/
|
|
868
868
|
get: function () {
|
|
869
|
-
return this.i.
|
|
869
|
+
return this.i.cg;
|
|
870
870
|
},
|
|
871
871
|
set: function (v) {
|
|
872
|
-
this.i.
|
|
873
|
-
this._a("actualHoverUnderlineOpacity", this.i.
|
|
872
|
+
this.i.cg = +v;
|
|
873
|
+
this._a("actualHoverUnderlineOpacity", this.i.cg);
|
|
874
874
|
},
|
|
875
875
|
enumerable: false,
|
|
876
876
|
configurable: true
|
|
@@ -880,11 +880,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
880
880
|
* Gets or sets the width to use for the underline element when hovered.
|
|
881
881
|
*/
|
|
882
882
|
get: function () {
|
|
883
|
-
return this.i.
|
|
883
|
+
return this.i.c2;
|
|
884
884
|
},
|
|
885
885
|
set: function (v) {
|
|
886
|
-
this.i.
|
|
887
|
-
this._a("hoverUnderlineWidth", this.i.
|
|
886
|
+
this.i.c2 = +v;
|
|
887
|
+
this._a("hoverUnderlineWidth", this.i.c2);
|
|
888
888
|
},
|
|
889
889
|
enumerable: false,
|
|
890
890
|
configurable: true
|
|
@@ -894,11 +894,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
894
894
|
* Gets the width to use for the underline element when hovered.
|
|
895
895
|
*/
|
|
896
896
|
get: function () {
|
|
897
|
-
return this.i.
|
|
897
|
+
return this.i.ch;
|
|
898
898
|
},
|
|
899
899
|
set: function (v) {
|
|
900
|
-
this.i.
|
|
901
|
-
this._a("actualHoverUnderlineWidth", this.i.
|
|
900
|
+
this.i.ch = +v;
|
|
901
|
+
this._a("actualHoverUnderlineWidth", this.i.ch);
|
|
902
902
|
},
|
|
903
903
|
enumerable: false,
|
|
904
904
|
configurable: true
|
|
@@ -932,10 +932,10 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
932
932
|
* The text displayed in the label portion of the control.
|
|
933
933
|
*/
|
|
934
934
|
get: function () {
|
|
935
|
-
return this.i.
|
|
935
|
+
return this.i.fb;
|
|
936
936
|
},
|
|
937
937
|
set: function (v) {
|
|
938
|
-
this.i.
|
|
938
|
+
this.i.fb = v;
|
|
939
939
|
},
|
|
940
940
|
enumerable: false,
|
|
941
941
|
configurable: true
|
|
@@ -945,11 +945,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
945
945
|
* Gets or sets the color to use for the text.
|
|
946
946
|
*/
|
|
947
947
|
get: function () {
|
|
948
|
-
return brushToString(this.i.
|
|
948
|
+
return brushToString(this.i.ic);
|
|
949
949
|
},
|
|
950
950
|
set: function (v) {
|
|
951
|
-
this.i.
|
|
952
|
-
this._a("labelTextColor", brushToString(this.i.
|
|
951
|
+
this.i.ic = stringToBrush(v);
|
|
952
|
+
this._a("labelTextColor", brushToString(this.i.ic));
|
|
953
953
|
},
|
|
954
954
|
enumerable: false,
|
|
955
955
|
configurable: true
|
|
@@ -959,11 +959,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
959
959
|
* Gets the actual color to use for the text color.
|
|
960
960
|
*/
|
|
961
961
|
get: function () {
|
|
962
|
-
return brushToString(this.i.
|
|
962
|
+
return brushToString(this.i.hq);
|
|
963
963
|
},
|
|
964
964
|
set: function (v) {
|
|
965
|
-
this.i.
|
|
966
|
-
this._a("actualLabelTextColor", brushToString(this.i.
|
|
965
|
+
this.i.hq = stringToBrush(v);
|
|
966
|
+
this._a("actualLabelTextColor", brushToString(this.i.hq));
|
|
967
967
|
},
|
|
968
968
|
enumerable: false,
|
|
969
969
|
configurable: true
|
|
@@ -1006,10 +1006,10 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1006
1006
|
* Gets or sets the text to display on the list when no suggested matches are found.
|
|
1007
1007
|
*/
|
|
1008
1008
|
get: function () {
|
|
1009
|
-
return this.i.
|
|
1009
|
+
return this.i.fh;
|
|
1010
1010
|
},
|
|
1011
1011
|
set: function (v) {
|
|
1012
|
-
this.i.
|
|
1012
|
+
this.i.fh = v;
|
|
1013
1013
|
},
|
|
1014
1014
|
enumerable: false,
|
|
1015
1015
|
configurable: true
|
|
@@ -1032,11 +1032,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1032
1032
|
* Gets or sets the color to use for the "no matches found" label.
|
|
1033
1033
|
*/
|
|
1034
1034
|
get: function () {
|
|
1035
|
-
return brushToString(this.i.
|
|
1035
|
+
return brushToString(this.i.id);
|
|
1036
1036
|
},
|
|
1037
1037
|
set: function (v) {
|
|
1038
|
-
this.i.
|
|
1039
|
-
this._a("noMatchesFoundLabelBackgroundColor", brushToString(this.i.
|
|
1038
|
+
this.i.id = stringToBrush(v);
|
|
1039
|
+
this._a("noMatchesFoundLabelBackgroundColor", brushToString(this.i.id));
|
|
1040
1040
|
},
|
|
1041
1041
|
enumerable: false,
|
|
1042
1042
|
configurable: true
|
|
@@ -1046,11 +1046,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1046
1046
|
* Gets the actual color to use for the "no matches found" label.
|
|
1047
1047
|
*/
|
|
1048
1048
|
get: function () {
|
|
1049
|
-
return brushToString(this.i.
|
|
1049
|
+
return brushToString(this.i.hr);
|
|
1050
1050
|
},
|
|
1051
1051
|
set: function (v) {
|
|
1052
|
-
this.i.
|
|
1053
|
-
this._a("actualNoMatchesFoundLabelBackgroundColor", brushToString(this.i.
|
|
1052
|
+
this.i.hr = stringToBrush(v);
|
|
1053
|
+
this._a("actualNoMatchesFoundLabelBackgroundColor", brushToString(this.i.hr));
|
|
1054
1054
|
},
|
|
1055
1055
|
enumerable: false,
|
|
1056
1056
|
configurable: true
|
|
@@ -1060,11 +1060,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1060
1060
|
* Gets or sets the color to use for the "no matches found" label.
|
|
1061
1061
|
*/
|
|
1062
1062
|
get: function () {
|
|
1063
|
-
return brushToString(this.i.
|
|
1063
|
+
return brushToString(this.i.ie);
|
|
1064
1064
|
},
|
|
1065
1065
|
set: function (v) {
|
|
1066
|
-
this.i.
|
|
1067
|
-
this._a("noMatchesFoundLabelTextColor", brushToString(this.i.
|
|
1066
|
+
this.i.ie = stringToBrush(v);
|
|
1067
|
+
this._a("noMatchesFoundLabelTextColor", brushToString(this.i.ie));
|
|
1068
1068
|
},
|
|
1069
1069
|
enumerable: false,
|
|
1070
1070
|
configurable: true
|
|
@@ -1074,11 +1074,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1074
1074
|
* Gets the actual color to use for the "no matches found" label.
|
|
1075
1075
|
*/
|
|
1076
1076
|
get: function () {
|
|
1077
|
-
return brushToString(this.i.
|
|
1077
|
+
return brushToString(this.i.hs);
|
|
1078
1078
|
},
|
|
1079
1079
|
set: function (v) {
|
|
1080
|
-
this.i.
|
|
1081
|
-
this._a("actualNoMatchesFoundLabelTextColor", brushToString(this.i.
|
|
1080
|
+
this.i.hs = stringToBrush(v);
|
|
1081
|
+
this._a("actualNoMatchesFoundLabelTextColor", brushToString(this.i.hs));
|
|
1082
1082
|
},
|
|
1083
1083
|
enumerable: false,
|
|
1084
1084
|
configurable: true
|
|
@@ -1107,10 +1107,10 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1107
1107
|
* Placeholder text which gives the user a hint about what kind of text is expected.
|
|
1108
1108
|
*/
|
|
1109
1109
|
get: function () {
|
|
1110
|
-
return this.i.
|
|
1110
|
+
return this.i.fn;
|
|
1111
1111
|
},
|
|
1112
1112
|
set: function (v) {
|
|
1113
|
-
this.i.
|
|
1113
|
+
this.i.fn = v;
|
|
1114
1114
|
},
|
|
1115
1115
|
enumerable: false,
|
|
1116
1116
|
configurable: true
|
|
@@ -1134,11 +1134,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1134
1134
|
* Gets or sets the color to use for the text.
|
|
1135
1135
|
*/
|
|
1136
1136
|
get: function () {
|
|
1137
|
-
return brushToString(this.i.
|
|
1137
|
+
return brushToString(this.i.ig);
|
|
1138
1138
|
},
|
|
1139
1139
|
set: function (v) {
|
|
1140
|
-
this.i.
|
|
1141
|
-
this._a("textColor", brushToString(this.i.
|
|
1140
|
+
this.i.ig = stringToBrush(v);
|
|
1141
|
+
this._a("textColor", brushToString(this.i.ig));
|
|
1142
1142
|
},
|
|
1143
1143
|
enumerable: false,
|
|
1144
1144
|
configurable: true
|
|
@@ -1148,11 +1148,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1148
1148
|
* Gets the actual color to use for the text color.
|
|
1149
1149
|
*/
|
|
1150
1150
|
get: function () {
|
|
1151
|
-
return brushToString(this.i.
|
|
1151
|
+
return brushToString(this.i.ht);
|
|
1152
1152
|
},
|
|
1153
1153
|
set: function (v) {
|
|
1154
|
-
this.i.
|
|
1155
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
1154
|
+
this.i.ht = stringToBrush(v);
|
|
1155
|
+
this._a("actualTextColor", brushToString(this.i.ht));
|
|
1156
1156
|
},
|
|
1157
1157
|
enumerable: false,
|
|
1158
1158
|
configurable: true
|
|
@@ -1181,11 +1181,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1181
1181
|
* Gets or sets the color to use for the underline element.
|
|
1182
1182
|
*/
|
|
1183
1183
|
get: function () {
|
|
1184
|
-
return brushToString(this.i.
|
|
1184
|
+
return brushToString(this.i.ih);
|
|
1185
1185
|
},
|
|
1186
1186
|
set: function (v) {
|
|
1187
|
-
this.i.
|
|
1188
|
-
this._a("underlineColor", brushToString(this.i.
|
|
1187
|
+
this.i.ih = stringToBrush(v);
|
|
1188
|
+
this._a("underlineColor", brushToString(this.i.ih));
|
|
1189
1189
|
},
|
|
1190
1190
|
enumerable: false,
|
|
1191
1191
|
configurable: true
|
|
@@ -1195,11 +1195,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1195
1195
|
* Gets the actual color to use for the underline element.
|
|
1196
1196
|
*/
|
|
1197
1197
|
get: function () {
|
|
1198
|
-
return brushToString(this.i.
|
|
1198
|
+
return brushToString(this.i.hu);
|
|
1199
1199
|
},
|
|
1200
1200
|
set: function (v) {
|
|
1201
|
-
this.i.
|
|
1202
|
-
this._a("actualUnderlineColor", brushToString(this.i.
|
|
1201
|
+
this.i.hu = stringToBrush(v);
|
|
1202
|
+
this._a("actualUnderlineColor", brushToString(this.i.hu));
|
|
1203
1203
|
},
|
|
1204
1204
|
enumerable: false,
|
|
1205
1205
|
configurable: true
|
|
@@ -1209,11 +1209,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1209
1209
|
* Gets or sets the color to use for the underline element.
|
|
1210
1210
|
*/
|
|
1211
1211
|
get: function () {
|
|
1212
|
-
return this.i.
|
|
1212
|
+
return this.i.c3;
|
|
1213
1213
|
},
|
|
1214
1214
|
set: function (v) {
|
|
1215
|
-
this.i.
|
|
1216
|
-
this._a("underlineOpacity", this.i.
|
|
1215
|
+
this.i.c3 = +v;
|
|
1216
|
+
this._a("underlineOpacity", this.i.c3);
|
|
1217
1217
|
},
|
|
1218
1218
|
enumerable: false,
|
|
1219
1219
|
configurable: true
|
|
@@ -1223,11 +1223,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1223
1223
|
* Gets the actual opacity to use for the underline element.
|
|
1224
1224
|
*/
|
|
1225
1225
|
get: function () {
|
|
1226
|
-
return this.i.
|
|
1226
|
+
return this.i.ci;
|
|
1227
1227
|
},
|
|
1228
1228
|
set: function (v) {
|
|
1229
|
-
this.i.
|
|
1230
|
-
this._a("actualUnderlineOpacity", this.i.
|
|
1229
|
+
this.i.ci = +v;
|
|
1230
|
+
this._a("actualUnderlineOpacity", this.i.ci);
|
|
1231
1231
|
},
|
|
1232
1232
|
enumerable: false,
|
|
1233
1233
|
configurable: true
|
|
@@ -1237,11 +1237,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1237
1237
|
* Gets or sets the color to use for the underline ripple element.
|
|
1238
1238
|
*/
|
|
1239
1239
|
get: function () {
|
|
1240
|
-
return brushToString(this.i.
|
|
1240
|
+
return brushToString(this.i.ii);
|
|
1241
1241
|
},
|
|
1242
1242
|
set: function (v) {
|
|
1243
|
-
this.i.
|
|
1244
|
-
this._a("underlineRippleColor", brushToString(this.i.
|
|
1243
|
+
this.i.ii = stringToBrush(v);
|
|
1244
|
+
this._a("underlineRippleColor", brushToString(this.i.ii));
|
|
1245
1245
|
},
|
|
1246
1246
|
enumerable: false,
|
|
1247
1247
|
configurable: true
|
|
@@ -1251,11 +1251,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1251
1251
|
* Gets the actual color to use for the underline ripple element.
|
|
1252
1252
|
*/
|
|
1253
1253
|
get: function () {
|
|
1254
|
-
return brushToString(this.i.
|
|
1254
|
+
return brushToString(this.i.hv);
|
|
1255
1255
|
},
|
|
1256
1256
|
set: function (v) {
|
|
1257
|
-
this.i.
|
|
1258
|
-
this._a("actualUnderlineRippleColor", brushToString(this.i.
|
|
1257
|
+
this.i.hv = stringToBrush(v);
|
|
1258
|
+
this._a("actualUnderlineRippleColor", brushToString(this.i.hv));
|
|
1259
1259
|
},
|
|
1260
1260
|
enumerable: false,
|
|
1261
1261
|
configurable: true
|
|
@@ -1265,11 +1265,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1265
1265
|
* Gets or sets the opacity to use for the underline ripple element.
|
|
1266
1266
|
*/
|
|
1267
1267
|
get: function () {
|
|
1268
|
-
return this.i.
|
|
1268
|
+
return this.i.c4;
|
|
1269
1269
|
},
|
|
1270
1270
|
set: function (v) {
|
|
1271
|
-
this.i.
|
|
1272
|
-
this._a("underlineRippleOpacity", this.i.
|
|
1271
|
+
this.i.c4 = +v;
|
|
1272
|
+
this._a("underlineRippleOpacity", this.i.c4);
|
|
1273
1273
|
},
|
|
1274
1274
|
enumerable: false,
|
|
1275
1275
|
configurable: true
|
|
@@ -1279,11 +1279,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1279
1279
|
* Gets the actual opacity to use for the underline ripple element.
|
|
1280
1280
|
*/
|
|
1281
1281
|
get: function () {
|
|
1282
|
-
return this.i.
|
|
1282
|
+
return this.i.cj;
|
|
1283
1283
|
},
|
|
1284
1284
|
set: function (v) {
|
|
1285
|
-
this.i.
|
|
1286
|
-
this._a("actualUnderlineRippleOpacity", this.i.
|
|
1285
|
+
this.i.cj = +v;
|
|
1286
|
+
this._a("actualUnderlineRippleOpacity", this.i.cj);
|
|
1287
1287
|
},
|
|
1288
1288
|
enumerable: false,
|
|
1289
1289
|
configurable: true
|
|
@@ -1293,11 +1293,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1293
1293
|
* Gets or sets the width to use for the underline element.
|
|
1294
1294
|
*/
|
|
1295
1295
|
get: function () {
|
|
1296
|
-
return this.i.
|
|
1296
|
+
return this.i.c5;
|
|
1297
1297
|
},
|
|
1298
1298
|
set: function (v) {
|
|
1299
|
-
this.i.
|
|
1300
|
-
this._a("underlineRippleWidth", this.i.
|
|
1299
|
+
this.i.c5 = +v;
|
|
1300
|
+
this._a("underlineRippleWidth", this.i.c5);
|
|
1301
1301
|
},
|
|
1302
1302
|
enumerable: false,
|
|
1303
1303
|
configurable: true
|
|
@@ -1307,11 +1307,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1307
1307
|
* Gets the actual width to use for the underline element.
|
|
1308
1308
|
*/
|
|
1309
1309
|
get: function () {
|
|
1310
|
-
return this.i.
|
|
1310
|
+
return this.i.ck;
|
|
1311
1311
|
},
|
|
1312
1312
|
set: function (v) {
|
|
1313
|
-
this.i.
|
|
1314
|
-
this._a("actualUnderlineRippleWidth", this.i.
|
|
1313
|
+
this.i.ck = +v;
|
|
1314
|
+
this._a("actualUnderlineRippleWidth", this.i.ck);
|
|
1315
1315
|
},
|
|
1316
1316
|
enumerable: false,
|
|
1317
1317
|
configurable: true
|
|
@@ -1321,11 +1321,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1321
1321
|
* Gets or sets the width to use for the underline element.
|
|
1322
1322
|
*/
|
|
1323
1323
|
get: function () {
|
|
1324
|
-
return this.i.
|
|
1324
|
+
return this.i.c6;
|
|
1325
1325
|
},
|
|
1326
1326
|
set: function (v) {
|
|
1327
|
-
this.i.
|
|
1328
|
-
this._a("underlineWidth", this.i.
|
|
1327
|
+
this.i.c6 = +v;
|
|
1328
|
+
this._a("underlineWidth", this.i.c6);
|
|
1329
1329
|
},
|
|
1330
1330
|
enumerable: false,
|
|
1331
1331
|
configurable: true
|
|
@@ -1335,11 +1335,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1335
1335
|
* Gets the actual width to use for the underline element.
|
|
1336
1336
|
*/
|
|
1337
1337
|
get: function () {
|
|
1338
|
-
return this.i.
|
|
1338
|
+
return this.i.cl;
|
|
1339
1339
|
},
|
|
1340
1340
|
set: function (v) {
|
|
1341
|
-
this.i.
|
|
1342
|
-
this._a("actualUnderlineWidth", this.i.
|
|
1341
|
+
this.i.cl = +v;
|
|
1342
|
+
this._a("actualUnderlineWidth", this.i.cl);
|
|
1343
1343
|
},
|
|
1344
1344
|
enumerable: false,
|
|
1345
1345
|
configurable: true
|
|
@@ -1349,11 +1349,11 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1349
1349
|
* Whether to allow filtering of the combo
|
|
1350
1350
|
*/
|
|
1351
1351
|
get: function () {
|
|
1352
|
-
return this.i.
|
|
1352
|
+
return this.i.bg;
|
|
1353
1353
|
},
|
|
1354
1354
|
set: function (v) {
|
|
1355
|
-
this.i.
|
|
1356
|
-
this._a("allowFilter", this.i.
|
|
1355
|
+
this.i.bg = ensureBool(v);
|
|
1356
|
+
this._a("allowFilter", this.i.bg);
|
|
1357
1357
|
},
|
|
1358
1358
|
enumerable: false,
|
|
1359
1359
|
configurable: true
|
|
@@ -1377,10 +1377,10 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1377
1377
|
* Determines the name of the field in the data source will be used as the Text of the MultiColumnComboBox.
|
|
1378
1378
|
*/
|
|
1379
1379
|
get: function () {
|
|
1380
|
-
return this.i.
|
|
1380
|
+
return this.i.fv;
|
|
1381
1381
|
},
|
|
1382
1382
|
set: function (v) {
|
|
1383
|
-
this.i.
|
|
1383
|
+
this.i.fv = v;
|
|
1384
1384
|
},
|
|
1385
1385
|
enumerable: false,
|
|
1386
1386
|
configurable: true
|
|
@@ -1450,6 +1450,48 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1450
1450
|
enumerable: false,
|
|
1451
1451
|
configurable: true
|
|
1452
1452
|
});
|
|
1453
|
+
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "isFixed", {
|
|
1454
|
+
/**
|
|
1455
|
+
* Indicates that the dropdown will position itself relative to the window instead of the document.
|
|
1456
|
+
*/
|
|
1457
|
+
get: function () {
|
|
1458
|
+
return this.i.bn;
|
|
1459
|
+
},
|
|
1460
|
+
set: function (v) {
|
|
1461
|
+
this.i.bn = ensureBool(v);
|
|
1462
|
+
this._a("isFixed", this.i.bn);
|
|
1463
|
+
},
|
|
1464
|
+
enumerable: false,
|
|
1465
|
+
configurable: true
|
|
1466
|
+
});
|
|
1467
|
+
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "openAsChild", {
|
|
1468
|
+
/**
|
|
1469
|
+
* Indicates that the dropdown should open as a child of the combobox.
|
|
1470
|
+
*/
|
|
1471
|
+
get: function () {
|
|
1472
|
+
return this.i.bo;
|
|
1473
|
+
},
|
|
1474
|
+
set: function (v) {
|
|
1475
|
+
this.i.bo = ensureBool(v);
|
|
1476
|
+
this._a("openAsChild", this.i.bo);
|
|
1477
|
+
},
|
|
1478
|
+
enumerable: false,
|
|
1479
|
+
configurable: true
|
|
1480
|
+
});
|
|
1481
|
+
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "useTopLayer", {
|
|
1482
|
+
/**
|
|
1483
|
+
* Indicates that the dropdown will place itself into the browser top layer.
|
|
1484
|
+
*/
|
|
1485
|
+
get: function () {
|
|
1486
|
+
return this.i.br;
|
|
1487
|
+
},
|
|
1488
|
+
set: function (v) {
|
|
1489
|
+
this.i.br = ensureBool(v);
|
|
1490
|
+
this._a("useTopLayer", this.i.br);
|
|
1491
|
+
},
|
|
1492
|
+
enumerable: false,
|
|
1493
|
+
configurable: true
|
|
1494
|
+
});
|
|
1453
1495
|
IgcMultiColumnComboBoxComponent.prototype.findByName = function (name) {
|
|
1454
1496
|
if (this.findEphemera) {
|
|
1455
1497
|
if (name && name.indexOf("@@e:") == 0) {
|
|
@@ -1541,7 +1583,7 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1541
1583
|
|
|
1542
1584
|
*/
|
|
1543
1585
|
IgcMultiColumnComboBoxComponent.prototype.exportVisualModel = function () {
|
|
1544
|
-
var iv = this.i.
|
|
1586
|
+
var iv = this.i.c9();
|
|
1545
1587
|
return (iv);
|
|
1546
1588
|
};
|
|
1547
1589
|
/**
|
|
@@ -1549,7 +1591,7 @@ var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
1549
1591
|
|
|
1550
1592
|
*/
|
|
1551
1593
|
IgcMultiColumnComboBoxComponent.prototype.exportSerializedVisualModel = function () {
|
|
1552
|
-
var iv = this.i.
|
|
1594
|
+
var iv = this.i.ew();
|
|
1553
1595
|
return (iv);
|
|
1554
1596
|
};
|
|
1555
1597
|
Object.defineProperty(IgcMultiColumnComboBoxComponent.prototype, "gotFocus", {
|