Skip to content

v11.2.0

Choose a tag to compare

@github-actions github-actions released this 17 Jan 22:09

This release is a minor one and it should not be a breaking change. It introduces a new option to set the width of the sidebar.

width option

Defines the width of the sidebar. If it is a number or a string, it will set the same width in extended and hidden mode. If it is an object, it can set the width of each sidebar mode separetely providing the extended and hidden properties.

Note: When the width property (or one of its properties) is a number, the width will be set in pixels. When it (or one of its properties) is a string, it should have the proper format, this is an integer followed by one of these units: %, em, ex, px, rem, vh, vmax, vmin, vw. extended mode is when the sidebar is always visible (typically in desktop devices) and hidden mode is when the sidebar is hidden and it needs to be shown clicking on the header's top-right button (typically in mobile devices).

Examples

Setting the width of the sidebar for extended and hidden modes using a number:

width: 260 ## this means 260px

Setting the width of the sidebar for extended and hidden modes using a string:

width: "23rem"

Setting the width of the sidebar only for extended mode using a number:

width:
  extended: 280 ## this means 280px

Setting the width of the sidebar only for hidden mode using a string:

width:
  hidden: "80%"

Setting different widths of the sidebar for the extended and the hidden mode:

width:
  extended: "280px"
  hidden: "80%"

🚀 Features

🧩 Dependencies

  • [Dependencies]: Bump the dependencies-dev group with 3 updates
  • [Dependencies]: Bump typescript-eslint from 8.50.0 to 8.50.1 in the dependencies-dev group
  • Bump mdast-util-to-hast from 13.2.0 to 13.2.1 in /docs
  • Solve vulnerabilities through pnpm overrides
  • [Dependencies]: Bump the dependencies-dev group with 2 updates
  • [Dependencies]: Bump the dependencies-dev group with 3 updates
  • Update Home Assistant to version 2026.1.1

⚙️ Configuration

📝 Documentation

📦 Other