@progress/kendo-angular-grid 15.1.0 → 15.1.1-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.
- package/esm2020/filtering/cell/filter-cell-template.directive.mjs +19 -1
- package/esm2020/filtering/menu/filter-menu-template.directive.mjs +1 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-grid.mjs +22 -5
- package/fesm2020/progress-kendo-angular-grid.mjs +22 -5
- package/filtering/cell/filter-cell-template.directive.d.ts +19 -1
- package/filtering/menu/filter-menu-template.directive.d.ts +1 -2
- package/package.json +17 -17
- package/schematics/ngAdd/index.js +3 -3
|
@@ -5,7 +5,25 @@
|
|
|
5
5
|
import { Directive, TemplateRef, Optional } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the filter-cell template
|
|
8
|
+
* Represents the filter-cell template.
|
|
9
|
+
* Helps to customize the content of the filter cell. To define the filter cell template, nest an `<ng-template>` tag with the
|
|
10
|
+
* `kendoGridFilterCellTemplate` directive inside a `<kendo-grid-column>` tag ([see example]({% slug filter_row %}#toc-custom-filters)).
|
|
11
|
+
*
|
|
12
|
+
* The template context is set to the current data item and the following additional fields are passed:
|
|
13
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
14
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
15
|
+
*
|
|
16
|
+
* ```html
|
|
17
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
18
|
+
* <ng-template kendoGridFilterCellTemplate
|
|
19
|
+
* let-column="column"
|
|
20
|
+
* let-filter="filter"
|
|
21
|
+
* >
|
|
22
|
+
* ...
|
|
23
|
+
* </ng-template>
|
|
24
|
+
* ...
|
|
25
|
+
* </kendo-grid-column>
|
|
26
|
+
* ```
|
|
9
27
|
*/
|
|
10
28
|
export class FilterCellTemplateDirective {
|
|
11
29
|
constructor(templateRef) {
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
12
12
|
*
|
|
13
13
|
* The template context is set to the current data item and the following additional fields are passed:
|
|
14
|
-
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option
|
|
14
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
15
15
|
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
16
16
|
* - `filterService`—Represents the [`FilterService`]({% slug api_grid_filterservice %}). Use it as an alias for a template variable by utilizing the `let-filterService="filterService"` syntax.
|
|
17
17
|
*
|
|
@@ -24,7 +24,6 @@ import * as i0 from "@angular/core";
|
|
|
24
24
|
* >
|
|
25
25
|
* ...
|
|
26
26
|
* </ng-template>
|
|
27
|
-
* ...
|
|
28
27
|
* </kendo-grid-column>
|
|
29
28
|
* ```
|
|
30
29
|
*/
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-grid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '15.1.
|
|
12
|
+
publishDate: 1708935242,
|
|
13
|
+
version: '15.1.1-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -985,7 +985,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
985
985
|
} });
|
|
986
986
|
|
|
987
987
|
/**
|
|
988
|
-
* Represents the filter-cell template
|
|
988
|
+
* Represents the filter-cell template.
|
|
989
|
+
* Helps to customize the content of the filter cell. To define the filter cell template, nest an `<ng-template>` tag with the
|
|
990
|
+
* `kendoGridFilterCellTemplate` directive inside a `<kendo-grid-column>` tag ([see example]({% slug filter_row %}#toc-custom-filters)).
|
|
991
|
+
*
|
|
992
|
+
* The template context is set to the current data item and the following additional fields are passed:
|
|
993
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
994
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
995
|
+
*
|
|
996
|
+
* ```html
|
|
997
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
998
|
+
* <ng-template kendoGridFilterCellTemplate
|
|
999
|
+
* let-column="column"
|
|
1000
|
+
* let-filter="filter"
|
|
1001
|
+
* >
|
|
1002
|
+
* ...
|
|
1003
|
+
* </ng-template>
|
|
1004
|
+
* ...
|
|
1005
|
+
* </kendo-grid-column>
|
|
1006
|
+
* ```
|
|
989
1007
|
*/
|
|
990
1008
|
class FilterCellTemplateDirective {
|
|
991
1009
|
constructor(templateRef) {
|
|
@@ -1012,7 +1030,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1012
1030
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
1013
1031
|
*
|
|
1014
1032
|
* The template context is set to the current data item and the following additional fields are passed:
|
|
1015
|
-
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option
|
|
1033
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
1016
1034
|
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
1017
1035
|
* - `filterService`—Represents the [`FilterService`]({% slug api_grid_filterservice %}). Use it as an alias for a template variable by utilizing the `let-filterService="filterService"` syntax.
|
|
1018
1036
|
*
|
|
@@ -1025,7 +1043,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1025
1043
|
* >
|
|
1026
1044
|
* ...
|
|
1027
1045
|
* </ng-template>
|
|
1028
|
-
* ...
|
|
1029
1046
|
* </kendo-grid-column>
|
|
1030
1047
|
* ```
|
|
1031
1048
|
*/
|
|
@@ -4533,8 +4550,8 @@ const packageMetadata = {
|
|
|
4533
4550
|
name: '@progress/kendo-angular-grid',
|
|
4534
4551
|
productName: 'Kendo UI for Angular',
|
|
4535
4552
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4536
|
-
publishDate:
|
|
4537
|
-
version: '15.1.
|
|
4553
|
+
publishDate: 1708935242,
|
|
4554
|
+
version: '15.1.1-develop.2',
|
|
4538
4555
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4539
4556
|
};
|
|
4540
4557
|
|
|
@@ -2747,7 +2747,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2747
2747
|
}] }]; } });
|
|
2748
2748
|
|
|
2749
2749
|
/**
|
|
2750
|
-
* Represents the filter-cell template
|
|
2750
|
+
* Represents the filter-cell template.
|
|
2751
|
+
* Helps to customize the content of the filter cell. To define the filter cell template, nest an `<ng-template>` tag with the
|
|
2752
|
+
* `kendoGridFilterCellTemplate` directive inside a `<kendo-grid-column>` tag ([see example]({% slug filter_row %}#toc-custom-filters)).
|
|
2753
|
+
*
|
|
2754
|
+
* The template context is set to the current data item and the following additional fields are passed:
|
|
2755
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
2756
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
2757
|
+
*
|
|
2758
|
+
* ```html
|
|
2759
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
2760
|
+
* <ng-template kendoGridFilterCellTemplate
|
|
2761
|
+
* let-column="column"
|
|
2762
|
+
* let-filter="filter"
|
|
2763
|
+
* >
|
|
2764
|
+
* ...
|
|
2765
|
+
* </ng-template>
|
|
2766
|
+
* ...
|
|
2767
|
+
* </kendo-grid-column>
|
|
2768
|
+
* ```
|
|
2751
2769
|
*/
|
|
2752
2770
|
class FilterCellTemplateDirective {
|
|
2753
2771
|
constructor(templateRef) {
|
|
@@ -2772,7 +2790,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2772
2790
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
2773
2791
|
*
|
|
2774
2792
|
* The template context is set to the current data item and the following additional fields are passed:
|
|
2775
|
-
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option
|
|
2793
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
2776
2794
|
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
2777
2795
|
* - `filterService`—Represents the [`FilterService`]({% slug api_grid_filterservice %}). Use it as an alias for a template variable by utilizing the `let-filterService="filterService"` syntax.
|
|
2778
2796
|
*
|
|
@@ -2785,7 +2803,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2785
2803
|
* >
|
|
2786
2804
|
* ...
|
|
2787
2805
|
* </ng-template>
|
|
2788
|
-
* ...
|
|
2789
2806
|
* </kendo-grid-column>
|
|
2790
2807
|
* ```
|
|
2791
2808
|
*/
|
|
@@ -4501,8 +4518,8 @@ const packageMetadata = {
|
|
|
4501
4518
|
name: '@progress/kendo-angular-grid',
|
|
4502
4519
|
productName: 'Kendo UI for Angular',
|
|
4503
4520
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4504
|
-
publishDate:
|
|
4505
|
-
version: '15.1.
|
|
4521
|
+
publishDate: 1708935242,
|
|
4522
|
+
version: '15.1.1-develop.2',
|
|
4506
4523
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4507
4524
|
};
|
|
4508
4525
|
|
|
@@ -5,7 +5,25 @@
|
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the filter-cell template
|
|
8
|
+
* Represents the filter-cell template.
|
|
9
|
+
* Helps to customize the content of the filter cell. To define the filter cell template, nest an `<ng-template>` tag with the
|
|
10
|
+
* `kendoGridFilterCellTemplate` directive inside a `<kendo-grid-column>` tag ([see example]({% slug filter_row %}#toc-custom-filters)).
|
|
11
|
+
*
|
|
12
|
+
* The template context is set to the current data item and the following additional fields are passed:
|
|
13
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
14
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
15
|
+
*
|
|
16
|
+
* ```html
|
|
17
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
18
|
+
* <ng-template kendoGridFilterCellTemplate
|
|
19
|
+
* let-column="column"
|
|
20
|
+
* let-filter="filter"
|
|
21
|
+
* >
|
|
22
|
+
* ...
|
|
23
|
+
* </ng-template>
|
|
24
|
+
* ...
|
|
25
|
+
* </kendo-grid-column>
|
|
26
|
+
* ```
|
|
9
27
|
*/
|
|
10
28
|
export declare class FilterCellTemplateDirective {
|
|
11
29
|
templateRef: TemplateRef<any>;
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
12
12
|
*
|
|
13
13
|
* The template context is set to the current data item and the following additional fields are passed:
|
|
14
|
-
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option
|
|
14
|
+
* - `column`—Defines an instance of the [`ColumnComponent`]({% slug api_grid_columncomponent %}) option. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
15
15
|
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
16
16
|
* - `filterService`—Represents the [`FilterService`]({% slug api_grid_filterservice %}). Use it as an alias for a template variable by utilizing the `let-filterService="filterService"` syntax.
|
|
17
17
|
*
|
|
@@ -24,7 +24,6 @@ import * as i0 from "@angular/core";
|
|
|
24
24
|
* >
|
|
25
25
|
* ...
|
|
26
26
|
* </ng-template>
|
|
27
|
-
* ...
|
|
28
27
|
* </kendo-grid-column>
|
|
29
28
|
* ```
|
|
30
29
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.1-develop.2",
|
|
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",
|
|
@@ -33,26 +33,26 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.19.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "15.1.
|
|
37
|
-
"@progress/kendo-angular-common": "15.1.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "15.1.
|
|
39
|
-
"@progress/kendo-angular-layout": "15.1.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "15.1.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "15.1.
|
|
42
|
-
"@progress/kendo-angular-icons": "15.1.
|
|
43
|
-
"@progress/kendo-angular-inputs": "15.1.
|
|
44
|
-
"@progress/kendo-angular-intl": "15.1.
|
|
45
|
-
"@progress/kendo-angular-l10n": "15.1.
|
|
46
|
-
"@progress/kendo-angular-label": "15.1.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "15.1.
|
|
48
|
-
"@progress/kendo-angular-popup": "15.1.
|
|
49
|
-
"@progress/kendo-angular-utils": "15.1.
|
|
36
|
+
"@progress/kendo-angular-buttons": "15.1.1-develop.2",
|
|
37
|
+
"@progress/kendo-angular-common": "15.1.1-develop.2",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "15.1.1-develop.2",
|
|
39
|
+
"@progress/kendo-angular-layout": "15.1.1-develop.2",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "15.1.1-develop.2",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "15.1.1-develop.2",
|
|
42
|
+
"@progress/kendo-angular-icons": "15.1.1-develop.2",
|
|
43
|
+
"@progress/kendo-angular-inputs": "15.1.1-develop.2",
|
|
44
|
+
"@progress/kendo-angular-intl": "15.1.1-develop.2",
|
|
45
|
+
"@progress/kendo-angular-l10n": "15.1.1-develop.2",
|
|
46
|
+
"@progress/kendo-angular-label": "15.1.1-develop.2",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "15.1.1-develop.2",
|
|
48
|
+
"@progress/kendo-angular-popup": "15.1.1-develop.2",
|
|
49
|
+
"@progress/kendo-angular-utils": "15.1.1-develop.2",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
51
|
-
"@progress/kendo-angular-spreadsheet": "15.1.
|
|
51
|
+
"@progress/kendo-angular-spreadsheet": "15.1.1-develop.2"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1",
|
|
55
|
-
"@progress/kendo-angular-schematics": "15.1.
|
|
55
|
+
"@progress/kendo-angular-schematics": "15.1.1-develop.2",
|
|
56
56
|
"@progress/kendo-common": "^0.2.0",
|
|
57
57
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
58
58
|
},
|
|
@@ -4,13 +4,13 @@ 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 dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '15.1.
|
|
7
|
+
'@progress/kendo-angular-treeview': '15.1.1-develop.2',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '15.1.
|
|
9
|
+
'@progress/kendo-angular-dialog': '15.1.1-develop.2',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-layout
|
|
13
|
-
'@progress/kendo-angular-progressbar': '15.1.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '15.1.1-develop.2'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|