@progress/kendo-react-grid 12.0.2-develop.1 → 12.0.2-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.
package/index.d.mts CHANGED
@@ -510,7 +510,13 @@ export declare const GridCell: (props: {
510
510
  * Represents the `GridCellBaseOptions` object that are passed to the handler.
511
511
  */
512
512
  export declare interface GridCellBaseOptions {
513
+ /**
514
+ * The data item associated with the cell.
515
+ */
513
516
  dataItem?: any;
517
+ /**
518
+ * The field name of the column associated with the cell.
519
+ */
514
520
  field?: string;
515
521
  }
516
522
 
@@ -879,6 +885,10 @@ export declare const GridColumn: React_2.FunctionComponent<GridColumnProps>;
879
885
  * The type of elements that the children property of the Grid accepts.
880
886
  */
881
887
  export declare interface GridColumnChildrenProps extends GridColumnProps, ReactElement<GridColumnProps> {
888
+ /**
889
+ * The props object containing GridColumn properties.
890
+ */
891
+ props: GridColumnProps;
882
892
  }
883
893
 
884
894
  /**
@@ -1145,6 +1155,9 @@ export declare interface GridColumnMenuFilterProps extends GridColumnMenuFilterB
1145
1155
  * ([see example]({% slug column_menu_grid %}#toc-customizing-the-filter-component)).
1146
1156
  */
1147
1157
  filterUI?: ComponentType<GridColumnMenuFilterUIProps>;
1158
+ /**
1159
+ * The child elements to be rendered inside the filter component.
1160
+ */
1148
1161
  children?: React_2.ReactNode;
1149
1162
  /**
1150
1163
  * If set to `true`, filter expand button will not be rendered and filter menu will be expanded.
@@ -1330,7 +1343,13 @@ declare interface GridColumnMenuItemProps {
1330
1343
  * The props which the ColumnMenu passes to its children.
1331
1344
  */
1332
1345
  export declare interface GridColumnMenuProps extends GridColumnMenuFilterBaseProps, GridColumnMenuSortBaseProps, GridColumnMenuGroupBaseProps, GridColumnMenuColumnsChooserBaseProps {
1346
+ /**
1347
+ * Determines if the column menu supports keyboard navigation.
1348
+ */
1333
1349
  navigatable?: boolean;
1350
+ /**
1351
+ * Determines if the column menu is visible.
1352
+ */
1334
1353
  show?: boolean;
1335
1354
  }
1336
1355
 
@@ -1995,6 +2014,9 @@ export declare interface GridDataStateChangeEvent extends GridEvent {
1995
2014
  * The [State]({% slug api_kendo-data-query_state %}) of the Grid based on the user action.
1996
2015
  */
1997
2016
  dataState: State;
2017
+ /**
2018
+ * The [PagerTargetEvent]({% slug api_data-tools_pagertargetevent %}) that triggered the data state change.
2019
+ */
1998
2020
  targetEvent?: PagerTargetEvent;
1999
2021
  }
2000
2022
 
@@ -2008,6 +2030,9 @@ export declare type GridDataType = 'text' | 'numeric' | 'boolean' | 'date';
2008
2030
  * Represents the object of the `onDetailExpandChange` Grid event.
2009
2031
  */
2010
2032
  export declare interface GridDetailExpandChangeEvent extends GridEvent {
2033
+ /**
2034
+ * The descriptor defining which detail rows are expanded.
2035
+ */
2011
2036
  detailExpand: DetailExpandDescriptor;
2012
2037
  }
2013
2038
 
@@ -2083,6 +2108,9 @@ export declare const GridEditCell: (props: {
2083
2108
  * Represents the object of the `onEditChange` Grid event.
2084
2109
  */
2085
2110
  export declare interface GridEditChangeEvent extends GridEvent {
2111
+ /**
2112
+ * The descriptor defining which items are in edit mode.
2113
+ */
2086
2114
  edit: EditDescriptor;
2087
2115
  }
2088
2116
 
@@ -2303,12 +2331,24 @@ export declare interface GridGroupChangeEvent extends GridEvent {
2303
2331
  * Represents the Grid group expandable settings.
2304
2332
  */
2305
2333
  declare interface GridGroupExpandableSettings extends TableGroupExpandableSettings {
2334
+ /**
2335
+ * Determines the default expand state for groups.
2336
+ * When set to `true`, all groups are expanded by default.
2337
+ */
2338
+ defaultExpand?: boolean;
2339
+ /**
2340
+ * Determines if group expanding functionality is enabled.
2341
+ */
2342
+ enabled?: boolean;
2306
2343
  }
2307
2344
 
2308
2345
  /**
2309
2346
  * Represents the object of the `onGroupExpandChange` Grid event.
2310
2347
  */
2311
2348
  export declare interface GridGroupExpandChangeEvent extends GridEvent {
2349
+ /**
2350
+ * The descriptors defining which groups are expanded.
2351
+ */
2312
2352
  groupExpand: GroupExpandDescriptor[];
2313
2353
  }
2314
2354
 
@@ -2466,6 +2506,11 @@ export declare interface GridHighlightChangeEvent {
2466
2506
  highlight: GridHighlightDescriptor;
2467
2507
  }
2468
2508
 
2509
+ /**
2510
+ * Represents the highlight state descriptor for Grid items.
2511
+ * The key is the item identifier, and the value can be either a boolean (for whole row highlighting)
2512
+ * or an array of column indices (for specific cell highlighting).
2513
+ */
2469
2514
  export declare interface GridHighlightDescriptor {
2470
2515
  [id: string]: boolean | number[];
2471
2516
  }
@@ -2640,7 +2685,13 @@ export declare interface GridNoRecordsProps {
2640
2685
  * Represents the object of the `onPageChange` Grid event.
2641
2686
  */
2642
2687
  export declare interface GridPageChangeEvent extends GridEvent {
2688
+ /**
2689
+ * The page information containing the current page details.
2690
+ */
2643
2691
  page: Page;
2692
+ /**
2693
+ * The target event that triggered the page change.
2694
+ */
2644
2695
  targetEvent?: PagerTargetEvent;
2645
2696
  }
2646
2697
 
@@ -2729,6 +2780,9 @@ declare type GridPagerType = 'numeric' | 'input';
2729
2780
  */
2730
2781
  export declare const GridPdfExportButton: (props: GridPdfExportButtonProps) => JSX.Element;
2731
2782
 
2783
+ /**
2784
+ * Represents the props of the GridPdfExportButton component.
2785
+ */
2732
2786
  export declare interface GridPdfExportButtonProps extends ButtonProps {
2733
2787
  }
2734
2788
 
@@ -3822,8 +3876,35 @@ export declare type GridRowSpannableSettings = {
3822
3876
  * The settings of the rows prop options.
3823
3877
  */
3824
3878
  export declare interface GridRowsSettings {
3879
+ /**
3880
+ * Custom component for rendering the group header row.
3881
+ *
3882
+ * @example
3883
+ * ```tsx
3884
+ * import { MyGroupHeaderRow } from './MyGroupHeaderRow';
3885
+ * <Grid rows={{ groupHeader: MyGroupHeaderRow }} />
3886
+ * ```
3887
+ */
3825
3888
  groupHeader?: ComponentType<GridCustomRowProps>;
3889
+ /**
3890
+ * Custom component for rendering the data row.
3891
+ *
3892
+ * @example
3893
+ * ```tsx
3894
+ * import { MyDataRow } from './MyDataRow';
3895
+ * <Grid rows={{ data: MyDataRow }} />
3896
+ * ```
3897
+ */
3826
3898
  data?: ComponentType<GridCustomRowProps>;
3899
+ /**
3900
+ * Custom component for rendering the group footer row.
3901
+ *
3902
+ * @example
3903
+ * ```tsx
3904
+ * import { MyGroupFooterRow } from './MyGroupFooterRow';
3905
+ * <Grid rows={{ groupFooter: MyGroupFooterRow }} />
3906
+ * ```
3907
+ */
3827
3908
  groupFooter?: ComponentType<GridCustomRowProps>;
3828
3909
  }
3829
3910
 
@@ -3842,10 +3923,19 @@ export declare type GridRowType = 'groupFooter' | 'groupHeader' | 'data';
3842
3923
  */
3843
3924
  export declare const GridSearchBox: (props: GridSearchBoxProps) => JSX.Element;
3844
3925
 
3926
+ /**
3927
+ * Represents the event object of the GridSearchBox `onChange` event.
3928
+ */
3845
3929
  export declare interface GridSearchBoxChangeEvent extends TextBoxChangeEvent {
3846
3930
  }
3847
3931
 
3932
+ /**
3933
+ * Represents the props of the GridSearchBox component.
3934
+ */
3848
3935
  export declare interface GridSearchBoxProps extends TextBoxProps {
3936
+ /**
3937
+ * Fires when the value of the search box is changed.
3938
+ */
3849
3939
  onChange?: (event: GridSearchBoxChangeEvent) => void;
3850
3940
  }
3851
3941
 
@@ -3927,14 +4017,35 @@ export declare interface GridSortChangeEvent extends GridEvent {
3927
4017
  */
3928
4018
  export declare type GridSortSettings = SortSettings;
3929
4019
 
4020
+ /**
4021
+ * Represents the attributes for Grid table cell elements, extending standard HTML td element properties.
4022
+ */
3930
4023
  export declare interface GridTdAttributes extends React.TdHTMLAttributes<HTMLTableCellElement> {
4024
+ /**
4025
+ * The column index attribute used for grid operations.
4026
+ */
3931
4027
  [TABLE_COL_INDEX_ATTRIBUTE]?: number;
4028
+ /**
4029
+ * The unique identifier of the column.
4030
+ */
3932
4031
  columnId?: string;
4032
+ /**
4033
+ * The React key for the element.
4034
+ */
3933
4035
  key?: string;
3934
4036
  }
3935
4037
 
4038
+ /**
4039
+ * Represents the attributes for Grid header cell elements, extending standard HTML th element properties.
4040
+ */
3936
4041
  export declare interface GridThAttributes extends HeaderThElementProps {
4042
+ /**
4043
+ * The unique identifier of the column.
4044
+ */
3937
4045
  columnId: string;
4046
+ /**
4047
+ * The React key for the element.
4048
+ */
3938
4049
  key?: string;
3939
4050
  }
3940
4051
 
@@ -3983,8 +4094,17 @@ export declare const GridToolbar: {
3983
4094
  */
3984
4095
  export declare const GridToolbarAIAssistant: React_2.ForwardRefExoticComponent<GridToolbarAIAssistantProps & React_2.RefAttributes<GridToolbarAIAssistantHandle>>;
3985
4096
 
4097
+ /**
4098
+ * Represents the handle interface for the GridToolbarAIAssistant component.
4099
+ */
3986
4100
  export declare interface GridToolbarAIAssistantHandle {
4101
+ /**
4102
+ * Shows the AI assistant prompt interface.
4103
+ */
3987
4104
  show: () => void;
4105
+ /**
4106
+ * Hides the AI assistant prompt interface.
4107
+ */
3988
4108
  hide: () => void;
3989
4109
  }
3990
4110
 
@@ -4146,13 +4266,31 @@ export declare interface GridToolbarAIAssistantProps {
4146
4266
  onCloseWindow?: () => void;
4147
4267
  }
4148
4268
 
4269
+ /**
4270
+ * Represents the request data structure for the GridToolbarAIAssistant component.
4271
+ */
4149
4272
  export declare interface GridToolbarAIAssistantRequestData {
4273
+ /**
4274
+ * The role or context for the AI request.
4275
+ */
4150
4276
  role: string;
4277
+ /**
4278
+ * The array of column definitions with their field names.
4279
+ */
4151
4280
  columns: Array<{
4152
4281
  field: string;
4153
4282
  }>;
4283
+ /**
4284
+ * The headers object containing key-value pairs for the request.
4285
+ */
4154
4286
  headers: Record<string, string>;
4287
+ /**
4288
+ * The prompt message sent to the AI assistant.
4289
+ */
4155
4290
  promptMessage: string;
4291
+ /**
4292
+ * The request configuration options for the HTTP request.
4293
+ */
4156
4294
  requestOptions: {
4157
4295
  url?: string;
4158
4296
  method?: string;
@@ -4589,6 +4727,9 @@ export declare const StatusBar: React_2.FunctionComponent<StatusBarProps>;
4589
4727
  * Represents the props of the KendoReact Grid's StatusBar component.
4590
4728
  */
4591
4729
  export declare interface StatusBarProps {
4730
+ /**
4731
+ * The collection of status items to display in the status bar.
4732
+ */
4592
4733
  data: StatusItem[];
4593
4734
  }
4594
4735
 
package/index.d.ts CHANGED
@@ -510,7 +510,13 @@ export declare const GridCell: (props: {
510
510
  * Represents the `GridCellBaseOptions` object that are passed to the handler.
511
511
  */
512
512
  export declare interface GridCellBaseOptions {
513
+ /**
514
+ * The data item associated with the cell.
515
+ */
513
516
  dataItem?: any;
517
+ /**
518
+ * The field name of the column associated with the cell.
519
+ */
514
520
  field?: string;
515
521
  }
516
522
 
@@ -879,6 +885,10 @@ export declare const GridColumn: React_2.FunctionComponent<GridColumnProps>;
879
885
  * The type of elements that the children property of the Grid accepts.
880
886
  */
881
887
  export declare interface GridColumnChildrenProps extends GridColumnProps, ReactElement<GridColumnProps> {
888
+ /**
889
+ * The props object containing GridColumn properties.
890
+ */
891
+ props: GridColumnProps;
882
892
  }
883
893
 
884
894
  /**
@@ -1145,6 +1155,9 @@ export declare interface GridColumnMenuFilterProps extends GridColumnMenuFilterB
1145
1155
  * ([see example]({% slug column_menu_grid %}#toc-customizing-the-filter-component)).
1146
1156
  */
1147
1157
  filterUI?: ComponentType<GridColumnMenuFilterUIProps>;
1158
+ /**
1159
+ * The child elements to be rendered inside the filter component.
1160
+ */
1148
1161
  children?: React_2.ReactNode;
1149
1162
  /**
1150
1163
  * If set to `true`, filter expand button will not be rendered and filter menu will be expanded.
@@ -1330,7 +1343,13 @@ declare interface GridColumnMenuItemProps {
1330
1343
  * The props which the ColumnMenu passes to its children.
1331
1344
  */
1332
1345
  export declare interface GridColumnMenuProps extends GridColumnMenuFilterBaseProps, GridColumnMenuSortBaseProps, GridColumnMenuGroupBaseProps, GridColumnMenuColumnsChooserBaseProps {
1346
+ /**
1347
+ * Determines if the column menu supports keyboard navigation.
1348
+ */
1333
1349
  navigatable?: boolean;
1350
+ /**
1351
+ * Determines if the column menu is visible.
1352
+ */
1334
1353
  show?: boolean;
1335
1354
  }
1336
1355
 
@@ -1995,6 +2014,9 @@ export declare interface GridDataStateChangeEvent extends GridEvent {
1995
2014
  * The [State]({% slug api_kendo-data-query_state %}) of the Grid based on the user action.
1996
2015
  */
1997
2016
  dataState: State;
2017
+ /**
2018
+ * The [PagerTargetEvent]({% slug api_data-tools_pagertargetevent %}) that triggered the data state change.
2019
+ */
1998
2020
  targetEvent?: PagerTargetEvent;
1999
2021
  }
2000
2022
 
@@ -2008,6 +2030,9 @@ export declare type GridDataType = 'text' | 'numeric' | 'boolean' | 'date';
2008
2030
  * Represents the object of the `onDetailExpandChange` Grid event.
2009
2031
  */
2010
2032
  export declare interface GridDetailExpandChangeEvent extends GridEvent {
2033
+ /**
2034
+ * The descriptor defining which detail rows are expanded.
2035
+ */
2011
2036
  detailExpand: DetailExpandDescriptor;
2012
2037
  }
2013
2038
 
@@ -2083,6 +2108,9 @@ export declare const GridEditCell: (props: {
2083
2108
  * Represents the object of the `onEditChange` Grid event.
2084
2109
  */
2085
2110
  export declare interface GridEditChangeEvent extends GridEvent {
2111
+ /**
2112
+ * The descriptor defining which items are in edit mode.
2113
+ */
2086
2114
  edit: EditDescriptor;
2087
2115
  }
2088
2116
 
@@ -2303,12 +2331,24 @@ export declare interface GridGroupChangeEvent extends GridEvent {
2303
2331
  * Represents the Grid group expandable settings.
2304
2332
  */
2305
2333
  declare interface GridGroupExpandableSettings extends TableGroupExpandableSettings {
2334
+ /**
2335
+ * Determines the default expand state for groups.
2336
+ * When set to `true`, all groups are expanded by default.
2337
+ */
2338
+ defaultExpand?: boolean;
2339
+ /**
2340
+ * Determines if group expanding functionality is enabled.
2341
+ */
2342
+ enabled?: boolean;
2306
2343
  }
2307
2344
 
2308
2345
  /**
2309
2346
  * Represents the object of the `onGroupExpandChange` Grid event.
2310
2347
  */
2311
2348
  export declare interface GridGroupExpandChangeEvent extends GridEvent {
2349
+ /**
2350
+ * The descriptors defining which groups are expanded.
2351
+ */
2312
2352
  groupExpand: GroupExpandDescriptor[];
2313
2353
  }
2314
2354
 
@@ -2466,6 +2506,11 @@ export declare interface GridHighlightChangeEvent {
2466
2506
  highlight: GridHighlightDescriptor;
2467
2507
  }
2468
2508
 
2509
+ /**
2510
+ * Represents the highlight state descriptor for Grid items.
2511
+ * The key is the item identifier, and the value can be either a boolean (for whole row highlighting)
2512
+ * or an array of column indices (for specific cell highlighting).
2513
+ */
2469
2514
  export declare interface GridHighlightDescriptor {
2470
2515
  [id: string]: boolean | number[];
2471
2516
  }
@@ -2640,7 +2685,13 @@ export declare interface GridNoRecordsProps {
2640
2685
  * Represents the object of the `onPageChange` Grid event.
2641
2686
  */
2642
2687
  export declare interface GridPageChangeEvent extends GridEvent {
2688
+ /**
2689
+ * The page information containing the current page details.
2690
+ */
2643
2691
  page: Page;
2692
+ /**
2693
+ * The target event that triggered the page change.
2694
+ */
2644
2695
  targetEvent?: PagerTargetEvent;
2645
2696
  }
2646
2697
 
@@ -2729,6 +2780,9 @@ declare type GridPagerType = 'numeric' | 'input';
2729
2780
  */
2730
2781
  export declare const GridPdfExportButton: (props: GridPdfExportButtonProps) => JSX.Element;
2731
2782
 
2783
+ /**
2784
+ * Represents the props of the GridPdfExportButton component.
2785
+ */
2732
2786
  export declare interface GridPdfExportButtonProps extends ButtonProps {
2733
2787
  }
2734
2788
 
@@ -3822,8 +3876,35 @@ export declare type GridRowSpannableSettings = {
3822
3876
  * The settings of the rows prop options.
3823
3877
  */
3824
3878
  export declare interface GridRowsSettings {
3879
+ /**
3880
+ * Custom component for rendering the group header row.
3881
+ *
3882
+ * @example
3883
+ * ```tsx
3884
+ * import { MyGroupHeaderRow } from './MyGroupHeaderRow';
3885
+ * <Grid rows={{ groupHeader: MyGroupHeaderRow }} />
3886
+ * ```
3887
+ */
3825
3888
  groupHeader?: ComponentType<GridCustomRowProps>;
3889
+ /**
3890
+ * Custom component for rendering the data row.
3891
+ *
3892
+ * @example
3893
+ * ```tsx
3894
+ * import { MyDataRow } from './MyDataRow';
3895
+ * <Grid rows={{ data: MyDataRow }} />
3896
+ * ```
3897
+ */
3826
3898
  data?: ComponentType<GridCustomRowProps>;
3899
+ /**
3900
+ * Custom component for rendering the group footer row.
3901
+ *
3902
+ * @example
3903
+ * ```tsx
3904
+ * import { MyGroupFooterRow } from './MyGroupFooterRow';
3905
+ * <Grid rows={{ groupFooter: MyGroupFooterRow }} />
3906
+ * ```
3907
+ */
3827
3908
  groupFooter?: ComponentType<GridCustomRowProps>;
3828
3909
  }
3829
3910
 
@@ -3842,10 +3923,19 @@ export declare type GridRowType = 'groupFooter' | 'groupHeader' | 'data';
3842
3923
  */
3843
3924
  export declare const GridSearchBox: (props: GridSearchBoxProps) => JSX.Element;
3844
3925
 
3926
+ /**
3927
+ * Represents the event object of the GridSearchBox `onChange` event.
3928
+ */
3845
3929
  export declare interface GridSearchBoxChangeEvent extends TextBoxChangeEvent {
3846
3930
  }
3847
3931
 
3932
+ /**
3933
+ * Represents the props of the GridSearchBox component.
3934
+ */
3848
3935
  export declare interface GridSearchBoxProps extends TextBoxProps {
3936
+ /**
3937
+ * Fires when the value of the search box is changed.
3938
+ */
3849
3939
  onChange?: (event: GridSearchBoxChangeEvent) => void;
3850
3940
  }
3851
3941
 
@@ -3927,14 +4017,35 @@ export declare interface GridSortChangeEvent extends GridEvent {
3927
4017
  */
3928
4018
  export declare type GridSortSettings = SortSettings;
3929
4019
 
4020
+ /**
4021
+ * Represents the attributes for Grid table cell elements, extending standard HTML td element properties.
4022
+ */
3930
4023
  export declare interface GridTdAttributes extends React.TdHTMLAttributes<HTMLTableCellElement> {
4024
+ /**
4025
+ * The column index attribute used for grid operations.
4026
+ */
3931
4027
  [TABLE_COL_INDEX_ATTRIBUTE]?: number;
4028
+ /**
4029
+ * The unique identifier of the column.
4030
+ */
3932
4031
  columnId?: string;
4032
+ /**
4033
+ * The React key for the element.
4034
+ */
3933
4035
  key?: string;
3934
4036
  }
3935
4037
 
4038
+ /**
4039
+ * Represents the attributes for Grid header cell elements, extending standard HTML th element properties.
4040
+ */
3936
4041
  export declare interface GridThAttributes extends HeaderThElementProps {
4042
+ /**
4043
+ * The unique identifier of the column.
4044
+ */
3937
4045
  columnId: string;
4046
+ /**
4047
+ * The React key for the element.
4048
+ */
3938
4049
  key?: string;
3939
4050
  }
3940
4051
 
@@ -3983,8 +4094,17 @@ export declare const GridToolbar: {
3983
4094
  */
3984
4095
  export declare const GridToolbarAIAssistant: React_2.ForwardRefExoticComponent<GridToolbarAIAssistantProps & React_2.RefAttributes<GridToolbarAIAssistantHandle>>;
3985
4096
 
4097
+ /**
4098
+ * Represents the handle interface for the GridToolbarAIAssistant component.
4099
+ */
3986
4100
  export declare interface GridToolbarAIAssistantHandle {
4101
+ /**
4102
+ * Shows the AI assistant prompt interface.
4103
+ */
3987
4104
  show: () => void;
4105
+ /**
4106
+ * Hides the AI assistant prompt interface.
4107
+ */
3988
4108
  hide: () => void;
3989
4109
  }
3990
4110
 
@@ -4146,13 +4266,31 @@ export declare interface GridToolbarAIAssistantProps {
4146
4266
  onCloseWindow?: () => void;
4147
4267
  }
4148
4268
 
4269
+ /**
4270
+ * Represents the request data structure for the GridToolbarAIAssistant component.
4271
+ */
4149
4272
  export declare interface GridToolbarAIAssistantRequestData {
4273
+ /**
4274
+ * The role or context for the AI request.
4275
+ */
4150
4276
  role: string;
4277
+ /**
4278
+ * The array of column definitions with their field names.
4279
+ */
4151
4280
  columns: Array<{
4152
4281
  field: string;
4153
4282
  }>;
4283
+ /**
4284
+ * The headers object containing key-value pairs for the request.
4285
+ */
4154
4286
  headers: Record<string, string>;
4287
+ /**
4288
+ * The prompt message sent to the AI assistant.
4289
+ */
4155
4290
  promptMessage: string;
4291
+ /**
4292
+ * The request configuration options for the HTTP request.
4293
+ */
4156
4294
  requestOptions: {
4157
4295
  url?: string;
4158
4296
  method?: string;
@@ -4589,6 +4727,9 @@ export declare const StatusBar: React_2.FunctionComponent<StatusBarProps>;
4589
4727
  * Represents the props of the KendoReact Grid's StatusBar component.
4590
4728
  */
4591
4729
  export declare interface StatusBarProps {
4730
+ /**
4731
+ * The collection of status items to display in the status bar.
4732
+ */
4592
4733
  data: StatusItem[];
4593
4734
  }
4594
4735
 
@@ -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=Object.freeze({name:"@progress/kendo-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1756967133,version:"12.0.2-develop.1",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=Object.freeze({name:"@progress/kendo-react-grid",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1757419640,version:"12.0.2-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = Object.freeze({
10
10
  productName: "KendoReact",
11
11
  productCode: "KENDOUIREACT",
12
12
  productCodes: ["KENDOUIREACT"],
13
- publishDate: 1756967133,
14
- version: "12.0.2-develop.1",
13
+ publishDate: 1757419640,
14
+ version: "12.0.2-develop.3",
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": "12.0.2-develop.1",
3
+ "version": "12.0.2-develop.3",
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,21 +28,21 @@
28
28
  "@progress/kendo-data-query": "^1.0.0",
29
29
  "@progress/kendo-drawing": "^1.21.2",
30
30
  "@progress/kendo-licensing": "^1.7.0",
31
- "@progress/kendo-react-animation": "12.0.2-develop.1",
32
- "@progress/kendo-react-buttons": "12.0.2-develop.1",
33
- "@progress/kendo-react-common": "12.0.2-develop.1",
34
- "@progress/kendo-react-data-tools": "12.0.2-develop.1",
35
- "@progress/kendo-react-dateinputs": "12.0.2-develop.1",
36
- "@progress/kendo-react-indicators": "12.0.2-develop.1",
37
- "@progress/kendo-react-form": "12.0.2-develop.1",
38
- "@progress/kendo-react-labels": "12.0.2-develop.1",
39
- "@progress/kendo-react-dialogs": "12.0.2-develop.1",
40
- "@progress/kendo-react-dropdowns": "12.0.2-develop.1",
41
- "@progress/kendo-react-inputs": "12.0.2-develop.1",
42
- "@progress/kendo-react-intl": "12.0.2-develop.1",
43
- "@progress/kendo-react-popup": "12.0.2-develop.1",
44
- "@progress/kendo-react-layout": "12.0.2-develop.1",
45
- "@progress/kendo-react-conversational-ui": "12.0.2-develop.1",
31
+ "@progress/kendo-react-animation": "12.0.2-develop.3",
32
+ "@progress/kendo-react-buttons": "12.0.2-develop.3",
33
+ "@progress/kendo-react-common": "12.0.2-develop.3",
34
+ "@progress/kendo-react-data-tools": "12.0.2-develop.3",
35
+ "@progress/kendo-react-dateinputs": "12.0.2-develop.3",
36
+ "@progress/kendo-react-indicators": "12.0.2-develop.3",
37
+ "@progress/kendo-react-form": "12.0.2-develop.3",
38
+ "@progress/kendo-react-labels": "12.0.2-develop.3",
39
+ "@progress/kendo-react-dialogs": "12.0.2-develop.3",
40
+ "@progress/kendo-react-dropdowns": "12.0.2-develop.3",
41
+ "@progress/kendo-react-inputs": "12.0.2-develop.3",
42
+ "@progress/kendo-react-intl": "12.0.2-develop.3",
43
+ "@progress/kendo-react-popup": "12.0.2-develop.3",
44
+ "@progress/kendo-react-layout": "12.0.2-develop.3",
45
+ "@progress/kendo-react-conversational-ui": "12.0.2-develop.3",
46
46
  "@progress/kendo-svg-icons": "^4.0.0",
47
47
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
48
48
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
@@ -147,7 +147,7 @@
147
147
  "package": {
148
148
  "productName": "KendoReact",
149
149
  "productCode": "KENDOUIREACT",
150
- "publishDate": 1756967133,
150
+ "publishDate": 1757419640,
151
151
  "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
152
152
  }
153
153
  },