@progress/kendo-angular-utils 17.1.2-develop.5 → 17.2.0-develop.2

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.
@@ -0,0 +1,21 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { InjectionToken } from '@angular/core';
6
+ import { AdaptiveSettings } from './models/adaptive-settings';
7
+ /**
8
+ * A token that specifies the AdaptiveSettings of the Kendo UI for Angular components.
9
+ *
10
+ * ```ts
11
+ * import { NgModule } from '@angular/core';
12
+ *
13
+ * @NgModule({
14
+ * ...
15
+ * providers: [{ provide: ADAPTIVE_SETTINGS, useValue: { small: 400, medium: 600 }}]
16
+ * })
17
+ * export class AppModule {}
18
+ * ```
19
+ *
20
+ */
21
+ export declare const ADAPTIVE_SETTINGS: InjectionToken<AdaptiveSettings>;
@@ -0,0 +1,24 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Subject } from 'rxjs';
6
+ import { AdaptiveSettings } from './models/adaptive-settings';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * A service that allows changing the current adaptive settings dynamically. Use the public `notify` method to implement this.
10
+ */
11
+ export declare class AdaptiveSettingsService {
12
+ /**
13
+ * @hidden
14
+ */
15
+ readonly changes: Subject<AdaptiveSettings>;
16
+ /**
17
+ * Notifies subscribers that the adaptive settings were changed.
18
+ *
19
+ * @param adaptiveSettings - (Optional) A new value for the adaptive settings token.
20
+ */
21
+ notify(adaptiveSettings?: AdaptiveSettings): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveSettingsService, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<AdaptiveSettingsService>;
24
+ }
@@ -0,0 +1,33 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { OnDestroy } from '@angular/core';
6
+ import { Subject } from 'rxjs';
7
+ import { AdaptiveSettings } from './models/adaptive-settings';
8
+ import { AdaptiveSettingsService } from './adaptive-settings.service';
9
+ import { AdaptiveSize } from './models/adaptive-size';
10
+ import * as i0 from "@angular/core";
11
+ /**
12
+ * @hidden
13
+ */
14
+ export declare class AdaptiveService implements OnDestroy {
15
+ private _adaptiveSettings;
16
+ /**
17
+ * Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
18
+ */
19
+ readonly changes: Subject<AdaptiveSettings>;
20
+ private subs;
21
+ constructor(_adaptiveSettings: AdaptiveSettings, adaptiveSettingsService: AdaptiveSettingsService);
22
+ /**
23
+ * @hidden
24
+ */
25
+ get adaptiveSettings(): AdaptiveSettings;
26
+ /**
27
+ * @hidden
28
+ */
29
+ get size(): AdaptiveSize;
30
+ ngOnDestroy(): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveService, [{ optional: true; }, { optional: true; }]>;
32
+ static ɵprov: i0.ɵɵInjectableDeclaration<AdaptiveService>;
33
+ }
@@ -0,0 +1,9 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export { AdaptiveService } from './adaptive.service';
6
+ export { AdaptiveSettings } from './models/adaptive-settings';
7
+ export { ADAPTIVE_SETTINGS } from './adaptive-settings';
8
+ export { AdaptiveSize } from './models/adaptive-size';
9
+ export { AdaptiveSettingsService } from './adaptive-settings.service';
@@ -0,0 +1,21 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * Specifies the settings for the adaptive breakpoints of the component.
7
+ */
8
+ export interface AdaptiveSettings {
9
+ /**
10
+ * Sets the screen width in pixels up to which the component will render a full-screen modal.
11
+ *
12
+ * @default 500
13
+ */
14
+ small?: number;
15
+ /**
16
+ * Sets the screen width in pixels up to which the component will render a docked to the bottom modal. Uses the `small` adaptive breakpoint as a lower boundary.
17
+ *
18
+ * @default 768
19
+ */
20
+ medium?: number;
21
+ }
@@ -0,0 +1,9 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * Specifies the possible adaptive size options based on the window width in pixels.
7
+ * @hidden
8
+ */
9
+ export type AdaptiveSize = 'small' | 'medium' | 'large';
@@ -0,0 +1,20 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { InjectionToken } from '@angular/core';
6
+ /**
7
+ * A token that specifies the AdaptiveSettings of the Kendo UI for Angular components.
8
+ *
9
+ * ```ts
10
+ * import { NgModule } from '@angular/core';
11
+ *
12
+ * @NgModule({
13
+ * ...
14
+ * providers: [{ provide: ADAPTIVE_SETTINGS, useValue: { small: 400, medium: 600 }}]
15
+ * })
16
+ * export class AppModule {}
17
+ * ```
18
+ *
19
+ */
20
+ export const ADAPTIVE_SETTINGS = new InjectionToken('Kendo UI Adaptive-Settings token');
@@ -0,0 +1,29 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Injectable } from '@angular/core';
6
+ import { Subject } from 'rxjs';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * A service that allows changing the current adaptive settings dynamically. Use the public `notify` method to implement this.
10
+ */
11
+ export class AdaptiveSettingsService {
12
+ /**
13
+ * @hidden
14
+ */
15
+ changes = new Subject();
16
+ /**
17
+ * Notifies subscribers that the adaptive settings were changed.
18
+ *
19
+ * @param adaptiveSettings - (Optional) A new value for the adaptive settings token.
20
+ */
21
+ notify(adaptiveSettings) {
22
+ this.changes.next(adaptiveSettings);
23
+ }
24
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveSettingsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
25
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveSettingsService });
26
+ }
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveSettingsService, decorators: [{
28
+ type: Injectable
29
+ }] });
@@ -0,0 +1,80 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Inject, Injectable, Optional } from '@angular/core';
6
+ import { BehaviorSubject, Subscription } from 'rxjs';
7
+ import { map, tap } from 'rxjs/operators';
8
+ import { AdaptiveSettingsService } from './adaptive-settings.service';
9
+ import { ADAPTIVE_SETTINGS } from './adaptive-settings';
10
+ import { areObjectsEqual, isDocumentAvailable, isPresent } from '@progress/kendo-angular-common';
11
+ import * as i0 from "@angular/core";
12
+ import * as i1 from "./adaptive-settings.service";
13
+ const DEFAULT_ADAPTIVE_SETTINGS = {
14
+ small: 500,
15
+ medium: 768
16
+ };
17
+ /**
18
+ * @hidden
19
+ */
20
+ export class AdaptiveService {
21
+ _adaptiveSettings;
22
+ /**
23
+ * Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
24
+ */
25
+ changes = new BehaviorSubject(this.adaptiveSettings || { small: 500, medium: 700 });
26
+ subs = new Subscription();
27
+ constructor(_adaptiveSettings, adaptiveSettingsService) {
28
+ this._adaptiveSettings = _adaptiveSettings;
29
+ if (adaptiveSettingsService) {
30
+ this.subs.add(adaptiveSettingsService.changes
31
+ .pipe(map(adaptiveSettings => isPresent(adaptiveSettings) ? adaptiveSettings : this._adaptiveSettings), tap(adaptiveSettings => this._adaptiveSettings = adaptiveSettings))
32
+ .subscribe(adaptiveSettings => this.changes.next(adaptiveSettings)));
33
+ }
34
+ if (isPresent(this.adaptiveSettings) && !areObjectsEqual(this.adaptiveSettings, DEFAULT_ADAPTIVE_SETTINGS)) {
35
+ this.changes.next(this.adaptiveSettings);
36
+ }
37
+ }
38
+ /**
39
+ * @hidden
40
+ */
41
+ get adaptiveSettings() {
42
+ return this._adaptiveSettings;
43
+ }
44
+ /**
45
+ * @hidden
46
+ */
47
+ get size() {
48
+ if (!isDocumentAvailable()) {
49
+ return;
50
+ }
51
+ const settings = Object.assign(DEFAULT_ADAPTIVE_SETTINGS, this.adaptiveSettings);
52
+ if (window.innerWidth > settings.medium) {
53
+ return 'large';
54
+ }
55
+ else if (window.innerWidth > settings.small) {
56
+ return 'medium';
57
+ }
58
+ else {
59
+ return 'small';
60
+ }
61
+ }
62
+ ngOnDestroy() {
63
+ this.subs.unsubscribe();
64
+ }
65
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveService, deps: [{ token: ADAPTIVE_SETTINGS, optional: true }, { token: i1.AdaptiveSettingsService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
66
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveService, providedIn: 'root' });
67
+ }
68
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveService, decorators: [{
69
+ type: Injectable,
70
+ args: [{
71
+ providedIn: 'root'
72
+ }]
73
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
74
+ type: Optional
75
+ }, {
76
+ type: Inject,
77
+ args: [ADAPTIVE_SETTINGS]
78
+ }] }, { type: i1.AdaptiveSettingsService, decorators: [{
79
+ type: Optional
80
+ }] }]; } });
@@ -0,0 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export { AdaptiveService } from './adaptive.service';
6
+ export { ADAPTIVE_SETTINGS } from './adaptive-settings';
7
+ export { AdaptiveSettingsService } from './adaptive-settings.service';
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
package/esm2022/index.mjs CHANGED
@@ -14,3 +14,4 @@ export { HintComponent } from './drag-and-drop/hint.component';
14
14
  export * from './drag-and-drop/models/index';
