source: trip-planner-front/node_modules/css-declaration-sorter/src/shorthand-data.mjs@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 5.1 KB
Line 
1const shorthandData = {
2 'animation': [
3 'animation-name',
4 'animation-duration',
5 'animation-timing-function',
6 'animation-delay',
7 'animation-iteration-count',
8 'animation-direction',
9 'animation-fill-mode',
10 'animation-play-state',
11 ],
12 'background': [
13 'background-image',
14 'background-size',
15 'background-position',
16 'background-repeat',
17 'background-origin',
18 'background-clip',
19 'background-attachment',
20 'background-color',
21 ],
22 'border': [
23 'border-top',
24 'border-right',
25 'border-bottom',
26 'border-left',
27 'border-width',
28 'border-style',
29 'border-color',
30 'border-top-width',
31 'border-right-width',
32 'border-bottom-width',
33 'border-left-width',
34 'border-top-style',
35 'border-right-style',
36 'border-bottom-style',
37 'border-left-style',
38 'border-top-color',
39 'border-right-color',
40 'border-bottom-color',
41 'border-left-color',
42 ],
43 'border-top': [
44 'border-width',
45 'border-style',
46 'border-color',
47 'border-top-width',
48 'border-top-style',
49 'border-top-color',
50 ],
51 'border-right': [
52 'border-width',
53 'border-style',
54 'border-color',
55 'border-right-width',
56 'border-right-style',
57 'border-right-color',
58 ],
59 'border-bottom': [
60 'border-width',
61 'border-style',
62 'border-color',
63 'border-bottom-width',
64 'border-bottom-style',
65 'border-bottom-color',
66 ],
67 'border-left': [
68 'border-width',
69 'border-style',
70 'border-color',
71 'border-left-width',
72 'border-left-style',
73 'border-left-color',
74 ],
75 'border-color': [
76 'border-top-color',
77 'border-bottom-color',
78 'border-left-color',
79 'border-right-color',
80 ],
81 'border-width': [
82 'border-top-width',
83 'border-bottom-width',
84 'border-left-width',
85 'border-right-width',
86 ],
87 'border-style': [
88 'border-top-style',
89 'border-bottom-style',
90 'border-left-style',
91 'border-right-style',
92 ],
93 'border-radius': [
94 'border-top-right-radius',
95 'border-top-left-radius',
96 'border-bottom-right-radius',
97 'border-bottom-left-radius',
98 ],
99 'border-block-start': [
100 'border-block-start-width',
101 'border-block-start-style',
102 'border-block-start-color',
103 ],
104 'border-block-end': [
105 'border-block-end-width',
106 'border-block-end-style',
107 'border-block-end-color',
108 ],
109 'border-image': [
110 'border-image-source',
111 'border-image-slice',
112 'border-image-width',
113 'border-image-outset',
114 'border-image-repeat',
115 ],
116 'border-inline-start': [
117 'border-inline-start-width',
118 'border-inline-start-style',
119 'border-inline-start-color',
120 ],
121 'border-inline-end': [
122 'border-inline-end-width',
123 'border-inline-end-style',
124 'border-inline-end-color',
125 ],
126 'columns': [
127 'column-width',
128 'column-count',
129 ],
130 'column-rule': [
131 'column-rule-width',
132 'column-rule-style',
133 'column-rule-color',
134 ],
135 'flex': [
136 'flex-grow',
137 'flex-shrink',
138 'flex-basis',
139 ],
140 'flex-flow': [
141 'flex-direction',
142 'flex-wrap',
143 ],
144 'font': [
145 'font-style',
146 'font-variant',
147 'font-weight',
148 'font-stretch',
149 'font-size',
150 'font-family',
151 'line-height',
152 ],
153 'grid': [
154 'grid-template-rows',
155 'grid-template-columns',
156 'grid-template-areas',
157 'grid-auto-rows',
158 'grid-auto-columns',
159 'grid-auto-flow',
160 'column-gap',
161 'row-gap',
162 ],
163 'grid-area': [
164 'grid-row-start',
165 'grid-column-start',
166 'grid-row-end',
167 'grid-column-end',
168 ],
169 'grid-column': [
170 'grid-column-start',
171 'grid-column-end',
172 ],
173 'grid-row': [
174 'grid-row-start',
175 'grid-row-end',
176 ],
177 'grid-template': [
178 'grid-template-columns',
179 'grid-template-rows',
180 'grid-template-areas',
181 ],
182 'list-style': [
183 'list-style-type',
184 'list-style-position',
185 'list-style-image',
186 ],
187 'margin': [
188 'margin-top',
189 'margin-right',
190 'margin-bottom',
191 'margin-left',
192 ],
193 'mask': [
194 'mask-image',
195 'mask-mode',
196 'mask-position',
197 'mask-size',
198 'mask-repeat',
199 'mask-origin',
200 'mask-clip',
201 'mask-composite',
202 ],
203 'outline': [
204 'outline-color',
205 'outline-style',
206 'outline-width',
207 ],
208 'overflow': [
209 'overflow-x',
210 'overflow-y',
211 ],
212 'padding': [
213 'padding-top',
214 'padding-right',
215 'padding-bottom',
216 'padding-left',
217 ],
218 'padding-inline': [
219 'padding-inline-start',
220 'padding-inline-end',
221 ],
222 'padding-inline-start': [
223 'padding-top',
224 'padding-right',
225 'padding-bottom',
226 'padding-left',
227 ],
228 'padding-inline-end': [
229 'padding-top',
230 'padding-right',
231 'padding-bottom',
232 'padding-left',
233 ],
234 'place-content': [
235 'align-content',
236 'justify-content',
237 ],
238 'place-items': [
239 'align-items',
240 'justify-items',
241 ],
242 'place-self': [
243 'align-self',
244 'justify-self',
245 ],
246 'text-decoration': [
247 'text-decoration-color',
248 'text-decoration-style',
249 'text-decoration-line',
250 ],
251 'transition': [
252 'transition-delay',
253 'transition-duration',
254 'transition-property',
255 'transition-timing-function',
256 ],
257 'text-emphasis': [
258 'text-emphasis-style',
259 'text-emphasis-color',
260 ],
261};
262
263export default shorthandData;
Note: See TracBrowser for help on using the repository browser.