Skip to content

v1.1.0 - Entity Column Spanning

Choose a tag to compare

@sxdjt sxdjt released this 01 Dec 17:03

New Feature: Entity Column Spanning

Entities can now span multiple columns using the colspan property, just like header rows! This enables more flexible layouts with wide status displays and mixed column widths.

Example:

type: custom:indicator-grid-card
columns: 4
rows: 2
entities:
  # Wide status display spanning all columns
  - entity: sensor.system_status
    text: SYSTEM STATUS
    colspan: 4
  # Mixed width cells
  - entity: sensor.temperature
    colspan: 2
  - entity: sensor.humidity
    colspan: 2

What's Changed

  • Add colspan support to entity cells in main card
  • Update visual editor with Column Span input field
  • Update README with feature documentation and examples

Fixes

Installation

HACS

Update through HACS

Manual

Download indicator-grid-card.js from the assets below and copy to config/www/


Full Changelog: v1.0.0...v1.1.0