@digicreon/mucss 1.4.0 → 1.4.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/README.md +4 -3
- package/dist/mu.amber.css +1 -1
- package/dist/mu.azure.css +1 -1
- package/dist/mu.blue.css +1 -1
- package/dist/mu.css +1 -1
- package/dist/mu.cyan.css +1 -1
- package/dist/mu.fuchsia.css +1 -1
- package/dist/mu.green.css +1 -1
- package/dist/mu.grey.css +1 -1
- package/dist/mu.indigo.css +1 -1
- package/dist/mu.jade.css +1 -1
- package/dist/mu.lime.css +1 -1
- package/dist/mu.orange.css +1 -1
- package/dist/mu.pink.css +1 -1
- package/dist/mu.pumpkin.css +1 -1
- package/dist/mu.purple.css +1 -1
- package/dist/mu.red.css +1 -1
- package/dist/mu.sand.css +1 -1
- package/dist/mu.slate.css +1 -1
- package/dist/mu.violet.css +1 -1
- package/dist/mu.yellow.css +1 -1
- package/dist/mu.zinc.css +1 -1
- package/documentation/mu.table.md +8 -19
- package/documentation/mu.var.md +53 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Full-featured themeable CSS framework built on [PicoCSS v2](https://picocss.com/
|
|
|
6
6
|
|
|
7
7
|
- **20 color themes** — One CSS file per theme, ready to use
|
|
8
8
|
- **12-column responsive grid** — 6 breakpoints, offsets, ordering, display utilities
|
|
9
|
-
- **
|
|
9
|
+
- **18 UI components** — Accordion, Alert, Badge, Breadcrumb, Button, Card, Forms, Hero, Modal, Nav, Pagination, Progress, Skeleton, Spinner, Table, Toast, Tabs, Var
|
|
10
10
|
- **Utility classes** — Color (text, background, border), positioning (sticky, fixed)
|
|
11
11
|
- **Dark mode** — Automatic (prefers-color-scheme) or manual (`data-theme`)
|
|
12
12
|
- **Pure CSS** — No JavaScript dependency
|
|
@@ -70,9 +70,10 @@ Each file is self-contained (PicoCSS base + colors + grid + all components).
|
|
|
70
70
|
| Progress | Colored progress bars | [progress.html](examples/progress.html) |
|
|
71
71
|
| Skeleton | Loading placeholders, text, title, avatar, image | [skeleton.html](examples/skeleton.html) |
|
|
72
72
|
| Spinner | Loading spinners, 11 colors, 3 sizes | [spinner.html](examples/spinner.html) |
|
|
73
|
-
| Table | Hover, striped, bordered, compact
|
|
73
|
+
| Table | Hover, striped, bordered, compact | [table.html](examples/table.html) |
|
|
74
74
|
| Toast | Fixed-position notifications, 6 positions, 11 colors | [toast.html](examples/toast.html) |
|
|
75
75
|
| Tabs | Standard, pills, aligned, fullwidth | [tabs.html](examples/tabs.html) |
|
|
76
|
+
| Var | Style `<var>` like `<code>`/`<kbd>`/`<samp>`, with italic | — |
|
|
76
77
|
|
|
77
78
|
## PicoCSS native
|
|
78
79
|
|
|
@@ -174,7 +175,7 @@ mucss/
|
|
|
174
175
|
mu.grid.css # 12-column grid
|
|
175
176
|
mu.colors.css # Color utility classes
|
|
176
177
|
mu.utilities.css # Positioning utilities (sticky, fixed)
|
|
177
|
-
mu.component.*.css # UI components (
|
|
178
|
+
mu.component.*.css # UI components (18 files)
|
|
178
179
|
dist/ # Build output (21 CSS files)
|
|
179
180
|
documentation/ # Component and feature documentation
|
|
180
181
|
examples/ # HTML demos for each component
|