@progress/kendo-react-grid 5.19.0-dev.202309211619 → 5.19.0-dev.202309211709
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cdn/js/kendo-react-grid.js +1 -1
- package/dist/es/Grid.js +11 -13
- package/dist/es/drag/GroupingIndicator.js +2 -4
- package/dist/es/footer/FooterRow.js +1 -2
- package/dist/es/header/GroupPanel.js +1 -1
- package/dist/es/messages/index.d.ts +5 -0
- package/dist/es/messages/index.js +5 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/Grid.js +11 -13
- package/dist/npm/drag/GroupingIndicator.js +1 -3
- package/dist/npm/footer/FooterRow.js +1 -2
- package/dist/npm/header/GroupPanel.js +1 -1
- package/dist/npm/messages/index.d.ts +5 -0
- package/dist/npm/messages/index.js +6 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-grid.js +1 -1
- package/package.json +18 -18
package/dist/es/Grid.js
CHANGED
|
@@ -770,18 +770,16 @@ var Grid = /** @class */ (function (_super) {
|
|
|
770
770
|
_a), this.props.className), ref: function (el) { _this._element = el; }, "aria-label": this.props.ariaLabel, onKeyDown: this.onKeyDown, onFocus: this.onFocus }, tableKeyboardNavigationScopeAttributes),
|
|
771
771
|
toolbar,
|
|
772
772
|
groupingPanel,
|
|
773
|
-
React.createElement(TableSelection, { selectable: this.props.selectable, onRelease: this.selectionRelease, childRef: function (table) {
|
|
774
|
-
_this.tableElement = table;
|
|
775
|
-
} },
|
|
773
|
+
React.createElement(TableSelection, { selectable: this.props.selectable, onRelease: this.selectionRelease, childRef: function (table) { _this.tableElement = table; } },
|
|
776
774
|
React.createElement("table", { className: classNames('k-table k-grid-table', (_b = {}, _b["k-table-".concat(kendoThemeMaps.sizeMap[this.props.size] || this.props.size)] = this.props.size, _b)), style: { userSelect: tableUserSelect, display: tableDisplay } },
|
|
777
775
|
colGroups,
|
|
778
776
|
header,
|
|
779
777
|
React.createElement("tbody", __assign({ role: 'rowgroup', className: 'k-table-tbody' }, tableKeyboardNavigationBodyAttributes), body),
|
|
780
778
|
footer)),
|
|
781
|
-
this.props.pageable && pager,
|
|
782
779
|
enableDragClues && (React.createElement(React.Fragment, null,
|
|
783
780
|
React.createElement(DropClue, { ref: this.dragLogic.refDropElementClue }),
|
|
784
|
-
React.createElement(DragClue, { ref: this.dragLogic.refDragElementClue }))))
|
|
781
|
+
React.createElement(DragClue, { ref: this.dragLogic.refDragElementClue })))),
|
|
782
|
+
this.props.pageable && pager));
|
|
785
783
|
}
|
|
786
784
|
var wrapperStyle = this.props.style || {};
|
|
787
785
|
if (this.props.scrollable === 'virtual') {
|
|
@@ -801,7 +799,7 @@ var Grid = /** @class */ (function (_super) {
|
|
|
801
799
|
}, "aria-label": this.props.ariaLabel, onKeyDown: this.onKeyDown, onFocus: this.onFocus }, tableKeyboardNavigationScopeAttributes),
|
|
802
800
|
toolbar,
|
|
803
801
|
groupingPanel,
|
|
804
|
-
React.createElement("div", {
|
|
802
|
+
React.createElement("div", { className: 'k-grid-aria-root', role: "grid", "aria-colcount": leafColumns.length, "aria-rowcount": total, id: this._gridRoleElementId },
|
|
805
803
|
header,
|
|
806
804
|
React.createElement("div", { className: "k-grid-container", role: "presentation" },
|
|
807
805
|
React.createElement("div", { ref: this.containerRef, className: "k-grid-content k-virtual-content", onScroll: this.scrollHandler, role: "presentation" },
|
|
@@ -818,13 +816,13 @@ var Grid = /** @class */ (function (_super) {
|
|
|
818
816
|
React.createElement("tbody", __assign({ className: 'k-table-tbody', ref: this.tableBodyRef, role: 'rowgroup' }, tableKeyboardNavigationBodyAttributes), body)))),
|
|
819
817
|
React.createElement("div", { className: "k-height-container", role: "presentation" },
|
|
820
818
|
React.createElement("div", { style: this.props.scrollable === 'virtual' ?
|
|
821
|
-
{ 'height': (this.vs.containerHeight) + 'px' } : {} }))
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
React.createElement(
|
|
827
|
-
this.
|
|
819
|
+
{ 'height': (this.vs.containerHeight) + 'px' } : {} })),
|
|
820
|
+
footer)),
|
|
821
|
+
enableDragClues && (React.createElement(React.Fragment, null,
|
|
822
|
+
React.createElement(DropClue, { ref: this.dragLogic.refDropElementClue }),
|
|
823
|
+
React.createElement(DragClue, { ref: this.dragLogic.refDragElementClue }))),
|
|
824
|
+
this.showLicenseWatermark && React.createElement(WatermarkOverlay, null)),
|
|
825
|
+
this.props.pageable && pager)));
|
|
828
826
|
};
|
|
829
827
|
Grid.prototype.selectionChange = function (options) {
|
|
830
828
|
if (this.props.onSelectionChange) {
|
|
@@ -15,8 +15,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
15
15
|
})();
|
|
16
16
|
import * as React from 'react';
|
|
17
17
|
import { Draggable, IconWrap } from '@progress/kendo-react-common';
|
|
18
|
-
import {
|
|
19
|
-
import { provideLocalizationService, registerForLocalization } from '@progress/kendo-react-intl';
|
|
18
|
+
import { registerForLocalization } from '@progress/kendo-react-intl';
|
|
20
19
|
import { sortAscSmallIcon, sortDescSmallIcon, xCircleIcon } from '@progress/kendo-svg-icons';
|
|
21
20
|
/**
|
|
22
21
|
* @hidden
|
|
@@ -71,7 +70,6 @@ var GroupingIndicator = /** @class */ (function (_super) {
|
|
|
71
70
|
}
|
|
72
71
|
GroupingIndicator.prototype.render = function () {
|
|
73
72
|
var _this = this;
|
|
74
|
-
var localizationService = provideLocalizationService(this);
|
|
75
73
|
var dir = this.props.dir;
|
|
76
74
|
return (React.createElement(Draggable, { onPress: this.onPress, onDrag: this.onDrag, onRelease: this.onRelease, ref: function (component) { _this.draggable = component; } },
|
|
77
75
|
React.createElement("div", { className: "k-chip k-chip-md k-chip-solid k-chip-solid-base k-rounded-md", onClick: this.sortChange, role: "button", style: { touchAction: 'none' } },
|
|
@@ -79,7 +77,7 @@ var GroupingIndicator = /** @class */ (function (_super) {
|
|
|
79
77
|
React.createElement(IconWrap, { name: 'sort-' + dir + '-small', icon: dir === 'asc' ? sortAscSmallIcon : sortDescSmallIcon, size: 'small' })),
|
|
80
78
|
React.createElement("span", { className: 'k-chip-content' }, this.props.title),
|
|
81
79
|
React.createElement("span", { className: "k-chip-actions" },
|
|
82
|
-
React.createElement("span", { className: "k-chip-action k-chip-remove-action", onClick: this.groupRemove
|
|
80
|
+
React.createElement("span", { className: "k-chip-action k-chip-remove-action", onClick: this.groupRemove },
|
|
83
81
|
React.createElement(IconWrap, { name: 'x-circle', icon: xCircleIcon, size: 'small' }))))));
|
|
84
82
|
};
|
|
85
83
|
return GroupingIndicator;
|
|
@@ -46,9 +46,8 @@ var FooterRow = /** @class */ (function (_super) {
|
|
|
46
46
|
: {},
|
|
47
47
|
className: classNames('k-table-td', column.locked && column.left !== undefined ? 'k-grid-footer-sticky' : ''),
|
|
48
48
|
key: index,
|
|
49
|
-
role: '
|
|
49
|
+
role: 'gridcell'
|
|
50
50
|
},
|
|
51
|
-
_a['aria-selected'] = false,
|
|
52
51
|
_a['aria-colindex'] = column.ariaColumnIndex,
|
|
53
52
|
_a);
|
|
54
53
|
var cellProps = __assign({ field: column.field, ariaColumnIndex: column.ariaColumnIndex }, tdProps);
|
|
@@ -45,7 +45,7 @@ var GroupPanel = /** @class */ (function (_super) {
|
|
|
45
45
|
}, onSortChange: function (event, dir) {
|
|
46
46
|
_this.onGroupSortChange(event, index, groupDesc, dir);
|
|
47
47
|
}, onPress: _this.props.pressHandler, onDrag: _this.props.dragHandler, onRelease: _this.props.releaseHandler })); });
|
|
48
|
-
return (React.createElement("div", { ref: this.props.refCallback, className: "k-grouping-header", role: "toolbar", "aria-label": intl(this).toLanguageString(groupPanelAriaLabel, messages[groupPanelAriaLabel]), "aria-controls": this.props.ariaControls },
|
|
48
|
+
return (React.createElement("div", { ref: this.props.refCallback, className: "k-grouping-header", role: "toolbar", "aria-label": intl(this).toLanguageString(groupPanelAriaLabel, messages[groupPanelAriaLabel]), "aria-controls": this.props.ariaControls || '' },
|
|
49
49
|
React.createElement("div", { className: "k-chip-list k-chip-list-md", role: "none" }, groups),
|
|
50
50
|
React.createElement("div", { className: "k-grouping-drop-container" },
|
|
51
51
|
!groups.length && intl(this).toLanguageString(messageKey, messages[messageKey]),
|
|
@@ -30,6 +30,10 @@ export declare const pagerItemPerPage = "grid.pagerItemsPerPage";
|
|
|
30
30
|
* @hidden
|
|
31
31
|
*/
|
|
32
32
|
export declare const pagerPage = "grid.pagerPage";
|
|
33
|
+
/**
|
|
34
|
+
* @hidden
|
|
35
|
+
*/
|
|
36
|
+
export declare const pagerPageSizeAriaLabel = "grid.pagerPageSizeAriaLabel";
|
|
33
37
|
/**
|
|
34
38
|
* @hidden
|
|
35
39
|
*/
|
|
@@ -144,6 +148,7 @@ export declare const messages: {
|
|
|
144
148
|
"grid.pagerNextPage": string;
|
|
145
149
|
"grid.pagerLastPage": string;
|
|
146
150
|
"grid.pagerPage": string;
|
|
151
|
+
"grid.pagerPageSizeAriaLabel": string;
|
|
147
152
|
"grid.pagerOf": string;
|
|
148
153
|
"grid.pagerTotalPages": string;
|
|
149
154
|
"grid.searchPlaceholder": string;
|
|
@@ -31,6 +31,10 @@ export var pagerItemPerPage = 'grid.pagerItemsPerPage';
|
|
|
31
31
|
* @hidden
|
|
32
32
|
*/
|
|
33
33
|
export var pagerPage = 'grid.pagerPage';
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
37
|
+
export var pagerPageSizeAriaLabel = 'grid.pagerPageSizeAriaLabel';
|
|
34
38
|
/**
|
|
35
39
|
* @hidden
|
|
36
40
|
*/
|
|
@@ -145,6 +149,7 @@ export var messages = (_a = {},
|
|
|
145
149
|
_a[pagerNextPage] = 'Go to the next page',
|
|
146
150
|
_a[pagerLastPage] = 'Go to the last page',
|
|
147
151
|
_a[pagerPage] = 'Page',
|
|
152
|
+
_a[pagerPageSizeAriaLabel] = 'Page size',
|
|
148
153
|
_a[pagerOf] = 'of',
|
|
149
154
|
_a[pagerTotalPages] = '{0}',
|
|
150
155
|
_a[searchPlaceholder] = 'Search',
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-react-grid',
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1695314861,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/npm/Grid.js
CHANGED
|
@@ -773,18 +773,16 @@ var Grid = /** @class */ (function (_super) {
|
|
|
773
773
|
_a), this.props.className), ref: function (el) { _this._element = el; }, "aria-label": this.props.ariaLabel, onKeyDown: this.onKeyDown, onFocus: this.onFocus }, kendo_react_data_tools_1.tableKeyboardNavigationScopeAttributes),
|
|
774
774
|
toolbar,
|
|
775
775
|
groupingPanel,
|
|
776
|
-
React.createElement(kendo_react_data_tools_1.TableSelection, { selectable: this.props.selectable, onRelease: this.selectionRelease, childRef: function (table) {
|
|
777
|
-
_this.tableElement = table;
|
|
778
|
-
} },
|
|
776
|
+
React.createElement(kendo_react_data_tools_1.TableSelection, { selectable: this.props.selectable, onRelease: this.selectionRelease, childRef: function (table) { _this.tableElement = table; } },
|
|
779
777
|
React.createElement("table", { className: (0, kendo_react_common_1.classNames)('k-table k-grid-table', (_b = {}, _b["k-table-".concat(kendo_react_common_1.kendoThemeMaps.sizeMap[this.props.size] || this.props.size)] = this.props.size, _b)), style: { userSelect: tableUserSelect, display: tableDisplay } },
|
|
780
778
|
colGroups,
|
|
781
779
|
header,
|
|
782
780
|
React.createElement("tbody", __assign({ role: 'rowgroup', className: 'k-table-tbody' }, kendo_react_data_tools_1.tableKeyboardNavigationBodyAttributes), body),
|
|
783
781
|
footer)),
|
|
784
|
-
this.props.pageable && pager,
|
|
785
782
|
enableDragClues && (React.createElement(React.Fragment, null,
|
|
786
783
|
React.createElement(kendo_react_data_tools_1.DropClue, { ref: this.dragLogic.refDropElementClue }),
|
|
787
|
-
React.createElement(kendo_react_data_tools_1.DragClue, { ref: this.dragLogic.refDragElementClue }))))
|
|
784
|
+
React.createElement(kendo_react_data_tools_1.DragClue, { ref: this.dragLogic.refDragElementClue })))),
|
|
785
|
+
this.props.pageable && pager));
|
|
788
786
|
}
|
|
789
787
|
var wrapperStyle = this.props.style || {};
|
|
790
788
|
if (this.props.scrollable === 'virtual') {
|
|
@@ -804,7 +802,7 @@ var Grid = /** @class */ (function (_super) {
|
|
|
804
802
|
}, "aria-label": this.props.ariaLabel, onKeyDown: this.onKeyDown, onFocus: this.onFocus }, kendo_react_data_tools_1.tableKeyboardNavigationScopeAttributes),
|
|
805
803
|
toolbar,
|
|
806
804
|
groupingPanel,
|
|
807
|
-
React.createElement("div", {
|
|
805
|
+
React.createElement("div", { className: 'k-grid-aria-root', role: "grid", "aria-colcount": leafColumns.length, "aria-rowcount": total, id: this._gridRoleElementId },
|
|
808
806
|
header,
|
|
809
807
|
React.createElement("div", { className: "k-grid-container", role: "presentation" },
|
|
810
808
|
React.createElement("div", { ref: this.containerRef, className: "k-grid-content k-virtual-content", onScroll: this.scrollHandler, role: "presentation" },
|
|
@@ -821,13 +819,13 @@ var Grid = /** @class */ (function (_super) {
|
|
|
821
819
|
React.createElement("tbody", __assign({ className: 'k-table-tbody', ref: this.tableBodyRef, role: 'rowgroup' }, kendo_react_data_tools_1.tableKeyboardNavigationBodyAttributes), body)))),
|
|
822
820
|
React.createElement("div", { className: "k-height-container", role: "presentation" },
|
|
823
821
|
React.createElement("div", { style: this.props.scrollable === 'virtual' ?
|
|
824
|
-
{ 'height': (this.vs.containerHeight) + 'px' } : {} }))
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
React.createElement(
|
|
830
|
-
this.
|
|
822
|
+
{ 'height': (this.vs.containerHeight) + 'px' } : {} })),
|
|
823
|
+
footer)),
|
|
824
|
+
enableDragClues && (React.createElement(React.Fragment, null,
|
|
825
|
+
React.createElement(kendo_react_data_tools_1.DropClue, { ref: this.dragLogic.refDropElementClue }),
|
|
826
|
+
React.createElement(kendo_react_data_tools_1.DragClue, { ref: this.dragLogic.refDragElementClue }))),
|
|
827
|
+
this.showLicenseWatermark && React.createElement(kendo_react_common_2.WatermarkOverlay, null)),
|
|
828
|
+
this.props.pageable && pager)));
|
|
831
829
|
};
|
|
832
830
|
Grid.prototype.selectionChange = function (options) {
|
|
833
831
|
if (this.props.onSelectionChange) {
|
|
@@ -18,7 +18,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
exports.GroupingIndicator = void 0;
|
|
19
19
|
var React = require("react");
|
|
20
20
|
var kendo_react_common_1 = require("@progress/kendo-react-common");
|
|
21
|
-
var messages_1 = require("../messages");
|
|
22
21
|
var kendo_react_intl_1 = require("@progress/kendo-react-intl");
|
|
23
22
|
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
24
23
|
/**
|
|
@@ -74,7 +73,6 @@ var GroupingIndicator = /** @class */ (function (_super) {
|
|
|
74
73
|
}
|
|
75
74
|
GroupingIndicator.prototype.render = function () {
|
|
76
75
|
var _this = this;
|
|
77
|
-
var localizationService = (0, kendo_react_intl_1.provideLocalizationService)(this);
|
|
78
76
|
var dir = this.props.dir;
|
|
79
77
|
return (React.createElement(kendo_react_common_1.Draggable, { onPress: this.onPress, onDrag: this.onDrag, onRelease: this.onRelease, ref: function (component) { _this.draggable = component; } },
|
|
80
78
|
React.createElement("div", { className: "k-chip k-chip-md k-chip-solid k-chip-solid-base k-rounded-md", onClick: this.sortChange, role: "button", style: { touchAction: 'none' } },
|
|
@@ -82,7 +80,7 @@ var GroupingIndicator = /** @class */ (function (_super) {
|
|
|
82
80
|
React.createElement(kendo_react_common_1.IconWrap, { name: 'sort-' + dir + '-small', icon: dir === 'asc' ? kendo_svg_icons_1.sortAscSmallIcon : kendo_svg_icons_1.sortDescSmallIcon, size: 'small' })),
|
|
83
81
|
React.createElement("span", { className: 'k-chip-content' }, this.props.title),
|
|
84
82
|
React.createElement("span", { className: "k-chip-actions" },
|
|
85
|
-
React.createElement("span", { className: "k-chip-action k-chip-remove-action", onClick: this.groupRemove
|
|
83
|
+
React.createElement("span", { className: "k-chip-action k-chip-remove-action", onClick: this.groupRemove },
|
|
86
84
|
React.createElement(kendo_react_common_1.IconWrap, { name: 'x-circle', icon: kendo_svg_icons_1.xCircleIcon, size: 'small' }))))));
|
|
87
85
|
};
|
|
88
86
|
return GroupingIndicator;
|
|
@@ -49,9 +49,8 @@ var FooterRow = /** @class */ (function (_super) {
|
|
|
49
49
|
: {},
|
|
50
50
|
className: (0, kendo_react_common_1.classNames)('k-table-td', column.locked && column.left !== undefined ? 'k-grid-footer-sticky' : ''),
|
|
51
51
|
key: index,
|
|
52
|
-
role: '
|
|
52
|
+
role: 'gridcell'
|
|
53
53
|
},
|
|
54
|
-
_a['aria-selected'] = false,
|
|
55
54
|
_a['aria-colindex'] = column.ariaColumnIndex,
|
|
56
55
|
_a);
|
|
57
56
|
var cellProps = __assign({ field: column.field, ariaColumnIndex: column.ariaColumnIndex }, tdProps);
|
|
@@ -48,7 +48,7 @@ var GroupPanel = /** @class */ (function (_super) {
|
|
|
48
48
|
}, onSortChange: function (event, dir) {
|
|
49
49
|
_this.onGroupSortChange(event, index, groupDesc, dir);
|
|
50
50
|
}, onPress: _this.props.pressHandler, onDrag: _this.props.dragHandler, onRelease: _this.props.releaseHandler })); });
|
|
51
|
-
return (React.createElement("div", { ref: this.props.refCallback, className: "k-grouping-header", role: "toolbar", "aria-label": (0, kendo_react_intl_1.provideLocalizationService)(this).toLanguageString(messages_1.groupPanelAriaLabel, messages_1.messages[messages_1.groupPanelAriaLabel]), "aria-controls": this.props.ariaControls },
|
|
51
|
+
return (React.createElement("div", { ref: this.props.refCallback, className: "k-grouping-header", role: "toolbar", "aria-label": (0, kendo_react_intl_1.provideLocalizationService)(this).toLanguageString(messages_1.groupPanelAriaLabel, messages_1.messages[messages_1.groupPanelAriaLabel]), "aria-controls": this.props.ariaControls || '' },
|
|
52
52
|
React.createElement("div", { className: "k-chip-list k-chip-list-md", role: "none" }, groups),
|
|
53
53
|
React.createElement("div", { className: "k-grouping-drop-container" },
|
|
54
54
|
!groups.length && (0, kendo_react_intl_1.provideLocalizationService)(this).toLanguageString(messages_1.groupPanelEmpty, messages_1.messages[messages_1.groupPanelEmpty]),
|
|
@@ -30,6 +30,10 @@ export declare const pagerItemPerPage = "grid.pagerItemsPerPage";
|
|
|
30
30
|
* @hidden
|
|
31
31
|
*/
|
|
32
32
|
export declare const pagerPage = "grid.pagerPage";
|
|
33
|
+
/**
|
|
34
|
+
* @hidden
|
|
35
|
+
*/
|
|
36
|
+
export declare const pagerPageSizeAriaLabel = "grid.pagerPageSizeAriaLabel";
|
|
33
37
|
/**
|
|
34
38
|
* @hidden
|
|
35
39
|
*/
|
|
@@ -144,6 +148,7 @@ export declare const messages: {
|
|
|
144
148
|
"grid.pagerNextPage": string;
|
|
145
149
|
"grid.pagerLastPage": string;
|
|
146
150
|
"grid.pagerPage": string;
|
|
151
|
+
"grid.pagerPageSizeAriaLabel": string;
|
|
147
152
|
"grid.pagerOf": string;
|
|
148
153
|
"grid.pagerTotalPages": string;
|
|
149
154
|
"grid.searchPlaceholder": string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var _a;
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.pagerMessagesMap = exports.messages = exports.detailCollapse = exports.detailExpand = exports.groupCollapse = exports.groupExpand = exports.groupPanelAriaLabel = exports.filterAriaLabel = exports.sortAriaLabel = exports.filterSelectedItems = exports.filterChooseOperator = exports.filterCheckAll = exports.searchPlaceholder = exports.sortDescending = exports.sortAscending = exports.filterTitle = exports.filterSubmitButton = exports.filterClearButton = exports.columnMenu = exports.ungroupColumn = exports.groupColumn = exports.groupPanelEmpty = exports.pagerTotalPages = exports.pagerOf = exports.pagerPage = exports.pagerItemPerPage = exports.pagerLastPage = exports.pagerNextPage = exports.pagerPreviousPage = exports.pagerFirstPage = exports.pagerInfo = exports.noRecords = void 0;
|
|
4
|
+
exports.pagerMessagesMap = exports.messages = exports.detailCollapse = exports.detailExpand = exports.groupCollapse = exports.groupExpand = exports.groupPanelAriaLabel = exports.filterAriaLabel = exports.sortAriaLabel = exports.filterSelectedItems = exports.filterChooseOperator = exports.filterCheckAll = exports.searchPlaceholder = exports.sortDescending = exports.sortAscending = exports.filterTitle = exports.filterSubmitButton = exports.filterClearButton = exports.columnMenu = exports.ungroupColumn = exports.groupColumn = exports.groupPanelEmpty = exports.pagerTotalPages = exports.pagerOf = exports.pagerPageSizeAriaLabel = exports.pagerPage = exports.pagerItemPerPage = exports.pagerLastPage = exports.pagerNextPage = exports.pagerPreviousPage = exports.pagerFirstPage = exports.pagerInfo = exports.noRecords = void 0;
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
@@ -34,6 +34,10 @@ exports.pagerItemPerPage = 'grid.pagerItemsPerPage';
|
|
|
34
34
|
* @hidden
|
|
35
35
|
*/
|
|
36
36
|
exports.pagerPage = 'grid.pagerPage';
|
|
37
|
+
/**
|
|
38
|
+
* @hidden
|
|
39
|
+
*/
|
|
40
|
+
exports.pagerPageSizeAriaLabel = 'grid.pagerPageSizeAriaLabel';
|
|
37
41
|
/**
|
|
38
42
|
* @hidden
|
|
39
43
|
*/
|
|
@@ -148,6 +152,7 @@ exports.messages = (_a = {},
|
|
|
148
152
|
_a[exports.pagerNextPage] = 'Go to the next page',
|
|
149
153
|
_a[exports.pagerLastPage] = 'Go to the last page',
|
|
150
154
|
_a[exports.pagerPage] = 'Page',
|
|
155
|
+
_a[exports.pagerPageSizeAriaLabel] = 'Page size',
|
|
151
156
|
_a[exports.pagerOf] = 'of',
|
|
152
157
|
_a[exports.pagerTotalPages] = '{0}',
|
|
153
158
|
_a[exports.searchPlaceholder] = 'Search',
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-react-grid',
|
|
9
9
|
productName: 'KendoReact',
|
|
10
10
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1695314861,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
|
|
14
14
|
};
|