@progress/kendo-angular-grid 24.0.0-develop.1 → 24.0.0-develop.10
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/NOTICE.txt +2599 -172
- package/codemods/{utils.js → libs/common/src/codemods/utils.js} +53 -30
- package/codemods/{v18 → libs/grid/codemods/v18}/grid-rendering-changes.js +8 -8
- package/codemods/{v19 → libs/grid/codemods/v19}/grid-removeconfirmation.js +5 -5
- package/codemods/{v19 → libs/grid/codemods/v19}/grid-rendering-changes.js +4 -4
- package/codemods/{v20 → libs/grid/codemods/v20}/grid-kendogridgroupbinding.js +5 -27
- package/codemods/{v20 → libs/grid/codemods/v20}/grid-rowheight.js +5 -5
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbaraiopenevent.js +3 -3
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbaraipromptrequestevent.js +3 -3
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbaraipromptsettings.js +3 -3
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbarairequestdata.js +3 -3
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbarairequestoptions.js +3 -3
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbarairesponseerrorevent.js +3 -3
- package/codemods/{v21 → libs/grid/codemods/v21}/grid-gridtoolbaraiwindowsettings.js +3 -3
- package/columns/column-base.d.ts +4 -0
- package/columns/pin-column.component.d.ts +45 -0
- package/databinding.directive.d.ts +10 -1
- package/directives.d.ts +4 -3
- package/editing/edit.service.d.ts +1 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +1231 -299
- package/grid.component.d.ts +57 -3
- package/grid.module.d.ts +106 -105
- package/index.d.ts +3 -0
- package/localization/messages.d.ts +25 -1
- package/navigation/navigation-metadata.d.ts +3 -1
- package/package-metadata.mjs +2 -2
- package/package.json +32 -40
- package/rendering/cell.component.d.ts +19 -4
- package/rendering/common/cell-context.d.ts +5 -0
- package/rendering/grid-table.directive.d.ts +0 -3
- package/rendering/table-body.component.d.ts +4 -1
- package/row-pinning/row-pin-container.component.d.ts +48 -0
- package/row-pinning/row-pin.service.d.ts +28 -0
- package/row-pinning/types.d.ts +42 -0
- package/schematics/ngAdd/index.js +7 -7
- package/scrolling/scroll-sync.service.d.ts +2 -3
|
@@ -3,29 +3,6 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
"use strict";
|
|
6
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
-
if (k2 === undefined) k2 = k;
|
|
8
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
-
}
|
|
12
|
-
Object.defineProperty(o, k2, desc);
|
|
13
|
-
}) : (function(o, m, k, k2) {
|
|
14
|
-
if (k2 === undefined) k2 = k;
|
|
15
|
-
o[k2] = m[k];
|
|
16
|
-
}));
|
|
17
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
-
}) : function(o, v) {
|
|
20
|
-
o["default"] = v;
|
|
21
|
-
});
|
|
22
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
23
|
-
if (mod && mod.__esModule) return mod;
|
|
24
|
-
var result = {};
|
|
25
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
26
|
-
__setModuleDefault(result, mod);
|
|
27
|
-
return result;
|
|
28
|
-
};
|
|
29
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
7
|
exports.tsInterfaceTransformer = exports.tsPropertyValueTransformer = exports.tsPropertyTransformer = exports.tsComponentPropertyRemoval = exports.attributeRemoval = exports.attributeValueUpdate = exports.attributeNameValueUpdate = exports.attributeNameUpdate = exports.eventUpdate = exports.htmlTransformer = exports.blockTextElements = void 0;
|
|
31
8
|
exports.hasKendoInTemplate = hasKendoInTemplate;
|
|
@@ -35,8 +12,12 @@ exports.makePattern = makePattern;
|
|
|
35
12
|
exports.writeInstructionMarker = writeInstructionMarker;
|
|
36
13
|
exports.isApiChangeTarget = isApiChangeTarget;
|
|
37
14
|
exports.isRenderingChangeTarget = isRenderingChangeTarget;
|
|
38
|
-
|
|
39
|
-
const
|
|
15
|
+
exports.executeCodemodTest = executeCodemodTest;
|
|
16
|
+
const tslib_1 = require("tslib");
|
|
17
|
+
/// <reference types="node" />
|
|
18
|
+
const fs = tslib_1.__importStar(require("fs"));
|
|
19
|
+
const os = tslib_1.__importStar(require("os"));
|
|
20
|
+
const path = tslib_1.__importStar(require("path"));
|
|
40
21
|
exports.blockTextElements = {
|
|
41
22
|
script: true,
|
|
42
23
|
noscript: true,
|
|
@@ -320,12 +301,12 @@ const attributeRemoval = (templateContent, tagName, attributeName, propertyToRem
|
|
|
320
301
|
// If no propertyToRemove is specified, remove the entire attribute
|
|
321
302
|
if (!propertyToRemove) {
|
|
322
303
|
// Remove bound attributes [attribute]="value"
|
|
323
|
-
const boundAttributePattern = new RegExp(`(\\s
|
|
304
|
+
const boundAttributePattern = new RegExp(`(<${escapedTag}[^>]*?)\\s+\\[${escapedAttr}\\]\\s*=\\s*("(?:[^"\\\\]|\\\\.)*?"|'(?:[^'\\\\]|\\\\.)*?'|[^\\s>]+)([^>]*?>)`, 'gi');
|
|
324
305
|
// Remove static attributes attribute="value"
|
|
325
|
-
const staticAttributePattern = new RegExp(`(\\s
|
|
326
|
-
// Apply removals
|
|
327
|
-
let result = templateContent.replace(boundAttributePattern, '');
|
|
328
|
-
result = result.replace(staticAttributePattern, '');
|
|
306
|
+
const staticAttributePattern = new RegExp(`(<${escapedTag}[^>]*?)\\s+${escapedAttr}\\s*=\\s*("(?:[^"\\\\]|\\\\.)*?"|'(?:[^'\\\\]|\\\\.)*?'|[^\\s>]+)([^>]*?>)`, 'gi');
|
|
307
|
+
// Apply removals - keep tag prefix and suffix, remove the attribute
|
|
308
|
+
let result = templateContent.replace(boundAttributePattern, '$1$3');
|
|
309
|
+
result = result.replace(staticAttributePattern, '$1$3');
|
|
329
310
|
return result;
|
|
330
311
|
}
|
|
331
312
|
// Remove specific property from object literal attributes
|
|
@@ -1428,3 +1409,45 @@ function isRenderingChangeTarget(filePath) {
|
|
|
1428
1409
|
const ext = path.extname(filePath);
|
|
1429
1410
|
return ext === '.ts' || ext === '.html' || ext === '.css' || ext === '.scss' || ext === '.sass' || ext === '.less';
|
|
1430
1411
|
}
|
|
1412
|
+
/**
|
|
1413
|
+
* Executes a codemod transformation and compares the result with expected output
|
|
1414
|
+
*
|
|
1415
|
+
* @param codemod - The codemod function to execute
|
|
1416
|
+
* @param testDir - Directory containing the test files (__dirname from test file)
|
|
1417
|
+
* @param exampleFileName - Name of the input file (default: 'example.ts')
|
|
1418
|
+
* @param expectedFileName - Name of the expected output file (default: 'expected.ts')
|
|
1419
|
+
* @returns Object containing the transformation result and expected content
|
|
1420
|
+
*/
|
|
1421
|
+
function executeCodemodTest(codemod, testDir, exampleFileName = 'example.ts', expectedFileName = 'expected.ts') {
|
|
1422
|
+
const exampleFile = path.join(testDir, exampleFileName);
|
|
1423
|
+
const expectedFile = path.join(testDir, expectedFileName);
|
|
1424
|
+
const sourceCode = fs.readFileSync(exampleFile, 'utf-8');
|
|
1425
|
+
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codemod-test-'));
|
|
1426
|
+
const tmpFile = path.join(tmpDir, path.basename(exampleFile));
|
|
1427
|
+
fs.writeFileSync(tmpFile, sourceCode, 'utf-8');
|
|
1428
|
+
try {
|
|
1429
|
+
const fileInfo = {
|
|
1430
|
+
path: tmpFile,
|
|
1431
|
+
source: sourceCode
|
|
1432
|
+
};
|
|
1433
|
+
const jscodeshift = require('jscodeshift').withParser('tsx');
|
|
1434
|
+
const api = {
|
|
1435
|
+
jscodeshift,
|
|
1436
|
+
j: jscodeshift
|
|
1437
|
+
};
|
|
1438
|
+
const result = codemod(fileInfo, api);
|
|
1439
|
+
const expectedContent = fs.readFileSync(expectedFile, 'utf-8').trim();
|
|
1440
|
+
return {
|
|
1441
|
+
result: result?.trim(),
|
|
1442
|
+
expected: expectedContent,
|
|
1443
|
+
sourceCode,
|
|
1444
|
+
transformedSuccessfully: result !== undefined
|
|
1445
|
+
};
|
|
1446
|
+
}
|
|
1447
|
+
finally {
|
|
1448
|
+
try {
|
|
1449
|
+
fs.rmSync(tmpDir, { recursive: true });
|
|
1450
|
+
}
|
|
1451
|
+
catch { }
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.aiInstructions = exports.aiInstructionsAlt = exports.aiInstructionsGridHeader = exports.aiInstructionsDraggableHeader = void 0;
|
|
8
8
|
exports.default = default_1;
|
|
9
|
-
const
|
|
9
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
10
10
|
exports.aiInstructionsDraggableHeader = `k-grid-draggable-header — removed from individual draggable column elements; now added to the Grid wrapper when the Grid is both groupable and reorderable.
|
|
11
11
|
Before: <th class="k-grid-draggable-header"> (on each draggable column)
|
|
12
12
|
After: <div class="k-grid k-grid-draggable-header"> (on the Grid wrapper when groupable and reorderable)
|
|
@@ -27,21 +27,21 @@ ${exports.aiInstructionsGridHeader}
|
|
|
27
27
|
|
|
28
28
|
${exports.aiInstructionsAlt}`;
|
|
29
29
|
const classesDraggableHeader = ['k-grid-draggable-header'];
|
|
30
|
-
const patternDraggableHeader = (0,
|
|
30
|
+
const patternDraggableHeader = (0, codemods_1.makePattern)(classesDraggableHeader);
|
|
31
31
|
const classesGridHeader = ['k-grid-header'];
|
|
32
|
-
const patternGridHeader = (0,
|
|
32
|
+
const patternGridHeader = (0, codemods_1.makePattern)(classesGridHeader);
|
|
33
33
|
const classesAlt = ['k-alt'];
|
|
34
|
-
const patternAlt = (0,
|
|
34
|
+
const patternAlt = (0, codemods_1.makePattern)(classesAlt);
|
|
35
35
|
function default_1(fileInfo) {
|
|
36
|
-
if ((0,
|
|
36
|
+
if ((0, codemods_1.isRenderingChangeTarget)(fileInfo.path)) {
|
|
37
37
|
if (patternDraggableHeader.test(fileInfo.source)) {
|
|
38
|
-
(0,
|
|
38
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructionsDraggableHeader, __filename, fileInfo.path);
|
|
39
39
|
}
|
|
40
40
|
if (patternGridHeader.test(fileInfo.source)) {
|
|
41
|
-
(0,
|
|
41
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructionsGridHeader, __filename, fileInfo.path);
|
|
42
42
|
}
|
|
43
43
|
if (patternAlt.test(fileInfo.source)) {
|
|
44
|
-
(0,
|
|
44
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructionsAlt, __filename, fileInfo.path);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
return fileInfo.source;
|
|
@@ -6,28 +6,28 @@
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.aiInstructions = void 0;
|
|
8
8
|
exports.default = default_1;
|
|
9
|
-
const
|
|
9
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
10
10
|
const editingDirectivePattern = /kendoGrid(ReactiveEditing|TemplateEditing|InCellEditing|ExternalEditing)/;
|
|
11
11
|
function default_1(fileInfo, api) {
|
|
12
12
|
const filePath = fileInfo.path;
|
|
13
|
-
if (!(0,
|
|
13
|
+
if (!(0, codemods_1.isApiChangeTarget)(filePath)) {
|
|
14
14
|
return fileInfo.source;
|
|
15
15
|
}
|
|
16
16
|
if (filePath.endsWith('.html')) {
|
|
17
17
|
if (editingDirectivePattern.test(fileInfo.source)) {
|
|
18
|
-
(0,
|
|
18
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructions, __filename, fileInfo.path);
|
|
19
19
|
}
|
|
20
20
|
return fileInfo.source;
|
|
21
21
|
}
|
|
22
22
|
let patternDetected = false;
|
|
23
|
-
(0,
|
|
23
|
+
(0, codemods_1.htmlTransformer)(fileInfo, api, (templateContent) => {
|
|
24
24
|
if (editingDirectivePattern.test(templateContent)) {
|
|
25
25
|
patternDetected = true;
|
|
26
26
|
}
|
|
27
27
|
return templateContent;
|
|
28
28
|
});
|
|
29
29
|
if (patternDetected || editingDirectivePattern.test(fileInfo.source)) {
|
|
30
|
-
(0,
|
|
30
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructions, __filename, fileInfo.path);
|
|
31
31
|
}
|
|
32
32
|
return fileInfo.source;
|
|
33
33
|
}
|
|
@@ -6,17 +6,17 @@
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.aiInstructions = void 0;
|
|
8
8
|
exports.default = default_1;
|
|
9
|
-
const
|
|
9
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
10
10
|
exports.aiInstructions = `Review your stylesheets, test files, and any code that references the k-column-list-md class. It has been removed from the column list in adaptive mode.
|
|
11
11
|
Before: <div class="k-column-list k-column-list-md">
|
|
12
12
|
After: <div class="k-column-list k-column-list-lg">
|
|
13
13
|
Replace .k-column-list-md selectors with .k-column-list-lg in your styles and tests for the Grid column list in adaptive mode.`;
|
|
14
14
|
const classes = ['k-column-list-md', 'k-column-list'];
|
|
15
|
-
const pattern = (0,
|
|
15
|
+
const pattern = (0, codemods_1.makePattern)(classes);
|
|
16
16
|
function default_1(fileInfo) {
|
|
17
|
-
if ((0,
|
|
17
|
+
if ((0, codemods_1.isRenderingChangeTarget)(fileInfo.path)) {
|
|
18
18
|
if (pattern.test(fileInfo.source)) {
|
|
19
|
-
(0,
|
|
19
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructions, __filename, fileInfo.path);
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
return fileInfo.source;
|
|
@@ -3,41 +3,19 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
"use strict";
|
|
6
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
-
if (k2 === undefined) k2 = k;
|
|
8
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
-
}
|
|
12
|
-
Object.defineProperty(o, k2, desc);
|
|
13
|
-
}) : (function(o, m, k, k2) {
|
|
14
|
-
if (k2 === undefined) k2 = k;
|
|
15
|
-
o[k2] = m[k];
|
|
16
|
-
}));
|
|
17
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
-
}) : function(o, v) {
|
|
20
|
-
o["default"] = v;
|
|
21
|
-
});
|
|
22
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
23
|
-
if (mod && mod.__esModule) return mod;
|
|
24
|
-
var result = {};
|
|
25
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
26
|
-
__setModuleDefault(result, mod);
|
|
27
|
-
return result;
|
|
28
|
-
};
|
|
29
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
7
|
exports.aiInstructions = void 0;
|
|
31
8
|
exports.default = default_1;
|
|
32
|
-
const
|
|
33
|
-
const
|
|
9
|
+
const tslib_1 = require("tslib");
|
|
10
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
11
|
+
const fs = tslib_1.__importStar(require("fs"));
|
|
34
12
|
function default_1(fileInfo, api) {
|
|
35
13
|
const filePath = fileInfo.path;
|
|
36
|
-
if (!(0,
|
|
14
|
+
if (!(0, codemods_1.isApiChangeTarget)(filePath)) {
|
|
37
15
|
return fileInfo.source;
|
|
38
16
|
}
|
|
39
17
|
// Handle HTML files and inline templates
|
|
40
|
-
const htmlResult = (0,
|
|
18
|
+
const htmlResult = (0, codemods_1.htmlTransformer)(fileInfo, api, (templateContent) => (0, codemods_1.attributeNameUpdate)(templateContent, 'kendo-grid', 'kendoGridGroupBinding', 'kendoGridBinding'));
|
|
41
19
|
if (filePath.endsWith('.html')) {
|
|
42
20
|
if (htmlResult && htmlResult !== fileInfo.source) {
|
|
43
21
|
fs.writeFileSync(filePath, htmlResult, 'utf-8');
|
|
@@ -6,28 +6,28 @@
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.aiInstructions = void 0;
|
|
8
8
|
exports.default = default_1;
|
|
9
|
-
const
|
|
9
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
10
10
|
const rowHeightPattern = /\[rowHeight\]|\[detailRowHeight\]/;
|
|
11
11
|
function default_1(fileInfo, api) {
|
|
12
12
|
const filePath = fileInfo.path;
|
|
13
|
-
if (!(0,
|
|
13
|
+
if (!(0, codemods_1.isApiChangeTarget)(filePath)) {
|
|
14
14
|
return fileInfo.source;
|
|
15
15
|
}
|
|
16
16
|
if (filePath.endsWith('.html')) {
|
|
17
17
|
if (rowHeightPattern.test(fileInfo.source)) {
|
|
18
|
-
(0,
|
|
18
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructions, __filename, fileInfo.path);
|
|
19
19
|
}
|
|
20
20
|
return fileInfo.source;
|
|
21
21
|
}
|
|
22
22
|
let patternDetected = false;
|
|
23
|
-
(0,
|
|
23
|
+
(0, codemods_1.htmlTransformer)(fileInfo, api, (templateContent) => {
|
|
24
24
|
if (rowHeightPattern.test(templateContent)) {
|
|
25
25
|
patternDetected = true;
|
|
26
26
|
}
|
|
27
27
|
return templateContent;
|
|
28
28
|
});
|
|
29
29
|
if (patternDetected) {
|
|
30
|
-
(0,
|
|
30
|
+
(0, codemods_1.writeInstructionMarker)(exports.aiInstructions, __filename, fileInfo.path);
|
|
31
31
|
}
|
|
32
32
|
return fileInfo.source;
|
|
33
33
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIOpenEvent', 'GridAIAssistantOpenEvent');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIPromptRequestEvent', 'GridAIAssistantRequestEvent');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIPromptSettings', 'GridAIAssistantPromptSettings');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIRequestData', 'GridAIRequestData');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIRequestOptions', 'GridAIRequestOptions');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIResponseErrorEvent', 'GridAIAssistantResponseErrorEvent');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"use strict";
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.default = default_1;
|
|
8
|
-
const
|
|
8
|
+
const codemods_1 = require("@progress/kendo-angular-common/codemods");
|
|
9
9
|
function default_1(fileInfo, api) {
|
|
10
|
-
if (!(0,
|
|
10
|
+
if (!(0, codemods_1.isApiChangeTarget)(fileInfo.path)) {
|
|
11
11
|
return fileInfo.source;
|
|
12
12
|
}
|
|
13
13
|
const j = api.jscodeshift;
|
|
14
14
|
const rootSource = j(fileInfo.source);
|
|
15
|
-
(0,
|
|
15
|
+
(0, codemods_1.tsInterfaceTransformer)(fileInfo, rootSource, j, '@progress/kendo-angular-grid', 'GridToolbarAIWindowSettings', 'GridAIAssistantWindowSettings');
|
|
16
16
|
return rootSource.toSource();
|
|
17
17
|
}
|
package/columns/column-base.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export declare const isCheckboxColumn: (column: any) => any;
|
|
|
21
21
|
* @hidden
|
|
22
22
|
*/
|
|
23
23
|
export declare const isRowReorderColumn: (column: any) => any;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
export declare const isRowPinColumn: (column: any) => any;
|
|
24
28
|
/**
|
|
25
29
|
* The base class for the column components of the Grid.
|
|
26
30
|
*
|
|
@@ -0,0 +1,45 @@
|
|
|
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
|
+
import { ColumnBase } from './column-base';
|
|
6
|
+
import { IdService } from '../common/id.service';
|
|
7
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
|
+
import { CellRowspanFn } from './cell-rowspan';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
/**
|
|
11
|
+
* Represents the pin column for the Grid.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```html
|
|
15
|
+
* <kendo-grid>
|
|
16
|
+
* <kendo-grid-rowpin-column></kendo-grid-rowpin-column>
|
|
17
|
+
* <kendo-grid-column field="ProductID"></kendo-grid-column>
|
|
18
|
+
* </kendo-grid>
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
export declare class RowPinColumnComponent extends ColumnBase {
|
|
22
|
+
parent?: ColumnBase;
|
|
23
|
+
/**
|
|
24
|
+
* Defines the name for an existing font icon in the Kendo UI theme.
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
pinIcon: string;
|
|
28
|
+
/**
|
|
29
|
+
* Defines an SVGIcon to be rendered as a pin icon.
|
|
30
|
+
* @hidden
|
|
31
|
+
*/
|
|
32
|
+
pinSVGIcon: SVGIcon;
|
|
33
|
+
/**
|
|
34
|
+
* @hidden
|
|
35
|
+
*/
|
|
36
|
+
readonly isRowPinColumn: boolean;
|
|
37
|
+
constructor(parent?: ColumnBase, idService?: IdService);
|
|
38
|
+
/**
|
|
39
|
+
* Sets a function to determine the rowspan of each column cell.
|
|
40
|
+
*/
|
|
41
|
+
set cellRowspan(cellRowspan: CellRowspanFn);
|
|
42
|
+
get cellRowspan(): CellRowspanFn;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowPinColumnComponent, [{ optional: true; host: true; skipSelf: true; }, { optional: true; }]>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowPinColumnComponent, "kendo-grid-rowpin-column", never, { "pinIcon": { "alias": "pinIcon"; "required": false; }; "pinSVGIcon": { "alias": "pinSVGIcon"; "required": false; }; }, {}, never, never, true, never>;
|
|
45
|
+
}
|
|
@@ -12,6 +12,8 @@ import { RowReorderEvent } from './row-reordering/types';
|
|
|
12
12
|
import { RowReorderService } from './row-reordering/row-reorder.service';
|
|
13
13
|
import { ContextService } from './common/provider.service';
|
|
14
14
|
import { SearchService } from './rendering/toolbar/tools/smartbox/search.service';
|
|
15
|
+
import { RowPinService } from './row-pinning/row-pin.service';
|
|
16
|
+
import { RowPinEvent } from './row-pinning/types';
|
|
15
17
|
import * as i0 from "@angular/core";
|
|
16
18
|
/**
|
|
17
19
|
* A directive that handles in-memory data operations like [paging](https://www.telerik.com/kendo-angular-ui/components/grid/paging/basics),
|
|
@@ -33,6 +35,7 @@ export declare class DataBindingDirective implements OnInit, OnDestroy, DoCheck,
|
|
|
33
35
|
protected localDataChangesService?: LocalDataChangesService;
|
|
34
36
|
private rowReorderService?;
|
|
35
37
|
private searchService?;
|
|
38
|
+
private rowPinService?;
|
|
36
39
|
/**
|
|
37
40
|
* Sets the number of records to skip in the Grid.
|
|
38
41
|
*
|
|
@@ -70,9 +73,10 @@ export declare class DataBindingDirective implements OnInit, OnDestroy, DoCheck,
|
|
|
70
73
|
private stateChangeSubscription;
|
|
71
74
|
private dataChangedSubscription;
|
|
72
75
|
private rowReorderSubscription;
|
|
76
|
+
private rowPinSubscription;
|
|
73
77
|
private searchSubscription;
|
|
74
78
|
private searchFilter;
|
|
75
|
-
constructor(grid: GridComponent, changeDetector?: ChangeDetectorRef, localDataChangesService?: LocalDataChangesService, rowReorderService?: RowReorderService, searchService?: SearchService, ctx?: ContextService);
|
|
79
|
+
constructor(grid: GridComponent, changeDetector?: ChangeDetectorRef, localDataChangesService?: LocalDataChangesService, rowReorderService?: RowReorderService, searchService?: SearchService, rowPinService?: RowPinService, ctx?: ContextService);
|
|
76
80
|
/**
|
|
77
81
|
* @hidden
|
|
78
82
|
*/
|
|
@@ -93,6 +97,10 @@ export declare class DataBindingDirective implements OnInit, OnDestroy, DoCheck,
|
|
|
93
97
|
* @hidden
|
|
94
98
|
*/
|
|
95
99
|
onRowReorder(ev: RowReorderEvent): void;
|
|
100
|
+
/**
|
|
101
|
+
* @hidden
|
|
102
|
+
*/
|
|
103
|
+
onRowPin(ev: RowPinEvent): void;
|
|
96
104
|
/**
|
|
97
105
|
* @hidden
|
|
98
106
|
*/
|
|
@@ -109,6 +117,7 @@ export declare class DataBindingDirective implements OnInit, OnDestroy, DoCheck,
|
|
|
109
117
|
protected applyState({ skip, take, sort, group, filter }: State): void;
|
|
110
118
|
protected updateGridData(): void;
|
|
111
119
|
private combineFilters;
|
|
120
|
+
private processPinnedRowsData;
|
|
112
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataBindingDirective, never>;
|
|
113
122
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DataBindingDirective, "[kendoGridBinding]", ["kendoGridBinding"], { "skip": { "alias": "skip"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "group": { "alias": "group"; "required": false; }; "data": { "alias": "kendoGridBinding"; "required": false; }; }, {}, never, never, true, never>;
|
|
114
123
|
}
|
package/directives.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ import { AddCommandDirective } from "./editing/add-command.directive";
|
|
|
114
114
|
import { CellLoadingTemplateDirective } from "./rendering/cell-loading.template.directive";
|
|
115
115
|
import { LoadingTemplateDirective } from "./rendering/loading-template.directive";
|
|
116
116
|
import { RowReorderColumnComponent } from "./columns/reorder-column.component";
|
|
117
|
+
import { RowPinColumnComponent } from './columns/pin-column.component';
|
|
117
118
|
import { GridComponent } from "./grid.component";
|
|
118
119
|
import { ListComponent } from "./rendering/list.component";
|
|
119
120
|
import { ToolbarComponent } from "./rendering/toolbar/toolbar.component";
|
|
@@ -238,7 +239,7 @@ export declare const KENDO_GRID_FOOTER_EXPORTS: readonly [typeof FooterComponent
|
|
|
238
239
|
*
|
|
239
240
|
* Utility array that contains the Body module exports
|
|
240
241
|
*/
|
|
241
|
-
export declare const KENDO_GRID_BODY_EXPORTS: readonly [typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective];
|
|
242
|
+
export declare const KENDO_GRID_BODY_EXPORTS: readonly [typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective];
|
|
242
243
|
/**
|
|
243
244
|
* @hidden
|
|
244
245
|
*
|
|
@@ -250,7 +251,7 @@ export declare const KENDO_GRID_DECLARATIONS: readonly [typeof GridComponent, ty
|
|
|
250
251
|
*
|
|
251
252
|
* Utility array that contains the Grid module exports
|
|
252
253
|
*/
|
|
253
|
-
export declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective];
|
|
254
|
+
export declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective];
|
|
254
255
|
/**
|
|
255
256
|
* @hidden
|
|
256
257
|
*
|
|
@@ -281,4 +282,4 @@ export declare const KENDO_GRID_PDF_EXPORT: readonly [typeof PDFComponent, typeo
|
|
|
281
282
|
* export class AppModule {}
|
|
282
283
|
* ```
|
|
283
284
|
*/
|
|
284
|
-
export declare const KENDO_GRID: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof CSVComponent, typeof CSVCommandDirective, typeof CSVCommandToolbarDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
|
|
285
|
+
export declare const KENDO_GRID: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof RowPinColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof AIAssistantToolbarDirective, typeof GroupCommandToolbarDirective, typeof SelectAllToolbarToolComponent, typeof SmartBoxToolbarToolComponent, typeof GridSmartBoxHistoryItemTemplateDirective, typeof GridSmartBoxPromptSuggestionTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof CSVComponent, typeof CSVCommandDirective, typeof CSVCommandToolbarDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
|