vue-stream-markdown 0.7.0-beta.3 → 0.7.0-beta.4
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/dist/index.d.ts +3 -3
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -1499,8 +1499,8 @@ declare const UI: {
|
|
|
1499
1499
|
onLoad?: ((event: Event) => any) | undefined;
|
|
1500
1500
|
}>, {
|
|
1501
1501
|
preview: boolean;
|
|
1502
|
-
margin: number;
|
|
1503
1502
|
controls: ControlsConfig;
|
|
1503
|
+
margin: number;
|
|
1504
1504
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
1505
1505
|
readonly Modal: {
|
|
1506
1506
|
new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<UIModalProps & {
|
|
@@ -2243,12 +2243,12 @@ declare const __VLS_export: _$vue.DefineComponent<StreamMarkdownProps, StreamMar
|
|
|
2243
2243
|
}, string, _$vue.PublicProps, Readonly<StreamMarkdownProps> & Readonly<{
|
|
2244
2244
|
onCopied?: ((content: string) => any) | undefined;
|
|
2245
2245
|
}>, {
|
|
2246
|
-
nodeRenderers: Partial<Record<"delete" | "text" | "blockquote" | "break" | "code" | "definition" | "emphasis" | "footnoteDefinition" | "footnoteReference" | "heading" | "html" | "image" | "imageReference" | "inlineCode" | "link" | "linkReference" | "list" | "listItem" | "paragraph" | "strong" | "table" | "tableCell" | "tableRow" | "thematicBreak" | "yaml" | "inlineMath" | "math", _$vue.Component>>;
|
|
2247
2246
|
controls: ControlsConfig;
|
|
2248
|
-
content: string;
|
|
2249
2247
|
previewers: PreviewerConfig;
|
|
2250
2248
|
isDark: boolean;
|
|
2251
2249
|
mode: "static" | "streaming";
|
|
2250
|
+
content: string;
|
|
2251
|
+
nodeRenderers: Partial<Record<"blockquote" | "break" | "code" | "definition" | "delete" | "emphasis" | "footnoteDefinition" | "footnoteReference" | "heading" | "html" | "image" | "imageReference" | "inlineCode" | "link" | "linkReference" | "list" | "listItem" | "paragraph" | "strong" | "table" | "tableCell" | "tableRow" | "text" | "thematicBreak" | "yaml" | "inlineMath" | "math", _$vue.Component>>;
|
|
2252
2252
|
icons: Partial<Icons>;
|
|
2253
2253
|
enableAnimate: boolean;
|
|
2254
2254
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-stream-markdown",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.0-beta.
|
|
4
|
+
"version": "0.7.0-beta.4",
|
|
5
5
|
"description": "Streaming markdown output, Useful for text streams like LLM outputs.",
|
|
6
6
|
"author": "jinghaihan",
|
|
7
7
|
"license": "MIT",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@floating-ui/dom": "^1.7.6",
|
|
58
58
|
"@vueuse/core": "^14.2.1",
|
|
59
|
-
"@markmend/
|
|
60
|
-
"@markmend/
|
|
59
|
+
"@markmend/core": "0.7.0-beta.4",
|
|
60
|
+
"@markmend/ast": "0.7.0-beta.4"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@antfu/utils": "^9.3.0",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
"katex": "^0.16.38",
|
|
67
67
|
"mermaid": "^11.13.0",
|
|
68
68
|
"shiki": "^4.0.2",
|
|
69
|
-
"@stream-markdown/code": "0.7.0-beta.
|
|
70
|
-
"@stream-markdown/math": "0.7.0-beta.
|
|
71
|
-
"@stream-markdown/shared": "0.7.0-beta.
|
|
72
|
-
"@stream-markdown/mermaid": "0.7.0-beta.
|
|
69
|
+
"@stream-markdown/code": "0.7.0-beta.4",
|
|
70
|
+
"@stream-markdown/math": "0.7.0-beta.4",
|
|
71
|
+
"@stream-markdown/shared": "0.7.0-beta.4",
|
|
72
|
+
"@stream-markdown/mermaid": "0.7.0-beta.4"
|
|
73
73
|
},
|
|
74
74
|
"inlinedDependencies": {
|
|
75
75
|
"@antfu/utils": "9.3.0",
|