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