@progress/kendo-angular-grid 18.2.1-develop.3 → 18.3.0-develop.1

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 (51) hide show
  1. package/column-menu/column-chooser.component.d.ts +1 -4
  2. package/column-menu/column-list.component.d.ts +1 -2
  3. package/column-menu/column-menu-item.component.d.ts +2 -2
  4. package/column-menu/column-menu.component.d.ts +1 -0
  5. package/column-menu/column-menu.service.d.ts +4 -4
  6. package/column-menu/utils.d.ts +2 -2
  7. package/esm2022/column-menu/column-chooser.component.mjs +2 -5
  8. package/esm2022/column-menu/column-list-kb-nav.service.mjs +1 -1
  9. package/esm2022/column-menu/column-list.component.mjs +25 -19
  10. package/esm2022/column-menu/column-menu.component.mjs +10 -17
  11. package/esm2022/column-menu/column-menu.service.mjs +6 -6
  12. package/esm2022/column-menu/utils.mjs +2 -3
  13. package/esm2022/filtering/cell/date-filter-cell.component.mjs +5 -22
  14. package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +4 -8
  15. package/esm2022/filtering/cell/string-filter-cell.component.mjs +0 -2
  16. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -1
  17. package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +6 -12
  18. package/esm2022/filtering/menu/date-filter-menu.component.mjs +4 -8
  19. package/esm2022/filtering/menu/filter-menu-container.component.mjs +1 -3
  20. package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +2 -2
  21. package/esm2022/filtering/menu/filter-menu.component.mjs +8 -17
  22. package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +6 -12
  23. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +4 -8
  24. package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +2 -4
  25. package/esm2022/filtering/operators/after-eq-filter-operator.component.mjs +2 -2
  26. package/esm2022/filtering/operators/after-filter-operator.component.mjs +2 -2
  27. package/esm2022/filtering/operators/before-eq-filter-operator.component.mjs +2 -2
  28. package/esm2022/filtering/operators/before-filter-operator.component.mjs +2 -2
  29. package/esm2022/filtering/operators/contains-filter-operator.component.mjs +1 -1
  30. package/esm2022/filtering/operators/ends-with-filter-operator.component.mjs +1 -1
  31. package/esm2022/filtering/operators/eq-filter-operator.component.mjs +1 -1
  32. package/esm2022/filtering/operators/filter-operator.base.mjs +18 -18
  33. package/esm2022/filtering/operators/gt-filter-operator.component.mjs +1 -1
  34. package/esm2022/filtering/operators/gte-filter-operator.component.mjs +1 -1
  35. package/esm2022/filtering/operators/is-empty-filter-operator.component.mjs +1 -1
  36. package/esm2022/filtering/operators/is-not-empty-filter-operator.component.mjs +1 -1
  37. package/esm2022/filtering/operators/is-not-null-filter-operator.component.mjs +1 -1
  38. package/esm2022/filtering/operators/isnull-filter-operator.component.mjs +1 -1
  39. package/esm2022/filtering/operators/lt-filter-operator.component.mjs +1 -1
  40. package/esm2022/filtering/operators/lte-filter-operator.component.mjs +1 -1
  41. package/esm2022/filtering/operators/neq-filter-operator.component.mjs +1 -1
  42. package/esm2022/filtering/operators/not-contains-filter-operator.component.mjs +1 -1
  43. package/esm2022/filtering/operators/starts-with-filter-operator.component.mjs +1 -1
  44. package/esm2022/grid.component.mjs +2 -0
  45. package/esm2022/package-metadata.mjs +2 -2
  46. package/esm2022/rendering/header/header.component.mjs +12 -18
  47. package/fesm2022/progress-kendo-angular-grid.mjs +145 -210
  48. package/filtering/cell/date-filter-cell.component.d.ts +1 -14
  49. package/filtering/menu/filter-menu.component.d.ts +1 -0
  50. package/package.json +19 -19
  51. package/schematics/ngAdd/index.js +4 -4
@@ -6123,24 +6123,24 @@ const localizeOperators$1 = operators => localization => Object.keys(operators).
6123
6123
  return acc;
6124
6124
  }, {});
6125
6125
  const operatorTexts = localizeOperators$1({
6126
- "filterEqOperator": "eq",
6127
- "filterNotEqOperator": "neq",
6128
- "filterGteOperator": "gte",
6129
- "filterGtOperator": "gt",
6130
- "filterLteOperator": "lte",
6131
- "filterLtOperator": "lt",
6132
- "filterIsNullOperator": "isnull",
6133
- "filterIsNotNullOperator": "isnotnull",
6134
- "filterIsEmptyOperator": "isempty",
6135
- "filterIsNotEmptyOperator": "isnotempty",
6136
- "filterContainsOperator": "contains",
6137
- "filterNotContainsOperator": "doesnotcontain",
6138
- "filterStartsWithOperator": "startswith",
6139
- "filterEndsWithOperator": "endswith",
6140
- "filterAfterOrEqualOperator": "after-eq",
6141
- "filterAfterOperator": "after",
6142
- "filterBeforeOrEqualOperator": "before-eq",
6143
- "filterBeforeOperator": "before"
6126
+ 'filterEqOperator': 'eq',
6127
+ 'filterNotEqOperator': 'neq',
6128
+ 'filterGteOperator': 'gte',
6129
+ 'filterGtOperator': 'gt',
6130
+ 'filterLteOperator': 'lte',
6131
+ 'filterLtOperator': 'lt',
6132
+ 'filterIsNullOperator': 'isnull',
6133
+ 'filterIsNotNullOperator': 'isnotnull',
6134
+ 'filterIsEmptyOperator': 'isempty',
6135
+ 'filterIsNotEmptyOperator': 'isnotempty',
6136
+ 'filterContainsOperator': 'contains',
6137
+ 'filterNotContainsOperator': 'doesnotcontain',
6138
+ 'filterStartsWithOperator': 'startswith',
6139
+ 'filterEndsWithOperator': 'endswith',
6140
+ 'filterAfterOrEqualOperator': 'after-eq',
6141
+ 'filterAfterOperator': 'after',
6142
+ 'filterBeforeOrEqualOperator': 'before-eq',
6143
+ 'filterBeforeOperator': 'before'
6144
6144
  });
6145
6145
  /**
6146
6146
  * @hidden
@@ -6216,7 +6216,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6216
6216
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6217
6217
  */
