semajsx 0.1.2 → 0.5.1
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/dom/jsx-dev-runtime.d.mts +1 -1
- package/dist/dom/jsx-runtime.d.mts +1 -1
- package/dist/{index-DC3tthWf.d.mts → index-Ch9GwToI.d.mts} +2 -2
- package/dist/{index-DC3tthWf.d.mts.map → index-Ch9GwToI.d.mts.map} +1 -1
- package/dist/{jsx-runtime-DZx2Yv-t.d.mts → jsx-runtime-BBi9E0Hz.d.mts} +2 -1
- package/dist/{jsx-runtime-DZx2Yv-t.d.mts.map → jsx-runtime-BBi9E0Hz.d.mts.map} +1 -1
- package/dist/jsx-runtime-D9ZNjMJ2.mjs.map +1 -1
- package/dist/{src-DR-EWgVP.mjs → src-L88LbwEv.mjs} +2 -2
- package/dist/src-L88LbwEv.mjs.map +1 -0
- package/dist/ssg/index.d.mts +1 -1
- package/dist/ssg/index.mjs +1 -1
- package/dist/ssg/plugins/docs-theme.d.mts +311 -5
- package/dist/ssg/plugins/docs-theme.d.mts.map +1 -1
- package/dist/ssg/plugins/docs-theme.mjs +1463 -111
- package/dist/ssg/plugins/docs-theme.mjs.map +1 -1
- package/dist/ssg/plugins/lucide.d.mts +2 -2
- package/dist/{types-CGkRxnQB.d.mts → types-C9fiRu6l.d.mts} +3 -3
- package/dist/{types-CGkRxnQB.d.mts.map → types-C9fiRu6l.d.mts.map} +1 -1
- package/package.json +1 -1
- package/dist/src-DR-EWgVP.mjs.map +0 -1
|
@@ -1,9 +1,44 @@
|
|
|
1
1
|
import { c as JSXNode, d as VNode, t as Component } from "../../types-CZMcXQTW.mjs";
|
|
2
2
|
import { o as StyleToken } from "../../types-DucvOZQ2.mjs";
|
|
3
|
-
import { _ as SSGPlugin, c as CollectionSource } from "../../types-
|
|
4
|
-
import { t as LucidePluginOptions } from "../../index-
|
|
3
|
+
import { _ as SSGPlugin, c as CollectionSource, s as CollectionEntry } from "../../types-C9fiRu6l.mjs";
|
|
4
|
+
import { t as LucidePluginOptions } from "../../index-Ch9GwToI.mjs";
|
|
5
5
|
|
|
6
|
+
//#region ../ssg/src/plugins/llms/types.d.ts
|
|
7
|
+
/**
|
|
8
|
+
* An additional link to include in llms.txt.
|
|
9
|
+
* Placed in the "Optional" section per the llms.txt spec.
|
|
10
|
+
*/
|
|
11
|
+
interface LlmsLink {
|
|
12
|
+
/** Link title */
|
|
13
|
+
title: string;
|
|
14
|
+
/** Link URL (absolute or relative) */
|
|
15
|
+
url: string;
|
|
16
|
+
/** Optional description shown after the link */
|
|
17
|
+
description?: string;
|
|
18
|
+
}
|
|
19
|
+
//#endregion
|
|
6
20
|
//#region ../ssg/src/plugins/docs-theme/types.d.ts
|
|
21
|
+
/** Layout component exposed to custom home page functions */
|
|
22
|
+
type LayoutComponent = (props: {
|
|
23
|
+
children: JSXNode;
|
|
24
|
+
}) => VNode;
|
|
25
|
+
/** Props passed to a custom home page component */
|
|
26
|
+
interface HomePageProps {
|
|
27
|
+
/** Theme Layout component (nav + footer wrapper) */
|
|
28
|
+
Layout: LayoutComponent;
|
|
29
|
+
/** All docs entries (empty array if docs not configured) */
|
|
30
|
+
docs: CollectionEntry[];
|
|
31
|
+
/** All guides entries (empty array if guides not configured) */
|
|
32
|
+
guides: CollectionEntry[];
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Home page configuration.
|
|
36
|
+
*
|
|
37
|
+
* - `false` — disable the homepage route entirely
|
|
38
|
+
* - `"docs-index"` — render a minimal document index instead of the marketing page
|
|
39
|
+
* - `(props: HomePageProps) => VNode` — custom component for full control
|
|
40
|
+
*/
|
|
41
|
+
type HomeOption = false | "docs-index" | ((props: HomePageProps) => VNode);
|
|
7
42
|
interface NavLink {
|
|
8
43
|
/** Display label */
|
|
9
44
|
label: string;
|
|
@@ -56,6 +91,16 @@ interface GuidesConfig {
|
|
|
56
91
|
/** Index page description */
|
|
57
92
|
description?: string;
|
|
58
93
|
}
|
|
94
|
+
interface UIConfig {
|
|
95
|
+
/** Content source for UI component docs */
|
|
96
|
+
source: CollectionSource<unknown>;
|
|
97
|
+
/** URL base path (default: "/ui") */
|
|
98
|
+
basePath?: string;
|
|
99
|
+
/** Index page heading (default: "Components") */
|
|
100
|
+
heading?: string;
|
|
101
|
+
/** Index page description */
|
|
102
|
+
description?: string;
|
|
103
|
+
}
|
|
59
104
|
interface DocsThemeOptions {
|
|
60
105
|
/** Site title (used in <title> tags and footer copyright) */
|
|
61
106
|
title: string;
|
|
@@ -66,6 +111,35 @@ interface DocsThemeOptions {
|
|
|
66
111
|
/** Logo text displayed in the nav bar */logo: string; /** Navigation links */
|
|
67
112
|
links: NavLink[];
|
|
68
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
* Home page configuration.
|
|
116
|
+
*
|
|
117
|
+
* - Omit or leave `undefined` for the default marketing homepage (hero, features, quickLinks)
|
|
118
|
+
* - `false` to disable the homepage route entirely
|
|
119
|
+
* - `"docs-index"` for a minimal document listing page
|
|
120
|
+
* - A component function `(props: HomePageProps) => VNode` for full control
|
|
121
|
+
*
|
|
122
|
+
* @example
|
|
123
|
+
* ```tsx
|
|
124
|
+
* // Disable homepage
|
|
125
|
+
* docsTheme({ home: false, ... })
|
|
126
|
+
*
|
|
127
|
+
* // Minimal docs index
|
|
128
|
+
* docsTheme({ home: "docs-index", ... })
|
|
129
|
+
*
|
|
130
|
+
* // Custom homepage
|
|
131
|
+
* docsTheme({
|
|
132
|
+
* home: ({ Layout, docs }) => (
|
|
133
|
+
* <Layout>
|
|
134
|
+
* <h1>Welcome</h1>
|
|
135
|
+
* <ul>{docs.map(d => <li>{d.data.title}</li>)}</ul>
|
|
136
|
+
* </Layout>
|
|
137
|
+
* ),
|
|
138
|
+
* ...
|
|
139
|
+
* })
|
|
140
|
+
* ```
|
|
141
|
+
*/
|
|
142
|
+
home?: HomeOption;
|
|
69
143
|
/** Home page hero section (omit to skip hero) */
|
|
70
144
|
hero?: {
|
|
71
145
|
/** Hero heading text */title: string; /** Hero subtitle text */
|
|
@@ -93,6 +167,8 @@ interface DocsThemeOptions {
|
|
|
93
167
|
docs?: DocsConfig;
|
|
94
168
|
/** Guides collection (omit to disable guides section) */
|
|
95
169
|
guides?: GuidesConfig;
|
|
170
|
+
/** UI components showcase (omit to disable UI section) */
|
|
171
|
+
ui?: UIConfig;
|
|
96
172
|
/** Additional MDX plugins and components */
|
|
97
173
|
mdx?: {
|
|
98
174
|
remarkPlugins?: unknown[];
|
|
@@ -101,10 +177,34 @@ interface DocsThemeOptions {
|
|
|
101
177
|
};
|
|
102
178
|
/** Lucide icon plugin options. Set to `false` to disable. Enabled by default. */
|
|
103
179
|
lucide?: LucidePluginOptions | false;
|
|
180
|
+
/**
|
|
181
|
+
* LLMs plugin options (llms.txt). Set to `false` to disable.
|
|
182
|
+
* Enabled by default when docs or guides are configured.
|
|
183
|
+
*
|
|
184
|
+
* Sections are auto-derived from docs/guides collections.
|
|
185
|
+
* Pass an object to customize URL, additional links, or toggle individual outputs.
|
|
186
|
+
*/
|
|
187
|
+
llms?: LlmsThemeOptions | false;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Options for the llms plugin when used within docs-theme.
|
|
191
|
+
* Title, description, and sections are auto-derived from the theme config.
|
|
192
|
+
*/
|
|
193
|
+
interface LlmsThemeOptions {
|
|
194
|
+
/** Site base URL for absolute links (e.g., "https://docs.example.com") */
|
|
195
|
+
url?: string;
|
|
196
|
+
/** Additional links for the "Optional" section of llms.txt */
|
|
197
|
+
links?: LlmsLink[];
|
|
198
|
+
/** Generate llms.txt (default: true) */
|
|
199
|
+
llmsTxt?: boolean;
|
|
200
|
+
/** Generate llms-full.txt (default: true) */
|
|
201
|
+
llmsFullTxt?: boolean;
|
|
202
|
+
/** Generate per-entry .md files (default: true) */
|
|
203
|
+
markdownPages?: boolean;
|
|
104
204
|
}
|
|
105
205
|
//#endregion
|
|
106
206
|
//#region ../ui/src/components/callout/callout.d.ts
|
|
107
|
-
type ClassValue = string | StyleToken | ClassValue[] | false | null | undefined;
|
|
207
|
+
type ClassValue$10 = string | StyleToken | ClassValue$10[] | false | null | undefined;
|
|
108
208
|
type CalloutType = "info" | "warning" | "success" | "error" | "tip";
|
|
109
209
|
interface CalloutProps {
|
|
110
210
|
/** Semantic type controlling color and icon */
|
|
@@ -112,13 +212,219 @@ interface CalloutProps {
|
|
|
112
212
|
/** Optional title displayed above content */
|
|
113
213
|
title?: string;
|
|
114
214
|
/** Additional CSS class(es) */
|
|
115
|
-
class?: ClassValue;
|
|
215
|
+
class?: ClassValue$10;
|
|
116
216
|
/** Content */
|
|
117
217
|
children?: JSXNode;
|
|
118
218
|
}
|
|
119
219
|
declare function Callout(props: CalloutProps): JSXNode;
|
|
120
220
|
//#endregion
|
|
221
|
+
//#region ../ui/src/components/badge/badge.d.ts
|
|
222
|
+
type ClassValue$9 = string | StyleToken | ClassValue$9[] | false | null | undefined;
|
|
223
|
+
type BadgeColor = "default" | "success" | "warning" | "danger" | "info" | "tip";
|
|
224
|
+
interface BadgeProps {
|
|
225
|
+
/** Semantic color */
|
|
226
|
+
color?: BadgeColor;
|
|
227
|
+
/** Additional CSS class(es) */
|
|
228
|
+
class?: ClassValue$9;
|
|
229
|
+
/** Content */
|
|
230
|
+
children?: JSXNode;
|
|
231
|
+
}
|
|
232
|
+
declare function Badge(props: BadgeProps): JSXNode;
|
|
233
|
+
//#endregion
|
|
234
|
+
//#region ../ui/src/components/card/card.d.ts
|
|
235
|
+
type ClassValue$8 = string | StyleToken | ClassValue$8[] | false | null | undefined;
|
|
236
|
+
interface CardProps {
|
|
237
|
+
/** Card variant */
|
|
238
|
+
variant?: "feature" | "link";
|
|
239
|
+
/** Icon content (emoji or JSX) */
|
|
240
|
+
icon?: JSXNode;
|
|
241
|
+
/** Card heading */
|
|
242
|
+
heading?: string;
|
|
243
|
+
/** Card description */
|
|
244
|
+
description?: string;
|
|
245
|
+
/** Link URL (for "link" variant) */
|
|
246
|
+
href?: string;
|
|
247
|
+
/** Inline style string */
|
|
248
|
+
style?: string;
|
|
249
|
+
/** Additional CSS class(es) */
|
|
250
|
+
class?: ClassValue$8;
|
|
251
|
+
/** Content */
|
|
252
|
+
children?: JSXNode;
|
|
253
|
+
}
|
|
254
|
+
declare function Card(props: CardProps): JSXNode;
|
|
255
|
+
//#endregion
|
|
256
|
+
//#region ../ui/src/components/tabs/tabs.d.ts
|
|
257
|
+
type ClassValue$7 = string | StyleToken | ClassValue$7[] | false | null | undefined;
|
|
258
|
+
interface TabsProps {
|
|
259
|
+
/** The initially active tab value */
|
|
260
|
+
defaultValue: string;
|
|
261
|
+
/** Additional CSS class(es) */
|
|
262
|
+
class?: ClassValue$7;
|
|
263
|
+
/** Content (TabList and TabPanels) */
|
|
264
|
+
children?: JSXNode;
|
|
265
|
+
}
|
|
266
|
+
interface TabListProps {
|
|
267
|
+
/** Additional CSS class(es) */
|
|
268
|
+
class?: ClassValue$7;
|
|
269
|
+
/** Tab triggers */
|
|
270
|
+
children?: JSXNode;
|
|
271
|
+
}
|
|
272
|
+
interface TabProps {
|
|
273
|
+
/** Value matching a TabPanel */
|
|
274
|
+
value: string;
|
|
275
|
+
/** Additional CSS class(es) */
|
|
276
|
+
class?: ClassValue$7;
|
|
277
|
+
/** Tab label */
|
|
278
|
+
children?: JSXNode;
|
|
279
|
+
}
|
|
280
|
+
interface TabPanelProps {
|
|
281
|
+
/** Value matching a Tab */
|
|
282
|
+
value: string;
|
|
283
|
+
/** Additional CSS class(es) */
|
|
284
|
+
class?: ClassValue$7;
|
|
285
|
+
/** Panel content */
|
|
286
|
+
children?: JSXNode;
|
|
287
|
+
}
|
|
288
|
+
declare function Tabs(props: TabsProps): JSXNode;
|
|
289
|
+
declare function TabList(props: TabListProps): JSXNode;
|
|
290
|
+
declare function Tab(props: TabProps): JSXNode;
|
|
291
|
+
declare function TabPanel(props: TabPanelProps): JSXNode;
|
|
292
|
+
//#endregion
|
|
293
|
+
//#region ../ui/src/components/steps/steps.d.ts
|
|
294
|
+
type ClassValue$6 = string | StyleToken | ClassValue$6[] | false | null | undefined;
|
|
295
|
+
interface StepsProps {
|
|
296
|
+
/** Additional CSS class(es) */
|
|
297
|
+
class?: ClassValue$6;
|
|
298
|
+
/** Step items */
|
|
299
|
+
children?: JSXNode;
|
|
300
|
+
}
|
|
301
|
+
interface StepProps {
|
|
302
|
+
/** Step title */
|
|
303
|
+
title: string;
|
|
304
|
+
/** Step number (auto-assigned if omitted) */
|
|
305
|
+
number?: number;
|
|
306
|
+
/** Additional CSS class(es) */
|
|
307
|
+
class?: ClassValue$6;
|
|
308
|
+
/** Step description/content */
|
|
309
|
+
children?: JSXNode;
|
|
310
|
+
}
|
|
311
|
+
declare function Steps(props: StepsProps): JSXNode;
|
|
312
|
+
declare function Step(props: StepProps): JSXNode;
|
|
313
|
+
//#endregion
|
|
314
|
+
//#region ../ui/src/components/button/button.d.ts
|
|
315
|
+
type ClassValue$5 = string | StyleToken | ClassValue$5[] | false | null | undefined;
|
|
316
|
+
interface ButtonProps {
|
|
317
|
+
/** Visual variant */
|
|
318
|
+
variant?: "solid" | "outline" | "ghost";
|
|
319
|
+
/** Size preset */
|
|
320
|
+
size?: "sm" | "md" | "lg";
|
|
321
|
+
/** Color scheme - "danger" applies destructive styling */
|
|
322
|
+
color?: "default" | "danger";
|
|
323
|
+
/** Disabled state */
|
|
324
|
+
disabled?: boolean;
|
|
325
|
+
/** HTML button type attribute */
|
|
326
|
+
type?: "button" | "submit" | "reset";
|
|
327
|
+
/** Click handler */
|
|
328
|
+
onClick?: (e: Event) => void;
|
|
329
|
+
/** Additional CSS class(es) */
|
|
330
|
+
class?: ClassValue$5;
|
|
331
|
+
/** Accessible label when button content isn't descriptive */
|
|
332
|
+
"aria-label"?: string;
|
|
333
|
+
/** Content */
|
|
334
|
+
children?: JSXNode;
|
|
335
|
+
}
|
|
336
|
+
declare function Button(props: ButtonProps): JSXNode;
|
|
337
|
+
//#endregion
|
|
338
|
+
//#region ../ui/src/components/separator/separator.d.ts
|
|
339
|
+
type ClassValue$4 = string | StyleToken | ClassValue$4[] | false | null | undefined;
|
|
340
|
+
interface SeparatorProps {
|
|
341
|
+
/** Orientation of the separator */
|
|
342
|
+
orientation?: "horizontal" | "vertical";
|
|
343
|
+
/** Additional CSS class(es) */
|
|
344
|
+
class?: ClassValue$4;
|
|
345
|
+
/** Inline style string */
|
|
346
|
+
style?: string;
|
|
347
|
+
}
|
|
348
|
+
declare function Separator(props: SeparatorProps): JSXNode;
|
|
349
|
+
//#endregion
|
|
350
|
+
//#region ../ui/src/components/input/input.d.ts
|
|
351
|
+
type ClassValue$3 = string | StyleToken | ClassValue$3[] | false | null | undefined;
|
|
352
|
+
interface InputProps {
|
|
353
|
+
/** Input type */
|
|
354
|
+
type?: "text" | "email" | "password" | "number" | "search" | "url" | "tel";
|
|
355
|
+
/** Label text displayed above the input */
|
|
356
|
+
label?: string;
|
|
357
|
+
/** Placeholder text */
|
|
358
|
+
placeholder?: string;
|
|
359
|
+
/** Current value */
|
|
360
|
+
value?: string;
|
|
361
|
+
/** Size preset */
|
|
362
|
+
size?: "sm" | "md" | "lg";
|
|
363
|
+
/** Disabled state */
|
|
364
|
+
disabled?: boolean;
|
|
365
|
+
/** Read-only state */
|
|
366
|
+
readOnly?: boolean;
|
|
367
|
+
/** HTML name attribute */
|
|
368
|
+
name?: string;
|
|
369
|
+
/** HTML id attribute */
|
|
370
|
+
id?: string;
|
|
371
|
+
/** Additional CSS class(es) */
|
|
372
|
+
class?: ClassValue$3;
|
|
373
|
+
}
|
|
374
|
+
declare function Input(props: InputProps): JSXNode;
|
|
375
|
+
//#endregion
|
|
376
|
+
//#region ../ui/src/components/avatar/avatar.d.ts
|
|
377
|
+
type ClassValue$2 = string | StyleToken | ClassValue$2[] | false | null | undefined;
|
|
378
|
+
interface AvatarProps {
|
|
379
|
+
/** Image source URL */
|
|
380
|
+
src?: string;
|
|
381
|
+
/** Alt text for the image */
|
|
382
|
+
alt?: string;
|
|
383
|
+
/** Initials to display when no image is provided */
|
|
384
|
+
initials?: string;
|
|
385
|
+
/** Size preset */
|
|
386
|
+
size?: "sm" | "md" | "lg";
|
|
387
|
+
/** Additional CSS class(es) */
|
|
388
|
+
class?: ClassValue$2;
|
|
389
|
+
}
|
|
390
|
+
declare function Avatar(props: AvatarProps): JSXNode;
|
|
391
|
+
//#endregion
|
|
392
|
+
//#region ../ui/src/components/kbd/kbd.d.ts
|
|
393
|
+
type ClassValue$1 = string | StyleToken | ClassValue$1[] | false | null | undefined;
|
|
394
|
+
interface KbdProps {
|
|
395
|
+
/** Key label */
|
|
396
|
+
children?: JSXNode;
|
|
397
|
+
/** Additional CSS class(es) */
|
|
398
|
+
class?: ClassValue$1;
|
|
399
|
+
}
|
|
400
|
+
declare function Kbd(props: KbdProps): JSXNode;
|
|
401
|
+
//#endregion
|
|
402
|
+
//#region ../ui/src/components/switch/switch.d.ts
|
|
403
|
+
type ClassValue = string | StyleToken | ClassValue[] | false | null | undefined;
|
|
404
|
+
interface SwitchProps {
|
|
405
|
+
/** Label text */
|
|
406
|
+
label?: string;
|
|
407
|
+
/** Checked state */
|
|
408
|
+
checked?: boolean;
|
|
409
|
+
/** Disabled state */
|
|
410
|
+
disabled?: boolean;
|
|
411
|
+
/** HTML name attribute */
|
|
412
|
+
name?: string;
|
|
413
|
+
/** Additional CSS class(es) */
|
|
414
|
+
class?: ClassValue;
|
|
415
|
+
}
|
|
416
|
+
declare function Switch(props: SwitchProps): JSXNode;
|
|
417
|
+
//#endregion
|
|
121
418
|
//#region ../ssg/src/plugins/docs-theme/components.d.ts
|
|
419
|
+
interface ComponentPreviewProps {
|
|
420
|
+
/** Optional label shown above the preview */
|
|
421
|
+
label?: string;
|
|
422
|
+
children?: JSXNode;
|
|
423
|
+
}
|
|
424
|
+
declare function ComponentPreview({
|
|
425
|
+
label,
|
|
426
|
+
children
|
|
427
|
+
}: ComponentPreviewProps): VNode;
|
|
122
428
|
interface CodeBlockProps {
|
|
123
429
|
children: string;
|
|
124
430
|
className?: string;
|
|
@@ -176,5 +482,5 @@ declare function CodeBlock({
|
|
|
176
482
|
*/
|
|
177
483
|
declare function docsTheme(options: DocsThemeOptions): SSGPlugin[];
|
|
178
484
|
//#endregion
|
|
179
|
-
export { Callout, CodeBlock, type DocsConfig, type DocsThemeOptions, type FeatureItem, type GuidesConfig, type HeroAction, type NavLink, type QuickLinkItem, docsTheme };
|
|
485
|
+
export { Avatar, Badge, Button, Callout, Card, CodeBlock, ComponentPreview, type DocsConfig, type DocsThemeOptions, type FeatureItem, type GuidesConfig, type HeroAction, type HomeOption, type HomePageProps, Input, Kbd, type LayoutComponent, type LlmsThemeOptions, type NavLink, type QuickLinkItem, Separator, Step, Steps, Switch, Tab, TabList, TabPanel, Tabs, type UIConfig, docsTheme };
|
|
180
486
|
//# sourceMappingURL=docs-theme.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs-theme.d.mts","names":[],"sources":["../../../../ssg/src/plugins/docs-theme/types.ts","../../../../ui/src/components/callout/callout.tsx","../../../../ssg/src/plugins/docs-theme/components.tsx","../../../../ssg/src/plugins/docs-theme/index.ts"],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"docs-theme.d.mts","names":[],"sources":["../../../../ssg/src/plugins/llms/types.ts","../../../../ssg/src/plugins/docs-theme/types.ts","../../../../ui/src/components/callout/callout.tsx","../../../../ui/src/components/badge/badge.tsx","../../../../ui/src/components/card/card.tsx","../../../../ui/src/components/tabs/tabs.tsx","../../../../ui/src/components/steps/steps.tsx","../../../../ui/src/components/button/button.tsx","../../../../ui/src/components/separator/separator.tsx","../../../../ui/src/components/input/input.tsx","../../../../ui/src/components/avatar/avatar.tsx","../../../../ui/src/components/kbd/kbd.tsx","../../../../ui/src/components/switch/switch.tsx","../../../../ssg/src/plugins/docs-theme/components.tsx","../../../../ssg/src/plugins/docs-theme/index.ts"],"mappings":"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"}
|