markawesome 0.9.1 → 0.9.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/markawesome/transformers/popover_transformer.rb +1 -1
- data/lib/markawesome/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fbaa15349c093e2848703332cdd25b5dc7493b4a9fbf4f410f718fbd00a943d
|
|
4
|
+
data.tar.gz: ee7f2ffc8fb093ac98d05d560c9815e46496c419dbaf6bc554a5148bcd40295b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e951b88f04f20952958fd0fde52279ca9b3d5f406fe65518da281aa2556b73c56d2b017598673d8c0d8f3004838b5494e1ed884200c0b1b1d720894db540698
|
|
7
|
+
data.tar.gz: 825d98fe6f73de0fcfad58c2c4b03a39c05dd8ed0781b730f279f87484e86b18b139c218b1e8c59d0ec86137dce9d1297d8cf3c9b7b74006667da63511c0d83b
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.9.2] - 2026-03-13
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Link-style popover triggers now include a `ma-popover-trigger` CSS class for easier styling overrides in consumer projects
|
|
12
|
+
|
|
7
13
|
## [0.9.1] - 2026-03-12
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
@@ -166,7 +166,7 @@ module Markawesome
|
|
|
166
166
|
'color: inherit; text-decoration: underline; ' \
|
|
167
167
|
'text-decoration-style: dotted; ' \
|
|
168
168
|
'cursor: pointer; font: inherit;'
|
|
169
|
-
"<button id='#{popover_id}' style='#{link_style_attr}'>#{trigger_content}</button>"
|
|
169
|
+
"<button id='#{popover_id}' class='ma-popover-trigger' style='#{link_style_attr}'>#{trigger_content}</button>"
|
|
170
170
|
else
|
|
171
171
|
"<wa-button id='#{popover_id}' variant='text'>#{trigger_content}</wa-button>"
|
|
172
172
|
end
|
data/lib/markawesome/version.rb
CHANGED