@dnncommunity/dnn-elements 0.14.0-beta.2 → 0.14.0-beta.3

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.
@@ -1787,7 +1787,6 @@ let DnnVerticalSplitview = class {
1787
1787
  render() {
1788
1788
  return (index.h(index.Host, null, index.h("div", { class: "left pane", style: {
1789
1789
  width: `${this.leftWidth}px`,
1790
- height: "100%",
1791
1790
  } }, index.h("slot", { name: "left" })), index.h("button", { onMouseDown: e => this.handleMouseDown(e), onTouchStart: e => this.handleMouseDown(e), onKeyDown: e => this.handleKeyDown(e), style: { minWidth: `${this.splitterWidth.toString()}px` } }, index.h("slot", null)), index.h("div", { class: "right pane", style: {
1792
1791
  width: `${this.rightWidth}px`,
1793
1792
  } }, index.h("slot", { name: "right" }))));