igniteui-webcomponents-grids 5.3.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.
Files changed (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -149,12 +149,12 @@ import { GridConditionFilterStringErrorsParsingEventArgs } from "./GridCondition
149
149
  import { CellStyleRequestedEventArgs } from "./CellStyleRequestedEventArgs";
150
150
  import { IToolbarTarget } from "igniteui-webcomponents-core";
151
151
  import { ToolCommand } from "igniteui-webcomponents-core";
152
- import { IToolbarContextAccessor } from "igniteui-webcomponents-core";
153
152
  import { LayoutAction } from "./LayoutAction";
154
153
  import { ToolActionInfo } from "igniteui-webcomponents-core";
155
154
  import { ICommandAvailabilityListener } from "igniteui-webcomponents-core";
156
155
  import { ICommandStateChangedListener } from "igniteui-webcomponents-core";
157
156
  import { ToolCommandExecutionState } from "igniteui-webcomponents-core";
157
+ import { IToolbarContextAccessor } from "igniteui-webcomponents-core";
158
158
  import { JsonWriter } from "igniteui-webcomponents-core";
159
159
  import { CalculationParameters } from "./CalculationParameters";
160
160
  import { ColumnPropertySettersCollection } from "./ColumnPropertySettersCollection";
@@ -3190,8 +3190,8 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3190
3190
  protected cs(): any;
3191
3191
  protected ct(): any;
3192
3192
  protected at(a: GridConditionalStyle): boolean;
3193
+ protected nz(): Brush;
3193
3194
  protected ny(): Brush;
3194
- protected nx(): Brush;
3195
3195
  private static kn;
3196
3196
  ko: number;
3197
3197
  private hs;
@@ -3233,24 +3233,24 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3233
3233
  private ks;
3234
3234
  get k3(): string;
3235
3235
  set k3(a: string);
3236
- private np;
3237
- get n1(): Brush;
3238
- set n1(a: Brush);
3239
- private nk;
3240
- get nu(): Brush;
3241
- set nu(a: Brush);
3242
- private nn;
3243
- get nz(): Brush;
3244
- set nz(a: Brush);
3245
- private ni;
3246
- get ns(): Brush;
3247
- set ns(a: Brush);
3236
+ private nq;
3237
+ get n2(): Brush;
3238
+ set n2(a: Brush);
3239
+ private nl;
3240
+ get nv(): Brush;
3241
+ set nv(a: Brush);
3248
3242
  private no;
3249
3243
  get n0(): Brush;
3250
3244
  set n0(a: Brush);
3251
3245
  private nj;
3252
3246
  get nt(): Brush;
3253
3247
  set nt(a: Brush);
3248
+ private np;
3249
+ get n1(): Brush;
3250
+ set n1(a: Brush);
3251
+ private nk;
3252
+ get nu(): Brush;
3253
+ set nu(a: Brush);
3254
3254
  private h5;
3255
3255
  get h6(): GridColumnAnimationSettings;
3256
3256
  set h6(a: GridColumnAnimationSettings);
@@ -3260,15 +3260,15 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3260
3260
  private jx;
3261
3261
  get j0(): number;
3262
3262
  set j0(a: number);
3263
- private i6;
3264
- get jo(): boolean;
3265
- set jo(a: boolean);
3266
- private i0;
3267
- get ji(): boolean;
3268
- set ji(a: boolean);
3269
- private i9;
3270
- get jr(): boolean;
3271
- set jr(a: boolean);
3263
+ private i5;
3264
+ get jn(): boolean;
3265
+ set jn(a: boolean);
3266
+ private iz;
3267
+ get jh(): boolean;
3268
+ set jh(a: boolean);
3269
+ private i8;
3270
+ get jq(): boolean;
3271
+ set jq(a: boolean);
3272
3272
  private g0;
3273
3273
  get g1(): ColumnFilterCondition;
3274
3274
  set g1(a: ColumnFilterCondition);
@@ -3278,85 +3278,85 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3278
3278
  private h9;
3279
3279
  get header(): Header;
3280
3280
  set header(a: Header);
3281
- private i5;
3282
- get jn(): boolean;
3283
- set jn(a: boolean);
3284
- private i8;
3285
- get jq(): boolean;
3286
- set jq(a: boolean);
3281
+ private i4;
3282
+ get jm(): boolean;
3283
+ set jm(a: boolean);
3287
3284
  private i7;
3288
3285
  get jp(): boolean;
3289
3286
  set jp(a: boolean);
3290
- private ja;
3291
- get jt(): boolean;
3292
- set jt(a: boolean);
3287
+ private i6;
3288
+ get jo(): boolean;
3289
+ set jo(a: boolean);
3290
+ private i9;
3291
+ get js(): boolean;
3292
+ set js(a: boolean);
3293
3293
  private hq;
3294
3294
  get hr(): ColumnSortDirection;
3295
3295
  set hr(a: ColumnSortDirection);
3296
3296
  private ij;
3297
3297
  get il(): PinnedPositions;
3298
3298
  set il(a: PinnedPositions);
3299
- private iz;
3300
- get jh(): boolean;
3301
- set jh(a: boolean);
3302
- get je(): boolean;
3299
+ private iy;
3300
+ get jg(): boolean;
3301
+ set jg(a: boolean);
3302
+ get jd(): boolean;
3303
3303
  private hg;
3304
3304
  get hi(): ColumnOptionsIconAlignment;
3305
3305
  set hi(a: ColumnOptionsIconAlignment);
3306
3306
  private hh;
3307
3307
  get hj(): ColumnOptionsIconAlignment;
3308
3308
  set hj(a: ColumnOptionsIconAlignment);
3309
- private ng;
3310
- get nq(): Brush;
3311
- set nq(a: Brush);
3312
- private nl;
3313
- get nv(): Brush;
3314
- set nv(a: Brush);
3309
+ private nh;
3310
+ get nr(): Brush;
3311
+ set nr(a: Brush);
3312
+ private nm;
3313
+ get nw(): Brush;
3314
+ set nw(a: Brush);
3315
3315
  private hl;
3316
3316
  get hn(): ColumnOptionsIconBehavior;
3317
3317
  set hn(a: ColumnOptionsIconBehavior);
3318
3318
  private hk;
3319
3319
  get hm(): ColumnOptionsIconBehavior;
3320
3320
  set hm(a: ColumnOptionsIconBehavior);
3321
+ private iu;
3322
+ get ja(): boolean;
3323
+ set ja(a: boolean);
3324
+ private i0;
3325
+ get ji(): boolean;
3326
+ set ji(a: boolean);
3327
+ private iw;
3328
+ get jc(): boolean;
3329
+ set jc(a: boolean);
3330
+ private i2;
3331
+ get jk(): boolean;
3332
+ set jk(a: boolean);
3321
3333
  private iv;
3322
3334
  get jb(): boolean;
3323
3335
  set jb(a: boolean);
3324
3336
  private i1;
3325
3337
  get jj(): boolean;
3326
3338
  set jj(a: boolean);
3327
- private ix;
3328
- get jd(): boolean;
3329
- set jd(a: boolean);
3330
3339
  private i3;
3331
3340
  get jl(): boolean;
3332
3341
  set jl(a: boolean);
3333
- private iw;
3334
- get jc(): boolean;
3335
- set jc(a: boolean);
3336
- private i2;
3337
- get jk(): boolean;
3338
- set jk(a: boolean);
3339
- private i4;
3340
- get jm(): boolean;
3341
- set jm(a: boolean);
3342
- private nm;
3343
- get nw(): Brush;
3344
- set nw(a: Brush);
3345
- private nh;
3346
- get nr(): Brush;
3347
- set nr(a: Brush);
3342
+ private nn;
3343
+ get nx(): Brush;
3344
+ set nx(a: Brush);
3345
+ private ni;
3346
+ get ns(): Brush;
3347
+ set ns(a: Brush);
3348
3348
  private jw;
3349
3349
  get jz(): number;
3350
3350
  set jz(a: number);
3351
3351
  private jv;
3352
3352
  get jy(): number;
3353
3353
  set jy(a: number);
3354
- private is;
3354
+ private ir;
3355
3355
  get textEditStyle(): FontInfo;
3356
3356
  set textEditStyle(a: FontInfo);
3357
- private ir;
3358
- get it(): FontInfo;
3359
- set it(a: FontInfo);
3357
+ private iq;
3358
+ get is(): FontInfo;
3359
+ set is(a: FontInfo);
3360
3360
  private hy;
3361
3361
  get hz(): EditorType;
3362
3362
  set hz(a: EditorType);
@@ -3403,7 +3403,7 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3403
3403
  private mt;
3404
3404
  ig(): MergedCellMode;
3405
3405
  ic(): MergedCellEvaluationCriteria;
3406
- js(): boolean;
3406
+ jr(): boolean;
3407
3407
  protected go(): Brush;
3408
3408
  protected gq(): Brush;
3409
3409
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
@@ -3412,47 +3412,47 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3412
3412
  protected hb(): CellContentVerticalAlignment;
3413
3413
  protected g5(): CellContentHorizontalAlignment;
3414
3414
  protected g9(): CellContentVerticalAlignment;
3415
- private nc;
3416
- private my;
3415
+ private nd;
3416
+ private mz;
3417
3417
  protected eq(a: DataGrid, b: DataGrid): void;
3418
3418
  protected es(a: any, b: PropertyChangedEventArgs): void;
3419
- nd(): void;
3420
3419
  ne(): void;
3421
3420
  nf(): void;
3421
+ ng(): void;
3422
3422
  protected e5(): void;
3423
3423
  protected fh(): void;
3424
3424
  protected fi(): void;
3425
3425
  protected ff(): void;
3426
- protected m9(): void;
3427
- protected nb(): void;
3428
3426
  protected na(): void;
3427
+ protected nc(): void;
3428
+ protected nb(): void;
3429
3429
  protected fe(): void;
3430
3430
  protected fg(): void;
3431
3431
  protected fd(): void;
3432
- protected m3(): void;
3433
- protected m7(): void;
3434
- protected m6(): void;
3435
3432
  protected m4(): void;
3436
3433
  protected m8(): void;
3434
+ protected m7(): void;
3437
3435
  protected m5(): void;
3436
+ protected m9(): void;
3437
+ protected m6(): void;
3438
3438
  columnCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3439
3439
  columnHeaderCellsPropertyUpdating: (column: DataGridColumn, propertyName: string, propertyAnimationType: CellPropertyAnimationType, oldValue: any, newValue: any) => void;
3440
- protected m2(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3440
+ protected m3(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3441
3441
  hf(): ColumnHidingAnimationMode;
3442
3442
  hp(): ColumnShowingAnimationMode;
3443
3443
  he(): ColumnExchangingAnimationMode;
3444
3444
  ho(): ColumnResizingAnimationMode;
3445
3445
  lt(): string;
3446
- private ip;
3447
- private iy;
3448
- m1(a: string, b: CellPropertyAnimationType, c: any): void;
3449
- jg(): boolean;
3450
- get iq(): FastIterationDictionary$2<string, any>;
3451
- jf(a: string): boolean;
3452
- m0(a: string): void;
3446
+ private io;
3447
+ private ix;
3448
+ m2(a: string, b: CellPropertyAnimationType, c: any): void;
3449
+ jf(): boolean;
3450
+ get ip(): FastIterationDictionary$2<string, any>;
3451
+ je(a: string): boolean;
3452
+ m1(a: string): void;
3453
3453
  kr(a: string): any;
3454
3454
  ju: List$1<LayoutAction>;
3455
- mz(a: string): void;
3455
+ m0(a: string): void;
3456
3456
  mv(a: ColumnComparisonConditionOperatorType, b: any): void;
3457
3457
  mu(a: string, b: number, c: any): void;
3458
3458
  g4(a: FilterOperand, b: any): IFilterExpression;
@@ -3472,9 +3472,11 @@ export declare abstract class DataGridColumn extends DefinitionBase implements I
3472
3472
  private _invalidateActions;
3473
3473
  get invalidateActions(): () => void;
3474
3474
  set invalidateActions(a: () => void);
3475
- private im;
3476
- get io(): IToolbarContextAccessor;
3475
+ private jt;
3476
+ im(): IToolbarContextAccessor;
3477
+ my(a: (arg1: IToolbarContextAccessor) => void): void;
3477
3478
  provideContextAccessor(a: IToolbarContextAccessor): void;
3479
+ dismissContextAccessor(a: IToolbarContextAccessor): void;
3478
3480
  mx(): void;
3479
3481
  }
3480
3482
  /**
@@ -3788,17 +3790,17 @@ export declare class ColumnMovingSeparator extends DefinitionBase {
3788
3790
  export declare class ComboBoxColumn extends DataGridColumn {
3789
3791
  static $t: Type;
3790
3792
  constructor();
3791
- private n3;
3792
- get n4(): IDataSource;
3793
- set n4(a: IDataSource);
3794
- get n5(): any;
3795
- set n5(a: any);
3796
- get n9(): string;
3797
- set n9(a: string);
3793
+ private n4;
3794
+ get n5(): IDataSource;
3795
+ set n5(a: IDataSource);
3796
+ get n6(): any;
3797
+ set n6(a: any);
3798
3798
  get oa(): string;
3799
3799
  set oa(a: string);
3800
- get n2(): string[];
3801
- set n2(a: string[]);
3800
+ get ob(): string;
3801
+ set ob(a: string);
3802
+ get n3(): string[];
3803
+ set n3(a: string[]);
3802
3804
  protected n(a: CellPath): CellModel;
3803
3805
  protected d2(a: CellPath, b: DataGrid, c: any): string;
3804
3806
  protected eq(a: DataGrid, b: DataGrid): void;
@@ -3806,43 +3808,43 @@ export declare class ComboBoxColumn extends DataGridColumn {
3806
3808
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3807
3809
  el(a: CellModel, b: DataGrid, c: any, d: any): void;
3808
3810
  protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3809
- private ob;
3810
3811
  private oc;
3811
- private n7;
3812
- n8(a: any): string;
3812
+ private od;
3813
+ private n8;
3814
+ n9(a: any): string;
3813
3815
  }
3814
3816
  /**
3815
3817
  * @hidden
3816
3818
  */
3817
3819
  export declare class DateTimeColumn extends DataGridColumn {
3818
3820
  static $t: Type;
3819
- private n5;
3820
3821
  private n6;
3821
- get n7(): DateTimeFormats;
3822
- set n7(a: DateTimeFormats);
3822
+ private n7;
3823
+ get n8(): DateTimeFormats;
3824
+ set n8(a: DateTimeFormats);
3825
+ private oh;
3826
+ get oq(): string;
3827
+ set oq(a: string);
3823
3828
  private og;
3824
- get op(): string;
3825
- set op(a: string);
3826
- private of;
3827
- get oi(): string;
3828
- set oi(a: string);
3829
- private n2;
3830
- get n3(): any[];
3831
- set n3(a: any[]);
3832
- private oc;
3829
+ get oj(): string;
3830
+ set oj(a: string);
3831
+ private n3;
3832
+ get n4(): any[];
3833
+ set n4(a: any[]);
3834
+ private od;
3835
+ get of(): any;
3836
+ set of(a: any);
3837
+ private oa;
3838
+ get ob(): boolean;
3839
+ set ob(a: boolean);
3840
+ get n9(): EditorType;
3841
+ set n9(a: EditorType);
3833
3842
  get oe(): any;
3834
3843
  set oe(a: any);
3835
- private n9;
3836
- get oa(): boolean;
3837
- set oa(a: boolean);
3838
- get n8(): EditorType;
3839
- set n8(a: EditorType);
3840
- get od(): any;
3841
- set od(a: any);
3842
- get ok(): string;
3843
- set ok(a: string);
3844
3844
  get ol(): string;
3845
3845
  set ol(a: string);
3846
+ get om(): string;
3847
+ set om(a: string);
3846
3848
  protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
3847
3849
  constructor();
3848
3850
  protected n(a: CellPath): CellModel;
@@ -3850,9 +3852,9 @@ export declare class DateTimeColumn extends DataGridColumn {
3850
3852
  dz(a: DataGrid, b: any, c: any): string;
3851
3853
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
3852
3854
  el(a: CellModel, b: DataGrid, c: any, d: any): void;
3853
- private ob;
3854
- n4: BindingFormatter;
3855
- private om;
3855
+ private oc;
3856
+ n5: BindingFormatter;
3857
+ private on;
3856
3858
  }
3857
3859
  /**
3858
3860
  * @hidden
@@ -4126,20 +4128,20 @@ export declare class HeaderSeparator extends DefinitionBase {
4126
4128
  */
4127
4129
  export declare class ImageColumn extends DataGridColumn {
4128
4130
  static $t: Type;
4129
- private n5;
4130
- get n6(): ImageStretchOptions;
4131
- set n6(a: ImageStretchOptions);
4132
- private n3;
4133
- get n4(): ImageResourceType;
4134
- set n4(a: ImageResourceType);
4135
- get n2(): EditorType;
4136
- set n2(a: EditorType);
4137
- get n7(): any;
4138
- set n7(a: any);
4139
- get n8(): string;
4140
- set n8(a: string);
4131
+ private n6;
4132
+ get n7(): ImageStretchOptions;
4133
+ set n7(a: ImageStretchOptions);
4134
+ private n4;
4135
+ get n5(): ImageResourceType;
4136
+ set n5(a: ImageResourceType);
4137
+ get n3(): EditorType;
4138
+ set n3(a: EditorType);
4139
+ get n8(): any;
4140
+ set n8(a: any);
4141
4141
  get n9(): string;
4142
4142
  set n9(a: string);
4143
+ get oa(): string;
4144
+ set oa(a: string);
4143
4145
  constructor();
4144
4146
  protected k(): CellContentVerticalAlignment;
4145
4147
  protected g5(): CellContentHorizontalAlignment;
@@ -4149,7 +4151,7 @@ export declare class ImageColumn extends DataGridColumn {
4149
4151
  protected d2(a: CellPath, b: DataGrid, c: any): string;
4150
4152
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4151
4153
  el(a: CellModel, b: DataGrid, c: any, d: any): void;
4152
- private oa;
4154
+ private ob;
4153
4155
  }
4154
4156
  /**
4155
4157
  * @hidden
@@ -4169,56 +4171,56 @@ export declare class NumericColumn extends DataGridColumn {
4169
4171
  static $t: Type;
4170
4172
  constructor();
4171
4173
  protected f(): CellContentHorizontalAlignment;
4172
- private oj;
4173
- get ox(): string;
4174
- set ox(a: string);
4175
- private ol;
4176
- get o1(): string;
4177
- set o1(a: string);
4178
4174
  private ok;
4179
- get oz(): string;
4180
- set oz(a: string);
4175
+ get oy(): string;
4176
+ set oy(a: string);
4181
4177
  private om;
4182
- get o3(): string;
4183
- set o3(a: string);
4184
- private n9;
4185
- get oc(): number;
4186
- set oc(a: number);
4178
+ get o2(): string;
4179
+ set o2(a: string);
4180
+ private ol;
4181
+ get o0(): string;
4182
+ set o0(a: string);
4183
+ private on;
4184
+ get o4(): string;
4185
+ set o4(a: string);
4187
4186
  private oa;
4188
4187
  get od(): number;
4189
4188
  set od(a: number);
4190
4189
  private ob;
4191
4190
  get oe(): number;
4192
4191
  set oe(a: number);
4193
- private n6;
4194
- get n7(): boolean;
4195
- set n7(a: boolean);
4196
- private oi;
4197
- get os(): string;
4198
- set os(a: string);
4199
- private n2;
4200
- get n3(): any[];
4201
- set n3(a: any[]);
4202
- private of;
4192
+ private oc;
4193
+ get of(): number;
4194
+ set of(a: number);
4195
+ private n7;
4196
+ get n8(): boolean;
4197
+ set n8(a: boolean);
4198
+ private oj;
4199
+ get ot(): string;
4200
+ set ot(a: string);
4201
+ private n3;
4202
+ get n4(): any[];
4203
+ set n4(a: any[]);
4204
+ private og;
4205
+ get oi(): any;
4206
+ set oi(a: any);
4207
+ get n6(): EditorType;
4208
+ set n6(a: EditorType);
4203
4209
  get oh(): any;
4204
4210
  set oh(a: any);
4205
- get n5(): EditorType;
4206
- set n5(a: EditorType);
4207
- get og(): any;
4208
- set og(a: any);
4209
- get on(): string;
4210
- set on(a: string);
4211
4211
  get oo(): string;
4212
4212
  set oo(a: string);
4213
- n4: BindingFormatter;
4213
+ get op(): string;
4214
+ set op(a: string);
4215
+ n5: BindingFormatter;
4214
4216
  protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4215
4217
  protected n(a: CellPath): CellModel;
4216
4218
  protected d2(a: CellPath, b: DataGrid, c: any): string;
4217
4219
  dz(a: DataGrid, b: any, c: any): string;
4218
4220
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4219
4221
  el(a: CellModel, b: DataGrid, c: any, d: any): void;
4220
- private n8;
4221
- private op;
4222
+ private n9;
4223
+ private oq;
4222
4224
  }
4223
4225
  /**
4224
4226
  * @hidden
@@ -4430,7 +4432,7 @@ export declare class TemplateColumn extends DataGridColumn {
4430
4432
  protected d2(a: CellPath, b: DataGrid, c: any): string;
4431
4433
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4432
4434
  el(a: CellModel, b: DataGrid, c: any, d: any): void;
4433
- n3(a: TemplateCellModel, b: any): void;
4435
+ n4(a: TemplateCellModel, b: any): void;
4434
4436
  cellUpdating: (sender: any, args: TemplateCellUpdatingEventArgs) => void;
4435
4437
  protected ev(a: string, b: CellPropertyAnimationType, c: any, d: any): void;
4436
4438
  }
@@ -4451,22 +4453,22 @@ export declare class TemplateCellUpdatingEventArgs extends EventArgs {
4451
4453
  */
4452
4454
  export declare class TextColumn extends DataGridColumn {
4453
4455
  static $t: Type;
4454
- private n4;
4455
- get n8(): string;
4456
- set n8(a: string);
4457
- get n2(): EditorType;
4458
- set n2(a: EditorType);
4459
- get n3(): any;
4460
- set n3(a: any);
4461
- get n5(): string;
4462
- set n5(a: string);
4456
+ private n5;
4457
+ get n9(): string;
4458
+ set n9(a: string);
4459
+ get n3(): EditorType;
4460
+ set n3(a: EditorType);
4461
+ get n4(): any;
4462
+ set n4(a: any);
4463
4463
  get n6(): string;
4464
4464
  set n6(a: string);
4465
+ get n7(): string;
4466
+ set n7(a: string);
4465
4467
  protected n(a: CellPath): CellModel;
4466
4468
  eo(a: CellModel, b: DataGrid, c: any, d: any): void;
4467
4469
  el(a: CellModel, b: DataGrid, c: any, d: any): void;
4468
4470
  dz(a: DataGrid, b: any, c: any): string;
4469
- private n7;
4471
+ private n8;
4470
4472
  protected d2(a: CellPath, b: DataGrid, c: any): string;
4471
4473
  }
4472
4474
  /**
@@ -9,9 +9,10 @@ export declare const enum GridEffectMainIntent {
9
9
  Virtualization = 3,
10
10
  Dimensions = 4,
11
11
  Selection = 5,
12
- DataChange = 6,
13
- ColumnPropertyChange = 7,
14
- Activation = 8
12
+ Hover = 6,
13
+ DataChange = 7,
14
+ ColumnPropertyChange = 8,
15
+ Activation = 9
15
16
  }
16
17
  /**
17
18
  * @hidden
@@ -191,6 +191,7 @@ export declare class GridFilterDialog extends Base implements INotifyPropertyCha
191
191
  removeCommandStateChangedListener(a: ICommandStateChangedListener): void;
192
192
  onToolCommandExecuting(a: ToolCommand): ToolCommandExecutionState;
193
193
  provideContextAccessor(a: IToolbarContextAccessor): void;
194
+ dismissContextAccessor(a: IToolbarContextAccessor): void;
194
195
  ad(e_: NormalizedEvent): boolean;
195
196
  }
196
197
  /**
@@ -73,6 +73,15 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
73
73
  */
74
74
  get dataMemberPath(): string;
75
75
  set dataMemberPath(v: string);
76
+ get dataLegendTarget(): any;
77
+ set dataLegendTarget(v: any);
78
+ /**
79
+ * Gets or Sets the property name that contains the values.
80
+ */
81
+ get subtitleMemberPath(): string;
82
+ set subtitleMemberPath(v: string);
83
+ get propertyTypeMemberPath(): string;
84
+ set propertyTypeMemberPath(v: string);
76
85
  /**
77
86
  * Gets or Sets the property name that contains the values.
78
87
  */
@@ -124,6 +133,11 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
124
133
  */
125
134
  get searchBackgroundColor(): string;
126
135
  set searchBackgroundColor(v: string);
136
+ /**
137
+ * Gets or sets the search background color.
138
+ */
139
+ get labelClickTriggersChange(): boolean;
140
+ set labelClickTriggersChange(v: boolean);
127
141
  /**
128
142
  * Gets or sets the search text color.
129
143
  */
@@ -164,6 +178,11 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
164
178
  */
165
179
  get checkboxUncheckedBorderColor(): string;
166
180
  set checkboxUncheckedBorderColor(v: string);
181
+ /**
182
+ * Gets or sets the corner radius to use for the checkbox.
183
+ */
184
+ get checkboxCornerRadius(): number;
185
+ set checkboxCornerRadius(v: number);
167
186
  /**
168
187
  * Gets or sets the style of scrollbar.
169
188
  */
@@ -219,6 +238,11 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
219
238
  */
220
239
  get isRowHoverEnabled(): boolean;
221
240
  set isRowHoverEnabled(v: boolean);
241
+ /**
242
+ * Gets or sets whether checkbox should be displayed to the right.
243
+ */
244
+ get checkboxAlignedRight(): boolean;
245
+ set checkboxAlignedRight(v: boolean);
222
246
  findByName(name: string): any;
223
247
  protected __p: string;
224
248
  protected _hasUserValues: Set<string>;
@@ -247,6 +271,7 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
247
271
  notifyClearItems(): void;
248
272
  notifyInsertItem(index: number, newItem: any): void;
249
273
  notifyRemoveItem(index: number, oldItem: any): void;
274
+ refresh(): void;
250
275
  addKeyValue(value: any[]): void;
251
276
  removeKeyValue(value: any[]): void;
252
277
  getDesiredSize(availableSize: IgSize): IgSize;
@@ -281,6 +306,10 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
281
306
  */
282
307
  get checkedChanged(): (s: IgcCheckboxListComponent, e: IgcCheckedChangedEventArgs) => void;
283
308
  set checkedChanged(ev: (s: IgcCheckboxListComponent, e: IgcCheckedChangedEventArgs) => void);
309
+ private _labelClicked;
310
+ private _labelClicked_wrapped;
311
+ get labelClicked(): (s: IgcCheckboxListComponent, e: IgcCheckedChangedEventArgs) => void;
312
+ set labelClicked(ev: (s: IgcCheckboxListComponent, e: IgcCheckedChangedEventArgs) => void);
284
313
  private _indexTypeChanged;
285
314
  private _indexTypeChanged_wrapped;
286
315
  get indexTypeChanged(): (s: IgcCheckboxListComponent, e: IgcCheckboxListIndexTypeChangedEventArgs) => void;
@@ -82,6 +82,7 @@ export declare class IgcDataGridFilterDialogComponent extends IgcHTMLElement {
82
82
  addCommandStateChangedListener(listener: ICommandStateChangedListener): void;
83
83
  removeCommandStateChangedListener(listener: ICommandStateChangedListener): void;
84
84
  provideContextAccessor(accessor: IToolbarContextAccessor): void;
85
+ dismissContextAccessor(accessor: IToolbarContextAccessor): void;
85
86
  private _dialogOpening;
86
87
  private _dialogOpening_wrapped;
87
88
  get dialogOpening(): (s: IgcDataGridFilterDialogComponent, e: IgcGridFilterDialogOpeningEventArgs) => void;