jekyll-webawesome 0.24.2 → 0.25.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +2 -0
- data/jekyll-webawesome.gemspec +1 -1
- data/lib/jekyll/webawesome/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5dbb8bc060a672e617f8921d4e5ae3c993753ebba498bd220735495f36c68c70
|
|
4
|
+
data.tar.gz: 218ebd7395e81344307082cf5c8ddd1539af1cd82638a7bf2fad1562a4bff664
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c43f88974da1131b8308293727ab8aec40893bba659a488691aad3b97284ba3a4b652aa6ed3c0b8d01ecb59300d46e3a70bc0a9306ca272fb75c2d91819989e2
|
|
7
|
+
data.tar.gz: e2ada4ad786b2f50512dc9ec53183b58606fbc4d4eda61a2d99128d6d476c98d76c1f36a076e7bc43071b2ca0303ec44f2c0dd4e0a0663c833bfd68f6057bb2c
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.25.0] - 2026-08-26
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **The "Custom dialog width" image-dialog example now opens its own dialog.** It reused the previous example's alt text and image, and the engine hashes a dialog's id from trigger plus body — so both examples produced the same id and the 60% one was unreachable, silently opening the 90vh dialog instead. Its alt text is now distinct. (The engine also gained a `-2`, `-3`, … suffix for repeats, but that counter is per `Transformer.process` call and the examples site renders each snippet in its own call, so it cannot deduplicate across two examples.)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- **Requires `markawesome ~> 0.19`** (up from `~> 0.18.1`), picking up the repeated-dialog DOM id fix: the engine hashes a dialog's id from its trigger text plus body, so two dialogs on a page that differed only by a param — or were byte-identical — shared an id, and every trigger's `getElementById` resolved to the first of them, leaving the rest unopenable. Repeats now take a `-2`, `-3`, … suffix. Also picks up image-dialog triggers styling both `::part(base)` and `::part(button)` for Web Awesome 3.11+.
|
|
18
|
+
- Examples site now loads the **pinned Web Awesome 3.12.0 CDN** (`examples/_includes/head.html`), up from 3.11.0. 3.12.0 (August 2026) changes nothing this site renders: its only component-level additions are navigation attributes (`href`/`target`/`rel`/`download`) on `<wa-dropdown-item>` and a `filterOptions` column option on `<wa-data-grid>` — neither component appears in the examples, and neither has a Markawesome syntax. Everything else is internal to Web Awesome's own shadow DOM, and three of those fixes improve the examples for free: `<wa-button>` keeps its accessible name (and gains `aria-busy`) while `loading`, duplicate landmarks were removed from `<wa-card>`/`<wa-dialog>`/`<wa-drawer>`, and `<wa-tooltip>` light dismiss handles target presses and page clicks better. No `<wa-page>` slot the shell layout uses was removed or renamed.
|
|
19
|
+
- Examples site now loads the **pinned Web Awesome 3.11.0 CDN** (`examples/_includes/head.html`), up from 3.10.0. 3.11.0 (July 30th, 2026) is additive for this site: it adds `<wa-otp-input>`, `<wa-pagination>` and `<wa-data-grid>`, moves `<wa-toast>`/`<wa-toast-item>` from Pro to Core, and gives every component a CSS part named after itself (softly deprecating the generic `base` part). Nothing the examples render was removed or renamed — every `<wa-page>` slot the shell layout uses (`header`, `subheader`, `navigation-header`, `navigation`, `footer`) still exists in 3.11.0. One behaviour change to be aware of when eyeballing the output: WA dropped `font-variant-numeric: tabular-nums` from its default `<table>` styles, so numeric Markdown tables now need the opt-in `wa-tabular-nums` class to keep digits column-aligned.
|
|
20
|
+
- Docs now point at `examples/_includes/head.html` for the CDN pin (both `CLAUDE.md` and `examples/README.md` still said `_layouts/default.html`, which does not exist).
|
|
21
|
+
|
|
9
22
|
## [0.24.2] - 2026-07-04
|
|
10
23
|
|
|
11
24
|
### Changed
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This is a plugin for [Jekyll](https://jekyllrb.com/) that transforms custom Markdown syntax into [Web Awesome](https://webawesome.com/) components. Use a simple, intuitive Markdown-like syntax to create rich interactive components in your Jekyll website. The goal is to keep HTML out of Markdown files and create an easier experience for non-developers to update content.
|
|
4
4
|
|
|
5
|
+
> **🔗 See it live — [hosted examples site](https://jannewaren.github.io/jekyll-webawesome/).** Every supported component shown side by side: the Markdown syntax on the left, the live Web Awesome component it renders on the right. The clearest way to see what this project does.
|
|
6
|
+
|
|
5
7
|
The tranformations have been extracted into a separate project: [markawesome](https://github.com/jannewaren/markawesome), which can be used with any static site generator or Ruby application that processes Markdown.
|
|
6
8
|
|
|
7
9
|
The context here is a technical documentation website, and being limited to just basic Markdown features often results in a boring wall of text which the user won't read. The aim is to help create a more visually interesting page to read, by mixing in some components like callouts, tabs, cards and collapsible summary/details.
|
data/jekyll-webawesome.gemspec
CHANGED
|
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
|
|
|
33
33
|
spec.require_paths = ['lib']
|
|
34
34
|
|
|
35
35
|
spec.add_dependency 'jekyll', '>= 3.7', '< 5.0'
|
|
36
|
-
spec.add_dependency 'markawesome', '~> 0.
|
|
36
|
+
spec.add_dependency 'markawesome', '~> 0.19'
|
|
37
37
|
|
|
38
38
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
39
39
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-webawesome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Janne Waren
|
|
@@ -35,14 +35,14 @@ dependencies:
|
|
|
35
35
|
requirements:
|
|
36
36
|
- - "~>"
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: 0.
|
|
38
|
+
version: '0.19'
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
42
|
requirements:
|
|
43
43
|
- - "~>"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: 0.
|
|
45
|
+
version: '0.19'
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: rake
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|