maverick-wave 4.16.0 → 4.18.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 +5 -0
- package/CHANGELOG.md +16 -0
- package/maverick-wave.min.css +3 -3
- package/package.json +2 -2
- package/src/partials/cards-container.html +17 -0
- package/src/partials/info-container.html +13 -0
- package/src/scss/abstracts/_variables.scss +19 -2
- package/src/scss/base/_base.scss +2 -0
- package/src/scss/components/_avatars.scss +7 -7
- package/src/scss/components/_cards.scss +17 -4
- package/src/scss/components/_info.scss +36 -0
- package/src/scss/components/_pricing.scss +46 -0
- package/src/scss/layout/_footer.scss +1 -2
- package/src/scss/layout/_main.scss +45 -0
- package/src/scss/layout/_section.scss +1 -1
- package/src/scss/utilities/_touch-targets.scss +41 -3
|
@@ -396,6 +396,11 @@ the feature lists have different lengths.
|
|
|
396
396
|
with the button beside it on its own, and `mw-price-sm` keeps it from
|
|
397
397
|
outweighing the action. That is the layout for a dated event, where the price
|
|
398
398
|
is a detail rather than the offer.
|
|
399
|
+
- Such a footer keeps its row once the card gets narrow, and gives the action
|
|
400
|
+
half of it. A footer normally stacks its children to full width down there, so
|
|
401
|
+
that two buttons do not squeeze - but a price is a label, not a second action,
|
|
402
|
+
and a full-bleed button under a left-aligned price reads as a banner rather
|
|
403
|
+
than as the end of a card.
|
|
399
404
|
|
|
400
405
|
**Head band** - name and price in a solid bar at the top, for when the price is
|
|
401
406
|
the thing being compared and the feature list is only its justification:
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ 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
|
+
## [4.18.0] - 2026-08-31
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `mw-scroll-hint` - the "scroll down" cue at the bottom of a hero
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- some small chsnges in footer and avatar
|
|
18
|
+
|
|
19
|
+
## [4.17.0] - 2026-08-29
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- some small fixes
|
|
24
|
+
|
|
9
25
|
## [4.16.0] - 2026-08-29
|
|
10
26
|
|
|
11
27
|
### Changed
|