markstream-angular 2.0.1 → 2.0.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/dist/index.d.ts
CHANGED
|
@@ -288,6 +288,12 @@ declare class CodeBlockNodeComponent implements AfterViewInit, OnChanges, OnDest
|
|
|
288
288
|
private copyTimer;
|
|
289
289
|
private deferredHeightSyncRaf;
|
|
290
290
|
private lastCodeBlockOptions?;
|
|
291
|
+
private hasEditorInput;
|
|
292
|
+
private lastEditorIsDiff;
|
|
293
|
+
private lastEditorOriginalCode;
|
|
294
|
+
private lastEditorResolvedCode;
|
|
295
|
+
private lastEditorLanguage;
|
|
296
|
+
private lastEditorShowLoadingPlaceholder;
|
|
291
297
|
private lastRuntimeHostKey;
|
|
292
298
|
get t(): (key: string) => string;
|
|
293
299
|
get mergedProps(): {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markstream-angular",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.2",
|
|
5
5
|
"description": "Angular 20+ standalone streaming Markdown renderer for AI chat, LLM token streams, SSE/WebSocket output, incomplete Markdown, Mermaid, KaTeX, stream-diffs powered code blocks, and safe Angular component rendering.",
|
|
6
6
|
"author": "Simon He",
|
|
7
7
|
"license": "MIT",
|
|
@@ -94,8 +94,8 @@
|
|
|
94
94
|
},
|
|
95
95
|
"dependencies": {
|
|
96
96
|
"@floating-ui/dom": "^1.8.0",
|
|
97
|
-
"markstream-core": "2.0.
|
|
98
|
-
"stream-markdown-parser": "1.2.
|
|
97
|
+
"markstream-core": "2.0.2",
|
|
98
|
+
"stream-markdown-parser": "1.2.10"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
101
|
"@angular/common": "^20.3.26",
|