igniteui-webcomponents-grids 4.0.4 → 4.2.3-alpha
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 +2059 -1378
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/BaseEditorView.js +30 -14
- package/esm2015/lib/CanvasGridCellBase.js +26 -26
- package/esm2015/lib/CanvasSummaryCell.js +2 -2
- package/esm2015/lib/CanvasTextHeaderCell.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +553 -389
- package/esm2015/lib/ColumnChooserView_combined.js +9 -9
- package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
- package/esm2015/lib/ColumnPinningView_combined.js +7 -7
- package/esm2015/lib/ComboEditorView.js +111 -105
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +401 -344
- package/esm2015/lib/DataGridCellLayoutPanel.js +5 -5
- package/esm2015/lib/DateEditorView.js +94 -87
- package/esm2015/lib/EditorCell.js +11 -11
- package/esm2015/lib/FilterCell.js +77 -61
- package/esm2015/lib/FilterCellPresenter.js +6 -3
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
- package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +51 -25
- package/esm2015/lib/GridExpansionIndicatorView_combined.js +8 -8
- package/esm2015/lib/GridFilterDialogView_combined.js +5 -5
- package/esm2015/lib/GridSortIndicatorView_combined.js +9 -9
- package/esm2015/lib/ISummaryChooserView_combined.js +12 -11
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +19 -19
- package/esm2015/lib/NumericEditorView.js +3 -3
- package/esm2015/lib/PropertyEditorView_combined.js +40 -40
- package/esm2015/lib/TextEditorView.js +82 -75
- package/esm2015/lib/igc-checkbox-list-component.js +155 -50
- package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
- package/esm2015/lib/igc-grid-column-options-component.js +21 -1
- package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
- package/esm5/lib/BaseEditorView.js +34 -14
- package/esm5/lib/CanvasGridCellBase.js +26 -26
- package/esm5/lib/CanvasSummaryCell.js +2 -2
- package/esm5/lib/CanvasTextHeaderCell.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +579 -375
- package/esm5/lib/ColumnChooserView_combined.js +9 -9
- package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm5/lib/ColumnGroupingView_combined.js +1 -1
- package/esm5/lib/ColumnPinningView_combined.js +7 -7
- package/esm5/lib/ComboEditorView.js +108 -102
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +408 -343
- package/esm5/lib/DataGridCellLayoutPanel.js +5 -5
- package/esm5/lib/DateEditorView.js +93 -86
- package/esm5/lib/EditorCell.js +11 -11
- package/esm5/lib/FilterCell.js +81 -61
- package/esm5/lib/FilterCellPresenter.js +6 -3
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
- package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +59 -25
- package/esm5/lib/GridExpansionIndicatorView_combined.js +8 -8
- package/esm5/lib/GridFilterDialogView_combined.js +5 -5
- package/esm5/lib/GridSortIndicatorView_combined.js +9 -9
- package/esm5/lib/ISummaryChooserView_combined.js +12 -11
- package/esm5/lib/MultiColumnComboBoxView_combined.js +19 -19
- package/esm5/lib/NumericEditorView.js +3 -3
- package/esm5/lib/PropertyEditorView_combined.js +40 -40
- package/esm5/lib/TextEditorView.js +82 -75
- package/esm5/lib/igc-checkbox-list-component.js +195 -50
- package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
- package/esm5/lib/igc-grid-column-options-component.js +29 -1
- package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
- package/fesm2015/igniteui-webcomponents-grids.js +1935 -1395
- package/fesm5/igniteui-webcomponents-grids.js +2057 -1376
- package/grids/3rdpartylicenses.txt +445 -0
- package/grids/combined.js +44 -90
- package/grids/index.d.ts +15 -0
- package/grids/lib/common.d.ts +0 -4
- package/grids/lib/grid-toolbar-exporter-type.d.ts +3 -0
- package/grids/lib/igc-base-date-time-filtering-operand.d.ts +18 -0
- package/grids/lib/igc-base-toolbar-column-actions-directive.d.ts +2 -1
- package/grids/lib/igc-boolean-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-cell-template-context.d.ts +2 -1
- package/grids/lib/igc-column-component.d.ts +3 -2
- package/grids/lib/igc-columns-auto-generated-event-args.d.ts +21 -0
- package/grids/lib/igc-date-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-date-summary-operand.d.ts +75 -0
- package/grids/lib/igc-date-time-filtering-operand.d.ts +15 -0
- package/grids/lib/igc-display-density-base.d.ts +1 -1
- package/grids/lib/igc-exporter-options-base.d.ts +2 -0
- package/grids/lib/igc-filtering-expression.d.ts +33 -0
- package/grids/lib/igc-filtering-expressions-tree.d.ts +6 -4
- package/grids/lib/igc-filtering-operand.d.ts +4 -2
- package/grids/lib/igc-filtering-operation.d.ts +4 -0
- package/grids/lib/igc-grid-base-directive.d.ts +23 -2
- package/grids/lib/igc-grid-component.d.ts +4 -4
- package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
- package/grids/lib/igc-grid-selection-range.d.ts +1 -0
- package/grids/lib/igc-grid-toolbar-exporter-component.d.ts +2 -1
- package/grids/lib/igc-grouped-records.d.ts +1 -1
- package/grids/lib/igc-number-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-number-summary-operand.d.ts +104 -0
- package/grids/lib/igc-pivot-date-dimension.d.ts +1 -20
- package/grids/lib/igc-pivot-grid-component.d.ts +12 -0
- package/grids/lib/igc-row-data-event-args.d.ts +4 -0
- package/grids/lib/igc-sorting-options.d.ts +3 -2
- package/grids/lib/igc-string-filtering-operand.d.ts +29 -0
- package/grids/lib/igc-summary-operand.d.ts +61 -0
- package/grids/lib/igc-time-filtering-operand.d.ts +15 -0
- package/grids/lib/igc-time-summary-operand.d.ts +49 -0
- package/grids/lib/sorting-options-mode.d.ts +3 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/BaseEditorView.d.ts +12 -8
- package/lib/CheckboxListView_combined.d.ts +120 -96
- package/lib/ColumnFilterCondition_combined.d.ts +2 -0
- package/lib/ComboEditorView.d.ts +15 -14
- package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView_combined.d.ts +105 -96
- package/lib/DateEditorView.d.ts +13 -12
- package/lib/FilterCell.d.ts +23 -20
- package/lib/GridColumnOptionsView_combined.d.ts +10 -5
- package/lib/GridColumnSummaryOptionsView_combined.d.ts +14 -9
- package/lib/IEditorView.d.ts +2 -0
- package/lib/TextEditorView.d.ts +10 -9
- package/lib/igc-checkbox-list-component.d.ts +40 -0
- package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
- package/lib/igc-grid-column-options-component.d.ts +8 -0
- package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
- package/package.json +4 -4
|
@@ -259,28 +259,28 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
259
259
|
* Gets or Sets the property name that contains the values.
|
|
260
260
|
*/
|
|
261
261
|
get dataMemberPath() {
|
|
262
|
-
return this.i.
|
|
262
|
+
return this.i.bc;
|
|
263
263
|
}
|
|
264
264
|
set dataMemberPath(v) {
|
|
265
|
-
this.i.
|
|
265
|
+
this.i.bc = v;
|
|
266
266
|
}
|
|
267
267
|
/**
|
|
268
268
|
* Gets or Sets the property name that contains the values.
|
|
269
269
|
*/
|
|
270
270
|
get selectedMemberPath() {
|
|
271
|
-
return this.i.
|
|
271
|
+
return this.i.b0;
|
|
272
272
|
}
|
|
273
273
|
set selectedMemberPath(v) {
|
|
274
|
-
this.i.
|
|
274
|
+
this.i.b0 = v;
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* Gets or Sets the property name that contains the values.
|
|
278
278
|
*/
|
|
279
279
|
get filterPlaceholderText() {
|
|
280
|
-
return this.i.
|
|
280
|
+
return this.i.bg;
|
|
281
281
|
}
|
|
282
282
|
set filterPlaceholderText(v) {
|
|
283
|
-
this.i.
|
|
283
|
+
this.i.bg = v;
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
286
|
* Gets or Sets the property name that contains the values.
|
|
@@ -296,29 +296,29 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
296
296
|
* Gets or Sets the property name that contains the values.
|
|
297
297
|
*/
|
|
298
298
|
get rowHeight() {
|
|
299
|
-
return this.i.
|
|
299
|
+
return this.i.ax;
|
|
300
300
|
}
|
|
301
301
|
set rowHeight(v) {
|
|
302
|
-
this.i.
|
|
303
|
-
this._a("rowHeight", this.i.
|
|
302
|
+
this.i.ax = +v;
|
|
303
|
+
this._a("rowHeight", this.i.ax);
|
|
304
304
|
}
|
|
305
305
|
get actualRowHeight() {
|
|
306
|
-
return this.i.
|
|
306
|
+
return this.i.av;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* Gets or Sets the property name that contains the values.
|
|
310
310
|
*/
|
|
311
311
|
get cellTextStyle() {
|
|
312
|
-
if (this.i.
|
|
312
|
+
if (this.i.ae == null) {
|
|
313
313
|
return null;
|
|
314
314
|
}
|
|
315
|
-
return this.i.
|
|
315
|
+
return this.i.ae.fontString;
|
|
316
316
|
}
|
|
317
317
|
set cellTextStyle(v) {
|
|
318
318
|
let fi = new FontInfo();
|
|
319
319
|
fi.fontString = v;
|
|
320
|
-
this.i.
|
|
321
|
-
this._a("cellTextStyle", this.i.
|
|
320
|
+
this.i.ae = fi;
|
|
321
|
+
this._a("cellTextStyle", this.i.ae != null ? this.i.ae.fontString : "");
|
|
322
322
|
}
|
|
323
323
|
/**
|
|
324
324
|
* Gets or Sets the property name that contains the values.
|
|
@@ -350,6 +350,111 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
350
350
|
this.i.aa = ensureEnum(ControlDisplayDensity_$type, v);
|
|
351
351
|
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.aa));
|
|
352
352
|
}
|
|
353
|
+
/**
|
|
354
|
+
* Gets or sets the search icon color.
|
|
355
|
+
*/
|
|
356
|
+
get searchIconColor() {
|
|
357
|
+
return brushToString(this.i.du);
|
|
358
|
+
}
|
|
359
|
+
set searchIconColor(v) {
|
|
360
|
+
this.i.du = stringToBrush(v);
|
|
361
|
+
this._a("searchIconColor", brushToString(this.i.du));
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* Gets or sets the search background color.
|
|
365
|
+
*/
|
|
366
|
+
get searchBackgroundColor() {
|
|
367
|
+
return brushToString(this.i.ds);
|
|
368
|
+
}
|
|
369
|
+
set searchBackgroundColor(v) {
|
|
370
|
+
this.i.ds = stringToBrush(v);
|
|
371
|
+
this._a("searchBackgroundColor", brushToString(this.i.ds));
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Gets or sets the search text color.
|
|
375
|
+
*/
|
|
376
|
+
get searchTextColor() {
|
|
377
|
+
return brushToString(this.i.dv);
|
|
378
|
+
}
|
|
379
|
+
set searchTextColor(v) {
|
|
380
|
+
this.i.dv = stringToBrush(v);
|
|
381
|
+
this._a("searchTextColor", brushToString(this.i.dv));
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* Gets or sets the search border color.
|
|
385
|
+
*/
|
|
386
|
+
get searchBorderColor() {
|
|
387
|
+
return brushToString(this.i.dt);
|
|
388
|
+
}
|
|
389
|
+
set searchBorderColor(v) {
|
|
390
|
+
this.i.dt = stringToBrush(v);
|
|
391
|
+
this._a("searchBorderColor", brushToString(this.i.dt));
|
|
392
|
+
}
|
|
393
|
+
/**
|
|
394
|
+
* Gets or sets the text style.
|
|
395
|
+
*/
|
|
396
|
+
get searchTextStyle() {
|
|
397
|
+
if (this.i.af == null) {
|
|
398
|
+
return null;
|
|
399
|
+
}
|
|
400
|
+
return this.i.af.fontString;
|
|
401
|
+
}
|
|
402
|
+
set searchTextStyle(v) {
|
|
403
|
+
let fi = new FontInfo();
|
|
404
|
+
fi.fontString = v;
|
|
405
|
+
this.i.af = fi;
|
|
406
|
+
this._a("searchTextStyle", this.i.af != null ? this.i.af.fontString : "");
|
|
407
|
+
}
|
|
408
|
+
/**
|
|
409
|
+
* Gets or sets the checkbox tick color.
|
|
410
|
+
*/
|
|
411
|
+
get checkboxTickColor() {
|
|
412
|
+
return brushToString(this.i.dl);
|
|
413
|
+
}
|
|
414
|
+
set checkboxTickColor(v) {
|
|
415
|
+
this.i.dl = stringToBrush(v);
|
|
416
|
+
this._a("checkboxTickColor", brushToString(this.i.dl));
|
|
417
|
+
}
|
|
418
|
+
/**
|
|
419
|
+
* Gets or sets the checkbox background color when checked.
|
|
420
|
+
*/
|
|
421
|
+
get checkboxCheckedBackgroundColor() {
|
|
422
|
+
return brushToString(this.i.dj);
|
|
423
|
+
}
|
|
424
|
+
set checkboxCheckedBackgroundColor(v) {
|
|
425
|
+
this.i.dj = stringToBrush(v);
|
|
426
|
+
this._a("checkboxCheckedBackgroundColor", brushToString(this.i.dj));
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* Gets or sets the checkbox background color when unchecked.
|
|
430
|
+
*/
|
|
431
|
+
get checkboxUncheckedBackgroundColor() {
|
|
432
|
+
return brushToString(this.i.dm);
|
|
433
|
+
}
|
|
434
|
+
set checkboxUncheckedBackgroundColor(v) {
|
|
435
|
+
this.i.dm = stringToBrush(v);
|
|
436
|
+
this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.dm));
|
|
437
|
+
}
|
|
438
|
+
/**
|
|
439
|
+
* Gets or sets the checkbox border color when checked.
|
|
440
|
+
*/
|
|
441
|
+
get checkboxCheckedBorderColor() {
|
|
442
|
+
return brushToString(this.i.dk);
|
|
443
|
+
}
|
|
444
|
+
set checkboxCheckedBorderColor(v) {
|
|
445
|
+
this.i.dk = stringToBrush(v);
|
|
446
|
+
this._a("checkboxCheckedBorderColor", brushToString(this.i.dk));
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* Gets or sets the checkbox border color when unchecked.
|
|
450
|
+
*/
|
|
451
|
+
get checkboxUncheckedBorderColor() {
|
|
452
|
+
return brushToString(this.i.dn);
|
|
453
|
+
}
|
|
454
|
+
set checkboxUncheckedBorderColor(v) {
|
|
455
|
+
this.i.dn = stringToBrush(v);
|
|
456
|
+
this._a("checkboxUncheckedBorderColor", brushToString(this.i.dn));
|
|
457
|
+
}
|
|
353
458
|
/**
|
|
354
459
|
* Gets or sets the style of scrollbar.
|
|
355
460
|
*/
|
|
@@ -364,90 +469,90 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
364
469
|
* Gets or sets the scrollbar background color.
|
|
365
470
|
*/
|
|
366
471
|
get scrollbarBackground() {
|
|
367
|
-
return brushToString(this.i.
|
|
472
|
+
return brushToString(this.i.dr);
|
|
368
473
|
}
|
|
369
474
|
set scrollbarBackground(v) {
|
|
370
|
-
this.i.
|
|
371
|
-
this._a("scrollbarBackground", brushToString(this.i.
|
|
475
|
+
this.i.dr = stringToBrush(v);
|
|
476
|
+
this._a("scrollbarBackground", brushToString(this.i.dr));
|
|
372
477
|
}
|
|
373
478
|
/**
|
|
374
479
|
* Gets / sets the caption of the "Select All" checkbox.
|
|
375
480
|
*/
|
|
376
481
|
get selectAllCaption() {
|
|
377
|
-
return this.i.
|
|
482
|
+
return this.i.bx;
|
|
378
483
|
}
|
|
379
484
|
set selectAllCaption(v) {
|
|
380
|
-
this.i.
|
|
485
|
+
this.i.bx = v;
|
|
381
486
|
}
|
|
382
487
|
/**
|
|
383
488
|
* Gets or sets the color to use for the "Select All" label.
|
|
384
489
|
*/
|
|
385
490
|
get selectAllCaptionTextColor() {
|
|
386
|
-
return brushToString(this.i.
|
|
491
|
+
return brushToString(this.i.dw);
|
|
387
492
|
}
|
|
388
493
|
set selectAllCaptionTextColor(v) {
|
|
389
|
-
this.i.
|
|
390
|
-
this._a("selectAllCaptionTextColor", brushToString(this.i.
|
|
494
|
+
this.i.dw = stringToBrush(v);
|
|
495
|
+
this._a("selectAllCaptionTextColor", brushToString(this.i.dw));
|
|
391
496
|
}
|
|
392
497
|
/**
|
|
393
498
|
* Gets or sets the color to use for the actual header selectAllCaption text.
|
|
394
499
|
*/
|
|
395
500
|
get actualSelectAllCaptionTextColor() {
|
|
396
|
-
return brushToString(this.i.
|
|
501
|
+
return brushToString(this.i.dh);
|
|
397
502
|
}
|
|
398
503
|
set actualSelectAllCaptionTextColor(v) {
|
|
399
|
-
this.i.
|
|
400
|
-
this._a("actualSelectAllCaptionTextColor", brushToString(this.i.
|
|
504
|
+
this.i.dh = stringToBrush(v);
|
|
505
|
+
this._a("actualSelectAllCaptionTextColor", brushToString(this.i.dh));
|
|
401
506
|
}
|
|
402
507
|
/**
|
|
403
508
|
* Gets / sets whether the "Select all" checkbox is visible.
|
|
404
509
|
*/
|
|
405
510
|
get showSelectAll() {
|
|
406
|
-
return this.i.
|
|
511
|
+
return this.i.as;
|
|
407
512
|
}
|
|
408
513
|
set showSelectAll(v) {
|
|
409
|
-
this.i.
|
|
410
|
-
this._a("showSelectAll", this.i.
|
|
514
|
+
this.i.as = ensureBool(v);
|
|
515
|
+
this._a("showSelectAll", this.i.as);
|
|
411
516
|
}
|
|
412
517
|
/**
|
|
413
518
|
* Gets or sets the color to use for the background of the component.
|
|
414
519
|
*/
|
|
415
520
|
get backgroundColor() {
|
|
416
|
-
return brushToString(this.i.
|
|
521
|
+
return brushToString(this.i.di);
|
|
417
522
|
}
|
|
418
523
|
set backgroundColor(v) {
|
|
419
|
-
this.i.
|
|
420
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
524
|
+
this.i.di = stringToBrush(v);
|
|
525
|
+
this._a("backgroundColor", brushToString(this.i.di));
|
|
421
526
|
}
|
|
422
527
|
/**
|
|
423
528
|
* Gets or sets the color to use for the text of the component.
|
|
424
529
|
*/
|
|
425
530
|
get textColor() {
|
|
426
|
-
return brushToString(this.i.
|
|
531
|
+
return brushToString(this.i.dy);
|
|
427
532
|
}
|
|
428
533
|
set textColor(v) {
|
|
429
|
-
this.i.
|
|
430
|
-
this._a("textColor", brushToString(this.i.
|
|
534
|
+
this.i.dy = stringToBrush(v);
|
|
535
|
+
this._a("textColor", brushToString(this.i.dy));
|
|
431
536
|
}
|
|
432
537
|
/**
|
|
433
538
|
* Gets or sets whether the filter input is visible.
|
|
434
539
|
*/
|
|
435
540
|
get showFilter() {
|
|
436
|
-
return this.i.
|
|
541
|
+
return this.i.aq;
|
|
437
542
|
}
|
|
438
543
|
set showFilter(v) {
|
|
439
|
-
this.i.
|
|
440
|
-
this._a("showFilter", this.i.
|
|
544
|
+
this.i.aq = ensureBool(v);
|
|
545
|
+
this._a("showFilter", this.i.aq);
|
|
441
546
|
}
|
|
442
547
|
/**
|
|
443
548
|
* Gets or sets whether row hover highlighting is enabled.
|
|
444
549
|
*/
|
|
445
550
|
get isRowHoverEnabled() {
|
|
446
|
-
return this.i.
|
|
551
|
+
return this.i.an;
|
|
447
552
|
}
|
|
448
553
|
set isRowHoverEnabled(v) {
|
|
449
|
-
this.i.
|
|
450
|
-
this._a("isRowHoverEnabled", this.i.
|
|
554
|
+
this.i.an = ensureBool(v);
|
|
555
|
+
this._a("isRowHoverEnabled", this.i.an);
|
|
451
556
|
}
|
|
452
557
|
findByName(name) {
|
|
453
558
|
if (this.findEphemera) {
|
|
@@ -518,17 +623,17 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
518
623
|
|
|
519
624
|
*/
|
|
520
625
|
selectAll() {
|
|
521
|
-
this.i.
|
|
626
|
+
this.i.cy();
|
|
522
627
|
}
|
|
523
628
|
/**
|
|
524
629
|
* Deselects all the items in the checkbox list.
|
|
525
630
|
|
|
526
631
|
*/
|
|
527
632
|
deselectAll() {
|
|
528
|
-
this.i.
|
|
633
|
+
this.i.b9();
|
|
529
634
|
}
|
|
530
635
|
notifySetItem(index, oldItem, newItem) {
|
|
531
|
-
this.i.
|
|
636
|
+
this.i.cg(index, oldItem, newItem);
|
|
532
637
|
}
|
|
533
638
|
/**
|
|
534
639
|
* Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
|
|
@@ -536,26 +641,26 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
536
641
|
|
|
537
642
|
*/
|
|
538
643
|
notifyClearItems() {
|
|
539
|
-
this.i.
|
|
644
|
+
this.i.cd();
|
|
540
645
|
}
|
|
541
646
|
notifyInsertItem(index, newItem) {
|
|
542
|
-
this.i.
|
|
647
|
+
this.i.ce(index, newItem);
|
|
543
648
|
}
|
|
544
649
|
notifyRemoveItem(index, oldItem) {
|
|
545
|
-
this.i.
|
|
650
|
+
this.i.cf(index, oldItem);
|
|
546
651
|
}
|
|
547
652
|
addKeyValue(value) {
|
|
548
|
-
this.i.
|
|
653
|
+
this.i.b6(value);
|
|
549
654
|
}
|
|
550
655
|
removeKeyValue(value) {
|
|
551
|
-
this.i.
|
|
656
|
+
this.i.cx(value);
|
|
552
657
|
}
|
|
553
658
|
/**
|
|
554
659
|
* Returns true if no items are selected / checked; otherwise false.
|
|
555
660
|
|
|
556
661
|
*/
|
|
557
662
|
isNothingSelected() {
|
|
558
|
-
let iv = this.i.
|
|
663
|
+
let iv = this.i.al();
|
|
559
664
|
return (iv);
|
|
560
665
|
}
|
|
561
666
|
/**
|
|
@@ -563,7 +668,7 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
563
668
|
|
|
564
669
|
*/
|
|
565
670
|
isEverythingSelected() {
|
|
566
|
-
let iv = this.i.
|
|
671
|
+
let iv = this.i.ak();
|
|
567
672
|
return (iv);
|
|
568
673
|
}
|
|
569
674
|
/**
|
|
@@ -6,7 +6,7 @@ import { IgcOperatorSelectorOpeningEventArgs } from "./igc-operator-selector-ope
|
|
|
6
6
|
import { IgcOperatorSelectorClosingEventArgs } from "./igc-operator-selector-closing-event-args";
|
|
7
7
|
import { ComparisonOperatorSelector } from "./ComparisonOperatorSelector";
|
|
8
8
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
9
|
-
import { NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, ensureEnum, enumToString, initializePropertiesFromCss } from "igniteui-webcomponents-core";
|
|
9
|
+
import { NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, ensureEnum, enumToString, brushToString, stringToBrush, initializePropertiesFromCss } from "igniteui-webcomponents-core";
|
|
10
10
|
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
11
11
|
/**
|
|
12
12
|
* A dropdown selector for choosing which comparison operator to use.
|
|
@@ -28,6 +28,8 @@ export let IgcDataGridComparisonOperatorSelectorComponent = /*@__PURE__*/ (() =>
|
|
|
28
28
|
this._valueChanged_wrapped = null;
|
|
29
29
|
this._opening = null;
|
|
30
30
|
this._opening_wrapped = null;
|
|
31
|
+
this._opened = null;
|
|
32
|
+
this._opened_wrapped = null;
|
|
31
33
|
this._closing = null;
|
|
32
34
|
this._closing_wrapped = null;
|
|
33
35
|
if (this._styling) {
|
|
@@ -153,20 +155,20 @@ export let IgcDataGridComparisonOperatorSelectorComponent = /*@__PURE__*/ (() =>
|
|
|
153
155
|
* Gets the ID for the custom filter that is selected. Value must be 'Custom' for this property to be valid.
|
|
154
156
|
*/
|
|
155
157
|
get customFilterID() {
|
|
156
|
-
return this.i.
|
|
158
|
+
return this.i.ae;
|
|
157
159
|
}
|
|
158
160
|
set customFilterID(v) {
|
|
159
|
-
this.i.
|
|
161
|
+
this.i.ae = v;
|
|
160
162
|
}
|
|
161
163
|
/**
|
|
162
164
|
* Gets the index for the custom filter that is selected. Value must be 'Custom' for this property to be valid.
|
|
163
165
|
*/
|
|
164
166
|
get customFilterIndex() {
|
|
165
|
-
return this.i.
|
|
167
|
+
return this.i.x;
|
|
166
168
|
}
|
|
167
169
|
set customFilterIndex(v) {
|
|
168
|
-
this.i.
|
|
169
|
-
this._a("customFilterIndex", this.i.
|
|
170
|
+
this.i.x = +v;
|
|
171
|
+
this._a("customFilterIndex", this.i.x);
|
|
170
172
|
}
|
|
171
173
|
/**
|
|
172
174
|
* Gets or sets the data type. Used to determine what operators are available.
|
|
@@ -179,137 +181,157 @@ export let IgcDataGridComparisonOperatorSelectorComponent = /*@__PURE__*/ (() =>
|
|
|
179
181
|
this._a("dataType", enumToString(DataSourceSchemaPropertyType_$type, this.i.d));
|
|
180
182
|
}
|
|
181
183
|
get maxHeight() {
|
|
182
|
-
return this.i.
|
|
184
|
+
return this.i.z;
|
|
183
185
|
}
|
|
184
186
|
set maxHeight(v) {
|
|
185
|
-
this.i.
|
|
186
|
-
this._a("maxHeight", this.i.
|
|
187
|
+
this.i.z = +v;
|
|
188
|
+
this._a("maxHeight", this.i.z);
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Gets or sets the text color.
|
|
192
|
+
*/
|
|
193
|
+
get textColor() {
|
|
194
|
+
return brushToString(this.i.eq);
|
|
195
|
+
}
|
|
196
|
+
set textColor(v) {
|
|
197
|
+
this.i.eq = stringToBrush(v);
|
|
198
|
+
this._a("textColor", brushToString(this.i.eq));
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Gets or sets the background color.
|
|
202
|
+
*/
|
|
203
|
+
get background() {
|
|
204
|
+
return brushToString(this.i.ep);
|
|
205
|
+
}
|
|
206
|
+
set background(v) {
|
|
207
|
+
this.i.ep = stringToBrush(v);
|
|
208
|
+
this._a("background", brushToString(this.i.ep));
|
|
187
209
|
}
|
|
188
210
|
get operatorCaptionTrue() {
|
|
189
|
-
return this.i.
|
|
211
|
+
return this.i.dd;
|
|
190
212
|
}
|
|
191
213
|
get operatorCaptionFalse() {
|
|
192
|
-
return this.i.
|
|
214
|
+
return this.i.ck;
|
|
193
215
|
}
|
|
194
216
|
get operatorCaptionEquals() {
|
|
195
|
-
return this.i.
|
|
217
|
+
return this.i.cj;
|
|
196
218
|
}
|
|
197
219
|
get operatorCaptionNotEquals() {
|
|
198
|
-
return this.i.
|
|
220
|
+
return this.i.cz;
|
|
199
221
|
}
|
|
200
222
|
get operatorCaptionLessThan() {
|
|
201
|
-
return this.i.
|
|
223
|
+
return this.i.cr;
|
|
202
224
|
}
|
|
203
225
|
get operatorCaptionLessThanOrEqual() {
|
|
204
|
-
return this.i.
|
|
226
|
+
return this.i.cs;
|
|
205
227
|
}
|
|
206
228
|
get operatorCaptionGreaterThan() {
|
|
207
|
-
return this.i.
|
|
229
|
+
return this.i.cl;
|
|
208
230
|
}
|
|
209
231
|
get operatorCaptionGreaterThanOrEqual() {
|
|
210
|
-
return this.i.
|
|
232
|
+
return this.i.cm;
|
|
211
233
|
}
|
|
212
234
|
get operatorCaptionTop() {
|
|
213
|
-
return this.i.
|
|
235
|
+
return this.i.db;
|
|
214
236
|
}
|
|
215
237
|
get operatorCaptionBottom() {
|
|
216
|
-
return this.i.
|
|
238
|
+
return this.i.cb;
|
|
217
239
|
}
|
|
218
240
|
get operatorCaptionTopPercentile() {
|
|
219
|
-
return this.i.
|
|
241
|
+
return this.i.dc;
|
|
220
242
|
}
|
|
221
243
|
get operatorCaptionBottomPercentile() {
|
|
222
|
-
return this.i.
|
|
244
|
+
return this.i.cc;
|
|
223
245
|
}
|
|
224
246
|
get operatorCaptionToday() {
|
|
225
|
-
return this.i.
|
|
247
|
+
return this.i.c9;
|
|
226
248
|
}
|
|
227
249
|
get operatorCaptionTomorrow() {
|
|
228
|
-
return this.i.
|
|
250
|
+
return this.i.da;
|
|
229
251
|
}
|
|
230
252
|
get operatorCaptionYesterday() {
|
|
231
|
-
return this.i.
|
|
253
|
+
return this.i.dg;
|
|
232
254
|
}
|
|
233
255
|
get operatorCaptionThisWeek() {
|
|
234
|
-
return this.i.
|
|
256
|
+
return this.i.c7;
|
|
235
257
|
}
|
|
236
258
|
get operatorCaptionNextWeek() {
|
|
237
|
-
return this.i.
|
|
259
|
+
return this.i.cw;
|
|
238
260
|
}
|
|
239
261
|
get operatorCaptionLastWeek() {
|
|
240
|
-
return this.i.
|
|
262
|
+
return this.i.cp;
|
|
241
263
|
}
|
|
242
264
|
get operatorCaptionThisMonth() {
|
|
243
|
-
return this.i.
|
|
265
|
+
return this.i.c5;
|
|
244
266
|
}
|
|
245
267
|
get operatorCaptionNextMonth() {
|
|
246
|
-
return this.i.
|
|
268
|
+
return this.i.cu;
|
|
247
269
|
}
|
|
248
270
|
get operatorCaptionLastMonth() {
|
|
249
|
-
return this.i.
|
|
271
|
+
return this.i.cn;
|
|
250
272
|
}
|
|
251
273
|
get operatorCaptionThisQuarter() {
|
|
252
|
-
return this.i.
|
|
274
|
+
return this.i.c6;
|
|
253
275
|
}
|
|
254
276
|
get operatorCaptionNextQuarter() {
|
|
255
|
-
return this.i.
|
|
277
|
+
return this.i.cv;
|
|
256
278
|
}
|
|
257
279
|
get operatorCaptionLastQuarter() {
|
|
258
|
-
return this.i.
|
|
280
|
+
return this.i.co;
|
|
259
281
|
}
|
|
260
282
|
get operatorCaptionThisYear() {
|
|
261
|
-
return this.i.
|
|
283
|
+
return this.i.c8;
|
|
262
284
|
}
|
|
263
285
|
get operatorCaptionNextYear() {
|
|
264
|
-
return this.i.
|
|
286
|
+
return this.i.cx;
|
|
265
287
|
}
|
|
266
288
|
get operatorCaptionLastYear() {
|
|
267
|
-
return this.i.
|
|
289
|
+
return this.i.cq;
|
|
268
290
|
}
|
|
269
291
|
get operatorCaptionYearToDate() {
|
|
270
|
-
return this.i.
|
|
292
|
+
return this.i.df;
|
|
271
293
|
}
|
|
272
294
|
get operatorCaptionQ1() {
|
|
273
|
-
return this.i.
|
|
295
|
+
return this.i.c0;
|
|
274
296
|
}
|
|
275
297
|
get operatorCaptionQ2() {
|
|
276
|
-
return this.i.
|
|
298
|
+
return this.i.c1;
|
|
277
299
|
}
|
|
278
300
|
get operatorCaptionQ3() {
|
|
279
|
-
return this.i.
|
|
301
|
+
return this.i.c2;
|
|
280
302
|
}
|
|
281
303
|
get operatorCaptionQ4() {
|
|
282
|
-
return this.i.
|
|
304
|
+
return this.i.c3;
|
|
283
305
|
}
|
|
284
306
|
get operatorCaptionMonth() {
|
|
285
|
-
return this.i.
|
|
307
|
+
return this.i.ct;
|
|
286
308
|
}
|
|
287
309
|
get operatorCaptionYear() {
|
|
288
|
-
return this.i.
|
|
310
|
+
return this.i.de;
|
|
289
311
|
}
|
|
290
312
|
get operatorCaptionStartsWith() {
|
|
291
|
-
return this.i.
|
|
313
|
+
return this.i.c4;
|
|
292
314
|
}
|
|
293
315
|
get operatorCaptionDoesNotStartWith() {
|
|
294
|
-
return this.i.
|
|
316
|
+
return this.i.cg;
|
|
295
317
|
}
|
|
296
318
|
get operatorCaptionEndsWith() {
|
|
297
|
-
return this.i.
|
|
319
|
+
return this.i.ci;
|
|
298
320
|
}
|
|
299
321
|
get operatorCaptionDoesNotEndWith() {
|
|
300
|
-
return this.i.
|
|
322
|
+
return this.i.cf;
|
|
301
323
|
}
|
|
302
324
|
get operatorCaptionContains() {
|
|
303
|
-
return this.i.
|
|
325
|
+
return this.i.cd;
|
|
304
326
|
}
|
|
305
327
|
get operatorCaptionDoesNotContain() {
|
|
306
|
-
return this.i.
|
|
328
|
+
return this.i.ce;
|
|
307
329
|
}
|
|
308
330
|
get operatorCaptionEmpty() {
|
|
309
|
-
return this.i.
|
|
331
|
+
return this.i.ch;
|
|
310
332
|
}
|
|
311
333
|
get operatorCaptionNotEmpty() {
|
|
312
|
-
return this.i.
|
|
334
|
+
return this.i.cy;
|
|
313
335
|
}
|
|
314
336
|
findByName(name) {
|
|
315
337
|
if (this.findEphemera) {
|
|
@@ -373,29 +395,29 @@ export let IgcDataGridComparisonOperatorSelectorComponent = /*@__PURE__*/ (() =>
|
|
|
373
395
|
this._inStyling = false;
|
|
374
396
|
}
|
|
375
397
|
provideContainer(container) {
|
|
376
|
-
this.i.
|
|
398
|
+
this.i.ej(container);
|
|
377
399
|
}
|
|
378
400
|
dispose() {
|
|
379
|
-
this.i.
|
|
401
|
+
this.i.ea();
|
|
380
402
|
}
|
|
381
403
|
getDropdownHeight() {
|
|
382
|
-
let iv = this.i.
|
|
404
|
+
let iv = this.i.y();
|
|
383
405
|
return (iv);
|
|
384
406
|
}
|
|
385
407
|
toggle() {
|
|
386
|
-
this.i.
|
|
408
|
+
this.i.em();
|
|
387
409
|
}
|
|
388
410
|
close() {
|
|
389
|
-
this.i.
|
|
411
|
+
this.i.d8();
|
|
390
412
|
}
|
|
391
413
|
addCustomOperator(name, icon, id, index) {
|
|
392
|
-
this.i.
|
|
414
|
+
this.i.d1(name, icon, id, index);
|
|
393
415
|
}
|
|
394
416
|
clearCustomOperators() {
|
|
395
|
-
this.i.
|
|
417
|
+
this.i.d7();
|
|
396
418
|
}
|
|
397
419
|
selectCustomFilter(id, index) {
|
|
398
|
-
this.i.
|
|
420
|
+
this.i.ek(id, index);
|
|
399
421
|
}
|
|
400
422
|
get valueChanged() {
|
|
401
423
|
return this._valueChanged;
|
|
@@ -443,6 +465,29 @@ export let IgcDataGridComparisonOperatorSelectorComponent = /*@__PURE__*/ (() =>
|
|
|
443
465
|
this.i.opening = delegateCombine(this.i.opening, this._opening_wrapped);
|
|
444
466
|
;
|
|
445
467
|
}
|
|
468
|
+
get opened() {
|
|
469
|
+
return this._opened;
|
|
470
|
+
}
|
|
471
|
+
set opened(ev) {
|
|
472
|
+
if (this._opened_wrapped !== null) {
|
|
473
|
+
this.i.opened = delegateRemove(this.i.opened, this._opened_wrapped);
|
|
474
|
+
this._opened_wrapped = null;
|
|
475
|
+
this._opened = null;
|
|
476
|
+
}
|
|
477
|
+
this._opened = ev;
|
|
478
|
+
this._opened_wrapped = (o, e) => {
|
|
479
|
+
let outerArgs = new IgcOperatorSelectorOpeningEventArgs();
|
|
480
|
+
outerArgs._provideImplementation(e);
|
|
481
|
+
if (this.beforeOpened) {
|
|
482
|
+
this.beforeOpened(this, outerArgs);
|
|
483
|
+
}
|
|
484
|
+
if (this._opened) {
|
|
485
|
+
this._opened(this, outerArgs);
|
|
486
|
+
}
|
|
487
|
+
};
|
|
488
|
+
this.i.opened = delegateCombine(this.i.opened, this._opened_wrapped);
|
|
489
|
+
;
|
|
490
|
+
}
|
|
446
491
|
get closing() {
|
|
447
492
|
return this._closing;
|
|
448
493
|
}
|