buckram 1.10.2 → 1.10.4

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.
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="inheritedJdk" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ </component>
8
+ </module>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/buckram.iml" filepath="$PROJECT_DIR$/.idea/buckram.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
package/.idea/php.xml ADDED
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="MessDetectorOptionsConfiguration">
4
+ <option name="transferred" value="true" />
5
+ </component>
6
+ <component name="PHPCSFixerOptionsConfiguration">
7
+ <option name="transferred" value="true" />
8
+ </component>
9
+ <component name="PHPCodeSnifferOptionsConfiguration">
10
+ <option name="highlightLevel" value="WARNING" />
11
+ <option name="transferred" value="true" />
12
+ </component>
13
+ <component name="PhpStanOptionsConfiguration">
14
+ <option name="transferred" value="true" />
15
+ </component>
16
+ <component name="PsalmOptionsConfiguration">
17
+ <option name="transferred" value="true" />
18
+ </component>
19
+ </project>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.10.2"
2
+ ".": "1.10.4"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.10.4](https://github.com/pressbooks/buckram/compare/v1.10.3...v1.10.4) (2026-07-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * toc display with inline block for a single clickable OBJR ([#437](https://github.com/pressbooks/buckram/issues/437)) ([7e62a6a](https://github.com/pressbooks/buckram/commit/7e62a6a6de8b47bb771e5555363a6b3da5680d80))
9
+
10
+ ## [1.10.3](https://github.com/pressbooks/buckram/compare/v1.10.2...v1.10.3) (2026-07-22)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * rendering links indent ([#433](https://github.com/pressbooks/buckram/issues/433)) ([7c5ace3](https://github.com/pressbooks/buckram/commit/7c5ace38a06bda84d36a500b1be26d6df0e6383f))
16
+
3
17
  ## [1.10.2](https://github.com/pressbooks/buckram/compare/v1.10.1...v1.10.2) (2026-06-25)
4
18
 
5
19
 
@@ -16,16 +16,11 @@
16
16
  }
17
17
 
18
18
  @if $type == 'prince' {
19
- // Render each anchor as a single atomic box so PrinceXML emits one PDF link
20
- // rectangle (and one OBJR tag) for the whole anchor, even when a long URL
21
- // wraps across lines. This keeps the entire URL clickable
22
- // (pressbooks/pressbooks#2512) and stops screen readers repeating the link
23
- // from duplicate OBJR tags (pressbooks/private#2394). max-width and
24
- // overflow-wrap let the URL wrap inside the box instead of overflowing.
25
19
  a {
26
20
  display: inline-block;
27
- max-width: 100%;
28
21
  overflow-wrap: break-word;
22
+ text-indent: 0;
23
+ max-width: 100%;
29
24
  }
30
25
 
31
26
  .print a {
@@ -26,6 +26,7 @@
26
26
 
27
27
  a {
28
28
  border: 0;
29
+ width: 100%;
29
30
  }
30
31
 
31
32
  .toc-chapter-title {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buckram",
3
- "version": "1.10.2",
3
+ "version": "1.10.4",
4
4
  "description": "Opinionated SCSS components for books (web, EPUB and PDF).",
5
5
  "scripts": {
6
6
  "build": "composer install && composer test",