6218
6218
  class ContainsFilterOperatorComponent extends FilterOperatorBase {
6219
- constructor(ctx) { super("contains", ctx); }
6219
+ constructor(ctx) { super('contains', ctx); }
6220
6220
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContainsFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6221
6221
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ContainsFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-contains-operator", providers: [
6222
6222
  {
@@ -6246,7 +6246,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6246
6246
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6247
6247
  */
6248
6248
  class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
6249
- constructor(ctx) { super("doesnotcontain", ctx); }
6249
+ constructor(ctx) { super('doesnotcontain', ctx); }
6250
6250
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DoesNotContainFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6251
6251
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DoesNotContainFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-not-contains-operator", providers: [
6252
6252
  {
@@ -6276,7 +6276,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6276
6276
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6277
6277
  */
6278
6278
  class EndsWithFilterOperatorComponent extends FilterOperatorBase {
6279
- constructor(ctx) { super("endswith", ctx); }
6279
+ constructor(ctx) { super('endswith', ctx); }
6280
6280
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EndsWithFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6281
6281
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EndsWithFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-endswith-operator", providers: [
6282
6282
  {
@@ -6306,7 +6306,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6306
6306
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6307
6307
  */
6308
6308
  class EqualFilterOperatorComponent extends FilterOperatorBase {
6309
- constructor(ctx) { super("eq", ctx); }
6309
+ constructor(ctx) { super('eq', ctx); }
6310
6310
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EqualFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6311
6311
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EqualFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-eq-operator", providers: [
6312
6312
  {
@@ -6336,7 +6336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6336
6336
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6337
6337
  */
6338
6338
  class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
6339
- constructor(ctx) { super("isempty", ctx); }
6339
+ constructor(ctx) { super('isempty', ctx); }
6340
6340
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsEmptyFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6341
6341
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IsEmptyFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-isempty-operator", providers: [
6342
6342
  {
@@ -6366,7 +6366,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6366
6366
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6367
6367
  */
6368
6368
  class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
6369
- constructor(ctx) { super("isnotempty", ctx); }
6369
+ constructor(ctx) { super('isnotempty', ctx); }
6370
6370
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsNotEmptyFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6371
6371
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IsNotEmptyFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-isnotempty-operator", providers: [
6372
6372
  {
@@ -6396,7 +6396,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6396
6396
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6397
6397
  */
6398
6398
  class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
6399
- constructor(ctx) { super("isnotnull", ctx); }
6399
+ constructor(ctx) { super('isnotnull', ctx); }
6400
6400
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsNotNullFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6401
6401
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IsNotNullFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-isnotnull-operator", providers: [
6402
6402
  {
@@ -6426,7 +6426,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6426
6426
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6427
6427
  */
6428
6428
  class IsNullFilterOperatorComponent extends FilterOperatorBase {
6429
- constructor(ctx) { super("isnull", ctx); }
6429
+ constructor(ctx) { super('isnull', ctx); }
6430
6430
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsNullFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6431
6431
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IsNullFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-isnull-operator", providers: [
6432
6432
  {
@@ -6456,7 +6456,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6456
6456
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6457
6457
  */
6458
6458
  class NotEqualFilterOperatorComponent extends FilterOperatorBase {
6459
- constructor(ctx) { super("neq", ctx); }
6459
+ constructor(ctx) { super('neq', ctx); }
6460
6460
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NotEqualFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6461
6461
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NotEqualFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-neq-operator", providers: [
6462
6462
  {
@@ -6486,7 +6486,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6486
6486
  * For more information and examples, refer to the article on setting [default filter operators](slug:filter_row#toc-default-filter-operator).
6487
6487
  */
6488
6488
  class StartsWithFilterOperatorComponent extends FilterOperatorBase {
6489
- constructor(ctx) { super("startswith", ctx); }
6489
+ constructor(ctx) { super('startswith', ctx); }
6490
6490
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StartsWithFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6491
6491
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StartsWithFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-startswith-operator", providers: [
6492
6492
  {
@@ -6515,7 +6515,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6515
6515
  * [See example](slug:filter_row#toc-default-filter-operator).
6516
6516
  */
6517
6517
  class GreaterFilterOperatorComponent extends FilterOperatorBase {
6518
- constructor(ctx) { super("gt", ctx); }
6518
+ constructor(ctx) { super('gt', ctx); }
6519
6519
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GreaterFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6520
6520
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GreaterFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-gt-operator", providers: [
6521
6521
  {
@@ -6544,7 +6544,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6544
6544
  * [See example](slug:filter_row#toc-default-filter-operator).
6545
6545
  */
6546
6546
  class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
6547
- constructor(ctx) { super("gte", ctx); }
6547
+ constructor(ctx) { super('gte', ctx); }
6548
6548
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GreaterOrEqualToFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6549
6549
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GreaterOrEqualToFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-gte-operator", providers: [
6550
6550
  {
@@ -6574,7 +6574,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6574
6574
  * [See example](slug:filter_row#toc-default-filter-operator).
6575
6575
  */
6576
6576
  class LessFilterOperatorComponent extends FilterOperatorBase {
6577
- constructor(ctx) { super("lt", ctx); }
6577
+ constructor(ctx) { super('lt', ctx); }
6578
6578
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LessFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6579
6579
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LessFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-lt-operator", providers: [
6580
6580
  {
@@ -6604,7 +6604,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6604
6604
  * [See example](slug:filter_row#toc-default-filter-operator).
6605
6605
  */
6606
6606
  class LessOrEqualToFilterOperatorComponent extends FilterOperatorBase {
6607
- constructor(ctx) { super("lte", ctx); }
6607
+ constructor(ctx) { super('lte', ctx); }
6608
6608
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LessOrEqualToFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
6609
6609
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LessOrEqualToFilterOperatorComponent, isStandalone: true, selector: "kendo-filter-lte-operator", providers: [
6610
6610
  {
@@ -6633,14 +6633,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6633
6633
  * [See example](slug:filter_row#toc-default-filter-operator).
6634
6634
  */
6635
6635
  class AfterFilterOperatorComponent extends FilterOperatorBase {
6636
- constructor(ctx) { super("after", ctx); }
6636
+ constructor(ctx) { super('after', ctx); }
6637
6637
  /**
6638
6638
  * @hidden
6639
6639
  */
6640
6640
  toJSON() {
6641
6641
  return {
6642
6642
  text: this.text,
6643
- value: "gt"
6643
+ value: 'gt'
6644
6644
  };
6645
6645
  }
6646
6646
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
@@ -6671,14 +6671,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6671
6671
  * [See example](slug:filter_row#toc-default-filter-operator).
6672
6672
  */
6673
6673
  class AfterEqFilterOperatorComponent extends FilterOperatorBase {
6674
- constructor(ctx) { super("after-eq", ctx); }
6674
+ constructor(ctx) { super('after-eq', ctx); }
6675
6675
  /**
6676
6676
  * @hidden
6677
6677
  */
6678
6678
  toJSON() {
6679
6679
  return {
6680
6680
  text: this.text,
6681
- value: "gte"
6681
+ value: 'gte'
6682
6682
  };
6683
6683
  }
6684
6684
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterEqFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
@@ -6709,14 +6709,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6709
6709
  * [See example](slug:filter_row#toc-default-filter-operator).
6710
6710
  */
6711
6711
  class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
6712
- constructor(ctx) { super("before-eq", ctx); }
6712
+ constructor(ctx) { super('before-eq', ctx); }
6713
6713
  /**
6714
6714
  * @hidden
6715
6715
  */
6716
6716
  toJSON() {
6717
6717
  return {
6718
6718
  text: this.text,
6719
- value: "lte"
6719
+ value: 'lte'
6720
6720
  };
6721
6721
  }
6722
6722
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeEqFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
@@ -6747,14 +6747,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6747
6747
  * [See example](slug:filter_row#toc-default-filter-operator).
6748
6748
  */
6749
6749
  class BeforeFilterOperatorComponent extends FilterOperatorBase {
6750
- constructor(ctx) { super("before", ctx); }
6750
+ constructor(ctx) { super('before', ctx); }
6751
6751
  /**
6752
6752
  * @hidden
6753
6753
  */
6754
6754
  toJSON() {
6755
6755
  return {
6756
6756
  text: this.text,
6757
- value: "lt"
6757
+ value: 'lt'
6758
6758
  };
6759
6759
  }
6760
6760
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeFilterOperatorComponent, deps: [{ token: ContextService }], target: i0.ɵɵFactoryTarget.Component });
@@ -7893,7 +7893,7 @@ class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent {
7893
7893
  this.ctx = ctx;
7894
7894
  }
7895
7895
  ngAfterViewInit() {
7896
- const shouldFocusFirstFocusable = this.isFirstDropDown && this.filterService && this.filterService.menuTabbingService;
7896
+ const shouldFocusFirstFocusable = this.isFirstDropDown && this.filterService?.menuTabbingService;
7897
7897
  const isTabbedInterface = this.menuTabbingService?.isTabbedInterface;
7898
7898
  if (shouldFocusFirstFocusable && !isTabbedInterface) {
7899
7899
  this.filterService.menuTabbingService.firstFocusable = this.firstOperatorDropDown;
@@ -7935,7 +7935,7 @@ class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent {
7935
7935
  }
7936
7936
  onShiftTab(e) {
7937
7937
  e.stopImmediatePropagation();
7938
- if ((!this.menuTabbingService || !this.menuTabbingService.isColumnMenu) && this.isFirstDropDown && this.filterService.menuTabbingService.lastFocusable) {
7938
+ if (!this.menuTabbingService?.isColumnMenu && this.isFirstDropDown && this.filterService.menuTabbingService.lastFocusable) {
7939
7939
  e.preventDefault();
7940
7940
  this.filterService.menuTabbingService.lastFocusable.focus();
7941
7941
  }
@@ -8027,8 +8027,7 @@ class StringFilterMenuInputComponent {
8027
8027
  [currentFilter]="currentFilter"
8028
8028
  [filterService]="filterService"
8029
8029
  [isFirstDropDown]="isFirstDropDown"
8030
- [menuTabbingService]="menuTabbingService"
8031
- >
8030
+ [menuTabbingService]="menuTabbingService">
8032
8031
  <kendo-textbox
8033
8032
  kendoFilterInput
8034
8033
  [columnLabel]="columnLabel"
@@ -8052,8 +8051,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
8052
8051
  [currentFilter]="currentFilter"
8053
8052
  [filterService]="filterService"
8054
8053
  [isFirstDropDown]="isFirstDropDown"
8055
- [menuTabbingService]="menuTabbingService"
8056
- >
8054
+ [menuTabbingService]="menuTabbingService">
8057
8055
  <kendo-textbox
8058
8056
  kendoFilterInput
8059
8057
  [columnLabel]="columnLabel"
@@ -8458,8 +8456,7 @@ class NumericFilterMenuInputComponent {
8458
8456
  [currentFilter]="currentFilter"
8459
8457
  [filterService]="filterService"
8460
8458
  [isFirstDropDown]="isFirstDropDown"
8461
- [menuTabbingService]="menuTabbingService"
8462
- >
8459
+ [menuTabbingService]="menuTabbingService">
8463
8460
  <kendo-numerictextbox
8464
8461
  kendoFilterInput
8465
8462
  [columnLabel]="columnLabel"
@@ -8472,13 +8469,11 @@ class NumericFilterMenuInputComponent {
8472
8469
  [min]="min"
8473
8470
  [max]="max"
8474
8471
  [step]="step"
8475
- [placeholder]="placeholder"
8476
- >
8472
+ [placeholder]="placeholder">
8477
8473
  <kendo-numerictextbox-messages
8478
8474
  [increment]="messageFor('filterNumericIncrement')"
8479
8475
  [decrement]="messageFor('filterNumericDecrement')"
8480
- >
8481
- </kendo-numerictextbox-messages>
8476
+ ></kendo-numerictextbox-messages>
8482
8477
  </kendo-numerictextbox>
8483
8478
  </kendo-grid-filter-menu-input-wrapper>
8484
8479
  `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-grid-filter-menu-input-wrapper", inputs: ["filterService", "isFirstDropDown", "menuTabbingService", "currentFilter"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "component", type: NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }] });
@@ -8496,8 +8491,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
8496
8491
  [currentFilter]="currentFilter"
8497
8492
  [filterService]="filterService"
8498
8493
  [isFirstDropDown]="isFirstDropDown"
8499
- [menuTabbingService]="menuTabbingService"
8500
- >
8494
+ [menuTabbingService]="menuTabbingService">
8501
8495
  <kendo-numerictextbox
8502
8496
  kendoFilterInput
8503
8497
  [columnLabel]="columnLabel"
@@ -8510,13 +8504,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
8510
8504
  [min]="min"
8511
8505
  [max]="max"
8512
8506
  [step]="step"
8513
- [placeholder]="placeholder"
8514
- >
8507
+ [placeholder]="placeholder">
8515
8508
  <kendo-numerictextbox-messages
8516
8509
  [increment]="messageFor('filterNumericIncrement')"
8517
8510
  [decrement]="messageFor('filterNumericDecrement')"
8518
- >
8519
- </kendo-numerictextbox-messages>
8511
+ ></kendo-numerictextbox-messages>
8520
8512
  </kendo-numerictextbox>
8521
8513
  </kendo-grid-filter-menu-input-wrapper>
8522
8514
  `,
@@ -8653,8 +8645,7 @@ class NumericFilterMenuComponent extends NumericFilterComponent {
8653
8645
  [step]="step"
8654
8646
  [menuTabbingService]="menuTabbingService"
8655
8647
  [isFirstDropDown]="true"
8656
- [placeholder]="placeholder"
8657
- >
8648
+ [placeholder]="placeholder">
8658
8649
  </kendo-grid-numeric-filter-menu-input>
8659
8650
  <kendo-dropdownlist
8660
8651
  *ngIf="extra"
@@ -8682,8 +8673,7 @@ class NumericFilterMenuComponent extends NumericFilterComponent {
8682
8673
  [max]="max"
8683
8674
  [step]="step"
8684
8675
  [menuTabbingService]="menuTabbingService"
8685
- [placeholder]="extraPlaceholder"
8686
- >
8676
+ [placeholder]="extraPlaceholder">
8687
8677
  </kendo-grid-numeric-filter-menu-input>
8688
8678
  `, isInline: true, dependencies: [{ kind: "component", type: NumericFilterMenuInputComponent, selector: "kendo-grid-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "filterDelay", "isFirstDropDown", "menuTabbingService", "step", "min", "max", "spinners", "decimals", "format", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
8689
8679
  }
@@ -8707,8 +8697,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
8707
8697
  [step]="step"
8708
8698
  [menuTabbingService]="menuTabbingService"
8709
8699
  [isFirstDropDown]="true"
8710
- [placeholder]="placeholder"
8711
- >
8700
+ [placeholder]="placeholder">
8712
8701
  </kendo-grid-numeric-filter-menu-input>
8713
8702
  <kendo-dropdownlist
8714
8703
  *ngIf="extra"
@@ -8736,8 +8725,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
8736
8725
  [max]="max"
8737
8726
  [step]="step"
8738
8727
  [menuTabbingService]="menuTabbingService"
8739
- [placeholder]="extraPlaceholder"
8740
- >
8728
+ [placeholder]="extraPlaceholder">
8741
8729
  </kendo-grid-numeric-filter-menu-input>
8742
8730
  `,
8743
8731
  standalone: true,
@@ -8979,8 +8967,7 @@ class DateFilterMenuInputComponent {
8979
8967
  [currentFilter]="currentFilter"
8980
8968
  [filterService]="filterService"
8981
8969
  [isFirstDropDown]="isFirstDropDown"
8982
- [menuTabbingService]="menuTabbingService"
8983
- >
8970
+ [menuTabbingService]="menuTabbingService">
8984
8971
  <kendo-datepicker
8985
8972
  #picker
8986
8973
  kendoFilterInput
@@ -8996,13 +8983,11 @@ class DateFilterMenuInputComponent {
8996
8983
  [activeView]="activeView"
8997
8984
  [bottomView]="bottomView"
8998
8985
  [topView]="topView"
8999
- [weekNumber]="weekNumber"
9000
- >
8986
+ [weekNumber]="weekNumber">
9001
8987
  <kendo-datepicker-messages
9002
8988
  [toggle]="messageFor('filterDateToggle')"
9003
8989
  [today]="messageFor('filterDateToday')"
9004
- >
9005
- </kendo-datepicker-messages>
8990
+ ></kendo-datepicker-messages>
9006
8991
  </kendo-datepicker>
9007
8992
  </kendo-grid-filter-menu-input-wrapper>
9008
8993
  `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-grid-filter-menu-input-wrapper", inputs: ["filterService", "isFirstDropDown", "menuTabbingService", "currentFilter"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }] });
@@ -9020,8 +9005,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9020
9005
  [currentFilter]="currentFilter"
9021
9006
  [filterService]="filterService"
9022
9007
  [isFirstDropDown]="isFirstDropDown"
9023
- [menuTabbingService]="menuTabbingService"
9024
- >
9008
+ [menuTabbingService]="menuTabbingService">
9025
9009
  <kendo-datepicker
9026
9010
  #picker
9027
9011
  kendoFilterInput
@@ -9037,13 +9021,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9037
9021
  [activeView]="activeView"
9038
9022
  [bottomView]="bottomView"
9039
9023
  [topView]="topView"
9040
- [weekNumber]="weekNumber"
9041
- >
9024
+ [weekNumber]="weekNumber">
9042
9025
  <kendo-datepicker-messages
9043
9026
  [toggle]="messageFor('filterDateToggle')"
9044
9027
  [today]="messageFor('filterDateToday')"
9045
- >
9046
- </kendo-datepicker-messages>
9028
+ ></kendo-datepicker-messages>
9047
9029
  </kendo-datepicker>
9048
9030
  </kendo-grid-filter-menu-input-wrapper>
9049
9031
  `,
@@ -9167,8 +9149,7 @@ class DateFilterMenuComponent extends DateFilterComponent {
9167
9149
  [max]="max"
9168
9150
  [weekNumber]="weekNumber"
9169
9151
  [isFirstDropDown]="true"
9170
- [menuTabbingService]="menuTabbingService"
9171
- >
9152
+ [menuTabbingService]="menuTabbingService">
9172
9153
  </kendo-grid-date-filter-menu-input>
9173
9154
  <kendo-dropdownlist
9174
9155
  *ngIf="extra"
@@ -9198,8 +9179,7 @@ class DateFilterMenuComponent extends DateFilterComponent {
9198
9179
  [min]="min"
9199
9180
  [max]="max"
9200
9181
  [weekNumber]="weekNumber"
9201
- [menuTabbingService]="menuTabbingService"
9202
- >
9182
+ [menuTabbingService]="menuTabbingService">
9203
9183
  </kendo-grid-date-filter-menu-input>
9204
9184
  `, isInline: true, dependencies: [{ kind: "component", type: DateFilterMenuInputComponent, selector: "kendo-grid-date-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "menuTabbingService", "format", "formatPlaceholder", "placeholder", "min", "max", "activeView", "bottomView", "topView", "weekNumber", "isFirstDropDown"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
9205
9185
  }
@@ -9224,8 +9204,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9224
9204
  [max]="max"
9225
9205
  [weekNumber]="weekNumber"
9226
9206
  [isFirstDropDown]="true"
9227
- [menuTabbingService]="menuTabbingService"
9228
- >
9207
+ [menuTabbingService]="menuTabbingService">
9229
9208
  </kendo-grid-date-filter-menu-input>
9230
9209
  <kendo-dropdownlist
9231
9210
  *ngIf="extra"
@@ -9255,8 +9234,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9255
9234
  [min]="min"
9256
9235
  [max]="max"
9257
9236
  [weekNumber]="weekNumber"
9258
- [menuTabbingService]="menuTabbingService"
9259
- >
9237
+ [menuTabbingService]="menuTabbingService">
9260
9238
  </kendo-grid-date-filter-menu-input>
9261
9239
  `,
9262
9240
  standalone: true,
@@ -9454,7 +9432,7 @@ class BooleanFilterMenuComponent extends BooleanFilterComponent {
9454
9432
  * @hidden
9455
9433
  */
9456
9434
  onShiftTab(e) {
9457
- if ((!this.menuTabbingService || !this.menuTabbingService.isColumnMenu) && this.filterService.menuTabbingService.lastFocusable) {
9435
+ if (!this.menuTabbingService?.isColumnMenu && this.filterService.menuTabbingService.lastFocusable) {
9458
9436
  e.preventDefault();
9459
9437
  this.filterService.menuTabbingService.lastFocusable.focus();
9460
9438
  }
@@ -9666,8 +9644,7 @@ class FilterMenuContainerComponent {
9666
9644
  }
9667
9645
  ngAfterViewChecked() {
9668
9646
  if (!this.menuTabbingService.isColumnMenu || (this.isLast && this.isExpanded)) {
9669
- this.menuTabbingService.lastFocusable = this.disabled ?
9670
- this.resetButton.nativeElement : this.filterButton.nativeElement;
9647
+ this.menuTabbingService.lastFocusable = this.resetButton.nativeElement;
9671
9648
  }
9672
9649
  }
9673
9650
  ngOnDestroy() {
@@ -9716,7 +9693,6 @@ class FilterMenuContainerComponent {
9716
9693
  if (this.menuTabbingService.firstFocusable && (!this.menuTabbingService.isColumnMenu || this.isLast)) {
9717
9694
  e.preventDefault();
9718
9695
  if (buttonType === 'reset') {
9719
- // eslint-disable-next-line no-unused-expressions
9720
9696
  this.menuTabbingService.firstFocusable.focus();
9721
9697
  }
9722
9698
  else {
@@ -9915,7 +9891,7 @@ class FilterMenuComponent {
9915
9891
  this.close();
9916
9892
  this.updateAria(ariaRoot);
9917
9893
  });
9918
- this.popupSubs.add(this.popupRef.popup.instance.close.subscribe(() => {
9894
+ this.popupSubs.add(() => this.popupRef.popup.instance.close.subscribe(() => {
9919
9895
  this.popupRef = null;
9920
9896
  this.updateAria(ariaRoot);
9921
9897
  }));
@@ -9930,23 +9906,13 @@ class FilterMenuComponent {
9930
9906
  }
9931
9907
  }
9932
9908
  else {
9933
- if (this.navigationService.tableEnabled) {
9934
- this.navigationService.focusCell(0, this.column.leafIndex);
9935
- }
9936
- else {
9937
- this.anchor.nativeElement.focus();
9938
- }
9909
+ this.focusRoot();
9939
9910
  }
9940
9911
  return false;
9941
9912
  }
9942
9913
  close() {
9943
9914
  this.cleanUp();
9944
- if (this.navigationService.tableEnabled) {
9945
- this.navigationService.focusCell(0, this.column.leafIndex);
9946
- }
9947
- else {
9948
- this.anchor.nativeElement.focus();
9949
- }
9915
+ this.focusRoot();
9950
9916
  }
9951
9917
  updateAria(ariaRoot) {
9952
9918
  ariaRoot && this.renderer.removeAttribute(ariaRoot, 'aria-controls');
@@ -9959,6 +9925,9 @@ class FilterMenuComponent {
9959
9925
  this.popupSubs = null;
9960
9926
  this.cdr.markForCheck();
9961
9927
  }
9928
+ focusRoot() {
9929
+ this.isNavigable ? this.navigationService.focusCell(0, this.column.leafIndex) : this.anchor.nativeElement.focus();
9930
+ }
9962
9931
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuComponent, deps: [{ token: FilterService }, { token: SinglePopupService }, { token: ContextService }, { token: NavigationService }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: IdService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
9963
9932
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FilterMenuComponent, isStandalone: true, selector: "kendo-grid-filter-menu", inputs: { column: "column", filter: "filter", tabIndex: "tabIndex" }, viewQueries: [{ propertyName: "anchor", first: true, predicate: ["anchor"], descendants: true, static: true }, { propertyName: "template", first: true, predicate: ["template"], descendants: true, read: TemplateRef, static: true }], ngImport: i0, template: `
9964
9933
  <a #anchor
@@ -9981,8 +9950,7 @@ class FilterMenuComponent {
9981
9950
  [filter]="filter"
9982
9951
  (close)="close()"
9983
9952
  (keydown.escape)="close()"
9984
- (keydown.enter)="$event.stopImmediatePropagation()"
9985
- >
9953
+ (keydown.enter)="$event.stopImmediatePropagation()">
9986
9954
  </kendo-grid-filter-menu-container>
9987
9955
  </ng-template>
9988
9956
  `, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-grid-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }] });
@@ -10012,8 +9980,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10012
9980
  [filter]="filter"
10013
9981
  (close)="close()"
10014
9982
  (keydown.escape)="close()"
10015
- (keydown.enter)="$event.stopImmediatePropagation()"
10016
- >
9983
+ (keydown.enter)="$event.stopImmediatePropagation()">
10017
9984
  </kendo-grid-filter-menu-container>
10018
9985
  </ng-template>
10019
9986
  `,
@@ -10314,20 +10281,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10314
10281
  class DateFilterCellComponent extends DateFilterComponent {
10315
10282
  ctx;
10316
10283
  /**
10317
- * Represents a [DatePicker](slug:overview_datepicker) filter-cell component.
10318
- * [See example](slug:filter_row#toc-built-in-filter-row-components).
10319
- * @example
10320
- *
10321
- * ```html
10322
- * <kendo-grid-column field="Discontinued">
10323
- * <ng-template kendoGridFilterCellTemplate let-filter let-column="column">
10324
- * <kendo-grid-date-filter-cell
10325
- * [column]="column"
10326
- * [filter]="filter">
10327
- * </kendo-grid-date-filter-cell>
10328
- * </ng-template>
10329
- * </kendo-grid-column>
10330
- * ```
10284
+ * Determines if the drop-down filter operators will be displayed. The default value is `true`.
10331
10285
  * @type {boolean}
10332
10286
  * @default true
10333
10287
  */
@@ -10378,13 +10332,11 @@ class DateFilterCellComponent extends DateFilterComponent {
10378
10332
  [topView]="topView"
10379
10333
  [min]="min"
10380
10334
  [max]="max"
10381
- [weekNumber]="weekNumber"
10382
- >
10335
+ [weekNumber]="weekNumber">
10383
10336
  <kendo-datepicker-messages
10384
10337
  [toggle]="messageFor('filterDateToggle')"
10385
10338
  [today]="messageFor('filterDateToday')"
10386
- >
10387
- </kendo-datepicker-messages>
10339
+ ></kendo-datepicker-messages>
10388
10340
  </kendo-datepicker>
10389
10341
  </kendo-grid-filter-wrapper-cell>
10390
10342
  `, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }] });
@@ -10415,13 +10367,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10415
10367
  [topView]="topView"
10416
10368
  [min]="min"
10417
10369
  [max]="max"
10418
- [weekNumber]="weekNumber"
10419
- >
10370
+ [weekNumber]="weekNumber">
10420
10371
  <kendo-datepicker-messages
10421
10372
  [toggle]="messageFor('filterDateToggle')"
10422
10373
  [today]="messageFor('filterDateToday')"
10423
- >
10424
- </kendo-datepicker-messages>
10374
+ ></kendo-datepicker-messages>
10425
10375
  </kendo-datepicker>
10426
10376
  </kendo-grid-filter-wrapper-cell>
10427
10377
  `,
@@ -10494,7 +10444,6 @@ class StringFilterCellComponent extends StringFilterComponent {
10494
10444
  [defaultOperator]="operator"
10495
10445
  [showOperators]="showOperators">
10496
10446
  <kendo-textbox
10497
- kendoTextBox
10498
10447
  [size]="size"
10499
10448
  kendoGridFocusable
10500
10449
  kendoFilterInput
@@ -10518,7 +10467,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10518
10467
  [defaultOperator]="operator"
10519
10468
  [showOperators]="showOperators">
10520
10469
  <kendo-textbox
10521
- kendoTextBox
10522
10470
  [size]="size"
10523
10471
  kendoGridFocusable
10524
10472
  kendoFilterInput
@@ -10623,13 +10571,11 @@ class NumericFilterCellComponent extends NumericFilterComponent {
10623
10571
  [max]="max"
10624
10572
  [size]="size"
10625
10573
  [step]="step"
10626
- [placeholder]="placeholder"
10627
- >
10574
+ [placeholder]="placeholder">
10628
10575
  <kendo-numerictextbox-messages
10629
10576
  [increment]="messageFor('filterNumericIncrement')"
10630
10577
  [decrement]="messageFor('filterNumericDecrement')"
10631
- >
10632
- </kendo-numerictextbox-messages>
10578
+ ></kendo-numerictextbox-messages>
10633
10579
  </kendo-numerictextbox>
10634
10580
  </kendo-grid-filter-wrapper-cell>
10635
10581
  `, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "component", type: NumericTextBoxCustomMessagesComponent, selector: "kendo-numerictextbox-messages" }] });
@@ -10660,13 +10606,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10660
10606
  [max]="max"
10661
10607
  [size]="size"
10662
10608
  [step]="step"
10663
- [placeholder]="placeholder"
10664
- >
10609
+ [placeholder]="placeholder">
10665
10610
  <kendo-numerictextbox-messages
10666
10611
  [increment]="messageFor('filterNumericIncrement')"
10667
10612
  [decrement]="messageFor('filterNumericDecrement')"
10668
- >
10669
- </kendo-numerictextbox-messages>
10613
+ ></kendo-numerictextbox-messages>
10670
10614
  </kendo-numerictextbox>
10671
10615
  </kendo-grid-filter-wrapper-cell>
10672
10616
  `,
@@ -10982,12 +10926,6 @@ class ColumnMenuService {
10982
10926
  * @hidden
10983
10927
  */
10984
10928
  sortable;
10985
- /**
10986
- * Closes the column menu.
10987
- */
10988
- close() {
10989
- this.closeMenu.emit();
10990
- }
10991
10929
  /**
10992
10930
  * @hidden
10993
10931
  */
@@ -10998,6 +10936,12 @@ class ColumnMenuService {
10998
10936
  constructor(menuTabbingService) {
10999
10937
  this.menuTabbingService = menuTabbingService;
11000
10938
  }
10939
+ /**
10940
+ * Closes the column menu.
10941
+ */
10942
+ close() {
10943
+ this.closeMenu.emit();
10944
+ }
11001
10945
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnMenuService, deps: [{ token: MenuTabbingService }], target: i0.ɵɵFactoryTarget.Injectable });
11002
10946
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnMenuService });
11003
10947
  }
@@ -11028,7 +10972,7 @@ class ColumnListKeyboardNavigation {
11028
10972
  toggle(index, active) {
11029
10973
  const element = this.items[index]?.host.nativeElement;
11030
10974
  element && this.renderer.setAttribute(this.items[index].host.nativeElement, 'tabindex', active ? '0' : '-1');
11031
- active && element && element.focus();
10975
+ active && element?.focus();
11032
10976
  }
11033
10977
  toggleCheckedState() {
11034
10978
  this.items[this.activeIndex].host.nativeElement.firstElementChild.click();
@@ -11048,12 +10992,7 @@ class ColumnListComponent {
11048
10992
  ngZone;
11049
10993
  renderer;
11050
10994
  listNavigationService;
11051
- get className() {
11052
- return true;
11053
- }
11054
- isChecked(checkbox) {
11055
- return checkbox.checked;
11056
- }
10995
+ className = true;
11057
10996
  reset = new EventEmitter();
11058
10997
  apply = new EventEmitter();
11059
10998
  columnChange = new EventEmitter();
@@ -11224,6 +11163,20 @@ class ColumnListComponent {
11224
11163
  const checkboxElement = closestItem.querySelector('.k-checkbox-wrap');
11225
11164
  const checkbox = this.checkboxes.find(checkBox => checkBox.hostElement.nativeElement === checkboxElement);
11226
11165
  const index = parseInt(checkboxElement.firstElementChild.getAttribute('data-index'), 10);
11166
+ if (index !== this.listNavigationService.activeIndex) {
11167
+ this.listNavigationService.toggle(this.listNavigationService.activeIndex, false);
11168
+ this.listNavigationService.activeIndex = index;
11169
+ this.listNavigationService.toggle(index, true);
11170
+ }
11171
+ if (checkboxElement.contains(e.target)) {
11172
+ const checkboxInputElement = checkboxElement.firstElementChild;
11173
+ checkboxInputElement.blur();
11174
+ checkboxInputElement.classList.remove('k-focus');
11175
+ }
11176
+ else {
11177
+ this.listNavigationService.toggleCheckedState();
11178
+ }
11179
+ closestItem.focus();
11227
11180
  if (this.autoSync) {
11228
11181
  if (!this.columns[index]) {
11229
11182
  return;
@@ -11240,11 +11193,6 @@ class ColumnListComponent {
11240
11193
  else {
11241
11194
  this.updateDisabled();
11242
11195
  }
11243
- if (index !== this.listNavigationService.activeIndex) {
11244
- this.listNavigationService.toggle(this.listNavigationService.activeIndex, false);
11245
- this.listNavigationService.activeIndex = index;
11246
- this.listNavigationService.toggle(index, true);
11247
- }
11248
11196
  }
11249
11197
  };
11250
11198
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ColumnListKeyboardNavigation }], target: i0.ɵɵFactoryTarget.Component });
@@ -11263,6 +11211,7 @@ class ColumnListComponent {
11263
11211
  [inputAttributes]="{'data-index': index.toString()}"
11264
11212
  [checkedState]="!column.hidden"
11265
11213
  [disabled]="isDisabled(column)"
11214
+ [tabindex]="-1"
11266
11215
  ></kendo-checkbox>
11267
11216
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
11268
11217
  </label>
@@ -11273,16 +11222,16 @@ class ColumnListComponent {
11273
11222
  type="button"
11274
11223
  class="k-button k-button-solid-primary k-button-solid k-button-md k-rounded-md k-button-rectangle"
11275
11224
  (click)="applyChanges()"
11276
- (keydown.enter)="$event.preventDefault(); $event.stopPropagation; applyChanges();"
11277
- (keydown.space)="$event.preventDefault(); $event.stopPropagation; applyChanges();">{{ applyText }}</button>
11225
+ (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); applyChanges();"
11226
+ (keydown.space)="$event.preventDefault(); $event.stopPropagation(); applyChanges();">{{ applyText }}</button>
11278
11227
  <button
11279
11228
  #resetButton
11280
11229
  type="button"
11281
11230
  (keydown.tab)="onTab($event)"
11282
11231
  class="k-button k-button-solid-base k-button-solid k-button-md k-rounded-md k-button-rectangle"
11283
11232
  (click)="cancelChanges()"
11284
- (keydown.enter)="$event.preventDefault(); $event.stopPropagation; cancelChanges();"
11285
- (keydown.space)="$event.preventDefault(); $event.stopPropagation; cancelChanges();">{{ resetText }}</button>
11233
+ (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();"
11234
+ (keydown.space)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();">{{ resetText }}</button>
11286
11235
  </div>
11287
11236
  `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }] });
11288
11237
  }
@@ -11306,6 +11255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
11306
11255
  [inputAttributes]="{'data-index': index.toString()}"
11307
11256
  [checkedState]="!column.hidden"
11308
11257
  [disabled]="isDisabled(column)"
11258
+ [tabindex]="-1"
11309
11259
  ></kendo-checkbox>
11310
11260
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
11311
11261
  </label>
@@ -11316,16 +11266,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
11316
11266
  type="button"
11317
11267
  class="k-button k-button-solid-primary k-button-solid k-button-md k-rounded-md k-button-rectangle"
11318
11268
  (click)="applyChanges()"
11319
- (keydown.enter)="$event.preventDefault(); $event.stopPropagation; applyChanges();"
11320
- (keydown.space)="$event.preventDefault(); $event.stopPropagation; applyChanges();">{{ applyText }}</button>
11269
+ (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); applyChanges();"
11270
+ (keydown.space)="$event.preventDefault(); $event.stopPropagation(); applyChanges();">{{ applyText }}</button>
11321
11271
  <button
11322
11272
  #resetButton
11323
11273
  type="button"
11324
11274
  (keydown.tab)="onTab($event)"
11325
11275
  class="k-button k-button-solid-base k-button-solid k-button-md k-rounded-md k-button-rectangle"
11326
11276
  (click)="cancelChanges()"
11327
- (keydown.enter)="$event.preventDefault(); $event.stopPropagation; cancelChanges();"
11328
- (keydown.space)="$event.preventDefault(); $event.stopPropagation; cancelChanges();">{{ resetText }}</button>
11277
+ (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();"
11278
+ (keydown.space)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();">{{ resetText }}</button>
11329
11279
  </div>
11330
11280
  `,
11331
11281
  standalone: true,
@@ -11396,10 +11346,6 @@ class ColumnChooserComponent {
11396
11346
  ngZone;
11397
11347
  renderer;
11398
11348
  changeDetector;
11399
- /**
11400
- * @hidden
11401
- */
11402
- columnsIcon = columnsIcon;
11403
11349
  /**
11404
11350
  * Specifies if the changes in the visibility of the column will be immediately applied.
11405
11351
  *
@@ -11417,6 +11363,7 @@ class ColumnChooserComponent {
11417
11363
  get columns() {
11418
11364
  return this.columnInfoService.leafNamedColumns;
11419
11365
  }
11366
+ columnsIcon = columnsIcon;
11420
11367
  popupRef;
11421
11368
  popupId;
11422
11369
  closeClick;
@@ -11507,7 +11454,7 @@ class ColumnChooserComponent {
11507
11454
  this.popupRef.close();
11508
11455
  this.popupRef = null;
11509
11456
  this.changeDetector.markForCheck();
11510
- this.escapeListener && this.escapeListener();
11457
+ this.escapeListener?.();
11511
11458
  }
11512
11459
  this.detachClose();
11513
11460
  focusAnchor && this.anchor.element.focus();
@@ -11663,14 +11610,13 @@ const hasColumnChooser = (settings) => settings.columnChooser !== false;
11663
11610
  */
11664
11611
  const hasAutoSizeColumn = (settings) => settings.autoSizeColumn;
11665
11612
  /**
11666
- * @hidden
11667
- */
11613
+ * @hidden
11614
+ */
11668
11615
  const hasAutoSizeAllColumns = (settings) => settings.autoSizeAllColumns;
11669
11616
  /**
11670
11617
  * @hidden
11671
11618
  */
11672
11619
  const autoSizeColumn = (grid, service, column) => {
11673
- // eslint-disable-next-line no-unused-expressions
11674
11620
  column ? grid.autoFitColumn(column) : grid.autoFitColumns();
11675
11621
  service.close();
11676
11622
  };
@@ -13289,7 +13235,7 @@ class ColumnMenuComponent {
13289
13235
  this.close(true);
13290
13236
  this.updateAria(ariaRoot);
13291
13237
  });
13292
- this.popupSubs.add(this.popupRef.popup.instance.close.subscribe(() => {
13238
+ this.popupSubs.add(() => this.popupRef.popup.instance.close.subscribe(() => {
13293
13239
  this.popupSubs?.unsubscribe();
13294
13240
  this.popupSubs = this.popupRef = null;
13295
13241
  this.updateAria(ariaRoot);
@@ -13311,12 +13257,7 @@ class ColumnMenuComponent {
13311
13257
  }
13312
13258
  }
13313
13259
  else {
13314
- if (this.navigationService.tableEnabled) {
13315
- this.navigationService.focusCell(0, this.column.leafIndex);
13316
- }
13317
- else {
13318
- this.anchor.nativeElement.focus();
13319
- }
13260
+ this.focusRoot();
13320
13261
  }
13321
13262
  }
13322
13263
  /**
@@ -13329,12 +13270,7 @@ class ColumnMenuComponent {
13329
13270
  if (!triggerFocus) {
13330
13271
  return;
13331
13272
  }
13332
- if (this.navigationService.tableEnabled) {
13333
- this.navigationService.focusCell(0, this.column.leafIndex);
13334
- }
13335
- else {
13336
- this.anchor.nativeElement.focus();
13337
- }
13273
+ this.focusRoot();
13338
13274
  }
13339
13275
  /**
13340
13276
  * @hidden
@@ -13351,6 +13287,9 @@ class ColumnMenuComponent {
13351
13287
  ariaRoot && this.renderer.removeAttribute(ariaRoot, 'aria-controls');
13352
13288
  ariaRoot && this.renderer.setAttribute(ariaRoot, 'aria-expanded', 'false');
13353
13289
  }
13290
+ focusRoot() {
13291
+ this.isNavigable ? this.navigationService.focusCell(0, this.column.leafIndex) : this.anchor.nativeElement.focus();
13292
+ }
13354
13293
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnMenuComponent, deps: [{ token: NavigationService }, { token: SinglePopupService }, { token: ColumnMenuService }, { token: ContextService }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: ColumnInfoService }, { token: IdService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
13355
13294
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnMenuComponent, isStandalone: true, selector: "kendo-grid-column-menu", inputs: { standalone: "standalone", column: "column", settings: "settings", sort: "sort", filter: "filter", sortable: "sortable", columnMenuTemplate: "columnMenuTemplate", tabIndex: "tabIndex" }, host: { properties: { "class.k-grid-column-menu-standalone": "this.standalone" } }, providers: [
13356
13295
  ColumnMenuService,
@@ -13364,7 +13303,7 @@ class ColumnMenuComponent {
13364
13303
  href="#"
13365
13304
  [tabindex]="tabIndex"
13366
13305
  [attr.title]="columnMenuTitle"
13367
- [attr.aria-expanded]="isNavigable ? undefined: false"
13306
+ [attr.aria-expanded]="isNavigable ? undefined : false"
13368
13307
  [attr.aria-haspopup]="isNavigable ? undefined : 'dialog'">
13369
13308
  <kendo-icon-wrapper
13370
13309
  name="more-vertical"
@@ -13375,7 +13314,7 @@ class ColumnMenuComponent {
13375
13314
  (keydown.escape)="close(true)"
13376
13315
  (keydown.enter)="$event.stopImmediatePropagation()">
13377
13316
  <ng-container
13378
- [ngTemplateOutlet]="this.column.columnMenuTemplateRef || this.columnMenuTemplate || (this.settings.view === 'tabbed' ? this.tabbedInterfaceTemplate : this.defaultTemplate)"
13317
+ [ngTemplateOutlet]="column.columnMenuTemplateRef || columnMenuTemplate || (settings.view === 'tabbed' ? tabbedInterfaceTemplate : defaultTemplate)"
13379
13318
  [ngTemplateOutletContext]="{ service: service, column: column }">
13380
13319
  </ng-container>
13381
13320
  </kendo-grid-columnmenu-container>
@@ -13541,7 +13480,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
13541
13480
  href="#"
13542
13481
  [tabindex]="tabIndex"
13543
13482
  [attr.title]="columnMenuTitle"
13544
- [attr.aria-expanded]="isNavigable ? undefined: false"
13483
+ [attr.aria-expanded]="isNavigable ? undefined : false"
13545
13484
  [attr.aria-haspopup]="isNavigable ? undefined : 'dialog'">
13546
13485
  <kendo-icon-wrapper
13547
13486
  name="more-vertical"
@@ -13552,7 +13491,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
13552
13491
  (keydown.escape)="close(true)"
13553
13492
  (keydown.enter)="$event.stopImmediatePropagation()">
13554
13493
  <ng-container
13555
- [ngTemplateOutlet]="this.column.columnMenuTemplateRef || this.columnMenuTemplate || (this.settings.view === 'tabbed' ? this.tabbedInterfaceTemplate : this.defaultTemplate)"
13494
+ [ngTemplateOutlet]="column.columnMenuTemplateRef || columnMenuTemplate || (settings.view === 'tabbed' ? tabbedInterfaceTemplate : defaultTemplate)"
13556
13495
  [ngTemplateOutletContext]="{ service: service, column: column }">
13557
13496
  </ng-container>
13558
13497
  </kendo-grid-columnmenu-container>
@@ -16719,7 +16658,6 @@ class HeaderComponent {
16719
16658
  }
16720
16659
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderComponent, deps: [{ token: SinglePopupService }, { token: DragHintService }, { token: DropCueService }, { token: ColumnReorderService }, { token: IdService }, { token: SortService }, { token: ColumnInfoService }, { token: i0.ChangeDetectorRef }, { token: ContextService }, { token: NavigationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
16721
16660
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: HeaderComponent, isStandalone: true, selector: "[kendoGridHeader]", inputs: { totalColumnLevels: "totalColumnLevels", columns: "columns", groups: "groups", detailTemplate: "detailTemplate", scrollable: "scrollable", filterable: "filterable", sort: "sort", filter: "filter", sortable: "sortable", groupable: "groupable", lockedColumnsCount: "lockedColumnsCount", resizable: "resizable", reorderable: "reorderable", columnMenu: "columnMenu", columnMenuTemplate: "columnMenuTemplate", totalColumnsCount: "totalColumnsCount", totalColumns: "totalColumns", tabIndex: "tabIndex", size: "size" }, host: { properties: { "class.k-table-thead": "this.hostClass" } }, viewQueries: [{ propertyName: "dropTargets", predicate: DropTargetDirective, descendants: true }, { propertyName: "filterMenus", predicate: FilterMenuComponent, descendants: true }, { propertyName: "columnMenus", predicate: ColumnMenuComponent, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
16722
- <ng-container>
16723
16661
  <tr *ngFor="let i of columnLevels; let levelIndex = index"
16724
16662
  kendoGridLogicalRow
16725
16663
  [logicalRowIndex]="levelIndex"
@@ -16771,8 +16709,7 @@ class HeaderComponent {
16771
16709
  [attr.colspan]="column.colspan"
16772
16710
  [attr.aria-haspopup]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'dialog' : undefined"
16773
16711
  [attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
16774
- [attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
16775
-
16712
+ [attr.aria-keyshortcuts]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'Alt + ArrowDown' : undefined">
16776
16713
  <ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
16777
16714
  <span class="k-cell-inner">
16778
16715
  <span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
@@ -16806,7 +16743,6 @@ class HeaderComponent {
16806
16743
  </kendo-grid-column-menu>
16807
16744
  </span>
16808
16745
  </ng-container>
16809
-
16810
16746
  <ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
16811
16747
  <span class="k-cell-inner">
16812
16748
  <span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
@@ -16849,7 +16785,6 @@ class HeaderComponent {
16849
16785
  </kendo-grid-column-menu>
16850
16786
  </span>
16851
16787
  </ng-container>
16852
-
16853
16788
  <ng-container *ngIf="isCheckboxColumn(column) && !column.headerTemplateRef && $any(column).showSelectAll">
16854
16789
  <kendo-checkbox
16855
16790
  [attr.id]="selectAllCheckboxId()"
@@ -16890,10 +16825,13 @@ class HeaderComponent {
16890
16825
  [class.k-grid-content-sticky]="column.sticky"
16891
16826
  [ngClass]="column.headerClass"
16892
16827
  [ngStyle]="column.headerStyle"
16828
+ [attr.aria-haspopup]="(isNavigable && showColumnMenu(column)) ? 'dialog' : undefined"
16829
+ [attr.aria-expanded]="(isNavigable && showColumnMenu(column)) ? false : undefined"
16830
+ [attr.aria-keyshortcuts]="isNavigable && showColumnMenu(column) ? 'Alt + ArrowDown' : undefined"
16893
16831
  [attr.rowspan]="column.rowspan(totalColumnLevels)"
16894
16832
  [attr.colspan]="column.colspan">
16895
16833
  <span class="k-cell-inner">
16896
- <span class="k-link">
16834
+ <span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'reorderable')">
16897
16835
  <ng-template
16898
16836
  [templateContext]="{
16899
16837
  templateRef: column.headerTemplateRef,
@@ -16936,9 +16874,7 @@ class HeaderComponent {
16936
16874
  [logicalSlaveRow]="lockedColumnsCount > 0"
16937
16875
  [logicalCellsCount]="columns.length"
16938
16876
  [logicalSlaveCellsCount]="unlockedColumnsCount"
16939
- [totalColumns]="totalColumns"
16940
- ></tr>
16941
- </ng-container>
16877
+ [totalColumns]="totalColumns"></tr>
16942
16878
  `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoGridLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "totalColumns"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoGridLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "colIndex", "colSpan", "rowSpan", "groupItem", "dataRowIndex", "dataItem", "detailExpandCell", "headerLabelText"] }, { kind: "directive", type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["context"], outputs: ["enter", "leave", "drop"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: DraggableColumnDirective, selector: "[kendoDraggableColumn]", inputs: ["context", "enableDrag"], outputs: ["drag"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: FilterMenuComponent, selector: "kendo-grid-filter-menu", inputs: ["column", "filter", "tabIndex"] }, { kind: "component", type: ColumnMenuComponent, selector: "kendo-grid-column-menu", inputs: ["standalone", "column", "settings", "sort", "filter", "sortable", "columnMenuTemplate", "tabIndex"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: SelectAllCheckboxDirective, selector: "[kendoGridSelectAllCheckbox]", inputs: ["state"], outputs: ["selectAllChange"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "directive", type: ColumnHandleDirective, selector: "[kendoGridColumnHandle]", inputs: ["isLast", "columns", "column"] }, { kind: "component", type: FilterRowComponent, selector: "[kendoGridFilterRow]", inputs: ["columns", "filter", "groups", "detailTemplate", "logicalRowIndex", "lockedColumnsCount"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }] });
16943
16879
  }
16944
16880
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderComponent, decorators: [{
@@ -16946,7 +16882,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
16946
16882
  args: [{
16947
16883
  selector: '[kendoGridHeader]',
16948
16884
  template: `
16949
- <ng-container>
16950
16885
  <tr *ngFor="let i of columnLevels; let levelIndex = index"
16951
16886
  kendoGridLogicalRow
16952
16887
  [logicalRowIndex]="levelIndex"
@@ -16998,8 +16933,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
16998
16933
  [attr.colspan]="column.colspan"
16999
16934
  [attr.aria-haspopup]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'dialog' : undefined"
17000
16935
  [attr.aria-expanded]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? false : undefined"
17001
- [attr.aria-keyshortcuts]="isNavigable ? 'Alt + ArrowDown' : undefined">
17002
-
16936
+ [attr.aria-keyshortcuts]="isNavigable && (showFilterMenu || showColumnMenu(column)) ? 'Alt + ArrowDown' : undefined">
17003
16937
  <ng-container *ngIf="!isInteractive(getColumnComponent(column), 'sortable')">
17004
16938
  <span class="k-cell-inner">
17005
16939
  <span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'groupable') && !isInteractive(getColumnComponent(column), 'reorderable')">
@@ -17033,7 +16967,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
17033
16967
  </kendo-grid-column-menu>
17034
16968
  </span>
17035
16969
  </ng-container>
17036
-
17037
16970
  <ng-container *ngIf="isInteractive(getColumnComponent(column), 'sortable')">
17038
16971
  <span class="k-cell-inner">
17039
16972
  <span #link class="k-link" (click)="onSortClick(getColumnComponent(column), $event, link)">
@@ -17076,7 +17009,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
17076
17009
  </kendo-grid-column-menu>
17077
17010
  </span>
17078
17011
  </ng-container>
17079
-
17080
17012
  <ng-container *ngIf="isCheckboxColumn(column) && !column.headerTemplateRef && $any(column).showSelectAll">
17081
17013
  <kendo-checkbox
17082
17014
  [attr.id]="selectAllCheckboxId()"
@@ -17117,10 +17049,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
17117
17049
  [class.k-grid-content-sticky]="column.sticky"
17118
17050
  [ngClass]="column.headerClass"
17119
17051
  [ngStyle]="column.headerStyle"
17052
+ [attr.aria-haspopup]="(isNavigable && showColumnMenu(column)) ? 'dialog' : undefined"
17053
+ [attr.aria-expanded]="(isNavigable && showColumnMenu(column)) ? false : undefined"
17054
+ [attr.aria-keyshortcuts]="isNavigable && showColumnMenu(column) ? 'Alt + ArrowDown' : undefined"
17120
17055
  [attr.rowspan]="column.rowspan(totalColumnLevels)"
17121
17056
  [attr.colspan]="column.colspan">
17122
17057
  <span class="k-cell-inner">
17123
- <span class="k-link">
17058
+ <span class="k-link" [class.!k-cursor-default]="!isInteractive(getColumnComponent(column), 'reorderable')">
17124
17059
  <ng-template
17125
17060
  [templateContext]="{
17126
17061
  templateRef: column.headerTemplateRef,
@@ -17163,9 +17098,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
17163
17098
  [logicalSlaveRow]="lockedColumnsCount > 0"
17164
17099
  [logicalCellsCount]="columns.length"
17165
17100
  [logicalSlaveCellsCount]="unlockedColumnsCount"
17166
- [totalColumns]="totalColumns"
17167
- ></tr>
17168
- </ng-container>
17101
+ [totalColumns]="totalColumns"></tr>
17169
17102
  `,
17170
17103
  standalone: true,
17171
17104
  imports: [
@@ -19828,8 +19761,8 @@ const packageMetadata = {
19828
19761
  productName: 'Kendo UI for Angular',
19829
19762
  productCode: 'KENDOUIANGULAR',
19830
19763
  productCodes: ['KENDOUIANGULAR'],
19831
- publishDate: 1742998819,
19832
- version: '18.2.1-develop.3',
19764
+ publishDate: 1743106180,
19765
+ version: '18.3.0-develop.1',
19833
19766
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
19834
19767
  };
19835
19768
 
@@ -26179,6 +26112,7 @@ class GridComponent {
26179
26112
  </colgroup>
26180
26113
  <thead kendoGridHeader
26181
26114
  *ngIf="!hideHeader"
26115
+ role="rowgroup"
26182
26116
  [resizable]="resizable"
26183
26117
  [scrollable]="false"
26184
26118
  [columns]="$any(visibleColumns)"
@@ -26889,6 +26823,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
26889
26823
  </colgroup>
26890
26824
  <thead kendoGridHeader
26891
26825
  *ngIf="!hideHeader"
26826
+ role="rowgroup"
26892
26827
  [resizable]="resizable"
26893
26828
  [scrollable]="false"
26894
26829
  [columns]="$any(visibleColumns)"