umberto 8.3.0 → 8.3.2

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,24 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## [8.3.2](https://github.com/cksource/umberto/compare/v8.3.1...v8.3.2) (September 16, 2025)
5
+
6
+ ### Other changes
7
+
8
+ * Update to TypeScript 5.3.
9
+
10
+
11
+ ## [8.3.1](https://github.com/cksource/umberto/compare/v8.3.0...v8.3.1) (September 4, 2025)
12
+
13
+ ### Bug fixes
14
+
15
+ * Fixed link styles not being applied to followup questions in `Kapa.ai` integration.
16
+
17
+ ### Other changes
18
+
19
+ * Increased size of the modal in `Kapa.ai` integration.
20
+
21
+
4
22
  ## [8.3.0](https://github.com/cksource/umberto/compare/v8.2.0...v8.3.0) (September 2, 2025)
5
23
 
6
24
  ### Features
@@ -28,22 +46,6 @@ Changelog
28
46
 
29
47
  * Updated how `<iframe>` elements are created to fix issues with automated tests using Chrome v139.
30
48
 
31
-
32
- ## [8.0.3](https://github.com/cksource/umberto/compare/v8.0.2...v8.0.3) (August 5, 2025)
33
-
34
- ### Bug fixes
35
-
36
- * The backticks in the XML components parser were not escaped correctly, causing issues with parsing XML content. This fix ensures that backticks are properly escaped, allowing the parser to handle XML content containing backticks without errors.
37
-
38
-
39
- ## [8.0.2](https://github.com/cksource/umberto/compare/v8.0.1...v8.0.2) (July 31, 2025)
40
-
41
- ### Bug fixes
42
-
43
- * Fixed an issue where code blocks appeared empty when displayed inside a `details` element in Chrome.
44
- * Changed from `overscroll-behavior: none` to `overscroll-behavior-y: none` on `<html>` and `<body>` elements to allow Mac trackpad swipe gestures for browser navigation.
45
- * Code blocks in API descriptions are no longer duplicated when there are multiple code blocks withing the same description.
46
-
47
49
  ---
48
50
 
49
51
  To see all releases, visit the [release page](https://github.com/cksource/umberto/releases).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umberto",
3
- "version": "8.3.0",
3
+ "version": "8.3.2",
4
4
  "description": "CKSource Documentation builder",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -1,16 +1,21 @@
1
1
  /* Style for the floating button. */
2
- #kapa-button p {
2
+ #kapa-button div > img + p {
3
3
  position: relative;
4
4
  top: 6px;
5
5
  }
6
6
 
7
+ /* Variables for the modal. */
8
+ #kapa-widget-root > div > div {
9
+ --modal-y-offset: 3vh !important;
10
+ }
11
+
7
12
  /* Style for hyperlinks inside the AI's answer. */
8
13
  #kapa-modal-content
9
14
  > div:nth-of-type(1)
10
15
  > div:nth-of-type(1)
11
16
  > div:nth-of-type(1)
12
17
  > div:nth-of-type(2)
13
- > div:nth-of-type(1)
18
+ > h5 + div
14
19
  a
15
20
  {
16
21
  font-weight: normal !important;