maverick-wave 5.16.0 → 5.19.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/CHANGELOG.md CHANGED
@@ -6,6 +6,25 @@ Patch releases are only for test purposes - here I only document major and minor
6
6
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
7
7
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
 
9
+ ## [5.19.0] - 2026-09-17
10
+
11
+ ### Fixed
12
+
13
+ - technical issue
14
+
15
+ ## [5.18.0] - 2026-09-17
16
+
17
+ ### Added
18
+
19
+ - possibly keep buttons on a non-sticky header
20
+
21
+ ## [5.17.0] - 2026-09-17
22
+
23
+ ### Fixed
24
+
25
+ - tooltips
26
+ - modals use dialog
27
+
9
28
  ## [5.16.0] - 2026-09-15
10
29
 
11
30
  ### Added
package/README.md CHANGED
@@ -45,12 +45,12 @@ The result is a framework that balances utility with simplicity, offering develo
45
45
  <title>My MaverickWave Project</title>
46
46
  <link
47
47
  rel="stylesheet"
48
- href="https://cdn.jsdelivr.net/npm/maverick-wave@5.15.0/maverick-wave.min.css"
48
+ href="https://cdn.jsdelivr.net/npm/maverick-wave@5.19.0/maverick-wave.min.css"
49
49
  />
50
50
  </head>
51
51
  <body>
52
52
  <!-- Your content here -->
53
- <script src="https://cdn.jsdelivr.net/npm/maverick-wave@5.15.0/maverick-wave.min.js"></script>
53
+ <script src="https://cdn.jsdelivr.net/npm/maverick-wave@5.19.0/maverick-wave.min.js"></script>
54
54
  </body>
55
55
  </html>
56
56
  ```
package/index.html CHANGED
@@ -552,7 +552,7 @@
552
552
  <a class="mw-skip-link" href="#main">Skip to content</a>
553
553
 
554
554
  <!-- Header -->
555
- <header class="mw-header mw-localhost-indicator-activated">
555
+ <header class="mw-header mw-localhost-indicator-activated mw-header-reveal">
556
556
  <div class="mw-container">
557
557
  @@include('./src/partials/header-container.html')
558
558
  </div>
@@ -1605,10 +1605,6 @@
1605
1605
  }, 1600);
1606
1606
  });
1607
1607
  });
1608
-
1609
- // for the modals - the framework handles both shapes, div and <dialog>
1610
- const openModal = window.mwOpenModal;
1611
- const closeModal = window.mwCloseModal;
1612
1608
  </script>
1613
1609
  </body>
1614
1610
  </html>