@progress/kendo-angular-scheduler 19.3.0-develop.32 → 19.3.0-develop.33

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.
@@ -89,10 +89,10 @@ export class EditDialogComponent {
89
89
  this.subs.add(fromEvent(this.element.nativeElement, 'keydown')
90
90
  .pipe(filter(() => this.isActive))
91
91
  .subscribe((e) => {
92
- if (e.keyCode === Keys.Escape) {
92
+ if (e.code === Keys.Escape) {
93
93
  this.reset();
94
94
  }
95
- if (e.keyCode === Keys.Enter && (withModifiers(e, Modifiers.CtrlKey) || withModifiers(e, Modifiers.MetaKey))) {
95
+ if ((e.code === Keys.Enter || e.code === Keys.NumpadEnter) && (withModifiers(e, Modifiers.CtrlKey) || withModifiers(e, Modifiers.MetaKey))) {
96
96
  this.onSave(e);
97
97
  }
98
98
  e.stopPropagation();
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ChangeDetectorRef, Directive, NgZone } from '@angular/core';
6
- import { Keys } from '@progress/kendo-angular-common';
6
+ import { Keys, normalizeNumpadKeys } from '@progress/kendo-angular-common';
7
7
  import { ZonedDate } from '@progress/kendo-date-math';
8
8
  import { Subscription } from 'rxjs';
9
9
  import { FocusService } from './focus.service';
@@ -35,7 +35,7 @@ export class ShortcutsDirective {
35
35
  viewState;
36
36
  dialogsService;
37
37
  shortcuts = [{
38
- match: e => e.keyCode === Keys.KeyC && noModifiers(e),
38
+ match: e => e.code === Keys.KeyC && noModifiers(e),
39
39
  action: e => {
40
40
  const scheduler = this.scheduler;
41
41
  const hours = new Date().getHours();
@@ -61,10 +61,14 @@ export class ShortcutsDirective {
61
61
  });
62
62
  }
63
63
  }, {
64
- match: e => e.keyCode >= Keys.Digit1 && e.keyCode <= Keys.Digit9 && withModifiers(e, Modifiers.AltKey),
64
+ match: e => {
65
+ const code = normalizeNumpadKeys(e);
66
+ return (code.startsWith('Digit') || code.startsWith('Numpad')) && withModifiers(e, Modifiers.AltKey);
67
+ },
65
68
  action: e => {
66
69
  const scheduler = this.scheduler;
67
- const viewIndex = e.keyCode - Keys.Digit0 - 1;
70
+ const code = normalizeNumpadKeys(e);
71
+ const viewIndex = this.digitToNumber(code, code.startsWith('Digit') ? 'Digit' : 'Numpad') - 1;
68
72
  const views = scheduler.views.toArray();
69
73
  const view = views[viewIndex];
70
74
  if (view) {
@@ -78,7 +82,7 @@ export class ShortcutsDirective {
78
82
  }
79
83
  }
80
84
  }, {
81
- match: e => e.keyCode === Keys.F10 && noModifiers(e),
85
+ match: e => e.code === Keys.F10 && noModifiers(e),
82
86
  action: (e) => {
83
87
  this.zone.run(() => {
84
88
  e.preventDefault();
@@ -87,7 +91,7 @@ export class ShortcutsDirective {
87
91
  });
88
92
  }
89
93
  }, {
90
- match: e => e.keyCode === Keys.KeyT && noModifiers(e),
94
+ match: e => e.code === Keys.KeyT && noModifiers(e),
91
95
  action: () => {
92
96
  this.zone.run(() => {
93
97
  this.scheduler.onNavigationAction({ type: 'today' });
@@ -95,7 +99,7 @@ export class ShortcutsDirective {
95
99
  });
96
100
  }
97
101
  }, {
98
- match: e => e.keyCode === Keys.KeyB && noModifiers(e),
102
+ match: e => e.code === Keys.KeyB && noModifiers(e),
99
103
  action: () => {
100
104
  this.zone.run(() => {
101
105
  this.scheduler.onNavigationAction({ type: 'toggle-business-hours' });
@@ -103,16 +107,23 @@ export class ShortcutsDirective {
103
107
  });
104
108
  }
105
109
  }, {
106
- match: (e) => (e.keyCode === Keys.ArrowLeft || e.keyCode === Keys.ArrowRight) && withModifiers(e, Modifiers.ShiftKey),
110
+ match: (e) => {
111
+ const code = normalizeNumpadKeys(e);
112
+ return (code === Keys.ArrowLeft || code === Keys.ArrowRight) && withModifiers(e, Modifiers.ShiftKey);
113
+ },
107
114
  action: (e) => {
108
- const type = e.keyCode === Keys.ArrowLeft ? 'prev' : 'next';
115
+ const code = normalizeNumpadKeys(e);
116
+ const type = code === Keys.ArrowLeft ? 'prev' : 'next';
109
117
  this.zone.run(() => {
110
118
  this.scheduler.onNavigationAction({ type });
111
119
  this.focusWait();
112
120
  });
113
121
  }
114
122
  }, {
115
- match: e => (e.keyCode === Keys.ArrowUp || e.keyCode === Keys.ArrowLeft) && noModifiers(e) && !isContentWrapper(e.target),
123
+ match: e => {
124
+ const code = normalizeNumpadKeys(e);
125
+ return (code === Keys.ArrowUp || code === Keys.ArrowLeft) && noModifiers(e) && !isContentWrapper(e.target);
126
+ },
116
127
  action: e => {
117
128
  //use the MultiViewCalendar navigation for Year View
118
129
  if (e.target.tagName === CALENDAR_TAG) {
@@ -126,14 +137,18 @@ export class ShortcutsDirective {
126
137
  if (!prevented) {
127
138
  const item = this.focusService.activeItem;
128
139
  const isFirstEvent = item.containerType === 'content' && item.element.nativeElement.matches(':first-of-type');
129
- const isUpArrow = e.keyCode === Keys.ArrowUp;
140
+ const code = normalizeNumpadKeys(e);
141
+ const isUpArrow = code === Keys.ArrowUp;
130
142
  // eslint-disable-next-line no-unused-expressions
131
143
  isFirstEvent && isUpArrow ? this.focusService.focusToolbar() : this.focusService.focusNext({ offset: -1 });
132
144
  e.preventDefault();
133
145
  }
134
146
  }
135
147
  }, {
136
- match: e => (e.keyCode === Keys.ArrowDown || e.keyCode === Keys.ArrowRight) && noModifiers(e) && !isContentWrapper(e.target),
148
+ match: e => {
149
+ const code = normalizeNumpadKeys(e);
150
+ return (code === Keys.ArrowDown || code === Keys.ArrowRight) && noModifiers(e) && !isContentWrapper(e.target);
151
+ },
137
152
  action: e => {
138
153
  //use the MultiViewCalendar navigation for Year View
139
154
  if (e.target.tagName === CALENDAR_TAG) {
@@ -147,7 +162,8 @@ export class ShortcutsDirective {
147
162
  if (!prevented) {
148
163
  const isInToolbar = this.focusService.activeItem.containerType === 'toolbar';
149
164
  const offset = 1;
150
- if (e.keyCode === Keys.ArrowDown && isInToolbar) {
165
+ const code = normalizeNumpadKeys(e);
166
+ if (code === Keys.ArrowDown && isInToolbar) {
151
167
  const focusableElementsArray = Array.from(this.focusService.focusableItems);
152
168
  const firstFocusableContentElementIndex = focusableElementsArray.findIndex(item => item.containerType === 'content');
153
169
  if (firstFocusableContentElementIndex > -1) {
@@ -162,13 +178,13 @@ export class ShortcutsDirective {
162
178
  }
163
179
  }];
164
180
  taskShortcuts = [{
165
- match: e => (e.keyCode === Keys.Delete || e.keyCode === Keys.Backspace) && noModifiers(e),
181
+ match: e => (e.code === Keys.Delete || e.code === Keys.Backspace) && noModifiers(e),
166
182
  action: (e, event) => {
167
183
  this.viewState.emitEvent('remove', { event: event, dataItem: event.dataItem });
168
184
  e.preventDefault();
169
185
  }
170
186
  }, {
171
- match: e => e.keyCode === Keys.Enter && noModifiers(e),
187
+ match: e => (e.code === Keys.Enter || e.code === Keys.NumpadEnter) && noModifiers(e),
172
188
  action: (e, event) => {
173
189
  this.viewState.emitEvent('eventDblClick', { type: 'dblclick', event: event, originalEvent: e });
174
190
  e.preventDefault();
@@ -208,6 +224,9 @@ export class ShortcutsDirective {
208
224
  element.closest('.k-views-dropdown');
209
225
  return isInToolbar && !isInBuiltInElement;
210
226
  }
227
+ digitToNumber(code, keyType) {
228
+ return parseInt(code.replace(keyType, ''), 10);
229
+ }
211
230
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ShortcutsDirective, deps: [{ token: i1.SchedulerComponent }, { token: i2.DomEventsService }, { token: i3.FocusService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i4.ViewStateService }, { token: i5.DialogsService }], target: i0.ɵɵFactoryTarget.Directive });
212
231
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ShortcutsDirective, isStandalone: true, selector: "kendo-scheduler", ngImport: i0 });
213
232
  }
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1754579794,
14
- version: '19.3.0-develop.32',
13
+ publishDate: 1754590038,
14
+ version: '19.3.0-develop.33',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -7,7 +7,7 @@ import { Directive, Optional, Injectable, EventEmitter, Input, Inject, isDevMode
7
7
  import * as i1$1 from '@progress/kendo-angular-l10n';
8
8
  import { LocalizationService, L10N_PREFIX, RTL, ComponentMessages } from '@progress/kendo-angular-l10n';
9
9
  import * as i7 from '@progress/kendo-angular-common';
10
- import { hasObservers, isDocumentAvailable, isVisible as isVisible$1, scrollbarWidth, isChanged, Keys, ResizeSensorComponent, getLicenseMessage, shouldShowValidationUI, anyChanged, WatermarkOverlayComponent, guid, ResizeBatchService } from '@progress/kendo-angular-common';
10
+ import { hasObservers, isDocumentAvailable, isVisible as isVisible$1, scrollbarWidth, isChanged, Keys, ResizeSensorComponent, getLicenseMessage, shouldShowValidationUI, anyChanged, WatermarkOverlayComponent, guid, normalizeNumpadKeys, ResizeBatchService } from '@progress/kendo-angular-common';
11
11
  import { isEqualDate, ZonedDate, toLocalDate, getDate, timezoneNames, Day, MS_PER_DAY as MS_PER_DAY$1, addDays, firstDayOfMonth, lastDayOfMonth, firstDayInWeek, addMonths, addWeeks, addYears } from '@progress/kendo-date-math';
12
12
  import { auditTime, buffer, filter, map, debounceTime, take, distinctUntilChanged, switchMap, tap } from 'rxjs/operators';
13
13
  import { validatePackage } from '@progress/kendo-licensing';
@@ -43,8 +43,8 @@ const packageMetadata = {
43
43
  productName: 'Kendo UI for Angular',
44
44
  productCode: 'KENDOUIANGULAR',
45
45
  productCodes: ['KENDOUIANGULAR'],
46
- publishDate: 1754579794,
47
- version: '19.3.0-develop.32',
46
+ publishDate: 1754590038,
47
+ version: '19.3.0-develop.33',
48
48
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
49
49
  };
50
50
 
@@ -5873,10 +5873,10 @@ class EditDialogComponent {
5873
5873
  this.subs.add(fromEvent(this.element.nativeElement, 'keydown')
5874
5874
  .pipe(filter(() => this.isActive))
5875
5875
  .subscribe((e) => {
5876
- if (e.keyCode === Keys.Escape) {
5876
+ if (e.code === Keys.Escape) {
5877
5877
  this.reset();
5878
5878
  }
5879
- if (e.keyCode === Keys.Enter && (withModifiers(e, Modifiers.CtrlKey) || withModifiers(e, Modifiers.MetaKey))) {
5879
+ if ((e.code === Keys.Enter || e.code === Keys.NumpadEnter) && (withModifiers(e, Modifiers.CtrlKey) || withModifiers(e, Modifiers.MetaKey))) {
5880
5880
  this.onSave(e);
5881
5881
  }
5882
5882
  e.stopPropagation();
@@ -20470,7 +20470,7 @@ class ShortcutsDirective {
20470
20470
  viewState;
20471
20471
  dialogsService;
20472
20472
  shortcuts = [{
20473
- match: e => e.keyCode === Keys.KeyC && noModifiers(e),
20473
+ match: e => e.code === Keys.KeyC && noModifiers(e),
20474
20474
  action: e => {
20475
20475
  const scheduler = this.scheduler;
20476
20476
  const hours = new Date().getHours();
@@ -20496,10 +20496,14 @@ class ShortcutsDirective {
20496
20496
  });
20497
20497
  }
20498
20498
  }, {
20499
- match: e => e.keyCode >= Keys.Digit1 && e.keyCode <= Keys.Digit9 && withModifiers(e, Modifiers.AltKey),
20499
+ match: e => {
20500
+ const code = normalizeNumpadKeys(e);
20501
+ return (code.startsWith('Digit') || code.startsWith('Numpad')) && withModifiers(e, Modifiers.AltKey);
20502
+ },
20500
20503
  action: e => {
20501
20504
  const scheduler = this.scheduler;
20502
- const viewIndex = e.keyCode - Keys.Digit0 - 1;
20505
+ const code = normalizeNumpadKeys(e);
20506
+ const viewIndex = this.digitToNumber(code, code.startsWith('Digit') ? 'Digit' : 'Numpad') - 1;
20503
20507
  const views = scheduler.views.toArray();
20504
20508
  const view = views[viewIndex];
20505
20509
  if (view) {
@@ -20513,7 +20517,7 @@ class ShortcutsDirective {
20513
20517
  }
20514
20518
  }
20515
20519
  }, {
20516
- match: e => e.keyCode === Keys.F10 && noModifiers(e),
20520
+ match: e => e.code === Keys.F10 && noModifiers(e),
20517
20521
  action: (e) => {
20518
20522
  this.zone.run(() => {
20519
20523
  e.preventDefault();
@@ -20522,7 +20526,7 @@ class ShortcutsDirective {
20522
20526
  });
20523
20527
  }
20524
20528
  }, {
20525
- match: e => e.keyCode === Keys.KeyT && noModifiers(e),
20529
+ match: e => e.code === Keys.KeyT && noModifiers(e),
20526
20530
  action: () => {
20527
20531
  this.zone.run(() => {
20528
20532
  this.scheduler.onNavigationAction({ type: 'today' });
@@ -20530,7 +20534,7 @@ class ShortcutsDirective {
20530
20534
  });
20531
20535
  }
20532
20536
  }, {
20533
- match: e => e.keyCode === Keys.KeyB && noModifiers(e),
20537
+ match: e => e.code === Keys.KeyB && noModifiers(e),
20534
20538
  action: () => {
20535
20539
  this.zone.run(() => {
20536
20540
  this.scheduler.onNavigationAction({ type: 'toggle-business-hours' });
@@ -20538,16 +20542,23 @@ class ShortcutsDirective {
20538
20542
  });
20539
20543
  }
20540
20544
  }, {
20541
- match: (e) => (e.keyCode === Keys.ArrowLeft || e.keyCode === Keys.ArrowRight) && withModifiers(e, Modifiers.ShiftKey),
20545
+ match: (e) => {
20546
+ const code = normalizeNumpadKeys(e);
20547
+ return (code === Keys.ArrowLeft || code === Keys.ArrowRight) && withModifiers(e, Modifiers.ShiftKey);
20548
+ },
20542
20549
  action: (e) => {
20543
- const type = e.keyCode === Keys.ArrowLeft ? 'prev' : 'next';
20550
+ const code = normalizeNumpadKeys(e);
20551
+ const type = code === Keys.ArrowLeft ? 'prev' : 'next';
20544
20552
  this.zone.run(() => {
20545
20553
  this.scheduler.onNavigationAction({ type });
20546
20554
  this.focusWait();
20547
20555
  });
20548
20556
  }
20549
20557
  }, {
20550
- match: e => (e.keyCode === Keys.ArrowUp || e.keyCode === Keys.ArrowLeft) && noModifiers(e) && !isContentWrapper(e.target),
20558
+ match: e => {
20559
+ const code = normalizeNumpadKeys(e);
20560
+ return (code === Keys.ArrowUp || code === Keys.ArrowLeft) && noModifiers(e) && !isContentWrapper(e.target);
20561
+ },
20551
20562
  action: e => {
20552
20563
  //use the MultiViewCalendar navigation for Year View
20553
20564
  if (e.target.tagName === CALENDAR_TAG) {
@@ -20561,14 +20572,18 @@ class ShortcutsDirective {
20561
20572
  if (!prevented) {
20562
20573
  const item = this.focusService.activeItem;
20563
20574
  const isFirstEvent = item.containerType === 'content' && item.element.nativeElement.matches(':first-of-type');
20564
- const isUpArrow = e.keyCode === Keys.ArrowUp;
20575
+ const code = normalizeNumpadKeys(e);
20576
+ const isUpArrow = code === Keys.ArrowUp;
20565
20577
  // eslint-disable-next-line no-unused-expressions
20566
20578
  isFirstEvent && isUpArrow ? this.focusService.focusToolbar() : this.focusService.focusNext({ offset: -1 });
20567
20579
  e.preventDefault();
20568
20580
  }
20569
20581
  }
20570
20582
  }, {
20571
- match: e => (e.keyCode === Keys.ArrowDown || e.keyCode === Keys.ArrowRight) && noModifiers(e) && !isContentWrapper(e.target),
20583
+ match: e => {
20584
+ const code = normalizeNumpadKeys(e);
20585
+ return (code === Keys.ArrowDown || code === Keys.ArrowRight) && noModifiers(e) && !isContentWrapper(e.target);
20586
+ },
20572
20587
  action: e => {
20573
20588
  //use the MultiViewCalendar navigation for Year View
20574
20589
  if (e.target.tagName === CALENDAR_TAG) {
@@ -20582,7 +20597,8 @@ class ShortcutsDirective {
20582
20597
  if (!prevented) {
20583
20598
  const isInToolbar = this.focusService.activeItem.containerType === 'toolbar';
20584
20599
  const offset = 1;
20585
- if (e.keyCode === Keys.ArrowDown && isInToolbar) {
20600
+ const code = normalizeNumpadKeys(e);
20601
+ if (code === Keys.ArrowDown && isInToolbar) {
20586
20602
  const focusableElementsArray = Array.from(this.focusService.focusableItems);
20587
20603
  const firstFocusableContentElementIndex = focusableElementsArray.findIndex(item => item.containerType === 'content');
20588
20604
  if (firstFocusableContentElementIndex > -1) {
@@ -20597,13 +20613,13 @@ class ShortcutsDirective {
20597
20613
  }
20598
20614
  }];
20599
20615
  taskShortcuts = [{
20600
- match: e => (e.keyCode === Keys.Delete || e.keyCode === Keys.Backspace) && noModifiers(e),
20616
+ match: e => (e.code === Keys.Delete || e.code === Keys.Backspace) && noModifiers(e),
20601
20617
  action: (e, event) => {
20602
20618
  this.viewState.emitEvent('remove', { event: event, dataItem: event.dataItem });
20603
20619
  e.preventDefault();
20604
20620
  }
20605
20621
  }, {
20606
- match: e => e.keyCode === Keys.Enter && noModifiers(e),
20622
+ match: e => (e.code === Keys.Enter || e.code === Keys.NumpadEnter) && noModifiers(e),
20607
20623
  action: (e, event) => {
20608
20624
  this.viewState.emitEvent('eventDblClick', { type: 'dblclick', event: event, originalEvent: e });
20609
20625
  e.preventDefault();
@@ -20643,6 +20659,9 @@ class ShortcutsDirective {
20643
20659
  element.closest('.k-views-dropdown');
20644
20660
  return isInToolbar && !isInBuiltInElement;
20645
20661
  }
20662
+ digitToNumber(code, keyType) {
20663
+ return parseInt(code.replace(keyType, ''), 10);
20664
+ }
20646
20665
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ShortcutsDirective, deps: [{ token: SchedulerComponent }, { token: DomEventsService }, { token: FocusService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: ViewStateService }, { token: DialogsService }], target: i0.ɵɵFactoryTarget.Directive });
20647
20666
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ShortcutsDirective, isStandalone: true, selector: "kendo-scheduler", ngImport: i0 });
20648
20667
  }
@@ -28,6 +28,7 @@ export declare class ShortcutsDirective {
28
28
  private onEventKeydown;
29
29
  private focusWait;
30
30
  private isInToolbarTemplate;
31
+ private digitToNumber;
31
32
  static ɵfac: i0.ɵɵFactoryDeclaration<ShortcutsDirective, never>;
32
33
  static ɵdir: i0.ɵɵDirectiveDeclaration<ShortcutsDirective, "kendo-scheduler", never, {}, {}, never, never, true, never>;
33
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-scheduler",
3
- "version": "19.3.0-develop.32",
3
+ "version": "19.3.0-develop.33",
4
4
  "description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1754579794,
22
+ "publishDate": 1754590038,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -32,23 +32,23 @@
32
32
  "@progress/kendo-data-query": "^1.0.0",
33
33
  "@progress/kendo-drawing": "^1.21.0",
34
34
  "@progress/kendo-licensing": "^1.7.0",
35
- "@progress/kendo-angular-tooltip": "19.3.0-develop.32",
36
- "@progress/kendo-angular-buttons": "19.3.0-develop.32",
37
- "@progress/kendo-angular-common": "19.3.0-develop.32",
38
- "@progress/kendo-angular-dateinputs": "19.3.0-develop.32",
39
- "@progress/kendo-angular-dialog": "19.3.0-develop.32",
40
- "@progress/kendo-angular-dropdowns": "19.3.0-develop.32",
41
- "@progress/kendo-angular-icons": "19.3.0-develop.32",
42
- "@progress/kendo-angular-inputs": "19.3.0-develop.32",
43
- "@progress/kendo-angular-intl": "19.3.0-develop.32",
44
- "@progress/kendo-angular-l10n": "19.3.0-develop.32",
45
- "@progress/kendo-angular-label": "19.3.0-develop.32",
46
- "@progress/kendo-angular-popup": "19.3.0-develop.32",
35
+ "@progress/kendo-angular-tooltip": "19.3.0-develop.33",
36
+ "@progress/kendo-angular-buttons": "19.3.0-develop.33",
37
+ "@progress/kendo-angular-common": "19.3.0-develop.33",
38
+ "@progress/kendo-angular-dateinputs": "19.3.0-develop.33",
39
+ "@progress/kendo-angular-dialog": "19.3.0-develop.33",
40
+ "@progress/kendo-angular-dropdowns": "19.3.0-develop.33",
41
+ "@progress/kendo-angular-icons": "19.3.0-develop.33",
42
+ "@progress/kendo-angular-inputs": "19.3.0-develop.33",
43
+ "@progress/kendo-angular-intl": "19.3.0-develop.33",
44
+ "@progress/kendo-angular-l10n": "19.3.0-develop.33",
45
+ "@progress/kendo-angular-label": "19.3.0-develop.33",
46
+ "@progress/kendo-angular-popup": "19.3.0-develop.33",
47
47
  "rxjs": "^6.5.3 || ^7.0.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "19.3.0-develop.32",
51
+ "@progress/kendo-angular-schematics": "19.3.0-develop.33",
52
52
  "@progress/kendo-date-math": "^1.3.2",
53
53
  "@progress/kendo-draggable": "^3.0.2",
54
54
  "@progress/kendo-file-saver": "^1.0.7",
@@ -4,10 +4,10 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
6
6
  // peer deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '19.3.0-develop.32',
8
- '@progress/kendo-angular-navigation': '19.3.0-develop.32',
7
+ '@progress/kendo-angular-treeview': '19.3.0-develop.33',
8
+ '@progress/kendo-angular-navigation': '19.3.0-develop.33',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '19.3.0-develop.32',
10
+ '@progress/kendo-angular-dialog': '19.3.0-develop.33',
11
11
  // peer dependency of kendo-angular-icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0'
13
13
  } });