Added voice work image fallback. Added tag/creator/circle chip components. Updated voice work search response to include favorite/blacklisted flags for tags/creators/circles.
This commit is contained in:
@@ -16,6 +16,7 @@ public enum ColorVarient
|
||||
Black,
|
||||
Yellow,
|
||||
Green,
|
||||
Mint,
|
||||
Teal,
|
||||
Blue,
|
||||
Orange,
|
||||
@@ -35,6 +36,7 @@ public static class CssUtil
|
||||
ColorVarient.SurfaceContainerOutlineLow => "surface-container-outline-low",
|
||||
ColorVarient.Yellow => "text-yellow",
|
||||
ColorVarient.Green => "text-green",
|
||||
ColorVarient.Mint => "text-mint",
|
||||
ColorVarient.Teal => "text-teal",
|
||||
ColorVarient.Blue => "text-blue",
|
||||
ColorVarient.Orange => "text-orange",
|
||||
@@ -50,6 +52,7 @@ public static class CssUtil
|
||||
ColorVarient.SurfaceContainerLow => "surface-container-low",
|
||||
ColorVarient.Yellow => "text-yellow",
|
||||
ColorVarient.Green => "text-green",
|
||||
ColorVarient.Mint => "text-mint",
|
||||
ColorVarient.Teal => "text-teal",
|
||||
ColorVarient.Blue => "text-blue",
|
||||
ColorVarient.Orange => "text-orange",
|
||||
|
||||
8
JSMR.UI.Blazor/Enums/ElementVarient.cs
Normal file
8
JSMR.UI.Blazor/Enums/ElementVarient.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace JSMR.UI.Blazor.Enums;
|
||||
|
||||
public enum ElementVarient
|
||||
{
|
||||
None = 0,
|
||||
Filled = 1,
|
||||
Outlined = 2
|
||||
}
|
||||
7
JSMR.UI.Blazor/Enums/ImageExtension.cs
Normal file
7
JSMR.UI.Blazor/Enums/ImageExtension.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace JSMR.UI.Blazor.Enums;
|
||||
|
||||
public enum ImageExtension
|
||||
{
|
||||
Jpeg,
|
||||
WebP
|
||||
}
|
||||
8
JSMR.UI.Blazor/Enums/ToneVarient.cs
Normal file
8
JSMR.UI.Blazor/Enums/ToneVarient.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace JSMR.UI.Blazor.Enums;
|
||||
|
||||
public enum ToneVarient
|
||||
{
|
||||
None = 0,
|
||||
Tint = 1,
|
||||
Solid = 2
|
||||
}
|
||||
Reference in New Issue
Block a user