-
-
Notifications
You must be signed in to change notification settings - Fork 6
feat(EmbedPdf): bump version 10.0.1 #933
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,18 +7,21 @@ | |
| namespace BootstrapBlazor.Components; | ||
|
|
||
| /// <summary> | ||
| /// 滚动方向枚举 | ||
| /// <para lang="zh">滚动方向枚举</para> | ||
| /// <para lang="en">Scroll strategy enumeration</para> | ||
|
Comment on lines
+10
to
+11
|
||
| /// </summary> | ||
| public enum EmbedPDFScrollStrategy | ||
| { | ||
| /// <summary> | ||
| /// 垂直方向 | ||
| /// <para lang="zh">垂直方向</para> | ||
| /// <para lang="en">Vertical</para> | ||
| /// </summary> | ||
| [Description("vertical")] | ||
| Vertical, | ||
|
|
||
| /// <summary> | ||
| /// 水平方向 | ||
| /// <para lang="zh">水平方向</para> | ||
| /// <para lang="en">Horizontal</para> | ||
| /// </summary> | ||
| [Description("horizontal")] | ||
| Horizontal | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,24 +7,28 @@ | |
| namespace BootstrapBlazor.Components; | ||
|
|
||
| /// <summary> | ||
| /// 标签模式 | ||
| /// <para lang="zh">标签模式枚举</para> | ||
| /// <para lang="en">Tab bar mode enumeration</para> | ||
|
Comment on lines
+10
to
+11
|
||
| /// </summary> | ||
| public enum EmbedPDFTabBarMode | ||
| { | ||
| /// <summary> | ||
| /// 始终显示 | ||
| /// <para lang="zh">始终显示</para> | ||
| /// <para lang="en">Always show</para> | ||
| /// </summary> | ||
| [Description("always")] | ||
| Always, | ||
|
|
||
| /// <summary> | ||
| /// 多标签模式 | ||
| /// <para lang="zh">多标签模式</para> | ||
| /// <para lang="en">Multiple tabs mode</para> | ||
| /// </summary> | ||
| [Description("multiple")] | ||
| Multiple, | ||
|
|
||
| /// <summary> | ||
| /// 不显示 | ||
| /// <para lang="zh">不显示</para> | ||
| /// <para lang="en">Never show</para> | ||
| /// </summary> | ||
| [Description("never")] | ||
| Never | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,24 +7,28 @@ | |
| namespace BootstrapBlazor.Components; | ||
|
|
||
| /// <summary> | ||
| /// 主题枚举 | ||
| /// <para lang="zh">主题枚举</para> | ||
| /// <para lang="en">Theme enumeration</para> | ||
|
Comment on lines
+10
to
+11
|
||
| /// </summary> | ||
| public enum EmbedPDFTheme | ||
| { | ||
| /// <summary> | ||
| /// 跟随系统 | ||
| /// <para lang="zh">跟随系统</para> | ||
| /// <para lang="en">Follow system</para> | ||
| /// </summary> | ||
| [Description("system")] | ||
| System, | ||
|
|
||
| /// <summary> | ||
| /// 明亮模式 | ||
| /// <para lang="zh">明亮模式</para> | ||
| /// <para lang="en">Light mode</para> | ||
| /// </summary> | ||
| [Description("light")] | ||
| Light, | ||
|
|
||
| /// <summary> | ||
| /// 暗黑模式 | ||
| /// <para lang="zh">暗黑模式</para> | ||
| /// <para lang="en">Dark mode</para> | ||
| /// </summary> | ||
| [Description("dark")] | ||
| Dark | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
MSBuild generally tolerates backslashes, but using forward slashes in item paths is more consistently cross-platform and avoids edge cases in tooling. Consider changing to "wwwroot/readme.txt" for both entries.