@progress/kendo-angular-grid 20.1.0-develop.6 → 20.1.0-develop.8

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 (26) hide show
  1. package/columns/command-column.component.d.ts +1 -1
  2. package/columns/span-column.component.d.ts +1 -1
  3. package/editing/cancel-command.directive.d.ts +1 -1
  4. package/editing/edit-row-options.interface.d.ts +1 -1
  5. package/editing/edit-template.directive.d.ts +1 -1
  6. package/editing/remove-command.directive.d.ts +1 -1
  7. package/editing/save-command.directive.d.ts +1 -1
  8. package/editing-directives/edit-service.interface.d.ts +2 -2
  9. package/editing-directives/external-editing.directive.d.ts +1 -1
  10. package/editing-directives/in-cell-editing.directive.d.ts +1 -1
  11. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  12. package/editing-directives/template-editing.directive.d.ts +1 -1
  13. package/esm2022/columns/command-column.component.mjs +1 -1
  14. package/esm2022/columns/span-column.component.mjs +1 -1
  15. package/esm2022/editing/cancel-command.directive.mjs +1 -1
  16. package/esm2022/editing/edit-template.directive.mjs +1 -1
  17. package/esm2022/editing/remove-command.directive.mjs +1 -1
  18. package/esm2022/editing/save-command.directive.mjs +1 -1
  19. package/esm2022/editing-directives/external-editing.directive.mjs +1 -1
  20. package/esm2022/editing-directives/in-cell-editing.directive.mjs +1 -1
  21. package/esm2022/editing-directives/reactive-editing.directive.mjs +1 -1
  22. package/esm2022/editing-directives/template-editing.directive.mjs +1 -1
  23. package/esm2022/package-metadata.mjs +2 -2
  24. package/fesm2022/progress-kendo-angular-grid.mjs +12 -12
  25. package/package.json +21 -21
  26. package/schematics/ngAdd/index.js +4 -4
