Browse Source

feat: api sort

luyang 1 year ago
parent
commit
9d08105729
1 changed files with 2 additions and 2 deletions
  1. 2 2
      content/show/modal/index.md

+ 2 - 2
content/show/modal/index.md

@@ -623,7 +623,6 @@ function Demo(props = {}) {
 | cancelText | 取消按钮的文字                                                                                                   | string | 无 |
 | centered | 是否居中显示                                                                                                    | boolean | false |
 | className | 可用于设置样式类名                                                                                                 | string | 无 |
-| modalContentClass | 可用于设置对话框内容的样式类名 | string | 无 |
 | closable | 是否显示右上角的关闭按钮                                                                                              | boolean | true |
 | closeIcon | 关闭按钮的 icon <br/>**v1.0.0 后提供**                                                                            | ReactNode | <IconClose /\> |
 | closeOnEsc | 允许通过键盘事件 Esc 触发关闭 <br/>**v1.0.0 后提供**                                                                     | boolean | true |
@@ -641,6 +640,7 @@ function Demo(props = {}) {
 | mask | 是否显示遮罩                                                                                                    | boolean | true |
 | maskClosable | 是否允许通过点击遮罩来关闭对话框                                                                                          | boolean | true |
 | maskStyle | 遮罩的样式                                                                                                     | CSSProperties | 无 |
+| modalContentClass | 可用于设置对话框内容的样式类名 | string | 无 |
 | motion | 动画效果开关                                                                                                    | boolean | true |
 | okButtonProps | 确认按钮的 props                                                                                               | [ButtonProps](/zh-CN/input/button#API参考) | 无 |
 | okText | 确认按钮的文字                                                                                                   | string | 无 |
@@ -670,7 +670,6 @@ function Demo(props = {}) {
 | cancelText | 取消按钮的文字 | string | 无 |
 | centered | 是否居中显示 | boolean | false |
 | className | 可用于设置样式类名 | string | 无 |
-| modalContentClass | 可用于设置对话框内容的样式类名 | string | 无 |
 | closable | 是否显示右上角的关闭按钮 | boolean | true |
 | confirmLoading | 确认按钮 loading | boolean | false |
 | content | 对话框内容 | ReactNode | 无 |
@@ -682,6 +681,7 @@ function Demo(props = {}) {
 | mask | 是否显示遮罩 | boolean | true |
 | maskClosable | 是否允许通过点击遮罩来关闭对话框 | boolean | true |
 | maskStyle | 遮罩的样式 | CSSProperties | 无 |
+| modalContentClass | 可用于设置对话框内容的样式类名 | string | 无 |
 | okButtonProps | 确认按钮的 props | [ButtonProps](/zh-CN/input/button#API参考) | 无 |
 | okText | 确认按钮的文字 | string | 无 |
 | okType | 确认按钮的类型 | string | primary |