@aceshooting/lyra-ui 14.2.0 → 14.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 (43) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/custom-elements.json +1 -1
  3. package/dist/cli/migration-contract.json +1 -1
  4. package/dist/components/charts/chart/chart-legend-visibility.d.ts +8 -0
  5. package/dist/components/charts/chart/chart.class.d.ts +48 -12
  6. package/dist/components/charts/chart/chart.class.js +10 -10
  7. package/dist/components/data/table/table.class.d.ts +9 -1
  8. package/dist/components/data/table/table.class.js +4 -3
  9. package/dist/components/data/table/table.styles.js +1 -1
  10. package/dist/components/forms/button/button.class.d.ts +8 -2
  11. package/dist/components/forms/button/button.class.js +6 -2
  12. package/dist/components/media/map/map.class.d.ts +34 -6
  13. package/dist/components/media/map/map.class.js +1 -1
  14. package/dist/components/media/map/map.styles.js +1 -1
  15. package/dist/custom-elements-jsx.d.ts +1 -1
  16. package/dist/events.d.ts +17 -1
  17. package/dist/internal/icons.d.ts +2 -0
  18. package/dist/internal/icons.js +2 -2
  19. package/dist/internal/package-metadata.d.ts +1 -1
  20. package/dist/internal/package-metadata.js +1 -1
  21. package/dist/lyra.d.ts +1 -1
  22. package/dist/svelte.d.ts +1 -1
  23. package/dist/vue.d.ts +1 -1
  24. package/llms/components/lr-accordion-item.md +36 -0
  25. package/llms/components/lr-accordion.md +36 -0
  26. package/llms/components/lr-bar-chart.md +4 -1
  27. package/llms/components/lr-bubble-chart.md +4 -1
  28. package/llms/components/lr-button.md +5 -0
  29. package/llms/components/lr-chart.md +40 -2
  30. package/llms/components/lr-details.md +36 -0
  31. package/llms/components/lr-doughnut-chart.md +4 -1
  32. package/llms/components/lr-histogram.md +6 -2
  33. package/llms/components/lr-line-chart.md +4 -1
  34. package/llms/components/lr-map.md +45 -7
  35. package/llms/components/lr-pie-chart.md +4 -1
  36. package/llms/components/lr-polar-area-chart.md +4 -1
  37. package/llms/components/lr-radar-chart.md +4 -1
  38. package/llms/components/lr-scatter-chart.md +4 -1
  39. package/llms/components/lr-table.md +10 -4
  40. package/llms-full.txt +171 -16
  41. package/package.json +1 -1
  42. package/vscode-html-data.json +1 -1
  43. package/web-types.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 14.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3d58e7a: Add numeric feature-field radius scales to declarative map points, with threshold or linear interpolation, bounded stops and explicit fallbacks. Categories remain on one clustered source while cluster-count sizes stay independent.
8
+
9
+ Add fill, stroke and combined modes to safe path-only map icons, including viewBox-scaled stroke widths and cap/join options. Preserve filled-path defaults, local bounded rasterization, theme updates, resource cleanup, clicks and canvas export.
10
+
11
+ Keep expanded attribution clear of opposite map controls on narrow layouts, align navigation to its logical edge, and reserve legend space even when attribution is the only control. Preserve the gradient's visible width in shrink-to-fit legends and keep scale labels inside their background without changing the peer's distance-bar width.
12
+ - d7aa2c0: Add opt-in category legends and controlled slice visibility to pie, doughnut and polar-area charts. Legend text can show labels, values or percentages independently of tooltip and axis formatting. Category toggles preserve source indexes across sampling and multiple rings, with immutable, cancelable visibility events.
13
+
14
+ Keep extreme finite pie and doughnut values from overflowing native arc geometry while retaining original values in Lyra readouts and exports.
15
+
16
+ Forward button pressed and current-item ARIA states reactively to the internal native control, including state removal, href changes and disabled controls.
17
+
18
+ Add opt-in persistent table sort indicators, restore the compact map attribution information glyph,
19
+ and document a responsive details-header recipe for independent controls.
20
+
21
+ ### Patch Changes
22
+
23
+ - 249d8a1: Keep sampled chart category legends and accessible tables responsive by sharing dataset projections and color probes within each render. Data and theme updates still receive fresh values, including percentage labels and repeated token-based category colors.
24
+
25
+ Let map scale labels fit different fonts and text sizes while drawing the ruler at the native geographic width, including after zoom changes.
26
+
3
27
  ## 14.2.0
4
28
 
5
29
  ### Minor Changes