@@ -10,7 +10,7 @@ import { CellRowspanFn } from './cell-rowspan';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Represents the command columns of the Grid. Define the content of the column inside an `<ng-template>` tag.
13
- * For more information and examples, see the [Command Column Directives](slug:editing_directives_grid#toc-command-column-directives) article.
13
+ * For more information and examples, see the [Editing Action Buttons](slug:basics_editing_grid#editing-action-buttons) article.
14
14
  *
15
15
  * @example
16
16
  * ```html
@@ -74,7 +74,7 @@ export declare class SpanColumnComponent extends ColumnBase {
74
74
  includeInChooser: boolean;
75
75
  /**
76
76
  * Sets whether the edit template of the column is rendered.
77
- * To enable editing for a spanned column, set an edit template for it ([see example](slug:custom_reactive_editing_grid)).
77
+ * To enable editing for a spanned column, set an edit template for it ([see example](slug:custom_editors_grid#setting-up-custom-editors)).
78
78
  * @default false
79
79
  */
80
80
  set editable(value: boolean);
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Represents the `cancel` command of the Grid. Apply this directive to any `button`
13
13
  * element inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
14
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
14
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
15
15
  *
16
16
  * When a button with this directive is clicked, the
17
17
  * [`cancel`]({% slug api_grid_gridcomponent %}#toc-cancel) event
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Provides additional options for the [`editRow`]({% slug api_grid_gridcomponent %}#toc-editrow) method. [See example]({% slug editing_rowclick_grid %}#toc-managing-focus).
6
+ * Provides additional options for the [`editRow`]({% slug api_grid_gridcomponent %}#toc-editrow) method. [See example](slug:inline_editing_grid#managing-focus).
7
7
  *
8
8
  * @example
9
9
  * ```typescript
@@ -5,7 +5,7 @@
5
5
  import { TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
- * Lets you customize the content of edited cells by providing a column edit-cell template for the Grid ([see example](slug:custom_reactive_editing_grid#toc-setting-up-custom-inputs)).
8
+ * Lets you customize the content of edited cells by providing a column edit-cell template for the Grid ([see example](slug:custom_editors_grid#setting-up-custom-editors)).
9
9
  * Place an `<ng-template>` tag with the `kendoGridEditTemplate` directive inside a `<kendo-grid-column>` tag to define the template.
10
10
  *
11
11
  * The template context includes:
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Represents the `remove` command of the Grid. Apply this directive to any `button` element
13
13
  * inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
14
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
14
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
15
15
  * When you click the button with this directive, the
16
16
  * [`remove`]({% slug api_grid_gridcomponent %}#toc-remove) event fires.
17
17
  * The button with `kendoGridRemoveCommand` is automatically hidden when the row is in edit mode.
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Represents the `save` command of the Grid. Apply this directive to any `button`
13
13
  * element inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
14
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
14
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
15
15
  * When you click the button with this directive, the
16
16
  * [`save`]({% slug api_grid_gridcomponent %}#toc-save) event fires.
17
17
  * The button with `kendoGridSaveCommand` is automatically hidden when the row is not in edit mode.
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * The interface which must be extended when creating custom edit service.
7
7
  * This interface defines the methods that a custom editing service should implement to handle create, update, and remove operations on grid items.
8
- * Set the custom edit service to the `editService` input of the respective editing directive.
9
- * [See exampe](slug:editing_directives_grid#toc-custom-editing-service).
8
+ * Set the custom edit service to the `editService` input of the respective editing directive
9
+ * [See example](slug:custom_editing_service_grid).
10
10
  */
11
11
  export interface EditService {
12
12
  /**
@@ -13,7 +13,7 @@ import { AdaptiveGridService } from '../common/adaptiveness.service';
13
13
  import * as i0 from "@angular/core";
14
14
  /**
15
15
  * Represents the Kendo UI Grid external editing directive. The directive manages editing operations in the Grid when using the
16
- * External Form ([see example](slug:editing_directives_grid#external-editing)).
16
+ * External Form ([see example](slug:external_editing_grid#quick-setup)).
17
17
  *
18
18
  * @example
19
19
  * ```typescript
@@ -9,7 +9,7 @@ import { LocalDataChangesService } from '../editing/local-data-changes.service';
9
9
  import { CreateFormGroup } from '../common/create-form-group';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example]({% slug editing_directives_grid %}#toc-in-cell-editing)).
12
+ * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example](slug:editing_incell_grid#quick-setup)).
13
13
  *
14
14
  * @example
15
15
  * ```html
@@ -8,7 +8,7 @@ import { LocalDataChangesService } from '../editing/local-data-changes.service';
8
8
  import { CreateFormGroup } from '../common/create-form-group';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
- * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
11
+ * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:inline_editing_grid#using-reactive-forms)).
12
12
  *
13
13
  * @example
14
14
  * ```html
@@ -7,7 +7,7 @@ import { GridComponent } from '../grid.component';
7
7
  import { LocalDataChangesService } from '../editing/local-data-changes.service';
8
8
  import * as i0 from "@angular/core";
9
9
  /**
10
- * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example]({% slug editing_directives_grid %}#toc-template-editing-directive)).
10
+ * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example](slug:inline_editing_grid#using-template-driven-forms)).
11
11
  *
12
12
  * @example
13
13
  * ```html
@@ -11,7 +11,7 @@ import * as i1 from "./column-base";
11
11
  import * as i2 from "../common/id.service";
12
12
  /**
13
13
  * Represents the command columns of the Grid. Define the content of the column inside an `<ng-template>` tag.
14
- * For more information and examples, see the [Command Column Directives](slug:editing_directives_grid#toc-command-column-directives) article.
14
+ * For more information and examples, see the [Editing Action Buttons](slug:basics_editing_grid#editing-action-buttons) article.
15
15
  *
16
16
  * @example
17
17
  * ```html
@@ -75,7 +75,7 @@ export class SpanColumnComponent extends ColumnBase {
75
75
  includeInChooser = false;
76
76
  /**
77
77
  * Sets whether the edit template of the column is rendered.
78
- * To enable editing for a spanned column, set an edit template for it ([see example](slug:custom_reactive_editing_grid)).
78
+ * To enable editing for a spanned column, set an edit template for it ([see example](slug:custom_editors_grid#setting-up-custom-editors)).
79
79
  * @default false
80
80
  */
81
81
  set editable(value) {
@@ -15,7 +15,7 @@ import * as i2 from "../common/provider.service";
15
15
  /**
16
16
  * Represents the `cancel` command of the Grid. Apply this directive to any `button`
17
17
  * element inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
18
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
18
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
19
19
  *
20
20
  * When a button with this directive is clicked, the
21
21
  * [`cancel`]({% slug api_grid_gridcomponent %}#toc-cancel) event
@@ -5,7 +5,7 @@
5
5
  import { Directive, TemplateRef, Optional } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
- * Lets you customize the content of edited cells by providing a column edit-cell template for the Grid ([see example](slug:custom_reactive_editing_grid#toc-setting-up-custom-inputs)).
8
+ * Lets you customize the content of edited cells by providing a column edit-cell template for the Grid ([see example](slug:custom_editors_grid#setting-up-custom-editors)).
9
9
  * Place an `<ng-template>` tag with the `kendoGridEditTemplate` directive inside a `<kendo-grid-column>` tag to define the template.
10
10
  *
11
11
  * The template context includes:
@@ -15,7 +15,7 @@ import * as i2 from "../common/provider.service";
15
15
  /**
16
16
  * Represents the `remove` command of the Grid. Apply this directive to any `button` element
17
17
  * inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
18
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
18
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
19
19
  * When you click the button with this directive, the
20
20
  * [`remove`]({% slug api_grid_gridcomponent %}#toc-remove) event fires.
21
21
  * The button with `kendoGridRemoveCommand` is automatically hidden when the row is in edit mode.
@@ -15,7 +15,7 @@ import * as i2 from "../common/provider.service";
15
15
  /**
16
16
  * Represents the `save` command of the Grid. Apply this directive to any `button`
17
17
  * element inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
18
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
18
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
19
19
  * When you click the button with this directive, the
20
20
  * [`save`]({% slug api_grid_gridcomponent %}#toc-save) event fires.
21
21
  * The button with `kendoGridSaveCommand` is automatically hidden when the row is not in edit mode.
@@ -16,7 +16,7 @@ import * as i2 from "../editing/local-data-changes.service";
16
16
  import * as i3 from "../common/adaptiveness.service";
17
17
  /**
18
18
  * Represents the Kendo UI Grid external editing directive. The directive manages editing operations in the Grid when using the
19
- * External Form ([see example](slug:editing_directives_grid#external-editing)).
19
+ * External Form ([see example](slug:external_editing_grid#quick-setup)).
20
20
  *
21
21
  * @example
22
22
  * ```typescript
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
12
12
  import * as i1 from "../grid.component";
13
13
  import * as i2 from "../editing/local-data-changes.service";
14
14
  /**
15
- * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example]({% slug editing_directives_grid %}#toc-in-cell-editing)).
15
+ * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example](slug:editing_incell_grid#quick-setup)).
16
16
  *
17
17
  * @example
18
18
  * ```html
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
11
11
  import * as i1 from "../grid.component";
12
12
  import * as i2 from "../editing/local-data-changes.service";
13
13
  /**
14
- * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
14
+ * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:inline_editing_grid#using-reactive-forms)).
15
15
  *
16
16
  * @example
17
17
  * ```html
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
10
10
  import * as i1 from "../grid.component";
11
11
  import * as i2 from "../editing/local-data-changes.service";
12
12
  /**
13
- * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example]({% slug editing_directives_grid %}#toc-template-editing-directive)).
13
+ * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example](slug:inline_editing_grid#using-template-driven-forms)).
14
14
  *
15
15
  * @example
16
16
  * ```html
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1759321337,
14
- version: '20.1.0-develop.6',
13
+ publishDate: 1759482491,
14
+ version: '20.1.0-develop.8',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -1933,7 +1933,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
1933
1933
  }] }]; } });
1934
1934
 
1935
1935
  /**
1936
- * Lets you customize the content of edited cells by providing a column edit-cell template for the Grid ([see example](slug:custom_reactive_editing_grid#toc-setting-up-custom-inputs)).
1936
+ * Lets you customize the content of edited cells by providing a column edit-cell template for the Grid ([see example](slug:custom_editors_grid#setting-up-custom-editors)).
1937
1937
  * Place an `<ng-template>` tag with the `kendoGridEditTemplate` directive inside a `<kendo-grid-column>` tag to define the template.
1938
1938
  *
1939
1939
  * The template context includes:
@@ -3045,7 +3045,7 @@ class SpanColumnComponent extends ColumnBase {
3045
3045
  includeInChooser = false;
3046
3046
  /**
3047
3047
  * Sets whether the edit template of the column is rendered.
3048
- * To enable editing for a spanned column, set an edit template for it ([see example](slug:custom_reactive_editing_grid)).
3048
+ * To enable editing for a spanned column, set an edit template for it ([see example](slug:custom_editors_grid#setting-up-custom-editors)).
3049
3049
  * @default false
3050
3050
  */
3051
3051
  set editable(value) {
@@ -19540,7 +19540,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
19540
19540
 
19541
19541
  /**
19542
19542
  * Represents the command columns of the Grid. Define the content of the column inside an `<ng-template>` tag.
19543
- * For more information and examples, see the [Command Column Directives](slug:editing_directives_grid#toc-command-column-directives) article.
19543
+ * For more information and examples, see the [Editing Action Buttons](slug:basics_editing_grid#editing-action-buttons) article.
19544
19544
  *
19545
19545
  * @example
19546
19546
  * ```html
@@ -21787,7 +21787,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
21787
21787
  /**
21788
21788
  * Represents the `cancel` command of the Grid. Apply this directive to any `button`
21789
21789
  * element inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
21790
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
21790
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
21791
21791
  *
21792
21792
  * When a button with this directive is clicked, the
21793
21793
  * [`cancel`]({% slug api_grid_gridcomponent %}#toc-cancel) event
@@ -21891,7 +21891,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
21891
21891
  /**
21892
21892
  * Represents the `save` command of the Grid. Apply this directive to any `button`
21893
21893
  * element inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
21894
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
21894
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
21895
21895
  * When you click the button with this directive, the
21896
21896
  * [`save`]({% slug api_grid_gridcomponent %}#toc-save) event fires.
21897
21897
  * The button with `kendoGridSaveCommand` is automatically hidden when the row is not in edit mode.
@@ -21994,7 +21994,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
21994
21994
  /**
21995
21995
  * Represents the `remove` command of the Grid. Apply this directive to any `button` element
21996
21996
  * inside a [CommandColumnComponent]({% slug api_grid_commandcolumncomponent %})
21997
- * ([see example](slug:editing_directives_grid#toc-command-column-directives)).
21997
+ * ([see example](slug:basics_editing_grid#editing-action-buttons)).
21998
21998
  * When you click the button with this directive, the
21999
21999
  * [`remove`]({% slug api_grid_gridcomponent %}#toc-remove) event fires.
22000
22000
  * The button with `kendoGridRemoveCommand` is automatically hidden when the row is in edit mode.
@@ -22418,8 +22418,8 @@ const packageMetadata = {
22418
22418
  productName: 'Kendo UI for Angular',
22419
22419
  productCode: 'KENDOUIANGULAR',
22420
22420
  productCodes: ['KENDOUIANGULAR'],
22421
- publishDate: 1759321337,
22422
- version: '20.1.0-develop.6',
22421
+ publishDate: 1759482491,
22422
+ version: '20.1.0-develop.8',
22423
22423
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
22424
22424
  };
22425
22425
 
@@ -34713,7 +34713,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
34713
34713
  }] });
34714
34714
 
34715
34715
  /**
34716
- * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example]({% slug editing_directives_grid %}#toc-template-editing-directive)).
34716
+ * Represents the directive that manages editing operations in the Grid when using Template-Driven Angular Forms ([see example](slug:inline_editing_grid#using-template-driven-forms)).
34717
34717
  *
34718
34718
  * @example
34719
34719
  * ```html
@@ -34790,7 +34790,7 @@ const markAllAsTouched = (control) => {
34790
34790
  };
34791
34791
 
34792
34792
  /**
34793
- * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
34793
+ * Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:inline_editing_grid#using-reactive-forms)).
34794
34794
  *
34795
34795
  * @example
34796
34796
  * ```html
@@ -34839,7 +34839,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
34839
34839
  }] } });
34840
34840
 
34841
34841
  /**
34842
- * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example]({% slug editing_directives_grid %}#toc-in-cell-editing)).
34842
+ * Represent the directive that manages in-cell editing operations in the Grid when using Reactive Forms ([see example](slug:editing_incell_grid#quick-setup)).
34843
34843
  *
34844
34844
  * @example
34845
34845
  * ```html
@@ -34925,7 +34925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
34925
34925
 
34926
34926
  /**
34927
34927
  * Represents the Kendo UI Grid external editing directive. The directive manages editing operations in the Grid when using the
34928
- * External Form ([see example](slug:editing_directives_grid#external-editing)).
34928
+ * External Form ([see example](slug:external_editing_grid#quick-setup)).
34929
34929
  *
34930
34930
  * @example
34931
34931
  * ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "20.1.0-develop.6",
3
+ "version": "20.1.0-develop.8",
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",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1759321337,
44
+ "publishDate": 1759482491,
45
45
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
46
46
  }
47
47
  },
@@ -54,29 +54,29 @@
54
54
  "@progress/kendo-data-query": "^1.0.0",
55
55
  "@progress/kendo-drawing": "^1.21.0",
56
56
  "@progress/kendo-licensing": "^1.7.0",
57
- "@progress/kendo-angular-buttons": "20.1.0-develop.6",
58
- "@progress/kendo-angular-common": "20.1.0-develop.6",
59
- "@progress/kendo-angular-dateinputs": "20.1.0-develop.6",
60
- "@progress/kendo-angular-layout": "20.1.0-develop.6",
61
- "@progress/kendo-angular-navigation": "20.1.0-develop.6",
62
- "@progress/kendo-angular-dropdowns": "20.1.0-develop.6",
63
- "@progress/kendo-angular-excel-export": "20.1.0-develop.6",
64
- "@progress/kendo-angular-icons": "20.1.0-develop.6",
65
- "@progress/kendo-angular-inputs": "20.1.0-develop.6",
66
- "@progress/kendo-angular-conversational-ui": "20.1.0-develop.6",
67
- "@progress/kendo-angular-intl": "20.1.0-develop.6",
68
- "@progress/kendo-angular-l10n": "20.1.0-develop.6",
69
- "@progress/kendo-angular-label": "20.1.0-develop.6",
70
- "@progress/kendo-angular-pager": "20.1.0-develop.6",
71
- "@progress/kendo-angular-pdf-export": "20.1.0-develop.6",
72
- "@progress/kendo-angular-popup": "20.1.0-develop.6",
73
- "@progress/kendo-angular-toolbar": "20.1.0-develop.6",
74
- "@progress/kendo-angular-utils": "20.1.0-develop.6",
57
+ "@progress/kendo-angular-buttons": "20.1.0-develop.8",
58
+ "@progress/kendo-angular-common": "20.1.0-develop.8",
59
+ "@progress/kendo-angular-dateinputs": "20.1.0-develop.8",
60
+ "@progress/kendo-angular-layout": "20.1.0-develop.8",
61
+ "@progress/kendo-angular-navigation": "20.1.0-develop.8",
62
+ "@progress/kendo-angular-dropdowns": "20.1.0-develop.8",
63
+ "@progress/kendo-angular-excel-export": "20.1.0-develop.8",
64
+ "@progress/kendo-angular-icons": "20.1.0-develop.8",
65
+ "@progress/kendo-angular-inputs": "20.1.0-develop.8",
66
+ "@progress/kendo-angular-conversational-ui": "20.1.0-develop.8",
67
+ "@progress/kendo-angular-intl": "20.1.0-develop.8",
68
+ "@progress/kendo-angular-l10n": "20.1.0-develop.8",
69
+ "@progress/kendo-angular-label": "20.1.0-develop.8",
70
+ "@progress/kendo-angular-pager": "20.1.0-develop.8",
71
+ "@progress/kendo-angular-pdf-export": "20.1.0-develop.8",
72
+ "@progress/kendo-angular-popup": "20.1.0-develop.8",
73
+ "@progress/kendo-angular-toolbar": "20.1.0-develop.8",
74
+ "@progress/kendo-angular-utils": "20.1.0-develop.8",
75
75
  "rxjs": "^6.5.3 || ^7.0.0"
76
76
  },
77
77
  "dependencies": {
78
78
  "tslib": "^2.3.1",
79
- "@progress/kendo-angular-schematics": "20.1.0-develop.6",
79
+ "@progress/kendo-angular-schematics": "20.1.0-develop.8",
80
80
  "@progress/kendo-common": "^1.0.1",
81
81
  "@progress/kendo-file-saver": "^1.0.0"
82
82
  },
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
6
6
  // peer deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '20.1.0-develop.6',
8
- '@progress/kendo-angular-navigation': '20.1.0-develop.6',
7
+ '@progress/kendo-angular-treeview': '20.1.0-develop.8',
8
+ '@progress/kendo-angular-navigation': '20.1.0-develop.8',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '20.1.0-develop.6',
10
+ '@progress/kendo-angular-dialog': '20.1.0-develop.8',
11
11
  // peer dependency of kendo-angular-icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0',
13
13
  // peer dependency of kendo-angular-layout
14
- '@progress/kendo-angular-progressbar': '20.1.0-develop.6'
14
+ '@progress/kendo-angular-progressbar': '20.1.0-develop.8'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }