@progress/kendo-angular-grid 13.3.1-develop.1 → 13.4.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.
- package/esm2020/filtering/menu/filter-menu-template.directive.mjs +21 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-grid.mjs +23 -3
- package/fesm2020/progress-kendo-angular-grid.mjs +23 -3
- package/filtering/menu/filter-menu-template.directive.d.ts +21 -1
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
|
@@ -5,8 +5,28 @@
|
|
|
5
5
|
import { Directive, TemplateRef, Optional } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the filter-menu template
|
|
8
|
+
* Represents the filter-menu template.
|
|
9
|
+
* Helps to customize the content of the filter menu. To define the filter menu template, nest an `<ng-template>` tag with the
|
|
10
|
+
* `kendoGridFilterMenuTemplate` directive inside a `<kendo-grid-column>` tag
|
|
9
11
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
12
|
+
*
|
|
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.. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
15
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
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
|
+
*
|
|
18
|
+
* ```html
|
|
19
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
20
|
+
* <ng-template kendoGridFilterMenuTemplate
|
|
21
|
+
* let-column="column"
|
|
22
|
+
* let-filter="filter"
|
|
23
|
+
* let-filterService="filterService"
|
|
24
|
+
* >
|
|
25
|
+
* ...
|
|
26
|
+
* </ng-template>
|
|
27
|
+
* ...
|
|
28
|
+
* </kendo-grid-column>
|
|
29
|
+
* ```
|
|
10
30
|
*/
|
|
11
31
|
export class FilterMenuTemplateDirective {
|
|
12
32
|
constructor(templateRef) {
|
|
@@ -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: '13.
|
|
12
|
+
publishDate: 1692303317,
|
|
13
|
+
version: '13.4.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -943,8 +943,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
943
943
|
} });
|
|
944
944
|
|
|
945
945
|
/**
|
|
946
|
-
* Represents the filter-menu template
|
|
946
|
+
* Represents the filter-menu template.
|
|
947
|
+
* Helps to customize the content of the filter menu. To define the filter menu template, nest an `<ng-template>` tag with the
|
|
948
|
+
* `kendoGridFilterMenuTemplate` directive inside a `<kendo-grid-column>` tag
|
|
947
949
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
950
|
+
*
|
|
951
|
+
* The template context is set to the current data item and the following additional fields are passed:
|
|
952
|
+
* - `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.
|
|
953
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
954
|
+
* - `filterService`—Represents the [`FilterService`]({% slug api_grid_filterservice %}). Use it as an alias for a template variable by utilizing the `let-filterService="filterService"` syntax.
|
|
955
|
+
*
|
|
956
|
+
* ```html
|
|
957
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
958
|
+
* <ng-template kendoGridFilterMenuTemplate
|
|
959
|
+
* let-column="column"
|
|
960
|
+
* let-filter="filter"
|
|
961
|
+
* let-filterService="filterService"
|
|
962
|
+
* >
|
|
963
|
+
* ...
|
|
964
|
+
* </ng-template>
|
|
965
|
+
* ...
|
|
966
|
+
* </kendo-grid-column>
|
|
967
|
+
* ```
|
|
948
968
|
*/
|
|
949
969
|
class FilterMenuTemplateDirective {
|
|
950
970
|
constructor(templateRef) {
|
|
@@ -4454,8 +4474,8 @@ const packageMetadata = {
|
|
|
4454
4474
|
name: '@progress/kendo-angular-grid',
|
|
4455
4475
|
productName: 'Kendo UI for Angular',
|
|
4456
4476
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4457
|
-
publishDate:
|
|
4458
|
-
version: '13.
|
|
4477
|
+
publishDate: 1692303317,
|
|
4478
|
+
version: '13.4.0-develop.2',
|
|
4459
4479
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4460
4480
|
};
|
|
4461
4481
|
|
|
@@ -2702,8 +2702,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2702
2702
|
}] }]; } });
|
|
2703
2703
|
|
|
2704
2704
|
/**
|
|
2705
|
-
* Represents the filter-menu template
|
|
2705
|
+
* Represents the filter-menu template.
|
|
2706
|
+
* Helps to customize the content of the filter menu. To define the filter menu template, nest an `<ng-template>` tag with the
|
|
2707
|
+
* `kendoGridFilterMenuTemplate` directive inside a `<kendo-grid-column>` tag
|
|
2706
2708
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
2709
|
+
*
|
|
2710
|
+
* The template context is set to the current data item and the following additional fields are passed:
|
|
2711
|
+
* - `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.
|
|
2712
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
2713
|
+
* - `filterService`—Represents the [`FilterService`]({% slug api_grid_filterservice %}). Use it as an alias for a template variable by utilizing the `let-filterService="filterService"` syntax.
|
|
2714
|
+
*
|
|
2715
|
+
* ```html
|
|
2716
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
2717
|
+
* <ng-template kendoGridFilterMenuTemplate
|
|
2718
|
+
* let-column="column"
|
|
2719
|
+
* let-filter="filter"
|
|
2720
|
+
* let-filterService="filterService"
|
|
2721
|
+
* >
|
|
2722
|
+
* ...
|
|
2723
|
+
* </ng-template>
|
|
2724
|
+
* ...
|
|
2725
|
+
* </kendo-grid-column>
|
|
2726
|
+
* ```
|
|
2707
2727
|
*/
|
|
2708
2728
|
class FilterMenuTemplateDirective {
|
|
2709
2729
|
constructor(templateRef) {
|
|
@@ -4422,8 +4442,8 @@ const packageMetadata = {
|
|
|
4422
4442
|
name: '@progress/kendo-angular-grid',
|
|
4423
4443
|
productName: 'Kendo UI for Angular',
|
|
4424
4444
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4425
|
-
publishDate:
|
|
4426
|
-
version: '13.
|
|
4445
|
+
publishDate: 1692303317,
|
|
4446
|
+
version: '13.4.0-develop.2',
|
|
4427
4447
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4428
4448
|
};
|
|
4429
4449
|
|
|
@@ -5,8 +5,28 @@
|
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the filter-menu template
|
|
8
|
+
* Represents the filter-menu template.
|
|
9
|
+
* Helps to customize the content of the filter menu. To define the filter menu template, nest an `<ng-template>` tag with the
|
|
10
|
+
* `kendoGridFilterMenuTemplate` directive inside a `<kendo-grid-column>` tag
|
|
9
11
|
* ([see example]({% slug filter_menu %}#toc-custom-filters)).
|
|
12
|
+
*
|
|
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.. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
15
|
+
* - `filter`—The provided filter descriptors. Use it as an alias for a template variable by utilizing the `let-filter="filter"` syntax.
|
|
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
|
+
*
|
|
18
|
+
* ```html
|
|
19
|
+
* <kendo-grid-column field="CategoryID" title="Category">
|
|
20
|
+
* <ng-template kendoGridFilterMenuTemplate
|
|
21
|
+
* let-column="column"
|
|
22
|
+
* let-filter="filter"
|
|
23
|
+
* let-filterService="filterService"
|
|
24
|
+
* >
|
|
25
|
+
* ...
|
|
26
|
+
* </ng-template>
|
|
27
|
+
* ...
|
|
28
|
+
* </kendo-grid-column>
|
|
29
|
+
* ```
|
|
10
30
|
*/
|
|
11
31
|
export declare class FilterMenuTemplateDirective {
|
|
12
32
|
templateRef: TemplateRef<any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.4.0-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",
|
|
@@ -32,25 +32,25 @@
|
|
|
32
32
|
"@progress/kendo-data-query": "^1.0.0",
|
|
33
33
|
"@progress/kendo-drawing": "^1.17.2",
|
|
34
34
|
"@progress/kendo-licensing": "^1.0.2",
|
|
35
|
-
"@progress/kendo-angular-buttons": "13.
|
|
36
|
-
"@progress/kendo-angular-common": "13.
|
|
37
|
-
"@progress/kendo-angular-dateinputs": "13.
|
|
38
|
-
"@progress/kendo-angular-layout": "13.
|
|
39
|
-
"@progress/kendo-angular-dropdowns": "13.
|
|
40
|
-
"@progress/kendo-angular-excel-export": "13.
|
|
41
|
-
"@progress/kendo-angular-icons": "13.
|
|
42
|
-
"@progress/kendo-angular-inputs": "13.
|
|
43
|
-
"@progress/kendo-angular-intl": "13.
|
|
44
|
-
"@progress/kendo-angular-l10n": "13.
|
|
45
|
-
"@progress/kendo-angular-label": "13.
|
|
46
|
-
"@progress/kendo-angular-pdf-export": "13.
|
|
47
|
-
"@progress/kendo-angular-popup": "13.
|
|
48
|
-
"@progress/kendo-angular-utils": "13.
|
|
35
|
+
"@progress/kendo-angular-buttons": "13.4.0-develop.2",
|
|
36
|
+
"@progress/kendo-angular-common": "13.4.0-develop.2",
|
|
37
|
+
"@progress/kendo-angular-dateinputs": "13.4.0-develop.2",
|
|
38
|
+
"@progress/kendo-angular-layout": "13.4.0-develop.2",
|
|
39
|
+
"@progress/kendo-angular-dropdowns": "13.4.0-develop.2",
|
|
40
|
+
"@progress/kendo-angular-excel-export": "13.4.0-develop.2",
|
|
41
|
+
"@progress/kendo-angular-icons": "13.4.0-develop.2",
|
|
42
|
+
"@progress/kendo-angular-inputs": "13.4.0-develop.2",
|
|
43
|
+
"@progress/kendo-angular-intl": "13.4.0-develop.2",
|
|
44
|
+
"@progress/kendo-angular-l10n": "13.4.0-develop.2",
|
|
45
|
+
"@progress/kendo-angular-label": "13.4.0-develop.2",
|
|
46
|
+
"@progress/kendo-angular-pdf-export": "13.4.0-develop.2",
|
|
47
|
+
"@progress/kendo-angular-popup": "13.4.0-develop.2",
|
|
48
|
+
"@progress/kendo-angular-utils": "13.4.0-develop.2",
|
|
49
49
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"tslib": "^2.3.1",
|
|
53
|
-
"@progress/kendo-angular-schematics": "13.
|
|
53
|
+
"@progress/kendo-angular-schematics": "13.4.0-develop.2",
|
|
54
54
|
"@progress/kendo-common": "^0.2.0",
|
|
55
55
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
56
56
|
},
|
|
@@ -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': '13.
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.4.0-develop.2',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '13.
|
|
9
|
+
'@progress/kendo-angular-dialog': '13.4.0-develop.2',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-layout
|
|
13
|
-
'@progress/kendo-angular-progressbar': '13.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '13.4.0-develop.2'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|