File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ def __str__(self):
1010 def __repr__ (self ):
1111 return self .to_value ()
1212
13+ class VerticalContentAlignment :
14+ TOP = 1
15+ CENTER = 2
16+ BOTTOM = 3
17+
1318class Colors (AbstractOption ):
1419 DEFAULT = 1
1520 DARK = 2
@@ -48,3 +53,28 @@ class Spacing(AbstractOption):
4853 LARGE = 5
4954 EXTRALARGE = 6
5055 PADDING = 7
56+
57+ class ImageSize (AbstractOption ):
58+ AUTO = 1
59+ STRETCH = 2
60+ SMALL = 3
61+ MEDIUM = 4
62+ LARGE = 5
63+
64+ class ImageStyle (AbstractOption ):
65+ DEFAULT = 1
66+ PERSON = 2
67+
68+ class ContainerStyle (AbstractOption ):
69+ DEFAULT = 1
70+ EMPHASIS = 2
71+
72+ class TextInputStyle (AbstractOption ):
73+ TEXT = 1
74+ TEL = 2
75+ URL = 3
76+ EMAIL = 4
77+
78+ class ChoiceInputStyle (AbstractOption ):
79+ COMPACT = 1
80+ EXPANDED = 2
You can’t perform that action at this time.
0 commit comments