Browse Source

chore: change document

DaiQiangReal 1 year ago
parent
commit
392ee53e40

+ 2 - 0
content/input/pincode/index-en-US.md

@@ -12,6 +12,8 @@ brief: For easy and intuitive verification code entry
 
 ### How to import
 
+PinCode supported from 2.62.0
+
 ```jsx
 import { PinCode } from '@douyinfe/semi-ui';
 ```

+ 2 - 0
content/input/pincode/index.md

@@ -12,6 +12,8 @@ brief: 用于便捷直观地输入验证码
 
 ### 如何引入
 
+PinCode 从 2.62.0 开始支持
+
 ```jsx
 import { PinCode } from '@douyinfe/semi-ui';
 ```

+ 2 - 0
content/plus/codehighlight/index-en-US.md

@@ -16,6 +16,8 @@ Pass the code plain text to `code` props, and pass the programming language name
 
 ### How to introduce
 
+CodeHighlight supported from 2.62.0 
+
 ```jsx
 import { CodeHighlight } from '@douyinfe/semi-ui';
 ```

+ 1 - 0
content/plus/codehighlight/index.md

@@ -17,6 +17,7 @@ Semi 代码高亮组件使用了 prismjs,支持297 种编程语言的高亮(
 
 ### 如何引入
 
+CodeHighlight 从 2.62.0 开始支持
 
 ```jsx
 import { CodeHighlight } from '@douyinfe/semi-ui';

+ 2 - 0
content/plus/lottie/index-en-US.md

@@ -26,6 +26,8 @@ Compared to using `lottie-web` directly, use the Semi Lottie component
 
 ### How to import
 
+Lottie component supported from 2.62.0
+
 ```jsx
 import { Lottie } from "@douyinfe/semi-ui";
 ```

+ 2 - 0
content/plus/lottie/index.md

@@ -27,6 +27,8 @@ Lottie 组件能够便捷简单地渲染 Lottie 动画,同时提供方式获
 
 ### 如何引入
 
+Lottie 从 2.62.0 开始支持
+
 ```jsx
 import { Lottie } from "@douyinfe/semi-ui";
 ```

+ 5 - 1
content/plus/markdownrender/index-en-US.md

@@ -24,6 +24,8 @@ Usually used in the following scenarios:
 
 ## Demos
 
+MarkdownRender supported from 2.62.0
+
 ### How to import
 
 ```jsx
@@ -103,8 +105,10 @@ function Demo() {
 
 Basic element tag support that can be overridden `a blockquote br code em h1 h2 h3 h4 h5 hr img li ol p pre strong ul table`
 
-### 仅纯 Markdown
+### Simple Markdown
 When the Markdown you render is just pure markdown without any JSX code, you can pass `format="md"` to enable Markdown-only mode. In this mode, you don't need to escape special characters.
+
+
 ```jsx live=true
 import { MarkdownRender, Typography } from '@douyinfe/semi-ui';
 

+ 2 - 0
content/plus/markdownrender/index.md

@@ -24,6 +24,8 @@ Semi 提供的 MarkdownRender 组件支持渲染 Markdown 和 MDX,无需特别
 
 ## 代码演示
 
+MarkdownRender 从 2.62.0 开始支持
+
 ### 如何引入
 
 ```jsx