@progress/kendo-react-layout 7.4.0-develop.6 → 7.4.0-develop.8

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.
@@ -8,7 +8,7 @@
8
8
  "use client";
9
9
  import * as s from "react";
10
10
  import e from "prop-types";
11
- import { classNames as p } from "@progress/kendo-react-common";
11
+ import { classNames as h } from "@progress/kendo-react-common";
12
12
  const o = class o extends s.Component {
13
13
  constructor() {
14
14
  super(...arguments), this.itemRef = null, this.focus = () => {
@@ -23,18 +23,18 @@ const o = class o extends s.Component {
23
23
  * @hidden
24
24
  */
25
25
  render() {
26
- const { id: r, active: t, disabled: i, title: a = "Untitled", contentPanelId: l, index: c } = this.props, m = {
27
- id: `${r}-${c.toString()}`,
26
+ const { id: c, active: t, disabled: i, title: a = "Untitled", index: n, renderAllContent: m } = this.props, l = m ? `${this.props.contentPanelId}-${n.toString()}` : this.props.contentPanelId, d = {
27
+ id: `${c}-${n.toString()}`,
28
28
  "aria-selected": t,
29
29
  "aria-controls": t ? l : void 0,
30
30
  "aria-disabled": i,
31
31
  role: "tab",
32
32
  onClick: i ? void 0 : this.onClick
33
- }, f = p("k-item", "k-tabstrip-item", {
33
+ }, p = h("k-item", "k-tabstrip-item", {
34
34
  "k-disabled": i,
35
35
  "k-active": t
36
36
  });
37
- return /* @__PURE__ */ s.createElement("li", { ...m, className: f, ref: (d) => this.itemRef = d, onBlur: this.blur, "aria-controls": l }, /* @__PURE__ */ s.createElement("span", { className: "k-link" }, a));
37
+ return /* @__PURE__ */ s.createElement("li", { ...d, className: p, ref: (f) => this.itemRef = f, onBlur: this.blur, "aria-controls": l }, /* @__PURE__ */ s.createElement("span", { className: "k-link" }, a));
38
38
  }
39
39
  };
40
40
  o.propTypes = {
@@ -49,7 +49,7 @@ o.propTypes = {
49
49
  first: e.bool,
50
50
  last: e.bool
51
51
  };
52
- let n = o;
52
+ let r = o;
53
53
  export {
54
- n as TabStripNavigationItem
54
+ r as TabStripNavigationItem
55
55
  };