@progress/kendo-angular-grid 23.0.1 → 23.0.2-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/columns/column-base.d.ts +3 -0
- package/editing/form/models.d.ts +3 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +11 -1
- package/grid.component.d.ts +3 -0
- package/navigation/focusable.directive.d.ts +1 -0
- package/package-metadata.mjs +2 -2
- package/package.json +24 -24
- package/rendering/toolbar/toolbar-focusable.directive.d.ts +3 -0
- package/schematics/ngAdd/index.js +7 -7
package/columns/column-base.d.ts
CHANGED
|
@@ -168,6 +168,9 @@ export declare class ColumnBase implements AfterViewInit {
|
|
|
168
168
|
/**
|
|
169
169
|
* Sets the `role` attribute for the table cells (excluding footer and header) of the column.
|
|
170
170
|
* @default "gridcell"
|
|
171
|
+
*
|
|
172
|
+
* @remarks
|
|
173
|
+
* This property is related to accessibility.
|
|
171
174
|
*/
|
|
172
175
|
tableCellsRole: string;
|
|
173
176
|
/**
|
package/editing/form/models.d.ts
CHANGED
|
@@ -120,6 +120,9 @@ export interface FormDialogSettings {
|
|
|
120
120
|
animation?: boolean | DialogAnimation;
|
|
121
121
|
/**
|
|
122
122
|
* Sets the HTML attributes of the Dialog wrapper element. Accepts string key-value pairs.
|
|
123
|
+
*
|
|
124
|
+
* @remarks
|
|
125
|
+
* This option is related to accessibility.
|
|
123
126
|
*/
|
|
124
127
|
htmlAttributes?: {
|
|
125
128
|
[key: string]: string;
|
|
@@ -912,6 +912,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
912
912
|
* </kendo-grid>
|
|
913
913
|
* ```
|
|
914
914
|
* @remarks
|
|
915
|
+
* This directive is related to accessibility.
|
|
915
916
|
* Applied to: {@link ButtonComponent}, {@link TextBoxComponent}, {@link NumericTextBoxComponent}, {@link DateInputComponent}, {@link DatePickerComponent}, {@link DateTimePicker}, {@link TextAreaComponent}, {@link ColorPickerComponent}, {@link DropDownListComponent}, {@link ComboBoxComponent}, {@link AutoCompleteComponent}.
|
|
916
917
|
*/
|
|
917
918
|
class FocusableDirective {
|
|
@@ -2399,6 +2400,9 @@ class ColumnBase {
|
|
|
2399
2400
|
/**
|
|
2400
2401
|
* Sets the `role` attribute for the table cells (excluding footer and header) of the column.
|
|
2401
2402
|
* @default "gridcell"
|
|
2403
|
+
*
|
|
2404
|
+
* @remarks
|
|
2405
|
+
* This property is related to accessibility.
|
|
2402
2406
|
*/
|
|
2403
2407
|
tableCellsRole = 'gridcell';
|
|
2404
2408
|
/**
|
|
@@ -24136,7 +24140,7 @@ const packageMetadata = {
|
|
|
24136
24140
|
productCode: 'KENDOUIANGULAR',
|
|
24137
24141
|
productCodes: ['KENDOUIANGULAR'],
|
|
24138
24142
|
publishDate: 0,
|
|
24139
|
-
version: '23.0.1',
|
|
24143
|
+
version: '23.0.2-develop.1',
|
|
24140
24144
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
24141
24145
|
};
|
|
24142
24146
|
|
|
@@ -32453,6 +32457,9 @@ class GridComponent {
|
|
|
32453
32457
|
/**
|
|
32454
32458
|
* By default, navigation is enabled. To disable, set to `false`.
|
|
32455
32459
|
* To enable navigation for specific sections, provide a [`GridNavigableSection`](https://www.telerik.com/kendo-angular-ui/components/grid/api/gridnavigablesection).
|
|
32460
|
+
*
|
|
32461
|
+
* @remarks
|
|
32462
|
+
* This property is related to accessibility.
|
|
32456
32463
|
*/
|
|
32457
32464
|
set navigable(value) {
|
|
32458
32465
|
if (typeof value === 'boolean') {
|
|
@@ -37992,6 +37999,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
37992
37999
|
* <button kendoGridToolbarFocusable>Button</button>
|
|
37993
38000
|
* </kendo-toolbar>
|
|
37994
38001
|
* ```
|
|
38002
|
+
*
|
|
38003
|
+
* @remarks
|
|
38004
|
+
* This directive is related to accessibility.
|
|
37995
38005
|
*/
|
|
37996
38006
|
class GridToolbarFocusableDirective {
|
|
37997
38007
|
host;
|
package/grid.component.d.ts
CHANGED
|
@@ -356,6 +356,9 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
356
356
|
/**
|
|
357
357
|
* By default, navigation is enabled. To disable, set to `false`.
|
|
358
358
|
* To enable navigation for specific sections, provide a [`GridNavigableSection`](https://www.telerik.com/kendo-angular-ui/components/grid/api/gridnavigablesection).
|
|
359
|
+
*
|
|
360
|
+
* @remarks
|
|
361
|
+
* This property is related to accessibility.
|
|
359
362
|
*/
|
|
360
363
|
set navigable(value: GridNavigableSettings);
|
|
361
364
|
get navigable(): GridNavigableSettings;
|
|
@@ -24,6 +24,7 @@ import * as i0 from "@angular/core";
|
|
|
24
24
|
* </kendo-grid>
|
|
25
25
|
* ```
|
|
26
26
|
* @remarks
|
|
27
|
+
* This directive is related to accessibility.
|
|
27
28
|
* Applied to: {@link ButtonComponent}, {@link TextBoxComponent}, {@link NumericTextBoxComponent}, {@link DateInputComponent}, {@link DatePickerComponent}, {@link DateTimePicker}, {@link TextAreaComponent}, {@link ColorPickerComponent}, {@link DropDownListComponent}, {@link ComboBoxComponent}, {@link AutoCompleteComponent}.
|
|
28
29
|
*/
|
|
29
30
|
export declare class FocusableDirective implements FocusableElement, AfterViewInit, OnDestroy {
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.1",
|
|
10
|
+
"publishDate": 1771334906,
|
|
11
|
+
"version": "23.0.2-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-grid",
|
|
3
|
-
"version": "23.0.1",
|
|
3
|
+
"version": "23.0.2-develop.1",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"package": {
|
|
74
74
|
"productName": "Kendo UI for Angular",
|
|
75
75
|
"productCode": "KENDOUIANGULAR",
|
|
76
|
-
"publishDate":
|
|
76
|
+
"publishDate": 1771334906,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -86,32 +86,32 @@
|
|
|
86
86
|
"@progress/kendo-data-query": "^1.7.3",
|
|
87
87
|
"@progress/kendo-drawing": "^1.24.0",
|
|
88
88
|
"@progress/kendo-licensing": "^1.10.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "23.0.1",
|
|
90
|
-
"@progress/kendo-angular-common": "23.0.1",
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "23.0.1",
|
|
92
|
-
"@progress/kendo-angular-layout": "23.0.1",
|
|
93
|
-
"@progress/kendo-angular-navigation": "23.0.1",
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "23.0.1",
|
|
95
|
-
"@progress/kendo-angular-excel-export": "23.0.1",
|
|
96
|
-
"@progress/kendo-angular-icons": "23.0.1",
|
|
97
|
-
"@progress/kendo-angular-indicators": "23.0.1",
|
|
98
|
-
"@progress/kendo-angular-inputs": "23.0.1",
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "23.0.1",
|
|
100
|
-
"@progress/kendo-angular-intl": "23.0.1",
|
|
101
|
-
"@progress/kendo-angular-l10n": "23.0.1",
|
|
102
|
-
"@progress/kendo-angular-label": "23.0.1",
|
|
103
|
-
"@progress/kendo-angular-menu": "23.0.1",
|
|
104
|
-
"@progress/kendo-angular-pager": "23.0.1",
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "23.0.1",
|
|
106
|
-
"@progress/kendo-angular-popup": "23.0.1",
|
|
107
|
-
"@progress/kendo-angular-toolbar": "23.0.1",
|
|
108
|
-
"@progress/kendo-angular-upload": "23.0.1",
|
|
109
|
-
"@progress/kendo-angular-utils": "23.0.1",
|
|
89
|
+
"@progress/kendo-angular-buttons": "23.0.2-develop.1",
|
|
90
|
+
"@progress/kendo-angular-common": "23.0.2-develop.1",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "23.0.2-develop.1",
|
|
92
|
+
"@progress/kendo-angular-layout": "23.0.2-develop.1",
|
|
93
|
+
"@progress/kendo-angular-navigation": "23.0.2-develop.1",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "23.0.2-develop.1",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "23.0.2-develop.1",
|
|
96
|
+
"@progress/kendo-angular-icons": "23.0.2-develop.1",
|
|
97
|
+
"@progress/kendo-angular-indicators": "23.0.2-develop.1",
|
|
98
|
+
"@progress/kendo-angular-inputs": "23.0.2-develop.1",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "23.0.2-develop.1",
|
|
100
|
+
"@progress/kendo-angular-intl": "23.0.2-develop.1",
|
|
101
|
+
"@progress/kendo-angular-l10n": "23.0.2-develop.1",
|
|
102
|
+
"@progress/kendo-angular-label": "23.0.2-develop.1",
|
|
103
|
+
"@progress/kendo-angular-menu": "23.0.2-develop.1",
|
|
104
|
+
"@progress/kendo-angular-pager": "23.0.2-develop.1",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "23.0.2-develop.1",
|
|
106
|
+
"@progress/kendo-angular-popup": "23.0.2-develop.1",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "23.0.2-develop.1",
|
|
108
|
+
"@progress/kendo-angular-upload": "23.0.2-develop.1",
|
|
109
|
+
"@progress/kendo-angular-utils": "23.0.2-develop.1",
|
|
110
110
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"tslib": "^2.3.1",
|
|
114
|
-
"@progress/kendo-angular-schematics": "23.0.1",
|
|
114
|
+
"@progress/kendo-angular-schematics": "23.0.2-develop.1",
|
|
115
115
|
"@progress/kendo-common": "^1.0.1",
|
|
116
116
|
"@progress/kendo-file-saver": "^1.0.0",
|
|
117
117
|
"@progress/kendo-csv": "^1.0.0"
|
|
@@ -17,6 +17,9 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* <button kendoGridToolbarFocusable>Button</button>
|
|
18
18
|
* </kendo-toolbar>
|
|
19
19
|
* ```
|
|
20
|
+
*
|
|
21
|
+
* @remarks
|
|
22
|
+
* This directive is related to accessibility.
|
|
20
23
|
*/
|
|
21
24
|
export declare class GridToolbarFocusableDirective {
|
|
22
25
|
private host;
|
|
@@ -9,19 +9,19 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '23.0.1',
|
|
13
|
-
'@progress/kendo-angular-navigation': '23.0.1',
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.0.2-develop.1',
|
|
13
|
+
'@progress/kendo-angular-navigation': '23.0.2-develop.1',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '23.0.1',
|
|
15
|
+
'@progress/kendo-angular-dialog': '23.0.2-develop.1',
|
|
16
16
|
// peer dependency of kendo-angular-icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
18
18
|
// peer dependency of kendo-angular-layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '23.0.1',
|
|
19
|
+
'@progress/kendo-angular-progressbar': '23.0.2-develop.1',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '23.0.1',
|
|
21
|
+
'@progress/kendo-angular-indicators': '23.0.2-develop.1',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '23.0.1',
|
|
24
|
-
'@progress/kendo-angular-upload': '23.0.1'
|
|
23
|
+
'@progress/kendo-angular-menu': '23.0.2-develop.1',
|
|
24
|
+
'@progress/kendo-angular-upload': '23.0.2-develop.1'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|