@glinui/registry 0.1.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/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1220 -0
- package/package.json +33 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type RegistryItem = {
|
|
2
|
+
name: string;
|
|
3
|
+
namespace: "@glinui";
|
|
4
|
+
type: "primitive" | "signature";
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
docsPath: string;
|
|
8
|
+
importPath: string;
|
|
9
|
+
dependencies: string[];
|
|
10
|
+
files: string[];
|
|
11
|
+
install: {
|
|
12
|
+
package: string;
|
|
13
|
+
registry: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export declare const baseRegistry: RegistryItem[];
|
|
17
|
+
export declare function getRegistryItem(name: string): RegistryItem | null;
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,SAAS,CAAA;IACpB,IAAI,EAAE,WAAW,GAAG,WAAW,CAAA;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,EAAE,MAAM,EAAE,CAAA;IACtB,KAAK,EAAE,MAAM,EAAE,CAAA;IACf,OAAO,EAAE;QACP,OAAO,EAAE,MAAM,CAAA;QACf,QAAQ,EAAE,MAAM,CAAA;KACjB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,YAAY,EAisCtC,CAAA;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,uBAE3C"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,1220 @@
|
|
|
1
|
+
export const baseRegistry = [
|
|
2
|
+
{
|
|
3
|
+
name: "button",
|
|
4
|
+
namespace: "@glinui",
|
|
5
|
+
type: "primitive",
|
|
6
|
+
title: "Button",
|
|
7
|
+
description: "Action control with default, glass, liquid, matte, glow, outline, and ghost variants.",
|
|
8
|
+
docsPath: "/docs/components/button",
|
|
9
|
+
importPath: "@glinui/ui",
|
|
10
|
+
dependencies: ["@glinui/ui"],
|
|
11
|
+
files: [
|
|
12
|
+
"packages/ui/src/components/button.tsx",
|
|
13
|
+
"packages/ui/src/tests/button.test.tsx"
|
|
14
|
+
],
|
|
15
|
+
install: {
|
|
16
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
17
|
+
registry: "pnpm dlx @glinui/cli@latest add button"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: "input",
|
|
22
|
+
namespace: "@glinui",
|
|
23
|
+
type: "primitive",
|
|
24
|
+
title: "Input",
|
|
25
|
+
description: "Single-line input with glass, liquid, matte, and utility variants.",
|
|
26
|
+
docsPath: "/docs/components/input",
|
|
27
|
+
importPath: "@glinui/ui",
|
|
28
|
+
dependencies: ["@glinui/ui"],
|
|
29
|
+
files: [
|
|
30
|
+
"packages/ui/src/components/input.tsx",
|
|
31
|
+
"packages/ui/src/tests/input.test.tsx"
|
|
32
|
+
],
|
|
33
|
+
install: {
|
|
34
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
35
|
+
registry: "pnpm dlx @glinui/cli@latest add input"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: "textarea",
|
|
40
|
+
namespace: "@glinui",
|
|
41
|
+
type: "primitive",
|
|
42
|
+
title: "Textarea",
|
|
43
|
+
description: "Multi-line input with glass, liquid, matte, and utility variants.",
|
|
44
|
+
docsPath: "/docs/components/textarea",
|
|
45
|
+
importPath: "@glinui/ui",
|
|
46
|
+
dependencies: ["@glinui/ui"],
|
|
47
|
+
files: [
|
|
48
|
+
"packages/ui/src/components/textarea.tsx",
|
|
49
|
+
"packages/ui/src/tests/textarea.test.tsx"
|
|
50
|
+
],
|
|
51
|
+
install: {
|
|
52
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
53
|
+
registry: "pnpm dlx @glinui/cli@latest add textarea"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: "select",
|
|
58
|
+
namespace: "@glinui",
|
|
59
|
+
type: "primitive",
|
|
60
|
+
title: "Select",
|
|
61
|
+
description: "Native select with glass, liquid, matte, and utility variants.",
|
|
62
|
+
docsPath: "/docs/components/select",
|
|
63
|
+
importPath: "@glinui/ui",
|
|
64
|
+
dependencies: ["@glinui/ui"],
|
|
65
|
+
files: [
|
|
66
|
+
"packages/ui/src/components/select.tsx",
|
|
67
|
+
"packages/ui/src/tests/select.test.tsx"
|
|
68
|
+
],
|
|
69
|
+
install: {
|
|
70
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
71
|
+
registry: "pnpm dlx @glinui/cli@latest add select"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "checkbox",
|
|
76
|
+
namespace: "@glinui",
|
|
77
|
+
type: "primitive",
|
|
78
|
+
title: "Checkbox",
|
|
79
|
+
description: "Radix checkbox with glass, liquid, matte, and outline surface variants.",
|
|
80
|
+
docsPath: "/docs/components/checkbox",
|
|
81
|
+
importPath: "@glinui/ui",
|
|
82
|
+
dependencies: ["@glinui/ui"],
|
|
83
|
+
files: [
|
|
84
|
+
"packages/ui/src/components/checkbox.tsx",
|
|
85
|
+
"packages/ui/src/tests/checkbox.test.tsx"
|
|
86
|
+
],
|
|
87
|
+
install: {
|
|
88
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
89
|
+
registry: "pnpm dlx @glinui/cli@latest add checkbox"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: "radio-group",
|
|
94
|
+
namespace: "@glinui",
|
|
95
|
+
type: "primitive",
|
|
96
|
+
title: "Radio Group",
|
|
97
|
+
description: "Mutually exclusive selection control with variant-capable radio items.",
|
|
98
|
+
docsPath: "/docs/components/radio-group",
|
|
99
|
+
importPath: "@glinui/ui",
|
|
100
|
+
dependencies: ["@glinui/ui"],
|
|
101
|
+
files: [
|
|
102
|
+
"packages/ui/src/components/radio-group.tsx",
|
|
103
|
+
"packages/ui/src/tests/radio-group.test.tsx"
|
|
104
|
+
],
|
|
105
|
+
install: {
|
|
106
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
107
|
+
registry: "pnpm dlx @glinui/cli@latest add radio-group"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
name: "switch",
|
|
112
|
+
namespace: "@glinui",
|
|
113
|
+
type: "primitive",
|
|
114
|
+
title: "Switch",
|
|
115
|
+
description: "On/off control built on Radix switch primitive.",
|
|
116
|
+
docsPath: "/docs/components/switch",
|
|
117
|
+
importPath: "@glinui/ui",
|
|
118
|
+
dependencies: ["@glinui/ui"],
|
|
119
|
+
files: ["packages/ui/src/components/switch.tsx"],
|
|
120
|
+
install: {
|
|
121
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
122
|
+
registry: "pnpm dlx @glinui/cli@latest add switch"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
name: "accordion",
|
|
127
|
+
namespace: "@glinui",
|
|
128
|
+
type: "primitive",
|
|
129
|
+
title: "Accordion",
|
|
130
|
+
description: "Expandable content sections with smooth disclosure behavior.",
|
|
131
|
+
docsPath: "/docs/components/accordion",
|
|
132
|
+
importPath: "@glinui/ui",
|
|
133
|
+
dependencies: ["@glinui/ui"],
|
|
134
|
+
files: [
|
|
135
|
+
"packages/ui/src/components/accordion.tsx",
|
|
136
|
+
"packages/ui/src/tests/accordion.test.tsx"
|
|
137
|
+
],
|
|
138
|
+
install: {
|
|
139
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
140
|
+
registry: "pnpm dlx @glinui/cli@latest add accordion"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
name: "alert",
|
|
145
|
+
namespace: "@glinui",
|
|
146
|
+
type: "primitive",
|
|
147
|
+
title: "Alert",
|
|
148
|
+
description: "Contextual feedback message with default, glass, outline, and ghost variants.",
|
|
149
|
+
docsPath: "/docs/components/alert",
|
|
150
|
+
importPath: "@glinui/ui",
|
|
151
|
+
dependencies: ["@glinui/ui"],
|
|
152
|
+
files: [
|
|
153
|
+
"packages/ui/src/components/alert.tsx",
|
|
154
|
+
"packages/ui/src/tests/alert.test.tsx"
|
|
155
|
+
],
|
|
156
|
+
install: {
|
|
157
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
158
|
+
registry: "pnpm dlx @glinui/cli@latest add alert"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: "alert-dialog",
|
|
163
|
+
namespace: "@glinui",
|
|
164
|
+
type: "primitive",
|
|
165
|
+
title: "Alert Dialog",
|
|
166
|
+
description: "Destructive action confirmation dialog with explicit cancel and action controls.",
|
|
167
|
+
docsPath: "/docs/components/alert-dialog",
|
|
168
|
+
importPath: "@glinui/ui",
|
|
169
|
+
dependencies: ["@glinui/ui"],
|
|
170
|
+
files: [
|
|
171
|
+
"packages/ui/src/components/alert-dialog.tsx",
|
|
172
|
+
"packages/ui/src/tests/alert-dialog.test.tsx"
|
|
173
|
+
],
|
|
174
|
+
install: {
|
|
175
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
176
|
+
registry: "pnpm dlx @glinui/cli@latest add alert-dialog"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
name: "avatar",
|
|
181
|
+
namespace: "@glinui",
|
|
182
|
+
type: "primitive",
|
|
183
|
+
title: "Avatar",
|
|
184
|
+
description: "Profile image with SVG-ready sources, fallback rendering, and multiple glass-aware surface variants.",
|
|
185
|
+
docsPath: "/docs/components/avatar",
|
|
186
|
+
importPath: "@glinui/ui",
|
|
187
|
+
dependencies: ["@glinui/ui"],
|
|
188
|
+
files: [
|
|
189
|
+
"packages/ui/src/components/avatar.tsx",
|
|
190
|
+
"packages/ui/src/tests/avatar.test.tsx"
|
|
191
|
+
],
|
|
192
|
+
install: {
|
|
193
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
194
|
+
registry: "pnpm dlx @glinui/cli@latest add avatar"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
name: "badge",
|
|
199
|
+
namespace: "@glinui",
|
|
200
|
+
type: "primitive",
|
|
201
|
+
title: "Badge",
|
|
202
|
+
description: "Compact status indicator for labels, states, and counts.",
|
|
203
|
+
docsPath: "/docs/components/badge",
|
|
204
|
+
importPath: "@glinui/ui",
|
|
205
|
+
dependencies: ["@glinui/ui"],
|
|
206
|
+
files: [
|
|
207
|
+
"packages/ui/src/components/badge.tsx",
|
|
208
|
+
"packages/ui/src/tests/badge.test.tsx"
|
|
209
|
+
],
|
|
210
|
+
install: {
|
|
211
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
212
|
+
registry: "pnpm dlx @glinui/cli@latest add badge"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
name: "card",
|
|
217
|
+
namespace: "@glinui",
|
|
218
|
+
type: "primitive",
|
|
219
|
+
title: "Card",
|
|
220
|
+
description: "Flexible surface container for grouped content.",
|
|
221
|
+
docsPath: "/docs/components/card",
|
|
222
|
+
importPath: "@glinui/ui",
|
|
223
|
+
dependencies: ["@glinui/ui"],
|
|
224
|
+
files: [
|
|
225
|
+
"packages/ui/src/components/card.tsx",
|
|
226
|
+
"packages/ui/src/tests/card.test.tsx"
|
|
227
|
+
],
|
|
228
|
+
install: {
|
|
229
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
230
|
+
registry: "pnpm dlx @glinui/cli@latest add card"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
name: "command",
|
|
235
|
+
namespace: "@glinui",
|
|
236
|
+
type: "primitive",
|
|
237
|
+
title: "Command",
|
|
238
|
+
description: "Command palette for keyboard-driven actions and search.",
|
|
239
|
+
docsPath: "/docs/components/command",
|
|
240
|
+
importPath: "@glinui/ui",
|
|
241
|
+
dependencies: ["@glinui/ui", "cmdk"],
|
|
242
|
+
files: [
|
|
243
|
+
"packages/ui/src/components/command.tsx",
|
|
244
|
+
"packages/ui/src/tests/command.test.tsx"
|
|
245
|
+
],
|
|
246
|
+
install: {
|
|
247
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
248
|
+
registry: "pnpm dlx @glinui/cli@latest add command"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: "dropdown-menu",
|
|
253
|
+
namespace: "@glinui",
|
|
254
|
+
type: "primitive",
|
|
255
|
+
title: "Dropdown Menu",
|
|
256
|
+
description: "Action menu anchored to a trigger with keyboard navigation.",
|
|
257
|
+
docsPath: "/docs/components/dropdown-menu",
|
|
258
|
+
importPath: "@glinui/ui",
|
|
259
|
+
dependencies: ["@glinui/ui"],
|
|
260
|
+
files: [
|
|
261
|
+
"packages/ui/src/components/dropdown-menu.tsx",
|
|
262
|
+
"packages/ui/src/tests/dropdown-menu.test.tsx"
|
|
263
|
+
],
|
|
264
|
+
install: {
|
|
265
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
266
|
+
registry: "pnpm dlx @glinui/cli@latest add dropdown-menu"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
name: "modal",
|
|
271
|
+
namespace: "@glinui",
|
|
272
|
+
type: "primitive",
|
|
273
|
+
title: "Modal / Dialog",
|
|
274
|
+
description: "Layered dialog for focused tasks or confirmations.",
|
|
275
|
+
docsPath: "/docs/components/modal",
|
|
276
|
+
importPath: "@glinui/ui",
|
|
277
|
+
dependencies: ["@glinui/ui"],
|
|
278
|
+
files: ["packages/ui/src/components/modal.tsx"],
|
|
279
|
+
install: {
|
|
280
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
281
|
+
registry: "pnpm dlx @glinui/cli@latest add modal"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
name: "popover",
|
|
286
|
+
namespace: "@glinui",
|
|
287
|
+
type: "primitive",
|
|
288
|
+
title: "Popover",
|
|
289
|
+
description: "Floating content panel anchored to a trigger element.",
|
|
290
|
+
docsPath: "/docs/components/popover",
|
|
291
|
+
importPath: "@glinui/ui",
|
|
292
|
+
dependencies: ["@glinui/ui"],
|
|
293
|
+
files: [
|
|
294
|
+
"packages/ui/src/components/popover.tsx",
|
|
295
|
+
"packages/ui/src/tests/popover.test.tsx"
|
|
296
|
+
],
|
|
297
|
+
install: {
|
|
298
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
299
|
+
registry: "pnpm dlx @glinui/cli@latest add popover"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
name: "hover-card",
|
|
304
|
+
namespace: "@glinui",
|
|
305
|
+
type: "primitive",
|
|
306
|
+
title: "Hover Card",
|
|
307
|
+
description: "Preview card that appears on hover or focus with configurable delays and placement.",
|
|
308
|
+
docsPath: "/docs/components/hover-card",
|
|
309
|
+
importPath: "@glinui/ui",
|
|
310
|
+
dependencies: ["@glinui/ui"],
|
|
311
|
+
files: [
|
|
312
|
+
"packages/ui/src/components/hover-card.tsx",
|
|
313
|
+
"packages/ui/src/tests/hover-card.test.tsx"
|
|
314
|
+
],
|
|
315
|
+
install: {
|
|
316
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
317
|
+
registry: "pnpm dlx @glinui/cli@latest add hover-card"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
name: "progress",
|
|
322
|
+
namespace: "@glinui",
|
|
323
|
+
type: "primitive",
|
|
324
|
+
title: "Progress",
|
|
325
|
+
description: "Determinate linear and circular progress indicators with tokenized variants and sizing.",
|
|
326
|
+
docsPath: "/docs/components/progress",
|
|
327
|
+
importPath: "@glinui/ui",
|
|
328
|
+
dependencies: ["@glinui/ui"],
|
|
329
|
+
files: [
|
|
330
|
+
"packages/ui/src/components/progress.tsx",
|
|
331
|
+
"packages/ui/src/tests/progress.test.tsx"
|
|
332
|
+
],
|
|
333
|
+
install: {
|
|
334
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
335
|
+
registry: "pnpm dlx @glinui/cli@latest add progress"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
name: "separator",
|
|
340
|
+
namespace: "@glinui",
|
|
341
|
+
type: "primitive",
|
|
342
|
+
title: "Separator",
|
|
343
|
+
description: "Visual divider for grouping content with orientation support.",
|
|
344
|
+
docsPath: "/docs/components/separator",
|
|
345
|
+
importPath: "@glinui/ui",
|
|
346
|
+
dependencies: ["@glinui/ui"],
|
|
347
|
+
files: [
|
|
348
|
+
"packages/ui/src/components/separator.tsx",
|
|
349
|
+
"packages/ui/src/tests/separator.test.tsx"
|
|
350
|
+
],
|
|
351
|
+
install: {
|
|
352
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
353
|
+
registry: "pnpm dlx @glinui/cli@latest add separator"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
name: "sheet",
|
|
358
|
+
namespace: "@glinui",
|
|
359
|
+
type: "primitive",
|
|
360
|
+
title: "Sheet / Drawer",
|
|
361
|
+
description: "Sliding panel for side, top, or bottom contextual workflows.",
|
|
362
|
+
docsPath: "/docs/components/sheet",
|
|
363
|
+
importPath: "@glinui/ui",
|
|
364
|
+
dependencies: ["@glinui/ui"],
|
|
365
|
+
files: [
|
|
366
|
+
"packages/ui/src/components/sheet.tsx",
|
|
367
|
+
"packages/ui/src/tests/sheet.test.tsx"
|
|
368
|
+
],
|
|
369
|
+
install: {
|
|
370
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
371
|
+
registry: "pnpm dlx @glinui/cli@latest add sheet"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
name: "skeleton",
|
|
376
|
+
namespace: "@glinui",
|
|
377
|
+
type: "primitive",
|
|
378
|
+
title: "Skeleton",
|
|
379
|
+
description: "Loading placeholder surface with reduced-motion fallback.",
|
|
380
|
+
docsPath: "/docs/components/skeleton",
|
|
381
|
+
importPath: "@glinui/ui",
|
|
382
|
+
dependencies: ["@glinui/ui"],
|
|
383
|
+
files: [
|
|
384
|
+
"packages/ui/src/components/skeleton.tsx",
|
|
385
|
+
"packages/ui/src/tests/skeleton.test.tsx"
|
|
386
|
+
],
|
|
387
|
+
install: {
|
|
388
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
389
|
+
registry: "pnpm dlx @glinui/cli@latest add skeleton"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
name: "slider",
|
|
394
|
+
namespace: "@glinui",
|
|
395
|
+
type: "primitive",
|
|
396
|
+
title: "Slider",
|
|
397
|
+
description: "Range input control built on Radix slider primitive with glass thumb/track styling.",
|
|
398
|
+
docsPath: "/docs/components/slider",
|
|
399
|
+
importPath: "@glinui/ui",
|
|
400
|
+
dependencies: ["@glinui/ui"],
|
|
401
|
+
files: [
|
|
402
|
+
"packages/ui/src/components/slider.tsx",
|
|
403
|
+
"packages/ui/src/tests/slider.test.tsx"
|
|
404
|
+
],
|
|
405
|
+
install: {
|
|
406
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
407
|
+
registry: "pnpm dlx @glinui/cli@latest add slider"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
name: "tabs",
|
|
412
|
+
namespace: "@glinui",
|
|
413
|
+
type: "primitive",
|
|
414
|
+
title: "Tabs",
|
|
415
|
+
description: "Tabbed interface for switching between grouped content panels.",
|
|
416
|
+
docsPath: "/docs/components/tabs",
|
|
417
|
+
importPath: "@glinui/ui",
|
|
418
|
+
dependencies: ["@glinui/ui"],
|
|
419
|
+
files: [
|
|
420
|
+
"packages/ui/src/components/tabs.tsx",
|
|
421
|
+
"packages/ui/src/tests/tabs.test.tsx"
|
|
422
|
+
],
|
|
423
|
+
install: {
|
|
424
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
425
|
+
registry: "pnpm dlx @glinui/cli@latest add tabs"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
name: "table",
|
|
430
|
+
namespace: "@glinui",
|
|
431
|
+
type: "primitive",
|
|
432
|
+
title: "Table",
|
|
433
|
+
description: "Composable data table with semantic sections and glass variant support.",
|
|
434
|
+
docsPath: "/docs/components/table",
|
|
435
|
+
importPath: "@glinui/ui",
|
|
436
|
+
dependencies: ["@glinui/ui"],
|
|
437
|
+
files: [
|
|
438
|
+
"packages/ui/src/components/table.tsx",
|
|
439
|
+
"packages/ui/src/tests/table.test.tsx"
|
|
440
|
+
],
|
|
441
|
+
install: {
|
|
442
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
443
|
+
registry: "pnpm dlx @glinui/cli@latest add table"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
name: "data-table",
|
|
448
|
+
namespace: "@glinui",
|
|
449
|
+
type: "primitive",
|
|
450
|
+
title: "Data Table",
|
|
451
|
+
description: "Feature-rich table wrapper with search, sorting, pagination, selection, and column controls.",
|
|
452
|
+
docsPath: "/docs/components/data-table",
|
|
453
|
+
importPath: "@glinui/ui",
|
|
454
|
+
dependencies: ["@glinui/ui"],
|
|
455
|
+
files: [
|
|
456
|
+
"packages/ui/src/components/data-table.tsx",
|
|
457
|
+
"packages/ui/src/components/table.tsx",
|
|
458
|
+
"packages/ui/src/tests/data-table.test.tsx"
|
|
459
|
+
],
|
|
460
|
+
install: {
|
|
461
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
462
|
+
registry: "pnpm dlx @glinui/cli@latest add data-table"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: "toast",
|
|
467
|
+
namespace: "@glinui",
|
|
468
|
+
type: "primitive",
|
|
469
|
+
title: "Toast",
|
|
470
|
+
description: "Glassmorphic toast notifications powered by Sonner with success, error, warning, info, loading, promise, and action support.",
|
|
471
|
+
docsPath: "/docs/components/toast",
|
|
472
|
+
importPath: "@glinui/ui",
|
|
473
|
+
dependencies: ["@glinui/ui", "sonner"],
|
|
474
|
+
files: ["packages/ui/src/components/sonner.tsx", "packages/ui/src/components/toast.tsx"],
|
|
475
|
+
install: {
|
|
476
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
477
|
+
registry: "pnpm dlx @glinui/cli@latest add toast"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
name: "tooltip",
|
|
482
|
+
namespace: "@glinui",
|
|
483
|
+
type: "primitive",
|
|
484
|
+
title: "Tooltip",
|
|
485
|
+
description: "Context hint on hover/focus using Radix tooltip primitive.",
|
|
486
|
+
docsPath: "/docs/components/tooltip",
|
|
487
|
+
importPath: "@glinui/ui",
|
|
488
|
+
dependencies: ["@glinui/ui"],
|
|
489
|
+
files: ["packages/ui/src/components/tooltip.tsx"],
|
|
490
|
+
install: {
|
|
491
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
492
|
+
registry: "pnpm dlx @glinui/cli@latest add tooltip"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
name: "tree",
|
|
497
|
+
namespace: "@glinui",
|
|
498
|
+
type: "primitive",
|
|
499
|
+
title: "Tree",
|
|
500
|
+
description: "Hierarchical tree view for file structures, navigation, and nested data.",
|
|
501
|
+
docsPath: "/docs/components/tree",
|
|
502
|
+
importPath: "@glinui/ui",
|
|
503
|
+
dependencies: ["@glinui/ui"],
|
|
504
|
+
files: ["packages/ui/src/components/tree.tsx"],
|
|
505
|
+
install: {
|
|
506
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
507
|
+
registry: "pnpm dlx @glinui/cli@latest add tree"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
name: "chip",
|
|
512
|
+
namespace: "@glinui",
|
|
513
|
+
type: "primitive",
|
|
514
|
+
title: "Chip",
|
|
515
|
+
description: "Compact pill-style tag for statuses and lightweight metadata.",
|
|
516
|
+
docsPath: "/docs/components/chip",
|
|
517
|
+
importPath: "@glinui/ui",
|
|
518
|
+
dependencies: ["@glinui/ui"],
|
|
519
|
+
files: ["packages/ui/src/components/chip.tsx"],
|
|
520
|
+
install: {
|
|
521
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
522
|
+
registry: "pnpm dlx @glinui/cli@latest add chip"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
name: "code",
|
|
527
|
+
namespace: "@glinui",
|
|
528
|
+
type: "primitive",
|
|
529
|
+
title: "Code",
|
|
530
|
+
description: "Inline code element for commands, snippets, and tokenized literals.",
|
|
531
|
+
docsPath: "/docs/components/code",
|
|
532
|
+
importPath: "@glinui/ui",
|
|
533
|
+
dependencies: ["@glinui/ui"],
|
|
534
|
+
files: ["packages/ui/src/components/code.tsx"],
|
|
535
|
+
install: {
|
|
536
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
537
|
+
registry: "pnpm dlx @glinui/cli@latest add code"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
name: "counter",
|
|
542
|
+
namespace: "@glinui",
|
|
543
|
+
type: "primitive",
|
|
544
|
+
title: "Counter",
|
|
545
|
+
description: "Numeric badge that compacts overflow values like 99+.",
|
|
546
|
+
docsPath: "/docs/components/counter",
|
|
547
|
+
importPath: "@glinui/ui",
|
|
548
|
+
dependencies: ["@glinui/ui"],
|
|
549
|
+
files: ["packages/ui/src/components/counter.tsx"],
|
|
550
|
+
install: {
|
|
551
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
552
|
+
registry: "pnpm dlx @glinui/cli@latest add counter"
|
|
553
|
+
}
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
name: "heading",
|
|
557
|
+
namespace: "@glinui",
|
|
558
|
+
type: "primitive",
|
|
559
|
+
title: "Heading",
|
|
560
|
+
description: "Semantic heading primitive with independent style scaling.",
|
|
561
|
+
docsPath: "/docs/components/heading",
|
|
562
|
+
importPath: "@glinui/ui",
|
|
563
|
+
dependencies: ["@glinui/ui"],
|
|
564
|
+
files: ["packages/ui/src/components/heading.tsx"],
|
|
565
|
+
install: {
|
|
566
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
567
|
+
registry: "pnpm dlx @glinui/cli@latest add heading"
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
name: "icon-frame",
|
|
572
|
+
namespace: "@glinui",
|
|
573
|
+
type: "primitive",
|
|
574
|
+
title: "Icon Frame",
|
|
575
|
+
description: "Consistent framed surface for icon glyphs and short initials.",
|
|
576
|
+
docsPath: "/docs/components/icon-frame",
|
|
577
|
+
importPath: "@glinui/ui",
|
|
578
|
+
dependencies: ["@glinui/ui"],
|
|
579
|
+
files: ["packages/ui/src/components/icon-frame.tsx"],
|
|
580
|
+
install: {
|
|
581
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
582
|
+
registry: "pnpm dlx @glinui/cli@latest add icon-frame"
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
name: "kbd",
|
|
587
|
+
namespace: "@glinui",
|
|
588
|
+
type: "primitive",
|
|
589
|
+
title: "Kbd",
|
|
590
|
+
description: "Keyboard keycap primitive for shortcuts and key hints.",
|
|
591
|
+
docsPath: "/docs/components/kbd",
|
|
592
|
+
importPath: "@glinui/ui",
|
|
593
|
+
dependencies: ["@glinui/ui"],
|
|
594
|
+
files: ["packages/ui/src/components/kbd.tsx"],
|
|
595
|
+
install: {
|
|
596
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
597
|
+
registry: "pnpm dlx @glinui/cli@latest add kbd"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
name: "label",
|
|
602
|
+
namespace: "@glinui",
|
|
603
|
+
type: "primitive",
|
|
604
|
+
title: "Label",
|
|
605
|
+
description: "Form label primitive with shared glass-aware variants.",
|
|
606
|
+
docsPath: "/docs/components/label",
|
|
607
|
+
importPath: "@glinui/ui",
|
|
608
|
+
dependencies: ["@glinui/ui"],
|
|
609
|
+
files: ["packages/ui/src/components/label.tsx"],
|
|
610
|
+
install: {
|
|
611
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
612
|
+
registry: "pnpm dlx @glinui/cli@latest add label"
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
name: "link",
|
|
617
|
+
namespace: "@glinui",
|
|
618
|
+
type: "primitive",
|
|
619
|
+
title: "Link",
|
|
620
|
+
description: "Tokenized anchor primitive with focus ring and variant surfaces.",
|
|
621
|
+
docsPath: "/docs/components/link",
|
|
622
|
+
importPath: "@glinui/ui",
|
|
623
|
+
dependencies: ["@glinui/ui"],
|
|
624
|
+
files: ["packages/ui/src/components/link.tsx"],
|
|
625
|
+
install: {
|
|
626
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
627
|
+
registry: "pnpm dlx @glinui/cli@latest add link"
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
name: "status-dot",
|
|
632
|
+
namespace: "@glinui",
|
|
633
|
+
type: "primitive",
|
|
634
|
+
title: "Status Dot",
|
|
635
|
+
description: "Colored status indicator with optional label and pulse state.",
|
|
636
|
+
docsPath: "/docs/components/status-dot",
|
|
637
|
+
importPath: "@glinui/ui",
|
|
638
|
+
dependencies: ["@glinui/ui"],
|
|
639
|
+
files: ["packages/ui/src/components/status-dot.tsx"],
|
|
640
|
+
install: {
|
|
641
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
642
|
+
registry: "pnpm dlx @glinui/cli@latest add status-dot"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
name: "text",
|
|
647
|
+
namespace: "@glinui",
|
|
648
|
+
type: "primitive",
|
|
649
|
+
title: "Text",
|
|
650
|
+
description: "Body text primitive for default, muted, and glass-highlighted copy.",
|
|
651
|
+
docsPath: "/docs/components/text",
|
|
652
|
+
importPath: "@glinui/ui",
|
|
653
|
+
dependencies: ["@glinui/ui"],
|
|
654
|
+
files: ["packages/ui/src/components/text.tsx"],
|
|
655
|
+
install: {
|
|
656
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
657
|
+
registry: "pnpm dlx @glinui/cli@latest add text"
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
// ── Molecule (Signature) Components ──────────────────────────────────────
|
|
661
|
+
{
|
|
662
|
+
name: "glass-card",
|
|
663
|
+
namespace: "@glinui",
|
|
664
|
+
type: "signature",
|
|
665
|
+
title: "Glass Card",
|
|
666
|
+
description: "Frosted card with depth-aware blur, refraction edge highlights, and elevation transitions.",
|
|
667
|
+
docsPath: "/docs/components/glass-card",
|
|
668
|
+
importPath: "@glinui/ui",
|
|
669
|
+
dependencies: ["@glinui/ui"],
|
|
670
|
+
files: ["packages/ui/src/components/glass-card.tsx"],
|
|
671
|
+
install: {
|
|
672
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
673
|
+
registry: "pnpm dlx @glinui/cli@latest add glass-card"
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
name: "glass-navbar",
|
|
678
|
+
namespace: "@glinui",
|
|
679
|
+
type: "signature",
|
|
680
|
+
title: "Glass Navbar",
|
|
681
|
+
description: "Translucent navigation bar that responds to scroll with blur intensity.",
|
|
682
|
+
docsPath: "/docs/components/glass-navbar",
|
|
683
|
+
importPath: "@glinui/ui",
|
|
684
|
+
dependencies: ["@glinui/ui"],
|
|
685
|
+
files: ["packages/ui/src/components/glass-navbar.tsx"],
|
|
686
|
+
install: {
|
|
687
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
688
|
+
registry: "pnpm dlx @glinui/cli@latest add glass-navbar"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
name: "liquid-button",
|
|
693
|
+
namespace: "@glinui",
|
|
694
|
+
type: "signature",
|
|
695
|
+
title: "Liquid Button",
|
|
696
|
+
description: "Button with fluid hover lift, press squish, and radial shine effect.",
|
|
697
|
+
docsPath: "/docs/components/liquid-button",
|
|
698
|
+
importPath: "@glinui/ui",
|
|
699
|
+
dependencies: ["@glinui/ui"],
|
|
700
|
+
files: ["packages/ui/src/components/liquid-button.tsx"],
|
|
701
|
+
install: {
|
|
702
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
703
|
+
registry: "pnpm dlx @glinui/cli@latest add liquid-button"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
name: "magnetic-cta",
|
|
708
|
+
namespace: "@glinui",
|
|
709
|
+
type: "signature",
|
|
710
|
+
title: "Magnetic CTA",
|
|
711
|
+
description: "Call-to-action button with subtle cursor-attraction on hover.",
|
|
712
|
+
docsPath: "/docs/components/magnetic-cta",
|
|
713
|
+
importPath: "@glinui/ui",
|
|
714
|
+
dependencies: ["@glinui/ui"],
|
|
715
|
+
files: ["packages/ui/src/components/magnetic-cta.tsx"],
|
|
716
|
+
install: {
|
|
717
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
718
|
+
registry: "pnpm dlx @glinui/cli@latest add magnetic-cta"
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
name: "spotlight-card",
|
|
723
|
+
namespace: "@glinui",
|
|
724
|
+
type: "signature",
|
|
725
|
+
title: "Spotlight Card",
|
|
726
|
+
description: "Card with cursor-tracked radial spotlight effect on hover.",
|
|
727
|
+
docsPath: "/docs/components/spotlight-card",
|
|
728
|
+
importPath: "@glinui/ui",
|
|
729
|
+
dependencies: ["@glinui/ui"],
|
|
730
|
+
files: ["packages/ui/src/components/spotlight-card.tsx"],
|
|
731
|
+
install: {
|
|
732
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
733
|
+
registry: "pnpm dlx @glinui/cli@latest add spotlight-card"
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
name: "border-beam",
|
|
738
|
+
namespace: "@glinui",
|
|
739
|
+
type: "signature",
|
|
740
|
+
title: "Border Beam",
|
|
741
|
+
description: "Light beam that travels along the border of its container via CSS offset-path.",
|
|
742
|
+
docsPath: "/docs/components/border-beam",
|
|
743
|
+
importPath: "@glinui/ui",
|
|
744
|
+
dependencies: ["@glinui/ui"],
|
|
745
|
+
files: ["packages/ui/src/components/border-beam.tsx"],
|
|
746
|
+
install: {
|
|
747
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
748
|
+
registry: "pnpm dlx @glinui/cli@latest add border-beam"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
name: "marquee",
|
|
753
|
+
namespace: "@glinui",
|
|
754
|
+
type: "signature",
|
|
755
|
+
title: "Marquee",
|
|
756
|
+
description: "Infinite horizontal or vertical scrolling content with pause-on-hover support.",
|
|
757
|
+
docsPath: "/docs/components/marquee",
|
|
758
|
+
importPath: "@glinui/ui",
|
|
759
|
+
dependencies: ["@glinui/ui"],
|
|
760
|
+
files: ["packages/ui/src/components/marquee.tsx"],
|
|
761
|
+
install: {
|
|
762
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
763
|
+
registry: "pnpm dlx @glinui/cli@latest add marquee"
|
|
764
|
+
}
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
name: "ripple",
|
|
768
|
+
namespace: "@glinui",
|
|
769
|
+
type: "signature",
|
|
770
|
+
title: "Ripple",
|
|
771
|
+
description: "Concentric expanding rings radiating from center for decorative backgrounds.",
|
|
772
|
+
docsPath: "/docs/components/ripple",
|
|
773
|
+
importPath: "@glinui/ui",
|
|
774
|
+
dependencies: ["@glinui/ui"],
|
|
775
|
+
files: ["packages/ui/src/components/ripple.tsx"],
|
|
776
|
+
install: {
|
|
777
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
778
|
+
registry: "pnpm dlx @glinui/cli@latest add ripple"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
name: "shimmer-button",
|
|
783
|
+
namespace: "@glinui",
|
|
784
|
+
type: "signature",
|
|
785
|
+
title: "Shimmer Button",
|
|
786
|
+
description: "Button with animated shimmer sweep overlay and glass-aware variants.",
|
|
787
|
+
docsPath: "/docs/components/shimmer-button",
|
|
788
|
+
importPath: "@glinui/ui",
|
|
789
|
+
dependencies: ["@glinui/ui"],
|
|
790
|
+
files: ["packages/ui/src/components/shimmer-button.tsx"],
|
|
791
|
+
install: {
|
|
792
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
793
|
+
registry: "pnpm dlx @glinui/cli@latest add shimmer-button"
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
name: "meteor-shower",
|
|
798
|
+
namespace: "@glinui",
|
|
799
|
+
type: "signature",
|
|
800
|
+
title: "Meteor Shower",
|
|
801
|
+
description: "Falling diagonal streaks with staggered delays for hero backgrounds.",
|
|
802
|
+
docsPath: "/docs/components/meteor-shower",
|
|
803
|
+
importPath: "@glinui/ui",
|
|
804
|
+
dependencies: ["@glinui/ui"],
|
|
805
|
+
files: ["packages/ui/src/components/meteor-shower.tsx"],
|
|
806
|
+
install: {
|
|
807
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
808
|
+
registry: "pnpm dlx @glinui/cli@latest add meteor-shower"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
name: "animated-gradient",
|
|
813
|
+
namespace: "@glinui",
|
|
814
|
+
type: "signature",
|
|
815
|
+
title: "Animated Gradient",
|
|
816
|
+
description: "Animated color-shifting gradient background with warm, cool, aurora, and glass presets.",
|
|
817
|
+
docsPath: "/docs/components/animated-gradient",
|
|
818
|
+
importPath: "@glinui/ui",
|
|
819
|
+
dependencies: ["@glinui/ui"],
|
|
820
|
+
files: ["packages/ui/src/components/animated-gradient.tsx"],
|
|
821
|
+
install: {
|
|
822
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
823
|
+
registry: "pnpm dlx @glinui/cli@latest add animated-gradient"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
name: "number-ticker",
|
|
828
|
+
namespace: "@glinui",
|
|
829
|
+
type: "signature",
|
|
830
|
+
title: "Number Ticker",
|
|
831
|
+
description: "Animated number counter triggered by scroll visibility via IntersectionObserver.",
|
|
832
|
+
docsPath: "/docs/components/number-ticker",
|
|
833
|
+
importPath: "@glinui/ui",
|
|
834
|
+
dependencies: ["@glinui/ui"],
|
|
835
|
+
files: ["packages/ui/src/components/number-ticker.tsx"],
|
|
836
|
+
install: {
|
|
837
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
838
|
+
registry: "pnpm dlx @glinui/cli@latest add number-ticker"
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
name: "text-reveal",
|
|
843
|
+
namespace: "@glinui",
|
|
844
|
+
type: "signature",
|
|
845
|
+
title: "Text Reveal",
|
|
846
|
+
description: "Word-by-word opacity reveal driven by scroll position.",
|
|
847
|
+
docsPath: "/docs/components/text-reveal",
|
|
848
|
+
importPath: "@glinui/ui",
|
|
849
|
+
dependencies: ["@glinui/ui"],
|
|
850
|
+
files: ["packages/ui/src/components/text-reveal.tsx"],
|
|
851
|
+
install: {
|
|
852
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
853
|
+
registry: "pnpm dlx @glinui/cli@latest add text-reveal"
|
|
854
|
+
}
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
name: "pulsating-button",
|
|
858
|
+
namespace: "@glinui",
|
|
859
|
+
type: "signature",
|
|
860
|
+
title: "Pulsating Button",
|
|
861
|
+
description: "Button with a pulsing glow ring animation for attention-grabbing CTAs.",
|
|
862
|
+
docsPath: "/docs/components/pulsating-button",
|
|
863
|
+
importPath: "@glinui/ui",
|
|
864
|
+
dependencies: ["@glinui/ui"],
|
|
865
|
+
files: ["packages/ui/src/components/pulsating-button.tsx"],
|
|
866
|
+
install: {
|
|
867
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
868
|
+
registry: "pnpm dlx @glinui/cli@latest add pulsating-button"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
name: "dot-pattern",
|
|
873
|
+
namespace: "@glinui",
|
|
874
|
+
type: "signature",
|
|
875
|
+
title: "Dot Pattern",
|
|
876
|
+
description: "Static SVG dot grid background with configurable size, gap, and theme colors.",
|
|
877
|
+
docsPath: "/docs/components/dot-pattern",
|
|
878
|
+
importPath: "@glinui/ui",
|
|
879
|
+
dependencies: ["@glinui/ui"],
|
|
880
|
+
files: ["packages/ui/src/components/dot-pattern.tsx"],
|
|
881
|
+
install: {
|
|
882
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
883
|
+
registry: "pnpm dlx @glinui/cli@latest add dot-pattern"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
// ── Batch 2 Signature Components ────────────────────────────────────────
|
|
887
|
+
{
|
|
888
|
+
name: "retro-grid",
|
|
889
|
+
namespace: "@glinui",
|
|
890
|
+
type: "signature",
|
|
891
|
+
title: "Retro Grid",
|
|
892
|
+
description: "CSS perspective grid with scrolling lines for retro-futuristic backgrounds.",
|
|
893
|
+
docsPath: "/docs/components/retro-grid",
|
|
894
|
+
importPath: "@glinui/ui",
|
|
895
|
+
dependencies: ["@glinui/ui"],
|
|
896
|
+
files: ["packages/ui/src/components/retro-grid.tsx"],
|
|
897
|
+
install: {
|
|
898
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
899
|
+
registry: "pnpm dlx @glinui/cli@latest add retro-grid"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
name: "orbiting-circles",
|
|
904
|
+
namespace: "@glinui",
|
|
905
|
+
type: "signature",
|
|
906
|
+
title: "Orbiting Circles",
|
|
907
|
+
description: "CSS-driven orbital animation that keeps children upright via double-rotate.",
|
|
908
|
+
docsPath: "/docs/components/orbiting-circles",
|
|
909
|
+
importPath: "@glinui/ui",
|
|
910
|
+
dependencies: ["@glinui/ui"],
|
|
911
|
+
files: ["packages/ui/src/components/orbiting-circles.tsx"],
|
|
912
|
+
install: {
|
|
913
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
914
|
+
registry: "pnpm dlx @glinui/cli@latest add orbiting-circles"
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
name: "blur-fade",
|
|
919
|
+
namespace: "@glinui",
|
|
920
|
+
type: "signature",
|
|
921
|
+
title: "Blur Fade",
|
|
922
|
+
description: "Scroll-triggered entrance animation with blur, fade, and slide transitions.",
|
|
923
|
+
docsPath: "/docs/components/blur-fade",
|
|
924
|
+
importPath: "@glinui/ui",
|
|
925
|
+
dependencies: ["@glinui/ui"],
|
|
926
|
+
files: ["packages/ui/src/components/blur-fade.tsx"],
|
|
927
|
+
install: {
|
|
928
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
929
|
+
registry: "pnpm dlx @glinui/cli@latest add blur-fade"
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
name: "glow-border",
|
|
934
|
+
namespace: "@glinui",
|
|
935
|
+
type: "signature",
|
|
936
|
+
title: "Glow Border",
|
|
937
|
+
description: "Rotating conic-gradient glow effect around container border.",
|
|
938
|
+
docsPath: "/docs/components/glow-border",
|
|
939
|
+
importPath: "@glinui/ui",
|
|
940
|
+
dependencies: ["@glinui/ui"],
|
|
941
|
+
files: ["packages/ui/src/components/glow-border.tsx"],
|
|
942
|
+
install: {
|
|
943
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
944
|
+
registry: "pnpm dlx @glinui/cli@latest add glow-border"
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
name: "word-rotate",
|
|
949
|
+
namespace: "@glinui",
|
|
950
|
+
type: "signature",
|
|
951
|
+
title: "Word Rotate",
|
|
952
|
+
description: "Cycling text animation that rotates through an array of words.",
|
|
953
|
+
docsPath: "/docs/components/word-rotate",
|
|
954
|
+
importPath: "@glinui/ui",
|
|
955
|
+
dependencies: ["@glinui/ui"],
|
|
956
|
+
files: ["packages/ui/src/components/word-rotate.tsx"],
|
|
957
|
+
install: {
|
|
958
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
959
|
+
registry: "pnpm dlx @glinui/cli@latest add word-rotate"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
name: "typewriter",
|
|
964
|
+
namespace: "@glinui",
|
|
965
|
+
type: "signature",
|
|
966
|
+
title: "Typewriter",
|
|
967
|
+
description: "Character-by-character typing animation with blinking cursor and loop support.",
|
|
968
|
+
docsPath: "/docs/components/typewriter",
|
|
969
|
+
importPath: "@glinui/ui",
|
|
970
|
+
dependencies: ["@glinui/ui"],
|
|
971
|
+
files: ["packages/ui/src/components/typewriter.tsx"],
|
|
972
|
+
install: {
|
|
973
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
974
|
+
registry: "pnpm dlx @glinui/cli@latest add typewriter"
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
name: "depth-card",
|
|
979
|
+
namespace: "@glinui",
|
|
980
|
+
type: "signature",
|
|
981
|
+
title: "Depth Card",
|
|
982
|
+
description: "Parallax tilt card with layered glass planes and glare effect on hover.",
|
|
983
|
+
docsPath: "/docs/components/depth-card",
|
|
984
|
+
importPath: "@glinui/ui",
|
|
985
|
+
dependencies: ["@glinui/ui"],
|
|
986
|
+
files: ["packages/ui/src/components/depth-card.tsx"],
|
|
987
|
+
install: {
|
|
988
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
989
|
+
registry: "pnpm dlx @glinui/cli@latest add depth-card"
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
name: "morphing-tabs",
|
|
994
|
+
namespace: "@glinui",
|
|
995
|
+
type: "signature",
|
|
996
|
+
title: "Morphing Tabs",
|
|
997
|
+
description: "Tab component with a smoothly sliding indicator that morphs between items.",
|
|
998
|
+
docsPath: "/docs/components/morphing-tabs",
|
|
999
|
+
importPath: "@glinui/ui",
|
|
1000
|
+
dependencies: ["@glinui/ui"],
|
|
1001
|
+
files: ["packages/ui/src/components/morphing-tabs.tsx"],
|
|
1002
|
+
install: {
|
|
1003
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1004
|
+
registry: "pnpm dlx @glinui/cli@latest add morphing-tabs"
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
name: "glass-dock",
|
|
1009
|
+
namespace: "@glinui",
|
|
1010
|
+
type: "signature",
|
|
1011
|
+
title: "Glass Dock",
|
|
1012
|
+
description: "macOS-style dock with proximity magnification and frosted glass surface.",
|
|
1013
|
+
docsPath: "/docs/components/glass-dock",
|
|
1014
|
+
importPath: "@glinui/ui",
|
|
1015
|
+
dependencies: ["@glinui/ui"],
|
|
1016
|
+
files: ["packages/ui/src/components/glass-dock.tsx"],
|
|
1017
|
+
install: {
|
|
1018
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1019
|
+
registry: "pnpm dlx @glinui/cli@latest add glass-dock"
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
name: "aurora-background",
|
|
1024
|
+
namespace: "@glinui",
|
|
1025
|
+
type: "signature",
|
|
1026
|
+
title: "Aurora Background",
|
|
1027
|
+
description: "Animated gradient mesh backdrop with floating blurred blobs.",
|
|
1028
|
+
docsPath: "/docs/components/aurora-background",
|
|
1029
|
+
importPath: "@glinui/ui",
|
|
1030
|
+
dependencies: ["@glinui/ui"],
|
|
1031
|
+
files: ["packages/ui/src/components/aurora-background.tsx"],
|
|
1032
|
+
install: {
|
|
1033
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1034
|
+
registry: "pnpm dlx @glinui/cli@latest add aurora-background"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
name: "particle-field",
|
|
1039
|
+
namespace: "@glinui",
|
|
1040
|
+
type: "signature",
|
|
1041
|
+
title: "Particle Field",
|
|
1042
|
+
description: "Ambient floating particle system with CSS-only staggered animations.",
|
|
1043
|
+
docsPath: "/docs/components/particle-field",
|
|
1044
|
+
importPath: "@glinui/ui",
|
|
1045
|
+
dependencies: ["@glinui/ui"],
|
|
1046
|
+
files: ["packages/ui/src/components/particle-field.tsx"],
|
|
1047
|
+
install: {
|
|
1048
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1049
|
+
registry: "pnpm dlx @glinui/cli@latest add particle-field"
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
name: "blur-spotlight",
|
|
1054
|
+
namespace: "@glinui",
|
|
1055
|
+
type: "signature",
|
|
1056
|
+
title: "Blur Spotlight",
|
|
1057
|
+
description: "Cursor-following ambient glow effect for background layers.",
|
|
1058
|
+
docsPath: "/docs/components/blur-spotlight",
|
|
1059
|
+
importPath: "@glinui/ui",
|
|
1060
|
+
dependencies: ["@glinui/ui"],
|
|
1061
|
+
files: ["packages/ui/src/components/blur-spotlight.tsx"],
|
|
1062
|
+
install: {
|
|
1063
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1064
|
+
registry: "pnpm dlx @glinui/cli@latest add blur-spotlight"
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
name: "prism-border",
|
|
1069
|
+
namespace: "@glinui",
|
|
1070
|
+
type: "signature",
|
|
1071
|
+
title: "Prism Border",
|
|
1072
|
+
description: "Animated rainbow refraction border using a shifting linear gradient.",
|
|
1073
|
+
docsPath: "/docs/components/prism-border",
|
|
1074
|
+
importPath: "@glinui/ui",
|
|
1075
|
+
dependencies: ["@glinui/ui"],
|
|
1076
|
+
files: ["packages/ui/src/components/prism-border.tsx"],
|
|
1077
|
+
install: {
|
|
1078
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1079
|
+
registry: "pnpm dlx @glinui/cli@latest add prism-border"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
name: "chromatic-text",
|
|
1084
|
+
namespace: "@glinui",
|
|
1085
|
+
type: "signature",
|
|
1086
|
+
title: "Chromatic Text",
|
|
1087
|
+
description: "Text with chromatic aberration effect — RGB channel splitting.",
|
|
1088
|
+
docsPath: "/docs/components/chromatic-text",
|
|
1089
|
+
importPath: "@glinui/ui",
|
|
1090
|
+
dependencies: ["@glinui/ui"],
|
|
1091
|
+
files: ["packages/ui/src/components/chromatic-text.tsx"],
|
|
1092
|
+
install: {
|
|
1093
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1094
|
+
registry: "pnpm dlx @glinui/cli@latest add chromatic-text"
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
name: "gradient-mesh",
|
|
1099
|
+
namespace: "@glinui",
|
|
1100
|
+
type: "signature",
|
|
1101
|
+
title: "Gradient Mesh",
|
|
1102
|
+
description: "Generative mesh gradient background using overlapping radial gradients.",
|
|
1103
|
+
docsPath: "/docs/components/gradient-mesh",
|
|
1104
|
+
importPath: "@glinui/ui",
|
|
1105
|
+
dependencies: ["@glinui/ui"],
|
|
1106
|
+
files: ["packages/ui/src/components/gradient-mesh.tsx"],
|
|
1107
|
+
install: {
|
|
1108
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1109
|
+
registry: "pnpm dlx @glinui/cli@latest add gradient-mesh"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
name: "ripple-button",
|
|
1114
|
+
namespace: "@glinui",
|
|
1115
|
+
type: "signature",
|
|
1116
|
+
title: "Ripple Button",
|
|
1117
|
+
description: "Button with liquid ripple effect on press.",
|
|
1118
|
+
docsPath: "/docs/components/ripple-button",
|
|
1119
|
+
importPath: "@glinui/ui",
|
|
1120
|
+
dependencies: ["@glinui/ui"],
|
|
1121
|
+
files: ["packages/ui/src/components/ripple-button.tsx"],
|
|
1122
|
+
install: {
|
|
1123
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1124
|
+
registry: "pnpm dlx @glinui/cli@latest add ripple-button"
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
name: "glass-toggle",
|
|
1129
|
+
namespace: "@glinui",
|
|
1130
|
+
type: "signature",
|
|
1131
|
+
title: "Glass Toggle",
|
|
1132
|
+
description: "Toggle switch with liquid fill animation and frosted glass surface.",
|
|
1133
|
+
docsPath: "/docs/components/glass-toggle",
|
|
1134
|
+
importPath: "@glinui/ui",
|
|
1135
|
+
dependencies: ["@glinui/ui"],
|
|
1136
|
+
files: ["packages/ui/src/components/glass-toggle.tsx"],
|
|
1137
|
+
install: {
|
|
1138
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1139
|
+
registry: "pnpm dlx @glinui/cli@latest add glass-toggle"
|
|
1140
|
+
}
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
name: "glass-breadcrumb",
|
|
1144
|
+
namespace: "@glinui",
|
|
1145
|
+
type: "signature",
|
|
1146
|
+
title: "Glass Breadcrumb",
|
|
1147
|
+
description: "Pill-style breadcrumb with glass indicators and collapsible items.",
|
|
1148
|
+
docsPath: "/docs/components/glass-breadcrumb",
|
|
1149
|
+
importPath: "@glinui/ui",
|
|
1150
|
+
dependencies: ["@glinui/ui"],
|
|
1151
|
+
files: ["packages/ui/src/components/glass-breadcrumb.tsx"],
|
|
1152
|
+
install: {
|
|
1153
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1154
|
+
registry: "pnpm dlx @glinui/cli@latest add glass-breadcrumb"
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
name: "floating-panel",
|
|
1159
|
+
namespace: "@glinui",
|
|
1160
|
+
type: "signature",
|
|
1161
|
+
title: "Floating Panel",
|
|
1162
|
+
description: "Draggable glass panel with depth shadows and optional close button.",
|
|
1163
|
+
docsPath: "/docs/components/floating-panel",
|
|
1164
|
+
importPath: "@glinui/ui",
|
|
1165
|
+
dependencies: ["@glinui/ui"],
|
|
1166
|
+
files: ["packages/ui/src/components/floating-panel.tsx"],
|
|
1167
|
+
install: {
|
|
1168
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1169
|
+
registry: "pnpm dlx @glinui/cli@latest add floating-panel"
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
name: "light-leak",
|
|
1174
|
+
namespace: "@glinui",
|
|
1175
|
+
type: "signature",
|
|
1176
|
+
title: "Light Leak",
|
|
1177
|
+
description: "Simulated lens flare and light leak overlay with drifting animation.",
|
|
1178
|
+
docsPath: "/docs/components/light-leak",
|
|
1179
|
+
importPath: "@glinui/ui",
|
|
1180
|
+
dependencies: ["@glinui/ui"],
|
|
1181
|
+
files: ["packages/ui/src/components/light-leak.tsx"],
|
|
1182
|
+
install: {
|
|
1183
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1184
|
+
registry: "pnpm dlx @glinui/cli@latest add light-leak"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
name: "reveal-text",
|
|
1189
|
+
namespace: "@glinui",
|
|
1190
|
+
type: "signature",
|
|
1191
|
+
title: "Reveal Text",
|
|
1192
|
+
description: "Text that reveals through a clip-path wipe animation triggered on view.",
|
|
1193
|
+
docsPath: "/docs/components/reveal-text",
|
|
1194
|
+
importPath: "@glinui/ui",
|
|
1195
|
+
dependencies: ["@glinui/ui"],
|
|
1196
|
+
files: ["packages/ui/src/components/reveal-text.tsx"],
|
|
1197
|
+
install: {
|
|
1198
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1199
|
+
registry: "pnpm dlx @glinui/cli@latest add reveal-text"
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
name: "spotlight",
|
|
1204
|
+
namespace: "@glinui",
|
|
1205
|
+
type: "signature",
|
|
1206
|
+
title: "Spotlight",
|
|
1207
|
+
description: "Full-page spotlight overlay for onboarding and feature highlighting.",
|
|
1208
|
+
docsPath: "/docs/components/spotlight",
|
|
1209
|
+
importPath: "@glinui/ui",
|
|
1210
|
+
dependencies: ["@glinui/ui"],
|
|
1211
|
+
files: ["packages/ui/src/components/spotlight.tsx"],
|
|
1212
|
+
install: {
|
|
1213
|
+
package: "npm install @glinui/ui @glinui/tokens",
|
|
1214
|
+
registry: "pnpm dlx @glinui/cli@latest add spotlight"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
];
|
|
1218
|
+
export function getRegistryItem(name) {
|
|
1219
|
+
return baseRegistry.find((item) => item.name === name) ?? null;
|
|
1220
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@glinui/registry",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"default": "./dist/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": ["dist"],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/GLINCKER/glinui",
|
|
18
|
+
"directory": "packages/registry"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://glinui.com",
|
|
21
|
+
"bugs": "https://github.com/GLINCKER/glinui/issues",
|
|
22
|
+
"keywords": ["glinui", "glassmorphism", "liquid-glass", "react", "tailwindcss", "ui", "design-system"],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "pnpm registry:generate && tsc -p tsconfig.json",
|
|
28
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
29
|
+
"lint": "echo 'lint: @glinui/registry (todo)'",
|
|
30
|
+
"test": "node scripts/validate-artifacts.mjs",
|
|
31
|
+
"registry:generate": "node scripts/generate-artifacts.mjs"
|
|
32
|
+
}
|
|
33
|
+
}
|