maverick-wave 4.4.1 → 4.5.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.
- package/.claude/skills/maverick-wave/references/components.md +24 -13
- package/CHANGELOG.md +1 -0
- package/index.html +7 -29
- package/maverick-wave.min.css +2 -2
- package/package.json +2 -2
- package/src/assets/favicon/apple-touch-icon.png +0 -0
- package/src/assets/favicon/favicon-96x96.png +0 -0
- package/src/assets/favicon/favicon.svg +1 -0
- package/src/assets/favicon/site.webmanifest +37 -1
- package/src/assets/favicon/web-app-manifest-192x192.png +0 -0
- package/src/assets/favicon/web-app-manifest-512x512.png +0 -0
- package/src/assets/favicon.ico +0 -0
- package/src/partials/item-lists-container.html +3 -3
- package/src/scss/abstracts/_variables.scss +10 -10
- package/src/scss/components/_lists.scss +141 -131
- package/src/assets/favicon/android-chrome-192x192.png +0 -0
- package/src/assets/favicon/android-chrome-512x512.png +0 -0
- package/src/assets/favicon/favicon-16x16.png +0 -0
- package/src/assets/favicon/favicon-32x32.png +0 -0
|
@@ -944,15 +944,19 @@ deprecated). Any card fits into the content wrapper.
|
|
|
944
944
|
|
|
945
945
|
Layout containers for arbitrary children - the children need no classes.
|
|
946
946
|
|
|
947
|
-
| Class | Look
|
|
948
|
-
| ------------------------- |
|
|
949
|
-
| `mw-item-list` | Plain flex column with gaps
|
|
950
|
-
| `mw-item-list-horizontal` | Row, wrapping; column below `sm`
|
|
951
|
-
| `mw-item-list-cards` | Wider gaps, for cards
|
|
952
|
-
| `mw-item-list-compact` | Bordered box, divided rows, hover indent (nests)
|
|
953
|
-
| `mw-item-list-menu` | Elevated menu card, pointer cursor, press feedback
|
|
954
|
-
| `mw-item-list-slide` | Cards with
|
|
955
|
-
| `mw-item-list-scroll` | Scroll box, 300px
|
|
947
|
+
| Class | Look |
|
|
948
|
+
| ------------------------- | ------------------------------------------------------------- |
|
|
949
|
+
| `mw-item-list` | Plain flex column with gaps |
|
|
950
|
+
| `mw-item-list-horizontal` | Row, wrapping; column below `sm` |
|
|
951
|
+
| `mw-item-list-cards` | Wider gaps, for cards |
|
|
952
|
+
| `mw-item-list-compact` | Bordered card-surface box, divided rows, hover indent (nests) |
|
|
953
|
+
| `mw-item-list-menu` | Elevated menu card, pointer cursor, press feedback |
|
|
954
|
+
| `mw-item-list-slide` | Cards sliding sideways with an accent border on hover |
|
|
955
|
+
| `mw-item-list-scroll` | Scroll box, 300px tall |
|
|
956
|
+
|
|
957
|
+
Modifiers are additive - keep the base class and add the modifier:
|
|
958
|
+
`mw-item-list-scroll` + `-sm` (200px), `-lg` (400px) or `-xl` (500px), and
|
|
959
|
+
`mw-item-list-slide` + `-secondary` for the secondary accent.
|
|
956
960
|
|
|
957
961
|
```html
|
|
958
962
|
<div class="mw-item-list-compact">
|
|
@@ -984,10 +988,17 @@ Layout containers for arbitrary children - the children need no classes.
|
|
|
984
988
|
</ul>
|
|
985
989
|
```
|
|
986
990
|
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
+
Add `mw-item-list-checkbox-compact`, `-large` or `-secondary` alongside the
|
|
992
|
+
base class; `mw-item-list-checkbox-scroll` is a standalone class that replaces
|
|
993
|
+
it. `mw-selected` on the `<li>` is the selected-row highlight - bind it to the
|
|
994
|
+
checkbox state yourself in a SPA. The `mw-checkbox-content` block is optional;
|
|
995
|
+
a bare `mw-checkbox-label` renders a single-line row.
|
|
996
|
+
|
|
997
|
+
The `mw-checkbox` inside is the ordinary form-element checkbox, so
|
|
998
|
+
`mw-checkbox-disabled` and the colour variants (`mw-checkbox-success` and the
|
|
999
|
+
rest, see `references/forms.md`) work here too. Row height is a list concern -
|
|
1000
|
+
use the list's own `-compact` / `-large` modifiers rather than
|
|
1001
|
+
`mw-checkbox-sm` / `-lg`, which sit on the wrong element to reach the box.
|
|
991
1002
|
|
|
992
1003
|
## HTML lists
|
|
993
1004
|
|
package/CHANGELOG.md
CHANGED
package/index.html
CHANGED
|
@@ -16,46 +16,24 @@
|
|
|
16
16
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
|
|
17
17
|
/>
|
|
18
18
|
<link rel="stylesheet" href="maverick-wave.min.css" />
|
|
19
|
-
<!--
|
|
20
|
-
<link rel="icon" type="image/
|
|
21
|
-
|
|
22
|
-
<!-- PNG favicons -->
|
|
23
|
-
<link
|
|
24
|
-
rel="icon"
|
|
25
|
-
type="image/png"
|
|
26
|
-
sizes="32x32"
|
|
27
|
-
href="favicon/favicon-32x32.png"
|
|
28
|
-
/>
|
|
19
|
+
<!-- Favicons -->
|
|
20
|
+
<link rel="icon" type="image/svg+xml" href="favicon/favicon.svg" />
|
|
29
21
|
<link
|
|
30
22
|
rel="icon"
|
|
31
23
|
type="image/png"
|
|
32
|
-
sizes="
|
|
33
|
-
href="favicon/favicon-
|
|
24
|
+
sizes="96x96"
|
|
25
|
+
href="favicon/favicon-96x96.png"
|
|
34
26
|
/>
|
|
35
|
-
|
|
36
|
-
<!-- Apple Touch Icon (for iOS devices) -->
|
|
27
|
+
<link rel="shortcut icon" href="favicon.ico" />
|
|
37
28
|
<link
|
|
38
29
|
rel="apple-touch-icon"
|
|
39
30
|
sizes="180x180"
|
|
40
31
|
href="favicon/apple-touch-icon.png"
|
|
41
32
|
/>
|
|
42
|
-
|
|
43
|
-
<!-- Safari Pinned Tab Icon -->
|
|
44
|
-
<link
|
|
45
|
-
rel="mask-icon"
|
|
46
|
-
href="favicon/safari-pinned-tab.svg"
|
|
47
|
-
color="#5bbad5"
|
|
48
|
-
/>
|
|
49
|
-
|
|
50
|
-
<!-- Android/Chrome Icons -->
|
|
51
33
|
<link rel="manifest" href="favicon/site.webmanifest" />
|
|
52
34
|
|
|
53
|
-
<!--
|
|
54
|
-
<meta name="
|
|
55
|
-
<meta name="msapplication-config" content="favicon/browserconfig.xml" />
|
|
56
|
-
|
|
57
|
-
<!-- Theme Color for browsers that support it -->
|
|
58
|
-
<meta name="theme-color" content="#ffffff" />
|
|
35
|
+
<!-- Showcase starts in dark mode unless localStorage says otherwise -->
|
|
36
|
+
<meta name="theme-color" content="#171f30" />
|
|
59
37
|
<style>
|
|
60
38
|
/* Additional styles only for the showcase page */
|
|
61
39
|
.position-relative {
|