@aceshooting/lyra-ui 18.3.0 → 18.4.0
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 +23 -0
- package/custom-elements.json +1 -1
- package/dist/components/utility/export-button/export-button.class.d.ts +12 -0
- package/dist/components/utility/export-button/export-button.styles.js +1 -1
- package/dist/custom-elements-jsx.d.ts +1 -1
- package/dist/internal/package-metadata.d.ts +1 -1
- package/dist/internal/package-metadata.js +1 -1
- package/dist/svelte.d.ts +1 -1
- package/dist/vue.d.ts +1 -1
- package/llms/components/lr-export-button.md +11 -3
- package/llms-full.txt +10 -2
- package/package.json +1 -1
- package/vscode-css-data.json +1 -1
- package/vscode-html-data.json +1 -1
- package/web-types.json +1 -1
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
- **Release history** [CHANGELOG.md](../../CHANGELOG.md); family-wide breaking-change summaries: [llms-full.txt](../../llms-full.txt)
|
|
10
10
|
- **Deprecations** none
|
|
11
11
|
- **Optional peers** none
|
|
12
|
-
- **Themeable via** 6 parts,
|
|
12
|
+
- **Themeable via** 6 parts, 14 custom properties — see this component's own `@csspart`/`@cssprop` list below
|
|
13
13
|
- **Library-wide behavior** (events, form association, `locale`/`strings`, tokens, TS types): `llms/shared.md`
|
|
14
14
|
|
|
15
15
|
---
|
|
@@ -98,8 +98,16 @@ closes caused by disablement, loading, or an unusable format list emit neither e
|
|
|
98
98
|
attempt regardless of outcome — style with `::part(trigger-error)`), `menu`, `menu-item`,
|
|
99
99
|
`format-label`, `format-description`
|
|
100
100
|
|
|
101
|
-
**Themeable custom properties:**
|
|
102
|
-
|
|
101
|
+
**Themeable custom properties:** the trigger's paint is settable per state. At rest,
|
|
102
|
+
`--lr-export-button-background`, `--lr-export-button-color` and `--lr-export-button-border`; on
|
|
103
|
+
hover, `--lr-export-button-hover-background`, `--lr-export-button-hover-color` and
|
|
104
|
+
`--lr-export-button-hover-border`; while pressed, `--lr-export-button-active-background`,
|
|
105
|
+
`--lr-export-button-active-color` and `--lr-export-button-active-border`. Each layers over whatever
|
|
106
|
+
the current `appearance` resolves to and leaves the other paints alone, so they are also the way to
|
|
107
|
+
keep `appearance="outlined"` chrome while returning its label to neutral text — `outlined` paints
|
|
108
|
+
the label `--lr-color-brand` and, unlike `lr-button`, this component has no `variant` of its own to
|
|
109
|
+
opt out. Before 18.4.0 none of these existed and the only lever was `::part(trigger)`. Plus shared
|
|
110
|
+
tokens, including `--lr-popover-viewport-clamp` (default `92vw`) — the shared narrow-viewport ceiling the `menu`'s max-inline-size is `min()`ed
|
|
103
111
|
against, alongside its own `20rem` cap and the positioner's available space. See `lr-tour` for the
|
|
104
112
|
shared-clamp note.
|
|
105
113
|
|
package/llms-full.txt
CHANGED
|
@@ -24874,8 +24874,16 @@ closes caused by disablement, loading, or an unusable format list emit neither e
|
|
|
24874
24874
|
attempt regardless of outcome — style with `::part(trigger-error)`), `menu`, `menu-item`,
|
|
24875
24875
|
`format-label`, `format-description`
|
|
24876
24876
|
|
|
24877
|
-
**Themeable custom properties:**
|
|
24878
|
-
|
|
24877
|
+
**Themeable custom properties:** the trigger's paint is settable per state. At rest,
|
|
24878
|
+
`--lr-export-button-background`, `--lr-export-button-color` and `--lr-export-button-border`; on
|
|
24879
|
+
hover, `--lr-export-button-hover-background`, `--lr-export-button-hover-color` and
|
|
24880
|
+
`--lr-export-button-hover-border`; while pressed, `--lr-export-button-active-background`,
|
|
24881
|
+
`--lr-export-button-active-color` and `--lr-export-button-active-border`. Each layers over whatever
|
|
24882
|
+
the current `appearance` resolves to and leaves the other paints alone, so they are also the way to
|
|
24883
|
+
keep `appearance="outlined"` chrome while returning its label to neutral text — `outlined` paints
|
|
24884
|
+
the label `--lr-color-brand` and, unlike `lr-button`, this component has no `variant` of its own to
|
|
24885
|
+
opt out. Before 18.4.0 none of these existed and the only lever was `::part(trigger)`. Plus shared
|
|
24886
|
+
tokens, including `--lr-popover-viewport-clamp` (default `92vw`) — the shared narrow-viewport ceiling the `menu`'s max-inline-size is `min()`ed
|
|
24879
24887
|
against, alongside its own `20rem` cap and the positioner's available space. See `lr-tour` for the
|
|
24880
24888
|
shared-clamp note.
|
|
24881
24889
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aceshooting/lyra-ui",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.4.0",
|
|
4
4
|
"description": "Free, independent Lit web components: an open-source alternative to Shoelace and Web Awesome with accessible forms, dashboards, charts, and agent UI.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|