@progress/kendo-react-grid 10.2.0 → 10.3.0-develop.1

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/index.d.mts CHANGED
@@ -14,9 +14,11 @@ import { ComponentType } from 'react';
14
14
  import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
15
15
  import { DataResult } from '@progress/kendo-data-query';
16
16
  import { DetailExpandDescriptor } from '@progress/kendo-react-data-tools';
17
+ import { DialogProps } from '@progress/kendo-react-dialogs';
17
18
  import { DragClue } from '@progress/kendo-react-data-tools';
18
19
  import { DropClue } from '@progress/kendo-react-data-tools';
19
20
  import { EditDescriptor } from '@progress/kendo-react-data-tools';
21
+ import { FieldProps } from '@progress/kendo-react-form';
20
22
  import { FilterOperator } from '@progress/kendo-react-data-tools';
21
23
  import { getSelectedState } from '@progress/kendo-react-data-tools';
22
24
  import { getSelectedStateFromKeyDown } from '@progress/kendo-react-data-tools';
@@ -1121,6 +1123,20 @@ export declare interface GridColumnProps extends Omit<ColumnBaseProps, 'cell'> {
1121
1123
  * @default 'text'
1122
1124
  */
1123
1125
  editor?: GridDataType;
1126
+ /**
1127
+ * The validation method for the edit field when editting is in mode `dialog`.
1128
+ *
1129
+ * The method arguments are:
1130
+ *
1131
+ * * value - The current value of the field.
1132
+ * * valueGetter - Function which can be used to get other fields value.
1133
+ * Usable when validator depends on more than one field. Supports field paths.
1134
+ * * fieldProps - Props of the Field component. Currently contains only the `name` prop.
1135
+ * Usable when one validator is used across multiple fields.
1136
+ *
1137
+ * Returns `string` to signify error or `undefined` to signify validation success.
1138
+ */
1139
+ validator?: FieldProps['validator'];
1124
1140
  /**
1125
1141
  * Overrides the default (three vertical dots) column menu icon or the icon set through the ([`columnMenuIcon`]({% slug api_grid_gridprops %}#toc-columnmenuicon)) property.
1126
1142
  *
@@ -1696,6 +1712,28 @@ export declare interface GridEditChangeEvent extends GridEvent {
1696
1712
  edit: EditDescriptor;
1697
1713
  }
1698
1714
 
1715
+ /**
1716
+ * Represents the props of the KendoReact Grid Edit Dialog component.
1717
+ */
1718
+ export declare type GridEditDialogProps = DialogProps & {
1719
+ /**
1720
+ * The columns of the Grid.
1721
+ */
1722
+ columns?: GridColumnProps[];
1723
+ /**
1724
+ * The data item that is currently being edited.
1725
+ */
1726
+ dataItem?: any;
1727
+ /**
1728
+ * The method that is called when the user submits the edit form.
1729
+ */
1730
+ onSubmit?: (newDataItem: any, event?: React.SyntheticEvent<any>) => void;
1731
+ /**
1732
+ * The method that is called when the user cancels the edit form.
1733
+ */
1734
+ onCancel?: (event?: React.SyntheticEvent<any>) => void;
1735
+ };
1736
+
1699
1737
  /**
1700
1738
  * Represents the base event object of the Grid.
1701
1739
  */
@@ -2124,6 +2162,9 @@ export declare const gridMessages: {
2124
2162
  "grid.searchPlaceholder": string;
2125
2163
  "grid.searchboxPlaceholder": string;
2126
2164
  "grid.filterCheckAll": string;
2165
+ "grid.editDialogTitle": string;
2166
+ "grid.editDialogSaveButtonTitle": string;
2167
+ "grid.editDialogCancelButtonTitle": string;
2127
2168
  "grid.filterChooseOperator": string;
2128
2169
  "grid.filterSelectedItems": string;
2129
2170
  "grid.filterSelectAll": string;
@@ -2544,6 +2585,14 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
2544
2585
  * using the ([menuIcon]({% slug api_grid_gridcolumnprops %}#toc-menuicon)) property.
2545
2586
  */
2546
2587
  columnMenuIcon?: SVGIcon_2;
2588
+ /**
2589
+ * Providing different rendering of the popup element based on the screen dimensions.
2590
+ */
2591
+ adaptive?: boolean;
2592
+ /**
2593
+ * Specifies the text that is rendered as title in the adaptive popup.
2594
+ */
2595
+ adaptiveTitle?: string;
2547
2596
  /**
2548
2597
  * The [descriptors]({% slug api_kendo-data-query_groupdescriptor %})[] by which the data will be grouped
2549
2598
  * ([more information and examples]({% slug groupingbasics_grid %})).
@@ -2677,6 +2726,10 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
2677
2726
  * ```
2678
2727
  */
2679
2728
  detailExpand?: DetailExpandDescriptor;
2729
+ /**
2730
+ * Sets a custom edit dialog component that the Grid will render instead of the built-in edit dialog.
2731
+ */
2732
+ editDialog?: (props: GridEditDialogProps) => React.ReactNode;
2680
2733
  /**
2681
2734
  * The default `detailExpand` state applied to the Grid when using uncontrolled mode.
2682
2735
  *
package/index.d.ts CHANGED
@@ -14,9 +14,11 @@ import { ComponentType } from 'react';
14
14
  import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
15
15
  import { DataResult } from '@progress/kendo-data-query';
16
16
  import { DetailExpandDescriptor } from '@progress/kendo-react-data-tools';
17
+ import { DialogProps } from '@progress/kendo-react-dialogs';
17
18
  import { DragClue } from '@progress/kendo-react-data-tools';
18
19
  import { DropClue } from '@progress/kendo-react-data-tools';
19
20
  import { EditDescriptor } from '@progress/kendo-react-data-tools';
21
+ import { FieldProps } from '@progress/kendo-react-form';
20
22
  import { FilterOperator } from '@progress/kendo-react-data-tools';
21
23
  import { getSelectedState } from '@progress/kendo-react-data-tools';
22
24
  import { getSelectedStateFromKeyDown } from '@progress/kendo-react-data-tools';
@@ -1121,6 +1123,20 @@ export declare interface GridColumnProps extends Omit<ColumnBaseProps, 'cell'> {
1121
1123
  * @default 'text'
1122
1124
  */
1123
1125
  editor?: GridDataType;
1126
+ /**
1127
+ * The validation method for the edit field when editting is in mode `dialog`.
1128
+ *
1129
+ * The method arguments are:
1130
+ *
1131
+ * * value - The current value of the field.
1132
+ * * valueGetter - Function which can be used to get other fields value.
1133
+ * Usable when validator depends on more than one field. Supports field paths.
1134
+ * * fieldProps - Props of the Field component. Currently contains only the `name` prop.
1135
+ * Usable when one validator is used across multiple fields.
1136
+ *
1137
+ * Returns `string` to signify error or `undefined` to signify validation success.
1138
+ */
1139
+ validator?: FieldProps['validator'];
1124
1140
  /**
1125
1141
  * Overrides the default (three vertical dots) column menu icon or the icon set through the ([`columnMenuIcon`]({% slug api_grid_gridprops %}#toc-columnmenuicon)) property.
1126
1142
  *
@@ -1696,6 +1712,28 @@ export declare interface GridEditChangeEvent extends GridEvent {
1696
1712
  edit: EditDescriptor;
1697
1713
  }
1698
1714
 
1715
+ /**
1716
+ * Represents the props of the KendoReact Grid Edit Dialog component.
1717
+ */
1718
+ export declare type GridEditDialogProps = DialogProps & {
1719
+ /**
1720
+ * The columns of the Grid.
1721
+ */
1722
+ columns?: GridColumnProps[];
1723
+ /**
1724
+ * The data item that is currently being edited.
1725
+ */
1726
+ dataItem?: any;
1727
+ /**
1728
+ * The method that is called when the user submits the edit form.
1729
+ */
1730
+ onSubmit?: (newDataItem: any, event?: React.SyntheticEvent<any>) => void;
1731
+ /**
1732
+ * The method that is called when the user cancels the edit form.
1733
+ */
1734
+ onCancel?: (event?: React.SyntheticEvent<any>) => void;
1735
+ };
1736
+
1699
1737
  /**
1700
1738
  * Represents the base event object of the Grid.
1701
1739
  */
@@ -2124,6 +2162,9 @@ export declare const gridMessages: {
2124
2162
  "grid.searchPlaceholder": string;
2125
2163
  "grid.searchboxPlaceholder": string;
2126
2164
  "grid.filterCheckAll": string;
2165
+ "grid.editDialogTitle": string;
2166
+ "grid.editDialogSaveButtonTitle": string;
2167
+ "grid.editDialogCancelButtonTitle": string;
2127
2168
  "grid.filterChooseOperator": string;
2128
2169
  "grid.filterSelectedItems": string;
2129
2170
  "grid.filterSelectAll": string;
@@ -2544,6 +2585,14 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
2544
2585
  * using the ([menuIcon]({% slug api_grid_gridcolumnprops %}#toc-menuicon)) property.
2545
2586
  */
2546
2587
  columnMenuIcon?: SVGIcon_2;
2588
+ /**
2589
+ * Providing different rendering of the popup element based on the screen dimensions.
2590
+ */
2591
+ adaptive?: boolean;
2592
+ /**
2593
+ * Specifies the text that is rendered as title in the adaptive popup.
2594
+ */
2595
+ adaptiveTitle?: string;
2547
2596
  /**
2548
2597
  * The [descriptors]({% slug api_kendo-data-query_groupdescriptor %})[] by which the data will be grouped
2549
2598
  * ([more information and examples]({% slug groupingbasics_grid %})).
@@ -2677,6 +2726,10 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
2677
2726
  * ```
2678
2727
  */
2679
2728
  detailExpand?: DetailExpandDescriptor;
2729
+ /**
2730
+ * Sets a custom edit dialog component that the Grid will render instead of the built-in edit dialog.
2731
+ */
2732
+ editDialog?: (props: GridEditDialogProps) => React.ReactNode;
2680
2733
  /**
2681
2734
  * The default `detailExpand` state applied to the Grid when using uncontrolled mode.
2682
2735
  *
package/messages/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 e="grid.noRecords",r="grid.pagerInfo",t="grid.pagerFirstPage",o="grid.pagerPreviousPage",a="grid.pagerNextPage",l="grid.pagerLastPage",i="grid.pagerItemsPerPage",g="grid.pagerPage",s="grid.pagerPageSizeAriaLabel",n="grid.pagerOf",d="grid.pagerTotalPages",p="grid.groupPanelEmpty",c="grid.groupColumn",u="grid.ungroupColumn",f="grid.columnMenu",P="grid.filterApplyButton",A="grid.filterClearButton",h="grid.filterResetButton",m="grid.filterSubmitButton",b="grid.filterTitle",C="grid.sortAscending",I="grid.sortDescending",O="grid.searchPlaceholder",L="grid.searchboxPlaceholder",S="grid.filterCheckAll",E="grid.filterChooseOperator",R="grid.filterSelectAll",x="grid.filterSelectedItems",B="grid.sortAriaLabel",y="grid.filterAriaLabel",w="grid.groupPanelAriaLabel",q="grid.groupExpand",N="grid.groupCollapse",G="grid.detailExpand",T="grid.detailCollapse",D="grid.selectRow",F="grid.gridAriaLabel",v="grid.gridRowReorderAriaLabel",k={[G]:"Expand detail row",[T]:"Collapse detail row",[q]:"Expand group",[N]:"Collapse Group",[e]:"No records available",[p]:"Drag a column header and drop it here to group by that column",[P]:"Apply",[A]:"Clear",[h]:"Reset",[m]:"Filter",[b]:"Filter",[C]:"Sort Ascending",[I]:"Sort Descending",[B]:"Sortable",[c]:"Group Column",[u]:"Ungroup Column",[f]:"Column menu",[i]:"items per page",[r]:"{0} - {1} of {2} items",[t]:"Go to the first page",[o]:"Go to the previous page",[a]:"Go to the next page",[l]:"Go to the last page",[g]:"Page",[s]:"Page size",[n]:"of",[d]:"{0}",[O]:"Search",[L]:"Search...",[S]:"Check All",[E]:"Choose Operator",[x]:"selected items",[R]:"Select All",[y]:"Filter",[w]:"Group panel",[F]:"Table",[v]:"Drag row",[D]:"Select Row","grid.filterEqOperator":"Is equal to","grid.filterNotEqOperator":"Is not equal to","grid.filterIsNullOperator":"Is null","grid.filterIsNotNullOperator":"Is not null","grid.filterIsEmptyOperator":"Is empty","grid.filterIsNotEmptyOperator":"Is not empty","grid.filterStartsWithOperator":"Starts with","grid.filterContainsOperator":"Contains","grid.filterNotContainsOperator":"Does not contain","grid.filterEndsWithOperator":"Ends with","grid.filterGteOperator":"Is greater than or equal to","grid.filterGtOperator":"Is greater than","grid.filterLteOperator":"Is less than or equal to","grid.filterLtOperator":"Is less than","grid.filterIsTrue":"Is true","grid.filterIsFalse":"Is false","grid.filterBooleanAll":"(All)","grid.filterAfterOrEqualOperator":"Is after or equal to","grid.filterAfterOperator":"Is after","grid.filterBeforeOperator":"Is before","grid.filterBeforeOrEqualOperator":"Is before or equal to","grid.filterAndLogic":"And","grid.filterOrLogic":"Or"};exports.columnMenu=f;exports.detailCollapse=T;exports.detailExpand=G;exports.filterApplyButton=P;exports.filterAriaLabel=y;exports.filterCheckAll=S;exports.filterChooseOperator=E;exports.filterClearButton=A;exports.filterResetButton=h;exports.filterSelectAll=R;exports.filterSelectedItems=x;exports.filterSubmitButton=m;exports.filterTitle=b;exports.gridAriaLabel=F;exports.gridRowReorderAriaLabel=v;exports.groupCollapse=N;exports.groupColumn=c;exports.groupExpand=q;exports.groupPanelAriaLabel=w;exports.groupPanelEmpty=p;exports.messages=k;exports.noRecords=e;exports.pagerFirstPage=t;exports.pagerInfo=r;exports.pagerItemPerPage=i;exports.pagerLastPage=l;exports.pagerNextPage=a;exports.pagerOf=n;exports.pagerPage=g;exports.pagerPageSizeAriaLabel=s;exports.pagerPreviousPage=o;exports.pagerTotalPages=d;exports.searchPlaceholder=O;exports.searchboxPlaceholder=L;exports.selectRow=D;exports.sortAriaLabel=B;exports.sortAscending=C;exports.sortDescending=I;exports.ungroupColumn=u;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="grid.noRecords",r="grid.pagerInfo",t="grid.pagerFirstPage",o="grid.pagerPreviousPage",a="grid.pagerNextPage",l="grid.pagerLastPage",i="grid.pagerItemsPerPage",g="grid.pagerPage",s="grid.pagerPageSizeAriaLabel",n="grid.pagerOf",d="grid.pagerTotalPages",p="grid.groupPanelEmpty",c="grid.groupColumn",u="grid.ungroupColumn",f="grid.columnMenu",P="grid.filterApplyButton",A="grid.filterClearButton",h="grid.filterResetButton",m="grid.filterSubmitButton",C="grid.filterTitle",b="grid.sortAscending",I="grid.sortDescending",O="grid.searchPlaceholder",S="grid.searchboxPlaceholder",L="grid.filterCheckAll",B="grid.filterChooseOperator",E="grid.filterSelectAll",T="grid.filterSelectedItems",D="grid.sortAriaLabel",R="grid.editDialogTitle",x="grid.editDialogSaveButtonTitle",y="grid.editDialogCancelButtonTitle",w="grid.filterAriaLabel",q="grid.groupPanelAriaLabel",v="grid.groupExpand",N="grid.groupCollapse",G="grid.detailExpand",F="grid.detailCollapse",k="grid.selectRow",z="grid.gridAriaLabel",M="grid.gridRowReorderAriaLabel",W={[G]:"Expand detail row",[F]:"Collapse detail row",[v]:"Expand group",[N]:"Collapse Group",[e]:"No records available",[p]:"Drag a column header and drop it here to group by that column",[P]:"Apply",[A]:"Clear",[h]:"Reset",[m]:"Filter",[C]:"Filter",[b]:"Sort Ascending",[I]:"Sort Descending",[D]:"Sortable",[c]:"Group Column",[u]:"Ungroup Column",[f]:"Column menu",[i]:"items per page",[r]:"{0} - {1} of {2} items",[t]:"Go to the first page",[o]:"Go to the previous page",[a]:"Go to the next page",[l]:"Go to the last page",[g]:"Page",[s]:"Page size",[n]:"of",[d]:"{0}",[O]:"Search",[S]:"Search...",[L]:"Check All",[R]:"Edit Dialog",[x]:"Save",[y]:"Cancel",[B]:"Choose Operator",[T]:"selected items",[E]:"Select All",[w]:"Filter",[q]:"Group panel",[z]:"Table",[M]:"Drag row",[k]:"Select Row","grid.filterEqOperator":"Is equal to","grid.filterNotEqOperator":"Is not equal to","grid.filterIsNullOperator":"Is null","grid.filterIsNotNullOperator":"Is not null","grid.filterIsEmptyOperator":"Is empty","grid.filterIsNotEmptyOperator":"Is not empty","grid.filterStartsWithOperator":"Starts with","grid.filterContainsOperator":"Contains","grid.filterNotContainsOperator":"Does not contain","grid.filterEndsWithOperator":"Ends with","grid.filterGteOperator":"Is greater than or equal to","grid.filterGtOperator":"Is greater than","grid.filterLteOperator":"Is less than or equal to","grid.filterLtOperator":"Is less than","grid.filterIsTrue":"Is true","grid.filterIsFalse":"Is false","grid.filterBooleanAll":"(All)","grid.filterAfterOrEqualOperator":"Is after or equal to","grid.filterAfterOperator":"Is after","grid.filterBeforeOperator":"Is before","grid.filterBeforeOrEqualOperator":"Is before or equal to","grid.filterAndLogic":"And","grid.filterOrLogic":"Or"};exports.columnMenu=f;exports.detailCollapse=F;exports.detailExpand=G;exports.editDialogCancelButtonTitle=y;exports.editDialogSaveButtonTitle=x;exports.editDialogTitle=R;exports.filterApplyButton=P;exports.filterAriaLabel=w;exports.filterCheckAll=L;exports.filterChooseOperator=B;exports.filterClearButton=A;exports.filterResetButton=h;exports.filterSelectAll=E;exports.filterSelectedItems=T;exports.filterSubmitButton=m;exports.filterTitle=C;exports.gridAriaLabel=z;exports.gridRowReorderAriaLabel=M;exports.groupCollapse=N;exports.groupColumn=c;exports.groupExpand=v;exports.groupPanelAriaLabel=q;exports.groupPanelEmpty=p;exports.messages=W;exports.noRecords=e;exports.pagerFirstPage=t;exports.pagerInfo=r;exports.pagerItemPerPage=i;exports.pagerLastPage=l;exports.pagerNextPage=a;exports.pagerOf=n;exports.pagerPage=g;exports.pagerPageSizeAriaLabel=s;exports.pagerPreviousPage=o;exports.pagerTotalPages=d;exports.searchPlaceholder=O;exports.searchboxPlaceholder=S;exports.selectRow=k;exports.sortAriaLabel=D;exports.sortAscending=b;exports.sortDescending=I;exports.ungroupColumn=u;
@@ -5,21 +5,21 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- const e = "grid.noRecords", r = "grid.pagerInfo", t = "grid.pagerFirstPage", o = "grid.pagerPreviousPage", a = "grid.pagerNextPage", i = "grid.pagerLastPage", l = "grid.pagerItemsPerPage", g = "grid.pagerPage", s = "grid.pagerPageSizeAriaLabel", n = "grid.pagerOf", d = "grid.pagerTotalPages", p = "grid.groupPanelEmpty", c = "grid.groupColumn", u = "grid.ungroupColumn", f = "grid.columnMenu", h = "grid.filterApplyButton", A = "grid.filterClearButton", P = "grid.filterResetButton", m = "grid.filterSubmitButton", I = "grid.filterTitle", O = "grid.sortAscending", C = "grid.sortDescending", b = "grid.searchPlaceholder", L = "grid.searchboxPlaceholder", S = "grid.filterCheckAll", E = "grid.filterChooseOperator", x = "grid.filterSelectAll", R = "grid.filterSelectedItems", B = "grid.sortAriaLabel", q = "grid.filterAriaLabel", w = "grid.groupPanelAriaLabel", y = "grid.groupExpand", G = "grid.groupCollapse", N = "grid.detailExpand", D = "grid.detailCollapse", F = "grid.selectRow", T = "grid.gridAriaLabel", v = "grid.gridRowReorderAriaLabel", k = {
9
- [N]: "Expand detail row",
10
- [D]: "Collapse detail row",
11
- [y]: "Expand group",
12
- [G]: "Collapse Group",
8
+ const e = "grid.noRecords", r = "grid.pagerInfo", t = "grid.pagerFirstPage", o = "grid.pagerPreviousPage", i = "grid.pagerNextPage", a = "grid.pagerLastPage", l = "grid.pagerItemsPerPage", g = "grid.pagerPage", s = "grid.pagerPageSizeAriaLabel", n = "grid.pagerOf", d = "grid.pagerTotalPages", p = "grid.groupPanelEmpty", c = "grid.groupColumn", u = "grid.ungroupColumn", f = "grid.columnMenu", h = "grid.filterApplyButton", A = "grid.filterClearButton", P = "grid.filterResetButton", m = "grid.filterSubmitButton", C = "grid.filterTitle", I = "grid.sortAscending", O = "grid.sortDescending", b = "grid.searchPlaceholder", S = "grid.searchboxPlaceholder", L = "grid.filterCheckAll", E = "grid.filterChooseOperator", B = "grid.filterSelectAll", D = "grid.filterSelectedItems", x = "grid.sortAriaLabel", R = "grid.editDialogTitle", T = "grid.editDialogSaveButtonTitle", q = "grid.editDialogCancelButtonTitle", w = "grid.filterAriaLabel", y = "grid.groupPanelAriaLabel", G = "grid.groupExpand", N = "grid.groupCollapse", v = "grid.detailExpand", F = "grid.detailCollapse", k = "grid.selectRow", z = "grid.gridAriaLabel", M = "grid.gridRowReorderAriaLabel", W = {
9
+ [v]: "Expand detail row",
10
+ [F]: "Collapse detail row",
11
+ [G]: "Expand group",
12
+ [N]: "Collapse Group",
13
13
  [e]: "No records available",
14
14
  [p]: "Drag a column header and drop it here to group by that column",
15
15
  [h]: "Apply",
16
16
  [A]: "Clear",
17
17
  [P]: "Reset",
18
18
  [m]: "Filter",
19
- [I]: "Filter",
20
- [O]: "Sort Ascending",
21
- [C]: "Sort Descending",
22
- [B]: "Sortable",
19
+ [C]: "Filter",
20
+ [I]: "Sort Ascending",
21
+ [O]: "Sort Descending",
22
+ [x]: "Sortable",
23
23
  [c]: "Group Column",
24
24
  [u]: "Ungroup Column",
25
25
  [f]: "Column menu",
@@ -27,23 +27,26 @@ const e = "grid.noRecords", r = "grid.pagerInfo", t = "grid.pagerFirstPage", o =
27
27
  [r]: "{0} - {1} of {2} items",
28
28
  [t]: "Go to the first page",
29
29
  [o]: "Go to the previous page",
30
- [a]: "Go to the next page",
31
- [i]: "Go to the last page",
30
+ [i]: "Go to the next page",
31
+ [a]: "Go to the last page",
32
32
  [g]: "Page",
33
33
  [s]: "Page size",
34
34
  [n]: "of",
35
35
  [d]: "{0}",
36
36
  [b]: "Search",
37
- [L]: "Search...",
38
- [S]: "Check All",
37
+ [S]: "Search...",
38
+ [L]: "Check All",
39
+ [R]: "Edit Dialog",
40
+ [T]: "Save",
41
+ [q]: "Cancel",
39
42
  [E]: "Choose Operator",
40
- [R]: "selected items",
41
- [x]: "Select All",
42
- [q]: "Filter",
43
- [w]: "Group panel",
44
- [T]: "Table",
45
- [v]: "Drag row",
46
- [F]: "Select Row",
43
+ [D]: "selected items",
44
+ [B]: "Select All",
45
+ [w]: "Filter",
46
+ [y]: "Group panel",
47
+ [z]: "Table",
48
+ [M]: "Drag row",
49
+ [k]: "Select Row",
47
50
  "grid.filterEqOperator": "Is equal to",
48
51
  "grid.filterNotEqOperator": "Is not equal to",
49
52
  "grid.filterIsNullOperator": "Is null",
@@ -70,42 +73,45 @@ const e = "grid.noRecords", r = "grid.pagerInfo", t = "grid.pagerFirstPage", o =
70
73
  };
71
74
  export {
72
75
  f as columnMenu,
73
- D as detailCollapse,
74
- N as detailExpand,
76
+ F as detailCollapse,
77
+ v as detailExpand,
78
+ q as editDialogCancelButtonTitle,
79
+ T as editDialogSaveButtonTitle,
80
+ R as editDialogTitle,
75
81
  h as filterApplyButton,
76
- q as filterAriaLabel,
77
- S as filterCheckAll,
82
+ w as filterAriaLabel,
83
+ L as filterCheckAll,
78
84
  E as filterChooseOperator,
79
85
  A as filterClearButton,
80
86
  P as filterResetButton,
81
- x as filterSelectAll,
82
- R as filterSelectedItems,
87
+ B as filterSelectAll,
88
+ D as filterSelectedItems,
83
89
  m as filterSubmitButton,
84
- I as filterTitle,
85
- T as gridAriaLabel,
86
- v as gridRowReorderAriaLabel,
87
- G as groupCollapse,
90
+ C as filterTitle,
91
+ z as gridAriaLabel,
92
+ M as gridRowReorderAriaLabel,
93
+ N as groupCollapse,
88
94
  c as groupColumn,
89
- y as groupExpand,
90
- w as groupPanelAriaLabel,
95
+ G as groupExpand,
96
+ y as groupPanelAriaLabel,
91
97
  p as groupPanelEmpty,
92
- k as messages,
98
+ W as messages,
93
99
  e as noRecords,
94
100
  t as pagerFirstPage,
95
101
  r as pagerInfo,
96
102
  l as pagerItemPerPage,
97
- i as pagerLastPage,
98
- a as pagerNextPage,
103
+ a as pagerLastPage,
104
+ i as pagerNextPage,
99
105
  n as pagerOf,
100
106
  g as pagerPage,
101
107
  s as pagerPageSizeAriaLabel,
102
108
  o as pagerPreviousPage,
103
109
  d as pagerTotalPages,
104
110
  b as searchPlaceholder,
105
- L as searchboxPlaceholder,
106
- F as selectRow,
107
- B as sortAriaLabel,
108
- O as sortAscending,
109
- C as sortDescending,
111
+ S as searchboxPlaceholder,
112
+ k as selectRow,
113
+ x as sortAriaLabel,
114
+ I as sortAscending,
115
+ O as sortDescending,
110
116
  u as ungroupColumn
111
117
  };
@@ -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: 1745410806,version:"10.2.0",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1745484908,version:"10.3.0-develop.1",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "KendoReact",
11
11
  productCode: "KENDOUIREACT",
12
12
  productCodes: ["KENDOUIREACT"],
13
- publishDate: 1745410806,
14
- version: "10.2.0",
13
+ publishDate: 1745484908,
14
+ version: "10.3.0-develop.1",
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": "10.2.0",
3
+ "version": "10.3.0-develop.1",
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,17 +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.5.1",
31
- "@progress/kendo-react-animation": "10.2.0",
32
- "@progress/kendo-react-buttons": "10.2.0",
33
- "@progress/kendo-react-common": "10.2.0",
34
- "@progress/kendo-react-data-tools": "10.2.0",
35
- "@progress/kendo-react-dateinputs": "10.2.0",
36
- "@progress/kendo-react-indicators": "10.2.0",
37
- "@progress/kendo-react-dropdowns": "10.2.0",
38
- "@progress/kendo-react-inputs": "10.2.0",
39
- "@progress/kendo-react-intl": "10.2.0",
40
- "@progress/kendo-react-popup": "10.2.0",
41
- "@progress/kendo-react-layout": "10.2.0",
31
+ "@progress/kendo-react-animation": "10.3.0-develop.1",
32
+ "@progress/kendo-react-buttons": "10.3.0-develop.1",
33
+ "@progress/kendo-react-common": "10.3.0-develop.1",
34
+ "@progress/kendo-react-data-tools": "10.3.0-develop.1",
35
+ "@progress/kendo-react-dateinputs": "10.3.0-develop.1",
36
+ "@progress/kendo-react-indicators": "10.3.0-develop.1",
37
+ "@progress/kendo-react-form": "10.3.0-develop.1",
38
+ "@progress/kendo-react-labels": "10.3.0-develop.1",
39
+ "@progress/kendo-react-dialogs": "10.3.0-develop.1",
40
+ "@progress/kendo-react-dropdowns": "10.3.0-develop.1",
41
+ "@progress/kendo-react-inputs": "10.3.0-develop.1",
42
+ "@progress/kendo-react-intl": "10.3.0-develop.1",
43
+ "@progress/kendo-react-popup": "10.3.0-develop.1",
44
+ "@progress/kendo-react-layout": "10.3.0-develop.1",
42
45
  "@progress/kendo-svg-icons": "^4.0.0",
43
46
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
44
47
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
@@ -86,7 +89,7 @@
86
89
  "package": {
87
90
  "productName": "KendoReact",
88
91
  "productCode": "KENDOUIREACT",
89
- "publishDate": 1745410806,
92
+ "publishDate": 1745484908,
90
93
  "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
91
94
  }
92
95
  },