15
15
  export { DropTargetEvent } from './drag-and-drop/events';
16
16
  export * from './drag-and-drop/events/drag-target';
17
+ export * from './adaptive-breakpoints';
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-utils',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1734360881,
13
- version: '17.1.2-develop.5',
12
+ publishDate: 1734430132,
13
+ version: '17.2.0-develop.2',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -3,11 +3,13 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
- import { Directive, HostBinding, Injectable, Component, Input, isDevMode, EventEmitter, Output, ContentChildren, NgModule } from '@angular/core';
6
+ import { Directive, HostBinding, Injectable, Component, Input, isDevMode, EventEmitter, Output, ContentChildren, NgModule, InjectionToken, Optional, Inject } from '@angular/core';
7
7
  import { validatePackage } from '@progress/kendo-licensing';
8
8
  import { dispatchDragAndDrop, getScrollableParent, autoScroll } from '@progress/kendo-draggable-common';
9
- import { PreventableEvent, contains, isDocumentAvailable, parseCSSClassNames } from '@progress/kendo-angular-common';
9
+ import { PreventableEvent, contains, isDocumentAvailable, parseCSSClassNames, isPresent as isPresent$1, areObjectsEqual } from '@progress/kendo-angular-common';
10
10
  import { NgTemplateOutlet } from '@angular/common';
