buckram 1.10.0 → 1.10.1

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.10.0"
2
+ ".": "1.10.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.10.1](https://github.com/pressbooks/buckram/compare/v1.10.0...v1.10.1) (2026-06-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * links should be underlined by default for all formats (fix [#419](https://github.com/pressbooks/buckram/issues/419)) ([#420](https://github.com/pressbooks/buckram/issues/420)) ([c0653ad](https://github.com/pressbooks/buckram/commit/c0653ad45a6a6dff99089623eb2cf4ed5901323a))
9
+ * prevent hyphenation within links (see pressbooks/pressbooks[#2512](https://github.com/pressbooks/buckram/issues/2512)) ([#422](https://github.com/pressbooks/buckram/issues/422)) ([be1fb8f](https://github.com/pressbooks/buckram/commit/be1fb8f199e7f477962eec969f558561711806c1))
10
+
3
11
  ## [1.10.0](https://github.com/pressbooks/buckram/compare/v1.9.1...v1.10.0) (2026-05-06)
4
12
 
5
13
 
@@ -10,6 +10,7 @@
10
10
 
11
11
  @if $type != 'web' {
12
12
  a {
13
+ hyphens: none;
13
14
  text-decoration: if-map-get($link-text-decoration, $type);
14
15
  }
15
16
  }
@@ -1280,7 +1280,7 @@ $sup-line-height: $sup-sub-line-height !default;
1280
1280
  /// Text decoration for `<a>` elements.
1281
1281
  /// @type String
1282
1282
  $link-text-decoration: (
1283
- epub: none,
1283
+ epub: underline,
1284
1284
  prince: underline,
1285
1285
  web: underline
1286
1286
  ) !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buckram",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Opinionated SCSS components for books (web, EPUB and PDF).",
5
5
  "scripts": {
6
6
  "build": "composer install && composer test",