@progress/kendo-react-grid 5.3.0 → 5.3.1-dev.202205140840
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/columnMenu/GridColumnMenuItemContent.d.ts +2 -1
- package/dist/es/columnMenu/GridColumnMenuItemContent.js +2 -1
- package/dist/es/columnMenu/GridColumnMenuItemGroup.d.ts +2 -1
- package/dist/es/columnMenu/GridColumnMenuItemGroup.js +2 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/columnMenu/GridColumnMenuItemContent.d.ts +2 -1
- package/dist/npm/columnMenu/GridColumnMenuItemContent.js +2 -1
- package/dist/npm/columnMenu/GridColumnMenuItemGroup.d.ts +2 -1
- package/dist/npm/columnMenu/GridColumnMenuItemGroup.js +2 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-react-grid.js +1 -1
- package/package.json +18 -18
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
2
3
|
/**
|
|
3
4
|
* The props of the GridColumnMenuItemContent component.
|
|
4
5
|
*/
|
|
5
|
-
export interface GridColumnMenuItemContentProps {
|
|
6
|
+
export interface GridColumnMenuItemContentProps extends KendoReactComponentBaseProps {
|
|
6
7
|
/**
|
|
7
8
|
* The `show` state of the component. Each change is animated with the Reveal animation.
|
|
8
9
|
*/
|
|
@@ -13,6 +13,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
13
13
|
})();
|
|
14
14
|
import * as React from 'react';
|
|
15
15
|
import { Reveal } from '@progress/kendo-react-animation';
|
|
16
|
+
import { classNames } from '@progress/kendo-react-common';
|
|
16
17
|
/**
|
|
17
18
|
* The GridColumnMenuItemContent that will be used inside the Grid ColumnMenu.
|
|
18
19
|
*/
|
|
@@ -25,7 +26,7 @@ var GridColumnMenuItemContent = /** @class */ (function (_super) {
|
|
|
25
26
|
* @hidden
|
|
26
27
|
*/
|
|
27
28
|
GridColumnMenuItemContent.prototype.render = function () {
|
|
28
|
-
return (React.createElement("div", { className: 'k-columnmenu-item-content' },
|
|
29
|
+
return (React.createElement("div", { id: this.props.id, className: classNames('k-columnmenu-item-content', this.props.className), style: this.props.style },
|
|
29
30
|
React.createElement(Reveal, { style: { position: 'relative', display: 'block' } }, this.props.show ? this.props.children : null)));
|
|
30
31
|
};
|
|
31
32
|
return GridColumnMenuItemContent;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
/**
|
|
3
4
|
* The props of the GridColumnMenuItemGroup component.
|
|
4
5
|
*/
|
|
5
|
-
export interface GridColumnMenuItemGroupProps {
|
|
6
|
+
export interface GridColumnMenuItemGroupProps extends KendoReactComponentBaseProps {
|
|
6
7
|
}
|
|
7
8
|
/**
|
|
8
9
|
* The GridColumnMenuItemGroup that will be used inside the Grid ColumnMenu.
|
|
@@ -11,6 +11,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
11
11
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
12
|
};
|
|
13
13
|
})();
|
|
14
|
+
import { classNames } from '@progress/kendo-react-common';
|
|
14
15
|
import * as React from 'react';
|
|
15
16
|
/**
|
|
16
17
|
* The GridColumnMenuItemGroup that will be used inside the Grid ColumnMenu.
|
|
@@ -25,7 +26,7 @@ var GridColumnMenuItemGroup = /** @class */ (function (_super) {
|
|
|
25
26
|
*/
|
|
26
27
|
GridColumnMenuItemGroup.prototype.render = function () {
|
|
27
28
|
var children = this.props.children;
|
|
28
|
-
return (React.createElement("div", { className:
|
|
29
|
+
return (React.createElement("div", { id: this.props.id, className: classNames('k-columnmenu-item-wrapper', this.props.className), style: this.props.style }, children));
|
|
29
30
|
};
|
|
30
31
|
return GridColumnMenuItemGroup;
|
|
31
32
|
}(React.Component));
|
|
@@ -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: 1652517059,
|
|
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
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
2
3
|
/**
|
|
3
4
|
* The props of the GridColumnMenuItemContent component.
|
|
4
5
|
*/
|
|
5
|
-
export interface GridColumnMenuItemContentProps {
|
|
6
|
+
export interface GridColumnMenuItemContentProps extends KendoReactComponentBaseProps {
|
|
6
7
|
/**
|
|
7
8
|
* The `show` state of the component. Each change is animated with the Reveal animation.
|
|
8
9
|
*/
|
|
@@ -15,6 +15,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
var React = require("react");
|
|
17
17
|
var kendo_react_animation_1 = require("@progress/kendo-react-animation");
|
|
18
|
+
var kendo_react_common_1 = require("@progress/kendo-react-common");
|
|
18
19
|
/**
|
|
19
20
|
* The GridColumnMenuItemContent that will be used inside the Grid ColumnMenu.
|
|
20
21
|
*/
|
|
@@ -27,7 +28,7 @@ var GridColumnMenuItemContent = /** @class */ (function (_super) {
|
|
|
27
28
|
* @hidden
|
|
28
29
|
*/
|
|
29
30
|
GridColumnMenuItemContent.prototype.render = function () {
|
|
30
|
-
return (React.createElement("div", { className: 'k-columnmenu-item-content' },
|
|
31
|
+
return (React.createElement("div", { id: this.props.id, className: kendo_react_common_1.classNames('k-columnmenu-item-content', this.props.className), style: this.props.style },
|
|
31
32
|
React.createElement(kendo_react_animation_1.Reveal, { style: { position: 'relative', display: 'block' } }, this.props.show ? this.props.children : null)));
|
|
32
33
|
};
|
|
33
34
|
return GridColumnMenuItemContent;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
/**
|
|
3
4
|
* The props of the GridColumnMenuItemGroup component.
|
|
4
5
|
*/
|
|
5
|
-
export interface GridColumnMenuItemGroupProps {
|
|
6
|
+
export interface GridColumnMenuItemGroupProps extends KendoReactComponentBaseProps {
|
|
6
7
|
}
|
|
7
8
|
/**
|
|
8
9
|
* The GridColumnMenuItemGroup that will be used inside the Grid ColumnMenu.
|
|
@@ -13,6 +13,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
13
13
|
};
|
|
14
14
|
})();
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
var kendo_react_common_1 = require("@progress/kendo-react-common");
|
|
16
17
|
var React = require("react");
|
|
17
18
|
/**
|
|
18
19
|
* The GridColumnMenuItemGroup that will be used inside the Grid ColumnMenu.
|
|
@@ -27,7 +28,7 @@ var GridColumnMenuItemGroup = /** @class */ (function (_super) {
|
|
|
27
28
|
*/
|
|
28
29
|
GridColumnMenuItemGroup.prototype.render = function () {
|
|
29
30
|
var children = this.props.children;
|
|
30
|
-
return (React.createElement("div", { className:
|
|
31
|
+
return (React.createElement("div", { id: this.props.id, className: kendo_react_common_1.classNames('k-columnmenu-item-wrapper', this.props.className), style: this.props.style }, children));
|
|
31
32
|
};
|
|
32
33
|
return GridColumnMenuItemGroup;
|
|
33
34
|
}(React.Component));
|
|
@@ -7,7 +7,7 @@ exports.packageMetadata = {
|
|
|
7
7
|
name: '@progress/kendo-react-grid',
|
|
8
8
|
productName: 'KendoReact',
|
|
9
9
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
10
|
-
publishDate:
|
|
10
|
+
publishDate: 1652517059,
|
|
11
11
|
version: '',
|
|
12
12
|
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'
|
|
13
13
|
};
|