-
Notifications
You must be signed in to change notification settings - Fork 142
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
feat(pro:search): add validate function #1056
feat(pro:search): add validate function #1056
Conversation
This preview will be available after the AzureCI is passed. |
Codecov Report
@@ Coverage Diff @@
## main #1056 +/- ##
==========================================
- Coverage 93.64% 93.62% -0.03%
==========================================
Files 314 314
Lines 30220 30239 +19
Branches 3547 3547
==========================================
+ Hits 28299 28310 +11
- Misses 1921 1929 +8
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
cb77681
to
774bc4e
Compare
packages/pro/search/docs/Index.zh.md
Outdated
@@ -64,6 +66,7 @@ interface InvalidSearchValue<V = unknown> extends Partial<SearchValue<V>> { | |||
| `defaultOperator` | 默认的操作符 | `string` | - | - | 提供时,会自动填入默认的操作符 | | |||
| `defaultValue` | 默认值 | - | - | - | 提供时,会自动填入默认值 | | |||
| `inputClassName` | 输入框class | `string` | - | - | 用于自定义输入框样式 | | |||
| `validate` | 搜索项校验函数 | `(value: SearchValue) => { message?: string } | undefined` | - | - | 返回错误信息 | |
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.
| `validate` | 搜索项校验函数 | `(value: SearchValue) => { message?: string } | undefined` | - | - | 返回错误信息 | | |
| `validator` | 搜索项校验函数 | `(value: SearchValue) => { message?: string } | undefined` | - | - | 返回错误信息 | |
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.
都改成 validator 吧
774bc4e
to
8cb2506
Compare
8cb2506
to
c8774b6
Compare
PR Checklist
Please check if your PR fulfills the following requirements:
What is the current behavior?
不支持搜索项校验
What is the new behavior?
增加搜索项校验功能
Other information