umberto 8.3.0 → 8.3.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## [8.3.1](https://github.com/cksource/umberto/compare/v8.3.0...v8.3.1) (September 4, 2025)
|
|
5
|
+
|
|
6
|
+
### Bug fixes
|
|
7
|
+
|
|
8
|
+
* Fixed link styles not being applied to followup questions in `Kapa.ai` integration.
|
|
9
|
+
|
|
10
|
+
### Other changes
|
|
11
|
+
|
|
12
|
+
* Increased size of the modal in `Kapa.ai` integration.
|
|
13
|
+
|
|
14
|
+
|
|
4
15
|
## [8.3.0](https://github.com/cksource/umberto/compare/v8.2.0...v8.3.0) (September 2, 2025)
|
|
5
16
|
|
|
6
17
|
### Features
|
|
@@ -35,15 +46,6 @@ Changelog
|
|
|
35
46
|
|
|
36
47
|
* 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
48
|
|
|
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,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
|
|
18
|
+
> h5 + div
|
|
14
19
|
a
|
|
15
20
|
{
|
|
16
21
|
font-weight: normal !important;
|