11
+ import { Subject, BehaviorSubject, Subscription } from 'rxjs';
12
+ import { map, tap } from 'rxjs/operators';
11
13
 
12
14
  /**
13
15
  * Represents the Kendo UI DragHandle directive for Angular.
@@ -45,8 +47,8 @@ const packageMetadata = {
45
47
  name: '@progress/kendo-angular-utils',
46
48
  productName: 'Kendo UI for Angular',
47
49
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
48
- publishDate: 1734360881,
49
- version: '17.1.2-develop.5',
50
+ publishDate: 1734430132,
51
+ version: '17.2.0-develop.2',
50
52
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
51
53
  };
52
54
 
@@ -2283,9 +2285,117 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2283
2285
  }]
2284
2286
  }] });
2285
2287
 
2288
+ /**
2289
+ * A service that allows changing the current adaptive settings dynamically. Use the public `notify` method to implement this.
2290
+ */
2291
+ class AdaptiveSettingsService {
2292
+ /**
2293
+ * @hidden
2294
+ */
2295
+ changes = new Subject();
2296
+ /**
2297
+ * Notifies subscribers that the adaptive settings were changed.
2298
+ *
2299
+ * @param adaptiveSettings - (Optional) A new value for the adaptive settings token.
2300
+ */
2301
+ notify(adaptiveSettings) {
2302
+ this.changes.next(adaptiveSettings);
2303
+ }
2304
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveSettingsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2305
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveSettingsService });
2306
+ }
2307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveSettingsService, decorators: [{
2308
+ type: Injectable
2309
+ }] });
2310
+
2311
+ /**
2312
+ * A token that specifies the AdaptiveSettings of the Kendo UI for Angular components.
2313
+ *
2314
+ * ```ts
2315
+ * import { NgModule } from '@angular/core';
2316
+ *
2317
+ * @NgModule({
2318
+ * ...
2319
+ * providers: [{ provide: ADAPTIVE_SETTINGS, useValue: { small: 400, medium: 600 }}]
2320
+ * })
2321
+ * export class AppModule {}
2322
+ * ```
2323
+ *
2324
+ */
2325
+ const ADAPTIVE_SETTINGS = new InjectionToken('Kendo UI Adaptive-Settings token');
2326
+
2327
+ const DEFAULT_ADAPTIVE_SETTINGS = {
2328
+ small: 500,
2329
+ medium: 768
2330
+ };
2331
+ /**
2332
+ * @hidden
2333
+ */
2334
+ class AdaptiveService {
2335
+ _adaptiveSettings;
2336
+ /**
2337
+ * Notifies subscribers of the initial adaptive settings, and upon each call to `notify`.
2338
+ */
2339
+ changes = new BehaviorSubject(this.adaptiveSettings || { small: 500, medium: 700 });
2340
+ subs = new Subscription();
2341
+ constructor(_adaptiveSettings, adaptiveSettingsService) {
2342
+ this._adaptiveSettings = _adaptiveSettings;
2343
+ if (adaptiveSettingsService) {
2344
+ this.subs.add(adaptiveSettingsService.changes
2345
+ .pipe(map(adaptiveSettings => isPresent$1(adaptiveSettings) ? adaptiveSettings : this._adaptiveSettings), tap(adaptiveSettings => this._adaptiveSettings = adaptiveSettings))
2346
+ .subscribe(adaptiveSettings => this.changes.next(adaptiveSettings)));
2347
+ }
2348
+ if (isPresent$1(this.adaptiveSettings) && !areObjectsEqual(this.adaptiveSettings, DEFAULT_ADAPTIVE_SETTINGS)) {
2349
+ this.changes.next(this.adaptiveSettings);
2350
+ }
2351
+ }
2352
+ /**
2353
+ * @hidden
2354
+ */
2355
+ get adaptiveSettings() {
2356
+ return this._adaptiveSettings;
2357
+ }
2358
+ /**
2359
+ * @hidden
2360
+ */
2361
+ get size() {
2362
+ if (!isDocumentAvailable()) {
2363
+ return;
2364
+ }
2365
+ const settings = Object.assign(DEFAULT_ADAPTIVE_SETTINGS, this.adaptiveSettings);
2366
+ if (window.innerWidth > settings.medium) {
2367
+ return 'large';
2368
+ }
2369
+ else if (window.innerWidth > settings.small) {
2370
+ return 'medium';
2371
+ }
2372
+ else {
2373
+ return 'small';
2374
+ }
2375
+ }
2376
+ ngOnDestroy() {
2377
+ this.subs.unsubscribe();
2378
+ }
2379
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveService, deps: [{ token: ADAPTIVE_SETTINGS, optional: true }, { token: AdaptiveSettingsService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2380
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveService, providedIn: 'root' });
2381
+ }
2382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AdaptiveService, decorators: [{
2383
+ type: Injectable,
2384
+ args: [{
2385
+ providedIn: 'root'
2386
+ }]
2387
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2388
+ type: Optional
2389
+ }, {
2390
+ type: Inject,
2391
+ args: [ADAPTIVE_SETTINGS]
2392
+ }] }, { type: AdaptiveSettingsService, decorators: [{
2393
+ type: Optional
2394
+ }] }]; } });
2395
+
2286
2396
  /**
2287
2397
  * Generated bundle index. Do not edit.
2288
2398
  */
