@progress/kendo-react-layout 7.0.0-develop.9 → 7.0.0

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.
@@ -24,6 +24,10 @@ export interface MenuProps {
24
24
  * Sets additional CSS styles to the Menu.
25
25
  */
26
26
  style?: React.CSSProperties;
27
+ /**
28
+ * Sets the ID of the Menu.
29
+ */
30
+ id?: string;
27
31
  /**
28
32
  * Sets the direction of the Menu.
29
33
  */
@@ -67,7 +67,7 @@ export declare class Menu extends React.Component<MenuProps, MenuState> {
67
67
  private itemHoverRequest;
68
68
  private itemLeaveRequest;
69
69
  private menuWrapperEl;
70
- private guid;
70
+ private get menuItemId();
71
71
  private directionHolder;
72
72
  private inputItems;
73
73
  private items;
@@ -111,3 +111,8 @@ export declare class Menu extends React.Component<MenuProps, MenuState> {
111
111
  private prepareItems;
112
112
  private dispatchSelectEventIfWired;
113
113
  }
114
+ /**
115
+ * Represent the `ref` of the Menu component.
116
+ */
117
+ export interface MenuHandle extends Pick<Menu, keyof Menu> {
118
+ }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-layout",
3
- "version": "7.0.0-develop.9",
3
+ "version": "7.0.0",
4
4
  "description": "React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
7
7
  "homepage": "https://www.telerik.com/kendo-react-ui",
8
8
  "main": "./index.js",
9
+ "module": "./index.mjs",
9
10
  "types": "./index.d.ts",
10
11
  "exports": {
11
12
  ".": {
@@ -16,11 +17,11 @@
16
17
  "sideEffects": false,
17
18
  "peerDependencies": {
18
19
  "@progress/kendo-licensing": "^1.3.0",
19
- "@progress/kendo-react-animation": "7.0.0-develop.9",
20
- "@progress/kendo-react-common": "7.0.0-develop.9",
21
- "@progress/kendo-react-intl": "7.0.0-develop.9",
22
- "@progress/kendo-react-popup": "7.0.0-develop.9",
23
- "@progress/kendo-react-progressbars": "7.0.0-develop.9",
20
+ "@progress/kendo-react-animation": "7.0.0",
21
+ "@progress/kendo-react-common": "7.0.0",
22
+ "@progress/kendo-react-intl": "7.0.0",
23
+ "@progress/kendo-react-popup": "7.0.0",
24
+ "@progress/kendo-react-progressbars": "7.0.0",
24
25
  "@progress/kendo-svg-icons": "^2.0.0",
25
26
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
26
27
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
@@ -126,8 +126,8 @@ export declare class TabStrip extends React.Component<TabStripProps, {}> {
126
126
  mouseScrollSpeed: number;
127
127
  };
128
128
  private _element;
129
- private contentPanelId;
130
- private navItemId;
129
+ private get contentPanelId();
130
+ private get navItemId();
131
131
  private showLicenseWatermark;
132
132
  private keyBinding;
133
133
  constructor(props: TabStripProps);
@@ -151,3 +151,8 @@ export declare class TabStrip extends React.Component<TabStripProps, {}> {
151
151
  private nextNavigatableTab;
152
152
  private children;
153
153
  }
154
+ /**
155
+ * Represent the `ref` of the TabStrip component.
156
+ */
157
+ export interface TabStripHandle extends Pick<TabStrip, keyof TabStrip> {
158
+ }