@progress/kendo-angular-grid 24.0.0-develop.21 → 24.0.0-develop.23

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.
@@ -11,7 +11,7 @@ export { BrowserSupportService, ScrollbarService } from '@progress/kendo-angular
11
11
  import * as i1 from '@angular/platform-browser';
12
12
  import * as i1$1 from '@progress/kendo-angular-icons';
13
13
  import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
14
- import { plusIcon, cancelIcon, lockIcon, unlockIcon, chevronDownIcon, chevronRightIcon, chevronLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, searchIcon, checkIcon, arrowRotateCcwIcon, columnsIcon, sparklesIcon, fileCsvIcon, filePdfIcon, fileExcelIcon, trashIcon, saveIcon, pencilIcon, chevronUpIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, unpinOutlineIcon, pinOutlineBottomIcon, pinOutlineTopIcon, reorderIcon, pinOutlineIcon, minusIcon, insertMiddleIcon, xIcon, xCircleIcon, plusCircleIcon, undoIcon, redoIcon, arrowsSwapIcon, groupIcon, tableWizardIcon, clockArrowRotateIcon, fileClockOutlineIcon, zoomSparkleIcon, arrowUpOutlineIcon, stopSmIcon, lightbulbOutlineIcon } from '@progress/kendo-svg-icons';
14
+ import { plusIcon, cancelIcon, lockIcon, unlockIcon, chevronDownIcon, chevronRightIcon, chevronLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, searchIcon, checkIcon, arrowRotateCcwIcon, columnsIcon, sparklesIcon, fileCsvIcon, filePdfIcon, fileExcelIcon, trashIcon, saveIcon, pencilIcon, chevronUpIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, unpinIcon, pinBottomIcon, pinTopIcon, reorderIcon, pinIcon, minusIcon, insertMiddleIcon, xIcon, xCircleIcon, plusCircleIcon, undoIcon, redoIcon, arrowsSwapIcon, groupIcon, tableWizardIcon, clockArrowRotateIcon, fileClockIcon, zoomSparkleIcon, arrowUpIcon, stopIcon, lightbulbIcon } from '@progress/kendo-svg-icons';
15
15
  import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, skip, bufferCount, flatMap } from 'rxjs/operators';
16
16
  import * as i1$2 from '@progress/kendo-angular-l10n';
17
17
  import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
@@ -21770,30 +21770,30 @@ class RowPinService {
21770
21770
  }
21771
21771
  get pinnedTopRowMenuItems() {
21772
21772
  return [
21773
- { text: this.localization.get('pinMenuUnpinText'), icon: 'unpin-outline', svgIcon: unpinOutlineIcon, action: 'unpin' },
21774
- { text: this.localization.get('pinMenuPinToBottomText'), icon: 'pin-outline-bottom', svgIcon: pinOutlineBottomIcon, action: 'pinToBottom' }
21773
+ { text: this.localization.get('pinMenuUnpinText'), icon: 'unpin', svgIcon: unpinIcon, action: 'unpin' },
21774
+ { text: this.localization.get('pinMenuPinToBottomText'), icon: 'pin-bottom', svgIcon: pinBottomIcon, action: 'pinToBottom' }
21775
21775
  ];
21776
21776
  }
21777
21777
  get pinnedBottomRowMenuItems() {
21778
21778
  return [
21779
- { text: this.localization.get('pinMenuUnpinText'), icon: 'unpin-outline', svgIcon: unpinOutlineIcon, action: 'unpin' },
21780
- { text: this.localization.get('pinMenuPinToTopText'), icon: 'pin-outline-top', svgIcon: pinOutlineTopIcon, action: 'pinToTop' }
21779
+ { text: this.localization.get('pinMenuUnpinText'), icon: 'unpin', svgIcon: unpinIcon, action: 'unpin' },
21780
+ { text: this.localization.get('pinMenuPinToTopText'), icon: 'pin-top', svgIcon: pinTopIcon, action: 'pinToTop' }
21781
21781
  ];
21782
21782
  }
