forked from phuocng/csslayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPattern.ts
104 lines (104 loc) · 3.53 KB
/
Pattern.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
export enum Pattern {
Accordion = 'Accordion',
ArrowButtons = 'Arrow buttons',
Avatar = 'Avatar',
AvatarList = 'Avatar list',
Badge = 'Badge',
Breadcrumb = 'Breadcrumb',
ButtonWithIcon = 'Button with icon',
Card = 'Card',
CardLayout = 'Card layout',
Centering = 'Centering',
Chip = 'Chip',
CircularNavigation = 'Circular navigation',
CloseButton = 'Close button',
ColorSwatch = 'Color swatch',
ConcaveCorners = 'Concave corners',
CookieBanner = 'Cookie banner',
CornerRibbon = 'Corner ribbon',
CurvedBackground = 'Curved background',
CustomCheckboxButton = 'Custom checkbox button',
CustomRadioButton = 'Custom radio button',
DiagonalSection = 'Diagonal section',
DockedAtCorner = 'Docked at corner',
DotLeader = 'Dot leader',
DotNavigation = 'Dot navigation',
Drawer = 'Drawer',
DropArea = 'Drop area',
DropCap = 'Drop cap',
Dropdown = 'Dropdown',
FadingLongSection = 'Fading long section',
FeatureComparison = 'Feature comparison',
FeatureList = 'Feature list',
FixedAtCorner = 'Fixed at corner',
FixedAtSide = 'Fixed at side',
FloatingLabel = 'Floating label',
FolderStructure = 'Folder structure',
FullBackground = 'Full background',
FullScreenMenu = 'Full screen menu',
HolyGrail = 'Holy grail',
InitialAvatar = 'Initial avatar',
InputAddon = 'Input addon',
InvertedCorners = 'Inverted corners',
KeyboardShortcut = 'Keyboard shortcut',
LayeredCard = 'Layered card',
LinedPaper = 'Lined paper',
MasonryGrid = 'Masonry grid',
MediaObject = 'Media object',
MegaMenu = 'Mega menu',
Menu = 'Menu',
Modal = 'Modal',
NestedDropdowns = 'Nested dropdowns',
Notification = 'Notification',
OverlayPlayButton = 'Overlay play button',
Pagination = 'Pagination',
PopoverArrow = 'Popover arrow',
PresenceIndicator = 'Presence indicator',
PreviousNextButtons = 'Previous next buttons',
PricingTable = 'Pricing table',
PriceTag = 'Price tag',
PropertyList = 'Property list',
ProgressBar = 'Progress bar',
QuestionsAndAnswers = 'Questions and answers',
RadialProgressBar = 'Radial progress bar',
RadioButtonGroup = 'Radio button group',
RadioSwitch = 'Radio switch',
Rating = 'Rating',
ResizableElement = 'Resizable element',
Ribbon = 'Ribbon',
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',
StackedCards = 'Stacked cards',
StampBorder = 'Stamp border',
Statistic = 'Statistic',
StatusLight = 'Status light',
StepperInput = 'Stepper input',
StickyFooter = 'Sticky footer',
StickyHeader = 'Sticky header',
StickySections = 'Sticky sections',
StickyTableColumn = 'Sticky table column',
StickyTableHeaders = 'Sticky table headers',
Switch = 'Switch',
Tab = 'Tab',
Teardrop = 'Teardrop',
ThreeDimensionsCard = 'Three dimensions card',
Timeline = 'Timeline',
TogglePasswordVisibility = 'Toggle password visibility',
Tooltip = 'Tooltip',
TreeDiagram = 'Tree diagram',
TriangleButtons = 'Triangle buttons',
UploadButton = 'Upload button',
ValidationIcon = 'Validation icon',
VideoBackground = 'Video background',
Voting = 'Voting',
Watermark = 'Watermark',
Wizard = 'Wizard',
ZigzagTimeline = 'Zigzag timeline',
}