@progress/kendo-react-grid 11.1.1-develop.2 → 11.2.0-develop.2
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/dist/cdn/js/kendo-react-grid.js +1 -1
- package/index.d.mts +30 -0
- package/index.d.ts +30 -0
- package/index.js +1 -1
- package/index.mjs +70 -66
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +16 -16
- package/toolbar-tools/GridToolbarSeparator.js +8 -0
- package/toolbar-tools/GridToolbarSeparator.mjs +14 -0
- package/toolbar-tools/GridToolbarSpacer.js +8 -0
- package/toolbar-tools/GridToolbarSpacer.mjs +14 -0
package/index.d.mts
CHANGED
|
@@ -62,6 +62,8 @@ import { TableSelectionChangeEvent } from '@progress/kendo-react-data-tools';
|
|
|
62
62
|
import { TextBoxChangeEvent } from '@progress/kendo-react-inputs';
|
|
63
63
|
import { TextBoxProps } from '@progress/kendo-react-inputs';
|
|
64
64
|
import { ToolbarProps } from '@progress/kendo-react-buttons';
|
|
65
|
+
import { ToolbarSeparatorProps } from '@progress/kendo-react-buttons';
|
|
66
|
+
import { ToolbarSpacerProps } from '@progress/kendo-react-buttons';
|
|
65
67
|
|
|
66
68
|
/**
|
|
67
69
|
* The value of the filter operators displayed in the boolean filter menu.
|
|
@@ -3738,6 +3740,20 @@ export declare interface GridToolbarProps extends ToolbarProps {
|
|
|
3738
3740
|
_ariaControls?: string;
|
|
3739
3741
|
}
|
|
3740
3742
|
|
|
3743
|
+
/**
|
|
3744
|
+
* Represents the GridToolbarSeparator component.
|
|
3745
|
+
*/
|
|
3746
|
+
export declare const GridToolbarSeparator: {
|
|
3747
|
+
(props: GridToolbarSeparatorProps): JSX.Element;
|
|
3748
|
+
displayName: string;
|
|
3749
|
+
};
|
|
3750
|
+
|
|
3751
|
+
/**
|
|
3752
|
+
* Represents the props of KendoReact GridToolbarSeparator component.
|
|
3753
|
+
*/
|
|
3754
|
+
export declare interface GridToolbarSeparatorProps extends ToolbarSeparatorProps {
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3741
3757
|
/**
|
|
3742
3758
|
* Represents the GridToolbarSort component.
|
|
3743
3759
|
*/
|
|
@@ -3787,6 +3803,20 @@ export declare interface GridToolbarSortProps {
|
|
|
3787
3803
|
onCloseMenu?: Function;
|
|
3788
3804
|
}
|
|
3789
3805
|
|
|
3806
|
+
/**
|
|
3807
|
+
* Represents the GridToolbarSpacer component.
|
|
3808
|
+
*/
|
|
3809
|
+
export declare const GridToolbarSpacer: {
|
|
3810
|
+
(props: GridToolbarSpacerProps): JSX.Element;
|
|
3811
|
+
displayName: string;
|
|
3812
|
+
};
|
|
3813
|
+
|
|
3814
|
+
/**
|
|
3815
|
+
* Represents the props of KendoReact GridToolbarSpacer component.
|
|
3816
|
+
*/
|
|
3817
|
+
export declare interface GridToolbarSpacerProps extends ToolbarSpacerProps {
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3790
3820
|
/**
|
|
3791
3821
|
* @hidden
|
|
3792
3822
|
*/
|
package/index.d.ts
CHANGED
|
@@ -62,6 +62,8 @@ import { TableSelectionChangeEvent } from '@progress/kendo-react-data-tools';
|
|
|
62
62
|
import { TextBoxChangeEvent } from '@progress/kendo-react-inputs';
|
|
63
63
|
import { TextBoxProps } from '@progress/kendo-react-inputs';
|
|
64
64
|
import { ToolbarProps } from '@progress/kendo-react-buttons';
|
|
65
|
+
import { ToolbarSeparatorProps } from '@progress/kendo-react-buttons';
|
|
66
|
+
import { ToolbarSpacerProps } from '@progress/kendo-react-buttons';
|
|
65
67
|
|
|
66
68
|
/**
|
|
67
69
|
* The value of the filter operators displayed in the boolean filter menu.
|
|
@@ -3738,6 +3740,20 @@ export declare interface GridToolbarProps extends ToolbarProps {
|
|
|
3738
3740
|
_ariaControls?: string;
|
|
3739
3741
|
}
|
|
3740
3742
|
|
|
3743
|
+
/**
|
|
3744
|
+
* Represents the GridToolbarSeparator component.
|
|
3745
|
+
*/
|
|
3746
|
+
export declare const GridToolbarSeparator: {
|
|
3747
|
+
(props: GridToolbarSeparatorProps): JSX.Element;
|
|
3748
|
+
displayName: string;
|
|
3749
|
+
};
|
|
3750
|
+
|
|
3751
|
+
/**
|
|
3752
|
+
* Represents the props of KendoReact GridToolbarSeparator component.
|
|
3753
|
+
*/
|
|
3754
|
+
export declare interface GridToolbarSeparatorProps extends ToolbarSeparatorProps {
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3741
3757
|
/**
|
|
3742
3758
|
* Represents the GridToolbarSort component.
|
|
3743
3759
|
*/
|
|
@@ -3787,6 +3803,20 @@ export declare interface GridToolbarSortProps {
|
|
|
3787
3803
|
onCloseMenu?: Function;
|
|
3788
3804
|
}
|
|
3789
3805
|
|
|
3806
|
+
/**
|
|
3807
|
+
* Represents the GridToolbarSpacer component.
|
|
3808
|
+
*/
|
|
3809
|
+
export declare const GridToolbarSpacer: {
|
|
3810
|
+
(props: GridToolbarSpacerProps): JSX.Element;
|
|
3811
|
+
displayName: string;
|
|
3812
|
+
};
|
|
3813
|
+
|
|
3814
|
+
/**
|
|
3815
|
+
* Represents the props of KendoReact GridToolbarSpacer component.
|
|
3816
|
+
*/
|
|
3817
|
+
export declare interface GridToolbarSpacerProps extends ToolbarSpacerProps {
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3790
3820
|
/**
|
|
3791
3821
|
* @hidden
|
|
3792
3822
|
*/
|
package/index.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
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./Grid.js"),G=require("./GridColumn.js"),C=require("./columnMenu/GridColumnMenuWrapper.js"),s=require("./columnMenu/GridColumnMenuGroup.js"),l=require("./columnMenu/GridColumnMenuSort.js"),o=require("./columnMenu/GridColumnMenuFilter.js"),c=require("./columnMenu/GridColumnMenuFilterUI.js"),m=require("./columnMenu/GridColumnMenuFilterCell.js"),M=require("./columnMenu/GridColumnMenuCheckboxFilter.js"),p=require("./columnMenu/GridColumnMenuColumnsList.js"),g=require("./columnMenu/GridColumnMenuColumnsChooser.js"),q=require("./cells/datacell/GridCell.js"),S=require("./cells/editcell/GridEditCell.js"),T=require("./cells/groupcell/GridGroupCell.js"),I=require("./cells/hierarchycell/GridHierarchyCell.js"),b=require("./cells/GridFilterCell.js"),F=require("./header/GridHeaderCell.js"),E=require("./cells/selectioncell/GridSelectionCell.js"),h=require("./rows/GridDetailRow.js"),x=require("./rows/GridRow.js"),D=require("./GridToolbar.js"),P=require("./toolbar-tools/GridToolbarSpacer.js"),R=require("./toolbar-tools/GridToolbarSeparator.js"),_=require("./toolbar-tools/GridToolbarCheckboxFilter.js"),B=require("./toolbar-tools/GridToolbarColumnsChooser.js"),N=require("./toolbar-tools/GridToolbarFilter.js"),f=require("./toolbar-tools/GridToolbarSort.js"),L=require("./components/noRecords/GridNoRecords.js"),O=require("./columnMenu/GridColumnMenuItem.js"),y=require("./columnMenu/GridColumnMenuItemContent.js"),w=require("./columnMenu/GridColumnMenuItemGroup.js"),t=require("./constants/index.js"),i=require("@progress/kendo-react-data-tools"),A=require("./drag/CommonDragLogic.js"),r=require("./filterCommon.js"),e=require("./messages/index.js"),n=require("./StatusBar.js"),u=require("./contextMenu/GridContextMenu.js"),d=require("./contextMenu/enums.js"),k=require("./GridSearchBox.js"),v=require("./GridPdfExportButton.js");exports.Grid=a.Grid;exports.GridColumn=G.GridColumn;exports.GridColumnMenuWrapper=C.GridColumnMenuWrapper;exports.GridColumnMenuGroup=s.GridColumnMenuGroup;exports.GridColumnMenuSort=l.GridColumnMenuSort;exports.isColumnMenuSortActive=l.isColumnMenuSortActive;exports.GridColumnMenuFilter=o.GridColumnMenuFilter;exports.filterGroupByField=o.filterGroupByField;exports.isColumnMenuFilterActive=o.isColumnMenuFilterActive;exports.rootFilterOrDefault=o.rootFilterOrDefault;exports.GridColumnMenuFilterUI=c.GridColumnMenuFilterUI;exports.GridColumnMenuFilterCell=m.GridColumnMenuFilterCell;exports.GridColumnMenuCheckboxFilter=M.GridColumnMenuCheckboxFilter;exports.GridColumnMenuColumnsList=p.GridColumnMenuColumnsList;exports.GridColumnMenuColumnsChooser=g.GridColumnMenuColumnsChooser;exports.GridCell=q.GridCell;exports.GridEditCell=S.GridEditCell;exports.GridGroupCell=T.GridGroupCell;exports.GridHierarchyCell=I.GridHierarchyCell;exports.GridFilterCell=b.GridFilterCell;exports.GridHeaderCell=F.GridHeaderCell;exports.GridSelectionCell=E.GridSelectionCell;exports.GridDetailRow=h.GridDetailRow;exports.GridRow=x.GridRow;exports.GridToolbar=D.GridToolbar;exports.GridToolbarSpacer=P.GridToolbarSpacer;exports.GridToolbarSeparator=R.GridToolbarSeparator;exports.GridToolbarCheckboxFilter=_.GridToolbarCheckboxFilter;exports.GridToolbarColumnsChooser=B.GridToolbarColumnsChooser;exports.GridToolbarFilter=N.GridToolbarFilter;exports.GridToolbarSort=f.GridToolbarSort;exports.GridNoRecords=L.GridNoRecords;exports.GridColumnMenuItem=O.GridColumnMenuItem;exports.GridColumnMenuItemContent=y.GridColumnMenuItemContent;exports.GridColumnMenuItemGroup=w.GridColumnMenuItemGroup;exports.GRID_COL_INDEX_ATTRIBUTE=t.GRID_COL_INDEX_ATTRIBUTE;exports.GRID_PREVENT_SELECTION_ELEMENT=t.GRID_PREVENT_SELECTION_ELEMENT;exports.GRID_ROW_INDEX_ATTRIBUTE=t.GRID_ROW_INDEX_ATTRIBUTE;Object.defineProperty(exports,"getSelectedState",{enumerable:!0,get:()=>i.getSelectedState});Object.defineProperty(exports,"getSelectedStateFromKeyDown",{enumerable:!0,get:()=>i.getSelectedStateFromKeyDown});Object.defineProperty(exports,"setSelectedState",{enumerable:!0,get:()=>i.setSelectedState});exports.GridCommonDragLogic=A.CommonDragLogic;exports.booleanFilterValues=r.booleanFilterValues;exports.cellBoolDropdownChange=r.cellBoolDropdownChange;exports.cellInputChange=r.cellInputChange;exports.cellOperatorChange=r.cellOperatorChange;exports.operators=r.operators;exports.gridMessages=e.messages;exports.pagerFirstPage=e.pagerFirstPage;exports.pagerInfo=e.pagerInfo;exports.pagerItemPerPage=e.pagerItemPerPage;exports.pagerLastPage=e.pagerLastPage;exports.pagerNextPage=e.pagerNextPage;exports.pagerPreviousPage=e.pagerPreviousPage;exports.StatusBar=n.StatusBar;exports.getStatusData=n.getStatusData;exports.leafColumns=n.leafColumns;exports.GridContextMenu=u.GridContextMenu;exports.contextMenuItemsMap=u.contextMenuItemsMap;exports.GridContextMenuAnchorPart=d.GridContextMenuAnchorPart;exports.GridContextMenuItemNames=d.GridContextMenuItemNames;exports.GridSearchBox=k.GridSearchBox;exports.GridPdfExportButton=v.GridPdfExportButton;
|
package/index.mjs
CHANGED
|
@@ -9,15 +9,15 @@ import { Grid as e } from "./Grid.mjs";
|
|
|
9
9
|
import { GridColumn as m } from "./GridColumn.mjs";
|
|
10
10
|
import { GridColumnMenuWrapper as i } from "./columnMenu/GridColumnMenuWrapper.mjs";
|
|
11
11
|
import { GridColumnMenuGroup as n } from "./columnMenu/GridColumnMenuGroup.mjs";
|
|
12
|
-
import { GridColumnMenuSort as
|
|
13
|
-
import { GridColumnMenuFilter as f, filterGroupByField as
|
|
12
|
+
import { GridColumnMenuSort as x, isColumnMenuSortActive as u } from "./columnMenu/GridColumnMenuSort.mjs";
|
|
13
|
+
import { GridColumnMenuFilter as f, filterGroupByField as G, isColumnMenuFilterActive as C, rootFilterOrDefault as s } from "./columnMenu/GridColumnMenuFilter.mjs";
|
|
14
14
|
import { GridColumnMenuFilterUI as M } from "./columnMenu/GridColumnMenuFilterUI.mjs";
|
|
15
15
|
import { GridColumnMenuFilterCell as I } from "./columnMenu/GridColumnMenuFilterCell.mjs";
|
|
16
16
|
import { GridColumnMenuCheckboxFilter as T } from "./columnMenu/GridColumnMenuCheckboxFilter.mjs";
|
|
17
17
|
import { GridColumnMenuColumnsList as F } from "./columnMenu/GridColumnMenuColumnsList.mjs";
|
|
18
|
-
import { GridColumnMenuColumnsChooser as
|
|
19
|
-
import { GridCell as
|
|
20
|
-
import { GridEditCell as
|
|
18
|
+
import { GridColumnMenuColumnsChooser as b } from "./columnMenu/GridColumnMenuColumnsChooser.mjs";
|
|
19
|
+
import { GridCell as P } from "./cells/datacell/GridCell.mjs";
|
|
20
|
+
import { GridEditCell as _ } from "./cells/editcell/GridEditCell.mjs";
|
|
21
21
|
import { GridGroupCell as B } from "./cells/groupcell/GridGroupCell.mjs";
|
|
22
22
|
import { GridHierarchyCell as A } from "./cells/hierarchycell/GridHierarchyCell.mjs";
|
|
23
23
|
import { GridFilterCell as w } from "./cells/GridFilterCell.mjs";
|
|
@@ -26,84 +26,88 @@ import { GridSelectionCell as k } from "./cells/selectioncell/GridSelectionCell.
|
|
|
26
26
|
import { GridDetailRow as V } from "./rows/GridDetailRow.mjs";
|
|
27
27
|
import { GridRow as X } from "./rows/GridRow.mjs";
|
|
28
28
|
import { GridToolbar as j } from "./GridToolbar.mjs";
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
29
|
+
import { GridToolbarSpacer as z } from "./toolbar-tools/GridToolbarSpacer.mjs";
|
|
30
|
+
import { GridToolbarSeparator as Q } from "./toolbar-tools/GridToolbarSeparator.mjs";
|
|
31
|
+
import { GridToolbarCheckboxFilter as Z } from "./toolbar-tools/GridToolbarCheckboxFilter.mjs";
|
|
32
|
+
import { GridToolbarColumnsChooser as rr } from "./toolbar-tools/GridToolbarColumnsChooser.mjs";
|
|
33
|
+
import { GridToolbarFilter as er } from "./toolbar-tools/GridToolbarFilter.mjs";
|
|
34
|
+
import { GridToolbarSort as mr } from "./toolbar-tools/GridToolbarSort.mjs";
|
|
35
|
+
import { GridNoRecords as ir } from "./components/noRecords/GridNoRecords.mjs";
|
|
36
|
+
import { GridColumnMenuItem as nr } from "./columnMenu/GridColumnMenuItem.mjs";
|
|
37
|
+
import { GridColumnMenuItemContent as xr } from "./columnMenu/GridColumnMenuItemContent.mjs";
|
|
38
|
+
import { GridColumnMenuItemGroup as dr } from "./columnMenu/GridColumnMenuItemGroup.mjs";
|
|
39
|
+
import { GRID_COL_INDEX_ATTRIBUTE as Gr, GRID_PREVENT_SELECTION_ELEMENT as Cr, GRID_ROW_INDEX_ATTRIBUTE as sr } from "./constants/index.mjs";
|
|
40
|
+
import { getSelectedState as Mr, getSelectedStateFromKeyDown as cr, setSelectedState as Ir } from "@progress/kendo-react-data-tools";
|
|
41
|
+
import { CommonDragLogic as Tr } from "./drag/CommonDragLogic.mjs";
|
|
42
|
+
import { booleanFilterValues as Fr, cellBoolDropdownChange as Dr, cellInputChange as br, cellOperatorChange as hr, operators as Pr } from "./filterCommon.mjs";
|
|
43
|
+
import { messages as _r, pagerFirstPage as Nr, pagerInfo as Br, pagerItemPerPage as Lr, pagerLastPage as Ar, pagerNextPage as Or, pagerPreviousPage as wr } from "./messages/index.mjs";
|
|
44
|
+
import { StatusBar as yr, getStatusData as Ur, leafColumns as kr } from "./StatusBar.mjs";
|
|
45
|
+
import { GridContextMenu as Vr, contextMenuItemsMap as Wr } from "./contextMenu/GridContextMenu.mjs";
|
|
46
|
+
import { GridContextMenuAnchorPart as Kr, GridContextMenuItemNames as jr } from "./contextMenu/enums.mjs";
|
|
47
|
+
import { GridSearchBox as zr } from "./GridSearchBox.mjs";
|
|
48
|
+
import { GridPdfExportButton as Qr } from "./GridPdfExportButton.mjs";
|
|
47
49
|
export {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
50
|
+
Gr as GRID_COL_INDEX_ATTRIBUTE,
|
|
51
|
+
Cr as GRID_PREVENT_SELECTION_ELEMENT,
|
|
52
|
+
sr as GRID_ROW_INDEX_ATTRIBUTE,
|
|
51
53
|
e as Grid,
|
|
52
|
-
|
|
54
|
+
P as GridCell,
|
|
53
55
|
m as GridColumn,
|
|
54
56
|
T as GridColumnMenuCheckboxFilter,
|
|
55
|
-
|
|
57
|
+
b as GridColumnMenuColumnsChooser,
|
|
56
58
|
F as GridColumnMenuColumnsList,
|
|
57
59
|
f as GridColumnMenuFilter,
|
|
58
60
|
I as GridColumnMenuFilterCell,
|
|
59
61
|
M as GridColumnMenuFilterUI,
|
|
60
62
|
n as GridColumnMenuGroup,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
nr as GridColumnMenuItem,
|
|
64
|
+
xr as GridColumnMenuItemContent,
|
|
65
|
+
dr as GridColumnMenuItemGroup,
|
|
66
|
+
x as GridColumnMenuSort,
|
|
65
67
|
i as GridColumnMenuWrapper,
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
Tr as GridCommonDragLogic,
|
|
69
|
+
Vr as GridContextMenu,
|
|
70
|
+
Kr as GridContextMenuAnchorPart,
|
|
71
|
+
jr as GridContextMenuItemNames,
|
|
70
72
|
V as GridDetailRow,
|
|
71
|
-
|
|
73
|
+
_ as GridEditCell,
|
|
72
74
|
w as GridFilterCell,
|
|
73
75
|
B as GridGroupCell,
|
|
74
76
|
y as GridHeaderCell,
|
|
75
77
|
A as GridHierarchyCell,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
+
ir as GridNoRecords,
|
|
79
|
+
Qr as GridPdfExportButton,
|
|
78
80
|
X as GridRow,
|
|
79
|
-
|
|
81
|
+
zr as GridSearchBox,
|
|
80
82
|
k as GridSelectionCell,
|
|
81
83
|
j as GridToolbar,
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
84
|
+
Z as GridToolbarCheckboxFilter,
|
|
85
|
+
rr as GridToolbarColumnsChooser,
|
|
86
|
+
er as GridToolbarFilter,
|
|
87
|
+
Q as GridToolbarSeparator,
|
|
88
|
+
mr as GridToolbarSort,
|
|
89
|
+
z as GridToolbarSpacer,
|
|
90
|
+
yr as StatusBar,
|
|
91
|
+
Fr as booleanFilterValues,
|
|
92
|
+
Dr as cellBoolDropdownChange,
|
|
93
|
+
br as cellInputChange,
|
|
94
|
+
hr as cellOperatorChange,
|
|
95
|
+
Wr as contextMenuItemsMap,
|
|
96
|
+
G as filterGroupByField,
|
|
97
|
+
Mr as getSelectedState,
|
|
98
|
+
cr as getSelectedStateFromKeyDown,
|
|
99
|
+
Ur as getStatusData,
|
|
100
|
+
_r as gridMessages,
|
|
101
|
+
C as isColumnMenuFilterActive,
|
|
102
|
+
u as isColumnMenuSortActive,
|
|
103
|
+
kr as leafColumns,
|
|
104
|
+
Pr as operators,
|
|
105
|
+
Nr as pagerFirstPage,
|
|
106
|
+
Br as pagerInfo,
|
|
107
|
+
Lr as pagerItemPerPage,
|
|
108
|
+
Ar as pagerLastPage,
|
|
109
|
+
Or as pagerNextPage,
|
|
110
|
+
wr as pagerPreviousPage,
|
|
107
111
|
s as rootFilterOrDefault,
|
|
108
|
-
|
|
112
|
+
Ir as setSelectedState
|
|
109
113
|
};
|
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-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1750161540,version:"11.2.0-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "11.
|
|
13
|
+
publishDate: 1750161540,
|
|
14
|
+
version: "11.2.0-develop.2",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-grid",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.2.0-develop.2",
|
|
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",
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"@progress/kendo-data-query": "^1.0.0",
|
|
29
29
|
"@progress/kendo-drawing": "^1.21.2",
|
|
30
30
|
"@progress/kendo-licensing": "^1.6.0",
|
|
31
|
-
"@progress/kendo-react-animation": "11.
|
|
32
|
-
"@progress/kendo-react-buttons": "11.
|
|
33
|
-
"@progress/kendo-react-common": "11.
|
|
34
|
-
"@progress/kendo-react-data-tools": "11.
|
|
35
|
-
"@progress/kendo-react-dateinputs": "11.
|
|
36
|
-
"@progress/kendo-react-indicators": "11.
|
|
37
|
-
"@progress/kendo-react-form": "11.
|
|
38
|
-
"@progress/kendo-react-labels": "11.
|
|
39
|
-
"@progress/kendo-react-dialogs": "11.
|
|
40
|
-
"@progress/kendo-react-dropdowns": "11.
|
|
41
|
-
"@progress/kendo-react-inputs": "11.
|
|
42
|
-
"@progress/kendo-react-intl": "11.
|
|
43
|
-
"@progress/kendo-react-popup": "11.
|
|
44
|
-
"@progress/kendo-react-layout": "11.
|
|
31
|
+
"@progress/kendo-react-animation": "11.2.0-develop.2",
|
|
32
|
+
"@progress/kendo-react-buttons": "11.2.0-develop.2",
|
|
33
|
+
"@progress/kendo-react-common": "11.2.0-develop.2",
|
|
34
|
+
"@progress/kendo-react-data-tools": "11.2.0-develop.2",
|
|
35
|
+
"@progress/kendo-react-dateinputs": "11.2.0-develop.2",
|
|
36
|
+
"@progress/kendo-react-indicators": "11.2.0-develop.2",
|
|
37
|
+
"@progress/kendo-react-form": "11.2.0-develop.2",
|
|
38
|
+
"@progress/kendo-react-labels": "11.2.0-develop.2",
|
|
39
|
+
"@progress/kendo-react-dialogs": "11.2.0-develop.2",
|
|
40
|
+
"@progress/kendo-react-dropdowns": "11.2.0-develop.2",
|
|
41
|
+
"@progress/kendo-react-inputs": "11.2.0-develop.2",
|
|
42
|
+
"@progress/kendo-react-intl": "11.2.0-develop.2",
|
|
43
|
+
"@progress/kendo-react-popup": "11.2.0-develop.2",
|
|
44
|
+
"@progress/kendo-react-layout": "11.2.0-develop.2",
|
|
45
45
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
46
46
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
47
47
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"package": {
|
|
146
146
|
"productName": "KendoReact",
|
|
147
147
|
"productCode": "KENDOUIREACT",
|
|
148
|
-
"publishDate":
|
|
148
|
+
"publishDate": 1750161540,
|
|
149
149
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
150
150
|
}
|
|
151
151
|
},
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react"),c=require("@progress/kendo-react-buttons");function l(e){const r=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const t in e)if(t!=="default"){const o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(r,t,o.get?o:{enumerable:!0,get:()=>e[t]})}}return r.default=e,Object.freeze(r)}const i=l(n),a=e=>i.createElement(c.ToolbarSeparator,{...e});a.displayName="KendoReactGridToolbarSeparator";exports.GridToolbarSeparator=a;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import * as o from "react";
|
|
9
|
+
import { ToolbarSeparator as a } from "@progress/kendo-react-buttons";
|
|
10
|
+
const e = (r) => /* @__PURE__ */ o.createElement(a, { ...r });
|
|
11
|
+
e.displayName = "KendoReactGridToolbarSeparator";
|
|
12
|
+
export {
|
|
13
|
+
e as GridToolbarSeparator
|
|
14
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("react"),n=require("@progress/kendo-react-buttons");function l(e){const r=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const t in e)if(t!=="default"){const o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(r,t,o.get?o:{enumerable:!0,get:()=>e[t]})}}return r.default=e,Object.freeze(r)}const i=l(c),a=e=>i.createElement(n.ToolbarSpacer,{...e});a.displayName="KendoReactGridToolbarSpacer";exports.GridToolbarSpacer=a;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import * as e from "react";
|
|
9
|
+
import { ToolbarSpacer as o } from "@progress/kendo-react-buttons";
|
|
10
|
+
const a = (r) => /* @__PURE__ */ e.createElement(o, { ...r });
|
|
11
|
+
a.displayName = "KendoReactGridToolbarSpacer";
|
|
12
|
+
export {
|
|
13
|
+
a as GridToolbarSpacer
|
|
14
|
+
};
|