@aceshooting/lyra-ui 14.3.0 → 14.3.2
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.
- package/CHANGELOG.md +32 -0
- package/custom-elements.json +1 -1
- package/dist/components/layout/menu/menu-item.class.js +1 -1
- package/dist/components/layout/tab-group/tab-group.class.js +1 -1
- package/dist/components/overlays/badge/tag.class.js +1 -1
- package/dist/components/overlays/chip/chip.class.js +1 -1
- package/dist/components/overlays/overlay/dropdown.class.d.ts +3 -1
- package/dist/components/overlays/overlay/dropdown.styles.js +1 -1
- package/dist/internal/accessibility-visibility.d.ts +13 -2
- package/dist/internal/accessibility-visibility.js +1 -1
- package/dist/internal/package-metadata.d.ts +1 -1
- package/dist/internal/package-metadata.js +1 -1
- package/llms/components/lr-dropdown-item.md +7 -0
- package/llms/components/lr-dropdown.md +5 -0
- package/llms/components/lr-menu-item.md +7 -0
- package/llms/components/lr-menu.md +7 -0
- package/llms-full.txt +12 -0
- package/package.json +8 -8
- package/vscode-html-data.json +1 -1
- package/web-types.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 14.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0314633: Keep accessible names computed from slotted content independent of whether the component is
|
|
8
|
+
currently displayed. A row inside a closed dropdown, a tab in a hidden group, or a chip, tag, toast
|
|
9
|
+
or progress bar inside any `visibility: hidden` container previously computed an empty name, because
|
|
10
|
+
the shared accessible-text walk applied visibility inherited from the container to the content it
|
|
11
|
+
was naming.
|
|
12
|
+
|
|
13
|
+
`lr-menu-item` and `lr-dropdown-item` additionally wrote that empty result back as an authoritative
|
|
14
|
+
`aria-label=""`, which suppresses the row's own content-derived name and left it permanently
|
|
15
|
+
unnamed — most visibly on a dropdown that is already `open` on its first render. An empty computed
|
|
16
|
+
name now removes the attribute instead of emptying it, for both the row and its submenu's
|
|
17
|
+
`role="menu"`, so the browser falls back to the visible label. `getTextLabel()` returns that label
|
|
18
|
+
for a closed menu too, restoring type-ahead.
|
|
19
|
+
|
|
20
|
+
`lr-tag` also never named its remove button from an element-wrapped label, because its first sample
|
|
21
|
+
runs before layout exists; it now takes the same pre-layout reading `lr-chip` already did.
|
|
22
|
+
|
|
23
|
+
Authored `aria-label`, `aria-labelledby` and explicitly empty consumer labels stay authoritative,
|
|
24
|
+
and `display: none`, `aria-hidden`, `inert` and `hidden` branches are still excluded from every
|
|
25
|
+
computed name.
|
|
26
|
+
|
|
27
|
+
## 14.3.1
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 422a035: Fix nested dropdown submenus that were visible but could not receive pointer clicks in WebKit. Both direct submenu items and nested menus now remain interactive outside the parent popup, with or without hoisting and in LTR/RTL. Long dropdowns scroll their inner menu list within the popup's height limit while keeping menu headers and footers visible.
|
|
32
|
+
|
|
33
|
+
Refresh development tooling and optional-peer compatibility verification against current dependency releases.
|
|
34
|
+
|
|
3
35
|
## 14.3.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|