PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 1.8.3
GenerateBlocks v1.8.3
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / src / extend / block-controls / controls / templates.js
generateblocks / src / extend / block-controls / controls Last commit date
alignment-matrix-control.js 2 years ago templates.js 2 years ago
templates.js
155 lines
1 export default {
2 row: {
3 topLeft: {
4 alignItems: 'flex-start',
5 justifyContent: 'flex-start',
6 },
7 topCenter: {
8 alignItems: 'flex-start',
9 justifyContent: 'center',
10 },
11 topRight: {
12 alignItems: 'flex-start',
13 justifyContent: 'flex-end',
14 },
15 centerLeft: {
16 alignItems: 'center',
17 justifyContent: 'flex-start',
18 },
19 centerCenter: {
20 alignItems: 'center',
21 justifyContent: 'center',
22 },
23 centerRight: {
24 alignItems: 'center',
25 justifyContent: 'flex-end',
26 },
27 bottomLeft: {
28 alignItems: 'flex-end',
29 justifyContent: 'flex-start',
30 },
31 bottomCenter: {
32 alignItems: 'flex-end',
33 justifyContent: 'center',
34 },
35 bottomRight: {
36 alignItems: 'flex-end',
37 justifyContent: 'flex-end',
38 },
39 },
40 'row-reverse': {
41 topLeft: {
42 alignItems: 'flex-start',
43 justifyContent: 'flex-end',
44 },
45 topCenter: {
46 alignItems: 'flex-start',
47 justifyContent: 'center',
48 },
49 topRight: {
50 alignItems: 'flex-start',
51 justifyContent: 'flex-start',
52 },
53 centerLeft: {
54 alignItems: 'center',
55 justifyContent: 'flex-end',
56 },
57 centerCenter: {
58 alignItems: 'center',
59 justifyContent: 'center',
60 },
61 centerRight: {
62 alignItems: 'center',
63 justifyContent: 'flex-start',
64 },
65 bottomLeft: {
66 alignItems: 'flex-end',
67 justifyContent: 'flex-end',
68 },
69 bottomCenter: {
70 alignItems: 'flex-end',
71 justifyContent: 'center',
72 },
73 bottomRight: {
74 alignItems: 'flex-end',
75 justifyContent: 'flex-start',
76 },
77 },
78 column: {
79 topLeft: {
80 alignItems: 'flex-start',
81 justifyContent: 'flex-start',
82 },
83 topCenter: {
84 alignItems: 'center',
85 justifyContent: 'flex-start',
86 },
87 topRight: {
88 alignItems: 'flex-end',
89 justifyContent: 'flex-start',
90 },
91 centerLeft: {
92 alignItems: 'flex-start',
93 justifyContent: 'center',
94 },
95 centerCenter: {
96 alignItems: 'center',
97 justifyContent: 'center',
98 },
99 centerRight: {
100 alignItems: 'flex-end',
101 justifyContent: 'center',
102 },
103 bottomLeft: {
104 alignItems: 'flex-start',
105 justifyContent: 'flex-end',
106 },
107 bottomCenter: {
108 alignItems: 'center',
109 justifyContent: 'flex-end',
110 },
111 bottomRight: {
112 alignItems: 'flex-end',
113 justifyContent: 'flex-end',
114 },
115 },
116 'column-reverse': {
117 topLeft: {
118 alignItems: 'flex-start',
119 justifyContent: 'flex-end',
120 },
121 topCenter: {
122 alignItems: 'center',
123 justifyContent: 'flex-end',
124 },
125 topRight: {
126 alignItems: 'flex-end',
127 justifyContent: 'flex-end',
128 },
129 centerLeft: {
130 alignItems: 'flex-start',
131 justifyContent: 'center',
132 },
133 centerCenter: {
134 alignItems: 'center',
135 justifyContent: 'center',
136 },
137 centerRight: {
138 alignItems: 'flex-end',
139 justifyContent: 'center',
140 },
141 bottomLeft: {
142 alignItems: 'flex-start',
143 justifyContent: 'flex-start',
144 },
145 bottomCenter: {
146 alignItems: 'center',
147 justifyContent: 'flex-start',
148 },
149 bottomRight: {
150 alignItems: 'flex-end',
151 justifyContent: 'flex-start',
152 },
153 },
154 };
155