generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
css-props.ts
393 lines (393 loc) · 9.38 KB
/
css-props.ts
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
export const CSS_PROPS = [
{
"name": "border-collapse",
"description": "Sets whether table borders should collapse into a single border or be separated as in standard HTML.",
"default": "separate",
"values": [
"separate",
"collapse",
"initial",
"inherit"
]
},
{
"name": "border-spacing",
"description": "Sets the distance between the borders of adjacent cells.",
"default": "2px",
"values": [
"0px",
"2px",
"5px",
"10px",
"15px",
"20px",
"25px",
"30px",
"35px",
"40px",
"45px",
"50px",
"initial",
"inherit"
]
},
{
"name": "caption-side",
"description": "Specifies the placement of a table caption.",
"default": "top",
"values": [
"top",
"bottom",
"initial",
"inherit"
]
},
{
"name": "color",
"description": "Specifies the color of text.",
"default": "inherit",
"values": [
"red",
"orange",
"yellow",
"green",
"blue",
"indigo",
"violet",
"initial",
"inherit"
]
},
{
"name": "cursor",
"description": "Specifies the placement of a table caption.",
"default": "auto",
"values": [
"alias",
"all-scroll",
"auto",
"cell",
"context-menu",
"col-resize",
"copy",
"crosshair",
"default",
"e-resize",
"ew-resize",
"grab",
"grabbing",
"help",
"move",
"n-resize",
"ne-resize",
"nesw-resize",
"ns-resize",
"nw-resize",
"nwse-resize",
"no-drop",
"none",
"not-allowed",
"pointer",
"progress",
"row-resize",
"s-resize",
"se-resize",
"sw-resize",
"text",
"vertical-text",
"w-resize",
"wait",
"zoom-in",
"zoom-out",
"initial",
"inherit"
]
},
{
"name": "direction",
"description": "Specifies the text direction/writing direction within a block-level element.",
"default": "ltr",
"values": [
"ltr",
"rtl",
"initial",
"inherit"
]
},
{
"name": "empty-cells",
"description": "Sets whether or not to display borders on empty cells in a table.",
"default": "show",
"values": [
"show",
"hide",
"initial",
"inherit"
]
},
{
"name": "font-family",
"description": "Specifies the font for an element.",
"default": "inherit",
"values": [
"Arial",
"Times New Roman",
"Verdana",
"cursive",
"initial",
"inherit"
]
},
{
"name": "font-size",
"description": "Specifies the size of a font.",
"default": "medium",
"values": [
"medium",
"xx-small",
"x-small",
"small",
"large",
"x-large",
"xx-large",
"smaller",
"larger",
"initial",
"inherit"
]
},
{
"name": "font-style",
"description": "Specifies the font style for a text.",
"default": "normal",
"values": [
"normal",
"italic",
"oblique",
"initial",
"inherit"
]
},
{
"name": "font-variant",
"description": "Specifies whether or not a text should be displayed in a small-caps font.",
"default": "normal",
"values": [
"normal",
"small-caps",
"initial",
"inherit"
]
},
{
"name": "font-weight",
"description": "Sets how thick or thin characters in text should be displayed",
"default": "normal",
"values": [
"normal",
"bold",
"bolder",
"lighter",
"initial",
"inherit"
]
},
{
"name": "letter-spacing",
"description": "Increases or decreases the space between characters in a text.",
"default": "normal",
"values": [
"0px",
"2px",
"5px",
"10px",
"15px",
"20px",
"25px",
"30px",
"35px",
"40px",
"45px",
"50px",
"normal",
"initial",
"inherit"
]
},
{
"name": "line-height",
"description": "Specifies the height of a line.",
"default": "normal",
"values": [
"0px",
"2px",
"5px",
"10px",
"15px",
"20px",
"25px",
"30px",
"35px",
"40px",
"45px",
"50px",
"normal",
"initial",
"inherit"
]
},
// need to have mock images set up
// {
// "name": "list-style-image",
// "description": "Replaces the list-item marker with an image.",
// "values": []
// },
{
"name": "list-style-position",
"description": "Specifies the position of the list-item markers (bullet points).",
"default": "outside",
"values": [
"inside",
"outside",
"initial",
"inherit"
]
},
{
"name": "list-style-type",
"description": "Specifies the type of list-item marker in a list.",
"default": "disc",
"values": [
"disc",
"armenian",
"circle",
"cjk-ideographic",
"decimal",
"decimal-leading-zero",
"georgian",
"hebrew",
"hiragana",
"hiragana-iroha",
"katakana",
"katakana-iroha",
"lower-alpha",
"lower-greek",
"lower-latin",
"lower-roman",
"none",
"square",
"upper-alpha",
"upper-greek",
"upper-latin",
"upper-roman",
"initial",
"inherit"
]
},
// doesnt work unless they are doubled up - need to refactor a bit to get that to work
// {
// "name": "quotes",
// "description": "Sets the type of quotation marks for quotations.",
// "default": "\"",
// "values": [
// "\"",
// "'",
// "‹",
// "›",
// "«",
// "»",
// "‘",
// "’",
// "“",
// "”",
// "„",
// "none",
// "initial",
// "inherit"
// ]
// },
{
"name": "text-align",
"description": "Specifies the horizontal alignment of text in an element.",
"default": "left",
"values": [
"left",
"right",
"center",
"justify",
"initial",
"inherit"
]
},
{
"name": "text-indent",
"description": "Specifies the indentation of the first line in a text-block.",
"default": "0px",
"values": [
"0px",
"10px",
"20px",
"30px",
"40px",
"50px",
"initial",
"inherit"
]
},
{
"name": "text-transform",
"description": "Controls the capitalization of text.",
"default": "none",
"values": [
"none",
"capitalize",
"uppercase",
"lowercase",
"initial",
"inherit"
]
},
// Seems to cause more harm than good because it hides everything you want to see to validate
// {
// "name": "visibility",
// "description": "Specifies whether or not an element is visible.",
// "default": "visible",
// "values": [
// "visible",
// "hidden",
// "collapse",
// "initial",
// "inherit"
// ]
// },
{
"name": "white-space",
"description": "Specifies how white-space inside an element is handled.",
"default": "normal",
"values": [
"normal",
"nowrap",
"pre",
"pre-line",
"pre-wrap",
"initial",
"inherit"
]
},
{
"name": "word-spacing",
"description": "Increases or decreases the white space between words.",
"default": "normal",
"values": [
"normal",
"0px",
"2px",
"4px",
"6px",
"8px",
"10px",
"initial",
"inherit"
]
}
]