mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
41810622b3
* fix autosize * feat(module: tabs): add AntTabs * chore(module:input): code improvement * implement tab * implement disable tab * implement scroll tabs * resume tabs demo page * implement tabs prev/next calcaultion logic * update nav bar render logic * feat (module: tabs): implement rerender logic * feat:(module: tabs): update render logic * feat: (module: tabs): implement extra content * feat(module: tabs): add panes dynamically * feat(module: tabs): implement add tabs dynamically * feat(module: tabs): implement remove tabs * feat(module: tabs): Customized trigger of new tab * fix(module: tabs): stop event propagation * fix (module: tabs): close icon disappea
15 lines
329 B
C#
15 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntBlazor
|
|
{
|
|
public static class AntTabSize
|
|
{
|
|
public const string Large = "large";
|
|
public const string Default = "default";
|
|
public const string Small = "small";
|
|
}
|
|
} |