mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
b731d69d75
* fix(module: progress): text wrapping issue of the line type * fix size
58 lines
2.4 KiB
C#
58 lines
2.4 KiB
C#
namespace AntDesign
|
|
{
|
|
public sealed class ProgressSize : EnumValue<ProgressSize>
|
|
{
|
|
public static readonly ProgressSize Small = new ProgressSize(nameof(Small), 6);
|
|
public static readonly ProgressSize Default = new ProgressSize(nameof(Default), 8);
|
|
|
|
private ProgressSize(string name, int value) : base(name.ToLowerInvariant(), value)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class ProgressType : EnumValue<ProgressType>
|
|
{
|
|
public static readonly ProgressType Line = new ProgressType(nameof(Line), 1);
|
|
public static readonly ProgressType Circle = new ProgressType(nameof(Circle), 2);
|
|
public static readonly ProgressType Dashboard = new ProgressType(nameof(Dashboard), 3);
|
|
|
|
private ProgressType(string name, int value) : base(name.ToLowerInvariant(), value)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class ProgressStatus : EnumValue<ProgressStatus>
|
|
{
|
|
public static readonly ProgressStatus Success = new ProgressStatus(nameof(Success), 1);
|
|
public static readonly ProgressStatus Exception = new ProgressStatus(nameof(Exception), 2);
|
|
public static readonly ProgressStatus Normal = new ProgressStatus(nameof(Normal), 3);
|
|
public static readonly ProgressStatus Active = new ProgressStatus(nameof(Active), 4);
|
|
|
|
private ProgressStatus(string name, int value) : base(name.ToLowerInvariant(), value)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class ProgressStrokeLinecap : EnumValue<ProgressStrokeLinecap>
|
|
{
|
|
public static readonly ProgressStrokeLinecap Round = new ProgressStrokeLinecap(nameof(Round), 1);
|
|
public static readonly ProgressStrokeLinecap Square = new ProgressStrokeLinecap(nameof(Square), 2);
|
|
|
|
private ProgressStrokeLinecap(string name, int value) : base(name.ToLowerInvariant(), value)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class ProgressGapPosition : EnumValue<ProgressGapPosition>
|
|
{
|
|
public static readonly ProgressGapPosition Top = new ProgressGapPosition(nameof(Top), 1);
|
|
public static readonly ProgressGapPosition Bottom = new ProgressGapPosition(nameof(Bottom), 2);
|
|
public static readonly ProgressGapPosition Left = new ProgressGapPosition(nameof(Left), 3);
|
|
public static readonly ProgressGapPosition Right = new ProgressGapPosition(nameof(Right), 4);
|
|
|
|
private ProgressGapPosition(string name, int value) : base(name.ToLowerInvariant(), value)
|
|
{
|
|
}
|
|
}
|
|
}
|