@progress/kendo-angular-filter 14.0.1 → 14.0.2-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.
@@ -98,6 +98,7 @@ export class FilterExpressionComponent extends BaseFilterRowComponent {
98
98
  this.setOperators(defaultFilter);
99
99
  }
100
100
  this.setEditorTemplate();
101
+ this.setEditorType();
101
102
  this.localizationSubscription = this.localization.changes.subscribe(() => {
102
103
  this.setOperators(foundFilter || defaultFilter);
103
104
  this.cdr.detectChanges();
@@ -150,9 +151,9 @@ export class FilterExpressionComponent extends BaseFilterRowComponent {
150
151
  break;
151
152
  }
152
153
  }
153
- getEditorType() {
154
- const item = this.filterService.filters.find((filterExpression) => filterExpression.field === this.currentItem.field);
155
- return item.editor;
154
+ setEditorType() {
155
+ const filterExpression = this.filterService.filters.find((filterExpression) => filterExpression.field === this.currentItem.field);
156
+ this.editorType = filterExpression?.editor;
156
157
  }
157
158
  removeFilterExpression() {
158
159
  this.filterService.remove(this.currentItem, this.index);
@@ -192,7 +193,7 @@ export class FilterExpressionComponent extends BaseFilterRowComponent {
192
193
  }
193
194
  setEditorTemplate() {
194
195
  const filterExpression = this.filterService.filters.find((filter) => filter.field === this.currentItem.field);
195
- this.editorTemplate = filterExpression.editorTemplate ? filterExpression.editorTemplate : null;
196
+ this.editorTemplate = filterExpression?.editorTemplate;
196
197
  }
197
198
  }
198
199
  FilterExpressionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterExpressionComponent, deps: [{ token: i1.FilterService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i2.NavigationService }, { token: i3.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
@@ -219,13 +220,13 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
219
220
  <kendo-filter-expression-operators
220
221
  [currentItem]="currentItem"
221
222
  [operators]="operators"
222
- [editorType]="getEditorType()"
223
+ [editorType]="editorType"
223
224
  (valueChange)="onOperatorChange($event);">
224
225
  </kendo-filter-expression-operators>
225
226
  </div>
226
227
 
227
228
  <div class="k-filter-value k-toolbar-item">
228
- <ng-container *ngIf="!editorTemplate" [ngSwitch]="getEditorType()">
229
+ <ng-container *ngIf="!editorTemplate" [ngSwitch]="editorType">
229
230
  <kendo-filter-text-editor *ngSwitchCase="'string'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" (valueChange)="valueChange.emit()"></kendo-filter-text-editor>
230
231
  <kendo-filter-numeric-editor *ngSwitchCase="'number'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" [format]="numericEditorFormat" (valueChange)="valueChange.emit()"></kendo-filter-numeric-editor>
231
232
  <kendo-filter-boolean-editor *ngSwitchCase="'boolean'" [currentItem]="currentItem" (valueChange)="valueChange.emit()"></kendo-filter-boolean-editor>
@@ -279,13 +280,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
279
280
  <kendo-filter-expression-operators
280
281
  [currentItem]="currentItem"
281
282
  [operators]="operators"
282
- [editorType]="getEditorType()"
283
+ [editorType]="editorType"
283
284
  (valueChange)="onOperatorChange($event);">
284
285
  </kendo-filter-expression-operators>
285
286
  </div>
286
287
 
287
288
  <div class="k-filter-value k-toolbar-item">
288
- <ng-container *ngIf="!editorTemplate" [ngSwitch]="getEditorType()">
289
+ <ng-container *ngIf="!editorTemplate" [ngSwitch]="editorType">
289
290
  <kendo-filter-text-editor *ngSwitchCase="'string'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" (valueChange)="valueChange.emit()"></kendo-filter-text-editor>
290
291
  <kendo-filter-numeric-editor *ngSwitchCase="'number'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" [format]="numericEditorFormat" (valueChange)="valueChange.emit()"></kendo-filter-numeric-editor>
291
292
  <kendo-filter-boolean-editor *ngSwitchCase="'boolean'" [currentItem]="currentItem" (valueChange)="valueChange.emit()"></kendo-filter-boolean-editor>
@@ -138,6 +138,18 @@ export class FilterComponent {
138
138
  });
139
139
  }
140
140
  ngAfterViewInit() {
141
+ this.filterFieldsChanged();
142
+ this.filterFieldsSubscription = this.filterFields.changes.subscribe(this.filterFieldsChanged.bind(this));
143
+ }
144
+ ngOnDestroy() {
145
+ if (this.localizationSubscription) {
146
+ this.localizationSubscription.unsubscribe();
147
+ }
148
+ if (this.filterFieldsSubscription) {
149
+ this.filterFieldsSubscription.unsubscribe();
150
+ }
151
+ }
152
+ filterFieldsChanged() {
141
153
  if (this.filterFields && this.filterFields.length > 0) {
142
154
  this.filters = this.filterFields.map((filterField) => ({
143
155
  ...filterField,
@@ -155,11 +167,6 @@ export class FilterComponent {
155
167
  this.renderer.setAttribute(firstElement, 'tabindex', '0');
156
168
  }
157
169
  }
158
- ngOnDestroy() {
159
- if (this.localizationSubscription) {
160
- this.localizationSubscription.unsubscribe();
161
- }
162
- }
163
170
  /**
164
171
  * @hidden
165
172
  */
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-filter',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1697530382,
13
- version: '14.0.1',
12
+ publishDate: 1697636249,
13
+ version: '14.0.2-develop.1',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -235,8 +235,8 @@ const packageMetadata = {
235
235
  name: '@progress/kendo-angular-filter',
236
236
  productName: 'Kendo UI for Angular',
237
237
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
238
- publishDate: 1697530382,
239
- version: '14.0.1',
238
+ publishDate: 1697636249,
239
+ version: '14.0.2-develop.1',
240
240
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
241
241
  };
242
242
 
@@ -949,6 +949,7 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
949
949
  this.setOperators(defaultFilter);
950
950
  }
951
951
  this.setEditorTemplate();
952
+ this.setEditorType();
952
953
  this.localizationSubscription = this.localization.changes.subscribe(() => {
953
954
  this.setOperators(foundFilter || defaultFilter);
954
955
  this.cdr.detectChanges();
@@ -1001,9 +1002,9 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
1001
1002
  break;
1002
1003
  }
1003
1004
  }
1004
- getEditorType() {
1005
- const item = this.filterService.filters.find((filterExpression) => filterExpression.field === this.currentItem.field);
1006
- return item.editor;
1005
+ setEditorType() {
1006
+ const filterExpression = this.filterService.filters.find((filterExpression) => filterExpression.field === this.currentItem.field);
1007
+ this.editorType = filterExpression === null || filterExpression === void 0 ? void 0 : filterExpression.editor;
1007
1008
  }
1008
1009
  removeFilterExpression() {
1009
1010
  this.filterService.remove(this.currentItem, this.index);
@@ -1043,7 +1044,7 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
1043
1044
  }
1044
1045
  setEditorTemplate() {
1045
1046
  const filterExpression = this.filterService.filters.find((filter) => filter.field === this.currentItem.field);
1046
- this.editorTemplate = filterExpression.editorTemplate ? filterExpression.editorTemplate : null;
1047
+ this.editorTemplate = filterExpression === null || filterExpression === void 0 ? void 0 : filterExpression.editorTemplate;
1047
1048
  }
1048
1049
  }
1049
1050
  FilterExpressionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterExpressionComponent, deps: [{ token: FilterService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: NavigationService }, { token: i1.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
@@ -1070,13 +1071,13 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
1070
1071
  <kendo-filter-expression-operators
1071
1072
  [currentItem]="currentItem"
1072
1073
  [operators]="operators"
1073
- [editorType]="getEditorType()"
1074
+ [editorType]="editorType"
1074
1075
  (valueChange)="onOperatorChange($event);">
1075
1076
  </kendo-filter-expression-operators>
1076
1077
  </div>
1077
1078
 
1078
1079
  <div class="k-filter-value k-toolbar-item">
1079
- <ng-container *ngIf="!editorTemplate" [ngSwitch]="getEditorType()">
1080
+ <ng-container *ngIf="!editorTemplate" [ngSwitch]="editorType">
1080
1081
  <kendo-filter-text-editor *ngSwitchCase="'string'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" (valueChange)="valueChange.emit()"></kendo-filter-text-editor>
1081
1082
  <kendo-filter-numeric-editor *ngSwitchCase="'number'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" [format]="numericEditorFormat" (valueChange)="valueChange.emit()"></kendo-filter-numeric-editor>
1082
1083
  <kendo-filter-boolean-editor *ngSwitchCase="'boolean'" [currentItem]="currentItem" (valueChange)="valueChange.emit()"></kendo-filter-boolean-editor>
@@ -1130,13 +1131,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1130
1131
  <kendo-filter-expression-operators
1131
1132
  [currentItem]="currentItem"
1132
1133
  [operators]="operators"
1133
- [editorType]="getEditorType()"
1134
+ [editorType]="editorType"
1134
1135
  (valueChange)="onOperatorChange($event);">
1135
1136
  </kendo-filter-expression-operators>
1136
1137
  </div>
1137
1138
 
1138
1139
  <div class="k-filter-value k-toolbar-item">
1139
- <ng-container *ngIf="!editorTemplate" [ngSwitch]="getEditorType()">
1140
+ <ng-container *ngIf="!editorTemplate" [ngSwitch]="editorType">
1140
1141
  <kendo-filter-text-editor *ngSwitchCase="'string'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" (valueChange)="valueChange.emit()"></kendo-filter-text-editor>
1141
1142
  <kendo-filter-numeric-editor *ngSwitchCase="'number'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" [format]="numericEditorFormat" (valueChange)="valueChange.emit()"></kendo-filter-numeric-editor>
1142
1143
  <kendo-filter-boolean-editor *ngSwitchCase="'boolean'" [currentItem]="currentItem" (valueChange)="valueChange.emit()"></kendo-filter-boolean-editor>
@@ -1648,6 +1649,18 @@ class FilterComponent {
1648
1649
  });
1649
1650
  }
1650
1651
  ngAfterViewInit() {
1652
+ this.filterFieldsChanged();
1653
+ this.filterFieldsSubscription = this.filterFields.changes.subscribe(this.filterFieldsChanged.bind(this));
1654
+ }
1655
+ ngOnDestroy() {
1656
+ if (this.localizationSubscription) {
1657
+ this.localizationSubscription.unsubscribe();
1658
+ }
1659
+ if (this.filterFieldsSubscription) {
1660
+ this.filterFieldsSubscription.unsubscribe();
1661
+ }
1662
+ }
1663
+ filterFieldsChanged() {
1651
1664
  if (this.filterFields && this.filterFields.length > 0) {
1652
1665
  this.filters = this.filterFields.map((filterField) => {
1653
1666
  var _a;
@@ -1664,11 +1677,6 @@ class FilterComponent {
1664
1677
  this.renderer.setAttribute(firstElement, 'tabindex', '0');
1665
1678
  }
1666
1679
  }
1667
- ngOnDestroy() {
1668
- if (this.localizationSubscription) {
1669
- this.localizationSubscription.unsubscribe();
1670
- }
1671
- }
1672
1680
  /**
1673
1681
  * @hidden
1674
1682
  */
@@ -235,8 +235,8 @@ const packageMetadata = {
235
235
  name: '@progress/kendo-angular-filter',
236
236
  productName: 'Kendo UI for Angular',
237
237
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
238
- publishDate: 1697530382,
239
- version: '14.0.1',
238
+ publishDate: 1697636249,
239
+ version: '14.0.2-develop.1',
240
240
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
241
241
  };
242
242
 
@@ -948,6 +948,7 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
948
948
  this.setOperators(defaultFilter);
949
949
  }
950
950
  this.setEditorTemplate();
951
+ this.setEditorType();
951
952
  this.localizationSubscription = this.localization.changes.subscribe(() => {
952
953
  this.setOperators(foundFilter || defaultFilter);
953
954
  this.cdr.detectChanges();
@@ -1000,9 +1001,9 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
1000
1001
  break;
1001
1002
  }
1002
1003
  }
1003
- getEditorType() {
1004
- const item = this.filterService.filters.find((filterExpression) => filterExpression.field === this.currentItem.field);
1005
- return item.editor;
1004
+ setEditorType() {
1005
+ const filterExpression = this.filterService.filters.find((filterExpression) => filterExpression.field === this.currentItem.field);
1006
+ this.editorType = filterExpression?.editor;
1006
1007
  }
1007
1008
  removeFilterExpression() {
1008
1009
  this.filterService.remove(this.currentItem, this.index);
@@ -1042,7 +1043,7 @@ class FilterExpressionComponent extends BaseFilterRowComponent {
1042
1043
  }
1043
1044
  setEditorTemplate() {
1044
1045
  const filterExpression = this.filterService.filters.find((filter) => filter.field === this.currentItem.field);
1045
- this.editorTemplate = filterExpression.editorTemplate ? filterExpression.editorTemplate : null;
1046
+ this.editorTemplate = filterExpression?.editorTemplate;
1046
1047
  }
1047
1048
  }
1048
1049
  FilterExpressionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterExpressionComponent, deps: [{ token: FilterService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: NavigationService }, { token: i1.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
@@ -1069,13 +1070,13 @@ FilterExpressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
1069
1070
  <kendo-filter-expression-operators
1070
1071
  [currentItem]="currentItem"
1071
1072
  [operators]="operators"
1072
- [editorType]="getEditorType()"
1073
+ [editorType]="editorType"
1073
1074
  (valueChange)="onOperatorChange($event);">
1074
1075
  </kendo-filter-expression-operators>
1075
1076
  </div>
1076
1077
 
1077
1078
  <div class="k-filter-value k-toolbar-item">
1078
- <ng-container *ngIf="!editorTemplate" [ngSwitch]="getEditorType()">
1079
+ <ng-container *ngIf="!editorTemplate" [ngSwitch]="editorType">
1079
1080
  <kendo-filter-text-editor *ngSwitchCase="'string'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" (valueChange)="valueChange.emit()"></kendo-filter-text-editor>
1080
1081
  <kendo-filter-numeric-editor *ngSwitchCase="'number'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" [format]="numericEditorFormat" (valueChange)="valueChange.emit()"></kendo-filter-numeric-editor>
1081
1082
  <kendo-filter-boolean-editor *ngSwitchCase="'boolean'" [currentItem]="currentItem" (valueChange)="valueChange.emit()"></kendo-filter-boolean-editor>
@@ -1129,13 +1130,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1129
1130
  <kendo-filter-expression-operators
1130
1131
  [currentItem]="currentItem"
1131
1132
  [operators]="operators"
1132
- [editorType]="getEditorType()"
1133
+ [editorType]="editorType"
1133
1134
  (valueChange)="onOperatorChange($event);">
1134
1135
  </kendo-filter-expression-operators>
1135
1136
  </div>
1136
1137
 
1137
1138
  <div class="k-filter-value k-toolbar-item">
1138
- <ng-container *ngIf="!editorTemplate" [ngSwitch]="getEditorType()">
1139
+ <ng-container *ngIf="!editorTemplate" [ngSwitch]="editorType">
1139
1140
  <kendo-filter-text-editor *ngSwitchCase="'string'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" (valueChange)="valueChange.emit()"></kendo-filter-text-editor>
1140
1141
  <kendo-filter-numeric-editor *ngSwitchCase="'number'" [currentItem]="currentItem" [isDisabled]="isEditorDisabled" [format]="numericEditorFormat" (valueChange)="valueChange.emit()"></kendo-filter-numeric-editor>
1141
1142
  <kendo-filter-boolean-editor *ngSwitchCase="'boolean'" [currentItem]="currentItem" (valueChange)="valueChange.emit()"></kendo-filter-boolean-editor>
@@ -1647,6 +1648,18 @@ class FilterComponent {
1647
1648
  });
1648
1649
  }
1649
1650
  ngAfterViewInit() {
1651
+ this.filterFieldsChanged();
1652
+ this.filterFieldsSubscription = this.filterFields.changes.subscribe(this.filterFieldsChanged.bind(this));
1653
+ }
1654
+ ngOnDestroy() {
1655
+ if (this.localizationSubscription) {
1656
+ this.localizationSubscription.unsubscribe();
1657
+ }
1658
+ if (this.filterFieldsSubscription) {
1659
+ this.filterFieldsSubscription.unsubscribe();
1660
+ }
1661
+ }
1662
+ filterFieldsChanged() {
1650
1663
  if (this.filterFields && this.filterFields.length > 0) {
1651
1664
  this.filters = this.filterFields.map((filterField) => ({
1652
1665
  ...filterField,
@@ -1664,11 +1677,6 @@ class FilterComponent {
1664
1677
  this.renderer.setAttribute(firstElement, 'tabindex', '0');
1665
1678
  }
1666
1679
  }
1667
- ngOnDestroy() {
1668
- if (this.localizationSubscription) {
1669
- this.localizationSubscription.unsubscribe();
1670
- }
1671
- }
1672
1680
  /**
1673
1681
  * @hidden
1674
1682
  */
@@ -49,7 +49,7 @@ export declare class FilterExpressionComponent extends BaseFilterRowComponent im
49
49
  text: string;
50
50
  value: string;
51
51
  }[];
52
- getEditorType(): FilterEditor;
52
+ setEditorType(): void;
53
53
  removeFilterExpression(): void;
54
54
  private setOperators;
55
55
  onOperatorChange(value: string): void;
@@ -77,6 +77,7 @@ export declare class FilterComponent implements OnInit, OnDestroy {
77
77
  */
78
78
  valueChange: EventEmitter<CompositeFilterDescriptor>;
79
79
  private localizationSubscription;
80
+ private filterFieldsSubscription;
80
81
  private _value;
81
82
  private filterFields;
82
83
  private _filterItems;
@@ -86,6 +87,7 @@ export declare class FilterComponent implements OnInit, OnDestroy {
86
87
  ngOnInit(): void;
87
88
  ngAfterViewInit(): void;
88
89
  ngOnDestroy(): void;
90
+ private filterFieldsChanged;
89
91
  /**
90
92
  * @hidden
91
93
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-filter",
3
- "version": "14.0.1",
3
+ "version": "14.0.2-develop.1",
4
4
  "description": "Kendo UI Angular Filter",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -22,20 +22,20 @@
22
22
  "@angular/platform-browser": "13 - 16",
23
23
  "@progress/kendo-data-query": "^1.5.5",
24
24
  "@progress/kendo-licensing": "^1.0.2",
25
- "@progress/kendo-angular-buttons": "14.0.1",
26
- "@progress/kendo-angular-common": "14.0.1",
27
- "@progress/kendo-angular-dateinputs": "14.0.1",
28
- "@progress/kendo-angular-dropdowns": "14.0.1",
29
- "@progress/kendo-angular-inputs": "14.0.1",
30
- "@progress/kendo-angular-intl": "14.0.1",
31
- "@progress/kendo-angular-l10n": "14.0.1",
32
- "@progress/kendo-angular-icons": "14.0.1",
33
- "@progress/kendo-angular-label": "14.0.1",
25
+ "@progress/kendo-angular-buttons": "14.0.2-develop.1",
26
+ "@progress/kendo-angular-common": "14.0.2-develop.1",
27
+ "@progress/kendo-angular-dateinputs": "14.0.2-develop.1",
28
+ "@progress/kendo-angular-dropdowns": "14.0.2-develop.1",
29
+ "@progress/kendo-angular-inputs": "14.0.2-develop.1",
30
+ "@progress/kendo-angular-intl": "14.0.2-develop.1",
31
+ "@progress/kendo-angular-l10n": "14.0.2-develop.1",
32
+ "@progress/kendo-angular-icons": "14.0.2-develop.1",
33
+ "@progress/kendo-angular-label": "14.0.2-develop.1",
34
34
  "rxjs": "^6.5.3 || ^7.0.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "14.0.1"
38
+ "@progress/kendo-angular-schematics": "14.0.2-develop.1"
39
39
  },
40
40
  "schematics": "./schematics/collection.json",
41
41
  "module": "fesm2015/progress-kendo-angular-filter.mjs",
@@ -4,11 +4,11 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'FilterModule', package: 'filter', peerDependencies: {
6
6
  // peer dep of the dropdowns
7
- '@progress/kendo-angular-treeview': '14.0.1',
8
- '@progress/kendo-angular-popup': '14.0.1',
7
+ '@progress/kendo-angular-treeview': '14.0.2-develop.1',
8
+ '@progress/kendo-angular-popup': '14.0.2-develop.1',
9
9
  // peer dependency of kendo-angular-inputs
10
10
  '@progress/kendo-drawing': '^1.16.0',
11
- '@progress/kendo-angular-dialog': '14.0.1',
11
+ '@progress/kendo-angular-dialog': '14.0.2-develop.1',
12
12
  // Peer dependency of icons
13
13
  '@progress/kendo-svg-icons': '^2.0.0'
14
14
  } });