@lism-css/mcp 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/components.json +243 -86
- package/dist/data/docs-index.json +211 -237
- package/dist/data/meta.js +2 -2
- package/dist/data/overview.json +52 -18
- package/dist/data/props-system.json +563 -27
- package/dist/data/tokens.json +70 -69
- package/dist/index.js +2 -0
- package/dist/lib/schemas.d.ts +3 -0
- package/dist/lib/schemas.js +1 -0
- package/dist/lib/search.d.ts +21 -2
- package/dist/lib/search.js +79 -4
- package/dist/lib/types.d.ts +1 -0
- package/dist/tools/convert-css.d.ts +2 -0
- package/dist/tools/convert-css.js +223 -0
- package/dist/tools/get-component.js +26 -7
- package/dist/tools/get-overview.js +4 -1
- package/dist/tools/get-props-system.js +32 -7
- package/dist/tools/get-tokens.js +7 -3
- package/dist/tools/search-docs.js +16 -8
- package/package.json +5 -5
|
@@ -5,12 +5,20 @@
|
|
|
5
5
|
"category": "typography",
|
|
6
6
|
"description": "テキスト関連のプロパティ",
|
|
7
7
|
"props": [
|
|
8
|
+
{
|
|
9
|
+
"prop": "f",
|
|
10
|
+
"cssProperty": "font",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"responsive": false,
|
|
13
|
+
"description": "フォント一括指定。",
|
|
14
|
+
"values": ["inherit"]
|
|
15
|
+
},
|
|
8
16
|
{
|
|
9
17
|
"prop": "fz",
|
|
10
18
|
"cssProperty": "font-size",
|
|
11
19
|
"type": "string | number | array",
|
|
12
20
|
"responsive": true,
|
|
13
|
-
"description": "
|
|
21
|
+
"description": "フォントサイズ。トークン値またはカスタム値。",
|
|
14
22
|
"values": ["root", "base", "5xl", "4xl", "3xl", "2xl", "xl", "l", "m", "s", "xs", "2xs"]
|
|
15
23
|
},
|
|
16
24
|
{
|
|
@@ -42,13 +50,13 @@
|
|
|
42
50
|
"cssProperty": "line-height",
|
|
43
51
|
"type": "string | number",
|
|
44
52
|
"responsive": false,
|
|
45
|
-
"description": "
|
|
46
|
-
"values": ["1"]
|
|
53
|
+
"description": "行間。トークン値またはカスタム値。トークンは hl 系トークンを参照。",
|
|
54
|
+
"values": ["base", "xs", "s", "l", "1"]
|
|
47
55
|
},
|
|
48
56
|
{
|
|
49
57
|
"prop": "hl",
|
|
50
58
|
"cssProperty": "--hl (CSS変数)",
|
|
51
|
-
"type": "string",
|
|
59
|
+
"type": "string | array",
|
|
52
60
|
"responsive": true,
|
|
53
61
|
"description": "見出し用の行間を制御するCSS変数。",
|
|
54
62
|
"values": ["base", "xs", "s", "l"]
|
|
@@ -116,6 +124,22 @@
|
|
|
116
124
|
"description": "オーバーフロー。",
|
|
117
125
|
"values": ["hidden", "auto", "clip"]
|
|
118
126
|
},
|
|
127
|
+
{
|
|
128
|
+
"prop": "ov-x",
|
|
129
|
+
"cssProperty": "overflow-x",
|
|
130
|
+
"type": "string",
|
|
131
|
+
"responsive": false,
|
|
132
|
+
"description": "横方向のオーバーフロー。",
|
|
133
|
+
"values": ["clip", "auto", "scroll"]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"prop": "ov-y",
|
|
137
|
+
"cssProperty": "overflow-y",
|
|
138
|
+
"type": "string",
|
|
139
|
+
"responsive": false,
|
|
140
|
+
"description": "縦方向のオーバーフロー。",
|
|
141
|
+
"values": ["clip", "auto", "scroll"]
|
|
142
|
+
},
|
|
119
143
|
{
|
|
120
144
|
"prop": "ar",
|
|
121
145
|
"cssProperty": "aspect-ratio",
|
|
@@ -146,25 +170,80 @@
|
|
|
146
170
|
"description": "高さ。",
|
|
147
171
|
"values": ["100%", "fit"]
|
|
148
172
|
},
|
|
149
|
-
{
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
173
|
+
{
|
|
174
|
+
"prop": "min-w",
|
|
175
|
+
"cssProperty": "min-width",
|
|
176
|
+
"type": "string | array",
|
|
177
|
+
"responsive": true,
|
|
178
|
+
"description": "最小幅。",
|
|
179
|
+
"values": ["100%"]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"prop": "max-w",
|
|
183
|
+
"cssProperty": "max-width",
|
|
184
|
+
"type": "string | array",
|
|
185
|
+
"responsive": true,
|
|
186
|
+
"description": "最大幅。",
|
|
187
|
+
"values": ["100%"]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"prop": "min-h",
|
|
191
|
+
"cssProperty": "min-height",
|
|
192
|
+
"type": "string | array",
|
|
193
|
+
"responsive": true,
|
|
194
|
+
"description": "最小高さ。",
|
|
195
|
+
"values": ["100%"]
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"prop": "max-h",
|
|
199
|
+
"cssProperty": "max-height",
|
|
200
|
+
"type": "string | array",
|
|
201
|
+
"responsive": true,
|
|
202
|
+
"description": "最大高さ。",
|
|
203
|
+
"values": ["100%"]
|
|
204
|
+
},
|
|
153
205
|
{
|
|
154
206
|
"prop": "sz",
|
|
155
207
|
"cssProperty": "inline-size",
|
|
156
208
|
"type": "string",
|
|
157
209
|
"responsive": false,
|
|
158
|
-
"description": "
|
|
159
|
-
|
|
210
|
+
"description": "インラインサイズ。トークン値(sz)でカスタム値を指定可能。"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"prop": "min-sz",
|
|
214
|
+
"cssProperty": "min-inline-size",
|
|
215
|
+
"type": "string",
|
|
216
|
+
"responsive": false,
|
|
217
|
+
"description": "最小インラインサイズ。トークン値(sz)でカスタム値を指定可能。"
|
|
160
218
|
},
|
|
161
219
|
{
|
|
162
220
|
"prop": "max-sz",
|
|
163
221
|
"cssProperty": "max-inline-size",
|
|
164
222
|
"type": "string",
|
|
165
223
|
"responsive": false,
|
|
166
|
-
"description": "
|
|
224
|
+
"description": "最大インラインサイズ。トークン値またはプリセット値。",
|
|
167
225
|
"values": ["xs", "s", "m", "l", "xl", "min", "full", "container"]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"prop": "ysz",
|
|
229
|
+
"cssProperty": "block-size",
|
|
230
|
+
"type": "string",
|
|
231
|
+
"responsive": false,
|
|
232
|
+
"description": "ブロックサイズ。トークン値(sz)でカスタム値を指定可能。"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"prop": "min-ysz",
|
|
236
|
+
"cssProperty": "min-block-size",
|
|
237
|
+
"type": "string",
|
|
238
|
+
"responsive": false,
|
|
239
|
+
"description": "最小ブロックサイズ。トークン値(sz)でカスタム値を指定可能。"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"prop": "max-ysz",
|
|
243
|
+
"cssProperty": "max-block-size",
|
|
244
|
+
"type": "string",
|
|
245
|
+
"responsive": false,
|
|
246
|
+
"description": "最大ブロックサイズ。トークン値(sz)でカスタム値を指定可能。"
|
|
168
247
|
}
|
|
169
248
|
]
|
|
170
249
|
},
|
|
@@ -185,14 +264,72 @@
|
|
|
185
264
|
"cssProperty": "padding-inline",
|
|
186
265
|
"type": "string | number | array",
|
|
187
266
|
"responsive": true,
|
|
188
|
-
"description": "左右 (inline) パディング。"
|
|
267
|
+
"description": "左右 (inline) パディング。",
|
|
268
|
+
"values": ["0", "5", "10", "15", "20", "30", "40", "50", "60", "70", "80"]
|
|
189
269
|
},
|
|
190
270
|
{
|
|
191
271
|
"prop": "py",
|
|
192
272
|
"cssProperty": "padding-block",
|
|
193
273
|
"type": "string | number | array",
|
|
194
274
|
"responsive": true,
|
|
195
|
-
"description": "上下 (block) パディング。"
|
|
275
|
+
"description": "上下 (block) パディング。",
|
|
276
|
+
"values": ["0", "5", "10", "15", "20", "30", "40", "50", "60", "70", "80"]
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"prop": "px-s",
|
|
280
|
+
"cssProperty": "padding-inline-start",
|
|
281
|
+
"type": "string | number | array",
|
|
282
|
+
"responsive": true,
|
|
283
|
+
"description": "左 (inline-start) パディング。"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"prop": "px-e",
|
|
287
|
+
"cssProperty": "padding-inline-end",
|
|
288
|
+
"type": "string | number | array",
|
|
289
|
+
"responsive": true,
|
|
290
|
+
"description": "右 (inline-end) パディング。"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"prop": "py-s",
|
|
294
|
+
"cssProperty": "padding-block-start",
|
|
295
|
+
"type": "string | number | array",
|
|
296
|
+
"responsive": true,
|
|
297
|
+
"description": "上 (block-start) パディング。"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"prop": "py-e",
|
|
301
|
+
"cssProperty": "padding-block-end",
|
|
302
|
+
"type": "string | number | array",
|
|
303
|
+
"responsive": true,
|
|
304
|
+
"description": "下 (block-end) パディング。"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"prop": "pl",
|
|
308
|
+
"cssProperty": "padding-left",
|
|
309
|
+
"type": "string | number | array",
|
|
310
|
+
"responsive": true,
|
|
311
|
+
"description": "左パディング。"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"prop": "pr",
|
|
315
|
+
"cssProperty": "padding-right",
|
|
316
|
+
"type": "string | number | array",
|
|
317
|
+
"responsive": true,
|
|
318
|
+
"description": "右パディング。"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"prop": "pt",
|
|
322
|
+
"cssProperty": "padding-top",
|
|
323
|
+
"type": "string | number | array",
|
|
324
|
+
"responsive": true,
|
|
325
|
+
"description": "上パディング。"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"prop": "pb",
|
|
329
|
+
"cssProperty": "padding-bottom",
|
|
330
|
+
"type": "string | number | array",
|
|
331
|
+
"responsive": true,
|
|
332
|
+
"description": "下パディング。"
|
|
196
333
|
},
|
|
197
334
|
{
|
|
198
335
|
"prop": "m",
|
|
@@ -207,14 +344,58 @@
|
|
|
207
344
|
"cssProperty": "margin-inline",
|
|
208
345
|
"type": "string | number | array",
|
|
209
346
|
"responsive": true,
|
|
210
|
-
"description": "左右 (inline) マージン。"
|
|
347
|
+
"description": "左右 (inline) マージン。",
|
|
348
|
+
"values": ["auto", "0", "5", "10", "15", "20", "30", "40", "50", "60", "70", "80"]
|
|
211
349
|
},
|
|
212
350
|
{
|
|
213
351
|
"prop": "my",
|
|
214
352
|
"cssProperty": "margin-block",
|
|
215
353
|
"type": "string | number | array",
|
|
216
354
|
"responsive": true,
|
|
217
|
-
"description": "上下 (block) マージン。"
|
|
355
|
+
"description": "上下 (block) マージン。",
|
|
356
|
+
"values": ["auto", "0", "5", "10", "15", "20", "30", "40", "50", "60", "70", "80"]
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"prop": "mx-s",
|
|
360
|
+
"cssProperty": "margin-inline-start",
|
|
361
|
+
"type": "string | number | array",
|
|
362
|
+
"responsive": true,
|
|
363
|
+
"description": "左 (inline-start) マージン。",
|
|
364
|
+
"values": ["auto"]
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"prop": "mx-e",
|
|
368
|
+
"cssProperty": "margin-inline-end",
|
|
369
|
+
"type": "string | number | array",
|
|
370
|
+
"responsive": true,
|
|
371
|
+
"description": "右 (inline-end) マージン。",
|
|
372
|
+
"values": ["auto"]
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"prop": "my-s",
|
|
376
|
+
"cssProperty": "margin-block-start",
|
|
377
|
+
"type": "string | number | array",
|
|
378
|
+
"responsive": true,
|
|
379
|
+
"description": "上 (block-start) マージン。",
|
|
380
|
+
"values": ["auto", "0", "5", "10", "15", "20", "30", "40", "50", "60", "70", "80"]
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"prop": "my-e",
|
|
384
|
+
"cssProperty": "margin-block-end",
|
|
385
|
+
"type": "string | number | array",
|
|
386
|
+
"responsive": true,
|
|
387
|
+
"description": "下 (block-end) マージン。",
|
|
388
|
+
"values": ["auto"]
|
|
389
|
+
},
|
|
390
|
+
{ "prop": "ml", "cssProperty": "margin-left", "type": "string | number | array", "responsive": true, "description": "左マージン。" },
|
|
391
|
+
{ "prop": "mr", "cssProperty": "margin-right", "type": "string | number | array", "responsive": true, "description": "右マージン。" },
|
|
392
|
+
{ "prop": "mt", "cssProperty": "margin-top", "type": "string | number | array", "responsive": true, "description": "上マージン。" },
|
|
393
|
+
{
|
|
394
|
+
"prop": "mb",
|
|
395
|
+
"cssProperty": "margin-bottom",
|
|
396
|
+
"type": "string | number | array",
|
|
397
|
+
"responsive": true,
|
|
398
|
+
"description": "下マージン。"
|
|
218
399
|
},
|
|
219
400
|
{
|
|
220
401
|
"prop": "g",
|
|
@@ -260,6 +441,44 @@
|
|
|
260
441
|
"description": "背景色。",
|
|
261
442
|
"values": ["base", "base-2", "text", "brand", "accent", "inherit", "transparent"]
|
|
262
443
|
},
|
|
444
|
+
{
|
|
445
|
+
"prop": "bg",
|
|
446
|
+
"cssProperty": "background",
|
|
447
|
+
"type": "string | array",
|
|
448
|
+
"responsive": true,
|
|
449
|
+
"description": "背景の一括指定。"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"prop": "bgi",
|
|
453
|
+
"cssProperty": "background-image",
|
|
454
|
+
"type": "string",
|
|
455
|
+
"responsive": false,
|
|
456
|
+
"description": "背景画像。"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"prop": "bgr",
|
|
460
|
+
"cssProperty": "background-repeat",
|
|
461
|
+
"type": "string",
|
|
462
|
+
"responsive": false,
|
|
463
|
+
"description": "背景のリピート設定。",
|
|
464
|
+
"values": ["no-repeat"]
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"prop": "bgp",
|
|
468
|
+
"cssProperty": "background-position",
|
|
469
|
+
"type": "string",
|
|
470
|
+
"responsive": false,
|
|
471
|
+
"description": "背景の位置。",
|
|
472
|
+
"values": ["center"]
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"prop": "bgsz",
|
|
476
|
+
"cssProperty": "background-size",
|
|
477
|
+
"type": "string",
|
|
478
|
+
"responsive": false,
|
|
479
|
+
"description": "背景のサイズ。",
|
|
480
|
+
"values": ["cover", "contain"]
|
|
481
|
+
},
|
|
263
482
|
{
|
|
264
483
|
"prop": "keycolor",
|
|
265
484
|
"cssProperty": "--keycolor (CSS変数)",
|
|
@@ -304,6 +523,52 @@
|
|
|
304
523
|
"responsive": true,
|
|
305
524
|
"description": "ボーダー幅。"
|
|
306
525
|
},
|
|
526
|
+
{
|
|
527
|
+
"prop": "bd-x",
|
|
528
|
+
"cssProperty": "border-inline",
|
|
529
|
+
"type": "string | boolean",
|
|
530
|
+
"responsive": false,
|
|
531
|
+
"description": "インライン方向(左右)のボーダー。"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"prop": "bd-y",
|
|
535
|
+
"cssProperty": "border-block",
|
|
536
|
+
"type": "string | boolean",
|
|
537
|
+
"responsive": false,
|
|
538
|
+
"description": "ブロック方向(上下)のボーダー。"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"prop": "bd-x-s",
|
|
542
|
+
"cssProperty": "border-inline-start",
|
|
543
|
+
"type": "string | boolean",
|
|
544
|
+
"responsive": false,
|
|
545
|
+
"description": "インライン開始方向のボーダー。"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"prop": "bd-x-e",
|
|
549
|
+
"cssProperty": "border-inline-end",
|
|
550
|
+
"type": "string | boolean",
|
|
551
|
+
"responsive": false,
|
|
552
|
+
"description": "インライン終了方向のボーダー。"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"prop": "bd-y-s",
|
|
556
|
+
"cssProperty": "border-block-start",
|
|
557
|
+
"type": "string | boolean",
|
|
558
|
+
"responsive": false,
|
|
559
|
+
"description": "ブロック開始方向のボーダー。"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"prop": "bd-y-e",
|
|
563
|
+
"cssProperty": "border-block-end",
|
|
564
|
+
"type": "string | boolean",
|
|
565
|
+
"responsive": false,
|
|
566
|
+
"description": "ブロック終了方向のボーダー。"
|
|
567
|
+
},
|
|
568
|
+
{ "prop": "bd-t", "cssProperty": "border-top", "type": "string | boolean", "responsive": false, "description": "上ボーダー。" },
|
|
569
|
+
{ "prop": "bd-b", "cssProperty": "border-bottom", "type": "string | boolean", "responsive": false, "description": "下ボーダー。" },
|
|
570
|
+
{ "prop": "bd-l", "cssProperty": "border-left", "type": "string | boolean", "responsive": false, "description": "左ボーダー。" },
|
|
571
|
+
{ "prop": "bd-r", "cssProperty": "border-right", "type": "string | boolean", "responsive": false, "description": "右ボーダー。" },
|
|
307
572
|
{
|
|
308
573
|
"prop": "bdrs",
|
|
309
574
|
"cssProperty": "border-radius",
|
|
@@ -312,6 +577,50 @@
|
|
|
312
577
|
"description": "角丸。",
|
|
313
578
|
"values": ["0", "5", "10", "20", "30", "40", "50", "99", "inner"]
|
|
314
579
|
},
|
|
580
|
+
{ "prop": "bdrs-tl", "cssProperty": "border-top-left-radius", "type": "string", "responsive": false, "description": "左上の角丸。" },
|
|
581
|
+
{ "prop": "bdrs-tr", "cssProperty": "border-top-right-radius", "type": "string", "responsive": false, "description": "右上の角丸。" },
|
|
582
|
+
{
|
|
583
|
+
"prop": "bdrs-br",
|
|
584
|
+
"cssProperty": "border-bottom-right-radius",
|
|
585
|
+
"type": "string",
|
|
586
|
+
"responsive": false,
|
|
587
|
+
"description": "右下の角丸。"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"prop": "bdrs-bl",
|
|
591
|
+
"cssProperty": "border-bottom-left-radius",
|
|
592
|
+
"type": "string",
|
|
593
|
+
"responsive": false,
|
|
594
|
+
"description": "左下の角丸。"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"prop": "bdrs-ss",
|
|
598
|
+
"cssProperty": "border-start-start-radius",
|
|
599
|
+
"type": "string",
|
|
600
|
+
"responsive": false,
|
|
601
|
+
"description": "インライン開始・ブロック開始方向の角丸。"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"prop": "bdrs-se",
|
|
605
|
+
"cssProperty": "border-start-end-radius",
|
|
606
|
+
"type": "string",
|
|
607
|
+
"responsive": false,
|
|
608
|
+
"description": "インライン終了・ブロック開始方向の角丸。"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"prop": "bdrs-es",
|
|
612
|
+
"cssProperty": "border-end-start-radius",
|
|
613
|
+
"type": "string",
|
|
614
|
+
"responsive": false,
|
|
615
|
+
"description": "インライン開始・ブロック終了方向の角丸。"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"prop": "bdrs-ee",
|
|
619
|
+
"cssProperty": "border-end-end-radius",
|
|
620
|
+
"type": "string",
|
|
621
|
+
"responsive": false,
|
|
622
|
+
"description": "インライン終了・ブロック終了方向の角丸。"
|
|
623
|
+
},
|
|
315
624
|
{
|
|
316
625
|
"prop": "bxsh",
|
|
317
626
|
"cssProperty": "box-shadow",
|
|
@@ -342,17 +651,82 @@
|
|
|
342
651
|
"description": "重ね順。",
|
|
343
652
|
"values": ["-1", "0", "1", "99"]
|
|
344
653
|
},
|
|
345
|
-
{
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
654
|
+
{
|
|
655
|
+
"prop": "t",
|
|
656
|
+
"cssProperty": "top",
|
|
657
|
+
"type": "string",
|
|
658
|
+
"responsive": false,
|
|
659
|
+
"description": "上端の位置。",
|
|
660
|
+
"values": ["0", "50%", "100%"]
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"prop": "l",
|
|
664
|
+
"cssProperty": "left",
|
|
665
|
+
"type": "string",
|
|
666
|
+
"responsive": false,
|
|
667
|
+
"description": "左端の位置。",
|
|
668
|
+
"values": ["0", "50%", "100%"]
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"prop": "r",
|
|
672
|
+
"cssProperty": "right",
|
|
673
|
+
"type": "string",
|
|
674
|
+
"responsive": false,
|
|
675
|
+
"description": "右端の位置。",
|
|
676
|
+
"values": ["0", "50%", "100%"]
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"prop": "b",
|
|
680
|
+
"cssProperty": "bottom",
|
|
681
|
+
"type": "string",
|
|
682
|
+
"responsive": false,
|
|
683
|
+
"description": "下端の位置。",
|
|
684
|
+
"values": ["0", "50%", "100%"]
|
|
685
|
+
},
|
|
686
|
+
{ "prop": "i", "cssProperty": "inset", "type": "string", "responsive": false, "description": "全方向の位置。", "values": ["0"] },
|
|
687
|
+
{ "prop": "i-x", "cssProperty": "inset-inline", "type": "string", "responsive": false, "description": "インライン方向の位置。" },
|
|
688
|
+
{ "prop": "i-y", "cssProperty": "inset-block", "type": "string", "responsive": false, "description": "ブロック方向の位置。" },
|
|
689
|
+
{
|
|
690
|
+
"prop": "i-x-s",
|
|
691
|
+
"cssProperty": "inset-inline-start",
|
|
692
|
+
"type": "string",
|
|
693
|
+
"responsive": false,
|
|
694
|
+
"description": "インライン開始方向の位置。"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"prop": "i-x-e",
|
|
698
|
+
"cssProperty": "inset-inline-end",
|
|
699
|
+
"type": "string",
|
|
700
|
+
"responsive": false,
|
|
701
|
+
"description": "インライン終了方向の位置。"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"prop": "i-y-s",
|
|
705
|
+
"cssProperty": "inset-block-start",
|
|
706
|
+
"type": "string",
|
|
707
|
+
"responsive": false,
|
|
708
|
+
"description": "ブロック開始方向の位置。"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"prop": "i-y-e",
|
|
712
|
+
"cssProperty": "inset-block-end",
|
|
713
|
+
"type": "string",
|
|
714
|
+
"responsive": false,
|
|
715
|
+
"description": "ブロック終了方向の位置。"
|
|
716
|
+
}
|
|
350
717
|
]
|
|
351
718
|
},
|
|
352
719
|
{
|
|
353
720
|
"category": "flex",
|
|
354
721
|
"description": "Flexbox 関連のプロパティ",
|
|
355
722
|
"props": [
|
|
723
|
+
{
|
|
724
|
+
"prop": "fxf",
|
|
725
|
+
"cssProperty": "flex-flow",
|
|
726
|
+
"type": "string",
|
|
727
|
+
"responsive": false,
|
|
728
|
+
"description": "フレックスフロー (flex-direction と flex-wrap の一括指定)。"
|
|
729
|
+
},
|
|
356
730
|
{
|
|
357
731
|
"prop": "fxw",
|
|
358
732
|
"cssProperty": "flex-wrap",
|
|
@@ -439,7 +813,28 @@
|
|
|
439
813
|
"description": "グリッド自動配置方向。",
|
|
440
814
|
"values": ["row", "col"]
|
|
441
815
|
},
|
|
442
|
-
{
|
|
816
|
+
{
|
|
817
|
+
"prop": "gac",
|
|
818
|
+
"cssProperty": "grid-auto-columns",
|
|
819
|
+
"type": "string",
|
|
820
|
+
"responsive": false,
|
|
821
|
+
"description": "グリッド自動列サイズ。"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"prop": "gar",
|
|
825
|
+
"cssProperty": "grid-auto-rows",
|
|
826
|
+
"type": "string",
|
|
827
|
+
"responsive": false,
|
|
828
|
+
"description": "グリッド自動行サイズ。"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"prop": "ga",
|
|
832
|
+
"cssProperty": "grid-area",
|
|
833
|
+
"type": "string | array",
|
|
834
|
+
"responsive": true,
|
|
835
|
+
"description": "グリッドエリア。",
|
|
836
|
+
"values": ["1/1"]
|
|
837
|
+
},
|
|
443
838
|
{
|
|
444
839
|
"prop": "gc",
|
|
445
840
|
"cssProperty": "grid-column",
|
|
@@ -456,6 +851,16 @@
|
|
|
456
851
|
"description": "グリッド行位置。",
|
|
457
852
|
"values": ["1/-1"]
|
|
458
853
|
},
|
|
854
|
+
{
|
|
855
|
+
"prop": "gcs",
|
|
856
|
+
"cssProperty": "grid-column-start",
|
|
857
|
+
"type": "string",
|
|
858
|
+
"responsive": false,
|
|
859
|
+
"description": "グリッドカラム開始位置。"
|
|
860
|
+
},
|
|
861
|
+
{ "prop": "gce", "cssProperty": "grid-column-end", "type": "string", "responsive": false, "description": "グリッドカラム終了位置。" },
|
|
862
|
+
{ "prop": "grs", "cssProperty": "grid-row-start", "type": "string", "responsive": false, "description": "グリッド行開始位置。" },
|
|
863
|
+
{ "prop": "gre", "cssProperty": "grid-row-end", "type": "string", "responsive": false, "description": "グリッド行終了位置。" },
|
|
459
864
|
{
|
|
460
865
|
"prop": "cols",
|
|
461
866
|
"cssProperty": "--cols (CSS変数)",
|
|
@@ -482,7 +887,7 @@
|
|
|
482
887
|
"type": "string | array",
|
|
483
888
|
"responsive": true,
|
|
484
889
|
"description": "交差軸のアイテム配置。",
|
|
485
|
-
"values": ["start", "center", "end", "stretch"]
|
|
890
|
+
"values": ["start", "center", "end", "stretch", "flex-s", "flex-e"]
|
|
486
891
|
},
|
|
487
892
|
{
|
|
488
893
|
"prop": "ac",
|
|
@@ -490,7 +895,7 @@
|
|
|
490
895
|
"type": "string | array",
|
|
491
896
|
"responsive": true,
|
|
492
897
|
"description": "交差軸のコンテンツ配置。",
|
|
493
|
-
"values": ["start", "center", "end", "between"]
|
|
898
|
+
"values": ["start", "center", "end", "between", "flex-s", "flex-e"]
|
|
494
899
|
},
|
|
495
900
|
{
|
|
496
901
|
"prop": "ji",
|
|
@@ -498,7 +903,7 @@
|
|
|
498
903
|
"type": "string | array",
|
|
499
904
|
"responsive": true,
|
|
500
905
|
"description": "主軸のアイテム配置。",
|
|
501
|
-
"values": ["start", "center", "end", "stretch"]
|
|
906
|
+
"values": ["start", "center", "end", "stretch", "flex-s", "flex-e"]
|
|
502
907
|
},
|
|
503
908
|
{
|
|
504
909
|
"prop": "jc",
|
|
@@ -506,7 +911,7 @@
|
|
|
506
911
|
"type": "string | array",
|
|
507
912
|
"responsive": true,
|
|
508
913
|
"description": "主軸のコンテンツ配置。",
|
|
509
|
-
"values": ["start", "center", "end", "between"]
|
|
914
|
+
"values": ["start", "center", "end", "between", "flex-s", "flex-e"]
|
|
510
915
|
},
|
|
511
916
|
{
|
|
512
917
|
"prop": "pi",
|
|
@@ -540,6 +945,14 @@
|
|
|
540
945
|
"description": "個別の主軸配置。",
|
|
541
946
|
"values": ["start", "center", "end", "stretch"]
|
|
542
947
|
},
|
|
948
|
+
{
|
|
949
|
+
"prop": "pslf",
|
|
950
|
+
"cssProperty": "place-self",
|
|
951
|
+
"type": "string",
|
|
952
|
+
"responsive": false,
|
|
953
|
+
"description": "個別の両軸配置。",
|
|
954
|
+
"values": ["start", "center", "end"]
|
|
955
|
+
},
|
|
543
956
|
{
|
|
544
957
|
"prop": "order",
|
|
545
958
|
"cssProperty": "order",
|
|
@@ -584,11 +997,134 @@
|
|
|
584
997
|
"description": "ボックス全体をリンク領域にする。"
|
|
585
998
|
},
|
|
586
999
|
{
|
|
587
|
-
"prop": "
|
|
588
|
-
"cssProperty": "(class:
|
|
1000
|
+
"prop": "isSide",
|
|
1001
|
+
"cssProperty": "(class: is--side)",
|
|
1002
|
+
"type": "boolean",
|
|
1003
|
+
"responsive": false,
|
|
1004
|
+
"description": "SideMain内でサイド要素として機能させる。"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"prop": "isSkipFlow",
|
|
1008
|
+
"cssProperty": "(class: is--skipFlow)",
|
|
1009
|
+
"type": "boolean",
|
|
1010
|
+
"responsive": false,
|
|
1011
|
+
"description": "Flow内でフローマージンをスキップする。"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"prop": "isVertical",
|
|
1015
|
+
"cssProperty": "(class: is--vertical)",
|
|
1016
|
+
"type": "boolean",
|
|
1017
|
+
"responsive": false,
|
|
1018
|
+
"description": "縦書きモードにする。"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"prop": "setGutter",
|
|
1022
|
+
"cssProperty": "(class: set--gutter)",
|
|
589
1023
|
"type": "boolean",
|
|
590
1024
|
"responsive": false,
|
|
591
1025
|
"description": "左右にガター(余白)を付ける。"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"prop": "setShadow",
|
|
1029
|
+
"cssProperty": "(class: set--shadow)",
|
|
1030
|
+
"type": "boolean",
|
|
1031
|
+
"responsive": false,
|
|
1032
|
+
"description": "シャドウ用のセットクラスを付与する。"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"prop": "setHov",
|
|
1036
|
+
"cssProperty": "(class: set--hov)",
|
|
1037
|
+
"type": "boolean",
|
|
1038
|
+
"responsive": false,
|
|
1039
|
+
"description": "ホバー状態管理用のセットクラスを付与する。子要素へのホバー状態伝播に使用。"
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"prop": "setTransition",
|
|
1043
|
+
"cssProperty": "(class: set--transition)",
|
|
1044
|
+
"type": "boolean",
|
|
1045
|
+
"responsive": false,
|
|
1046
|
+
"description": "トランジション用のセットクラスを付与する。"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"prop": "setMask",
|
|
1050
|
+
"cssProperty": "(class: set--mask)",
|
|
1051
|
+
"type": "string",
|
|
1052
|
+
"responsive": false,
|
|
1053
|
+
"description": "マスク画像を設定するセットクラスを付与する。SVGやURL文字列を値として指定。"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"prop": "setPlain",
|
|
1057
|
+
"cssProperty": "(class: set--plain)",
|
|
1058
|
+
"type": "boolean",
|
|
1059
|
+
"responsive": false,
|
|
1060
|
+
"description": "プレーン表示用のセットクラスを付与する。"
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"prop": "setInnerRs",
|
|
1064
|
+
"cssProperty": "(class: set--innerRs)",
|
|
1065
|
+
"type": "boolean",
|
|
1066
|
+
"responsive": false,
|
|
1067
|
+
"description": "内側の角丸を設定するセットクラスを付与する。"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"prop": "setBp",
|
|
1071
|
+
"cssProperty": "(class: set--bp)",
|
|
1072
|
+
"type": "boolean",
|
|
1073
|
+
"responsive": false,
|
|
1074
|
+
"description": "ブレイクポイント制御用のセットクラスを付与する。"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"prop": "setCqUnit",
|
|
1078
|
+
"cssProperty": "(class: set--cqUnit)",
|
|
1079
|
+
"type": "boolean",
|
|
1080
|
+
"responsive": false,
|
|
1081
|
+
"description": "コンテナクエリ単位(cqi)を有効にするセットクラスを付与する。"
|
|
1082
|
+
}
|
|
1083
|
+
]
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"category": "others",
|
|
1087
|
+
"description": "その他のCSSプロパティ",
|
|
1088
|
+
"props": [
|
|
1089
|
+
{
|
|
1090
|
+
"prop": "ovwrap",
|
|
1091
|
+
"cssProperty": "overflow-wrap",
|
|
1092
|
+
"type": "string",
|
|
1093
|
+
"responsive": false,
|
|
1094
|
+
"description": "オーバーフローラップ。",
|
|
1095
|
+
"values": ["any"]
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"prop": "whspace",
|
|
1099
|
+
"cssProperty": "white-space",
|
|
1100
|
+
"type": "string",
|
|
1101
|
+
"responsive": false,
|
|
1102
|
+
"description": "ホワイトスペース。",
|
|
1103
|
+
"values": ["nowrap"]
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"prop": "float",
|
|
1107
|
+
"cssProperty": "float",
|
|
1108
|
+
"type": "string",
|
|
1109
|
+
"responsive": false,
|
|
1110
|
+
"description": "フロート。",
|
|
1111
|
+
"values": ["left", "right"]
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"prop": "clear",
|
|
1115
|
+
"cssProperty": "clear",
|
|
1116
|
+
"type": "string",
|
|
1117
|
+
"responsive": false,
|
|
1118
|
+
"description": "クリア。",
|
|
1119
|
+
"values": ["both"]
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"prop": "isolation",
|
|
1123
|
+
"cssProperty": "isolation",
|
|
1124
|
+
"type": "string",
|
|
1125
|
+
"responsive": false,
|
|
1126
|
+
"description": "スタッキングコンテキストの分離。",
|
|
1127
|
+
"values": ["isolate"]
|
|
592
1128
|
}
|
|
593
1129
|
]
|
|
594
1130
|
}
|