-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SettingForm 优化 #125
SettingForm 优化 #125
Conversation
BoBoooooo
commented
Mar 26, 2024
•
edited
Loading
edited
- FormGroupHeader 默认吸顶(仅一级 Header 支持)
- expressionSetter
- autoCompleteOptions 新增可视化下拉框面板
- actionSetter
- 新增 consoleLog 打印事件参数快捷选项
@@ -34,6 +34,7 @@ export interface FormItemComponentProps<T = any> { | |||
onChange: (value: T, detail?: SetterOnChangeDetailType) => void; | |||
readOnly?: boolean; | |||
disabled?: boolean; | |||
toggleIsVariable?: () => void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
和 disableVariableSetter
区别是啥?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
选中后自动切换到 源码模式
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这部分逻辑已经提供了支持,无需增加 toggleIsVariable 的逻辑。先拿掉吧。其他都没啥问题。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done