@aceshooting/lyra-ui 7.1.0 → 7.3.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 +24 -0
- package/custom-elements.json +759 -32
- package/dist/components/charts/chart/chart.class.d.ts +9 -3
- package/dist/components/charts/chart/chart.class.d.ts.map +1 -1
- package/dist/components/charts/chart/chart.class.js +31 -3
- package/dist/components/charts/chart/chart.class.js.map +1 -1
- package/dist/components/charts/chart/lite-chart.class.d.ts +24 -1
- package/dist/components/charts/chart/lite-chart.class.d.ts.map +1 -1
- package/dist/components/charts/chart/lite-chart.class.js +53 -3
- package/dist/components/charts/chart/lite-chart.class.js.map +1 -1
- package/dist/components/layout/stepper/stepper.class.d.ts +4 -0
- package/dist/components/layout/stepper/stepper.class.d.ts.map +1 -1
- package/dist/components/layout/stepper/stepper.class.js +7 -0
- package/dist/components/layout/stepper/stepper.class.js.map +1 -1
- package/dist/components/layout/stepper/stepper.styles.d.ts.map +1 -1
- package/dist/components/layout/stepper/stepper.styles.js +13 -0
- package/dist/components/layout/stepper/stepper.styles.js.map +1 -1
- package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.d.ts +10 -2
- package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.d.ts.map +1 -1
- package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.js +7 -2
- package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.js.map +1 -1
- package/dist/internal/localization.d.ts +1 -1
- package/dist/internal/localization.d.ts.map +1 -1
- package/dist/internal/localization.js +4 -0
- package/dist/internal/localization.js.map +1 -1
- package/dist/lyra.d.ts +1 -1
- package/dist/lyra.d.ts.map +1 -1
- package/dist/lyra.js.map +1 -1
- package/llms/components/lr-chart.md +8 -5
- package/llms/components/lr-knowledge-graph-explorer.md +5 -0
- package/llms/components/lr-lite-chart.md +12 -0
- package/llms/components/lr-stepper.md +4 -0
- package/llms-full.txt +29 -5
- package/package.json +1 -1
- package/vscode-html-data.json +26 -12
- package/web-types.json +31 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2cff771: Add the opt-in `wrap-labels` property to `<lr-stepper>` for wrapping long labels on the vertical axis.
|
|
8
|
+
|
|
9
|
+
## 7.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 9670255: Add accessible-table totals and a knowledge-graph selection event:
|
|
14
|
+
|
|
15
|
+
- `<lr-chart>`: `stackTotals` now also feeds the generated accessible data table with a per-axis
|
|
16
|
+
total column (localized `chartTotal`/`chartAxisTotal` header), and only activates when `stacked`
|
|
17
|
+
is set (previously it could draw totals on unstacked bar/line charts). `valueFormatter` gains a
|
|
18
|
+
`'table'` context so callers can format the new total cells and existing value cells consistently.
|
|
19
|
+
- `<lr-lite-chart>`: new `tableCellFormatter` property formats the built-in multi-series accessible
|
|
20
|
+
table's numeric cells (including its new opt-in `tableTotals` total column for stacked bar
|
|
21
|
+
charts), via the new `LyraLiteChartTableCellFormatter`/`LyraLiteChartTableCellContext`/
|
|
22
|
+
`LyraLiteChartTableCellKind` types.
|
|
23
|
+
- `<lr-knowledge-graph-explorer>`: emits a new `lr-selection-change` event whenever its
|
|
24
|
+
self-managed `selectedNodeId` changes from search, graph, neighbor, path, entity-card,
|
|
25
|
+
invalidation, or popover-close interactions (direct host assignment stays silent).
|
|
26
|
+
|
|
3
27
|
## 7.1.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|