Yep, seems like it was a āsilenceā smooth swap !
Thanks for the hard work !
thanks - that worked perfectly - very smooth.
FYI for me it was not working at all. Iāve even rebooted my HA system and still gets this on all cards. I had to use āRedownloadā and then it started working
auto-entities 2.1.0-beta.1 available with rename config for filter and main config ![]()
auto-entities 2.1.0-beta.1 available with rename option (see dev README). This may be an option depending where Home Assistant 2026.4.0 beta lands on entity renaming. No matter how that lands it will remain available to rename, which has been a common feature request where for now you needed to resort to eval_js on the option with mixed success.
Since this beta has been available, all of my auto-entities cards are gone. Iāve tried to remake them but I canāt get it to work again. I did not install this beta version, should I?
If you did not, itās impossible that you have been āaffectedā by an āavailableā update .So check your auto-entities-version in HACS
In 2.0.0 every nested auto-entities works for me
You are correct. I rebooted Home Assistant and now they are working. Thank you for your help ![]()
auto-entities 2.1.0-beta.3 available ![]()
2.1.0-beta.3 is available and includes state_translated for rename method and variable in eval_js (added in beta.2) and sort to support multiple sort levels and moved after rename (added in beta.3).
auto-entities 2.2.0 reelased ![]()
New Features
- filter: Add group_expanded filter with recursive group expansion (#37) (30b4a02)
- rename: Add
trimoption to rename configuration (#41) (96c4735) - rename: Support arrays for find/replace to enable multiple sequential operations (#44) (8f62f85)
- sort: support reverse-only sort config to reverse current list (#36) (0279dee)
Bug Fixes
FR:
Have you ever thought of adding a āDividerā somehow , in some of my Auto-entities i Include i.e various groups/or entities(Domains)(States) for that matter.
, I would love that those could be āDividedā by a row āwith a headerā ( Just to make it more ācomplicatedā ![]()
IE
- Include : Domain-Switches off
Divider - include Domain- Switches on
Or between Whatever Multiple(variations) Includes i have
Already available but kind of hidden, thought the UI has āAdd custom entryā and adds a section type without including any guide that you need to add label.
type: custom:auto-entities
card:
type: entities
filter:
include:
- entity_id: sun.sun
- type: divider
- entity_id: sun.sun
- type: section
label: Title
- entity_id: sun.sun
exclude: []
UPDATE. Readme now update with information on the two special types.
Iāll read and try it out, see if i can combine it i.e with custom:text-divider-row ![]()
Havenāt really thought alot about it, but the thought popped up again, with your latest release
hmmmm,seems like it doesnāt work with
card:
square: false
columns: 5
type: grid
card_param: cards
This can work, with two tweaks:
- Use
type: heading - Need to style the grid for the heading to use a full row CSS
{ grid-column: 1 / -1; }
Example below
Caveats:
- the heading will be included as a count, so will always cause a-e to show, even if show_empty is false (types of section and divider donāt get counted when counting up generated entities).
- sorting overall is going to break title position of course, but that is the same with divider, section
type: custom:auto-entities
filter:
include:
- options:
type: tile
area:
area: kitchen
active_choice: area
- type: heading
heading: Title
- options:
type: tile
area:
area: living_room
active_choice: area
exclude: []
show_empty: true
card_param: cards
card:
type: grid
square: false
uix:
style: |
hui-card:has(.type-heading) {
grid-column: 1 / -1;
border-bottom: 1px solid var(--divider-color);
}
Thanx Alot, I Finally got something, thou without a Line
And i still have āissuesā with finding right Pathās for the .shape ( So i still have this underneath both Groups
( On the other hand, i have thought about replacing these with Tiles ) but still with border-radius: 10
I actually havenāt figured out howto use The Path Helper in the Doc, where/how should i ārunā i.e
uix_style_path($0)
- type: custom:auto-entities
filter:
include:
- type: heading
heading: Aqara Devices
- group: group.aqara_home
options:
type: custom:mushroom-entity-card
icon_color: '#4682B4'
hide_state: true
uix:
style:
mushroom-shape-icon$: |
.shape {
border-radius: 10px !important;
height: 50px !important;
width: 50px !important;
}
- type: heading
heading: Ikea Devices
- group: group.ikea_home
options:
type: custom:mushroom-entity-card
icon_color: amber
vertical: true
hide_state: true
uix:
style:
mushroom-shape-icon$: |
.shape {
border-radius: 10px !important;
height: 50px !important;
width: 50px !important;
}
show_empty: true
card_param: cards
card:
type: grid
columns: 5
square: false
uix:
style: |
hui-card:has(.type-heading) {
grid-column: 1 / -1;
justify-self: center
}
:host {
--mush-icon-symbol-size: 34px;
--mush-card-primary-font-size: 12px;
--mush-card-primary-line-height: 10px;
--mush-card-primary-font-weight: lighter;
}
In FireFox Inspect ?
Add your desired border to hui-card:has(.type-heading) { }. My example had border-bottom: 1px solid var(--divider-color)
Yes, in cosole. Highlight to element you want to style, which will be $0 in console, then use uix_path($0).
Yes i did copy it but as i didnāt see any line , i removed it ( Maybe i have to check my Theme)
EDIT, yep that must be it, i just change the var to primary-color
Try the good ol red or something. Perhaps you have styled out divider-color.
Hmmmmm, i only know howto find the various elements by clicking
So you explanation says me nothing
I.e
When i click highlight, and click the element, then what i donāt see anything in Console, and where /what do i use $0Ā“vs uix_path($0) in there inspect/console ?
Im totally blank here ![]()
Two things:
- What you click on becomes a special console variable
$0. - So you run
uix_path($0)in console to run uix_path on highlighted element.
I clearly have no idea what im doing , or how to use inspect and āconsoleā what ever you mean by Console, nor howto/where to ārunā something
As said, i can just ātraverseā the āstructureā and/or click an element , maybe itās different(easier to understand) in another browser than FF , because i totally donāt know what you mean
where do i see this ?, the āusualā path below in the inspect window ?


