@fest-lib/fl-ui 0.1.10 → 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 +29 -2
- package/dist/fl-ui.js +6855 -1196
- package/package.json +5 -2
- package/src/styles/layers.scss +43 -1
- package/src/styles/patch-global-native-controls.scss +1 -2
- package/src/styles/ui/_buttons.scss +4 -4
- package/src/styles/ui/_essentials.scss +6 -4
- package/src/styles/ui/_explorer-content.scss +50 -16
- package/src/styles/ui/_explorer.scss +14 -4
- package/src/styles/ui/_gridbox.scss +1 -1
- package/src/styles/ui/_home-host.scss +26 -16
- package/src/styles/ui/_index.scss +3 -1
- package/src/styles/ui/_markdown.scss +4 -5
- package/src/styles/ui/_modal.scss +54 -3
- package/src/styles/ui/_orientbox.scss +3 -3
- package/src/styles/ui/_variables.scss +28 -10
- package/src/styles/ui/_viewport.scss +3 -2
- package/src/styles/ui/_window-frame.scss +4 -4
package/README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# FL.UI
|
|
2
2
|
|
|
3
|
-
|
|
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`.
|