hazo_ui 4.3.1 → 4.6.1
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/CHANGE_LOG.md +22 -0
- package/dist/index.cjs +426 -180
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +69 -2
- package/dist/index.d.ts +69 -2
- package/dist/index.js +427 -182
- package/dist/index.js.map +1 -1
- package/dist/test-harness/index.cjs +111 -38
- package/dist/test-harness/index.cjs.map +1 -1
- package/dist/test-harness/index.js +81 -23
- package/dist/test-harness/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGE_LOG.md
CHANGED
|
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## v4.6.0 (2026-06-24)
|
|
9
|
+
|
|
10
|
+
> Versions 4.4.0–4.5.0 were internal bumps that were never published to the
|
|
11
|
+
> registry; 4.6.0 is the first published release after 4.3.1 and supersedes them.
|
|
12
|
+
|
|
13
|
+
### New
|
|
14
|
+
- **RTE font controls** — `HazoUiRte` gains a `font_families` prop (an
|
|
15
|
+
ordered `{ label, value }[]` of CSS font-family options) that drives a
|
|
16
|
+
font-family dropdown in the toolbar, plus `font_family` / `font_size`
|
|
17
|
+
toolbar toggles (both default `true`) backed by a new `FontSizeExtension`.
|
|
18
|
+
Consumers that don't pass `font_families` keep the prior toolbar.
|
|
19
|
+
- `CanvasTextToolbar` (+ `CanvasTextToolbarProps`) — floating format toolbar
|
|
20
|
+
for canvas text-edit mode.
|
|
21
|
+
- `HazoUiDialog` gains a `compact?` prop that trims header/footer vertical
|
|
22
|
+
padding for content-dense dialogs (triage lists, tables).
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- `Button` no longer ships inline per-variant `style` fallbacks; variant
|
|
26
|
+
colors now come solely from the Tailwind preset / CSS variables. Consumers
|
|
27
|
+
that relied on the inline fallback (Tailwind not scanning hazo_ui's output)
|
|
28
|
+
must consume `hazo_ui/tailwind-preset` or set the color CSS vars.
|
|
29
|
+
|
|
8
30
|
## v4.3.0 (2026-06-19)
|
|
9
31
|
|
|
10
32
|
### New
|