@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.
Files changed (36) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/custom-elements.json +759 -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/layout/stepper/stepper.class.d.ts +4 -0
  12. package/dist/components/layout/stepper/stepper.class.d.ts.map +1 -1
  13. package/dist/components/layout/stepper/stepper.class.js +7 -0
  14. package/dist/components/layout/stepper/stepper.class.js.map +1 -1
  15. package/dist/components/layout/stepper/stepper.styles.d.ts.map +1 -1
  16. package/dist/components/layout/stepper/stepper.styles.js +13 -0
  17. package/dist/components/layout/stepper/stepper.styles.js.map +1 -1
  18. package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.d.ts +10 -2
  19. package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.d.ts.map +1 -1
  20. package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.js +7 -2
  21. package/dist/components/retrieval/knowledge-graph-explorer/knowledge-graph-explorer.class.js.map +1 -1
  22. package/dist/internal/localization.d.ts +1 -1
  23. package/dist/internal/localization.d.ts.map +1 -1
  24. package/dist/internal/localization.js +4 -0
  25. package/dist/internal/localization.js.map +1 -1
  26. package/dist/lyra.d.ts +1 -1
  27. package/dist/lyra.d.ts.map +1 -1
  28. package/dist/lyra.js.map +1 -1
  29. package/llms/components/lr-chart.md +8 -5
  30. package/llms/components/lr-knowledge-graph-explorer.md +5 -0
  31. package/llms/components/lr-lite-chart.md +12 -0
  32. package/llms/components/lr-stepper.md +4 -0
  33. package/llms-full.txt +29 -5
  34. package/package.json +1 -1
  35. package/vscode-html-data.json +26 -12
  36. 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