@progress/kendo-react-grid 7.1.0-develop.9 → 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.
- package/Grid.d.ts +3 -0
- package/NOTICE.txt +11 -18
- package/dist/cdn/js/kendo-react-grid.js +1 -1
- package/index.js +1 -1
- package/index.mjs +938 -917
- package/interfaces/GridProps.d.ts +9 -1
- package/package.json +10 -10
|
@@ -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
|
|
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
|
|
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
|
|
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"
|