21783
21783
  get unpinnedRowMenuItems() {
21784
21784
  return [
21785
- { text: this.localization.get('pinMenuPinToTopText'), icon: 'pin-outline-top', svgIcon: pinOutlineTopIcon, action: 'pinToTop' },
21786
- { text: this.localization.get('pinMenuPinToBottomText'), icon: 'pin-outline-bottom', svgIcon: pinOutlineBottomIcon, action: 'pinToBottom' }
21785
+ { text: this.localization.get('pinMenuPinToTopText'), icon: 'pin-top', svgIcon: pinTopIcon, action: 'pinToTop' },
21786
+ { text: this.localization.get('pinMenuPinToBottomText'), icon: 'pin-bottom', svgIcon: pinBottomIcon, action: 'pinToBottom' }
21787
21787
  ];
21788
21788
  }
21789
21789
  get unpinRowMenuItem() {
21790
- return { text: this.localization.get('pinMenuUnpinText'), icon: 'unpin-outline', svgIcon: unpinOutlineIcon, action: 'unpin' };
21790
+ return { text: this.localization.get('pinMenuUnpinText'), icon: 'unpin', svgIcon: unpinIcon, action: 'unpin' };
21791
21791
  }
21792
21792
  get pinToTopMenuItem() {
21793
- return { text: this.localization.get('pinMenuPinToTopText'), icon: 'pin-outline-top', svgIcon: pinOutlineTopIcon, action: 'pinToTop' };
21793
+ return { text: this.localization.get('pinMenuPinToTopText'), icon: 'pin-top', svgIcon: pinTopIcon, action: 'pinToTop' };
21794
21794
  }
21795
21795
  get pinToBottomMenuItem() {
21796
- return { text: this.localization.get('pinMenuPinToBottomText'), icon: 'pin-outline-bottom', svgIcon: pinOutlineBottomIcon, action: 'pinToBottom' };
21796
+ return { text: this.localization.get('pinMenuPinToBottomText'), icon: 'pin-bottom', svgIcon: pinBottomIcon, action: 'pinToBottom' };
21797
21797
  }
21798
21798
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: RowPinService, deps: [{ token: ContextService }, { token: i1$2.LocalizationService }], target: i0.ɵɵFactoryTarget.Injectable });
21799
21799
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: RowPinService });
@@ -21856,8 +21856,8 @@ class CellComponent {
21856
21856
  }
21857
21857
  dataItem;
21858
21858
  reorderIcon = reorderIcon;
21859
- pinOutlineIcon = pinOutlineIcon;
21860
- unpinOutlineIcon = unpinOutlineIcon;
21859
+ pinIcon = pinIcon;
21860
+ unpinIcon = unpinIcon;
21861
21861
  minusIcon = minusIcon;
21862
21862
  plusIcon = plusIcon;
21863
21863
  onPinIconClick = () => {
@@ -22304,8 +22304,8 @@ class CellComponent {
22304
22304
  click: onPinIconClick
22305
22305
  }">
22306
22306
  <kendo-icon-wrapper
22307
- [name]="isRowPinnedTop || isRowPinnedBottom ? 'unpin-outline' : 'pin-outline'"
22308
- [svgIcon]="isRowPinnedTop || isRowPinnedBottom ? unpinOutlineIcon : pinOutlineIcon"
22307
+ [name]="isRowPinnedTop || isRowPinnedBottom ? 'unpin' : 'pin'"
22308
+ [svgIcon]="isRowPinnedTop || isRowPinnedBottom ? unpinIcon : pinIcon"
22309
22309
  [innerCssClass]="isRowPinnedTop || isRowPinnedBottom ? 'k-action-icon' : ''"
22310
22310
  >
22311
22311
  </kendo-icon-wrapper>
@@ -22555,8 +22555,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
22555
22555
  click: onPinIconClick
22556
22556
  }">
22557
22557
  <kendo-icon-wrapper
