Progress
This commit is contained in:
parent
272d19fe8a
commit
c5e97f9600
@ -7,7 +7,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components", "src
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components.Showcase", "src\Connected.Components.Showcase\Connected.Components.Showcase.csproj", "{EBB24FD8-A554-427C-A93B-B48C047D34CC}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components.Showcase", "src\Connected.Components.Showcase\Connected.Components.Showcase.csproj", "{EBB24FD8-A554-427C-A93B-B48C047D34CC}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Connected.Components.Showcase.Runner", "Connected.Components.Showcase.Runner\Connected.Components.Showcase.Runner.csproj", "{B8E7BCC3-3F99-4222-B65E-9ABD3B18DAF7}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components.Showcase.Runner", "Connected.Components.Showcase.Runner\Connected.Components.Showcase.Runner.csproj", "{B8E7BCC3-3F99-4222-B65E-9ABD3B18DAF7}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
@ -10,7 +10,7 @@ public partial class Icon : UIComponent
|
|||||||
protected string Classname =>
|
protected string Classname =>
|
||||||
new CssBuilder("icon-root")
|
new CssBuilder("icon-root")
|
||||||
.AddClass($"icon-default", Color == ThemeColor.Default)
|
.AddClass($"icon-default", Color == ThemeColor.Default)
|
||||||
.AddClass($"svg-icon", !string.IsNullOrEmpty(Glyph) && Glyph.Trim().StartsWith(("<")))
|
.AddClass($"svg-icon", !string.IsNullOrEmpty(Glyph) && Glyph.Trim().StartsWith("<"))
|
||||||
.AddClass($"{Color.ToDescription()}-text", Color != ThemeColor.Default && Color != ThemeColor.Inherit)
|
.AddClass($"{Color.ToDescription()}-text", Color != ThemeColor.Default && Color != ThemeColor.Inherit)
|
||||||
.AddClass($"icon-size-{Size.ToDescription()}")
|
.AddClass($"icon-size-{Size.ToDescription()}")
|
||||||
.AddClass(AdditionalClassList)
|
.AddClass(AdditionalClassList)
|
||||||
|
@ -58,8 +58,7 @@
|
|||||||
@onmousewheel="@OnMouseWheel"
|
@onmousewheel="@OnMouseWheel"
|
||||||
@onwheel="@OnMouseWheel"
|
@onwheel="@OnMouseWheel"
|
||||||
aria-invalid="@HasError.ToString().ToLower()"
|
aria-invalid="@HasError.ToString().ToLower()"
|
||||||
aria-describedby="@ErrorId"
|
aria-describedby="@ErrorId">
|
||||||
>
|
|
||||||
@Text
|
@Text
|
||||||
</textarea>
|
</textarea>
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@ public partial class Input<T> : InputBase<T>
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The current character counter, displayed below the text field.
|
/// The current character counter, displayed below the text field.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user