umberto 10.7.2 → 10.7.3
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## [10.7.3](https://github.com/cksource/umberto/compare/v10.7.2...v10.7.3) (July 22, 2026)
|
|
5
|
+
|
|
6
|
+
### Bug fixes
|
|
7
|
+
|
|
8
|
+
* Fixed live snippets failing to load in browsers that require import maps before module scripts.
|
|
9
|
+
|
|
10
|
+
|
|
4
11
|
## [10.7.2](https://github.com/cksource/umberto/compare/v10.7.1...v10.7.2) (July 16, 2026)
|
|
5
12
|
|
|
6
13
|
### Other changes
|
|
@@ -42,21 +49,6 @@ Changelog
|
|
|
42
49
|
* Updated homepage link.
|
|
43
50
|
* Restored the web-based Google Tag Manager snippets in both Gloria and legacy Umberto themes.
|
|
44
51
|
|
|
45
|
-
|
|
46
|
-
## [10.6.0](https://github.com/cksource/umberto/compare/v10.5.1...v10.6.0) (June 8, 2026)
|
|
47
|
-
|
|
48
|
-
### Features
|
|
49
|
-
|
|
50
|
-
* Improved rendering of complex TypeScript types in API docs.
|
|
51
|
-
|
|
52
|
-
Intersection (`A & B`), tuple (`[ key: T, value: U ]`), and conditional (`T extends U ? X : Y`) types now render with their full structure preserved and each reference linkable, instead of collapsing to a generic `object` or `tuple` placeholder. Optional tuple elements display the trailing `?` from the source. The `infer X` keyword inside conditionals renders as such and no longer triggers "unsupported type" warnings during the docs build.
|
|
53
|
-
|
|
54
|
-
Properties tables on intersection type aliases now list the fields from the inline-literal half — including nested cases like `abc: A & { b: T }`, which now exposes `abc.b` as a sub-row, and cases where the inline literal is wrapped in `Partial<...>`, `Readonly<...>`, or `Required<...>`, where the wrapper's modifier is applied to each field. Per-field inline TSDoc comments (`/** ... */`) above each field render their descriptions in the Properties table, where they were previously dropped.
|
|
55
|
-
|
|
56
|
-
### Other changes
|
|
57
|
-
|
|
58
|
-
* Updated the GTM integration to use the new server-side setup in both Gloria and legacy Umberto themes.
|
|
59
|
-
|
|
60
52
|
---
|
|
61
53
|
|
|
62
54
|
To see all releases, visit the [release page](https://github.com/cksource/umberto/releases).
|
package/package.json
CHANGED
|
@@ -49,6 +49,9 @@ if ( page[ 'dc-description' ] || ogConfig.description )
|
|
|
49
49
|
if page.BASE_PATH && page.BASE_PATH !== '.' && !page.BASE_PATH.includes( 'latest' )
|
|
50
50
|
link( rel = 'canonical' href = page.canonicalUrlBeginning + page.path.replace( page.BASE_PATH, projectLocals.latestBasePath ) )
|
|
51
51
|
|
|
52
|
+
if page.isSnippetPage
|
|
53
|
+
//UMBERTO: SNIPPET: HEAD
|
|
54
|
+
|
|
52
55
|
+head-preloads()
|
|
53
56
|
if kapa
|
|
54
57
|
+load-kapa-script(kapa)
|