mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
5875929a89
* refactor(module: tabs): improve rendering * fix ForceRender & change constants to enums * fix animated * fix left extra content * add Centered feature * fix scroll distance * fix scroll gap * fix index out of range * fix tests * fix scroll distance * fix dropdown button position * fix ping left & right * hide the dropdown button
16 lines
227 B
C#
16 lines
227 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public enum TabSize
|
|
{
|
|
Default,
|
|
Large,
|
|
Small,
|
|
}
|
|
}
|