@progress/kendo-vue-grid 8.3.0-develop.2 → 8.3.0-develop.5
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/Grid.d.ts +10 -1
- package/Grid.js +1 -1
- package/Grid.mjs +555 -501
- package/GridNav.d.ts +2 -0
- package/GridNav.js +1 -1
- package/GridNav.mjs +15 -13
- package/GridState.d.ts +6 -0
- package/GridToolbar.d.ts +0 -1
- package/RootGrid.d.ts +7 -2
- package/ScrollMode.d.ts +5 -0
- package/StatusBar.d.ts +15 -6
- package/cells/GridSelectionCell.d.ts +1 -1
- package/cells/GridSelectionCell.js +1 -1
- package/cells/GridSelectionCell.mjs +24 -21
- package/columnMenu/GridColumnMenuSort.d.ts +2 -0
- package/common.d.ts +3 -0
- package/common.js +1 -1
- package/common.mjs +4 -1
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/interfaces/GridCellsSettings.d.ts +4 -0
- package/interfaces/GridProps.d.ts +33 -1
- package/interfaces/GridToolbarProps.d.ts +2 -0
- package/key.d.ts +4 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/paging/GridPagerSettings.d.ts +3 -0
- package/paging/Page.d.ts +5 -0
|
@@ -13,6 +13,8 @@ import { GridFilterCellProps } from './GridFilterCellProps';
|
|
|
13
13
|
import { GridHeaderCellProps } from './GridHeaderCellProps';
|
|
14
14
|
/**
|
|
15
15
|
* Represents the attributes for Grid table cell elements, extending standard HTML td element properties.
|
|
16
|
+
*
|
|
17
|
+
* @hidden
|
|
16
18
|
*/
|
|
17
19
|
export interface GridTdAttributes extends TdHTMLAttributes {
|
|
18
20
|
/**
|
|
@@ -30,6 +32,8 @@ export interface GridTdAttributes extends TdHTMLAttributes {
|
|
|
30
32
|
}
|
|
31
33
|
/**
|
|
32
34
|
* Represents the attributes for Grid header cell elements, extending standard HTML th element properties.
|
|
35
|
+
*
|
|
36
|
+
* @hidden
|
|
33
37
|
*/
|
|
34
38
|
export interface GridThAttributes extends HeaderThElementProps {
|
|
35
39
|
/**
|
|
@@ -12,7 +12,7 @@ import { GridSortChangeEvent, GridFilterChangeEvent, GridPageChangeEvent, GridEx
|
|
|
12
12
|
import { GridContextMenuOptions, GridCellBaseOptions } from '../contextMenu/GridContextMenu';
|
|
13
13
|
import { GridCellProps } from './GridCellProps';
|
|
14
14
|
import { GridSortSettings } from './GridSortSettings';
|
|
15
|
-
import { DetailExpandDescriptor, GridPagerSettings, GroupExpandDescriptor, SearchField, SelectDescriptor } from '@progress/kendo-vue-data-tools';
|
|
15
|
+
import { DetailExpandDescriptor, GridPagerSettings, GroupExpandDescriptor, SearchField, SelectDescriptor, ClipboardSettings, GridClipboardEvent } from '@progress/kendo-vue-data-tools';
|
|
16
16
|
import { GridColumnProps } from '../interfaces/GridColumnProps';
|
|
17
17
|
import { GridFilterOperators } from './GridFilterOperators';
|
|
18
18
|
import { PopupAnimation } from '@progress/kendo-vue-popup';
|
|
@@ -537,6 +537,16 @@ export interface GridProps {
|
|
|
537
537
|
* @default `undefined`
|
|
538
538
|
*/
|
|
539
539
|
size?: 'small' | 'medium' | string;
|
|
540
|
+
/**
|
|
541
|
+
* Sets the `dir` HTML attribute of the Grid wrapper element.
|
|
542
|
+
* Use `'rtl'` to enable right-to-left rendering.
|
|
543
|
+
*
|
|
544
|
+
* @example
|
|
545
|
+
* ```vue
|
|
546
|
+
* <Grid :dir="'rtl'" />
|
|
547
|
+
* ```
|
|
548
|
+
*/
|
|
549
|
+
dir?: string;
|
|
540
550
|
/**
|
|
541
551
|
* Defines the row height and forces an equal height to all rows
|
|
542
552
|
* ([see example]({% slug scrollmmodes_grid %})).
|
|
@@ -665,6 +675,28 @@ export interface GridProps {
|
|
|
665
675
|
* ```
|
|
666
676
|
*/
|
|
667
677
|
onContextmenuitemclick?: (event: GridContextMenuItemClickEvent) => void;
|
|
678
|
+
/**
|
|
679
|
+
* Enables clipboard copy, cut, and paste manipulations. Accepts `ClipboardSettings` or a boolean value.
|
|
680
|
+
*
|
|
681
|
+
* @example
|
|
682
|
+
* ```vue
|
|
683
|
+
* <Grid :clipboard="true" />
|
|
684
|
+
* ```
|
|
685
|
+
*/
|
|
686
|
+
clipboard?: ClipboardSettings | boolean;
|
|
687
|
+
/**
|
|
688
|
+
* Fires when clipboard support is enabled, and one of the actions (e.g., copy) is triggered.
|
|
689
|
+
* Accepts a `GridClipboardEvent` object.
|
|
690
|
+
*
|
|
691
|
+
* @example
|
|
692
|
+
* ```vue
|
|
693
|
+
* <Grid
|
|
694
|
+
* :clipboard="true"
|
|
695
|
+
* @clipboard="handleClipboard"
|
|
696
|
+
* />
|
|
697
|
+
* ```
|
|
698
|
+
*/
|
|
699
|
+
onClipboard?: (event: GridClipboardEvent) => void;
|
|
668
700
|
/**
|
|
669
701
|
* If set to `true`, the user can use dedicated shortcuts to interact with the Grid.
|
|
670
702
|
* By default, navigation is disabled and the Grid content is accessible in the normal tab sequence.
|
package/key.d.ts
CHANGED
|
@@ -5,4 +5,8 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
8
12
|
export declare const KendoKey: unique symbol;
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1778154314,version:"8.3.0-develop.5",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "8.3.0-develop.
|
|
13
|
+
publishDate: 1778154314,
|
|
14
|
+
version: "8.3.0-develop.5",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "8.3.0-develop.
|
|
3
|
+
"version": "8.3.0-develop.5",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"@progress/kendo-data-query": "^1.7.0",
|
|
28
28
|
"@progress/kendo-drawing": "^1.21.1",
|
|
29
29
|
"@progress/kendo-licensing": "^1.7.2",
|
|
30
|
-
"@progress/kendo-vue-animation": "8.3.0-develop.
|
|
31
|
-
"@progress/kendo-vue-buttons": "8.3.0-develop.
|
|
32
|
-
"@progress/kendo-vue-common": "8.3.0-develop.
|
|
33
|
-
"@progress/kendo-vue-data-tools": "8.3.0-develop.
|
|
34
|
-
"@progress/kendo-vue-dateinputs": "8.3.0-develop.
|
|
35
|
-
"@progress/kendo-vue-indicators": "8.3.0-develop.
|
|
36
|
-
"@progress/kendo-vue-dropdowns": "8.3.0-develop.
|
|
37
|
-
"@progress/kendo-vue-inputs": "8.3.0-develop.
|
|
38
|
-
"@progress/kendo-vue-intl": "8.3.0-develop.
|
|
39
|
-
"@progress/kendo-vue-popup": "8.3.0-develop.
|
|
40
|
-
"@progress/kendo-vue-layout": "8.3.0-develop.
|
|
30
|
+
"@progress/kendo-vue-animation": "8.3.0-develop.5",
|
|
31
|
+
"@progress/kendo-vue-buttons": "8.3.0-develop.5",
|
|
32
|
+
"@progress/kendo-vue-common": "8.3.0-develop.5",
|
|
33
|
+
"@progress/kendo-vue-data-tools": "8.3.0-develop.5",
|
|
34
|
+
"@progress/kendo-vue-dateinputs": "8.3.0-develop.5",
|
|
35
|
+
"@progress/kendo-vue-indicators": "8.3.0-develop.5",
|
|
36
|
+
"@progress/kendo-vue-dropdowns": "8.3.0-develop.5",
|
|
37
|
+
"@progress/kendo-vue-inputs": "8.3.0-develop.5",
|
|
38
|
+
"@progress/kendo-vue-intl": "8.3.0-develop.5",
|
|
39
|
+
"@progress/kendo-vue-popup": "8.3.0-develop.5",
|
|
40
|
+
"@progress/kendo-vue-layout": "8.3.0-develop.5",
|
|
41
41
|
"@progress/kendo-svg-icons": "^4.4.0",
|
|
42
42
|
"vue": "^3.0.2"
|
|
43
43
|
},
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"package": {
|
|
59
59
|
"productName": "Kendo UI for Vue",
|
|
60
60
|
"productCode": "KENDOUIVUE",
|
|
61
|
-
"publishDate":
|
|
61
|
+
"publishDate": 1778154314,
|
|
62
62
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
63
63
|
}
|
|
64
64
|
},
|
package/paging/Page.d.ts
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
+
/**
|
|
9
|
+
* Represents the page information.
|
|
10
|
+
*
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
8
13
|
export interface Page {
|
|
9
14
|
skip: number;
|
|
10
15
|
take: number;
|