mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.8 KiB
36 lines
1.8 KiB
namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.Menus
|
|
{
|
|
public class BasicThemeDemoMenus
|
|
{
|
|
private const string Prefix = "BasicThemeDemo";
|
|
public const string Home = Prefix + ".Home";
|
|
|
|
public static class Components
|
|
{
|
|
public const string Root = Prefix + ".Components";
|
|
public const string Alerts = Root + ".Alerts";
|
|
public const string Badges = Root + ".Badges";
|
|
public const string Borders = Root + ".Borders";
|
|
public const string Breadcrumbs = Root + ".Breadcrumbs";
|
|
public const string ButtonGroups = Root + ".ButtonGroups";
|
|
public const string Buttons = Root + ".Buttons";
|
|
public const string Cards = Root + ".Cards";
|
|
public const string Carousel = Root + ".Carousel";
|
|
public const string Collapse = Root + ".Collapse";
|
|
public const string Dropdowns = Root + ".Dropdowns";
|
|
public const string DynamicForms = Root + ".DynamicForms";
|
|
public const string FormElements = Root + ".FormElements";
|
|
public const string Grids = Root + ".Grids";
|
|
public const string ListGroups = Root + ".ListGroups";
|
|
public const string Modals = Root + ".Modals";
|
|
public const string Navbars = Root + ".Navbars";
|
|
public const string Navs = Root + ".Navs";
|
|
public const string Paginator = Root + ".Paginator";
|
|
public const string Popovers = Root + ".Popovers";
|
|
public const string ProgressBars = Root + ".ProgressBars";
|
|
public const string Tables = Root + ".Tables";
|
|
public const string Tabs = Root + ".Tabs";
|
|
public const string Tooltips = Root + ".Tooltips";
|
|
}
|
|
}
|
|
} |