@letsprogram/ng-oat-mcp 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/README.md +177 -0
- package/dist/data/components.d.ts +30 -0
- package/dist/data/components.d.ts.map +1 -0
- package/dist/data/components.js +647 -0
- package/dist/data/components.js.map +1 -0
- package/dist/data/recipes.d.ts +17 -0
- package/dist/data/recipes.d.ts.map +1 -0
- package/dist/data/recipes.js +245 -0
- package/dist/data/recipes.js.map +1 -0
- package/dist/data/setup.d.ts +13 -0
- package/dist/data/setup.d.ts.map +1 -0
- package/dist/data/setup.js +132 -0
- package/dist/data/setup.js.map +1 -0
- package/dist/data/theming.d.ts +14 -0
- package/dist/data/theming.d.ts.map +1 -0
- package/dist/data/theming.js +228 -0
- package/dist/data/theming.js.map +1 -0
- package/dist/data/tokens.d.ts +17 -0
- package/dist/data/tokens.d.ts.map +1 -0
- package/dist/data/tokens.js +93 -0
- package/dist/data/tokens.js.map +1 -0
- package/dist/data/utilities.d.ts +20 -0
- package/dist/data/utilities.d.ts.map +1 -0
- package/dist/data/utilities.js +557 -0
- package/dist/data/utilities.js.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +502 -0
- package/dist/index.js.map +1 -0
- package/package.json +41 -0
|
@@ -0,0 +1,557 @@
|
|
|
1
|
+
export const UTILITIES = [
|
|
2
|
+
// ── Text ──────────────────────────────────────────────────────────
|
|
3
|
+
{
|
|
4
|
+
category: 'text-alignment',
|
|
5
|
+
classes: [
|
|
6
|
+
{ name: 'align-left', description: 'text-align: start' },
|
|
7
|
+
{ name: 'align-center', description: 'text-align: center' },
|
|
8
|
+
{ name: 'align-right', description: 'text-align: end' },
|
|
9
|
+
{ name: 'text-left', description: 'text-align: start' },
|
|
10
|
+
{ name: 'text-center', description: 'text-align: center' },
|
|
11
|
+
{ name: 'text-right', description: 'text-align: end' },
|
|
12
|
+
],
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
category: 'text-color',
|
|
16
|
+
classes: [
|
|
17
|
+
{ name: 'text-light', description: 'color: var(--muted-foreground)' },
|
|
18
|
+
{ name: 'text-lighter', description: 'color: var(--faint-foreground)' },
|
|
19
|
+
{ name: 'text-danger', description: 'color: var(--danger)' },
|
|
20
|
+
{ name: 'text-success', description: 'color: var(--success)' },
|
|
21
|
+
{ name: 'text-warning', description: 'color: var(--warning)' },
|
|
22
|
+
{ name: 'text-primary', description: 'color: var(--primary)' },
|
|
23
|
+
{ name: 'text-muted', description: 'color: var(--muted-foreground)' },
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
category: 'text-size',
|
|
28
|
+
classes: [
|
|
29
|
+
{ name: 'text-1', description: 'font-size: var(--text-1) — largest' },
|
|
30
|
+
{ name: 'text-2', description: 'font-size: var(--text-2)' },
|
|
31
|
+
{ name: 'text-3', description: 'font-size: var(--text-3)' },
|
|
32
|
+
{ name: 'text-4', description: 'font-size: var(--text-4)' },
|
|
33
|
+
{ name: 'text-5', description: 'font-size: var(--text-5)' },
|
|
34
|
+
{ name: 'text-6', description: 'font-size: var(--text-6)' },
|
|
35
|
+
{ name: 'text-7', description: 'font-size: var(--text-7)' },
|
|
36
|
+
{ name: 'text-8', description: 'font-size: var(--text-8) — smallest' },
|
|
37
|
+
{ name: 'text-sm', description: 'font-size: var(--text-7) — alias for text-7' },
|
|
38
|
+
{ name: 'text-xs', description: 'font-size: var(--text-8) — alias for text-8' },
|
|
39
|
+
{ name: 'text-regular', description: 'font-size: var(--text-regular)' },
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
category: 'font',
|
|
44
|
+
classes: [
|
|
45
|
+
{ name: 'font-normal', description: 'font-weight: var(--font-normal)' },
|
|
46
|
+
{ name: 'font-medium', description: 'font-weight: var(--font-medium)' },
|
|
47
|
+
{ name: 'font-semibold', description: 'font-weight: var(--font-semibold)' },
|
|
48
|
+
{ name: 'font-bold', description: 'font-weight: var(--font-bold)' },
|
|
49
|
+
{ name: 'font-sans', description: 'font-family: var(--font-sans)' },
|
|
50
|
+
{ name: 'font-mono', description: 'font-family: var(--font-mono)' },
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
category: 'line-height',
|
|
55
|
+
classes: [
|
|
56
|
+
{ name: 'leading-none', description: 'line-height: var(--leading-none)' },
|
|
57
|
+
{ name: 'leading-tight', description: 'line-height: var(--leading-tight)' },
|
|
58
|
+
{ name: 'leading-snug', description: 'line-height: var(--leading-snug)' },
|
|
59
|
+
{ name: 'leading-normal', description: 'line-height: var(--leading-normal)' },
|
|
60
|
+
{ name: 'leading-relaxed', description: 'line-height: var(--leading-relaxed)' },
|
|
61
|
+
{ name: 'leading-loose', description: 'line-height: var(--leading-loose)' },
|
|
62
|
+
],
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
category: 'letter-spacing',
|
|
66
|
+
classes: [
|
|
67
|
+
{ name: 'tracking-tighter', description: 'letter-spacing: var(--tracking-tighter)' },
|
|
68
|
+
{ name: 'tracking-tight', description: 'letter-spacing: var(--tracking-tight)' },
|
|
69
|
+
{ name: 'tracking-normal', description: 'letter-spacing: var(--tracking-normal)' },
|
|
70
|
+
{ name: 'tracking-wide', description: 'letter-spacing: var(--tracking-wide)' },
|
|
71
|
+
{ name: 'tracking-wider', description: 'letter-spacing: var(--tracking-wider)' },
|
|
72
|
+
{ name: 'tracking-widest', description: 'letter-spacing: var(--tracking-widest)' },
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
category: 'text-transform',
|
|
77
|
+
classes: [
|
|
78
|
+
{ name: 'uppercase', description: 'text-transform: uppercase' },
|
|
79
|
+
{ name: 'lowercase', description: 'text-transform: lowercase' },
|
|
80
|
+
{ name: 'capitalize', description: 'text-transform: capitalize' },
|
|
81
|
+
{ name: 'normal-case', description: 'text-transform: none' },
|
|
82
|
+
],
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
category: 'text-decoration',
|
|
86
|
+
classes: [
|
|
87
|
+
{ name: 'underline', description: 'text-decoration-line: underline' },
|
|
88
|
+
{ name: 'overline', description: 'text-decoration-line: overline' },
|
|
89
|
+
{ name: 'line-through', description: 'text-decoration-line: line-through' },
|
|
90
|
+
{ name: 'no-underline', description: 'text-decoration-line: none' },
|
|
91
|
+
],
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
category: 'text-wrap',
|
|
95
|
+
classes: [
|
|
96
|
+
{ name: 'text-balance', description: 'text-wrap: balance' },
|
|
97
|
+
{ name: 'text-pretty', description: 'text-wrap: pretty' },
|
|
98
|
+
{ name: 'text-nowrap', description: 'text-wrap: nowrap' },
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
category: 'whitespace',
|
|
103
|
+
classes: [
|
|
104
|
+
{ name: 'whitespace-normal', description: 'white-space: normal' },
|
|
105
|
+
{ name: 'whitespace-nowrap', description: 'white-space: nowrap' },
|
|
106
|
+
{ name: 'whitespace-pre', description: 'white-space: pre' },
|
|
107
|
+
{ name: 'whitespace-pre-line', description: 'white-space: pre-line' },
|
|
108
|
+
{ name: 'whitespace-pre-wrap', description: 'white-space: pre-wrap' },
|
|
109
|
+
],
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
category: 'line-clamp',
|
|
113
|
+
classes: [
|
|
114
|
+
{ name: 'line-clamp-1', description: 'Clamp text to 1 line with overflow hidden' },
|
|
115
|
+
{ name: 'line-clamp-2', description: 'Clamp text to 2 lines with overflow hidden' },
|
|
116
|
+
{ name: 'line-clamp-3', description: 'Clamp text to 3 lines with overflow hidden' },
|
|
117
|
+
{ name: 'line-clamp-4', description: 'Clamp text to 4 lines with overflow hidden' },
|
|
118
|
+
{ name: 'line-clamp-none', description: 'Remove line clamp, display: block' },
|
|
119
|
+
],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
category: 'word-break',
|
|
123
|
+
classes: [
|
|
124
|
+
{ name: 'break-normal', description: 'overflow-wrap: normal; word-break: normal' },
|
|
125
|
+
{ name: 'break-words', description: 'overflow-wrap: break-word' },
|
|
126
|
+
{ name: 'break-all', description: 'word-break: break-all' },
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
// ── Layout / Flexbox ──────────────────────────────────────────────
|
|
130
|
+
{
|
|
131
|
+
category: 'flexbox',
|
|
132
|
+
classes: [
|
|
133
|
+
{ name: 'flex', description: 'display: flex', example: 'class="flex gap-4"' },
|
|
134
|
+
{ name: 'flex-col', description: 'flex-direction: column' },
|
|
135
|
+
{ name: 'flex-row', description: 'flex-direction: row' },
|
|
136
|
+
{ name: 'flex-wrap', description: 'flex-wrap: wrap' },
|
|
137
|
+
{ name: 'flex-nowrap', description: 'flex-wrap: nowrap' },
|
|
138
|
+
{ name: 'flex-1', description: 'flex: 1' },
|
|
139
|
+
{ name: 'flex-none', description: 'flex: none' },
|
|
140
|
+
{ name: 'flex-shrink-0', description: 'flex-shrink: 0' },
|
|
141
|
+
{ name: 'flex-grow', description: 'flex-grow: 1' },
|
|
142
|
+
{ name: 'flex-grow-0', description: 'flex-grow: 0' },
|
|
143
|
+
{ name: 'items-center', description: 'align-items: center' },
|
|
144
|
+
{ name: 'items-start', description: 'align-items: flex-start' },
|
|
145
|
+
{ name: 'items-end', description: 'align-items: flex-end' },
|
|
146
|
+
{ name: 'justify-center', description: 'justify-content: center' },
|
|
147
|
+
{ name: 'justify-between', description: 'justify-content: space-between' },
|
|
148
|
+
{ name: 'justify-end', description: 'justify-content: flex-end' },
|
|
149
|
+
{ name: 'justify-start', description: 'justify-content: flex-start' },
|
|
150
|
+
{ name: 'self-auto', description: 'align-self: auto' },
|
|
151
|
+
{ name: 'self-start', description: 'align-self: flex-start' },
|
|
152
|
+
{ name: 'self-center', description: 'align-self: center' },
|
|
153
|
+
{ name: 'self-end', description: 'align-self: flex-end' },
|
|
154
|
+
{ name: 'self-stretch', description: 'align-self: stretch' },
|
|
155
|
+
{ name: 'order-first', description: 'order: -9999' },
|
|
156
|
+
{ name: 'order-last', description: 'order: 9999' },
|
|
157
|
+
{ name: 'order-none', description: 'order: 0' },
|
|
158
|
+
],
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
category: 'stacks',
|
|
162
|
+
classes: [
|
|
163
|
+
{ name: 'hstack', description: 'display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap', example: 'class="hstack"' },
|
|
164
|
+
{ name: 'vstack', description: 'display: flex; flex-direction: column; gap: var(--space-3)', example: 'class="vstack"' },
|
|
165
|
+
],
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
category: 'center',
|
|
169
|
+
classes: [
|
|
170
|
+
{ name: 'center', description: 'display: flex; align-items: center; justify-content: center', example: 'class="center h-screen"' },
|
|
171
|
+
{ name: 'place-center', description: 'display: grid; place-items: center' },
|
|
172
|
+
],
|
|
173
|
+
},
|
|
174
|
+
// ── Grid ──────────────────────────────────────────────────────────
|
|
175
|
+
{
|
|
176
|
+
category: 'grid',
|
|
177
|
+
classes: [
|
|
178
|
+
{ name: 'grid-cols-1', description: 'grid-template-columns: repeat(1, minmax(0, 1fr))' },
|
|
179
|
+
{ name: 'grid-cols-2', description: 'grid-template-columns: repeat(2, minmax(0, 1fr))' },
|
|
180
|
+
{ name: 'grid-cols-3', description: 'grid-template-columns: repeat(3, minmax(0, 1fr))' },
|
|
181
|
+
{ name: 'grid-cols-4', description: 'grid-template-columns: repeat(4, minmax(0, 1fr))' },
|
|
182
|
+
{ name: 'grid-cols-6', description: 'grid-template-columns: repeat(6, minmax(0, 1fr))' },
|
|
183
|
+
{ name: 'grid-cols-12', description: 'grid-template-columns: repeat(12, minmax(0, 1fr))' },
|
|
184
|
+
{ name: 'col-span-1', description: 'grid-column: span 1 / span 1' },
|
|
185
|
+
{ name: 'col-span-2', description: 'grid-column: span 2 / span 2' },
|
|
186
|
+
{ name: 'col-span-3', description: 'grid-column: span 3 / span 3' },
|
|
187
|
+
{ name: 'col-span-4', description: 'grid-column: span 4 / span 4' },
|
|
188
|
+
{ name: 'col-span-6', description: 'grid-column: span 6 / span 6' },
|
|
189
|
+
{ name: 'col-span-full', description: 'grid-column: 1 / -1' },
|
|
190
|
+
{ name: 'place-items-center', description: 'place-items: center' },
|
|
191
|
+
{ name: 'place-content-center', description: 'place-content: center' },
|
|
192
|
+
],
|
|
193
|
+
},
|
|
194
|
+
// ── Gap ───────────────────────────────────────────────────────────
|
|
195
|
+
{
|
|
196
|
+
category: 'gap',
|
|
197
|
+
classes: [
|
|
198
|
+
{ name: 'gap-1', description: 'gap: var(--space-1)' },
|
|
199
|
+
{ name: 'gap-2', description: 'gap: var(--space-2)' },
|
|
200
|
+
{ name: 'gap-3', description: 'gap: var(--space-3)' },
|
|
201
|
+
{ name: 'gap-4', description: 'gap: var(--space-4)' },
|
|
202
|
+
{ name: 'gap-6', description: 'gap: var(--space-6)' },
|
|
203
|
+
{ name: 'gap-8', description: 'gap: var(--space-8)' },
|
|
204
|
+
{ name: 'gap-x-{n}', description: 'column-gap: var(--space-{n}) — n: 1,2,3,4,6,8', example: 'gap-x-4' },
|
|
205
|
+
{ name: 'gap-y-{n}', description: 'row-gap: var(--space-{n}) — n: 1,2,3,4,6,8', example: 'gap-y-2' },
|
|
206
|
+
],
|
|
207
|
+
},
|
|
208
|
+
// ── Space Between Children ────────────────────────────────────────
|
|
209
|
+
{
|
|
210
|
+
category: 'space-between',
|
|
211
|
+
classes: [
|
|
212
|
+
{ name: 'space-x-{n}', description: 'margin-inline-start on >*+* — horizontal child spacing. n: 1,2,3,4,6,8', example: 'class="flex space-x-4"' },
|
|
213
|
+
{ name: 'space-y-{n}', description: 'margin-block-start on >*+* — vertical child spacing. n: 1,2,3,4,6,8', example: 'class="vstack space-y-2"' },
|
|
214
|
+
],
|
|
215
|
+
},
|
|
216
|
+
// ── Margin ────────────────────────────────────────────────────────
|
|
217
|
+
{
|
|
218
|
+
category: 'margin',
|
|
219
|
+
classes: [
|
|
220
|
+
{ name: 'm-{n}', description: 'margin: var(--space-{n}). n: 0,1,2,3,4,6,8 or auto', example: 'm-4' },
|
|
221
|
+
{ name: 'mx-{n}', description: 'margin-inline: var(--space-{n}). n: 0,1,2,3,4,6,8 or auto', example: 'mx-auto' },
|
|
222
|
+
{ name: 'my-{n}', description: 'margin-block: var(--space-{n}). n: 0,1,2,3,4,6,8 or auto', example: 'my-4' },
|
|
223
|
+
{ name: 'mt-{n}', description: 'margin-block-start: var(--space-{n}). n: 0,1,2,3,4,5,6,8,10,12 or auto', example: 'mt-4' },
|
|
224
|
+
{ name: 'mb-{n}', description: 'margin-block-end: var(--space-{n}). n: 0,1,2,3,4,5,6,8,10,12 or auto', example: 'mb-2' },
|
|
225
|
+
{ name: 'ml-{n}', description: 'margin-inline-start: var(--space-{n}). n: 0,1,2,3,4,6,8 or auto', example: 'ml-4' },
|
|
226
|
+
{ name: 'mr-{n}', description: 'margin-inline-end: var(--space-{n}). n: 0,1,2,3,4,6,8 or auto', example: 'mr-auto' },
|
|
227
|
+
],
|
|
228
|
+
},
|
|
229
|
+
// ── Padding ───────────────────────────────────────────────────────
|
|
230
|
+
{
|
|
231
|
+
category: 'padding',
|
|
232
|
+
classes: [
|
|
233
|
+
{ name: 'p-{n}', description: 'padding: var(--space-{n}). n: 0,1,2,3,4,5,6,8,10,12', example: 'p-4' },
|
|
234
|
+
{ name: 'px-{n}', description: 'padding-inline: var(--space-{n}). n: 0,1,2,3,4,6,8', example: 'px-4' },
|
|
235
|
+
{ name: 'py-{n}', description: 'padding-block: var(--space-{n}). n: 0,1,2,3,4,6,8', example: 'py-2' },
|
|
236
|
+
{ name: 'pt-{n}', description: 'padding-block-start: var(--space-{n}). n: 0,1,2,3,4,6,8', example: 'pt-4' },
|
|
237
|
+
{ name: 'pb-{n}', description: 'padding-block-end: var(--space-{n}). n: 0,1,2,3,4,6,8', example: 'pb-4' },
|
|
238
|
+
{ name: 'pl-{n}', description: 'padding-inline-start: var(--space-{n}). n: 0,1,2,3,4,6,8', example: 'pl-4' },
|
|
239
|
+
{ name: 'pr-{n}', description: 'padding-inline-end: var(--space-{n}). n: 0,1,2,3,4,6,8', example: 'pr-4' },
|
|
240
|
+
],
|
|
241
|
+
},
|
|
242
|
+
// ── Width ─────────────────────────────────────────────────────────
|
|
243
|
+
{
|
|
244
|
+
category: 'width',
|
|
245
|
+
classes: [
|
|
246
|
+
{ name: 'w-full', description: 'width: 100%' },
|
|
247
|
+
{ name: 'w-screen', description: 'width: 100vw' },
|
|
248
|
+
{ name: 'w-auto', description: 'width: auto' },
|
|
249
|
+
{ name: 'w-fit', description: 'width: fit-content' },
|
|
250
|
+
{ name: 'w-100', description: 'width: 100%' },
|
|
251
|
+
{ name: 'w-1/2', description: 'width: 50%' },
|
|
252
|
+
{ name: 'w-1/3', description: 'width: 33.333333%' },
|
|
253
|
+
{ name: 'w-2/3', description: 'width: 66.666667%' },
|
|
254
|
+
{ name: 'w-1/4', description: 'width: 25%' },
|
|
255
|
+
{ name: 'w-3/4', description: 'width: 75%' },
|
|
256
|
+
{ name: 'min-w-0', description: 'min-width: 0' },
|
|
257
|
+
{ name: 'min-w-full', description: 'min-width: 100%' },
|
|
258
|
+
{ name: 'max-w-none', description: 'max-width: none' },
|
|
259
|
+
{ name: 'max-w-full', description: 'max-width: 100%' },
|
|
260
|
+
{ name: 'max-w-screen', description: 'max-width: 100vw' },
|
|
261
|
+
{ name: 'max-w-sm', description: 'max-width: 24rem' },
|
|
262
|
+
{ name: 'max-w-md', description: 'max-width: 28rem' },
|
|
263
|
+
{ name: 'max-w-lg', description: 'max-width: 32rem' },
|
|
264
|
+
{ name: 'max-w-xl', description: 'max-width: 36rem' },
|
|
265
|
+
{ name: 'max-w-2xl', description: 'max-width: 42rem' },
|
|
266
|
+
{ name: 'max-w-3xl', description: 'max-width: 48rem' },
|
|
267
|
+
{ name: 'max-w-4xl', description: 'max-width: 56rem' },
|
|
268
|
+
{ name: 'max-w-5xl', description: 'max-width: 64rem' },
|
|
269
|
+
{ name: 'max-w-6xl', description: 'max-width: 72rem' },
|
|
270
|
+
{ name: 'max-w-7xl', description: 'max-width: 80rem' },
|
|
271
|
+
],
|
|
272
|
+
},
|
|
273
|
+
// ── Height ────────────────────────────────────────────────────────
|
|
274
|
+
{
|
|
275
|
+
category: 'height',
|
|
276
|
+
classes: [
|
|
277
|
+
{ name: 'h-auto', description: 'height: auto' },
|
|
278
|
+
{ name: 'h-full', description: 'height: 100%' },
|
|
279
|
+
{ name: 'h-screen', description: 'height: 100vh' },
|
|
280
|
+
{ name: 'h-fit', description: 'height: fit-content' },
|
|
281
|
+
{ name: 'min-h-0', description: 'min-height: 0' },
|
|
282
|
+
{ name: 'min-h-full', description: 'min-height: 100%' },
|
|
283
|
+
{ name: 'min-h-screen', description: 'min-height: 100vh' },
|
|
284
|
+
{ name: 'max-h-full', description: 'max-height: 100%' },
|
|
285
|
+
{ name: 'max-h-screen', description: 'max-height: 100vh' },
|
|
286
|
+
],
|
|
287
|
+
},
|
|
288
|
+
// ── Display ───────────────────────────────────────────────────────
|
|
289
|
+
{
|
|
290
|
+
category: 'display',
|
|
291
|
+
classes: [
|
|
292
|
+
{ name: 'd-none', description: 'display: none' },
|
|
293
|
+
{ name: 'd-block', description: 'display: block' },
|
|
294
|
+
{ name: 'd-flex', description: 'display: flex' },
|
|
295
|
+
{ name: 'd-grid', description: 'display: grid' },
|
|
296
|
+
{ name: 'd-inline', description: 'display: inline' },
|
|
297
|
+
{ name: 'd-inline-block', description: 'display: inline-block' },
|
|
298
|
+
{ name: 'd-inline-flex', description: 'display: inline-flex' },
|
|
299
|
+
],
|
|
300
|
+
},
|
|
301
|
+
// ── Overflow ──────────────────────────────────────────────────────
|
|
302
|
+
{
|
|
303
|
+
category: 'overflow',
|
|
304
|
+
classes: [
|
|
305
|
+
{ name: 'overflow-auto', description: 'overflow: auto' },
|
|
306
|
+
{ name: 'overflow-hidden', description: 'overflow: hidden' },
|
|
307
|
+
{ name: 'overflow-x-auto', description: 'overflow-x: auto' },
|
|
308
|
+
],
|
|
309
|
+
},
|
|
310
|
+
// ── Position ──────────────────────────────────────────────────────
|
|
311
|
+
{
|
|
312
|
+
category: 'position',
|
|
313
|
+
classes: [
|
|
314
|
+
{ name: 'relative', description: 'position: relative' },
|
|
315
|
+
{ name: 'absolute', description: 'position: absolute' },
|
|
316
|
+
{ name: 'fixed', description: 'position: fixed' },
|
|
317
|
+
{ name: 'sticky', description: 'position: sticky' },
|
|
318
|
+
{ name: 'static', description: 'position: static' },
|
|
319
|
+
{ name: 'inset-0', description: 'inset: 0' },
|
|
320
|
+
{ name: 'inset-x-0', description: 'inset-inline: 0' },
|
|
321
|
+
{ name: 'inset-y-0', description: 'inset-block: 0' },
|
|
322
|
+
{ name: 'top-0', description: 'top: 0' },
|
|
323
|
+
{ name: 'right-0', description: 'right: 0' },
|
|
324
|
+
{ name: 'bottom-0', description: 'bottom: 0' },
|
|
325
|
+
{ name: 'left-0', description: 'left: 0' },
|
|
326
|
+
],
|
|
327
|
+
},
|
|
328
|
+
// ── Border ────────────────────────────────────────────────────────
|
|
329
|
+
{
|
|
330
|
+
category: 'border',
|
|
331
|
+
classes: [
|
|
332
|
+
{ name: 'border', description: 'border: 1px solid var(--border)' },
|
|
333
|
+
{ name: 'border-0', description: 'border: 0' },
|
|
334
|
+
{ name: 'border-t', description: 'border-top: 1px solid var(--border)' },
|
|
335
|
+
{ name: 'border-b', description: 'border-bottom: 1px solid var(--border)' },
|
|
336
|
+
{ name: 'border-l', description: 'border-left: 1px solid var(--border)' },
|
|
337
|
+
{ name: 'border-r', description: 'border-right: 1px solid var(--border)' },
|
|
338
|
+
],
|
|
339
|
+
},
|
|
340
|
+
// ── Border Radius ─────────────────────────────────────────────────
|
|
341
|
+
{
|
|
342
|
+
category: 'border-radius',
|
|
343
|
+
classes: [
|
|
344
|
+
{ name: 'rounded-none', description: 'border-radius: 0' },
|
|
345
|
+
{ name: 'rounded-sm', description: 'border-radius: var(--radius-small)' },
|
|
346
|
+
{ name: 'rounded', description: 'border-radius: var(--radius-medium)' },
|
|
347
|
+
{ name: 'rounded-md', description: 'border-radius: var(--radius-medium) — alias' },
|
|
348
|
+
{ name: 'rounded-lg', description: 'border-radius: var(--radius-large)' },
|
|
349
|
+
{ name: 'rounded-full', description: 'border-radius: var(--radius-full) — pill/circle' },
|
|
350
|
+
],
|
|
351
|
+
},
|
|
352
|
+
// ── Background ────────────────────────────────────────────────────
|
|
353
|
+
{
|
|
354
|
+
category: 'background',
|
|
355
|
+
classes: [
|
|
356
|
+
{ name: 'bg-background', description: 'background-color: var(--background)' },
|
|
357
|
+
{ name: 'bg-card', description: 'background-color: var(--card)' },
|
|
358
|
+
{ name: 'bg-muted', description: 'background-color: var(--muted)' },
|
|
359
|
+
{ name: 'bg-primary', description: 'background-color: var(--primary)' },
|
|
360
|
+
{ name: 'bg-secondary', description: 'background-color: var(--secondary)' },
|
|
361
|
+
{ name: 'bg-accent', description: 'background-color: var(--accent)' },
|
|
362
|
+
{ name: 'bg-danger', description: 'background-color: var(--danger)' },
|
|
363
|
+
{ name: 'bg-success', description: 'background-color: var(--success)' },
|
|
364
|
+
{ name: 'bg-warning', description: 'background-color: var(--warning)' },
|
|
365
|
+
{ name: 'bg-transparent', description: 'background-color: transparent' },
|
|
366
|
+
],
|
|
367
|
+
},
|
|
368
|
+
// ── Shadow ────────────────────────────────────────────────────────
|
|
369
|
+
{
|
|
370
|
+
category: 'shadow',
|
|
371
|
+
classes: [
|
|
372
|
+
{ name: 'shadow-none', description: 'box-shadow: none' },
|
|
373
|
+
{ name: 'shadow-sm', description: 'box-shadow: var(--shadow-small)' },
|
|
374
|
+
{ name: 'shadow', description: 'box-shadow: var(--shadow-medium)' },
|
|
375
|
+
{ name: 'shadow-md', description: 'box-shadow: var(--shadow-medium) — alias' },
|
|
376
|
+
{ name: 'shadow-lg', description: 'box-shadow: var(--shadow-large)' },
|
|
377
|
+
],
|
|
378
|
+
},
|
|
379
|
+
// ── Opacity ───────────────────────────────────────────────────────
|
|
380
|
+
{
|
|
381
|
+
category: 'opacity',
|
|
382
|
+
classes: [
|
|
383
|
+
{ name: 'opacity-0', description: 'opacity: 0' },
|
|
384
|
+
{ name: 'opacity-25', description: 'opacity: 0.25' },
|
|
385
|
+
{ name: 'opacity-50', description: 'opacity: 0.5' },
|
|
386
|
+
{ name: 'opacity-75', description: 'opacity: 0.75' },
|
|
387
|
+
{ name: 'opacity-100', description: 'opacity: 1' },
|
|
388
|
+
],
|
|
389
|
+
},
|
|
390
|
+
// ── Cursor ────────────────────────────────────────────────────────
|
|
391
|
+
{
|
|
392
|
+
category: 'cursor',
|
|
393
|
+
classes: [
|
|
394
|
+
{ name: 'cursor-default', description: 'cursor: default' },
|
|
395
|
+
{ name: 'cursor-pointer', description: 'cursor: pointer' },
|
|
396
|
+
{ name: 'cursor-not-allowed', description: 'cursor: not-allowed' },
|
|
397
|
+
{ name: 'cursor-wait', description: 'cursor: wait' },
|
|
398
|
+
{ name: 'cursor-grab', description: 'cursor: grab' },
|
|
399
|
+
],
|
|
400
|
+
},
|
|
401
|
+
// ── Pointer Events ────────────────────────────────────────────────
|
|
402
|
+
{
|
|
403
|
+
category: 'pointer-events',
|
|
404
|
+
classes: [
|
|
405
|
+
{ name: 'pointer-events-none', description: 'pointer-events: none' },
|
|
406
|
+
{ name: 'pointer-events-auto', description: 'pointer-events: auto' },
|
|
407
|
+
],
|
|
408
|
+
},
|
|
409
|
+
// ── User Select ───────────────────────────────────────────────────
|
|
410
|
+
{
|
|
411
|
+
category: 'user-select',
|
|
412
|
+
classes: [
|
|
413
|
+
{ name: 'select-none', description: 'user-select: none' },
|
|
414
|
+
{ name: 'select-all', description: 'user-select: all' },
|
|
415
|
+
{ name: 'select-auto', description: 'user-select: auto' },
|
|
416
|
+
],
|
|
417
|
+
},
|
|
418
|
+
// ── Transitions ───────────────────────────────────────────────────
|
|
419
|
+
{
|
|
420
|
+
category: 'transition',
|
|
421
|
+
classes: [
|
|
422
|
+
{ name: 'transition-none', description: 'transition: none' },
|
|
423
|
+
{ name: 'transition-all', description: 'transition: all var(--transition)' },
|
|
424
|
+
{ name: 'transition', description: 'transition: color, background-color, border-color, box-shadow, opacity, transform var(--transition)' },
|
|
425
|
+
{ name: 'transition-colors', description: 'transition: color, background-color, border-color var(--transition)' },
|
|
426
|
+
{ name: 'transition-opacity', description: 'transition: opacity var(--transition)' },
|
|
427
|
+
{ name: 'transition-transform', description: 'transition: transform var(--transition)' },
|
|
428
|
+
],
|
|
429
|
+
},
|
|
430
|
+
// ── Object Fit ────────────────────────────────────────────────────
|
|
431
|
+
{
|
|
432
|
+
category: 'object-fit',
|
|
433
|
+
classes: [
|
|
434
|
+
{ name: 'object-cover', description: 'object-fit: cover' },
|
|
435
|
+
{ name: 'object-contain', description: 'object-fit: contain' },
|
|
436
|
+
{ name: 'object-fill', description: 'object-fit: fill' },
|
|
437
|
+
{ name: 'object-none', description: 'object-fit: none' },
|
|
438
|
+
],
|
|
439
|
+
},
|
|
440
|
+
// ── Aspect Ratio ──────────────────────────────────────────────────
|
|
441
|
+
{
|
|
442
|
+
category: 'aspect-ratio',
|
|
443
|
+
classes: [
|
|
444
|
+
{ name: 'aspect-auto', description: 'aspect-ratio: auto' },
|
|
445
|
+
{ name: 'aspect-square', description: 'aspect-ratio: 1 / 1' },
|
|
446
|
+
{ name: 'aspect-video', description: 'aspect-ratio: 16 / 9' },
|
|
447
|
+
],
|
|
448
|
+
},
|
|
449
|
+
// ── Visibility ────────────────────────────────────────────────────
|
|
450
|
+
{
|
|
451
|
+
category: 'visibility',
|
|
452
|
+
classes: [
|
|
453
|
+
{ name: 'visible', description: 'visibility: visible' },
|
|
454
|
+
{ name: 'invisible', description: 'visibility: hidden' },
|
|
455
|
+
],
|
|
456
|
+
},
|
|
457
|
+
// ── Z-Index ───────────────────────────────────────────────────────
|
|
458
|
+
{
|
|
459
|
+
category: 'z-index',
|
|
460
|
+
classes: [
|
|
461
|
+
{ name: 'z-0', description: 'z-index: 0' },
|
|
462
|
+
{ name: 'z-10', description: 'z-index: 10' },
|
|
463
|
+
{ name: 'z-20', description: 'z-index: 20' },
|
|
464
|
+
{ name: 'z-30', description: 'z-index: 30' },
|
|
465
|
+
{ name: 'z-40', description: 'z-index: 40' },
|
|
466
|
+
{ name: 'z-50', description: 'z-index: 50' },
|
|
467
|
+
],
|
|
468
|
+
},
|
|
469
|
+
// ── Misc ──────────────────────────────────────────────────────────
|
|
470
|
+
{
|
|
471
|
+
category: 'misc',
|
|
472
|
+
classes: [
|
|
473
|
+
{ name: 'truncate', description: 'overflow: hidden; text-overflow: ellipsis; white-space: nowrap' },
|
|
474
|
+
{ name: 'sr-only', description: 'Screen-reader only — visually hidden but accessible' },
|
|
475
|
+
{ name: 'unstyled', description: 'list-style: none; text-decoration: none; padding: 0' },
|
|
476
|
+
],
|
|
477
|
+
},
|
|
478
|
+
// ── Responsive ────────────────────────────────────────────────────
|
|
479
|
+
{
|
|
480
|
+
category: 'responsive',
|
|
481
|
+
classes: [
|
|
482
|
+
// Breakpoints: sm (≥640px), md (≥768px), lg (≥1024px), xl (≥1280px)
|
|
483
|
+
{ name: 'hide-mobile', description: 'display: none below 640px', example: 'class="hide-mobile"' },
|
|
484
|
+
{ name: 'show-mobile', description: 'display: none at ≥640px (visible only on mobile)', example: 'class="show-mobile"' },
|
|
485
|
+
{ name: '{bp}:d-none', description: 'display: none at breakpoint. bp: sm, md, lg, xl', example: 'sm:d-none' },
|
|
486
|
+
{ name: '{bp}:d-block', description: 'display: block at breakpoint', example: 'md:d-block' },
|
|
487
|
+
{ name: '{bp}:d-flex', description: 'display: flex at breakpoint', example: 'md:d-flex' },
|
|
488
|
+
{ name: '{bp}:d-grid', description: 'display: grid at breakpoint', example: 'lg:d-grid' },
|
|
489
|
+
{ name: '{bp}:d-inline-block', description: 'display: inline-block at breakpoint', example: 'sm:d-inline-block' },
|
|
490
|
+
{ name: '{bp}:d-inline-flex', description: 'display: inline-flex at breakpoint', example: 'sm:d-inline-flex' },
|
|
491
|
+
{ name: '{bp}:flex', description: 'display: flex at breakpoint', example: 'md:flex' },
|
|
492
|
+
{ name: '{bp}:flex-row', description: 'flex-direction: row at breakpoint', example: 'sm:flex-row' },
|
|
493
|
+
{ name: '{bp}:flex-col', description: 'flex-direction: column at breakpoint', example: 'md:flex-col' },
|
|
494
|
+
{ name: '{bp}:flex-wrap', description: 'flex-wrap: wrap at breakpoint', example: 'sm:flex-wrap' },
|
|
495
|
+
{ name: '{bp}:flex-1', description: 'flex: 1 at breakpoint', example: 'md:flex-1' },
|
|
496
|
+
{ name: '{bp}:items-center', description: 'align-items: center at breakpoint', example: 'md:items-center' },
|
|
497
|
+
{ name: '{bp}:items-start', description: 'align-items: flex-start at breakpoint', example: 'sm:items-start' },
|
|
498
|
+
{ name: '{bp}:items-end', description: 'align-items: flex-end at breakpoint', example: 'sm:items-end' },
|
|
499
|
+
{ name: '{bp}:justify-center', description: 'justify-content: center at breakpoint', example: 'md:justify-center' },
|
|
500
|
+
{ name: '{bp}:justify-between', description: 'justify-content: space-between at breakpoint', example: 'md:justify-between' },
|
|
501
|
+
{ name: '{bp}:justify-end', description: 'justify-content: flex-end at breakpoint', example: 'md:justify-end' },
|
|
502
|
+
{ name: '{bp}:justify-start', description: 'justify-content: flex-start at breakpoint', example: 'md:justify-start' },
|
|
503
|
+
{ name: '{bp}:hstack', description: 'hstack at breakpoint', example: 'md:hstack' },
|
|
504
|
+
{ name: '{bp}:vstack', description: 'vstack at breakpoint', example: 'sm:vstack' },
|
|
505
|
+
{ name: '{bp}:center', description: 'center utility at breakpoint', example: 'lg:center' },
|
|
506
|
+
{ name: '{bp}:text-left', description: 'text-align: start at breakpoint', example: 'md:text-left' },
|
|
507
|
+
{ name: '{bp}:text-center', description: 'text-align: center at breakpoint', example: 'md:text-center' },
|
|
508
|
+
{ name: '{bp}:text-right', description: 'text-align: end at breakpoint', example: 'md:text-right' },
|
|
509
|
+
{ name: '{bp}:text-{n}', description: 'font-size at breakpoint. n: 1-8', example: 'lg:text-2' },
|
|
510
|
+
{ name: '{bp}:grid-cols-{n}', description: 'grid columns at breakpoint. n: 1,2,3,4,6', example: 'md:grid-cols-3' },
|
|
511
|
+
{ name: '{bp}:col-span-{n}', description: 'grid column span at breakpoint. n: 1,2,3,full', example: 'md:col-span-2' },
|
|
512
|
+
{ name: '{bp}:gap-{n}', description: 'gap at breakpoint. n: 2,4,6,8', example: 'md:gap-6' },
|
|
513
|
+
{ name: '{bp}:gap-x-{n}', description: 'column-gap at breakpoint. n: 2,4', example: 'md:gap-x-4' },
|
|
514
|
+
{ name: '{bp}:gap-y-{n}', description: 'row-gap at breakpoint. n: 2,4', example: 'md:gap-y-2' },
|
|
515
|
+
{ name: '{bp}:p-{n}', description: 'padding at breakpoint. n: 0,2,4,6,8', example: 'md:p-6' },
|
|
516
|
+
{ name: '{bp}:px-{n}', description: 'padding-inline at breakpoint. n: 0,2,4,6,8', example: 'md:px-6' },
|
|
517
|
+
{ name: '{bp}:py-{n}', description: 'padding-block at breakpoint. n: 0,2,4,6,8', example: 'md:py-4' },
|
|
518
|
+
{ name: '{bp}:pt-{n}', description: 'padding-block-start at breakpoint. n: 0,4,8', example: 'md:pt-4' },
|
|
519
|
+
{ name: '{bp}:pb-{n}', description: 'padding-block-end at breakpoint. n: 0,4,8', example: 'md:pb-4' },
|
|
520
|
+
{ name: '{bp}:m-{n}', description: 'margin at breakpoint. n: 0,4,8', example: 'md:m-4' },
|
|
521
|
+
{ name: '{bp}:mx-{n}', description: 'margin-inline at breakpoint. n: 0,4,auto', example: 'md:mx-auto' },
|
|
522
|
+
{ name: '{bp}:my-{n}', description: 'margin-block at breakpoint. n: 0,4,8', example: 'md:my-4' },
|
|
523
|
+
{ name: '{bp}:mt-{n}', description: 'margin-block-start at breakpoint. n: 0,2,4,6,8', example: 'md:mt-4' },
|
|
524
|
+
{ name: '{bp}:mb-{n}', description: 'margin-block-end at breakpoint. n: 0,2,4,6,8', example: 'md:mb-4' },
|
|
525
|
+
{ name: '{bp}:ml-auto', description: 'margin-inline-start: auto at breakpoint', example: 'md:ml-auto' },
|
|
526
|
+
{ name: '{bp}:mr-auto', description: 'margin-inline-end: auto at breakpoint', example: 'md:mr-auto' },
|
|
527
|
+
{ name: '{bp}:w-full', description: 'width: 100% at breakpoint', example: 'md:w-full' },
|
|
528
|
+
{ name: '{bp}:w-auto', description: 'width: auto at breakpoint', example: 'md:w-auto' },
|
|
529
|
+
{ name: '{bp}:w-1/2', description: 'width: 50% at breakpoint', example: 'md:w-1/2' },
|
|
530
|
+
{ name: '{bp}:w-1/3', description: 'width: 33.3% at breakpoint', example: 'md:w-1/3' },
|
|
531
|
+
{ name: '{bp}:w-2/3', description: 'width: 66.6% at breakpoint', example: 'md:w-2/3' },
|
|
532
|
+
{ name: '{bp}:w-1/4', description: 'width: 25% at breakpoint', example: 'md:w-1/4' },
|
|
533
|
+
{ name: '{bp}:w-3/4', description: 'width: 75% at breakpoint', example: 'md:w-3/4' },
|
|
534
|
+
{ name: '{bp}:h-full', description: 'height: 100% at breakpoint', example: 'md:h-full' },
|
|
535
|
+
{ name: '{bp}:h-screen', description: 'height: 100vh at breakpoint', example: 'md:h-screen' },
|
|
536
|
+
{ name: '{bp}:h-auto', description: 'height: auto at breakpoint', example: 'md:h-auto' },
|
|
537
|
+
{ name: '{bp}:min-h-screen', description: 'min-height: 100vh at breakpoint', example: 'md:min-h-screen' },
|
|
538
|
+
{ name: '{bp}:relative', description: 'position: relative at breakpoint', example: 'md:relative' },
|
|
539
|
+
{ name: '{bp}:absolute', description: 'position: absolute at breakpoint', example: 'md:absolute' },
|
|
540
|
+
{ name: '{bp}:static', description: 'position: static at breakpoint', example: 'md:static' },
|
|
541
|
+
{ name: '{bp}:sticky', description: 'position: sticky at breakpoint', example: 'md:sticky' },
|
|
542
|
+
{ name: '{bp}:space-x-{n}', description: 'horizontal child spacing at breakpoint. n: 2,4', example: 'md:space-x-4' },
|
|
543
|
+
{ name: '{bp}:space-y-{n}', description: 'vertical child spacing at breakpoint. n: 2,4', example: 'md:space-y-2' },
|
|
544
|
+
],
|
|
545
|
+
},
|
|
546
|
+
];
|
|
547
|
+
/** All available utility categories for listing. */
|
|
548
|
+
export const UTILITY_CATEGORIES = UTILITIES.map((u) => u.category);
|
|
549
|
+
/**
|
|
550
|
+
* Get utilities by category, or all.
|
|
551
|
+
*/
|
|
552
|
+
export function getUtilities(category) {
|
|
553
|
+
if (!category)
|
|
554
|
+
return UTILITIES;
|
|
555
|
+
return UTILITIES.filter((u) => u.category.toLowerCase() === category.toLowerCase());
|
|
556
|
+
}
|
|
557
|
+
//# sourceMappingURL=utilities.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utilities.js","sourceRoot":"","sources":["../../src/data/utilities.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* @letsprogram/ng-oat-mcp — MCP server for ng-oat component library.
|
|
4
|
+
*
|
|
5
|
+
* Exposes tools for AI assistants to look up components, tokens, recipes,
|
|
6
|
+
* utilities, theming, setup instructions, and generate correct ng-oat
|
|
7
|
+
* Angular component code.
|
|
8
|
+
*
|
|
9
|
+
* Transport: STDIO (for IDE integration).
|
|
10
|
+
*/
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;;;;GAQG"}
|