@progress/kendo-angular-grid 19.3.0-develop.36 → 19.3.0-develop.38
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.
- package/editing-directives/in-cell-editing.directive.d.ts +1 -1
- package/editing-directives/reactive-editing.directive.d.ts +1 -1
- package/editing-directives/template-editing.directive.d.ts +1 -1
- package/esm2022/editing-directives/in-cell-editing.directive.mjs +1 -1
- package/esm2022/editing-directives/reactive-editing.directive.mjs +1 -1
- package/esm2022/editing-directives/template-editing.directive.mjs +1 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/details-expand.directive.mjs +5 -2
- package/esm2022/rendering/loading-template.directive.mjs +1 -0
- package/esm2022/selection/selection.directive.mjs +1 -1
- package/fesm2022/progress-kendo-angular-grid.mjs +12 -8
- package/package.json +21 -21
- package/rendering/details-expand.directive.d.ts +5 -2
- package/rendering/loading-template.directive.d.ts +1 -0
- package/schematics/ngAdd/index.js +4 -4
- package/selection/selection.directive.d.ts +1 -1
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
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)).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
|
-
* ```
|
|
15
|
+
* ```html
|
|
16
16
|
* <kendo-grid [data]="data" kendoGridInCellEditing></kendo-grid>
|
|
17
17
|
* ```
|
|
18
18
|
* @remarks
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
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)).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
|
-
* ```
|
|
14
|
+
* ```html
|
|
15
15
|
* <kendo-grid [data]="data" kendoGridReactiveEditing></kendo-grid>
|
|
16
16
|
* ```
|
|
17
17
|
* @remarks
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
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)).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
|
-
* ```
|
|
13
|
+
* ```html
|
|
14
14
|
* <kendo-grid [data]="data" kendoGridTemplateEditing></kendo-grid>
|
|
15
15
|
* ```
|
|
16
16
|
* @remarks
|
|
@@ -15,7 +15,7 @@ import * as i2 from "../editing/local-data-changes.service";
|
|
|
15
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)).
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```
|
|
18
|
+
* ```html
|
|
19
19
|
* <kendo-grid [data]="data" kendoGridInCellEditing></kendo-grid>
|
|
20
20
|
* ```
|
|
21
21
|
* @remarks
|
|
@@ -14,7 +14,7 @@ import * as i2 from "../editing/local-data-changes.service";
|
|
|
14
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)).
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
|
-
* ```
|
|
17
|
+
* ```html
|
|
18
18
|
* <kendo-grid [data]="data" kendoGridReactiveEditing></kendo-grid>
|
|
19
19
|
* ```
|
|
20
20
|
* @remarks
|
|
@@ -13,7 +13,7 @@ import * as i2 from "../editing/local-data-changes.service";
|
|
|
13
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)).
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
|
-
* ```
|
|
16
|
+
* ```html
|
|
17
17
|
* <kendo-grid [data]="data" kendoGridTemplateEditing></kendo-grid>
|
|
18
18
|
* ```
|
|
19
19
|
* @remarks
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.3.0-develop.
|
|
13
|
+
publishDate: 1754928165,
|
|
14
|
+
version: '19.3.0-develop.38',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -16,8 +16,11 @@ import * as i1 from "../grid.component";
|
|
|
16
16
|
* ([see example](slug:master_detail_expanded_state_grid#toc-built-in-directive))
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
|
-
* ```
|
|
20
|
-
* <kendo-grid
|
|
19
|
+
* ```html
|
|
20
|
+
* <kendo-grid
|
|
21
|
+
* [kendoGridExpandDetailsBy]="expandDetailsKey"
|
|
22
|
+
* [expandedDetailKeys]="expandedDetailKeys">
|
|
23
|
+
* </kendo-grid>
|
|
21
24
|
* ```
|
|
22
25
|
* @remarks
|
|
23
26
|
* Applied to: {@link GridComponent}.
|
|
@@ -12,7 +12,7 @@ import * as i1 from "../common/provider.service";
|
|
|
12
12
|
* ([see example]({% slug selection_grid %}#toc-toggling-the-selection-functionality)).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
|
-
* ```
|
|
15
|
+
* ```html
|
|
16
16
|
* <kendo-grid kendoGridSelectBy="ProductID"></kendo-grid>
|
|
17
17
|
*
|
|
18
18
|
* <kendo-grid [kendoGridSelectBy]="myKey"></kendo-grid>
|
|
@@ -4733,6 +4733,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4733
4733
|
* <kendo-grid-column field="ProductName"></kendo-grid-column>
|
|
4734
4734
|
* <kendo-grid-column field="UnitPrice"></kendo-grid-column>
|
|
4735
4735
|
* </kendo-grid>
|
|
4736
|
+
* ```
|
|
4736
4737
|
*/
|
|
4737
4738
|
class LoadingTemplateDirective {
|
|
4738
4739
|
templateRef;
|
|
@@ -22008,8 +22009,8 @@ const packageMetadata = {
|
|
|
22008
22009
|
productName: 'Kendo UI for Angular',
|
|
22009
22010
|
productCode: 'KENDOUIANGULAR',
|
|
22010
22011
|
productCodes: ['KENDOUIANGULAR'],
|
|
22011
|
-
publishDate:
|
|
22012
|
-
version: '19.3.0-develop.
|
|
22012
|
+
publishDate: 1754928165,
|
|
22013
|
+
version: '19.3.0-develop.38',
|
|
22013
22014
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
22014
22015
|
};
|
|
22015
22016
|
|
|
@@ -33671,7 +33672,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
33671
33672
|
* ([see example]({% slug selection_grid %}#toc-toggling-the-selection-functionality)).
|
|
33672
33673
|
*
|
|
33673
33674
|
* @example
|
|
33674
|
-
* ```
|
|
33675
|
+
* ```html
|
|
33675
33676
|
* <kendo-grid kendoGridSelectBy="ProductID"></kendo-grid>
|
|
33676
33677
|
*
|
|
33677
33678
|
* <kendo-grid [kendoGridSelectBy]="myKey"></kendo-grid>
|
|
@@ -33980,7 +33981,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
33980
33981
|
* 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)).
|
|
33981
33982
|
*
|
|
33982
33983
|
* @example
|
|
33983
|
-
* ```
|
|
33984
|
+
* ```html
|
|
33984
33985
|
* <kendo-grid [data]="data" kendoGridTemplateEditing></kendo-grid>
|
|
33985
33986
|
* ```
|
|
33986
33987
|
* @remarks
|
|
@@ -34057,7 +34058,7 @@ const markAllAsTouched = (control) => {
|
|
|
34057
34058
|
* Represents the directive that manages editing operations in the Grid when using Reactive Forms ([see example](slug:editing_directives_grid#toc-reactive-editing-directive)).
|
|
34058
34059
|
*
|
|
34059
34060
|
* @example
|
|
34060
|
-
* ```
|
|
34061
|
+
* ```html
|
|
34061
34062
|
* <kendo-grid [data]="data" kendoGridReactiveEditing></kendo-grid>
|
|
34062
34063
|
* ```
|
|
34063
34064
|
* @remarks
|
|
@@ -34106,7 +34107,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
34106
34107
|
* 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)).
|
|
34107
34108
|
*
|
|
34108
34109
|
* @example
|
|
34109
|
-
* ```
|
|
34110
|
+
* ```html
|
|
34110
34111
|
* <kendo-grid [data]="data" kendoGridInCellEditing></kendo-grid>
|
|
34111
34112
|
* ```
|
|
34112
34113
|
* @remarks
|
|
@@ -34329,8 +34330,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
34329
34330
|
* ([see example](slug:master_detail_expanded_state_grid#toc-built-in-directive))
|
|
34330
34331
|
*
|
|
34331
34332
|
* @example
|
|
34332
|
-
* ```
|
|
34333
|
-
* <kendo-grid
|
|
34333
|
+
* ```html
|
|
34334
|
+
* <kendo-grid
|
|
34335
|
+
* [kendoGridExpandDetailsBy]="expandDetailsKey"
|
|
34336
|
+
* [expandedDetailKeys]="expandedDetailKeys">
|
|
34337
|
+
* </kendo-grid>
|
|
34334
34338
|
* ```
|
|
34335
34339
|
* @remarks
|
|
34336
34340
|
* Applied to: {@link GridComponent}.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.38",
|
|
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",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"package": {
|
|
27
27
|
"productName": "Kendo UI for Angular",
|
|
28
28
|
"productCode": "KENDOUIANGULAR",
|
|
29
|
-
"publishDate":
|
|
29
|
+
"publishDate": 1754928165,
|
|
30
30
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
@@ -39,29 +39,29 @@
|
|
|
39
39
|
"@progress/kendo-data-query": "^1.0.0",
|
|
40
40
|
"@progress/kendo-drawing": "^1.21.0",
|
|
41
41
|
"@progress/kendo-licensing": "^1.7.0",
|
|
42
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "19.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "19.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dropdowns": "19.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-excel-export": "19.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-conversational-ui": "19.3.0-develop.
|
|
52
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
|
53
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
54
|
-
"@progress/kendo-angular-label": "19.3.0-develop.
|
|
55
|
-
"@progress/kendo-angular-pager": "19.3.0-develop.
|
|
56
|
-
"@progress/kendo-angular-pdf-export": "19.3.0-develop.
|
|
57
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
58
|
-
"@progress/kendo-angular-toolbar": "19.3.0-develop.
|
|
59
|
-
"@progress/kendo-angular-utils": "19.3.0-develop.
|
|
42
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.38",
|
|
43
|
+
"@progress/kendo-angular-common": "19.3.0-develop.38",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "19.3.0-develop.38",
|
|
45
|
+
"@progress/kendo-angular-layout": "19.3.0-develop.38",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.3.0-develop.38",
|
|
47
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.38",
|
|
48
|
+
"@progress/kendo-angular-excel-export": "19.3.0-develop.38",
|
|
49
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.38",
|
|
50
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.38",
|
|
51
|
+
"@progress/kendo-angular-conversational-ui": "19.3.0-develop.38",
|
|
52
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.38",
|
|
53
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.38",
|
|
54
|
+
"@progress/kendo-angular-label": "19.3.0-develop.38",
|
|
55
|
+
"@progress/kendo-angular-pager": "19.3.0-develop.38",
|
|
56
|
+
"@progress/kendo-angular-pdf-export": "19.3.0-develop.38",
|
|
57
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.38",
|
|
58
|
+
"@progress/kendo-angular-toolbar": "19.3.0-develop.38",
|
|
59
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.38",
|
|
60
60
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"tslib": "^2.3.1",
|
|
64
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
|
64
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.38",
|
|
65
65
|
"@progress/kendo-common": "^1.0.1",
|
|
66
66
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
67
67
|
},
|
|
@@ -13,8 +13,11 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
* ([see example](slug:master_detail_expanded_state_grid#toc-built-in-directive))
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
|
-
* ```
|
|
17
|
-
* <kendo-grid
|
|
16
|
+
* ```html
|
|
17
|
+
* <kendo-grid
|
|
18
|
+
* [kendoGridExpandDetailsBy]="expandDetailsKey"
|
|
19
|
+
* [expandedDetailKeys]="expandedDetailKeys">
|
|
20
|
+
* </kendo-grid>
|
|
18
21
|
* ```
|
|
19
22
|
* @remarks
|
|
20
23
|
* Applied to: {@link GridComponent}.
|
|
@@ -19,6 +19,7 @@ import * as i0 from "@angular/core";
|
|
|
19
19
|
* <kendo-grid-column field="ProductName"></kendo-grid-column>
|
|
20
20
|
* <kendo-grid-column field="UnitPrice"></kendo-grid-column>
|
|
21
21
|
* </kendo-grid>
|
|
22
|
+
* ```
|
|
22
23
|
*/
|
|
23
24
|
export declare class LoadingTemplateDirective {
|
|
24
25
|
templateRef: TemplateRef<any>;
|
|
@@ -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': '19.3.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '19.3.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '19.3.0-develop.38',
|
|
8
|
+
'@progress/kendo-angular-navigation': '19.3.0-develop.38',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '19.3.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '19.3.0-develop.38',
|
|
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': '19.3.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '19.3.0-develop.38'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
* ([see example]({% slug selection_grid %}#toc-toggling-the-selection-functionality)).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
|
-
* ```
|
|
14
|
+
* ```html
|
|
15
15
|
* <kendo-grid kendoGridSelectBy="ProductID"></kendo-grid>
|
|
16
16
|
*
|
|
17
17
|
* <kendo-grid [kendoGridSelectBy]="myKey"></kendo-grid>
|