Progress
This commit is contained in:
parent
272d19fe8a
commit
c5e97f9600
@ -7,7 +7,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components", "src
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components.Showcase", "src\Connected.Components.Showcase\Connected.Components.Showcase.csproj", "{EBB24FD8-A554-427C-A93B-B48C047D34CC}"
|
||||
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
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
@ -10,7 +10,7 @@ public partial class Icon : UIComponent
|
||||
protected string Classname =>
|
||||
new CssBuilder("icon-root")
|
||||
.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($"icon-size-{Size.ToDescription()}")
|
||||
.AddClass(AdditionalClassList)
|
||||
|
@ -58,8 +58,7 @@
|
||||
@onmousewheel="@OnMouseWheel"
|
||||
@onwheel="@OnMouseWheel"
|
||||
aria-invalid="@HasError.ToString().ToLower()"
|
||||
aria-describedby="@ErrorId"
|
||||
>
|
||||
aria-describedby="@ErrorId">
|
||||
@Text
|
||||
</textarea>
|
||||
|
||||
|
@ -14,7 +14,6 @@ public partial class Input<T> : InputBase<T>
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The current character counter, displayed below the text field.
|
||||
/// </summary>
|
||||
|
Loading…
x
Reference in New Issue
Block a user