v11.2.0
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
widthproperty (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.extendedmode is when the sidebar is always visible (typically in desktop devices) andhiddenmode 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 260pxSetting 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 280pxSetting 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
- Implement width option
- PR: #540 by @elchininet
🧩 Dependencies
- [Dependencies]: Bump the dependencies-dev group with 3 updates
- PR: #525 by @dependabot[bot]
- [Dependencies]: Bump typescript-eslint from 8.50.0 to 8.50.1 in the dependencies-dev group
- PR: #527 by @dependabot[bot]
- Bump mdast-util-to-hast from 13.2.0 to 13.2.1 in /docs
- PR: #531 by @dependabot[bot]
- Solve vulnerabilities through pnpm overrides
- PR: #533 by @elchininet
- [Dependencies]: Bump the dependencies-dev group with 2 updates
- PR: #535 by @dependabot[bot]
- [Dependencies]: Bump the dependencies-dev group with 3 updates
- PR: #537 by @dependabot[bot]
- Update Home Assistant to version 2026.1.1
- PR: #538 by @elchininet
⚙️ Configuration
- Change Rollup config to .mjs to avoid a warning
- PR: #530 by @elchininet
- Give test workflow permissions to write on checks
- PR: #532 by @elchininet
📝 Documentation
- Add Reactive Variables reference to the main configuration options
- PR: #524 by @elchininet
- Implement width option
- PR: #540 by @elchininet
📦 Other
- Update plugin bundles
- PR: #526 by @elchininet
- Prepare some tests for Home Assistant 2026.1.x
- PR: #528 by @elchininet
- Fix flaky tests
- PR: #529 by @elchininet
- Remove tests compatibility with Home Assistant < 2026.1.1
- PR: #539 by @elchininet