mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 02:36:11 +02:00
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
enum Pattern {
|
|
AvatarList = 'Avatar list',
|
|
Badge = 'Badge',
|
|
Breadcrumb = 'Breadcrumb',
|
|
ButtonWithIcon = 'Button with icon',
|
|
Card = 'Card',
|
|
Centering = 'Centering',
|
|
DockedAtCorner = 'Docked at corner',
|
|
DotLeader = 'Dot leader',
|
|
DotNavigation = 'Dot navigation',
|
|
DropArea = 'Drop area',
|
|
DropCap = 'Drop cap',
|
|
Dropdown = 'Dropdown',
|
|
FeatureList = 'Feature list',
|
|
FixedAtCorner = 'Fixed at corner',
|
|
FloatingLabel = 'Floating label',
|
|
HolyGrail = 'Holy grail',
|
|
InputAddOn = 'Input addon',
|
|
MediaObject = 'Media object',
|
|
Menu = 'Menu',
|
|
Modal = 'Modal',
|
|
Notification = 'Notification',
|
|
Pagination = 'Pagination',
|
|
PreviousNextButtons = 'Previous next buttons',
|
|
PricingTable = 'Pricing table',
|
|
PropertyList = 'Property list',
|
|
ProgressBar = 'Progress bar',
|
|
QuestionsAndAnswers = 'Questions and answers',
|
|
RadioSwitch = 'Radio switch',
|
|
Rating = 'Rating',
|
|
SameHeightColumns = 'Same height columns',
|
|
SearchBox = 'Search box',
|
|
Separator = 'Separator',
|
|
Sidebar = 'Sidebar',
|
|
SimpleGrid = 'Simple grid',
|
|
Slider = 'Slider',
|
|
SpinButton = 'Spin button',
|
|
SplitNavigation = 'Split navigation',
|
|
SplitScreen = 'Split screen',
|
|
StepperInput = 'Stepper input',
|
|
StickyFooter = 'Sticky footer',
|
|
StickyHeader = 'Sticky header',
|
|
Switch = 'Switch',
|
|
Tab = 'Tab',
|
|
TogglePasswordVisibility = 'Toggle password visibility',
|
|
Wizard = 'Wizard',
|
|
}
|
|
|
|
export default Pattern;
|