-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcompletions.json
More file actions
103 lines (103 loc) · 3.2 KB
/
completions.json
File metadata and controls
103 lines (103 loc) · 3.2 KB
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
{
"propertyName": [
"align-items",
"align-self",
"border-bottom-width",
"border-left-width",
"border-right-width",
"border-top-width",
"border-width",
"bottom",
"flex",
"flex-direction",
"flex-wrap",
"height",
"justify-content",
"left",
"margin",
"margin-bottom",
"margin-horizontal",
"margin-left",
"margin-right",
"margin-top",
"margin-vertical",
"padding",
"padding-bottom",
"padding-horizontal",
"padding-left",
"padding-right",
"padding-top",
"padding-vertical",
"position",
"right",
"top",
"width",
"transform",
"transform-matrix",
"shadow-color",
"shadow-offset",
"shadow-opacity",
"shadow-radius",
"backface-visibility",
"background-color",
"border-bottom-color",
"border-bottom-left-radius",
"border-bottom-right-radius",
"border-bottom-width",
"border-color",
"border-left-color",
"border-left-width",
"border-radius",
"border-right-color",
"border-right-width",
"border-style",
"border-top-color",
"border-top-left-radius",
"border-top-right-radius",
"border-top-width",
"border-width",
"opacity",
"overflow",
"elevation",
"resize-mode",
"overlayColor",
"tintColor",
"color",
"font-family",
"font-size",
"font-style",
"font-weight",
"line-height",
"text-align",
"text-shadow-color",
"text-shadow-offset",
"text-shadow-radius",
"text-align-vertical",
"letter-spacing",
"text-decoration-color",
"text-decoration-line",
"text-decoration-style",
"writing-direction"
],
"values": {
"align-items": ["flex-start", "flex-end", "center", "stretch"],
"align-self": ["auto", "flex-start", "flex-end", "center", "stretch"],
"flex-direction": ["row", "column"],
"flex-wrap": ["wrap", "nowrap"],
"justify-content": ["flex-start", "flex-end", "center", "space-between", "space-around"],
"position": ["absolute", "relative"],
"shadow-offset": ["value"],
"backface-visibility": ["visible", "hidden"],
"border-style": ["solid", "dotted", "dashed"],
"overflow": ["visible", "hidden"],
"resize-mode": ["React.Image.resizeMode.cover", "React.Image.resizeMode.contain", "React.Image.resizeMode.stretch"],
"font-style": ["normal", "italic"],
"font-weight": ["normal", "bold", "100", "200", "300", "400", "500", "600", "700", "800", "900"],
"text-align": ["auto", "left", "right", "center", "justify"],
"text-shadow-offset": ["value"],
"text-align-vertical": ["auto", "top", "bottom", "center"],
"text-decoration-line": ["none", "underline", "line-through", "underline line-through"],
"text-decoration-style": ["solid", "double", "dotted", "dashed"],
"writing-direction": ["auto", "ltr", "rtl"]
}
}