@fest-lib/fl-ui 0.1.11 → 0.1.12

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/README.md CHANGED
@@ -1,3 +1,30 @@
1
- # 💐 FL.UI 💐
1
+ # FL.UI
2
2
 
3
- 🚧 Full reboot of our UI systems... full restart of UI project. 🚧
3
+ `@fest-lib/fl-ui` Chromium-first shell UI: windows, taskbar, statusbar, app menu, quick settings, calendar flyout, toasts, and Speed Dial (home grid).
4
+
5
+ Styles default to Veela (optional peer). Native control chrome stays on `.btn` unless `includeGlobalNativeControlStyles` is on. Speed Dial tiles include square / circle / squircle / wavy / **shapeless** (icon-as-shape + silhouette shadow).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install @fest-lib/fl-ui
11
+ ```
12
+
13
+ ```ts
14
+ import { configureFlUI, loadFlUIGlobalNativeControlStyles } from "@fest-lib/fl-ui";
15
+
16
+ configureFlUI({ styleVariant: "veela-advanced" });
17
+ ```
18
+
19
+ Dev: `npm run dev` → HTTPS on port 8434 (`?suite=explorer`, OPFS). HTTP-only: `npm run dev:http`.
20
+
21
+ ## Layout
22
+
23
+ | Path | Role |
24
+ | --- | --- |
25
+ | `src/ui/containers/window/*` | window chrome |
26
+ | `src/ui/navigation/*` | taskbar, statusbar, app menu, flyouts |
27
+ | `src/ui/speed-dial/*` | home grid, icon picker, tile shapes |
28
+ | `src/styles/*` | SCSS (also `@fest-lib/fl-ui/styles`) |
29
+
30
+ Peers: `@fest-lib/core`, `dom`, `object`, `lure`, `uniform`; optional `veela`. Build: `npm run build`. Publish: `npm run publish`.