-
-
Notifications
You must be signed in to change notification settings - Fork 381
feat(Table): add SearchFormLocalizerOptions parameter #7769
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fad0eef
doc: 代码格式化
ArgoZhang 20b1426
refactor: 移除 UseSearchForm 条件
ArgoZhang 3a64311
feat(Table): add SearchFormLocalizerOptions parameter
ArgoZhang f9a1814
refactor: 增加高级搜索生效逻辑
ArgoZhang 04aa2bf
doc: 更新本地化资源文件
ArgoZhang b1c3ce2
chore: bump version 10.4.1-beta03
ArgoZhang 1560110
chore: bump version 10.4.1
ArgoZhang f6d107e
doc: 移除注释信息
ArgoZhang 793d537
refactor: 移除接口默认实现
ArgoZhang 55fda4c
test: 增加单元测试
ArgoZhang 372fe23
test: 更新单元测试
ArgoZhang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the Apache 2.0 License | ||
| // See the LICENSE file in the project root for more information. | ||
| // Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone | ||
|
|
||
| namespace BootstrapBlazor.Components; | ||
|
|
||
| /// <summary> | ||
| /// <para lang="zh">搜索表单项本地化配置类</para> | ||
| /// <para lang="en">Search form item localization configuration class</para> | ||
| /// </summary> | ||
| public readonly record struct SearchFormLocalizerOptions | ||
| { | ||
| /// <summary> | ||
| /// <para lang="zh">全选文本</para> | ||
| /// <para lang="en">Select all text</para> | ||
| /// </summary> | ||
| public string SelectAllText { get; init; } | ||
|
|
||
| /// <summary> | ||
| /// <para lang="zh">布尔值全部文本</para> | ||
| /// <para lang="en">Boolean all text</para> | ||
| /// </summary> | ||
| public string BooleanAllText { get; init; } | ||
|
|
||
| /// <summary> | ||
| /// <para lang="zh">布尔值为真文本</para> | ||
| /// <para lang="en">Boolean true text</para> | ||
| /// </summary> | ||
| public string BooleanTrueText { get; init; } | ||
|
|
||
| /// <summary> | ||
| /// <para lang="zh">布尔值为假文本</para> | ||
| /// <para lang="en">Boolean false text</para> | ||
| /// </summary> | ||
| public string BooleanFalseText { get; init; } | ||
|
|
||
| /// <summary> | ||
| /// <para lang="zh">数字起始值标签文本</para> | ||
| /// <para lang="en">Number start value label text</para> | ||
| /// </summary> | ||
| public string NumberStartValueLabelText { get; init; } | ||
|
|
||
| /// <summary> | ||
| /// <para lang="zh">数字结束值标签文本</para> | ||
| /// <para lang="en">Number end value label text</para> | ||
| /// </summary> | ||
| public string NumberEndValueLabelText { get; init; } | ||
|
ArgoZhang marked this conversation as resolved.
|
||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.