markawesome 0.9.4 → 0.9.5
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: 284af0f54ea550fda282556a2e9d4cbf190a69363a408c66240bef3e69428016
|
|
4
|
+
data.tar.gz: 2ba7b8a239a80f4d54aff572f1681192db79a9aaafba5f88d271ff0812ab2b31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83a9e33d11f03781693bd13c817710899421f757ea979eaf933dcfe83bb6872fec39018e199c379f08422b4728bcee1c28cd37d02fc38ef91f4f9645c9f29cb0
|
|
7
|
+
data.tar.gz: 31ff66f883de01c5dae5f9c8730937d656da05352889bebf73cdd1412640596d193c264a68c3c186c71e821bd8d5083e58cff5a2dea8e71d9e5e1c581ae79644
|
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.5] - 2026-03-18
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Added `type='button'` attribute to link-style popover trigger `<button>` elements to satisfy `no-implicit-button-type` HTML validation rule
|
|
12
|
+
|
|
7
13
|
## [0.9.4] - 2026-03-13
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
@@ -167,7 +167,7 @@ module Markawesome
|
|
|
167
167
|
'color: inherit; text-decoration: underline; ' \
|
|
168
168
|
'text-decoration-style: dotted; ' \
|
|
169
169
|
'cursor: pointer; font: inherit;'
|
|
170
|
-
"<button id='#{popover_id}' class='ma-popover-trigger' style='#{link_style_attr}'>#{trigger_content}</button>"
|
|
170
|
+
"<button type='button' id='#{popover_id}' class='ma-popover-trigger' style='#{link_style_attr}'>#{trigger_content}</button>"
|
|
171
171
|
else
|
|
172
172
|
"<wa-button id='#{popover_id}' variant='text'>#{trigger_content}</wa-button>"
|
|
173
173
|
end
|
data/lib/markawesome/version.rb
CHANGED