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/.claude/skills/mw-maverick-wave/SKILL.md +12 -9
- package/.claude/skills/mw-maverick-wave/examples/angular-list-page.md +40 -35
- package/.claude/skills/mw-maverick-wave/examples/angular-services.md +95 -33
- package/.claude/skills/mw-maverick-wave/examples/static-landing-page.md +38 -53
- package/.claude/skills/mw-maverick-wave/references/components.md +45 -46
- package/.claude/skills/mw-maverick-wave/references/javascript.md +16 -17
- package/.claude/skills/mw-maverick-wave/references/layout.md +24 -0
- package/CHANGELOG.md +19 -0
- package/README.md +2 -2
- package/index.html +1 -5
- package/maverick-wave.min.css +3 -3
- package/package.json +2 -2
- package/release.sh +5 -0
- package/scripts/verify.js +23 -10
- package/src/partials/get-started-container.html +5 -3
- package/src/partials/header-container.html +12 -2
- package/src/partials/modals-container.html +137 -186
- package/src/partials/parallax-container.html +13 -2
- package/src/scss/abstracts/_mixins.scss +34 -6
- package/src/scss/components/_modals.scss +13 -2
- package/src/scss/layout/_header-reveal.scss +106 -1
- package/src/scss/layout/_main.scss +18 -0
- package/src/scss/utilities/_touch-targets.scss +5 -4
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.
|
|
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.
|
|
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>
|