@progress/kendo-angular-filter 25.0.0-develop.26 → 25.0.0-develop.27
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.
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
"use strict";
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.aiInstructions = void 0;
|
|
8
|
+
exports.default = default_1;
|
|
9
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
10
|
+
exports.aiInstructions = `Review your stylesheets, test files, and any code that references these Filter classes:
|
|
11
|
+
|
|
12
|
+
k-toolbar-md — removed from the toolbar <div> in FilterExpression and FilterGroup.
|
|
13
|
+
Remove any CSS rules or test assertions targeting .k-toolbar-md in Filter context.
|
|
14
|
+
|
|
15
|
+
k-toolbar-solid — removed from the toolbar <div> in FilterExpression and FilterGroup.
|
|
16
|
+
Remove any CSS rules or test assertions targeting .k-toolbar-solid in Filter context.
|
|
17
|
+
|
|
18
|
+
k-toolbar-button — removed from the logic ("and"/"or") buttons in FilterGroup.
|
|
19
|
+
Remove any CSS rules or test assertions targeting .k-toolbar-button in Filter context.`;
|
|
20
|
+
const classes = ['k-toolbar-md', 'k-toolbar-solid', 'k-toolbar-button'];
|
|
21
|
+
const pattern = (0, codemods_1.makePattern)(classes);
|
|
22
|
+
function default_1(fileInfo) {
|
|
23
|
+
if ((0, codemods_1.isRenderingChangeTarget)(fileInfo.path)) {
|
|
24
|
+
if (pattern.test(fileInfo.source)) {
|
|
25
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructions, __filename, fileInfo.path);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
return fileInfo.source;
|
|
29
|
+
}
|
|
@@ -232,8 +232,8 @@ const packageMetadata = {
|
|
|
232
232
|
productName: 'Kendo UI for Angular',
|
|
233
233
|
productCode: 'KENDOUIANGULAR',
|
|
234
234
|
productCodes: ['KENDOUIANGULAR'],
|
|
235
|
-
publishDate:
|
|
236
|
-
version: '25.0.0-develop.
|
|
235
|
+
publishDate: 1786387599,
|
|
236
|
+
version: '25.0.0-develop.27',
|
|
237
237
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
238
238
|
};
|
|
239
239
|
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1786387599,
|
|
11
|
+
"version": "25.0.0-develop.27",
|
|
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": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.27",
|
|
4
4
|
"description": "Kendo UI Angular Filter",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -14,10 +14,25 @@
|
|
|
14
14
|
],
|
|
15
15
|
"@progress": {
|
|
16
16
|
"friendlyName": "Filter",
|
|
17
|
+
"migrations": {
|
|
18
|
+
"options": {
|
|
19
|
+
"parser": "tsx",
|
|
20
|
+
"pattern": "*.{ts,html,css,scss,sass,less}"
|
|
21
|
+
},
|
|
22
|
+
"codemods": {
|
|
23
|
+
"25": [
|
|
24
|
+
{
|
|
25
|
+
"description": "The Filter component has rendering changes that may affect custom styling.",
|
|
26
|
+
"file": "codemods/v25/filter-rendering-changes.js",
|
|
27
|
+
"instructionsOnly": true
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
17
32
|
"package": {
|
|
18
33
|
"productName": "Kendo UI for Angular",
|
|
19
34
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
35
|
+
"publishDate": 1786387599,
|
|
21
36
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
37
|
}
|
|
23
38
|
},
|
|
@@ -28,20 +43,20 @@
|
|
|
28
43
|
"@angular/platform-browser": "20 - 22",
|
|
29
44
|
"@progress/kendo-data-query": "^1.7.3",
|
|
30
45
|
"@progress/kendo-licensing": "^1.11.0",
|
|
31
|
-
"@progress/kendo-angular-buttons": "25.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-dateinputs": "25.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "25.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-inputs": "25.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-intl": "25.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-label": "25.0.0-develop.
|
|
46
|
+
"@progress/kendo-angular-buttons": "25.0.0-develop.27",
|
|
47
|
+
"@progress/kendo-angular-common": "25.0.0-develop.27",
|
|
48
|
+
"@progress/kendo-angular-dateinputs": "25.0.0-develop.27",
|
|
49
|
+
"@progress/kendo-angular-dropdowns": "25.0.0-develop.27",
|
|
50
|
+
"@progress/kendo-angular-inputs": "25.0.0-develop.27",
|
|
51
|
+
"@progress/kendo-angular-intl": "25.0.0-develop.27",
|
|
52
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.27",
|
|
53
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.27",
|
|
54
|
+
"@progress/kendo-angular-label": "25.0.0-develop.27",
|
|
40
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
56
|
},
|
|
42
57
|
"dependencies": {
|
|
43
58
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
59
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.27"
|
|
45
60
|
},
|
|
46
61
|
"schematics": "./schematics/collection.json",
|
|
47
62
|
"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': '25.0.0-develop.
|
|
13
|
-
'@progress/kendo-angular-popup': '25.0.0-develop.
|
|
14
|
-
'@progress/kendo-angular-navigation': '25.0.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '25.0.0-develop.27',
|
|
13
|
+
'@progress/kendo-angular-popup': '25.0.0-develop.27',
|
|
14
|
+
'@progress/kendo-angular-navigation': '25.0.0-develop.27',
|
|
15
15
|
// peer dependency of kendo-angular-inputs
|
|
16
16
|
'@progress/kendo-drawing': '^1.16.0',
|
|
17
|
-
'@progress/kendo-angular-dialog': '25.0.0-develop.
|
|
17
|
+
'@progress/kendo-angular-dialog': '25.0.0-develop.27',
|
|
18
18
|
// Peer dependency of icons
|
|
19
19
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
20
20
|
} });
|