@progress/kendo-react-layout 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-layout.js +1 -1
- package/dist/es/menu/components/MenuItemLink.d.ts +2 -1
- package/dist/es/menu/components/MenuItemLink.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tabstrip/TabStripNavigation.d.ts +4 -0
- package/dist/npm/menu/components/MenuItemLink.d.ts +2 -1
- package/dist/npm/menu/components/MenuItemLink.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tabstrip/TabStripNavigation.d.ts +4 -0
- package/dist/systemjs/kendo-react-layout.js +1 -1
- package/package.json +13 -13
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as PropTypes from 'prop-types';
|
|
3
|
+
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
3
4
|
/**
|
|
4
5
|
* The properties of the KendoReact MenuItemLink component.
|
|
5
6
|
*/
|
|
6
|
-
export interface MenuItemLinkProps {
|
|
7
|
+
export interface MenuItemLinkProps extends KendoReactComponentBaseProps {
|
|
7
8
|
/**
|
|
8
9
|
* Specifies whether the MenuItemLink component is opened.
|
|
9
10
|
*/
|
|
@@ -27,7 +27,7 @@ var MenuItemLink = /** @class */ (function (_super) {
|
|
|
27
27
|
return (React.createElement("a", { className: this.getMenuItemClassName(), role: "presentation", href: this.props.url, tabIndex: -1 }, this.props.children));
|
|
28
28
|
}
|
|
29
29
|
else {
|
|
30
|
-
return (React.createElement("span", { className: this.getMenuItemClassName(), role: "presentation" }, this.props.children));
|
|
30
|
+
return (React.createElement("span", { id: this.props.id, className: classNames(this.getMenuItemClassName(), this.props.className), style: this.props.style, role: "presentation" }, this.props.children));
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
33
|
MenuItemLink.prototype.getMenuItemClassName = function () {
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-react-layout',
|
|
6
6
|
productName: 'KendoReact',
|
|
7
7
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1652516798,
|
|
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,9 +1,10 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as PropTypes from 'prop-types';
|
|
3
|
+
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
3
4
|
/**
|
|
4
5
|
* The properties of the KendoReact MenuItemLink component.
|
|
5
6
|
*/
|
|
6
|
-
export interface MenuItemLinkProps {
|
|
7
|
+
export interface MenuItemLinkProps extends KendoReactComponentBaseProps {
|
|
7
8
|
/**
|
|
8
9
|
* Specifies whether the MenuItemLink component is opened.
|
|
9
10
|
*/
|
|
@@ -29,7 +29,7 @@ var MenuItemLink = /** @class */ (function (_super) {
|
|
|
29
29
|
return (React.createElement("a", { className: this.getMenuItemClassName(), role: "presentation", href: this.props.url, tabIndex: -1 }, this.props.children));
|
|
30
30
|
}
|
|
31
31
|
else {
|
|
32
|
-
return (React.createElement("span", { className: this.getMenuItemClassName(), role: "presentation" }, this.props.children));
|
|
32
|
+
return (React.createElement("span", { id: this.props.id, className: kendo_react_common_1.classNames(this.getMenuItemClassName(), this.props.className), style: this.props.style, role: "presentation" }, this.props.children));
|
|
33
33
|
}
|
|
34
34
|
};
|
|
35
35
|
MenuItemLink.prototype.getMenuItemClassName = function () {
|
|
@@ -7,7 +7,7 @@ exports.packageMetadata = {
|
|
|
7
7
|
name: '@progress/kendo-react-layout',
|
|
8
8
|
productName: 'KendoReact',
|
|
9
9
|
productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
|
|
10
|
-
publishDate:
|
|
10
|
+
publishDate: 1652516798,
|
|
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
|
};
|