@gcforms/editor 1.0.12 → 1.0.13
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 +3 -0
- package/package.json +1 -1
- package/src/styles.css +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.13] - 2026-01-07
|
|
9
|
+
|
|
10
|
+
- Add editor styles to prevent "double bullets" in nested lists
|
|
8
11
|
|
|
9
12
|
## [1.0.12] - 2025-12-08
|
|
10
13
|
|
package/package.json
CHANGED
package/src/styles.css
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
.gc-editor-container {
|
|
2
2
|
position: relative;
|
|
3
3
|
}
|
|
4
|
+
|
|
5
|
+
/* Fix for Lexical's incorrect list nesting structure where nested ul/ol
|
|
6
|
+
are placed in separate li elements, causing extra bullets to appear */
|
|
7
|
+
.gc-editor-container li:has(> ul:only-child),
|
|
8
|
+
.gc-editor-container li:has(> ol:only-child) {
|
|
9
|
+
list-style-type: none;
|
|
10
|
+
}
|