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.
@@ -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 a sliding accent border on hover (`mw-item-list-slide-secondary`) |
955
- | `mw-item-list-scroll` | Scroll box, 300px (`-sm` 200, `-lg` 400, `-xl` 500) |
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
- Variants: `mw-item-list-checkbox-compact`, `-large`, `-secondary`,
988
- `-scroll`. `mw-selected` on the `<li>` is the selected-row highlight - bind it
989
- to the checkbox state yourself in a SPA. The `mw-checkbox-content` block is
990
- optional; a bare `mw-checkbox-label` renders a single-line row.
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
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  ### Changed
12
12
 
13
13
  - new color concept and new default color palette
14
+ - `mw-item-list-compact` sits on a card surface now
14
15
 
15
16
  ## [4.4.0] - 2026-08-20
16
17
 
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
- <!-- Basic favicon -->
20
- <link rel="icon" type="image/x-icon" href="favicon.ico" />
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="16x16"
33
- href="favicon/favicon-16x16.png"
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
- <!-- Microsoft Tiles (for Windows) -->
54
- <meta name="msapplication-TileColor" content="#da532c" />
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 {