jekyll-webawesome 0.18.0 → 0.20.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 +23 -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: 357c6fd1272603627457c36d096cd9df2eafefc0fbe79564278d246db85ee400
|
|
4
|
+
data.tar.gz: 55058f53d7164006a4de03d8135245b957cc88b3ff6562339dccc67bac2e5690
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17840e18f7bc1c5c131a30320b05ea243a5215519aa46dff76c55ab6b9abc06959751acae7c98504d71f62a0b2dd8ac97100f9eed9aed3bc72ce76546370a10a
|
|
7
|
+
data.tar.gz: fe51782529d4091b9675dd074c88e2ce568e98e955190a1ef47c0eea3105f8ef08eceff4d0ce22f0b75740347df3ce31d813df0f36ec45e78938ec6bdb74418e
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,29 @@ 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.1.0/)
|
|
6
6
|
|
|
7
|
+
## [0.20.0] - 2026-06-24
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Accordion support, via markawesome 0.14.0. A multi-section collapsible container — the grouped sibling of Details/Summary, ideal for FAQs and docs sections. The container fence is `//////` (6 slashes) and each item is a `///` block (3 slashes) with an explicit `///` close (or use the `:::wa-accordion … :::` alternative form). Container tokens: `appearance` (`outlined` default, `filled`, `filled-outlined`, `plain`), `mode` (`multiple` default, `single`, `single-collapsible`), `icon-placement` (`start`/`end`), and `heading:N` (`1`–`6` or `none`). Item tokens: leading `expanded`/`disabled` flags, an `icon:name` first child, and the rest of the line as the label. Item bodies are full Markdown and may contain other components.
|
|
12
|
+
- Example site gains an `## Accordion` section exercising the basic FAQ shape, every appearance, `single`/`single-collapsible` modes, `icon-placement start`, `heading:2`, an `expanded` item, a `disabled` item, custom item icons, rich item bodies (a nested callout, button, and list), and the `:::wa-accordion` alternative form. Validated live in the browser against the examples kit (rendering, click-to-expand/collapse, `mode="single"` closing the previously open item, and the live-DOM attributes); `wa-accordion` is experimental in Web Awesome but everything used here is declarative and static-safe.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Updated `markawesome` dependency to `~> 0.14`.
|
|
17
|
+
|
|
18
|
+
## [0.19.0] - 2026-06-20
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- Standalone icons can now be enriched, via markawesome 0.13.0. The `:::wa-icon` block accepts `family`/`variant`/`animation` tokens after the icon name and turns its block body into an accessible `label`, e.g. `:::wa-icon bell shake\n:::` (animates, no Pro kit needed) or `:::wa-icon circle-check solid\nTask complete\n:::` (sets the accessible name). The inline `$$$name` form stays name-only and decorative.
|
|
23
|
+
- Callouts can now override their icon's `family`/`variant`/`animation` with bare tokens on the callout line, e.g. `:::warning shake`. The historical `solid` variant default is preserved, so existing callouts are unchanged.
|
|
24
|
+
- Example site gains an `## Icons` section (animation, label, variant/family, combined, and an unchanged inline icon) plus an animated-icon callout override. `animation` and `label` are fully functional on the examples kit; `family`/`variant` reach the DOM but only swap the glyph visibly with a Font Awesome Pro kit.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Updated `markawesome` dependency to `~> 0.13`.
|
|
29
|
+
|
|
7
30
|
## [0.18.0] - 2026-06-19
|
|
8
31
|
|
|
9
32
|
### Added
|
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.14'
|
|
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.20.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.14'
|
|
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.14'
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
47
|
name: rake
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|