maverick-wave 3.6.3 → 3.9.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 +4 -2
- package/.claude/skills/maverick-wave/references/theming.md +1 -0
- package/CHANGELOG.md +30 -0
- package/README.md +3 -3
- package/maverick-wave.min.css +1 -1
- package/package.json +2 -2
- package/src/partials/empty-state-container.html +1 -1
- package/src/partials/ratings-container.html +1 -1
- package/src/partials/tables-container.html +0 -4
- package/src/partials/tags-container.html +1 -1
- package/src/scss/abstracts/_variables.scss +1 -1
- package/src/scss/base/_reset.scss +1 -1
- package/src/scss/components/_ratings.scss +3 -1
- package/src/scss/components/_tags.scss +6 -1
- package/src/scss/form-elements/_radio.scss +3 -2
- package/src/scss/layout/_grid.scss +42 -42
- package/maverick-wave.css +0 -8241
- package/maverick-wave.js +0 -587
|
@@ -87,8 +87,10 @@ Row of equally treated buttons, centered by default.
|
|
|
87
87
|
- Image height: 210px, `mw-card-lg` 340px, `mw-card-xl` 480px. Set
|
|
88
88
|
`--mw-card-img-height` on the card for any other height.
|
|
89
89
|
`mw-card-img-contain` shows the whole image instead of cropping it.
|
|
90
|
-
-
|
|
91
|
-
|
|
90
|
+
- `mw-card-footer` pushes its last child to the right - with a single child that
|
|
91
|
+
means it sits right, not left. Everything is vertically centered, so plain text
|
|
92
|
+
lines up with a button next to it. Below `lg` the footer stacks and children go
|
|
93
|
+
full width.
|
|
92
94
|
- `mw-card-badge` (top right corner) and `mw-card-ribbon` (diagonal banner) are
|
|
93
95
|
absolutely positioned overlays; colour them with `mw-card-addon-primary`,
|
|
94
96
|
`-secondary`, `-success`, `-warning`, `-danger`, `-info`.
|
|
@@ -58,6 +58,7 @@ a palette switch meant setting 41 variables.
|
|
|
58
58
|
| `--mw-hero-background` | Hero image (`url(...)`) |
|
|
59
59
|
| `--mw-transition` | Global transition (`all 0.3s ease`) |
|
|
60
60
|
| `--mw-card-img-height` | Per-card image height (default `210px`; `mw-card-lg`/`-xl` set it to 340px/480px) |
|
|
61
|
+
| `--mw-card-addon-color` | Background of `mw-card-badge` / `mw-card-ribbon`; the `mw-card-addon-*` classes set it, override it for a custom colour |
|
|
61
62
|
| `--mw-table-scroll-height` | Per-table height cap for `mw-table-responsive-scroll` |
|
|
62
63
|
| `--mw-internal-theme-mode` | Read-only: what `$mw-theme-mode` was compiled to |
|
|
63
64
|
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,36 @@ 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
|
+
<<<<<<< HEAD
|
|
10
|
+
<<<<<<< HEAD
|
|
11
|
+
<<<<<<< HEAD
|
|
12
|
+
||||||| 4031dbb
|
|
13
|
+
=======
|
|
14
|
+
||||||| 0be20d9
|
|
15
|
+
=======
|
|
16
|
+
## [3.9.0] - 2026-08-07
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- technical issues
|
|
21
|
+
>>>>>>> main
|
|
22
|
+
|
|
23
|
+
## [3.8.0] - 2026-08-07
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- technical issues
|
|
28
|
+
|
|
29
|
+
> > > > > > > main
|
|
30
|
+
||||||| 4031dbb
|
|
31
|
+
=======
|
|
32
|
+
## [3.8.0] - 2026-08-07
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- technical issues
|
|
37
|
+
>>>>>>> main
|
|
38
|
+
|
|
9
39
|
## [3.7.0] - 2026-08-07
|
|
10
40
|
|
|
11
41
|
### Changed
|
package/README.md
CHANGED
|
@@ -38,17 +38,17 @@ The result is a framework that balances utility with simplicity, offering develo
|
|
|
38
38
|
<title>My MaverickWave Project</title>
|
|
39
39
|
<link
|
|
40
40
|
rel="stylesheet"
|
|
41
|
-
href="https://cdn.jsdelivr.net/npm/maverick-wave@3.
|
|
41
|
+
href="https://cdn.jsdelivr.net/npm/maverick-wave@3.7.0/maverick-wave.min.css"
|
|
42
42
|
/>
|
|
43
43
|
</head>
|
|
44
44
|
<body>
|
|
45
45
|
<!-- Your content here -->
|
|
46
|
-
<script src="https://cdn.jsdelivr.net/npm/maverick-wave@3.
|
|
46
|
+
<script src="https://cdn.jsdelivr.net/npm/maverick-wave@3.7.0/maverick-wave.min.js"></script>
|
|
47
47
|
</body>
|
|
48
48
|
</html>
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
Always pin to a specific version
|
|
51
|
+
Always pin to a specific version in production for stability.
|
|
52
52
|
|
|
53
53
|
### 2. Direct Download
|
|
54
54
|
|