@prosekit/basic 0.3.0 → 0.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.
@@ -40,7 +40,7 @@ export declare const default_alias_2: {
|
|
40
40
|
*/
|
41
41
|
export declare function defineBasicExtension(): Extension< {
|
42
42
|
NODES: "text" | "doc" | "paragraph" | "blockquote" | "heading" | "image" | "list";
|
43
|
-
MARKS: "code" | "bold" | "
|
43
|
+
MARKS: "code" | "bold" | "link" | "strike" | "italic" | "underline";
|
44
44
|
COMMAND_ARGS: {
|
45
45
|
setHeading: [attrs?: HeadingAttrs | undefined];
|
46
46
|
insertHeading: [attrs?: HeadingAttrs | undefined];
|
package/dist/typography.css
CHANGED
@@ -132,3 +132,6 @@ div.ProseMirror .prosemirror-flat-list:has(> div.list-content > h6)::before,
|
|
132
132
|
div.ProseMirror .prosemirror-flat-list:has(> div.list-content > h6) > .list-marker {
|
133
133
|
top: -0.1em;
|
134
134
|
}
|
135
|
+
div.ProseMirror .ProseMirror-selectednode {
|
136
|
+
z-index: calc(infinity);
|
137
|
+
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prosekit/basic",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.3.
|
4
|
+
"version": "0.3.1",
|
5
5
|
"private": false,
|
6
6
|
"author": {
|
7
7
|
"name": "ocavue",
|
@@ -41,15 +41,15 @@
|
|
41
41
|
"dist"
|
42
42
|
],
|
43
43
|
"dependencies": {
|
44
|
-
"@prosekit/core": "^0.3.
|
45
|
-
"@prosekit/extensions": "^0.3.
|
44
|
+
"@prosekit/core": "^0.3.1",
|
45
|
+
"@prosekit/extensions": "^0.3.1",
|
46
46
|
"@prosekit/pm": "^0.1.1"
|
47
47
|
},
|
48
48
|
"devDependencies": {
|
49
49
|
"@prosekit/dev": "*",
|
50
|
-
"postcss": "^8.4.
|
50
|
+
"postcss": "^8.4.35",
|
51
51
|
"postcss-nesting": "^12.0.2",
|
52
|
-
"tsup": "^8.0.
|
52
|
+
"tsup": "^8.0.2",
|
53
53
|
"typescript": "^5.3.3",
|
54
54
|
"vitest": "^1.2.2"
|
55
55
|
},
|