22558
- [name]="isRowPinnedTop || isRowPinnedBottom ? 'unpin-outline' : 'pin-outline'"
22559
- [svgIcon]="isRowPinnedTop || isRowPinnedBottom ? unpinOutlineIcon : pinOutlineIcon"
22558
+ [name]="isRowPinnedTop || isRowPinnedBottom ? 'unpin' : 'pin'"
22559
+ [svgIcon]="isRowPinnedTop || isRowPinnedBottom ? unpinIcon : pinIcon"
22560
22560
  [innerCssClass]="isRowPinnedTop || isRowPinnedBottom ? 'k-action-icon' : ''"
22561
22561
  >
22562
22562
  </kendo-icon-wrapper>
@@ -24796,8 +24796,8 @@ const packageMetadata = {
24796
24796
  productName: 'Kendo UI for Angular',
24797
24797
  productCode: 'KENDOUIANGULAR',
24798
24798
  productCodes: ['KENDOUIANGULAR'],
24799
- publishDate: 1778161115,
24800
- version: '24.0.0-develop.21',
24799
+ publishDate: 1778500853,
24800
+ version: '24.0.0-develop.23',
24801
24801
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
24802
24802
  };
24803
24803
 
@@ -45225,14 +45225,14 @@ class SmartBoxComponent {
45225
45225
  isOpen = false;
45226
45226
  checkIcon = checkIcon;
45227
45227
  clockArrowRotateIcon = clockArrowRotateIcon;
45228
- fileClockOutlineIcon = fileClockOutlineIcon;
45228
+ fileClockIcon = fileClockIcon;
45229
45229
  searchIcon = searchIcon;
45230
45230
  zoomSparkleIcon = zoomSparkleIcon;
45231
45231
  sparklesIcon = sparklesIcon;
45232
- arrowUpOutlineIcon = arrowUpOutlineIcon;
45233
- stopSmIcon = stopSmIcon;
45232
+ arrowUpIcon = arrowUpIcon;
45233
+ stopIcon = stopIcon;
45234
45234
  xIcon = xIcon;
45235
- lightbulbOutlineIcon = lightbulbOutlineIcon;
45235
+ lightbulbIcon = lightbulbIcon;
45236
45236
  searchListData = [];
45237
45237
  aiAssistantHistory = [];
45238
45238
  searchHistory = [];
@@ -45922,8 +45922,8 @@ class SmartBoxComponent {
45922
45922
  [attr.title]="messageFor('smartBoxSubmitPromptButton')"
45923
45923
  [attr.aria-label]="messageFor('smartBoxSubmitPromptButton')"
45924
45924
  [attr.aria-disabled]="input.value.length === 0"
45925
- [svgIcon]="loading ? stopSmIcon : arrowUpOutlineIcon"
45926
- [icon]="loading ? 'stop-sm' : 'arrow-up-outline'"
45925
+ [svgIcon]="loading ? stopIcon : arrowUpIcon"
45926
+ [icon]="loading ? 'stop' : 'arrow-up'"
45927
45927
  [disabled]="input.value.length === 0"
45928
45928
  (click)="onPromptSubmit()">
45929
45929
  </button>
@@ -45968,8 +45968,8 @@ class SmartBoxComponent {
45968
45968
  <li class="k-list-group-item">
45969
45969
  <kendo-icon-wrapper
45970
45970
  innerCssClass="k-list-item-icon"
45971
- name="lightbulb-outline"
45972
- [svgIcon]="lightbulbOutlineIcon"
45971
+ name="lightbulb"
45972
+ [svgIcon]="lightbulbIcon"
45973
45973
  class="k-list-item-icon-wrapper">
45974
45974
  </kendo-icon-wrapper>
45975
45975
  <span class="k-list-item-text">{{messageFor('smartBoxSuggestedPrompts')}}</span>
@@ -45996,7 +45996,7 @@ class SmartBoxComponent {
45996
45996
  <span class="k-no-data k-smart-box-no-data">
45997
45997
  <kendo-icon-wrapper
45998
45998
  icon="file-report"
45999
- [svgIcon]="fileClockOutlineIcon"
45999
+ [svgIcon]="fileClockIcon"
46000
46000
  size="xxxlarge">
46001
46001
  </kendo-icon-wrapper>
46002
46002
  <span>{{messageFor('smartBoxNoPreviousSearches')}}</span>
@@ -46034,7 +46034,7 @@ class SmartBoxComponent {
46034
46034
  <span class="k-no-data k-smart-box-no-data">
46035
46035
  <kendo-icon-wrapper
46036
46036
  icon="file-report"
46037
- [svgIcon]="fileClockOutlineIcon"
46037
+ [svgIcon]="fileClockIcon"
46038
46038
  size="xxxlarge">
46039
46039
  </kendo-icon-wrapper>
46040
46040
  <span>{{messageFor('smartBoxNoPreviousSearches')}}</span>
@@ -46072,7 +46072,7 @@ class SmartBoxComponent {
46072
46072
  <span class="k-no-data k-smart-box-no-data">
46073
46073
  <kendo-icon-wrapper
46074
46074
  icon="file-report"
46075
- [svgIcon]="fileClockOutlineIcon"
46075
+ [svgIcon]="fileClockIcon"
46076
46076
  size="xxxlarge">
46077
46077
  </kendo-icon-wrapper>
46078
46078
  <span>{{messageFor('smartBoxNoPreviousPrompts')}}</span>
@@ -46198,8 +46198,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
46198
46198
  [attr.title]="messageFor('smartBoxSubmitPromptButton')"
46199
46199
  [attr.aria-label]="messageFor('smartBoxSubmitPromptButton')"
46200
46200
  [attr.aria-disabled]="input.value.length === 0"
46201
- [svgIcon]="loading ? stopSmIcon : arrowUpOutlineIcon"
46202
- [icon]="loading ? 'stop-sm' : 'arrow-up-outline'"
46201
+ [svgIcon]="loading ? stopIcon : arrowUpIcon"
46202
+ [icon]="loading ? 'stop' : 'arrow-up'"
46203
46203
  [disabled]="input.value.length === 0"
46204
46204
  (click)="onPromptSubmit()">
46205
46205
  </button>
@@ -46244,8 +46244,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
46244
46244
  <li class="k-list-group-item">
46245
46245
  <kendo-icon-wrapper
46246
46246
  innerCssClass="k-list-item-icon"
46247
- name="lightbulb-outline"
46248
- [svgIcon]="lightbulbOutlineIcon"
46247
+ name="lightbulb"
46248
+ [svgIcon]="lightbulbIcon"
46249
46249
  class="k-list-item-icon-wrapper">
46250
46250
  </kendo-icon-wrapper>
46251
46251
  <span class="k-list-item-text">{{messageFor('smartBoxSuggestedPrompts')}}</span>
@@ -46272,7 +46272,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
46272
46272
  <span class="k-no-data k-smart-box-no-data">
46273
46273
  <kendo-icon-wrapper
46274
46274
  icon="file-report"
46275
- [svgIcon]="fileClockOutlineIcon"
46275
+ [svgIcon]="fileClockIcon"
46276
46276
  size="xxxlarge">
46277
46277
  </kendo-icon-wrapper>
46278
46278
  <span>{{messageFor('smartBoxNoPreviousSearches')}}</span>
@@ -46310,7 +46310,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
46310
46310
  <span class="k-no-data k-smart-box-no-data">
46311
46311
  <kendo-icon-wrapper
46312
46312
  icon="file-report"
46313
- [svgIcon]="fileClockOutlineIcon"
46313
+ [svgIcon]="fileClockIcon"
46314
46314
  size="xxxlarge">
46315
46315
  </kendo-icon-wrapper>
46316
46316
  <span>{{messageFor('smartBoxNoPreviousSearches')}}</span>
@@ -46348,7 +46348,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
46348
46348
  <span class="k-no-data k-smart-box-no-data">
46349
46349
  <kendo-icon-wrapper
46350
46350
  icon="file-report"
46351
- [svgIcon]="fileClockOutlineIcon"
46351
+ [svgIcon]="fileClockIcon"
46352
46352
  size="xxxlarge">
46353
46353
  </kendo-icon-wrapper>
46354
46354
  <span>{{messageFor('smartBoxNoPreviousPrompts')}}</span>
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1778161115,
11
- "version": "24.0.0-develop.21",
10
+ "publishDate": 1778500853,
11
+ "version": "24.0.0-develop.23",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "24.0.0-develop.21",
3
+ "version": "24.0.0-develop.23",
4
4
  "description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -94,7 +94,7 @@
94
94
  "package": {
95
95
  "productName": "Kendo UI for Angular",
96
96
  "productCode": "KENDOUIANGULAR",
97
- "publishDate": 1778161115,
97
+ "publishDate": 1778500853,
98
98
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
99
99
  }
100
100
  },
@@ -107,32 +107,32 @@
107
107
  "@progress/kendo-data-query": "^1.7.3",
108
108
  "@progress/kendo-drawing": "^1.25.0",
109
109
  "@progress/kendo-licensing": "^1.11.0",
110
- "@progress/kendo-angular-buttons": "24.0.0-develop.21",
111
- "@progress/kendo-angular-common": "24.0.0-develop.21",
112
- "@progress/kendo-angular-dateinputs": "24.0.0-develop.21",
113
- "@progress/kendo-angular-layout": "24.0.0-develop.21",
114
- "@progress/kendo-angular-navigation": "24.0.0-develop.21",
115
- "@progress/kendo-angular-dropdowns": "24.0.0-develop.21",
116
- "@progress/kendo-angular-excel-export": "24.0.0-develop.21",
117
- "@progress/kendo-angular-icons": "24.0.0-develop.21",
118
- "@progress/kendo-angular-indicators": "24.0.0-develop.21",
119
- "@progress/kendo-angular-inputs": "24.0.0-develop.21",
120
- "@progress/kendo-angular-conversational-ui": "24.0.0-develop.21",
121
- "@progress/kendo-angular-intl": "24.0.0-develop.21",
122
- "@progress/kendo-angular-l10n": "24.0.0-develop.21",
123
- "@progress/kendo-angular-label": "24.0.0-develop.21",
124
- "@progress/kendo-angular-menu": "24.0.0-develop.21",
125
- "@progress/kendo-angular-pager": "24.0.0-develop.21",
126
- "@progress/kendo-angular-pdf-export": "24.0.0-develop.21",
127
- "@progress/kendo-angular-popup": "24.0.0-develop.21",
128
- "@progress/kendo-angular-toolbar": "24.0.0-develop.21",
129
- "@progress/kendo-angular-upload": "24.0.0-develop.21",
130
- "@progress/kendo-angular-utils": "24.0.0-develop.21",
110
+ "@progress/kendo-angular-buttons": "24.0.0-develop.23",
111
+ "@progress/kendo-angular-common": "24.0.0-develop.23",
112
+ "@progress/kendo-angular-dateinputs": "24.0.0-develop.23",
113
+ "@progress/kendo-angular-layout": "24.0.0-develop.23",
114
+ "@progress/kendo-angular-navigation": "24.0.0-develop.23",
115
+ "@progress/kendo-angular-dropdowns": "24.0.0-develop.23",
116
+ "@progress/kendo-angular-excel-export": "24.0.0-develop.23",
117
+ "@progress/kendo-angular-icons": "24.0.0-develop.23",
118
+ "@progress/kendo-angular-indicators": "24.0.0-develop.23",
119
+ "@progress/kendo-angular-inputs": "24.0.0-develop.23",
120
+ "@progress/kendo-angular-conversational-ui": "24.0.0-develop.23",
121
+ "@progress/kendo-angular-intl": "24.0.0-develop.23",
122
+ "@progress/kendo-angular-l10n": "24.0.0-develop.23",
123
+ "@progress/kendo-angular-label": "24.0.0-develop.23",
124
+ "@progress/kendo-angular-menu": "24.0.0-develop.23",
125
+ "@progress/kendo-angular-pager": "24.0.0-develop.23",
126
+ "@progress/kendo-angular-pdf-export": "24.0.0-develop.23",
127
+ "@progress/kendo-angular-popup": "24.0.0-develop.23",
128
+ "@progress/kendo-angular-toolbar": "24.0.0-develop.23",
129
+ "@progress/kendo-angular-upload": "24.0.0-develop.23",
130
+ "@progress/kendo-angular-utils": "24.0.0-develop.23",
131
131
  "rxjs": "^6.5.3 || ^7.0.0"
132
132
  },
133
133
  "dependencies": {
134
134
  "tslib": "^2.3.1",
135
- "@progress/kendo-angular-schematics": "24.0.0-develop.21",
135
+ "@progress/kendo-angular-schematics": "24.0.0-develop.23",
136
136
  "@progress/kendo-common": "^1.0.1",
137
137
  "@progress/kendo-file-saver": "^1.0.0",
138
138
  "@progress/kendo-csv": "^1.0.0"
@@ -53,8 +53,8 @@ export declare class CellComponent implements DoCheck, OnInit, OnDestroy {
53
53
  get rowIndex(): number;
54
54
  dataItem: any;
55
55
  reorderIcon: SVGIcon;
56
- pinOutlineIcon: SVGIcon;
57
- unpinOutlineIcon: SVGIcon;
56
+ pinIcon: SVGIcon;
57
+ unpinIcon: SVGIcon;
58
58
  minusIcon: SVGIcon;
59
59
  plusIcon: SVGIcon;
60
60
  onPinIconClick: () => void;
@@ -77,14 +77,14 @@ export declare class SmartBoxComponent implements AfterViewInit, OnChanges, OnDe
77
77
  isOpen: boolean;
78
78
  checkIcon: SVGIcon;
79
79
  clockArrowRotateIcon: SVGIcon;
80
- fileClockOutlineIcon: SVGIcon;
80
+ fileClockIcon: SVGIcon;
81
81
  searchIcon: SVGIcon;
82
82
  zoomSparkleIcon: SVGIcon;
83
83
  sparklesIcon: SVGIcon;
84
- arrowUpOutlineIcon: SVGIcon;
85
- stopSmIcon: SVGIcon;
84
+ arrowUpIcon: SVGIcon;
85
+ stopIcon: SVGIcon;
86
86
  xIcon: SVGIcon;
87
- lightbulbOutlineIcon: SVGIcon;
87
+ lightbulbIcon: SVGIcon;
88
88
  searchListData: Array<{
89
89
  text: string;
90
90
  description: string;
@@ -9,19 +9,19 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
11
11
  // peer deps of the dropdowns
12
- '@progress/kendo-angular-treeview': '24.0.0-develop.21',
13
- '@progress/kendo-angular-navigation': '24.0.0-develop.21',
12
+ '@progress/kendo-angular-treeview': '24.0.0-develop.23',
13
+ '@progress/kendo-angular-navigation': '24.0.0-develop.23',
14
14
  // peer dependency of kendo-angular-inputs
15
- '@progress/kendo-angular-dialog': '24.0.0-develop.21',
15
+ '@progress/kendo-angular-dialog': '24.0.0-develop.23',
16
16
  // peer dependency of kendo-angular-icons
17
17
  '@progress/kendo-svg-icons': '^4.0.0',
18
18
  // peer dependency of kendo-angular-layout
19
- '@progress/kendo-angular-progressbar': '24.0.0-develop.21',
19
+ '@progress/kendo-angular-progressbar': '24.0.0-develop.23',
20
20
  // transitive peer dependencies from toolbar
21
- '@progress/kendo-angular-indicators': '24.0.0-develop.21',
21
+ '@progress/kendo-angular-indicators': '24.0.0-develop.23',
22
22
  // transitive peer dependencies from conversational-ui
23
- '@progress/kendo-angular-menu': '24.0.0-develop.21',
24
- '@progress/kendo-angular-upload': '24.0.0-develop.21'
23
+ '@progress/kendo-angular-menu': '24.0.0-develop.23',
24
+ '@progress/kendo-angular-upload': '24.0.0-develop.23'
25
25
  } });
26
26
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
27
27
  }