@progress/kendo-react-grid 10.3.0-develop.1 → 11.0.0-develop.10
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/GridClientContextReader.js +1 -1
- package/GridClientContextReader.mjs +16 -13
- package/GridClientWrapper.js +1 -1
- package/GridClientWrapper.mjs +419 -421
- package/GridComponent.js +1 -1
- package/GridComponent.mjs +402 -395
- package/VirtualScroll.js +1 -1
- package/VirtualScroll.mjs +65 -107
- package/cells/GridDetailHierarchyCell.js +1 -1
- package/cells/GridDetailHierarchyCell.mjs +4 -4
- package/cells/datacell/GridCell.js +9 -0
- package/cells/datacell/GridCell.mjs +29 -0
- package/cells/datacell/GridCellServer.js +8 -0
- package/cells/datacell/GridCellServer.mjs +27 -0
- package/cells/datacell/GridCellServerContainer.js +9 -0
- package/cells/datacell/GridCellServerContainer.mjs +26 -0
- package/cells/datacell/useCellClientTdProps.js +9 -0
- package/cells/datacell/useCellClientTdProps.mjs +30 -0
- package/cells/datacell/utils.js +8 -0
- package/cells/datacell/utils.mjs +47 -0
- package/cells/detailcell/GridDetailCell.js +9 -0
- package/cells/detailcell/GridDetailCell.mjs +18 -0
- package/cells/detailcell/GridDetailCellServer.js +8 -0
- package/cells/detailcell/GridDetailCellServer.mjs +17 -0
- package/cells/detailcell/GridDetailCellServerContainer.js +9 -0
- package/cells/detailcell/GridDetailCellServerContainer.mjs +19 -0
- package/cells/detailcell/useDetailCellClientTdProps.js +9 -0
- package/cells/detailcell/useDetailCellClientTdProps.mjs +20 -0
- package/cells/detailcell/utils.js +8 -0
- package/cells/detailcell/utils.mjs +20 -0
- package/cells/editcell/GridEditCell.js +9 -0
- package/cells/editcell/GridEditCell.mjs +26 -0
- package/cells/editcell/GridEditCellServer.js +8 -0
- package/cells/editcell/GridEditCellServer.mjs +32 -0
- package/cells/editcell/GridEditCellServerContainer.js +9 -0
- package/cells/editcell/GridEditCellServerContainer.mjs +26 -0
- package/cells/editcell/useEditCellClientTdProps.js +9 -0
- package/cells/editcell/useEditCellClientTdProps.mjs +21 -0
- package/cells/editcell/utils.js +8 -0
- package/cells/editcell/utils.mjs +29 -0
- package/cells/groupcell/GridGroupCell.js +9 -0
- package/cells/groupcell/GridGroupCell.mjs +24 -0
- package/cells/groupcell/GridGroupCellServer.js +8 -0
- package/cells/groupcell/GridGroupCellServer.mjs +44 -0
- package/cells/groupcell/GridGroupCellServerContainer.js +9 -0
- package/cells/groupcell/GridGroupCellServerContainer.mjs +38 -0
- package/cells/groupcell/useGroupCellClientTdProps.js +9 -0
- package/cells/groupcell/useGroupCellClientTdProps.mjs +44 -0
- package/cells/groupcell/utils.js +8 -0
- package/cells/groupcell/utils.mjs +48 -0
- package/cells/hierarchycell/GridHierarchyCell.js +9 -0
- package/cells/hierarchycell/GridHierarchyCell.mjs +25 -0
- package/cells/hierarchycell/GridHierarchyCellServer.js +8 -0
- package/cells/hierarchycell/GridHierarchyCellServer.mjs +32 -0
- package/cells/hierarchycell/GridHierarchyCellServerContainer.js +9 -0
- package/cells/hierarchycell/GridHierarchyCellServerContainer.mjs +26 -0
- package/cells/hierarchycell/useHierarchyCellClientTdProps.js +9 -0
- package/cells/hierarchycell/useHierarchyCellClientTdProps.mjs +35 -0
- package/cells/hierarchycell/utils.js +8 -0
- package/cells/hierarchycell/utils.mjs +30 -0
- package/cells/hooks.js +9 -0
- package/cells/hooks.mjs +41 -0
- package/cells/rowreordercell/GridRowReorderCell.js +9 -0
- package/cells/rowreordercell/GridRowReorderCell.mjs +19 -0
- package/cells/rowreordercell/GridRowReorderCellServer.js +8 -0
- package/cells/rowreordercell/GridRowReorderCellServer.mjs +18 -0
- package/cells/rowreordercell/GridRowReorderCellServerContainer.js +9 -0
- package/cells/rowreordercell/GridRowReorderCellServerContainer.mjs +19 -0
- package/cells/rowreordercell/useRowReorderCellClientTdProps.js +9 -0
- package/cells/rowreordercell/useRowReorderCellClientTdProps.mjs +26 -0
- package/cells/rowreordercell/utils.js +8 -0
- package/cells/rowreordercell/utils.mjs +30 -0
- package/cells/selectioncell/GridSelectionCell.js +9 -0
- package/cells/selectioncell/GridSelectionCell.mjs +26 -0
- package/cells/selectioncell/GridSelectionCellServer.js +8 -0
- package/cells/selectioncell/GridSelectionCellServer.mjs +33 -0
- package/cells/selectioncell/GridSelectionCellServerContainer.js +9 -0
- package/cells/selectioncell/GridSelectionCellServerContainer.mjs +26 -0
- package/cells/selectioncell/useSelectionCellClientTdProps.js +9 -0
- package/cells/selectioncell/useSelectionCellClientTdProps.mjs +21 -0
- package/cells/selectioncell/utils.js +8 -0
- package/cells/selectioncell/utils.mjs +25 -0
- package/columnMenu/GridColumnMenuCheckboxFilter.js +1 -1
- package/columnMenu/GridColumnMenuCheckboxFilter.mjs +126 -97
- package/columnMenu/GridColumnMenuColumnsChooser.js +1 -1
- package/columnMenu/GridColumnMenuColumnsChooser.mjs +103 -58
- package/columnMenu/GridColumnMenuFilter.js +1 -1
- package/columnMenu/GridColumnMenuFilter.mjs +122 -101
- package/columnMenu/GridColumnMenuFilterCell.js +1 -1
- package/columnMenu/GridColumnMenuFilterCell.mjs +47 -44
- package/columnMenu/GridColumnMenuFilterUI.js +1 -1
- package/columnMenu/GridColumnMenuFilterUI.mjs +28 -14
- package/columnMenu/GridColumnMenuItem.js +1 -1
- package/columnMenu/GridColumnMenuItem.mjs +9 -6
- package/columnMenu/GridColumnMenuWrapper.js +1 -1
- package/columnMenu/GridColumnMenuWrapper.mjs +68 -71
- package/columnMenu/adaptiveContent/GridActionSheetFooter.js +9 -0
- package/columnMenu/adaptiveContent/GridActionSheetFooter.mjs +24 -0
- package/columnMenu/adaptiveContent/GridAdaptiveCheckboxFilter.js +9 -0
- package/columnMenu/adaptiveContent/GridAdaptiveCheckboxFilter.mjs +79 -0
- package/columnMenu/adaptiveContent/GridAdaptiveColumnChooser.js +9 -0
- package/columnMenu/adaptiveContent/GridAdaptiveColumnChooser.mjs +90 -0
- package/columnMenu/adaptiveContent/GridAdaptiveColumnMenu.js +9 -0
- package/columnMenu/adaptiveContent/GridAdaptiveColumnMenu.mjs +66 -0
- package/columnMenu/adaptiveContent/GridAdaptiveFilterMenu.js +9 -0
- package/columnMenu/adaptiveContent/GridAdaptiveFilterMenu.mjs +74 -0
- package/columnMenu/adaptiveContext/GridColumnMenuAdaptiveContext.js +9 -0
- package/columnMenu/adaptiveContext/GridColumnMenuAdaptiveContext.mjs +17 -0
- package/components/GridDraggableRowsContainer.js +1 -1
- package/components/GridDraggableRowsContainer.mjs +71 -67
- package/components/VirtualScrollHeightContainer.js +1 -1
- package/components/VirtualScrollHeightContainer.mjs +4 -4
- package/components/table/GridTableScrollable.js +1 -1
- package/components/table/GridTableScrollable.mjs +16 -15
- package/components/utils.js +1 -1
- package/components/utils.mjs +9 -10
- package/dist/cdn/js/kendo-react-grid.js +1 -1
- package/index.d.mts +75 -10
- package/index.d.ts +75 -10
- package/index.js +1 -1
- package/index.mjs +5 -5
- package/messages/index.js +1 -1
- package/messages/index.mjs +78 -62
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +16 -16
- package/paging/GridPagerSettings.js +1 -1
- package/paging/GridPagerSettings.mjs +17 -13
- package/utils/index.js +1 -1
- package/utils/index.mjs +112 -104
- package/VirtualScrollFixed.js +0 -8
- package/VirtualScrollFixed.mjs +0 -52
- package/cells/GridCell.js +0 -8
- package/cells/GridCell.mjs +0 -52
- package/cells/GridDetailCell.js +0 -8
- package/cells/GridDetailCell.mjs +0 -26
- package/cells/GridEditCell.js +0 -8
- package/cells/GridEditCell.mjs +0 -35
- package/cells/GridGroupCell.js +0 -8
- package/cells/GridGroupCell.mjs +0 -74
- package/cells/GridHierarchyCell.js +0 -8
- package/cells/GridHierarchyCell.mjs +0 -33
- package/cells/GridRowReorderCell.js +0 -8
- package/cells/GridRowReorderCell.mjs +0 -42
- package/cells/GridSelectionCell.js +0 -8
- package/cells/GridSelectionCell.mjs +0 -30
- package/cells/client/DetailCellContainer.js +0 -9
- package/cells/client/DetailCellContainer.mjs +0 -27
- package/cells/client/GridCellContainer.js +0 -9
- package/cells/client/GridCellContainer.mjs +0 -69
- package/cells/client/GridEditCellContainer.js +0 -9
- package/cells/client/GridEditCellContainer.mjs +0 -61
- package/cells/client/GridGroupCellContainer.js +0 -9
- package/cells/client/GridGroupCellContainer.mjs +0 -88
- package/cells/client/GridHierarchyCellContainer.js +0 -9
- package/cells/client/GridHierarchyCellContainer.mjs +0 -64
- package/cells/client/GridRowReorderContainer.js +0 -9
- package/cells/client/GridRowReorderContainer.mjs +0 -31
- package/cells/client/GridSelectionCellContainer.js +0 -9
- package/cells/client/GridSelectionCellContainer.mjs +0 -61
- /package/cells/{client → editcell}/GridEditCellEditor.js +0 -0
- /package/cells/{client → editcell}/GridEditCellEditor.mjs +0 -0
- /package/cells/{client → groupcell}/GridGroupCellToggle.js +0 -0
- /package/cells/{client → groupcell}/GridGroupCellToggle.mjs +0 -0
- /package/cells/{client → hierarchycell}/GridHierarchyCellToggle.js +0 -0
- /package/cells/{client → hierarchycell}/GridHierarchyCellToggle.mjs +0 -0
- /package/cells/{client → selectioncell}/GridSelectionCellInput.js +0 -0
- /package/cells/{client → selectioncell}/GridSelectionCellInput.mjs +0 -0
package/index.d.mts
CHANGED
|
@@ -251,6 +251,7 @@ declare interface ExtendedColumnProps extends GridColumnProps {
|
|
|
251
251
|
/** @hidden _internal usage only */
|
|
252
252
|
_type?: 'edit' | 'expand';
|
|
253
253
|
rowSpannable?: Required<GridRowSpannableSettings>;
|
|
254
|
+
defaultCell?: any;
|
|
254
255
|
}
|
|
255
256
|
|
|
256
257
|
/**
|
|
@@ -273,6 +274,9 @@ export declare const getStatusData: (args: StatusDataArgs) => StatusItem[];
|
|
|
273
274
|
/**
|
|
274
275
|
* Represents the [KendoReact Grid component]({% slug overview_grid %}).
|
|
275
276
|
*
|
|
277
|
+
* @remarks
|
|
278
|
+
* Supported children components are: {@link GridColumn}, {@link GridToolbar}, {@link GridNoRecords}, {@link StatusBar}.
|
|
279
|
+
*
|
|
276
280
|
* @example
|
|
277
281
|
* ```jsx
|
|
278
282
|
* const App = () => {
|
|
@@ -304,7 +308,12 @@ export declare const GRID_PREVENT_SELECTION_ELEMENT = "data-prevent-selection";
|
|
|
304
308
|
/** The attribute required by the Grid selection on Grid `tr` elements. */
|
|
305
309
|
export declare const GRID_ROW_INDEX_ATTRIBUTE = "data-grid-row-index";
|
|
306
310
|
|
|
307
|
-
|
|
311
|
+
/**
|
|
312
|
+
* @hidden
|
|
313
|
+
*/
|
|
314
|
+
export declare const GridCell: (props: {
|
|
315
|
+
cellProps: GridCellProps;
|
|
316
|
+
}) => JSX.Element | null;
|
|
308
317
|
|
|
309
318
|
/**
|
|
310
319
|
* Represents the `GridCellBaseOptions` object that are passed to the handler.
|
|
@@ -467,7 +476,9 @@ export declare type GridColSpanProps = {
|
|
|
467
476
|
};
|
|
468
477
|
|
|
469
478
|
/**
|
|
470
|
-
*
|
|
479
|
+
* Represents the GridColumn component.
|
|
480
|
+
*
|
|
481
|
+
* @returns null
|
|
471
482
|
*/
|
|
472
483
|
export declare const GridColumn: React_2.FunctionComponent<GridColumnProps>;
|
|
473
484
|
|
|
@@ -509,6 +520,10 @@ export declare interface GridColumnMenuCheckboxFilterProps extends GridColumnMen
|
|
|
509
520
|
* Triggered on each subsequent expand state of the filter component.
|
|
510
521
|
*/
|
|
511
522
|
onExpandChange?: (nextExpandState: boolean) => void;
|
|
523
|
+
/**
|
|
524
|
+
* If set to `true`, checkbox filter expand button will not be rendered and chechbox filter menu will be expanded.
|
|
525
|
+
*/
|
|
526
|
+
alwaysExpand?: boolean;
|
|
512
527
|
/**
|
|
513
528
|
* Defines the component that will be rendered as a search box.
|
|
514
529
|
*/
|
|
@@ -583,6 +598,18 @@ declare interface GridColumnMenuColumnsChooserBaseProps extends GridColumnMenuBa
|
|
|
583
598
|
* The props of the GridColumnMenuColumnsChooser component.
|
|
584
599
|
*/
|
|
585
600
|
export declare interface GridColumnMenuColumnsChooserProps extends GridColumnMenuColumnsChooserBaseProps {
|
|
601
|
+
/**
|
|
602
|
+
* If set to `true`, column chooser expand button will not be rendered and column chooser menu will be expanded.
|
|
603
|
+
*/
|
|
604
|
+
alwaysExpand?: boolean;
|
|
605
|
+
/**
|
|
606
|
+
* Controls the expand state of the column chooser component.
|
|
607
|
+
*/
|
|
608
|
+
expanded?: boolean;
|
|
609
|
+
/**
|
|
610
|
+
* Triggered on each subsequent expand state of the column chooser component.
|
|
611
|
+
*/
|
|
612
|
+
onExpandChange?: (nextExpandState: boolean) => void;
|
|
586
613
|
}
|
|
587
614
|
|
|
588
615
|
/**
|
|
@@ -880,9 +907,6 @@ export declare const GridColumnMenuItemGroup: (props: GridColumnMenuItemGroupPro
|
|
|
880
907
|
declare interface GridColumnMenuItemGroupProps extends KendoReactComponentBaseProps {
|
|
881
908
|
}
|
|
882
909
|
|
|
883
|
-
declare interface GridColumnMenuItemGroupProps extends KendoReactComponentBaseProps {
|
|
884
|
-
}
|
|
885
|
-
|
|
886
910
|
/**
|
|
887
911
|
* The props of the GridColumnMenuItem component.
|
|
888
912
|
*/
|
|
@@ -907,6 +931,16 @@ declare interface GridColumnMenuItemProps {
|
|
|
907
931
|
* The selected state of the component.
|
|
908
932
|
*/
|
|
909
933
|
selected?: boolean;
|
|
934
|
+
/**
|
|
935
|
+
* @hidden
|
|
936
|
+
* States if the Column Menu item is expandable.
|
|
937
|
+
*/
|
|
938
|
+
expandable?: boolean;
|
|
939
|
+
/**
|
|
940
|
+
* @hidden
|
|
941
|
+
* States if the Column Menu item is expanded.
|
|
942
|
+
*/
|
|
943
|
+
expanded?: boolean;
|
|
910
944
|
}
|
|
911
945
|
|
|
912
946
|
/**
|
|
@@ -1703,7 +1737,9 @@ declare interface GridEditableSettings extends TableEditableSettings {
|
|
|
1703
1737
|
/**
|
|
1704
1738
|
* @hidden
|
|
1705
1739
|
*/
|
|
1706
|
-
export declare const GridEditCell: (props:
|
|
1740
|
+
export declare const GridEditCell: (props: {
|
|
1741
|
+
cellProps: GridCellProps;
|
|
1742
|
+
}) => JSX.Element | null;
|
|
1707
1743
|
|
|
1708
1744
|
/**
|
|
1709
1745
|
* Represents the object of the `onEditChange` Grid event.
|
|
@@ -1933,7 +1969,9 @@ export declare interface GridGroupableSettings {
|
|
|
1933
1969
|
/**
|
|
1934
1970
|
* @hidden
|
|
1935
1971
|
*/
|
|
1936
|
-
export declare const GridGroupCell: (props:
|
|
1972
|
+
export declare const GridGroupCell: (props: {
|
|
1973
|
+
cellProps: GridCellProps;
|
|
1974
|
+
}) => JSX.Element | null;
|
|
1937
1975
|
|
|
1938
1976
|
/**
|
|
1939
1977
|
* Represents the object of the `onGroupChange` Grid event.
|
|
@@ -2098,7 +2136,9 @@ export declare interface GridHeaderSelectionChangeEvent extends GridEvent {
|
|
|
2098
2136
|
/**
|
|
2099
2137
|
* @hidden
|
|
2100
2138
|
*/
|
|
2101
|
-
export declare const GridHierarchyCell: (props:
|
|
2139
|
+
export declare const GridHierarchyCell: (props: {
|
|
2140
|
+
cellProps: GridCellProps;
|
|
2141
|
+
}) => JSX.Element | null;
|
|
2102
2142
|
|
|
2103
2143
|
/**
|
|
2104
2144
|
* Represents the object of the `onItemChange` Grid event.
|
|
@@ -2173,6 +2213,14 @@ export declare const gridMessages: {
|
|
|
2173
2213
|
"grid.gridAriaLabel": string;
|
|
2174
2214
|
"grid.gridRowReorderAriaLabel": string;
|
|
2175
2215
|
"grid.selectRow": string;
|
|
2216
|
+
"grid.columnMenuColumnChooserTitle": string;
|
|
2217
|
+
"grid.gridAdaptiveColumnMenuFilterTitle": string;
|
|
2218
|
+
"grid.adaptiveColumnMenuChooserTitle": string;
|
|
2219
|
+
"grid.adaptiveColumnMenuChooserSubTitle": string;
|
|
2220
|
+
"grid.adaptiveColumnMenuCheckboxFilterTitle": string;
|
|
2221
|
+
"grid.columnMenuColumnChooserSelectedItems": string;
|
|
2222
|
+
"grid.columnChooserApplyButton": string;
|
|
2223
|
+
"grid.columnChooserResetButton": string;
|
|
2176
2224
|
'grid.filterEqOperator': string;
|
|
2177
2225
|
'grid.filterNotEqOperator': string;
|
|
2178
2226
|
'grid.filterIsNullOperator': string;
|
|
@@ -2290,9 +2338,20 @@ export declare interface GridPagerSettings {
|
|
|
2290
2338
|
*/
|
|
2291
2339
|
previousNext?: boolean;
|
|
2292
2340
|
/**
|
|
2293
|
-
* Defines if the pager will be responsive.
|
|
2341
|
+
* Defines if the pager will be responsive.
|
|
2342
|
+
* If true, hides the tools that do not fit to the available space.
|
|
2343
|
+
*
|
|
2344
|
+
* @default `true`
|
|
2294
2345
|
*/
|
|
2295
2346
|
responsive?: boolean;
|
|
2347
|
+
/**
|
|
2348
|
+
* Providing different rendering of the page sizes select element based on the screen dimensions.
|
|
2349
|
+
*/
|
|
2350
|
+
adaptive?: boolean;
|
|
2351
|
+
/**
|
|
2352
|
+
* Specifies the text that is rendered as title in the adaptive page sizes select element.
|
|
2353
|
+
*/
|
|
2354
|
+
adaptiveTitle?: string;
|
|
2296
2355
|
/**
|
|
2297
2356
|
* Defines if the pager will be navigatable.
|
|
2298
2357
|
*/
|
|
@@ -2630,8 +2689,12 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
|
|
|
2630
2689
|
* - `info: Boolean`—Toggles the information about the current page and the total number of records.
|
|
2631
2690
|
* - `type: PagerType`—Accepts the `numeric` (buttons with numbers) and `input` (input for typing the page number) values.
|
|
2632
2691
|
* - `pageSizes: Boolean` or `Array<number>`—Shows a menu for selecting the page size.
|
|
2692
|
+
* - `pageSizeValue: String or Number`—Sets the selected value of the page size Dropdownlist. It is useful when the selected value could also be a string not only a number.
|
|
2633
2693
|
* - `previousNext: Boolean`—Toggles the **Previous** and **Next** buttons.
|
|
2634
2694
|
* - `navigatable: Boolean`—Defines if the pager will be navigatable.
|
|
2695
|
+
* - `responsive: Boolean`—Defines if the pager will be responsive. If true, hides the tools that do not fit to the available space.
|
|
2696
|
+
* - `adaptive: Boolean`—Providing different rendering of the page sizes select element based on the screen dimensions.
|
|
2697
|
+
* - `adaptiveTitle: String`—Specifies the text that is rendered as title in the adaptive page sizes select element.
|
|
2635
2698
|
*
|
|
2636
2699
|
* @example
|
|
2637
2700
|
* ```jsx
|
|
@@ -3491,7 +3554,9 @@ export declare interface GridSelectableSettings extends TableSelectableSettings
|
|
|
3491
3554
|
/**
|
|
3492
3555
|
* @hidden
|
|
3493
3556
|
*/
|
|
3494
|
-
export declare const GridSelectionCell: (props:
|
|
3557
|
+
export declare const GridSelectionCell: (props: {
|
|
3558
|
+
cellProps: GridCellProps;
|
|
3559
|
+
}) => JSX.Element | null;
|
|
3495
3560
|
|
|
3496
3561
|
/**
|
|
3497
3562
|
* Represents the object of the `onSelectionChange` Grid event.
|
package/index.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ declare interface ExtendedColumnProps extends GridColumnProps {
|
|
|
251
251
|
/** @hidden _internal usage only */
|
|
252
252
|
_type?: 'edit' | 'expand';
|
|
253
253
|
rowSpannable?: Required<GridRowSpannableSettings>;
|
|
254
|
+
defaultCell?: any;
|
|
254
255
|
}
|
|
255
256
|
|
|
256
257
|
/**
|
|
@@ -273,6 +274,9 @@ export declare const getStatusData: (args: StatusDataArgs) => StatusItem[];
|
|
|
273
274
|
/**
|
|
274
275
|
* Represents the [KendoReact Grid component]({% slug overview_grid %}).
|
|
275
276
|
*
|
|
277
|
+
* @remarks
|
|
278
|
+
* Supported children components are: {@link GridColumn}, {@link GridToolbar}, {@link GridNoRecords}, {@link StatusBar}.
|
|
279
|
+
*
|
|
276
280
|
* @example
|
|
277
281
|
* ```jsx
|
|
278
282
|
* const App = () => {
|
|
@@ -304,7 +308,12 @@ export declare const GRID_PREVENT_SELECTION_ELEMENT = "data-prevent-selection";
|
|
|
304
308
|
/** The attribute required by the Grid selection on Grid `tr` elements. */
|
|
305
309
|
export declare const GRID_ROW_INDEX_ATTRIBUTE = "data-grid-row-index";
|
|
306
310
|
|
|
307
|
-
|
|
311
|
+
/**
|
|
312
|
+
* @hidden
|
|
313
|
+
*/
|
|
314
|
+
export declare const GridCell: (props: {
|
|
315
|
+
cellProps: GridCellProps;
|
|
316
|
+
}) => JSX.Element | null;
|
|
308
317
|
|
|
309
318
|
/**
|
|
310
319
|
* Represents the `GridCellBaseOptions` object that are passed to the handler.
|
|
@@ -467,7 +476,9 @@ export declare type GridColSpanProps = {
|
|
|
467
476
|
};
|
|
468
477
|
|
|
469
478
|
/**
|
|
470
|
-
*
|
|
479
|
+
* Represents the GridColumn component.
|
|
480
|
+
*
|
|
481
|
+
* @returns null
|
|
471
482
|
*/
|
|
472
483
|
export declare const GridColumn: React_2.FunctionComponent<GridColumnProps>;
|
|
473
484
|
|
|
@@ -509,6 +520,10 @@ export declare interface GridColumnMenuCheckboxFilterProps extends GridColumnMen
|
|
|
509
520
|
* Triggered on each subsequent expand state of the filter component.
|
|
510
521
|
*/
|
|
511
522
|
onExpandChange?: (nextExpandState: boolean) => void;
|
|
523
|
+
/**
|
|
524
|
+
* If set to `true`, checkbox filter expand button will not be rendered and chechbox filter menu will be expanded.
|
|
525
|
+
*/
|
|
526
|
+
alwaysExpand?: boolean;
|
|
512
527
|
/**
|
|
513
528
|
* Defines the component that will be rendered as a search box.
|
|
514
529
|
*/
|
|
@@ -583,6 +598,18 @@ declare interface GridColumnMenuColumnsChooserBaseProps extends GridColumnMenuBa
|
|
|
583
598
|
* The props of the GridColumnMenuColumnsChooser component.
|
|
584
599
|
*/
|
|
585
600
|
export declare interface GridColumnMenuColumnsChooserProps extends GridColumnMenuColumnsChooserBaseProps {
|
|
601
|
+
/**
|
|
602
|
+
* If set to `true`, column chooser expand button will not be rendered and column chooser menu will be expanded.
|
|
603
|
+
*/
|
|
604
|
+
alwaysExpand?: boolean;
|
|
605
|
+
/**
|
|
606
|
+
* Controls the expand state of the column chooser component.
|
|
607
|
+
*/
|
|
608
|
+
expanded?: boolean;
|
|
609
|
+
/**
|
|
610
|
+
* Triggered on each subsequent expand state of the column chooser component.
|
|
611
|
+
*/
|
|
612
|
+
onExpandChange?: (nextExpandState: boolean) => void;
|
|
586
613
|
}
|
|
587
614
|
|
|
588
615
|
/**
|
|
@@ -880,9 +907,6 @@ export declare const GridColumnMenuItemGroup: (props: GridColumnMenuItemGroupPro
|
|
|
880
907
|
declare interface GridColumnMenuItemGroupProps extends KendoReactComponentBaseProps {
|
|
881
908
|
}
|
|
882
909
|
|
|
883
|
-
declare interface GridColumnMenuItemGroupProps extends KendoReactComponentBaseProps {
|
|
884
|
-
}
|
|
885
|
-
|
|
886
910
|
/**
|
|
887
911
|
* The props of the GridColumnMenuItem component.
|
|
888
912
|
*/
|
|
@@ -907,6 +931,16 @@ declare interface GridColumnMenuItemProps {
|
|
|
907
931
|
* The selected state of the component.
|
|
908
932
|
*/
|
|
909
933
|
selected?: boolean;
|
|
934
|
+
/**
|
|
935
|
+
* @hidden
|
|
936
|
+
* States if the Column Menu item is expandable.
|
|
937
|
+
*/
|
|
938
|
+
expandable?: boolean;
|
|
939
|
+
/**
|
|
940
|
+
* @hidden
|
|
941
|
+
* States if the Column Menu item is expanded.
|
|
942
|
+
*/
|
|
943
|
+
expanded?: boolean;
|
|
910
944
|
}
|
|
911
945
|
|
|
912
946
|
/**
|
|
@@ -1703,7 +1737,9 @@ declare interface GridEditableSettings extends TableEditableSettings {
|
|
|
1703
1737
|
/**
|
|
1704
1738
|
* @hidden
|
|
1705
1739
|
*/
|
|
1706
|
-
export declare const GridEditCell: (props:
|
|
1740
|
+
export declare const GridEditCell: (props: {
|
|
1741
|
+
cellProps: GridCellProps;
|
|
1742
|
+
}) => JSX.Element | null;
|
|
1707
1743
|
|
|
1708
1744
|
/**
|
|
1709
1745
|
* Represents the object of the `onEditChange` Grid event.
|
|
@@ -1933,7 +1969,9 @@ export declare interface GridGroupableSettings {
|
|
|
1933
1969
|
/**
|
|
1934
1970
|
* @hidden
|
|
1935
1971
|
*/
|
|
1936
|
-
export declare const GridGroupCell: (props:
|
|
1972
|
+
export declare const GridGroupCell: (props: {
|
|
1973
|
+
cellProps: GridCellProps;
|
|
1974
|
+
}) => JSX.Element | null;
|
|
1937
1975
|
|
|
1938
1976
|
/**
|
|
1939
1977
|
* Represents the object of the `onGroupChange` Grid event.
|
|
@@ -2098,7 +2136,9 @@ export declare interface GridHeaderSelectionChangeEvent extends GridEvent {
|
|
|
2098
2136
|
/**
|
|
2099
2137
|
* @hidden
|
|
2100
2138
|
*/
|
|
2101
|
-
export declare const GridHierarchyCell: (props:
|
|
2139
|
+
export declare const GridHierarchyCell: (props: {
|
|
2140
|
+
cellProps: GridCellProps;
|
|
2141
|
+
}) => JSX.Element | null;
|
|
2102
2142
|
|
|
2103
2143
|
/**
|
|
2104
2144
|
* Represents the object of the `onItemChange` Grid event.
|
|
@@ -2173,6 +2213,14 @@ export declare const gridMessages: {
|
|
|
2173
2213
|
"grid.gridAriaLabel": string;
|
|
2174
2214
|
"grid.gridRowReorderAriaLabel": string;
|
|
2175
2215
|
"grid.selectRow": string;
|
|
2216
|
+
"grid.columnMenuColumnChooserTitle": string;
|
|
2217
|
+
"grid.gridAdaptiveColumnMenuFilterTitle": string;
|
|
2218
|
+
"grid.adaptiveColumnMenuChooserTitle": string;
|
|
2219
|
+
"grid.adaptiveColumnMenuChooserSubTitle": string;
|
|
2220
|
+
"grid.adaptiveColumnMenuCheckboxFilterTitle": string;
|
|
2221
|
+
"grid.columnMenuColumnChooserSelectedItems": string;
|
|
2222
|
+
"grid.columnChooserApplyButton": string;
|
|
2223
|
+
"grid.columnChooserResetButton": string;
|
|
2176
2224
|
'grid.filterEqOperator': string;
|
|
2177
2225
|
'grid.filterNotEqOperator': string;
|
|
2178
2226
|
'grid.filterIsNullOperator': string;
|
|
@@ -2290,9 +2338,20 @@ export declare interface GridPagerSettings {
|
|
|
2290
2338
|
*/
|
|
2291
2339
|
previousNext?: boolean;
|
|
2292
2340
|
/**
|
|
2293
|
-
* Defines if the pager will be responsive.
|
|
2341
|
+
* Defines if the pager will be responsive.
|
|
2342
|
+
* If true, hides the tools that do not fit to the available space.
|
|
2343
|
+
*
|
|
2344
|
+
* @default `true`
|
|
2294
2345
|
*/
|
|
2295
2346
|
responsive?: boolean;
|
|
2347
|
+
/**
|
|
2348
|
+
* Providing different rendering of the page sizes select element based on the screen dimensions.
|
|
2349
|
+
*/
|
|
2350
|
+
adaptive?: boolean;
|
|
2351
|
+
/**
|
|
2352
|
+
* Specifies the text that is rendered as title in the adaptive page sizes select element.
|
|
2353
|
+
*/
|
|
2354
|
+
adaptiveTitle?: string;
|
|
2296
2355
|
/**
|
|
2297
2356
|
* Defines if the pager will be navigatable.
|
|
2298
2357
|
*/
|
|
@@ -2630,8 +2689,12 @@ export declare interface GridProps extends KendoReactComponentBaseProps {
|
|
|
2630
2689
|
* - `info: Boolean`—Toggles the information about the current page and the total number of records.
|
|
2631
2690
|
* - `type: PagerType`—Accepts the `numeric` (buttons with numbers) and `input` (input for typing the page number) values.
|
|
2632
2691
|
* - `pageSizes: Boolean` or `Array<number>`—Shows a menu for selecting the page size.
|
|
2692
|
+
* - `pageSizeValue: String or Number`—Sets the selected value of the page size Dropdownlist. It is useful when the selected value could also be a string not only a number.
|
|
2633
2693
|
* - `previousNext: Boolean`—Toggles the **Previous** and **Next** buttons.
|
|
2634
2694
|
* - `navigatable: Boolean`—Defines if the pager will be navigatable.
|
|
2695
|
+
* - `responsive: Boolean`—Defines if the pager will be responsive. If true, hides the tools that do not fit to the available space.
|
|
2696
|
+
* - `adaptive: Boolean`—Providing different rendering of the page sizes select element based on the screen dimensions.
|
|
2697
|
+
* - `adaptiveTitle: String`—Specifies the text that is rendered as title in the adaptive page sizes select element.
|
|
2635
2698
|
*
|
|
2636
2699
|
* @example
|
|
2637
2700
|
* ```jsx
|
|
@@ -3491,7 +3554,9 @@ export declare interface GridSelectableSettings extends TableSelectableSettings
|
|
|
3491
3554
|
/**
|
|
3492
3555
|
* @hidden
|
|
3493
3556
|
*/
|
|
3494
|
-
export declare const GridSelectionCell: (props:
|
|
3557
|
+
export declare const GridSelectionCell: (props: {
|
|
3558
|
+
cellProps: GridCellProps;
|
|
3559
|
+
}) => JSX.Element | null;
|
|
3495
3560
|
|
|
3496
3561
|
/**
|
|
3497
3562
|
* Represents the object of the `onSelectionChange` Grid event.
|
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 C=require("./Grid.js"),G=require("./GridColumn.js"),a=require("./columnMenu/GridColumnMenuWrapper.js"),s=require("./columnMenu/GridColumnMenuGroup.js"),l=require("./columnMenu/GridColumnMenuSort.js"),o=require("./columnMenu/GridColumnMenuFilter.js"),m=require("./columnMenu/GridColumnMenuFilterUI.js"),c=require("./columnMenu/GridColumnMenuFilterCell.js"),M=require("./columnMenu/GridColumnMenuCheckboxFilter.js"),g=require("./columnMenu/GridColumnMenuColumnsList.js"),p=require("./columnMenu/GridColumnMenuColumnsChooser.js"),I=require("./cells/GridCell.js"),q=require("./cells/GridEditCell.js"),S=require("./cells/GridGroupCell.js"),F=require("./cells/GridHierarchyCell.js"),D=require("./cells/GridFilterCell.js"),E=require("./header/GridHeaderCell.js"),R=require("./cells/GridSelectionCell.js"),T=require("./rows/GridDetailRow.js"),P=require("./rows/GridRow.js"),h=require("./GridToolbar.js"),x=require("./components/noRecords/GridNoRecords.js"),_=require("./columnMenu/GridColumnMenuItem.js"),N=require("./columnMenu/GridColumnMenuItemContent.js"),b=require("./columnMenu/GridColumnMenuItemGroup.js"),t=require("./constants/index.js"),n=require("@progress/kendo-react-data-tools"),B=require("./drag/CommonDragLogic.js"),r=require("./filterCommon.js"),e=require("./messages/index.js"),i=require("./StatusBar.js"),u=require("./contextMenu/GridContextMenu.js"),d=require("./contextMenu/enums.js"),L=require("./GridSearchBox.js");exports.Grid=C.Grid;exports.GridColumn=G.GridColumn;exports.GridColumnMenuWrapper=a.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=m.GridColumnMenuFilterUI;exports.GridColumnMenuFilterCell=c.GridColumnMenuFilterCell;exports.GridColumnMenuCheckboxFilter=M.GridColumnMenuCheckboxFilter;exports.GridColumnMenuColumnsList=g.GridColumnMenuColumnsList;exports.GridColumnMenuColumnsChooser=p.GridColumnMenuColumnsChooser;exports.GridCell=I.GridCell;exports.GridEditCell=q.GridEditCell;exports.GridGroupCell=S.GridGroupCell;exports.GridHierarchyCell=F.GridHierarchyCell;exports.GridFilterCell=D.GridFilterCell;exports.GridHeaderCell=E.GridHeaderCell;exports.GridSelectionCell=R.GridSelectionCell;exports.GridDetailRow=T.GridDetailRow;exports.GridRow=P.GridRow;exports.GridToolbar=h.GridToolbar;exports.GridNoRecords=x.GridNoRecords;exports.GridColumnMenuItem=_.GridColumnMenuItem;exports.GridColumnMenuItemContent=N.GridColumnMenuItemContent;exports.GridColumnMenuItemGroup=b.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:()=>n.getSelectedState});Object.defineProperty(exports,"getSelectedStateFromKeyDown",{enumerable:!0,get:()=>n.getSelectedStateFromKeyDown});Object.defineProperty(exports,"setSelectedState",{enumerable:!0,get:()=>n.setSelectedState});exports.GridCommonDragLogic=B.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=i.StatusBar;exports.getStatusData=i.getStatusData;exports.leafColumns=i.leafColumns;exports.GridContextMenu=u.GridContextMenu;exports.contextMenuItemsMap=u.contextMenuItemsMap;exports.GridContextMenuAnchorPart=d.GridContextMenuAnchorPart;exports.GridContextMenuItemNames=d.GridContextMenuItemNames;exports.GridSearchBox=L.GridSearchBox;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const C=require("./Grid.js"),G=require("./GridColumn.js"),a=require("./columnMenu/GridColumnMenuWrapper.js"),s=require("./columnMenu/GridColumnMenuGroup.js"),l=require("./columnMenu/GridColumnMenuSort.js"),o=require("./columnMenu/GridColumnMenuFilter.js"),m=require("./columnMenu/GridColumnMenuFilterUI.js"),c=require("./columnMenu/GridColumnMenuFilterCell.js"),M=require("./columnMenu/GridColumnMenuCheckboxFilter.js"),g=require("./columnMenu/GridColumnMenuColumnsList.js"),p=require("./columnMenu/GridColumnMenuColumnsChooser.js"),I=require("./cells/datacell/GridCell.js"),q=require("./cells/editcell/GridEditCell.js"),S=require("./cells/groupcell/GridGroupCell.js"),F=require("./cells/hierarchycell/GridHierarchyCell.js"),D=require("./cells/GridFilterCell.js"),E=require("./header/GridHeaderCell.js"),R=require("./cells/selectioncell/GridSelectionCell.js"),T=require("./rows/GridDetailRow.js"),P=require("./rows/GridRow.js"),h=require("./GridToolbar.js"),x=require("./components/noRecords/GridNoRecords.js"),_=require("./columnMenu/GridColumnMenuItem.js"),N=require("./columnMenu/GridColumnMenuItemContent.js"),b=require("./columnMenu/GridColumnMenuItemGroup.js"),t=require("./constants/index.js"),n=require("@progress/kendo-react-data-tools"),B=require("./drag/CommonDragLogic.js"),r=require("./filterCommon.js"),e=require("./messages/index.js"),i=require("./StatusBar.js"),u=require("./contextMenu/GridContextMenu.js"),d=require("./contextMenu/enums.js"),L=require("./GridSearchBox.js");exports.Grid=C.Grid;exports.GridColumn=G.GridColumn;exports.GridColumnMenuWrapper=a.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=m.GridColumnMenuFilterUI;exports.GridColumnMenuFilterCell=c.GridColumnMenuFilterCell;exports.GridColumnMenuCheckboxFilter=M.GridColumnMenuCheckboxFilter;exports.GridColumnMenuColumnsList=g.GridColumnMenuColumnsList;exports.GridColumnMenuColumnsChooser=p.GridColumnMenuColumnsChooser;exports.GridCell=I.GridCell;exports.GridEditCell=q.GridEditCell;exports.GridGroupCell=S.GridGroupCell;exports.GridHierarchyCell=F.GridHierarchyCell;exports.GridFilterCell=D.GridFilterCell;exports.GridHeaderCell=E.GridHeaderCell;exports.GridSelectionCell=R.GridSelectionCell;exports.GridDetailRow=T.GridDetailRow;exports.GridRow=P.GridRow;exports.GridToolbar=h.GridToolbar;exports.GridNoRecords=x.GridNoRecords;exports.GridColumnMenuItem=_.GridColumnMenuItem;exports.GridColumnMenuItemContent=N.GridColumnMenuItemContent;exports.GridColumnMenuItemGroup=b.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:()=>n.getSelectedState});Object.defineProperty(exports,"getSelectedStateFromKeyDown",{enumerable:!0,get:()=>n.getSelectedStateFromKeyDown});Object.defineProperty(exports,"setSelectedState",{enumerable:!0,get:()=>n.setSelectedState});exports.GridCommonDragLogic=B.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=i.StatusBar;exports.getStatusData=i.getStatusData;exports.leafColumns=i.leafColumns;exports.GridContextMenu=u.GridContextMenu;exports.contextMenuItemsMap=u.contextMenuItemsMap;exports.GridContextMenuAnchorPart=d.GridContextMenuAnchorPart;exports.GridContextMenuItemNames=d.GridContextMenuItemNames;exports.GridSearchBox=L.GridSearchBox;
|
package/index.mjs
CHANGED
|
@@ -16,13 +16,13 @@ import { GridColumnMenuFilterCell as I } from "./columnMenu/GridColumnMenuFilter
|
|
|
16
16
|
import { GridColumnMenuCheckboxFilter as D } from "./columnMenu/GridColumnMenuCheckboxFilter.mjs";
|
|
17
17
|
import { GridColumnMenuColumnsList as F } from "./columnMenu/GridColumnMenuColumnsList.mjs";
|
|
18
18
|
import { GridColumnMenuColumnsChooser as T } from "./columnMenu/GridColumnMenuColumnsChooser.mjs";
|
|
19
|
-
import { GridCell as _ } from "./cells/GridCell.mjs";
|
|
20
|
-
import { GridEditCell as N } from "./cells/GridEditCell.mjs";
|
|
21
|
-
import { GridGroupCell as B } from "./cells/GridGroupCell.mjs";
|
|
22
|
-
import { GridHierarchyCell as O } from "./cells/GridHierarchyCell.mjs";
|
|
19
|
+
import { GridCell as _ } from "./cells/datacell/GridCell.mjs";
|
|
20
|
+
import { GridEditCell as N } from "./cells/editcell/GridEditCell.mjs";
|
|
21
|
+
import { GridGroupCell as B } from "./cells/groupcell/GridGroupCell.mjs";
|
|
22
|
+
import { GridHierarchyCell as O } from "./cells/hierarchycell/GridHierarchyCell.mjs";
|
|
23
23
|
import { GridFilterCell as b } from "./cells/GridFilterCell.mjs";
|
|
24
24
|
import { GridHeaderCell as y } from "./header/GridHeaderCell.mjs";
|
|
25
|
-
import { GridSelectionCell as H } from "./cells/GridSelectionCell.mjs";
|
|
25
|
+
import { GridSelectionCell as H } from "./cells/selectioncell/GridSelectionCell.mjs";
|
|
26
26
|
import { GridDetailRow as W } from "./rows/GridDetailRow.mjs";
|
|
27
27
|
import { GridRow as k } from "./rows/GridRow.mjs";
|
|
28
28
|
import { GridToolbar as j } from "./GridToolbar.mjs";
|
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",
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="grid.noRecords",t="grid.pagerInfo",r="grid.pagerFirstPage",o="grid.pagerPreviousPage",l="grid.pagerNextPage",i="grid.pagerLastPage",a="grid.pagerItemsPerPage",n="grid.pagerPage",s="grid.pagerPageSizeAriaLabel",g="grid.pagerOf",d="grid.pagerTotalPages",u="grid.groupPanelEmpty",p="grid.groupColumn",c="grid.ungroupColumn",C="grid.columnMenu",f="grid.filterApplyButton",m="grid.filterClearButton",h="grid.filterResetButton",A="grid.filterSubmitButton",P="grid.filterTitle",b="grid.sortAscending",S="grid.sortDescending",I="grid.searchPlaceholder",T="grid.searchboxPlaceholder",O="grid.filterCheckAll",B="grid.filterChooseOperator",L="grid.filterSelectAll",v="grid.filterSelectedItems",M="grid.sortAriaLabel",R="grid.editDialogTitle",E="grid.editDialogSaveButtonTitle",x="grid.editDialogCancelButtonTitle",y="grid.filterAriaLabel",D="grid.groupPanelAriaLabel",F="grid.groupExpand",w="grid.groupCollapse",q="grid.detailExpand",N="grid.detailCollapse",G="grid.selectRow",k="grid.gridAriaLabel",z="grid.gridRowReorderAriaLabel",W="grid.gridAdaptiveColumnMenuFilterTitle",j="grid.columnMenuColumnChooserTitle",U="grid.columnMenuColumnChooserSelectedItems",H="grid.adaptiveColumnMenuChooserTitle",J="grid.adaptiveColumnMenuChooserSubTitle",K="grid.columnChooserApplyButton",Q="grid.columnChooserResetButton",V="grid.adaptiveColumnMenuCheckboxFilterTitle",X={[q]:"Expand detail row",[N]:"Collapse detail row",[F]:"Expand group",[w]:"Collapse Group",[e]:"No records available",[u]:"Drag a column header and drop it here to group by that column",[f]:"Apply",[m]:"Clear",[h]:"Reset",[A]:"Filter",[P]:"Filter",[b]:"Sort Ascending",[S]:"Sort Descending",[M]:"Sortable",[p]:"Group Column",[c]:"Ungroup Column",[C]:"Column menu",[a]:"items per page",[t]:"{0} - {1} of {2} items",[r]:"Go to the first page",[o]:"Go to the previous page",[l]:"Go to the next page",[i]:"Go to the last page",[n]:"Page",[s]:"Page size",[g]:"of",[d]:"{0}",[I]:"Search",[T]:"Search...",[O]:"Check All",[R]:"Edit Dialog",[E]:"Save",[x]:"Cancel",[B]:"Choose Operator",[v]:"selected items",[L]:"Select All",[y]:"Filter",[D]:"Group panel",[k]:"Table",[z]:"Drag row",[G]:"Select Row",[j]:"Columns Chooser",[W]:"Filter by",[H]:"Columns Chooser",[J]:"Selected fields are visible",[V]:"Checkbox Filter",[U]:"Selected items",[K]:"Apply",[Q]:"Reset","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.adaptiveColumnMenuCheckboxFilterTitle=V;exports.adaptiveColumnMenuChooserSubTitle=J;exports.adaptiveColumnMenuChooserTitle=H;exports.adaptiveColumnMenuFilterTitle=W;exports.columnChooserApplyButton=K;exports.columnChooserResetButton=Q;exports.columnMenu=C;exports.columnMenuColumnChooserSelectedItems=U;exports.columnMenuColumnChooserTitle=j;exports.detailCollapse=N;exports.detailExpand=q;exports.editDialogCancelButtonTitle=x;exports.editDialogSaveButtonTitle=E;exports.editDialogTitle=R;exports.filterApplyButton=f;exports.filterAriaLabel=y;exports.filterCheckAll=O;exports.filterChooseOperator=B;exports.filterClearButton=m;exports.filterResetButton=h;exports.filterSelectAll=L;exports.filterSelectedItems=v;exports.filterSubmitButton=A;exports.filterTitle=P;exports.gridAriaLabel=k;exports.gridRowReorderAriaLabel=z;exports.groupCollapse=w;exports.groupColumn=p;exports.groupExpand=F;exports.groupPanelAriaLabel=D;exports.groupPanelEmpty=u;exports.messages=X;exports.noRecords=e;exports.pagerFirstPage=r;exports.pagerInfo=t;exports.pagerItemPerPage=a;exports.pagerLastPage=i;exports.pagerNextPage=l;exports.pagerOf=g;exports.pagerPage=n;exports.pagerPageSizeAriaLabel=s;exports.pagerPreviousPage=o;exports.pagerTotalPages=d;exports.searchPlaceholder=I;exports.searchboxPlaceholder=T;exports.selectRow=G;exports.sortAriaLabel=M;exports.sortAscending=b;exports.sortDescending=S;exports.ungroupColumn=c;
|
package/messages/index.mjs
CHANGED
|
@@ -5,48 +5,56 @@
|
|
|
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",
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
8
|
+
const e = "grid.noRecords", r = "grid.pagerInfo", t = "grid.pagerFirstPage", o = "grid.pagerPreviousPage", l = "grid.pagerNextPage", i = "grid.pagerLastPage", a = "grid.pagerItemsPerPage", n = "grid.pagerPage", s = "grid.pagerPageSizeAriaLabel", g = "grid.pagerOf", d = "grid.pagerTotalPages", p = "grid.groupPanelEmpty", c = "grid.groupColumn", u = "grid.ungroupColumn", f = "grid.columnMenu", C = "grid.filterApplyButton", m = "grid.filterClearButton", h = "grid.filterResetButton", A = "grid.filterSubmitButton", I = "grid.filterTitle", P = "grid.sortAscending", b = "grid.sortDescending", O = "grid.searchPlaceholder", S = "grid.searchboxPlaceholder", T = "grid.filterCheckAll", B = "grid.filterChooseOperator", L = "grid.filterSelectAll", E = "grid.filterSelectedItems", v = "grid.sortAriaLabel", x = "grid.editDialogTitle", R = "grid.editDialogSaveButtonTitle", y = "grid.editDialogCancelButtonTitle", M = "grid.filterAriaLabel", D = "grid.groupPanelAriaLabel", F = "grid.groupExpand", q = "grid.groupCollapse", w = "grid.detailExpand", G = "grid.detailCollapse", N = "grid.selectRow", k = "grid.gridAriaLabel", z = "grid.gridRowReorderAriaLabel", W = "grid.gridAdaptiveColumnMenuFilterTitle", U = "grid.columnMenuColumnChooserTitle", j = "grid.columnMenuColumnChooserSelectedItems", H = "grid.adaptiveColumnMenuChooserTitle", J = "grid.adaptiveColumnMenuChooserSubTitle", K = "grid.columnChooserApplyButton", Q = "grid.columnChooserResetButton", V = "grid.adaptiveColumnMenuCheckboxFilterTitle", X = {
|
|
9
|
+
[w]: "Expand detail row",
|
|
10
|
+
[G]: "Collapse detail row",
|
|
11
|
+
[F]: "Expand group",
|
|
12
|
+
[q]: "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
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
[
|
|
15
|
+
[C]: "Apply",
|
|
16
|
+
[m]: "Clear",
|
|
17
|
+
[h]: "Reset",
|
|
18
|
+
[A]: "Filter",
|
|
19
|
+
[I]: "Filter",
|
|
20
|
+
[P]: "Sort Ascending",
|
|
21
|
+
[b]: "Sort Descending",
|
|
22
|
+
[v]: "Sortable",
|
|
23
23
|
[c]: "Group Column",
|
|
24
24
|
[u]: "Ungroup Column",
|
|
25
25
|
[f]: "Column menu",
|
|
26
|
-
[
|
|
26
|
+
[a]: "items per page",
|
|
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
|
-
[
|
|
31
|
-
[
|
|
32
|
-
[
|
|
30
|
+
[l]: "Go to the next page",
|
|
31
|
+
[i]: "Go to the last page",
|
|
32
|
+
[n]: "Page",
|
|
33
33
|
[s]: "Page size",
|
|
34
|
-
[
|
|
34
|
+
[g]: "of",
|
|
35
35
|
[d]: "{0}",
|
|
36
|
-
[
|
|
36
|
+
[O]: "Search",
|
|
37
37
|
[S]: "Search...",
|
|
38
|
-
[
|
|
39
|
-
[
|
|
40
|
-
[
|
|
41
|
-
[
|
|
42
|
-
[
|
|
43
|
-
[
|
|
44
|
-
[
|
|
45
|
-
[
|
|
46
|
-
[
|
|
47
|
-
[
|
|
48
|
-
[
|
|
49
|
-
[
|
|
38
|
+
[T]: "Check All",
|
|
39
|
+
[x]: "Edit Dialog",
|
|
40
|
+
[R]: "Save",
|
|
41
|
+
[y]: "Cancel",
|
|
42
|
+
[B]: "Choose Operator",
|
|
43
|
+
[E]: "selected items",
|
|
44
|
+
[L]: "Select All",
|
|
45
|
+
[M]: "Filter",
|
|
46
|
+
[D]: "Group panel",
|
|
47
|
+
[k]: "Table",
|
|
48
|
+
[z]: "Drag row",
|
|
49
|
+
[N]: "Select Row",
|
|
50
|
+
[U]: "Columns Chooser",
|
|
51
|
+
[W]: "Filter by",
|
|
52
|
+
[H]: "Columns Chooser",
|
|
53
|
+
[J]: "Selected fields are visible",
|
|
54
|
+
[V]: "Checkbox Filter",
|
|
55
|
+
[j]: "Selected items",
|
|
56
|
+
[K]: "Apply",
|
|
57
|
+
[Q]: "Reset",
|
|
50
58
|
"grid.filterEqOperator": "Is equal to",
|
|
51
59
|
"grid.filterNotEqOperator": "Is not equal to",
|
|
52
60
|
"grid.filterIsNullOperator": "Is null",
|
|
@@ -72,46 +80,54 @@ const e = "grid.noRecords", r = "grid.pagerInfo", t = "grid.pagerFirstPage", o =
|
|
|
72
80
|
"grid.filterOrLogic": "Or"
|
|
73
81
|
};
|
|
74
82
|
export {
|
|
83
|
+
V as adaptiveColumnMenuCheckboxFilterTitle,
|
|
84
|
+
J as adaptiveColumnMenuChooserSubTitle,
|
|
85
|
+
H as adaptiveColumnMenuChooserTitle,
|
|
86
|
+
W as adaptiveColumnMenuFilterTitle,
|
|
87
|
+
K as columnChooserApplyButton,
|
|
88
|
+
Q as columnChooserResetButton,
|
|
75
89
|
f as columnMenu,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
90
|
+
j as columnMenuColumnChooserSelectedItems,
|
|
91
|
+
U as columnMenuColumnChooserTitle,
|
|
92
|
+
G as detailCollapse,
|
|
93
|
+
w as detailExpand,
|
|
94
|
+
y as editDialogCancelButtonTitle,
|
|
95
|
+
R as editDialogSaveButtonTitle,
|
|
96
|
+
x as editDialogTitle,
|
|
97
|
+
C as filterApplyButton,
|
|
98
|
+
M as filterAriaLabel,
|
|
99
|
+
T as filterCheckAll,
|
|
100
|
+
B as filterChooseOperator,
|
|
101
|
+
m as filterClearButton,
|
|
102
|
+
h as filterResetButton,
|
|
103
|
+
L as filterSelectAll,
|
|
104
|
+
E as filterSelectedItems,
|
|
105
|
+
A as filterSubmitButton,
|
|
106
|
+
I as filterTitle,
|
|
107
|
+
k as gridAriaLabel,
|
|
108
|
+
z as gridRowReorderAriaLabel,
|
|
109
|
+
q as groupCollapse,
|
|
94
110
|
c as groupColumn,
|
|
95
|
-
|
|
96
|
-
|
|
111
|
+
F as groupExpand,
|
|
112
|
+
D as groupPanelAriaLabel,
|
|
97
113
|
p as groupPanelEmpty,
|
|
98
|
-
|
|
114
|
+
X as messages,
|
|
99
115
|
e as noRecords,
|
|
100
116
|
t as pagerFirstPage,
|
|
101
117
|
r as pagerInfo,
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
118
|
+
a as pagerItemPerPage,
|
|
119
|
+
i as pagerLastPage,
|
|
120
|
+
l as pagerNextPage,
|
|
121
|
+
g as pagerOf,
|
|
122
|
+
n as pagerPage,
|
|
107
123
|
s as pagerPageSizeAriaLabel,
|
|
108
124
|
o as pagerPreviousPage,
|
|
109
125
|
d as pagerTotalPages,
|
|
110
|
-
|
|
126
|
+
O as searchPlaceholder,
|
|
111
127
|
S as searchboxPlaceholder,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
128
|
+
N as selectRow,
|
|
129
|
+
v as sortAriaLabel,
|
|
130
|
+
P as sortAscending,
|
|
131
|
+
b as sortDescending,
|
|
116
132
|
u as ungroupColumn
|
|
117
133
|
};
|
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: 1747133238,version:"11.0.0-develop.10",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: "
|
|
13
|
+
publishDate: 1747133238,
|
|
14
|
+
version: "11.0.0-develop.10",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|