@progress/kendo-vue-grid 8.3.0-develop.2 → 8.3.0-develop.3

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.
@@ -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.
@@ -7,6 +7,8 @@
7
7
  */
8
8
  /**
9
9
  * The props of the GridToolbarProps component.
10
+ *
11
+ * @hidden
10
12
  */
11
13
  export interface GridToolbarProps {
12
14
  /**
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;
@@ -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: 1776959083,version:"8.3.0-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/"};exports.packageMetadata=e;
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: 1776960218,version:"8.3.0-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1776959083,
14
- version: "8.3.0-develop.2",
13
+ publishDate: 1776960218,
14
+ version: "8.3.0-develop.3",
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.2",
3
+ "version": "8.3.0-develop.3",
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.2",
31
- "@progress/kendo-vue-buttons": "8.3.0-develop.2",
32
- "@progress/kendo-vue-common": "8.3.0-develop.2",
33
- "@progress/kendo-vue-data-tools": "8.3.0-develop.2",
34
- "@progress/kendo-vue-dateinputs": "8.3.0-develop.2",
35
- "@progress/kendo-vue-indicators": "8.3.0-develop.2",
36
- "@progress/kendo-vue-dropdowns": "8.3.0-develop.2",
37
- "@progress/kendo-vue-inputs": "8.3.0-develop.2",
38
- "@progress/kendo-vue-intl": "8.3.0-develop.2",
39
- "@progress/kendo-vue-popup": "8.3.0-develop.2",
40
- "@progress/kendo-vue-layout": "8.3.0-develop.2",
30
+ "@progress/kendo-vue-animation": "8.3.0-develop.3",
31
+ "@progress/kendo-vue-buttons": "8.3.0-develop.3",
32
+ "@progress/kendo-vue-common": "8.3.0-develop.3",
33
+ "@progress/kendo-vue-data-tools": "8.3.0-develop.3",
34
+ "@progress/kendo-vue-dateinputs": "8.3.0-develop.3",
35
+ "@progress/kendo-vue-indicators": "8.3.0-develop.3",
36
+ "@progress/kendo-vue-dropdowns": "8.3.0-develop.3",
37
+ "@progress/kendo-vue-inputs": "8.3.0-develop.3",
38
+ "@progress/kendo-vue-intl": "8.3.0-develop.3",
39
+ "@progress/kendo-vue-popup": "8.3.0-develop.3",
40
+ "@progress/kendo-vue-layout": "8.3.0-develop.3",
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": 1776959083,
61
+ "publishDate": 1776960218,
62
62
  "licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/"
63
63
  }
64
64
  },
@@ -18,4 +18,7 @@ export interface GridPagerSettings {
18
18
  adaptiveTitle?: string;
19
19
  navigatable?: boolean;
20
20
  }
21
+ /**
22
+ * @hidden
23
+ */
21
24
  export declare const normalize: (settings: any) => any;
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;