unplugin-docubook 1.0.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/LICENSE +21 -0
- package/README.md +16 -0
- package/dist/adapters/next-DNQX7_ln.d.ts +24 -0
- package/dist/adapters/next-DNQX7_ln.d.ts.map +1 -0
- package/dist/adapters/next.js +38 -0
- package/dist/adapters/next.js.map +1 -0
- package/dist/adapters/react-C9Vk6aTD.d.ts +24 -0
- package/dist/adapters/react-C9Vk6aTD.d.ts.map +1 -0
- package/dist/adapters/react.js +39 -0
- package/dist/adapters/react.js.map +1 -0
- package/dist/adapters/svelte-C-dhzdmU.d.ts +19 -0
- package/dist/adapters/svelte-C-dhzdmU.d.ts.map +1 -0
- package/dist/adapters/svelte.js +43 -0
- package/dist/adapters/svelte.js.map +1 -0
- package/dist/adapters/vue-BWv1EZit.d.ts +22 -0
- package/dist/adapters/vue-BWv1EZit.d.ts.map +1 -0
- package/dist/adapters/vue.js +41 -0
- package/dist/adapters/vue.js.map +1 -0
- package/dist/astro-BcckVQ-2.d.ts +19 -0
- package/dist/astro-BcckVQ-2.d.ts.map +1 -0
- package/dist/astro.js +16 -0
- package/dist/astro.js.map +1 -0
- package/dist/bun-DYPhytPs.d.ts +7 -0
- package/dist/bun-DYPhytPs.d.ts.map +1 -0
- package/dist/bun.js +9 -0
- package/dist/bun.js.map +1 -0
- package/dist/components/index-LWFtIGRd.d.ts +265 -0
- package/dist/components/index-LWFtIGRd.d.ts.map +1 -0
- package/dist/components/index.js +566 -0
- package/dist/components/index.js.map +1 -0
- package/dist/context-BKx0jIwX.js +49 -0
- package/dist/context-BKx0jIwX.js.map +1 -0
- package/dist/esbuild-BD42nX0_.d.ts +8 -0
- package/dist/esbuild-BD42nX0_.d.ts.map +1 -0
- package/dist/esbuild.js +9 -0
- package/dist/esbuild.js.map +1 -0
- package/dist/farm-C3XYk4nf.d.ts +7 -0
- package/dist/farm-C3XYk4nf.d.ts.map +1 -0
- package/dist/farm.js +9 -0
- package/dist/farm.js.map +1 -0
- package/dist/framework/index-98dEoo0g.d.ts +11 -0
- package/dist/framework/index-98dEoo0g.d.ts.map +1 -0
- package/dist/framework/index.js +29 -0
- package/dist/framework/index.js.map +1 -0
- package/dist/index-2f48-Fxc.d.ts +10 -0
- package/dist/index-2f48-Fxc.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/nuxt-BidHgMAG.d.ts +5 -0
- package/dist/nuxt-BidHgMAG.d.ts.map +1 -0
- package/dist/nuxt.js +21 -0
- package/dist/nuxt.js.map +1 -0
- package/dist/rolldown-CrcgSKP1.d.ts +8 -0
- package/dist/rolldown-CrcgSKP1.d.ts.map +1 -0
- package/dist/rolldown.js +9 -0
- package/dist/rolldown.js.map +1 -0
- package/dist/rollup-DDEc1C_K.d.ts +8 -0
- package/dist/rollup-DDEc1C_K.d.ts.map +1 -0
- package/dist/rollup.js +9 -0
- package/dist/rollup.js.map +1 -0
- package/dist/rspack-QbbymFlY.d.ts +7 -0
- package/dist/rspack-QbbymFlY.d.ts.map +1 -0
- package/dist/rspack.js +9 -0
- package/dist/rspack.js.map +1 -0
- package/dist/src-KZV_M01u.js +165 -0
- package/dist/src-KZV_M01u.js.map +1 -0
- package/dist/types-BQhWL5Qs.d.ts +34 -0
- package/dist/types-BQhWL5Qs.d.ts.map +1 -0
- package/dist/types-uxY1cMXO.d.ts +28 -0
- package/dist/types-uxY1cMXO.d.ts.map +1 -0
- package/dist/types.js +1 -0
- package/dist/vite-9CqZQPO-.d.ts +8 -0
- package/dist/vite-9CqZQPO-.d.ts.map +1 -0
- package/dist/vite.js +9 -0
- package/dist/vite.js.map +1 -0
- package/dist/webpack-CBuuXltg.d.ts +7 -0
- package/dist/webpack-CBuuXltg.d.ts.map +1 -0
- package/dist/webpack.js +9 -0
- package/dist/webpack.js.map +1 -0
- package/package.json +151 -0
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import React$1, { ComponentProps, ReactNode } from "react";
|
|
2
|
+
import * as react_jsx_runtime7 from "react/jsx-runtime";
|
|
3
|
+
import * as Icons from "lucide-react";
|
|
4
|
+
|
|
5
|
+
//#region src/components/react/context.d.ts
|
|
6
|
+
interface DocuBookLinkProps {
|
|
7
|
+
href: string;
|
|
8
|
+
children?: React$1.ReactNode;
|
|
9
|
+
className?: string;
|
|
10
|
+
target?: string;
|
|
11
|
+
rel?: string;
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
}
|
|
14
|
+
interface DocuBookImageProps {
|
|
15
|
+
src: string;
|
|
16
|
+
alt: string;
|
|
17
|
+
width?: number | string;
|
|
18
|
+
height?: number | string;
|
|
19
|
+
className?: string;
|
|
20
|
+
[key: string]: unknown;
|
|
21
|
+
}
|
|
22
|
+
interface DocuBookConfig {
|
|
23
|
+
/**
|
|
24
|
+
* Framework-specific Link component.
|
|
25
|
+
* Default: renders a native `<a>` tag.
|
|
26
|
+
*/
|
|
27
|
+
Link: React$1.ComponentType<DocuBookLinkProps>;
|
|
28
|
+
/**
|
|
29
|
+
* Framework-specific Image component.
|
|
30
|
+
* Default: renders a native `<img>` tag.
|
|
31
|
+
*/
|
|
32
|
+
Image: React$1.ComponentType<DocuBookImageProps>;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Provider to inject framework-specific primitives (Link, Image)
|
|
36
|
+
* into all DocuBook components.
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* // With Next.js adapter
|
|
40
|
+
* import { NextAdapter } from 'unplugin-docubook/adapters/next'
|
|
41
|
+
*
|
|
42
|
+
* <NextAdapter>
|
|
43
|
+
* <MDXContent />
|
|
44
|
+
* </NextAdapter>
|
|
45
|
+
*
|
|
46
|
+
* @example
|
|
47
|
+
* // Custom adapter
|
|
48
|
+
* import { DocuBookProvider } from 'unplugin-docubook/components'
|
|
49
|
+
*
|
|
50
|
+
* <DocuBookProvider value={{ Link: MyLink, Image: MyImage }}>
|
|
51
|
+
* <MDXContent />
|
|
52
|
+
* </DocuBookProvider>
|
|
53
|
+
*/
|
|
54
|
+
declare const DocuBookProvider: React$1.Provider<DocuBookConfig>;
|
|
55
|
+
/**
|
|
56
|
+
* Hook to access the current DocuBook framework primitives.
|
|
57
|
+
*/
|
|
58
|
+
declare function useDocuBook(): DocuBookConfig;
|
|
59
|
+
//# sourceMappingURL=context.d.ts.map
|
|
60
|
+
//#endregion
|
|
61
|
+
//#region src/components/react/Note.d.ts
|
|
62
|
+
interface NoteProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
63
|
+
title?: string;
|
|
64
|
+
type?: 'note' | 'danger' | 'warning' | 'success';
|
|
65
|
+
}
|
|
66
|
+
declare function Note({
|
|
67
|
+
className,
|
|
68
|
+
title,
|
|
69
|
+
type,
|
|
70
|
+
children,
|
|
71
|
+
...props
|
|
72
|
+
}: NoteProps): react_jsx_runtime7.JSX.Element;
|
|
73
|
+
//#endregion
|
|
74
|
+
//#region src/components/react/Card.d.ts
|
|
75
|
+
type IconName = keyof typeof Icons;
|
|
76
|
+
interface CardProps {
|
|
77
|
+
title: string;
|
|
78
|
+
icon?: IconName;
|
|
79
|
+
href?: string;
|
|
80
|
+
horizontal?: boolean;
|
|
81
|
+
children: ReactNode;
|
|
82
|
+
className?: string;
|
|
83
|
+
}
|
|
84
|
+
declare const Card: React$1.FC<CardProps>;
|
|
85
|
+
//#endregion
|
|
86
|
+
//#region src/components/react/CardGroup.d.ts
|
|
87
|
+
interface CardGroupProps {
|
|
88
|
+
children: React$1.ReactNode;
|
|
89
|
+
cols?: number;
|
|
90
|
+
className?: string;
|
|
91
|
+
}
|
|
92
|
+
declare function CardGroup({
|
|
93
|
+
children,
|
|
94
|
+
cols,
|
|
95
|
+
className
|
|
96
|
+
}: CardGroupProps): react_jsx_runtime7.JSX.Element;
|
|
97
|
+
//#endregion
|
|
98
|
+
//#region src/components/react/Accordion.d.ts
|
|
99
|
+
type AccordionProps = {
|
|
100
|
+
title: string;
|
|
101
|
+
children?: ReactNode;
|
|
102
|
+
defaultOpen?: boolean;
|
|
103
|
+
icon?: keyof typeof Icons;
|
|
104
|
+
};
|
|
105
|
+
declare const Accordion: React.FC<AccordionProps>;
|
|
106
|
+
//#endregion
|
|
107
|
+
//#region src/components/react/AccordionGroup.d.ts
|
|
108
|
+
interface AccordionGroupProps {
|
|
109
|
+
children: ReactNode;
|
|
110
|
+
className?: string;
|
|
111
|
+
}
|
|
112
|
+
declare const AccordionGroup: React$1.FC<AccordionGroupProps>;
|
|
113
|
+
//#endregion
|
|
114
|
+
//#region src/components/react/Stepper.d.ts
|
|
115
|
+
declare function Stepper({
|
|
116
|
+
children
|
|
117
|
+
}: {
|
|
118
|
+
children: React$1.ReactNode;
|
|
119
|
+
}): react_jsx_runtime7.JSX.Element;
|
|
120
|
+
declare function StepperItem({
|
|
121
|
+
children,
|
|
122
|
+
title
|
|
123
|
+
}: {
|
|
124
|
+
children: React$1.ReactNode;
|
|
125
|
+
title?: string;
|
|
126
|
+
}): react_jsx_runtime7.JSX.Element;
|
|
127
|
+
//# sourceMappingURL=Stepper.d.ts.map
|
|
128
|
+
//#endregion
|
|
129
|
+
//#region src/components/react/FileTree.d.ts
|
|
130
|
+
interface FileTreeProps {
|
|
131
|
+
name: string;
|
|
132
|
+
children?: React$1.ReactNode;
|
|
133
|
+
}
|
|
134
|
+
declare function Files({
|
|
135
|
+
children
|
|
136
|
+
}: {
|
|
137
|
+
children: React$1.ReactNode;
|
|
138
|
+
}): react_jsx_runtime7.JSX.Element;
|
|
139
|
+
declare function Folder({
|
|
140
|
+
name,
|
|
141
|
+
children
|
|
142
|
+
}: FileTreeProps): react_jsx_runtime7.JSX.Element;
|
|
143
|
+
declare function File({
|
|
144
|
+
name
|
|
145
|
+
}: FileTreeProps): react_jsx_runtime7.JSX.Element;
|
|
146
|
+
//#endregion
|
|
147
|
+
//#region src/components/react/Kbd.d.ts
|
|
148
|
+
interface KbdProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
149
|
+
show?: string;
|
|
150
|
+
type?: 'window' | 'mac';
|
|
151
|
+
children?: React$1.ReactNode;
|
|
152
|
+
}
|
|
153
|
+
declare function Kbd({
|
|
154
|
+
show: keyProp,
|
|
155
|
+
type,
|
|
156
|
+
children,
|
|
157
|
+
...props
|
|
158
|
+
}: KbdProps): react_jsx_runtime7.JSX.Element;
|
|
159
|
+
//#endregion
|
|
160
|
+
//#region src/components/react/Tooltip.d.ts
|
|
161
|
+
interface TooltipProps {
|
|
162
|
+
text: string;
|
|
163
|
+
tip: string;
|
|
164
|
+
}
|
|
165
|
+
declare function Tooltip({
|
|
166
|
+
text,
|
|
167
|
+
tip
|
|
168
|
+
}: TooltipProps): react_jsx_runtime7.JSX.Element;
|
|
169
|
+
//#endregion
|
|
170
|
+
//#region src/components/react/Youtube.d.ts
|
|
171
|
+
interface YoutubeProps {
|
|
172
|
+
videoId: string;
|
|
173
|
+
className?: string;
|
|
174
|
+
}
|
|
175
|
+
declare function Youtube({
|
|
176
|
+
videoId,
|
|
177
|
+
className
|
|
178
|
+
}: YoutubeProps): react_jsx_runtime7.JSX.Element;
|
|
179
|
+
//#endregion
|
|
180
|
+
//#region src/components/react/Button.d.ts
|
|
181
|
+
type ButtonProps = {
|
|
182
|
+
icon?: keyof typeof Icons;
|
|
183
|
+
text?: string;
|
|
184
|
+
href: string;
|
|
185
|
+
target?: "_blank" | "_self" | "_parent" | "_top";
|
|
186
|
+
size?: "sm" | "md" | "lg";
|
|
187
|
+
variation?: "primary" | "accent" | "outline";
|
|
188
|
+
};
|
|
189
|
+
declare const Button: React$1.FC<ButtonProps>;
|
|
190
|
+
//#endregion
|
|
191
|
+
//#region src/components/react/Link.d.ts
|
|
192
|
+
interface DocuLinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
193
|
+
href: string;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Framework-agnostic Link component.
|
|
197
|
+
* Named `DocuLink` to avoid collision with native HTML `<link>` in MDX.
|
|
198
|
+
*/
|
|
199
|
+
declare function DocuLink({
|
|
200
|
+
href,
|
|
201
|
+
...props
|
|
202
|
+
}: DocuLinkProps): react_jsx_runtime7.JSX.Element | null;
|
|
203
|
+
//#endregion
|
|
204
|
+
//#region src/components/react/Image.d.ts
|
|
205
|
+
interface DocuImageProps {
|
|
206
|
+
src: string;
|
|
207
|
+
alt?: string;
|
|
208
|
+
width?: number | string;
|
|
209
|
+
height?: number | string;
|
|
210
|
+
className?: string;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Framework-agnostic Image component with lightbox.
|
|
214
|
+
* Uses useDocuBook().Image for the rendering primitive.
|
|
215
|
+
*/
|
|
216
|
+
declare function DocuImage({
|
|
217
|
+
src,
|
|
218
|
+
alt,
|
|
219
|
+
width,
|
|
220
|
+
height,
|
|
221
|
+
className,
|
|
222
|
+
...props
|
|
223
|
+
}: DocuImageProps): react_jsx_runtime7.JSX.Element | null;
|
|
224
|
+
//#endregion
|
|
225
|
+
//#region src/components/react/Release.d.ts
|
|
226
|
+
interface ReleaseProps {
|
|
227
|
+
version: string;
|
|
228
|
+
title: string;
|
|
229
|
+
date?: string;
|
|
230
|
+
children: React$1.ReactNode;
|
|
231
|
+
}
|
|
232
|
+
declare function Release({
|
|
233
|
+
version,
|
|
234
|
+
title,
|
|
235
|
+
date,
|
|
236
|
+
children
|
|
237
|
+
}: ReleaseProps): react_jsx_runtime7.JSX.Element;
|
|
238
|
+
interface ChangesProps {
|
|
239
|
+
type: 'added' | 'fixed' | 'improved' | 'deprecated' | 'removed';
|
|
240
|
+
children: React$1.ReactNode;
|
|
241
|
+
}
|
|
242
|
+
declare function Changes({
|
|
243
|
+
type,
|
|
244
|
+
children
|
|
245
|
+
}: ChangesProps): react_jsx_runtime7.JSX.Element;
|
|
246
|
+
//#endregion
|
|
247
|
+
//#region src/components/react/Pre.d.ts
|
|
248
|
+
type PreProps = ComponentProps<'pre'> & {
|
|
249
|
+
raw?: string;
|
|
250
|
+
'data-title'?: string;
|
|
251
|
+
};
|
|
252
|
+
declare function Pre({
|
|
253
|
+
children,
|
|
254
|
+
raw,
|
|
255
|
+
...rest
|
|
256
|
+
}: PreProps): react_jsx_runtime7.JSX.Element;
|
|
257
|
+
//#endregion
|
|
258
|
+
//#region src/components/react/Copy.d.ts
|
|
259
|
+
type CopyProps = {
|
|
260
|
+
content: string;
|
|
261
|
+
};
|
|
262
|
+
declare const Copy: React$1.FC<CopyProps>;
|
|
263
|
+
//#endregion
|
|
264
|
+
export { Accordion, AccordionGroup, Button, Card, CardGroup, Changes, Copy, type DocuBookConfig, type DocuBookImageProps, type DocuBookLinkProps, DocuBookProvider, DocuImage, DocuLink, File, Files, Folder, Kbd, Note, Pre, Release, Stepper, StepperItem, Tooltip, Youtube, useDocuBook };
|
|
265
|
+
//# sourceMappingURL=index-LWFtIGRd.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-LWFtIGRd.d.ts","names":[],"sources":["../../src/components/react/context.tsx","../../src/components/react/Note.tsx","../../src/components/react/Card.tsx","../../src/components/react/CardGroup.tsx","../../src/components/react/Accordion.tsx","../../src/components/react/AccordionGroup.tsx","../../src/components/react/Stepper.tsx","../../src/components/react/FileTree.tsx","../../src/components/react/Kbd.tsx","../../src/components/react/Tooltip.tsx","../../src/components/react/Youtube.tsx","../../src/components/react/Button.tsx","../../src/components/react/Link.tsx","../../src/components/react/Image.tsx","../../src/components/react/Release.tsx","../../src/components/react/Pre.tsx","../../src/components/react/Copy.tsx"],"sourcesContent":[],"mappings":"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"}
|