@progress/kendo-react-grid 7.1.0-develop.8 → 7.1.0

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.
@@ -17,7 +17,7 @@ import { GridDetailRowProps } from '../interfaces/GridDetailRowProps';
17
17
  import { GridColumnMenuProps } from '../interfaces/GridColumnMenuProps';
18
18
  import { GridFilterOperators } from './GridFilterOperators';
19
19
  import { GridSelectableSettings } from './GridSelectableSettings';
20
- import { PagerProps } from '@progress/kendo-react-data-tools';
20
+ import { ClipboardSettings, ClipboardDataEvent, PagerProps } from '@progress/kendo-react-data-tools';
21
21
  import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
22
22
  import { GridCellsSettings } from './GridCellsSettings';
23
23
  /**
@@ -45,6 +45,14 @@ export interface GridProps extends KendoReactComponentBaseProps {
45
45
  * Enables the sorting for the columns with their `field` option set ([see example]({% slug sorting_grid %})).
46
46
  */
47
47
  sortable?: GridSortSettings;
48
+ /**
49
+ * When set enables the clipboard copy, cut and paste manipulations.
50
+ */
51
+ clipboard?: ClipboardSettings | boolean;
52
+ /**
53
+ * Fires when clipboard support is enabled and the one of the actions 'copy'.
54
+ */
55
+ onClipboard?: (event: ClipboardDataEvent) => void;
48
56
  /**
49
57
  * Fires when the sorting of the Grid is changed ([see example]({% slug sorting_grid %})). You have to handle the event yourself and sort the data.
50
58
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-grid",
3
- "version": "7.1.0-develop.8",
3
+ "version": "7.1.0",
4
4
  "description": "React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -25,15 +25,15 @@
25
25
  "@progress/kendo-data-query": "^1.0.0",
26
26
  "@progress/kendo-drawing": "^1.19.0",
27
27
  "@progress/kendo-licensing": "^1.3.4",
28
- "@progress/kendo-react-animation": "7.1.0-develop.8",
29
- "@progress/kendo-react-buttons": "7.1.0-develop.8",
30
- "@progress/kendo-react-common": "7.1.0-develop.8",
31
- "@progress/kendo-react-data-tools": "7.1.0-develop.8",
32
- "@progress/kendo-react-dateinputs": "7.1.0-develop.8",
33
- "@progress/kendo-react-dropdowns": "7.1.0-develop.8",
34
- "@progress/kendo-react-inputs": "7.1.0-develop.8",
35
- "@progress/kendo-react-intl": "7.1.0-develop.8",
36
- "@progress/kendo-react-popup": "7.1.0-develop.8",
28
+ "@progress/kendo-react-animation": "7.1.0",
29
+ "@progress/kendo-react-buttons": "7.1.0",
30
+ "@progress/kendo-react-common": "7.1.0",
31
+ "@progress/kendo-react-data-tools": "7.1.0",
32
+ "@progress/kendo-react-dateinputs": "7.1.0",
33
+ "@progress/kendo-react-dropdowns": "7.1.0",
34
+ "@progress/kendo-react-inputs": "7.1.0",
35
+ "@progress/kendo-react-intl": "7.1.0",
36
+ "@progress/kendo-react-popup": "7.1.0",
37
37
  "@progress/kendo-svg-icons": "^2.1.0",
38
38
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
39
39
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
@@ -34,7 +34,7 @@ export type GridPagerType = 'numeric' | 'input';
34
34
  * </Grid>
35
35
  * ```
36
36
  */
37
- export type GridPagerSettings = {
37
+ export interface GridPagerSettings {
38
38
  /**
39
39
  * Sets the selected value of the page size Dropdownlist.
40
40
  * It is useful when the selected value could also be a string not only a number.
@@ -64,7 +64,7 @@ export type GridPagerSettings = {
64
64
  * Defines if the pager will be responsive. Defaults to `true`.
65
65
  */
66
66
  responsive?: boolean;
67
- };
67
+ }
68
68
  /**
69
69
  * @hidden
70
70
  */