2289
2399
 
2290
- export { DragAndDropModule, DragHandleDirective, DragTargetContainerDirective, DragTargetDirective, DragTargetDragEndEvent, DragTargetDragEvent, DragTargetDragReadyEvent, DragTargetDragStartEvent, DragTargetPressEvent, DragTargetReleaseEvent, DropTargetContainerDirective, DropTargetDirective, DropTargetEvent, HintComponent, KENDO_DRAGANDDROP, KENDO_UTILS, UtilsModule };
2400
+ export { ADAPTIVE_SETTINGS, AdaptiveService, AdaptiveSettingsService, DragAndDropModule, DragHandleDirective, DragTargetContainerDirective, DragTargetDirective, DragTargetDragEndEvent, DragTargetDragEvent, DragTargetDragReadyEvent, DragTargetDragStartEvent, DragTargetPressEvent, DragTargetReleaseEvent, DropTargetContainerDirective, DropTargetDirective, DropTargetEvent, HintComponent, KENDO_DRAGANDDROP, KENDO_UTILS, UtilsModule };
2291
2401
 
package/index.d.ts CHANGED
@@ -15,3 +15,4 @@ export * from './drag-and-drop/models/index';
15
15
  export { DropTargetEvent } from './drag-and-drop/events';
16
16
  export * from './drag-and-drop/events/drag-target';
17
17
  export { NormalizedDragEvent } from '@progress/kendo-draggable-common';
18
+ export * from './adaptive-breakpoints';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-utils",
3
- "version": "17.1.2-develop.5",
3
+ "version": "17.2.0-develop.2",
4
4
  "description": "Kendo UI Angular utils component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -23,12 +23,12 @@
23
23
  "@angular/core": "16 - 19",
24
24
  "@angular/platform-browser": "16 - 19",
25
25
  "@progress/kendo-licensing": "^1.0.2",
26
- "@progress/kendo-angular-common": "17.1.2-develop.5",
26
+ "@progress/kendo-angular-common": "17.2.0-develop.2",
27
27
  "rxjs": "^6.5.3 || ^7.0.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "tslib": "^2.3.1",
31
- "@progress/kendo-angular-schematics": "17.1.2-develop.5",
31
+ "@progress/kendo-angular-schematics": "17.2.0-develop.2",
32
32
  "@progress/kendo-draggable-common": "^0.2.3"
33
33
  },
34
34
  "schematics": "./schematics/collection.json",