@agentscope-ai/design 1.0.27-beta.1769741632982 → 1.0.28-beta.1769761940248
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/lib/components/commonComponents/CodeBlock/demo/demo1.js +2 -5
- package/llms/all.llms.txt +1924 -1383
- package/llms/components/commonComponents/CodeBlock/index.zh-CN.llms.txt +2 -3
- package/llms/components/commonComponents/PromptsEditor/index.zh-CN.llms.txt +1 -2
- package/llms/components/commonComponents/Tabs/index.zh-CN.llms.txt +0 -1
- package/llms/docs/changelog/index.zh-CN.llms.txt +0 -43
- package/llms/docs/guide/tokens&variables.zh-CN.llms.txt +1 -1
- package/llms/docs/guide/vibe-coding.zh-CN.llms.txt +3 -2
- package/llms/index.llms.txt +48 -53
- package/package.json +1 -1
- package/scripts/mcp-docs-server.js +62 -50
- package/llms/components/commonComponents/FileIcon/index.zh-CN.llms.txt +0 -28
- package/llms/components/commonComponents/InputSearch/index.zh-CN.llms.txt +0 -6
- package/llms/components/commonComponents/MediaPreview/index.zh-CN.llms.txt +0 -21
- package/llms/docs/icons/iconLibrary.zh-CN.llms.txt +0 -308
|
@@ -2,7 +2,6 @@ import { CodeBlock, CollapsePanel, message } from "../../../..";
|
|
|
2
2
|
import { SparkCode01Line, SparkCopyLine } from '@agentscope-ai/icons';
|
|
3
3
|
import { Flex } from 'antd';
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import { EditorView } from '@codemirror/view';
|
|
6
5
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
6
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
7
|
var App = function App() {
|
|
@@ -41,10 +40,8 @@ var App = function App() {
|
|
|
41
40
|
}
|
|
42
41
|
}),
|
|
43
42
|
children: /*#__PURE__*/_jsx(CodeBlock, {
|
|
44
|
-
language:
|
|
45
|
-
value:
|
|
46
|
-
readOnly: true,
|
|
47
|
-
extensions: [EditorView.lineWrapping]
|
|
43
|
+
language: 'javascript',
|
|
44
|
+
value: value
|
|
48
45
|
})
|
|
49
46
|
})
|
|
50
47
|
});
|