@progress/kendo-angular-filter 22.1.0-develop.9 → 23.0.0-develop.1
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/fesm2022/progress-kendo-angular-filter.mjs +7 -7
- package/filter-field.component.d.ts +2 -2
- package/filter.component.d.ts +1 -1
- package/localization/custom-messages.component.d.ts +1 -1
- package/model/filter-expression.d.ts +3 -3
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +4 -4
|
@@ -232,7 +232,7 @@ const packageMetadata = {
|
|
|
232
232
|
productCode: 'KENDOUIANGULAR',
|
|
233
233
|
productCodes: ['KENDOUIANGULAR'],
|
|
234
234
|
publishDate: 0,
|
|
235
|
-
version: '
|
|
235
|
+
version: '23.0.0-develop.1',
|
|
236
236
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
237
237
|
};
|
|
238
238
|
|
|
@@ -264,7 +264,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
264
264
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
265
265
|
|
|
266
266
|
/**
|
|
267
|
-
* Represents the [Kendo UI Filter Field component for Angular](
|
|
267
|
+
* Represents the [Kendo UI Filter Field component for Angular](https://www.telerik.com/kendo-angular-ui/components/filter/api/filterfieldcomponent).
|
|
268
268
|
* Used to declare filter expressions for the Filter component.
|
|
269
269
|
*
|
|
270
270
|
* @example
|
|
@@ -333,7 +333,7 @@ class FilterFieldComponent {
|
|
|
333
333
|
*/
|
|
334
334
|
operators;
|
|
335
335
|
/**
|
|
336
|
-
* Specifies the user-defined filter `editor` format that will be used. ([see example](
|
|
336
|
+
* Specifies the user-defined filter `editor` format that will be used. ([see example](https://www.telerik.com/kendo-angular-ui/components/filter/filter-editors-format))
|
|
337
337
|
*/
|
|
338
338
|
editorFormat;
|
|
339
339
|
/**
|
|
@@ -1422,7 +1422,7 @@ class FilterGroupComponent extends BaseFilterRowComponent {
|
|
|
1422
1422
|
}], viewQueries: [{ propertyName: "_filterItems", predicate: FilterItem, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
1423
1423
|
<div class="k-filter-toolbar">
|
|
1424
1424
|
<div class="k-toolbar k-toolbar-md k-toolbar-solid" role="toolbar" [attr.aria-label]="messageFor('filterToolbarAriaLabel')" (mousedown)="onMouseDown($event)">
|
|
1425
|
-
<div class="k-toolbar-button-group k-button-group
|
|
1425
|
+
<div class="k-toolbar-button-group k-button-group" role="group">
|
|
1426
1426
|
@for (operator of operators; track operator) {
|
|
1427
1427
|
<button
|
|
1428
1428
|
tabindex="-1"
|
|
@@ -1509,7 +1509,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1509
1509
|
template: `
|
|
1510
1510
|
<div class="k-filter-toolbar">
|
|
1511
1511
|
<div class="k-toolbar k-toolbar-md k-toolbar-solid" role="toolbar" [attr.aria-label]="messageFor('filterToolbarAriaLabel')" (mousedown)="onMouseDown($event)">
|
|
1512
|
-
<div class="k-toolbar-button-group k-button-group
|
|
1512
|
+
<div class="k-toolbar-button-group k-button-group" role="group">
|
|
1513
1513
|
@for (operator of operators; track operator) {
|
|
1514
1514
|
<button
|
|
1515
1515
|
tabindex="-1"
|
|
@@ -1862,7 +1862,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1862
1862
|
}], ctorParameters: () => [{ type: i1.LocalizationService }] });
|
|
1863
1863
|
|
|
1864
1864
|
/**
|
|
1865
|
-
* Represents the [Kendo UI Filter component for Angular](
|
|
1865
|
+
* Represents the [Kendo UI Filter component for Angular](https://www.telerik.com/kendo-angular-ui/components/filter).
|
|
1866
1866
|
* The Filter component enables users to define and apply complex filter criteria.
|
|
1867
1867
|
*
|
|
1868
1868
|
* @example
|
|
@@ -2453,7 +2453,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2453
2453
|
|
|
2454
2454
|
/**
|
|
2455
2455
|
* Custom component messages that override the default component messages.
|
|
2456
|
-
* For usage examples, see the [Internationalization guide](
|
|
2456
|
+
* For usage examples, see the [Internationalization guide](https://www.telerik.com/kendo-angular-ui/components/filter/globalization#internationalization).
|
|
2457
2457
|
*/
|
|
2458
2458
|
class CustomMessagesComponent extends Messages {
|
|
2459
2459
|
service;
|
|
@@ -6,7 +6,7 @@ import { DateFormat, FilterEditor, FilterOperator, NumberFormat } from './model/
|
|
|
6
6
|
import { FilterValueEditorTemplateDirective } from './templates/value-editor.template';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
|
-
* Represents the [Kendo UI Filter Field component for Angular](
|
|
9
|
+
* Represents the [Kendo UI Filter Field component for Angular](https://www.telerik.com/kendo-angular-ui/components/filter/api/filterfieldcomponent).
|
|
10
10
|
* Used to declare filter expressions for the Filter component.
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
@@ -66,7 +66,7 @@ export declare class FilterFieldComponent {
|
|
|
66
66
|
*/
|
|
67
67
|
operators: FilterOperator[];
|
|
68
68
|
/**
|
|
69
|
-
* Specifies the user-defined filter `editor` format that will be used. ([see example](
|
|
69
|
+
* Specifies the user-defined filter `editor` format that will be used. ([see example](https://www.telerik.com/kendo-angular-ui/components/filter/filter-editors-format))
|
|
70
70
|
*/
|
|
71
71
|
editorFormat?: string | NumberFormat | DateFormat;
|
|
72
72
|
/**
|
package/filter.component.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import { FilterItem } from './util';
|
|
|
14
14
|
import { NavigationService } from './navigation.service';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
/**
|
|
17
|
-
* Represents the [Kendo UI Filter component for Angular](
|
|
17
|
+
* Represents the [Kendo UI Filter component for Angular](https://www.telerik.com/kendo-angular-ui/components/filter).
|
|
18
18
|
* The Filter component enables users to define and apply complex filter criteria.
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
@@ -7,7 +7,7 @@ import { Messages } from './messages';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Custom component messages that override the default component messages.
|
|
10
|
-
* For usage examples, see the [Internationalization guide](
|
|
10
|
+
* For usage examples, see the [Internationalization guide](https://www.telerik.com/kendo-angular-ui/components/filter/globalization#internationalization).
|
|
11
11
|
*/
|
|
12
12
|
export declare class CustomMessagesComponent extends Messages {
|
|
13
13
|
protected service: LocalizationService;
|
|
@@ -11,14 +11,14 @@ import { NumberFormatOptions } from '@progress/kendo-angular-intl';
|
|
|
11
11
|
/**
|
|
12
12
|
* Specifies the date format used for the DatePicker editor.
|
|
13
13
|
* Extends the `FormatSettings` from `@progress/kendo-angular-dateinputs`.
|
|
14
|
-
* See the [Filter editor formats documentation](
|
|
14
|
+
* See the [Filter editor formats documentation](https://www.telerik.com/kendo-angular-ui/components/filter/filter-editors-format).
|
|
15
15
|
*/
|
|
16
16
|
export interface DateFormat extends FormatSettings {
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* Specifies the number format used for the NumericTextBox editor when it is not focused.
|
|
20
20
|
* Extends the `NumberFormatOptions` from `@progress/kendo-angular-intl`.
|
|
21
|
-
* See the [Filter editor formats documentation](
|
|
21
|
+
* See the [Filter editor formats documentation](https://www.telerik.com/kendo-angular-ui/components/filter/filter-editors-format).
|
|
22
22
|
*/
|
|
23
23
|
export interface NumberFormat extends NumberFormatOptions {
|
|
24
24
|
}
|
|
@@ -80,7 +80,7 @@ export interface FilterExpression {
|
|
|
80
80
|
editorTemplate?: TemplateRef<any>;
|
|
81
81
|
/**
|
|
82
82
|
* Specifies the user-defined filter `editor` format that will be used.
|
|
83
|
-
* See the [Filter editor formats documentation](
|
|
83
|
+
* See the [Filter editor formats documentation](https://www.telerik.com/kendo-angular-ui/components/filter/filter-editors-format).
|
|
84
84
|
*/
|
|
85
85
|
editorFormat?: string | NumberFormat | DateFormat;
|
|
86
86
|
}
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770287098,
|
|
11
|
+
"version": "23.0.0-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-filter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Angular Filter",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1770287098,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -26,22 +26,22 @@
|
|
|
26
26
|
"@angular/common": "19 - 21",
|
|
27
27
|
"@angular/core": "19 - 21",
|
|
28
28
|
"@angular/platform-browser": "19 - 21",
|
|
29
|
-
"@progress/kendo-data-query": "^1.
|
|
29
|
+
"@progress/kendo-data-query": "^1.7.3",
|
|
30
30
|
"@progress/kendo-licensing": "^1.10.0",
|
|
31
|
-
"@progress/kendo-angular-buttons": "
|
|
32
|
-
"@progress/kendo-angular-common": "
|
|
33
|
-
"@progress/kendo-angular-dateinputs": "
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "
|
|
35
|
-
"@progress/kendo-angular-inputs": "
|
|
36
|
-
"@progress/kendo-angular-intl": "
|
|
37
|
-
"@progress/kendo-angular-l10n": "
|
|
38
|
-
"@progress/kendo-angular-icons": "
|
|
39
|
-
"@progress/kendo-angular-label": "
|
|
31
|
+
"@progress/kendo-angular-buttons": "23.0.0-develop.1",
|
|
32
|
+
"@progress/kendo-angular-common": "23.0.0-develop.1",
|
|
33
|
+
"@progress/kendo-angular-dateinputs": "23.0.0-develop.1",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "23.0.0-develop.1",
|
|
35
|
+
"@progress/kendo-angular-inputs": "23.0.0-develop.1",
|
|
36
|
+
"@progress/kendo-angular-intl": "23.0.0-develop.1",
|
|
37
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.1",
|
|
39
|
+
"@progress/kendo-angular-label": "23.0.0-develop.1",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "
|
|
44
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.1"
|
|
45
45
|
},
|
|
46
46
|
"schematics": "./schematics/collection.json",
|
|
47
47
|
"module": "fesm2022/progress-kendo-angular-filter.mjs",
|
|
@@ -9,12 +9,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'FilterModule', package: 'filter', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '
|
|
13
|
-
'@progress/kendo-angular-popup': '
|
|
14
|
-
'@progress/kendo-angular-navigation': '
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.0.0-develop.1',
|
|
13
|
+
'@progress/kendo-angular-popup': '23.0.0-develop.1',
|
|
14
|
+
'@progress/kendo-angular-navigation': '23.0.0-develop.1',
|
|
15
15
|
// peer dependency of kendo-angular-inputs
|
|
16
16
|
'@progress/kendo-drawing': '^1.16.0',
|
|
17
|
-
'@progress/kendo-angular-dialog': '
|
|
17
|
+
'@progress/kendo-angular-dialog': '23.0.0-develop.1',
|
|
18
18
|
// Peer dependency of icons
|
|
19
19
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
20
20
|
} });
|