-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
54 lines (47 loc) · 1.9 KB
/
manifest.json
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
{
"name": "Auto Layout Shortcuts",
"id": "1081298003197000387",
"api": "1.0.0",
"main": "code.js",
"editorType": ["figma"],
"menu": [
{"name": "Direction", "menu": [
{"name": "Horizontal", "command": "horizontal"},
{"name": "Vertical", "command": "vertical"}
]},
{"name": "Primary axis alignment", "menu": [
{"name": "Align start", "command": "primary align start"},
{"name": "Align end", "command": "primary align end"},
{"name": "Align center", "command": "primary align center"}
]},
{"name": "Counter axis alignment", "menu": [
{"name": "Align start", "command": "counter align start"},
{"name": "Align end", "command": "counter align end"},
{"name": "Align center", "command": "counter align center"}
]},
{"name": "Horizontal axis alignment", "menu": [
{"name": "Align start", "command": "horizontal align start"},
{"name": "Align end", "command": "horizontal align end"},
{"name": "Align center", "command": "horizontal align center"}
]},
{"name": "Vertical axis alignment", "menu": [
{"name": "Align start", "command": "vertical align start"},
{"name": "Align end", "command": "vertical align end"},
{"name": "Align center", "command": "vertical align center"}
]},
{"name": "Distribution", "menu": [
{"name": "Packed", "command": "packed"},
{"name": "Space between", "command": "space between"}
]},
{"name": "Horizontal sizing", "menu": [
{"name": "Fixed width", "command": "horizontal fixed"},
{"name": "Hug contents", "command": "horizontal hug"},
{"name": "Fill container", "command": "horizontal fill"}
]},
{"name": "Vertical sizing", "menu": [
{"name": "Fixed width", "command": "vertical fixed"},
{"name": "Hug contents", "command": "vertical hug"},
{"name": "Fill container", "command": "vertical fill"}
]}
]
}