@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
|
@@ -4,16 +4,7 @@
|
|
|
4
4
|
"title": "概要",
|
|
5
5
|
"description": "Lism CSS の概要と特徴について解説します。",
|
|
6
6
|
"category": "guide",
|
|
7
|
-
"headings": [
|
|
8
|
-
"React/Astro で使える Lism コンポーネント",
|
|
9
|
-
"Lism CSS の特徴",
|
|
10
|
-
"ゼロビルドでどんな環境でも使えるフレームワーク",
|
|
11
|
-
"reset.css レベルからサイト全体のレイヤー階層を設計",
|
|
12
|
-
"レイアウトファースト",
|
|
13
|
-
"CSS変数を組み合わたレスポンシブなユーティリティ設計",
|
|
14
|
-
"メディアクエリに依存しないレイアウト設計",
|
|
15
|
-
"Inspirations"
|
|
16
|
-
],
|
|
7
|
+
"headings": ["Lism CSS の特徴", "Inspirations"],
|
|
17
8
|
"keywords": ["overview", "概要", "特徴", "レイアウトファースト", "ゼロビルド", "コンテナクエリ", "Every Layout", "framework"],
|
|
18
9
|
"snippet": "Lism CSS は、WEBサイトの骨組みをテンポ良くサクっと作るための軽量なCSSフレームワークです。レイアウトファーストなモジュール設計とCSS変数を組み合わせたレスポンシブなユーティリティ設計が特徴です。"
|
|
19
10
|
},
|
|
@@ -22,13 +13,7 @@
|
|
|
22
13
|
"title": "インストール",
|
|
23
14
|
"description": "Lism CSS のインストール方法と基本的な使い方を解説します。",
|
|
24
15
|
"category": "guide",
|
|
25
|
-
"headings": [
|
|
26
|
-
"CSS設計のみを導入したい場合",
|
|
27
|
-
"専用のコンポーネントを使用したい場合",
|
|
28
|
-
"パッケージのインストール",
|
|
29
|
-
"CSSの読み込み",
|
|
30
|
-
"コンポーネントの読み込み"
|
|
31
|
-
],
|
|
16
|
+
"headings": ["CSS設計のみを導入したい場合", "専用のコンポーネントを使用したい場合"],
|
|
32
17
|
"keywords": ["install", "インストール", "CDN", "npm", "setup", "セットアップ", "導入"],
|
|
33
18
|
"snippet": "CSSを読み込むだけでも導入でき、CDN経由でも利用可能。npm パッケージとしてインストールし、lism-css/react や lism-css/astro からコンポーネントをインポートして使用。"
|
|
34
19
|
},
|
|
@@ -37,20 +22,7 @@
|
|
|
37
22
|
"title": "CSS設計",
|
|
38
23
|
"description": "Lism CSS の CSS 設計思想と命名規則について解説します。",
|
|
39
24
|
"category": "guide",
|
|
40
|
-
"headings": [
|
|
41
|
-
"Lism CSSの階層構造",
|
|
42
|
-
"Modules レイヤーでのさらなる階層構造",
|
|
43
|
-
"デザイントークン",
|
|
44
|
-
"CSSのクラス設計",
|
|
45
|
-
"Module Class",
|
|
46
|
-
"Utility Class",
|
|
47
|
-
"Prop Class",
|
|
48
|
-
"レスポンシブ対応の Prop Class",
|
|
49
|
-
"命名規則について",
|
|
50
|
-
"CSS変数の命名規則",
|
|
51
|
-
"クラスの命名規則",
|
|
52
|
-
"単語の省略について"
|
|
53
|
-
],
|
|
25
|
+
"headings": ["Lism CSSの階層構造", "デザイントークン", "CSSのクラス設計", "命名規則について", "単語の省略について"],
|
|
54
26
|
"keywords": [
|
|
55
27
|
"CSS設計",
|
|
56
28
|
"methodology",
|
|
@@ -61,18 +33,19 @@
|
|
|
61
33
|
"BEM",
|
|
62
34
|
"Prop Class",
|
|
63
35
|
"Module Class",
|
|
36
|
+
"Set Class",
|
|
64
37
|
"Utility Class",
|
|
65
38
|
"省略",
|
|
66
39
|
"Emmet"
|
|
67
40
|
],
|
|
68
|
-
"snippet": "CSSの階層構造を明確に定義。@layer lism.reset → lism.base → lism.modules → lism.utility の順。Module Class (.l--name, .a--name 等)、Prop Class (.-prop:value) の命名規則を説明。"
|
|
41
|
+
"snippet": "CSSの階層構造を明確に定義。@layer lism.reset → lism.base → lism.modules → lism.utility の順。Module Class (.l--name, .a--name 等)、Prop Class (.-prop:value)、Set Class (.set--name) の命名規則を説明。"
|
|
69
42
|
},
|
|
70
43
|
{
|
|
71
44
|
"sourcePath": "tokens.mdx",
|
|
72
45
|
"title": "トークン",
|
|
73
46
|
"description": "Lism CSS のデザイントークン一覧と使い方。",
|
|
74
47
|
"category": "guide",
|
|
75
|
-
"headings": ["
|
|
48
|
+
"headings": ["COLOR", "RADIUS", "SHADOW", "OPACITY", "SIZE"],
|
|
76
49
|
"keywords": ["token", "トークン", "design token", "カラー", "スペーシング", "spacing", "color", "font-size", "shadow", "radius"],
|
|
77
50
|
"snippet": "タイポグラフィ、余白、カラー、シャドウなどの主要なプロパティに対してデザイントークンを定義。CSS変数で管理し、一貫性のあるデザインを実現。"
|
|
78
51
|
},
|
|
@@ -81,7 +54,18 @@
|
|
|
81
54
|
"title": "Prop Class",
|
|
82
55
|
"description": "Lism CSS の Prop Class (CSSプロパティに対応するユーティリティクラス) の一覧。",
|
|
83
56
|
"category": "props",
|
|
84
|
-
"headings": [
|
|
57
|
+
"headings": [
|
|
58
|
+
"このページの表の見方",
|
|
59
|
+
"Typography",
|
|
60
|
+
"Colors",
|
|
61
|
+
"Spacing",
|
|
62
|
+
"Width & Height",
|
|
63
|
+
"Displays",
|
|
64
|
+
"Positions",
|
|
65
|
+
"Layouts",
|
|
66
|
+
"Styling",
|
|
67
|
+
"Other CSS"
|
|
68
|
+
],
|
|
85
69
|
"keywords": ["prop class", "utility", "ユーティリティ", "クラス", "CSS property"],
|
|
86
70
|
"snippet": "単一のCSSプロパティに対応するユーティリティクラス。.-{prop}:{value} の形式。レスポンシブ対応の .-{prop}_{bp} 形式もサポート。"
|
|
87
71
|
},
|
|
@@ -90,7 +74,7 @@
|
|
|
90
74
|
"title": "レスポンシブ",
|
|
91
75
|
"description": "Lism CSS のレスポンシブ対応について解説します。",
|
|
92
76
|
"category": "guide",
|
|
93
|
-
"headings": [],
|
|
77
|
+
"headings": ["レスポンシブ対応", "コンテナクエリ・メディアクエリ", "ブレイクポイント"],
|
|
94
78
|
"keywords": ["responsive", "レスポンシブ", "ブレークポイント", "breakpoint", "コンテナクエリ", "container query", "sm", "md"],
|
|
95
79
|
"snippet": "CSS変数とクラスを組み合わせたレスポンシブ対応。コンテナクエリをデフォルトで採用。p={[20, 30, 40]} のような配列記法で sm, md ブレークポイントの値を指定。"
|
|
96
80
|
},
|
|
@@ -99,9 +83,9 @@
|
|
|
99
83
|
"title": "タイポグラフィ",
|
|
100
84
|
"description": "Lism CSS のタイポグラフィ設計について解説します。",
|
|
101
85
|
"category": "guide",
|
|
102
|
-
"headings": [],
|
|
103
|
-
"keywords": ["typography", "タイポグラフィ", "font", "文字", "テキスト", "heading"],
|
|
104
|
-
"snippet": "
|
|
86
|
+
"headings": ["Typography", "SPACE: 余白のスケーリング"],
|
|
87
|
+
"keywords": ["typography", "タイポグラフィ", "font", "文字", "テキスト", "heading", "spacing", "余白", "スペーシング", "フィボナッチ"],
|
|
88
|
+
"snippet": "フォントサイズ、行間、文字間隔などのタイポグラフィ設計と、フィボナッチ数列に基づいた余白のスケーリングについて解説。ハーフレディングによるline-height管理の仕組みを紹介。"
|
|
105
89
|
},
|
|
106
90
|
{
|
|
107
91
|
"sourcePath": "reset-css.mdx",
|
|
@@ -117,430 +101,456 @@
|
|
|
117
101
|
"title": "カスタマイズ",
|
|
118
102
|
"description": "Lism CSS のカスタマイズ方法。",
|
|
119
103
|
"category": "guide",
|
|
120
|
-
"headings": [],
|
|
121
|
-
"keywords": ["customize", "カスタマイズ", "設定", "config", "テーマ", "theme"],
|
|
122
|
-
"snippet": "Lism CSS のトークンやスタイルのカスタマイズ方法について解説。"
|
|
104
|
+
"headings": ["@layerをオフにする", "SCSS でのカスタマイズ", "lism.config.js でのカスタマイズ"],
|
|
105
|
+
"keywords": ["customize", "カスタマイズ", "設定", "config", "テーマ", "theme", "SCSS"],
|
|
106
|
+
"snippet": "Lism CSS のトークンやスタイルのカスタマイズ方法について解説。SCSSの変数上書きやlism.config.jsでのコンポーネント挙動のカスタマイズが可能。"
|
|
123
107
|
},
|
|
124
108
|
{
|
|
125
109
|
"sourcePath": "utility-class.mdx",
|
|
126
110
|
"title": "ユーティリティクラス",
|
|
127
111
|
"description": "Lism CSS のユーティリティクラス一覧。",
|
|
128
112
|
"category": "guide",
|
|
129
|
-
"headings": [],
|
|
130
|
-
"keywords": [
|
|
131
|
-
|
|
113
|
+
"headings": ["u--cbox", "u--trim & u--trimChildren", "u--expandedLink", "u--srOnly", "u--collapseGrid", "u--snap", "u--clipText", "Opt-in"],
|
|
114
|
+
"keywords": [
|
|
115
|
+
"utility",
|
|
116
|
+
"ユーティリティ",
|
|
117
|
+
"class",
|
|
118
|
+
"クラス",
|
|
119
|
+
"u--cbox",
|
|
120
|
+
"u--trim",
|
|
121
|
+
"u--expandedLink",
|
|
122
|
+
"u--srOnly",
|
|
123
|
+
"u--collapseGrid",
|
|
124
|
+
"u--snap",
|
|
125
|
+
"u--clipText"
|
|
126
|
+
],
|
|
127
|
+
"snippet": "用途が明確な装飾・機能をまとめてセットするユーティリティクラス (.u--{style}) の一覧。u--cbox, u--trim, u--expandedLink, u--collapseGrid 等を解説。"
|
|
132
128
|
},
|
|
133
129
|
{
|
|
134
|
-
"sourcePath": "set-
|
|
135
|
-
"title": "Set
|
|
136
|
-
"description": "Lism CSS の
|
|
130
|
+
"sourcePath": "set-class.mdx",
|
|
131
|
+
"title": "Set Class",
|
|
132
|
+
"description": "Lism CSS の Set Class (.set--{style}) クラスについて。",
|
|
137
133
|
"category": "guide",
|
|
138
134
|
"headings": [],
|
|
139
|
-
"keywords": [
|
|
140
|
-
|
|
135
|
+
"keywords": [
|
|
136
|
+
"set",
|
|
137
|
+
"set class",
|
|
138
|
+
"set--plain",
|
|
139
|
+
"set--shadow",
|
|
140
|
+
"set--transition",
|
|
141
|
+
"set--hov",
|
|
142
|
+
"set--bp",
|
|
143
|
+
"set--cqUnit",
|
|
144
|
+
"set--innerRs",
|
|
145
|
+
"set--gutter"
|
|
146
|
+
],
|
|
147
|
+
"snippet": "ベーススタイルの上書きやトークンの再定義、機能的なプロパティを初期セットするためのクラス (.set--{style})。set--plain, set--shadow, set--transition, set--hov, set--bp, set--cqUnit, set--innerRs, set--gutter を解説。"
|
|
141
148
|
},
|
|
142
149
|
{
|
|
143
150
|
"sourcePath": "module-class.mdx",
|
|
144
151
|
"title": "モジュールクラス",
|
|
145
152
|
"description": "Lism CSS のモジュールクラスの解説。",
|
|
146
153
|
"category": "guide",
|
|
147
|
-
"headings": [],
|
|
148
|
-
"keywords": ["module", "モジュール", "layout", "レイアウト", "class", "BEM"],
|
|
149
|
-
"snippet": "レイアウトの構成要素を細分化してモジュールとして定義。.l--{name}, .a--{name}, .c--{name} 等の命名規則。"
|
|
154
|
+
"headings": ["State Module", "Layout Modules", "Atomic Modules", "Custom Modules"],
|
|
155
|
+
"keywords": ["module", "モジュール", "layout", "レイアウト", "class", "BEM", "is--vertical"],
|
|
156
|
+
"snippet": "レイアウトの構成要素を細分化してモジュールとして定義。.l--{name}, .a--{name}, .c--{name} 等の命名規則。State Module (is--container, is--wrapper, is--layer, is--linkBox, is--vertical) も解説。"
|
|
150
157
|
},
|
|
151
158
|
{
|
|
152
|
-
"sourcePath": "
|
|
159
|
+
"sourcePath": "base-styles.mdx",
|
|
153
160
|
"title": "HTMLベーススタイル",
|
|
154
161
|
"description": "Lism CSS が適用するHTML要素のベーススタイルについて。",
|
|
155
162
|
"category": "guide",
|
|
156
|
-
"headings": [],
|
|
157
|
-
"keywords": ["html", "base", "ベース", "スタイル", "要素"],
|
|
158
|
-
"snippet": "Lism CSS がHTML要素に対して適用するベーススタイルについて解説。"
|
|
163
|
+
"headings": ["Reset CSS", "Base styles"],
|
|
164
|
+
"keywords": ["html", "base", "ベース", "スタイル", "要素", "reset"],
|
|
165
|
+
"snippet": "Lism CSS がHTML要素に対して適用するベーススタイルについて解説。Reset CSSと@lism-baseレイヤーで定義されるベーススタイルを紹介。"
|
|
159
166
|
},
|
|
160
167
|
{
|
|
161
168
|
"sourcePath": "changelog.mdx",
|
|
162
169
|
"title": "変更履歴",
|
|
163
170
|
"description": "Lism CSS の変更履歴。",
|
|
164
171
|
"category": "guide",
|
|
165
|
-
"headings": [
|
|
172
|
+
"headings": [
|
|
173
|
+
"v.0.9.0 (2026.03.17)",
|
|
174
|
+
"v.0.8.3",
|
|
175
|
+
"v.0.8.2",
|
|
176
|
+
"v.0.8 (大幅な変更)",
|
|
177
|
+
"v.0.7",
|
|
178
|
+
"v.0.7.1",
|
|
179
|
+
"v.0.7.2",
|
|
180
|
+
"v.0.7.3",
|
|
181
|
+
"v.0.6",
|
|
182
|
+
"v.0.5(大幅な変更)",
|
|
183
|
+
"~ v.0.3"
|
|
184
|
+
],
|
|
166
185
|
"keywords": ["changelog", "変更履歴", "更新", "バージョン"],
|
|
167
186
|
"snippet": "Lism CSS の各バージョンにおける変更内容を記載。"
|
|
168
187
|
},
|
|
169
188
|
{
|
|
170
189
|
"sourcePath": "props/bd.mdx",
|
|
171
|
-
"title": "ボーダー (bd)",
|
|
190
|
+
"title": "ボーダー (-bd)",
|
|
172
191
|
"description": "ボーダー関連の Prop の解説。",
|
|
173
192
|
"category": "props",
|
|
174
|
-
"headings": [],
|
|
193
|
+
"headings": ["方向指定", "bdwをブレイクポイントで切り替える"],
|
|
175
194
|
"keywords": ["border", "ボーダー", "bd", "bdc", "bdw", "bds", "bdrs", "枠線"],
|
|
176
|
-
"snippet": "ボーダー関連のProp。bd, bdc, bdw, bds, bdrs
|
|
195
|
+
"snippet": "ボーダー関連のProp。bd, bdc, bdw, bds, bdrs を使ったボーダースタイルの設定方法。方向指定やブレイクポイントでの切り替えも解説。"
|
|
177
196
|
},
|
|
178
197
|
{
|
|
179
198
|
"sourcePath": "props/hov.mdx",
|
|
180
|
-
"title": "ホバー (hov)",
|
|
199
|
+
"title": "ホバー (-hov)",
|
|
181
200
|
"description": "ホバー関連の Prop の解説。",
|
|
182
201
|
"category": "props",
|
|
183
|
-
"headings": [],
|
|
184
|
-
"keywords": ["hover", "ホバー", "hov", "インタラクション", "animation"],
|
|
185
|
-
"snippet": "ホバー関連のProp。hov を使ったホバーエフェクトの設定方法。"
|
|
202
|
+
"headings": ["基本的な使い方", ".set--hov と特殊変数"],
|
|
203
|
+
"keywords": ["hover", "ホバー", "hov", "インタラクション", "animation", "set--hov", "set--transition", "transition"],
|
|
204
|
+
"snippet": "ホバー関連のProp。hov を使ったホバーエフェクトの設定方法。set--hovとset--transitionの活用、子要素へのホバー状態伝播を解説。"
|
|
186
205
|
},
|
|
187
206
|
{
|
|
188
207
|
"sourcePath": "props/max-sz.mdx",
|
|
189
|
-
"title": "
|
|
190
|
-
"description": "
|
|
208
|
+
"title": "サイズ制御クラス (-max-sz:)",
|
|
209
|
+
"description": "サイズ制御クラス (-max-sz:) の解説。",
|
|
191
210
|
"category": "props",
|
|
192
|
-
"headings": [],
|
|
193
|
-
"keywords": ["max-sz", "max-inline-size", "最大サイズ", "幅"],
|
|
194
|
-
"snippet": "max-sz (max-inline-size) の Prop。xs, s, m, l, xl
|
|
211
|
+
"headings": ["-max-sz:full, -max-sz:container", "DEMOページ"],
|
|
212
|
+
"keywords": ["max-sz", "max-inline-size", "最大サイズ", "幅", "full", "container"],
|
|
213
|
+
"snippet": "max-sz (max-inline-size) の Prop。xs, s, m, l, xl のサイズトークンで最大幅を指定。-max-sz:full, -max-sz:container の特殊クラスも解説。"
|
|
195
214
|
},
|
|
196
215
|
{
|
|
197
216
|
"sourcePath": "core-components/Lism.mdx",
|
|
198
217
|
"title": "Lism",
|
|
199
|
-
"description": "Lism
|
|
218
|
+
"description": "LismのCSS設計に対応した様々なプロパティを受け取ることができる汎用的なコンポーネントです。",
|
|
200
219
|
"category": "core-components",
|
|
201
|
-
"headings": [],
|
|
202
|
-
"keywords": ["Lism", "core", "コア", "基盤", "コンポーネント"],
|
|
203
|
-
"snippet": "全コンポーネントの基盤。Props システムによる CSS クラス・スタイルの自動変換を提供。tag prop
|
|
220
|
+
"headings": ["Import", "Lism Props", "補足"],
|
|
221
|
+
"keywords": ["Lism", "core", "コア", "基盤", "コンポーネント", "lismClass", "variant", "layout", "as", "exProps"],
|
|
222
|
+
"snippet": "全コンポーネントの基盤。Props システムによる CSS クラス・スタイルの自動変換を提供。tag prop で出力要素を変更可能。レスポンシブ指定は配列またはオブジェクト形式で対応。"
|
|
204
223
|
},
|
|
205
224
|
{
|
|
206
225
|
"sourcePath": "core-components/HTML.mdx",
|
|
207
226
|
"title": "HTML",
|
|
208
|
-
"description": "HTML
|
|
227
|
+
"description": "HTMLの主要なタグに<Lism>と同じプロパティを指定できるようにするためのコンポーネントです。",
|
|
209
228
|
"category": "core-components",
|
|
210
229
|
"headings": [],
|
|
211
230
|
"keywords": ["HTML", "要素", "element", "tag", "HTML.div", "HTML.p", "HTML.span", "HTML.a", "HTML.h"],
|
|
212
|
-
"snippet": "HTMLの主要なタグに<Lism>と同じプロパティを指定できるようにするコンポーネント。HTML.div, HTML.p, HTML.span 等が利用可能。"
|
|
231
|
+
"snippet": "HTMLの主要なタグに<Lism>と同じプロパティを指定できるようにするコンポーネント。HTML.div, HTML.p, HTML.span, HTML.a, HTML.h 等が利用可能。"
|
|
213
232
|
},
|
|
214
233
|
{
|
|
215
234
|
"sourcePath": "core-components/Dummy.mdx",
|
|
216
235
|
"title": "Dummy",
|
|
217
|
-
"description": "
|
|
236
|
+
"description": "ダミーテキストを出力できるLismコンポーネントです。",
|
|
218
237
|
"category": "core-components",
|
|
219
|
-
"headings": [],
|
|
238
|
+
"headings": ["Props", "Import", "ダミーテキストの例", "ダミーリスト", "ダミー画像"],
|
|
220
239
|
"keywords": ["Dummy", "ダミー", "テスト", "プレビュー"],
|
|
221
|
-
"snippet": "ダミーテキストを生成するコンポーネント。プレビューやテスト用に使用。"
|
|
240
|
+
"snippet": "ダミーテキストを生成するコンポーネント。プレビューやテスト用に使用。lang, length, tag, offset 等のプロパティで出力を制御。"
|
|
222
241
|
},
|
|
223
242
|
{
|
|
224
243
|
"sourcePath": "modules/l--box.mdx",
|
|
225
|
-
"title": "Box",
|
|
244
|
+
"title": "Box / l--box",
|
|
226
245
|
"description": "Box レイアウトモジュールの解説。",
|
|
227
246
|
"category": "modules",
|
|
228
|
-
"headings": [],
|
|
247
|
+
"headings": ["対応コンポーネント", "Usage"],
|
|
229
248
|
"keywords": ["Box", "ボックス", "layout", "レイアウト", "l--box"],
|
|
230
|
-
"snippet": "
|
|
249
|
+
"snippet": "最も基本的なレイアウトモジュール。コンテンツをグループ化するだけのシンプルな汎用ボックス要素。l--box クラスが付与される。"
|
|
231
250
|
},
|
|
232
251
|
{
|
|
233
252
|
"sourcePath": "modules/l--flex.mdx",
|
|
234
|
-
"title": "Flex",
|
|
253
|
+
"title": "Flex / l--flex",
|
|
235
254
|
"description": "Flex レイアウトモジュールの解説。",
|
|
236
255
|
"category": "modules",
|
|
237
|
-
"headings": [],
|
|
256
|
+
"headings": ["CSS", "Import", "Props", "Usage"],
|
|
238
257
|
"keywords": ["Flex", "flexbox", "フレックス", "layout", "l--flex", "横並び"],
|
|
239
|
-
"snippet": "Flexboxレイアウトを構成。display: flex が適用される。g, ai, jc 等で配置を制御。"
|
|
258
|
+
"snippet": "Flexboxレイアウトを構成。display: flex が適用される。g, ai, jc, fxw, fxd 等で配置を制御。"
|
|
240
259
|
},
|
|
241
260
|
{
|
|
242
261
|
"sourcePath": "modules/l--stack.mdx",
|
|
243
|
-
"title": "Stack",
|
|
262
|
+
"title": "Stack / l--stack",
|
|
244
263
|
"description": "Stack レイアウトモジュールの解説。",
|
|
245
264
|
"category": "modules",
|
|
246
|
-
"headings": [],
|
|
265
|
+
"headings": ["CSS", "Import", "Props", "Usage"],
|
|
247
266
|
"keywords": ["Stack", "スタック", "縦並び", "vertical", "l--stack"],
|
|
248
|
-
"snippet": "縦方向に要素を積み重ねるFlexレイアウト。flex-direction: column のFlex。"
|
|
267
|
+
"snippet": "縦方向に要素を積み重ねるFlexレイアウト。flex-direction: column のFlex。ai='center'で内在的な中央寄せも可能。"
|
|
249
268
|
},
|
|
250
269
|
{
|
|
251
270
|
"sourcePath": "modules/l--grid.mdx",
|
|
252
|
-
"title": "Grid",
|
|
271
|
+
"title": "Grid / l--grid",
|
|
253
272
|
"description": "Grid レイアウトモジュールの解説。",
|
|
254
273
|
"category": "modules",
|
|
255
|
-
"headings": [],
|
|
256
|
-
"keywords": ["Grid", "グリッド", "layout", "l--grid", "CSS Grid"],
|
|
257
|
-
"snippet": "CSS Gridレイアウトを構成。gtc, gtr, cols, rows 等で列・行を制御。"
|
|
274
|
+
"headings": ["Import", "Props", "Usage"],
|
|
275
|
+
"keywords": ["Grid", "グリッド", "layout", "l--grid", "CSS Grid", "subgrid"],
|
|
276
|
+
"snippet": "CSS Gridレイアウトを構成。gtc, gtr, gta, cols, rows 等で列・行を制御。subgridや-gt:repeatもサポート。"
|
|
258
277
|
},
|
|
259
278
|
{
|
|
260
279
|
"sourcePath": "modules/l--center.mdx",
|
|
261
|
-
"title": "Center",
|
|
280
|
+
"title": "Center / l--center",
|
|
262
281
|
"description": "Center レイアウトモジュールの解説。",
|
|
263
282
|
"category": "modules",
|
|
264
|
-
"headings": [],
|
|
283
|
+
"headings": ["CSS", "主なProps", "Import", "Usage"],
|
|
265
284
|
"keywords": ["Center", "中央揃え", "center", "layout", "l--center"],
|
|
266
|
-
"snippet": "子要素を中央揃えにするレイアウト。place-items: center の Grid
|
|
285
|
+
"snippet": "子要素を中央揃えにするレイアウト。place-items: center の Grid。高さがあれば上下左右中央揃え。"
|
|
267
286
|
},
|
|
268
287
|
{
|
|
269
288
|
"sourcePath": "modules/l--cluster.mdx",
|
|
270
|
-
"title": "Cluster",
|
|
289
|
+
"title": "Cluster / l--cluster",
|
|
271
290
|
"description": "Cluster レイアウトモジュールの解説。",
|
|
272
291
|
"category": "modules",
|
|
273
|
-
"headings": [],
|
|
292
|
+
"headings": ["CSS", "Import", "Usage"],
|
|
274
293
|
"keywords": ["Cluster", "クラスター", "横並び", "wrap", "l--cluster", "タグ"],
|
|
275
294
|
"snippet": "横方向に要素を並べ、自動的に折り返すFlexレイアウト。タグやバッジの並びに適している。"
|
|
276
295
|
},
|
|
277
296
|
{
|
|
278
297
|
"sourcePath": "modules/l--columns.mdx",
|
|
279
|
-
"title": "Columns",
|
|
298
|
+
"title": "Columns / l--columns",
|
|
280
299
|
"description": "Columns レイアウトモジュールの解説。",
|
|
281
300
|
"category": "modules",
|
|
282
|
-
"headings": [],
|
|
283
|
-
"keywords": ["Columns", "カラム", "列", "multi-column", "l--columns"],
|
|
284
|
-
"snippet": "均等幅のカラムレイアウト。cols で列数を指定する Grid。レスポンシブ対応可能。"
|
|
301
|
+
"headings": ["Props", "CSS", "Import", "Usage"],
|
|
302
|
+
"keywords": ["Columns", "カラム", "列", "multi-column", "l--columns", "subgrid"],
|
|
303
|
+
"snippet": "均等幅のカラムレイアウト。cols で列数を指定する Grid。レスポンシブ対応可能。subgridも活用可能。"
|
|
285
304
|
},
|
|
286
305
|
{
|
|
287
306
|
"sourcePath": "modules/l--flow.mdx",
|
|
288
|
-
"title": "Flow",
|
|
307
|
+
"title": "Flow / l--flow",
|
|
289
308
|
"description": "Flow レイアウトモジュールの解説。",
|
|
290
309
|
"category": "modules",
|
|
291
|
-
"headings": [],
|
|
292
|
-
"keywords": ["Flow", "フロー", "コンテンツ", "記事", "l--flow", "本文"],
|
|
293
|
-
"snippet": "
|
|
310
|
+
"headings": ["対応コンポーネント", "Usage", "l--flow を入れ子にする時の注意点"],
|
|
311
|
+
"keywords": ["Flow", "フロー", "コンテンツ", "記事", "l--flow", "本文", "is--skipFlow"],
|
|
312
|
+
"snippet": "コンテンツフロー用のレイアウト。display: flow-root で子要素間の余白を管理。見出しタグは余白が2倍。is--skipFlowで余白打ち消しも可能。"
|
|
294
313
|
},
|
|
295
314
|
{
|
|
296
315
|
"sourcePath": "modules/l--fluidcols.mdx",
|
|
297
|
-
"title": "FluidCols",
|
|
316
|
+
"title": "FluidCols / l--fluidCols",
|
|
298
317
|
"description": "FluidCols レイアウトモジュールの解説。",
|
|
299
318
|
"category": "modules",
|
|
300
|
-
"headings": [],
|
|
319
|
+
"headings": ["Props", "CSS", "Import", "Usage"],
|
|
301
320
|
"keywords": ["FluidCols", "流動カラム", "auto-fill", "fluid", "l--fluidCols"],
|
|
302
|
-
"snippet": "子要素が最小幅に達すると自動的に折り返すグリッドレイアウト。メディアクエリに依存しない。"
|
|
321
|
+
"snippet": "子要素が最小幅に達すると自動的に折り返すグリッドレイアウト。メディアクエリに依存しない。cols で最小幅を指定。"
|
|
303
322
|
},
|
|
304
323
|
{
|
|
305
324
|
"sourcePath": "modules/l--frame.mdx",
|
|
306
|
-
"title": "Frame",
|
|
325
|
+
"title": "Frame / l--frame",
|
|
307
326
|
"description": "Frame レイアウトモジュールの解説。",
|
|
308
327
|
"category": "modules",
|
|
309
|
-
"headings": [],
|
|
310
|
-
"keywords": ["Frame", "フレーム", "aspect-ratio", "アスペクト比", "l--frame", "画像"],
|
|
311
|
-
"snippet": "
|
|
328
|
+
"headings": ["対応コンポーネント", "Usage"],
|
|
329
|
+
"keywords": ["Frame", "フレーム", "aspect-ratio", "アスペクト比", "l--frame", "画像", "video", "iframe"],
|
|
330
|
+
"snippet": "直下のメディア要素(img, video, iframe)を自身のサイズに合わせて表示するレイアウトモジュール。arでアスペクト比を指定。"
|
|
312
331
|
},
|
|
313
332
|
{
|
|
314
333
|
"sourcePath": "modules/l--switchcols.mdx",
|
|
315
|
-
"title": "SwitchCols",
|
|
334
|
+
"title": "SwitchCols / l--switchCols",
|
|
316
335
|
"description": "SwitchCols レイアウトモジュールの解説。",
|
|
317
336
|
"category": "modules",
|
|
318
|
-
"headings": [],
|
|
337
|
+
"headings": ["Props", "CSS", "Import", "Usage"],
|
|
319
338
|
"keywords": ["SwitchCols", "切り替え", "switch", "カラム", "l--switchCols"],
|
|
320
|
-
"snippet": "
|
|
339
|
+
"snippet": "複数列以上と1列への切り替えをメディアクエリを使わずに実装するレイアウト。breakSizeで切り替えポイントを指定。"
|
|
321
340
|
},
|
|
322
341
|
{
|
|
323
342
|
"sourcePath": "modules/l--sidemain.mdx",
|
|
324
|
-
"title": "SideMain",
|
|
343
|
+
"title": "SideMain / l--sideMain",
|
|
325
344
|
"description": "SideMain レイアウトモジュールの解説。",
|
|
326
345
|
"category": "modules",
|
|
327
|
-
"headings": [],
|
|
328
|
-
"keywords": ["SideMain", "サイドバー", "sidebar", "メイン", "l--sideMain", "2カラム"],
|
|
329
|
-
"snippet": "サイドバー + メインコンテンツの2カラムレイアウト。メイン側が可変幅。"
|
|
346
|
+
"headings": ["基本構造", "CSS", "Import", "Props", "Usage", "Gridを使って似たレイアウトを構成する例"],
|
|
347
|
+
"keywords": ["SideMain", "サイドバー", "sidebar", "メイン", "l--sideMain", "2カラム", "is--side"],
|
|
348
|
+
"snippet": "サイドバー + メインコンテンツの2カラムレイアウト。メイン側が可変幅。sideW, mainWで幅を制御。fxd='row-r'で反転も可能。"
|
|
330
349
|
},
|
|
331
350
|
{
|
|
332
351
|
"sourcePath": "modules/is--container.mdx",
|
|
333
|
-
"title": "Container",
|
|
352
|
+
"title": "Container / is--container",
|
|
334
353
|
"description": "Container (is--container) の解説。",
|
|
335
354
|
"category": "modules",
|
|
336
|
-
"headings": [],
|
|
337
|
-
"keywords": ["Container", "コンテナ", "container query", "is--container"],
|
|
338
|
-
"snippet": "
|
|
355
|
+
"headings": ["Props", "Import", "Usage"],
|
|
356
|
+
"keywords": ["Container", "コンテナ", "container query", "is--container", "isContainer"],
|
|
357
|
+
"snippet": "コンテナクエリの基準要素。container-typeをセットし、子要素のレスポンシブ対応の基準となる。isContainerプロパティでどのコンポーネントからでも呼び出し可能。"
|
|
339
358
|
},
|
|
340
359
|
{
|
|
341
360
|
"sourcePath": "modules/is--layer.mdx",
|
|
342
|
-
"title": "Layer",
|
|
361
|
+
"title": "Layer / is--layer",
|
|
343
362
|
"description": "Layer (is--layer) の解説。",
|
|
344
363
|
"category": "modules",
|
|
345
|
-
"headings": [],
|
|
346
|
-
"keywords": ["Layer", "レイヤー", "overlay", "オーバーレイ", "is--layer", "absolute"],
|
|
347
|
-
"snippet": "親要素に対して絶対配置で重なるレイヤー要素。オーバーレイや背景装飾に使用。"
|
|
364
|
+
"headings": ["Props", "Import", "Usage"],
|
|
365
|
+
"keywords": ["Layer", "レイヤー", "overlay", "オーバーレイ", "is--layer", "absolute", "backdrop-filter", "blur"],
|
|
366
|
+
"snippet": "親要素に対して絶対配置で重なるレイヤー要素。オーバーレイや背景装飾に使用。blur等のbackdrop-filterプロパティも個別に指定可能。"
|
|
348
367
|
},
|
|
349
368
|
{
|
|
350
369
|
"sourcePath": "modules/is--linkBox.mdx",
|
|
351
|
-
"title": "LinkBox",
|
|
370
|
+
"title": "LinkBox / is--linkBox",
|
|
352
371
|
"description": "LinkBox (is--linkBox) の解説。",
|
|
353
372
|
"category": "modules",
|
|
354
|
-
"headings": [],
|
|
355
|
-
"keywords": ["LinkBox", "リンク", "clickable", "カード", "is--linkBox"],
|
|
356
|
-
"snippet": "
|
|
373
|
+
"headings": ["Import", "Props", "Usage", "Opt-in"],
|
|
374
|
+
"keywords": ["LinkBox", "リンク", "clickable", "カード", "is--linkBox", "u--expandedLink"],
|
|
375
|
+
"snippet": "ボックス全体をリンク領域にする。hrefを指定してaタグにする方法と、内部にu--expandedLinkを配置する方法の2通りがある。"
|
|
357
376
|
},
|
|
358
377
|
{
|
|
359
378
|
"sourcePath": "modules/is--wrapper.mdx",
|
|
360
|
-
"title": "Wrapper",
|
|
379
|
+
"title": "Wrapper / is--wrapper",
|
|
361
380
|
"description": "Wrapper (is--wrapper) の解説。",
|
|
362
381
|
"category": "modules",
|
|
363
|
-
"headings": [],
|
|
364
|
-
"keywords": ["Wrapper", "ラッパー", "コンテンツ幅", "max-width", "is--wrapper"],
|
|
365
|
-
"snippet": "
|
|
382
|
+
"headings": ["Props", "Import", "Usage"],
|
|
383
|
+
"keywords": ["Wrapper", "ラッパー", "コンテンツ幅", "max-width", "is--wrapper", "contentSize"],
|
|
384
|
+
"snippet": "コンテンツ幅を制限するラッパー要素。contentSizeで幅を指定。s, lのプリセットサイズや任意値も設定可能。"
|
|
366
385
|
},
|
|
367
386
|
{
|
|
368
387
|
"sourcePath": "modules/a--icon.mdx",
|
|
369
|
-
"title": "Icon",
|
|
388
|
+
"title": "Icon / a--icon",
|
|
370
389
|
"description": "Icon コンポーネントの解説。",
|
|
371
390
|
"category": "modules",
|
|
372
|
-
"headings": [],
|
|
373
|
-
"keywords": ["Icon", "アイコン", "SVG", "a--icon"],
|
|
374
|
-
"snippet": "
|
|
391
|
+
"headings": ["構造", "CSS", "Props", "Import", "Usage"],
|
|
392
|
+
"keywords": ["Icon", "アイコン", "SVG", "a--icon", "phosphor-icons"],
|
|
393
|
+
"snippet": "アイコンを表示するコンポーネント。外部パッケージ(react-icons, phosphor-icons等)のアイコン、プリセットアイコン、SVG直接記述、img指定に対応。"
|
|
375
394
|
},
|
|
376
395
|
{
|
|
377
396
|
"sourcePath": "modules/a--divider.mdx",
|
|
378
|
-
"title": "Divider",
|
|
397
|
+
"title": "Divider / a--divider",
|
|
379
398
|
"description": "Divider コンポーネントの解説。",
|
|
380
399
|
"category": "modules",
|
|
381
|
-
"headings": [],
|
|
400
|
+
"headings": ["構造", "CSS", "Props", "Import", "Usage"],
|
|
382
401
|
"keywords": ["Divider", "区切り線", "hr", "a--divider", "セパレーター"],
|
|
383
|
-
"snippet": "区切り線を表示するコンポーネント。水平・垂直の区切りを表現。"
|
|
402
|
+
"snippet": "区切り線を表示するコンポーネント。水平・垂直の区切りを表現。bds, bdw, bdc でスタイルをカスタマイズ可能。"
|
|
384
403
|
},
|
|
385
404
|
{
|
|
386
405
|
"sourcePath": "modules/a--media.mdx",
|
|
387
|
-
"title": "Media",
|
|
406
|
+
"title": "Media / a--media",
|
|
388
407
|
"description": "Media コンポーネントの解説。",
|
|
389
408
|
"category": "modules",
|
|
390
|
-
"headings": [],
|
|
391
|
-
"keywords": ["Media", "メディア", "img", "video", "iframe", "a--media", "画像"],
|
|
392
|
-
"snippet": "img, video, iframe 等のメディア要素を統一的に扱うコンポーネント。"
|
|
409
|
+
"headings": ["Props", "Import"],
|
|
410
|
+
"keywords": ["Media", "メディア", "img", "video", "iframe", "a--media", "画像", "filter"],
|
|
411
|
+
"snippet": "img, video, iframe 等のメディア要素を統一的に扱うコンポーネント。objectPosition, filter系プロパティに対応。Next.js/AstroのImageコンポーネントとの連携も可能。"
|
|
393
412
|
},
|
|
394
413
|
{
|
|
395
414
|
"sourcePath": "modules/a--spacer.mdx",
|
|
396
|
-
"title": "Spacer",
|
|
415
|
+
"title": "Spacer / a--spacer",
|
|
397
416
|
"description": "Spacer コンポーネントの解説。",
|
|
398
417
|
"category": "modules",
|
|
399
|
-
"headings": [],
|
|
418
|
+
"headings": ["構造", "Props", "Import", "Usage"],
|
|
400
419
|
"keywords": ["Spacer", "スペーサー", "余白", "空白", "a--spacer"],
|
|
401
|
-
"snippet": "
|
|
420
|
+
"snippet": "空白を挿入するコンポーネント。w, h で幅・高さを指定。SPACEトークンの値も使用可能。"
|
|
402
421
|
},
|
|
403
422
|
{
|
|
404
423
|
"sourcePath": "modules/a--decorator.mdx",
|
|
405
|
-
"title": "Decorator",
|
|
424
|
+
"title": "Decorator / a--decorator",
|
|
406
425
|
"description": "Decorator コンポーネントの解説。",
|
|
407
426
|
"category": "modules",
|
|
408
|
-
"headings": [],
|
|
427
|
+
"headings": ["構造", "Props", "Import", "Usage"],
|
|
409
428
|
"keywords": ["Decorator", "デコレーター", "装飾", "a--decorator"],
|
|
410
|
-
"snippet": "
|
|
429
|
+
"snippet": "装飾用の空要素を出力するコンポーネント。size, filter系プロパティ, clipPathに対応。aria-hidden='true'がデフォルトで付与される。"
|
|
411
430
|
},
|
|
412
431
|
{
|
|
413
432
|
"sourcePath": "ui/Accordion.mdx",
|
|
414
433
|
"title": "Accordion",
|
|
415
|
-
"description": "Accordion
|
|
434
|
+
"description": "@lism-css/ui で提供する Accordion コンポーネントについて解説します。",
|
|
416
435
|
"category": "ui",
|
|
417
|
-
"headings": [],
|
|
436
|
+
"headings": ["基本構造", "ソースコード", "Import", "Props", "Examples"],
|
|
418
437
|
"keywords": ["Accordion", "アコーディオン", "開閉", "toggle", "FAQ"],
|
|
419
|
-
"snippet": "クリックでコンテンツの開閉を切り替えるアコーディオンUI
|
|
438
|
+
"snippet": "クリックでコンテンツの開閉を切り替えるアコーディオンUI。@lism-css/uiパッケージで提供。"
|
|
420
439
|
},
|
|
421
440
|
{
|
|
422
441
|
"sourcePath": "ui/Modal.mdx",
|
|
423
442
|
"title": "Modal",
|
|
424
443
|
"description": "Modal UIコンポーネントの解説。",
|
|
425
444
|
"category": "ui",
|
|
426
|
-
"headings": [],
|
|
445
|
+
"headings": ["How to use", "Props", "Usage"],
|
|
427
446
|
"keywords": ["Modal", "モーダル", "dialog", "ダイアログ", "ポップアップ"],
|
|
428
|
-
"snippet": "モーダルダイアログUI。dialog
|
|
447
|
+
"snippet": "モーダルダイアログUI。dialog要素を使用。@lism-css/uiパッケージで提供。"
|
|
429
448
|
},
|
|
430
449
|
{
|
|
431
450
|
"sourcePath": "ui/Tabs.mdx",
|
|
432
451
|
"title": "Tabs",
|
|
433
452
|
"description": "Tabs UIコンポーネントの解説。",
|
|
434
453
|
"category": "ui",
|
|
435
|
-
"headings": [],
|
|
454
|
+
"headings": ["基本構造", "CSS", "JavaScript", "Import", "Props", "Usage", "スタイルバリエーションの作成例", "Opt-in"],
|
|
436
455
|
"keywords": ["Tabs", "タブ", "切り替え", "panel"],
|
|
437
|
-
"snippet": "タブ切り替えUI
|
|
456
|
+
"snippet": "タブ切り替えUI。タブをクリックしてコンテンツパネルを切り替える。@lism-css/uiパッケージで提供。"
|
|
438
457
|
},
|
|
439
458
|
{
|
|
440
459
|
"sourcePath": "ui/Details.mdx",
|
|
441
460
|
"title": "Details",
|
|
442
|
-
"description": "Details
|
|
461
|
+
"description": "@lism-css/ui で提供する Details コンポーネントについて解説します。",
|
|
443
462
|
"category": "ui",
|
|
444
|
-
"headings": [],
|
|
463
|
+
"headings": ["How to use", "Examples"],
|
|
445
464
|
"keywords": ["Details", "details", "summary", "開閉"],
|
|
446
|
-
"snippet": "HTMLのdetails/summary要素をラップ。ネイティブのHTML
|
|
465
|
+
"snippet": "HTMLのdetails/summary要素をラップ。ネイティブのHTML要素を使用したアコーディオン。@lism-css/uiパッケージで提供。"
|
|
447
466
|
},
|
|
448
467
|
{
|
|
449
468
|
"sourcePath": "ui/Alert.mdx",
|
|
450
469
|
"title": "Alert",
|
|
451
|
-
"description": "Alert
|
|
470
|
+
"description": "@lism-css/ui で提供する Alert コンポーネントについて解説します。",
|
|
452
471
|
"category": "ui",
|
|
453
|
-
"headings": [],
|
|
472
|
+
"headings": ["How to use", "Examples", "Only lism-css"],
|
|
454
473
|
"keywords": ["Alert", "アラート", "注意", "notice", "warning", "info"],
|
|
455
|
-
"snippet": "
|
|
474
|
+
"snippet": "短めの文言を目立たせて強調表示したい時に使えるコンポーネント。アイコンとキーカラーでバリエーション。"
|
|
456
475
|
},
|
|
457
476
|
{
|
|
458
477
|
"sourcePath": "ui/Callout.mdx",
|
|
459
478
|
"title": "Callout",
|
|
460
|
-
"description": "Callout
|
|
479
|
+
"description": "@lism-css/ui で提供する Callout コンポーネントについて解説します。",
|
|
461
480
|
"category": "ui",
|
|
462
|
-
"headings": [],
|
|
481
|
+
"headings": ["How to use", "Examples", "Only lism-css", "Only Core"],
|
|
463
482
|
"keywords": ["Callout", "コールアウト", "補足", "note", "注意書き"],
|
|
464
|
-
"snippet": "
|
|
483
|
+
"snippet": "記事の中で重要なポイントを示すためのコンポーネント。@lism-css/uiパッケージで提供。"
|
|
465
484
|
},
|
|
466
485
|
{
|
|
467
486
|
"sourcePath": "ui/Button.mdx",
|
|
468
487
|
"title": "Button",
|
|
469
|
-
"description": "Button
|
|
488
|
+
"description": "@lism-css/ui で提供する Button コンポーネントについて解説します。",
|
|
470
489
|
"category": "ui",
|
|
471
|
-
"headings": [],
|
|
490
|
+
"headings": ["How to use", "Examples", "Opt-in", "Only lism-css"],
|
|
472
491
|
"keywords": ["Button", "ボタン", "クリック", "outline", "action"],
|
|
473
|
-
"snippet": "ボタンコンポーネント。variant (outline 等) と keycolor
|
|
492
|
+
"snippet": "ボタンコンポーネント。variant (outline 等) と keycolor でバリエーションを表現。@lism-css/uiパッケージで提供。"
|
|
474
493
|
},
|
|
475
494
|
{
|
|
476
495
|
"sourcePath": "ui/Badge.mdx",
|
|
477
496
|
"title": "Badge",
|
|
478
|
-
"description": "Badge
|
|
497
|
+
"description": "@lism-css/ui で提供する Badge コンポーネントについて解説します。",
|
|
479
498
|
"category": "ui",
|
|
480
|
-
"headings": [],
|
|
499
|
+
"headings": ["How to use", "Examples", "Only lism-css"],
|
|
481
500
|
"keywords": ["Badge", "バッジ", "ラベル", "タグ", "status"],
|
|
482
|
-
"snippet": "バッジ (ラベル)
|
|
501
|
+
"snippet": "バッジ (ラベル) コンポーネント。カテゴリやステータスの表示に使用。@lism-css/uiパッケージで提供。"
|
|
483
502
|
},
|
|
484
503
|
{
|
|
485
504
|
"sourcePath": "ui/Avatar.mdx",
|
|
486
505
|
"title": "Avatar",
|
|
487
|
-
"description": "Avatar
|
|
506
|
+
"description": "@lism-css/ui で提供する Avatar コンポーネントについて解説します。",
|
|
488
507
|
"category": "ui",
|
|
489
|
-
"headings": [],
|
|
508
|
+
"headings": ["How to use", "Examples", "Only lism-css"],
|
|
490
509
|
"keywords": ["Avatar", "アバター", "プロフィール", "画像", "丸"],
|
|
491
|
-
"snippet": "
|
|
510
|
+
"snippet": "アバター画像用のコンポーネント。円形の画像表示に使用。@lism-css/uiパッケージで提供。"
|
|
492
511
|
},
|
|
493
512
|
{
|
|
494
513
|
"sourcePath": "ui/Chat.mdx",
|
|
495
514
|
"title": "Chat",
|
|
496
515
|
"description": "Chat UIコンポーネントの解説。",
|
|
497
516
|
"category": "ui",
|
|
498
|
-
"headings": [],
|
|
517
|
+
"headings": ["How to use", "Examples", "Opt-in"],
|
|
499
518
|
"keywords": ["Chat", "チャット", "吹き出し", "会話", "balloon"],
|
|
500
|
-
"snippet": "チャット風の吹き出しコンポーネント。会話形式のUI
|
|
519
|
+
"snippet": "チャット風の吹き出しコンポーネント。会話形式のUI表現に使用。@lism-css/uiパッケージで提供。"
|
|
501
520
|
},
|
|
502
521
|
{
|
|
503
522
|
"sourcePath": "ui/NavMenu.mdx",
|
|
504
523
|
"title": "NavMenu",
|
|
505
524
|
"description": "NavMenu UIコンポーネントの解説。",
|
|
506
525
|
"category": "ui",
|
|
507
|
-
"headings": [],
|
|
526
|
+
"headings": ["How to use", "Examples"],
|
|
508
527
|
"keywords": ["NavMenu", "ナビ", "メニュー", "navigation", "リンク"],
|
|
509
|
-
"snippet": "
|
|
528
|
+
"snippet": "ナビゲーションメニュー。リンクリストの表示に使用。@lism-css/uiパッケージで提供。"
|
|
510
529
|
},
|
|
511
530
|
{
|
|
512
531
|
"sourcePath": "ui/ShapeDivider.mdx",
|
|
513
532
|
"title": "ShapeDivider",
|
|
514
533
|
"description": "ShapeDivider UIコンポーネントの解説。",
|
|
515
534
|
"category": "ui",
|
|
516
|
-
"headings": [],
|
|
535
|
+
"headings": ["How to use", "Examples"],
|
|
517
536
|
"keywords": ["ShapeDivider", "波", "wave", "区切り", "SVG", "セクション"],
|
|
518
|
-
"snippet": "セクション間の波型などの装飾的な区切り要素。SVG
|
|
537
|
+
"snippet": "セクション間の波型などの装飾的な区切り要素。SVGベースの形状で区切りを表現。@lism-css/uiパッケージで提供。"
|
|
519
538
|
},
|
|
520
539
|
{
|
|
521
540
|
"sourcePath": "ui/examples/Card.mdx",
|
|
522
541
|
"title": "Card",
|
|
523
542
|
"description": "Card の実装例。",
|
|
524
543
|
"category": "ui",
|
|
525
|
-
"headings": [],
|
|
544
|
+
"headings": ["Examples"],
|
|
526
545
|
"keywords": ["Card", "カード", "example", "実装例"],
|
|
527
546
|
"snippet": "Lism CSS を使ったカードレイアウトの実装例。"
|
|
528
547
|
},
|
|
529
|
-
{
|
|
530
|
-
"sourcePath": "ui/examples/BalloonBox.mdx",
|
|
531
|
-
"title": "BalloonBox",
|
|
532
|
-
"description": "BalloonBox の実装例。",
|
|
533
|
-
"category": "ui",
|
|
534
|
-
"headings": [],
|
|
535
|
-
"keywords": ["BalloonBox", "吹き出し", "balloon", "example"],
|
|
536
|
-
"snippet": "吹き出しボックスの実装例。"
|
|
537
|
-
},
|
|
538
548
|
{
|
|
539
549
|
"sourcePath": "ui/examples/Banner.mdx",
|
|
540
550
|
"title": "Banner",
|
|
541
551
|
"description": "Banner の実装例。",
|
|
542
552
|
"category": "ui",
|
|
543
|
-
"headings": [],
|
|
553
|
+
"headings": ["Examples"],
|
|
544
554
|
"keywords": ["Banner", "バナー", "example", "hero"],
|
|
545
555
|
"snippet": "バナーの実装例。"
|
|
546
556
|
},
|
|
@@ -549,7 +559,7 @@
|
|
|
549
559
|
"title": "Hero",
|
|
550
560
|
"description": "Hero セクションの実装例。",
|
|
551
561
|
"category": "ui",
|
|
552
|
-
"headings": [],
|
|
562
|
+
"headings": ["Examples", "別ページで確認する"],
|
|
553
563
|
"keywords": ["Hero", "ヒーロー", "メインビジュアル", "example"],
|
|
554
564
|
"snippet": "ヒーローセクション(メインビジュアル)の実装例。"
|
|
555
565
|
},
|
|
@@ -558,7 +568,7 @@
|
|
|
558
568
|
"title": "FAQ",
|
|
559
569
|
"description": "FAQ の実装例。",
|
|
560
570
|
"category": "ui",
|
|
561
|
-
"headings": [],
|
|
571
|
+
"headings": ["Examples"],
|
|
562
572
|
"keywords": ["FAQ", "よくある質問", "example", "accordion"],
|
|
563
573
|
"snippet": "FAQ(よくある質問)セクションの実装例。"
|
|
564
574
|
},
|
|
@@ -567,7 +577,7 @@
|
|
|
567
577
|
"title": "Steps",
|
|
568
578
|
"description": "Steps の実装例。",
|
|
569
579
|
"category": "ui",
|
|
570
|
-
"headings": [],
|
|
580
|
+
"headings": ["Examples"],
|
|
571
581
|
"keywords": ["Steps", "ステップ", "手順", "example"],
|
|
572
582
|
"snippet": "ステップ(手順)表示の実装例。"
|
|
573
583
|
},
|
|
@@ -576,43 +586,16 @@
|
|
|
576
586
|
"title": "Timeline",
|
|
577
587
|
"description": "Timeline の実装例。",
|
|
578
588
|
"category": "ui",
|
|
579
|
-
"headings": [],
|
|
589
|
+
"headings": ["Create Component", "Usage"],
|
|
580
590
|
"keywords": ["Timeline", "タイムライン", "年表", "example"],
|
|
581
591
|
"snippet": "タイムライン表示の実装例。"
|
|
582
592
|
},
|
|
583
|
-
{
|
|
584
|
-
"sourcePath": "ui/examples/Table.mdx",
|
|
585
|
-
"title": "Table",
|
|
586
|
-
"description": "Table の実装例。",
|
|
587
|
-
"category": "ui",
|
|
588
|
-
"headings": [],
|
|
589
|
-
"keywords": ["Table", "テーブル", "表", "example"],
|
|
590
|
-
"snippet": "テーブル(表)の実装例。"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"sourcePath": "ui/examples/List.mdx",
|
|
594
|
-
"title": "List",
|
|
595
|
-
"description": "List の実装例。",
|
|
596
|
-
"category": "ui",
|
|
597
|
-
"headings": [],
|
|
598
|
-
"keywords": ["List", "リスト", "一覧", "example"],
|
|
599
|
-
"snippet": "リスト表示の実装例。"
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"sourcePath": "ui/examples/Decorations.mdx",
|
|
603
|
-
"title": "Decorations",
|
|
604
|
-
"description": "装飾の実装例。",
|
|
605
|
-
"category": "ui",
|
|
606
|
-
"headings": [],
|
|
607
|
-
"keywords": ["Decorations", "装飾", "デコレーション", "example"],
|
|
608
|
-
"snippet": "様々な装飾パターンの実装例。"
|
|
609
|
-
},
|
|
610
593
|
{
|
|
611
594
|
"sourcePath": "ui/examples/Breadcrumb.mdx",
|
|
612
595
|
"title": "Breadcrumb",
|
|
613
596
|
"description": "Breadcrumb の実装例。",
|
|
614
597
|
"category": "ui",
|
|
615
|
-
"headings": [],
|
|
598
|
+
"headings": ["Examples"],
|
|
616
599
|
"keywords": ["Breadcrumb", "パンくず", "ナビゲーション", "example"],
|
|
617
600
|
"snippet": "パンくずリストの実装例。"
|
|
618
601
|
},
|
|
@@ -621,7 +604,7 @@
|
|
|
621
604
|
"title": "DividerLabel",
|
|
622
605
|
"description": "DividerLabel の実装例。",
|
|
623
606
|
"category": "ui",
|
|
624
|
-
"headings": [],
|
|
607
|
+
"headings": ["Examples"],
|
|
625
608
|
"keywords": ["DividerLabel", "区切り", "ラベル", "example"],
|
|
626
609
|
"snippet": "ラベル付き区切り線の実装例。"
|
|
627
610
|
},
|
|
@@ -630,17 +613,8 @@
|
|
|
630
613
|
"title": "Reel",
|
|
631
614
|
"description": "Reel (横スクロール) の実装例。",
|
|
632
615
|
"category": "ui",
|
|
633
|
-
"headings": [],
|
|
616
|
+
"headings": ["Flex で実装する例", "Gridで実装する例", "ナビゲーションをつける", "大きい画面サイズでReelを解除する", "縦向きのリール"],
|
|
634
617
|
"keywords": ["Reel", "横スクロール", "scroll", "carousel", "example"],
|
|
635
|
-
"snippet": "横スクロール(リール)レイアウトの実装例。"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"sourcePath": "ui/examples/Others.mdx",
|
|
639
|
-
"title": "その他の実装例",
|
|
640
|
-
"description": "その他のUI実装例。",
|
|
641
|
-
"category": "ui",
|
|
642
|
-
"headings": [],
|
|
643
|
-
"keywords": ["others", "その他", "example", "実装例"],
|
|
644
|
-
"snippet": "その他のUI実装パターンの例。"
|
|
618
|
+
"snippet": "横スクロール(リール)レイアウトの実装例。Flex/Grid両方の実装パターンを紹介。"
|
|
645
619
|
}
|
|
646
620
|
]
|