@theguild/components 8.0.0-alpha-20241120102532-796443cefde986fe82579346506d05e4f6320679 → 8.0.0-alpha-20241120110520-c3f9e095066787ab69ed8ccc219bf96e24afaae8
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/components/index.d.mts +1 -1
- package/dist/components/index.js +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/logos/index.js +1 -1
- package/dist/products.js +14 -14
- package/dist/server/index.d.mts +6 -4
- package/dist/server/mdx-components.d.mts +193 -2
- package/dist/server/mdx-components.js +2 -1
- package/package.json +1 -1
- package/style.css +0 -6
|
@@ -24,8 +24,8 @@ export { CookiesConsent, CookiesConsentProps } from './cookies-consent.mjs';
|
|
|
24
24
|
export { Heading, HeadingProps } from './heading.mjs';
|
|
25
25
|
export { InfoCard, InfoCardProps } from './info-card.mjs';
|
|
26
26
|
export { Stud, StudProps } from './stud.mjs';
|
|
27
|
-
export { Giscus } from './giscus.mjs';
|
|
28
27
|
export { ExploreMainProductCards, ExploreMainProductCardsProps } from './explore-main-product-cards.mjs';
|
|
28
|
+
export { Giscus } from './giscus.mjs';
|
|
29
29
|
export { GraphQLConfCard, GraphQLConfCardProps } from './hive-navigation/graphql-conf-card.mjs';
|
|
30
30
|
import 'react';
|
|
31
31
|
import 'url';
|
package/dist/components/index.js
CHANGED
|
@@ -27,8 +27,8 @@ export * from "./cookies-consent";
|
|
|
27
27
|
export * from "./heading";
|
|
28
28
|
export * from "./info-card";
|
|
29
29
|
export * from "./stud";
|
|
30
|
-
import { Giscus } from "./giscus";
|
|
31
30
|
export * from "./explore-main-product-cards";
|
|
31
|
+
import { Giscus } from "./giscus";
|
|
32
32
|
export {
|
|
33
33
|
Anchor,
|
|
34
34
|
AncillaryProductCard,
|
package/dist/index.d.mts
CHANGED
|
@@ -27,8 +27,8 @@ export { CookiesConsent, CookiesConsentProps } from './components/cookies-consen
|
|
|
27
27
|
export { Heading, HeadingProps } from './components/heading.mjs';
|
|
28
28
|
export { InfoCard, InfoCardProps } from './components/info-card.mjs';
|
|
29
29
|
export { Stud, StudProps } from './components/stud.mjs';
|
|
30
|
-
export { Giscus } from './components/giscus.mjs';
|
|
31
30
|
export { ExploreMainProductCards, ExploreMainProductCardsProps } from './components/explore-main-product-cards.mjs';
|
|
31
|
+
export { Giscus } from './components/giscus.mjs';
|
|
32
32
|
export { PRODUCTS } from './products.mjs';
|
|
33
33
|
export { IEditorProps, IFeatureListProps, IHeroGradientProps, IHeroIllustrationProps, IHeroMarketplaceProps, IHeroVideoProps, IInfoListProps, ILink, IMarketplaceItemProps, IMarketplaceItemsProps, IMarketplaceListProps, IMarketplaceSearchProps, ISchemaPageProps } from './types/components.mjs';
|
|
34
34
|
export { AngularLettermark, ConductorLettermark, ConfigLettermark, EnvelopLettermark, FetsLettermark, GraphQLESlintLettermark, HeltinLettermark, InspectorLettermark, KitQLLettermark, ModulesLettermark, SSELettermark, ScalarsLettermark, SofaLettermark, StitchingLettermark, ToolsLettermark, WSLettermark, WhatsAppLettermark } from './logos/index.mjs';
|
package/dist/logos/index.js
CHANGED
|
@@ -28,7 +28,7 @@ const createLettermarkLogo = (text) => {
|
|
|
28
28
|
role: "img",
|
|
29
29
|
...props,
|
|
30
30
|
className: cn(
|
|
31
|
-
"inline-flex items-center justify-center text-xs font-medium
|
|
31
|
+
"inline-flex items-center justify-center text-xs font-medium",
|
|
32
32
|
props.className
|
|
33
33
|
),
|
|
34
34
|
children: text
|
package/dist/products.js
CHANGED
|
@@ -50,20 +50,6 @@ const PRODUCTS = {
|
|
|
50
50
|
logo: YogaIcon,
|
|
51
51
|
primaryColor: "#c026d3"
|
|
52
52
|
},
|
|
53
|
-
CODEGEN: {
|
|
54
|
-
name: "Codegen",
|
|
55
|
-
title: "Generation of typed queries, mutations, subscriptions and typed GraphQL resolvers",
|
|
56
|
-
href: "https://the-guild.dev/graphql/codegen",
|
|
57
|
-
logo: CodegenIcon,
|
|
58
|
-
primaryColor: "#0284c7"
|
|
59
|
-
},
|
|
60
|
-
NEXTRA: {
|
|
61
|
-
name: "Nextra",
|
|
62
|
-
title: "Simple, powerful and flexible site generation framework with everything you love from Next.js",
|
|
63
|
-
href: "https://nextra.site",
|
|
64
|
-
logo: NextraLogo,
|
|
65
|
-
primaryColor: "#000"
|
|
66
|
-
},
|
|
67
53
|
CONDUCTOR: {
|
|
68
54
|
name: "Conductor",
|
|
69
55
|
title: "All-in-one GraphQL Gateway",
|
|
@@ -92,6 +78,13 @@ const PRODUCTS = {
|
|
|
92
78
|
logo: InspectorLettermark,
|
|
93
79
|
primaryColor: "#59f79d"
|
|
94
80
|
},
|
|
81
|
+
CODEGEN: {
|
|
82
|
+
name: "Codegen",
|
|
83
|
+
title: "Generation of typed queries, mutations, subscriptions and typed GraphQL resolvers",
|
|
84
|
+
href: "https://the-guild.dev/graphql/codegen",
|
|
85
|
+
logo: CodegenIcon,
|
|
86
|
+
primaryColor: "#0284c7"
|
|
87
|
+
},
|
|
95
88
|
TOOLS: {
|
|
96
89
|
name: "Tools",
|
|
97
90
|
title: "A set of utilities for faster GraphQL development",
|
|
@@ -182,6 +175,13 @@ const PRODUCTS = {
|
|
|
182
175
|
href: "https://the-guild.dev/heltin",
|
|
183
176
|
logo: HeltinLettermark,
|
|
184
177
|
primaryColor: "#1d90ff"
|
|
178
|
+
},
|
|
179
|
+
NEXTRA: {
|
|
180
|
+
name: "Nextra",
|
|
181
|
+
title: "Simple, powerful and flexible site generation framework with everything you love from Next.js",
|
|
182
|
+
href: "https://nextra.site",
|
|
183
|
+
logo: NextraLogo,
|
|
184
|
+
primaryColor: "#000"
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
187
|
const FOUR_MAIN_PRODUCTS = [
|
package/dist/server/index.d.mts
CHANGED
|
@@ -5,11 +5,13 @@ export { compileMdx } from 'nextra/compile';
|
|
|
5
5
|
export { createIndexPage, getPageMap } from 'nextra/page-map';
|
|
6
6
|
export { fetchPackageInfo } from './npm.mjs';
|
|
7
7
|
export { GuildLayout, getDefaultMetadata } from './theme-layout.mjs';
|
|
8
|
-
import '
|
|
8
|
+
import 'next/image';
|
|
9
|
+
import 'nextra';
|
|
10
|
+
import 'nextra/components';
|
|
11
|
+
import 'nextra/mdx-components/pre/index';
|
|
12
|
+
import 'react/jsx-runtime';
|
|
9
13
|
import 'react';
|
|
10
14
|
import 'next';
|
|
11
|
-
import 'nextra
|
|
15
|
+
import 'nextra-theme-docs';
|
|
12
16
|
import '../components/hive-navigation/index.mjs';
|
|
13
|
-
import 'react/jsx-runtime';
|
|
14
17
|
import '../components/hive-navigation/graphql-conf-card.mjs';
|
|
15
|
-
import 'next/image';
|
|
@@ -1,5 +1,196 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as next_image from 'next/image';
|
|
2
|
+
import * as nextra from 'nextra';
|
|
3
|
+
import * as nextra_components from 'nextra/components';
|
|
4
|
+
import * as nextra_mdx_components_pre_index from 'nextra/mdx-components/pre/index';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import * as react from 'react';
|
|
2
7
|
|
|
3
|
-
declare const useMDXComponents:
|
|
8
|
+
declare const useMDXComponents: (components: object) => {
|
|
9
|
+
symbol?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSymbolElement>, "ref">> | undefined;
|
|
10
|
+
object?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "ref">> | undefined;
|
|
11
|
+
map?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "ref">> | undefined;
|
|
12
|
+
filter?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFilterElement>, "ref">> | undefined;
|
|
13
|
+
footer?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
14
|
+
article?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
15
|
+
title?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "ref">> | undefined;
|
|
16
|
+
menu?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MenuHTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
17
|
+
search?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
18
|
+
big?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
19
|
+
link?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "ref">> | undefined;
|
|
20
|
+
small?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
21
|
+
sub?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
22
|
+
sup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
23
|
+
div?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">> | undefined;
|
|
24
|
+
slot?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>, "ref">> | undefined;
|
|
25
|
+
style?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "ref">> | undefined;
|
|
26
|
+
span?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">> | undefined;
|
|
27
|
+
button?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">> | undefined;
|
|
28
|
+
dialog?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "ref">> | undefined;
|
|
29
|
+
figure?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
30
|
+
form?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "ref">> | undefined;
|
|
31
|
+
main?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
32
|
+
menuitem?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
33
|
+
option?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "ref">> | undefined;
|
|
34
|
+
switch?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSwitchElement>, "ref">> | undefined;
|
|
35
|
+
table: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">> | (({ className, ...props }: Omit<react.DetailedHTMLProps<react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">) => react_jsx_runtime.JSX.Element);
|
|
36
|
+
text?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGTextElementAttributes<SVGTextElement>, "ref">> | undefined;
|
|
37
|
+
time?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "ref">> | undefined;
|
|
38
|
+
code: keyof react.JSX.IntrinsicElements | react.FC<react.ClassAttributes<HTMLElement> & react.HTMLAttributes<HTMLElement> & {
|
|
39
|
+
"data-language"?: string;
|
|
40
|
+
}> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">>;
|
|
41
|
+
path?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPathElement>, "ref">> | undefined;
|
|
42
|
+
set?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSetElement>, "ref">> | undefined;
|
|
43
|
+
a: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">>;
|
|
44
|
+
abbr?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
45
|
+
address?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
46
|
+
area?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "ref">> | undefined;
|
|
47
|
+
aside?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
48
|
+
audio?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "ref">> | undefined;
|
|
49
|
+
b?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
50
|
+
base?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "ref">> | undefined;
|
|
51
|
+
bdi?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
52
|
+
bdo?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
53
|
+
blockquote: keyof react.JSX.IntrinsicElements | react.FunctionComponent<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>> | react.FC<Omit<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "ref">>;
|
|
54
|
+
body?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "ref">> | undefined;
|
|
55
|
+
br?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "ref">> | undefined;
|
|
56
|
+
canvas?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "ref">> | undefined;
|
|
57
|
+
caption?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
58
|
+
center?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
59
|
+
cite?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
60
|
+
col?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref">> | undefined;
|
|
61
|
+
colgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref">> | undefined;
|
|
62
|
+
data?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "ref">> | undefined;
|
|
63
|
+
datalist?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "ref">> | undefined;
|
|
64
|
+
dd?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
65
|
+
del?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref">> | undefined;
|
|
66
|
+
details: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>> | react.FC<Omit<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "ref">>;
|
|
67
|
+
dfn?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
68
|
+
dl?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "ref">> | undefined;
|
|
69
|
+
dt?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
70
|
+
em?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
71
|
+
embed?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "ref">> | undefined;
|
|
72
|
+
fieldset?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "ref">> | undefined;
|
|
73
|
+
figcaption?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
74
|
+
h1: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
75
|
+
h2: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
76
|
+
h3: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
77
|
+
h4: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
78
|
+
h5: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
79
|
+
h6: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
80
|
+
head?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "ref">> | undefined;
|
|
81
|
+
header?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
82
|
+
hgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
83
|
+
hr: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "ref">> | ((props: Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "ref">) => react_jsx_runtime.JSX.Element);
|
|
84
|
+
html?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "ref">> | undefined;
|
|
85
|
+
i?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
86
|
+
iframe?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "ref">> | undefined;
|
|
87
|
+
input?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">> | undefined;
|
|
88
|
+
ins?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref">> | undefined;
|
|
89
|
+
kbd?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
90
|
+
keygen?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.KeygenHTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
91
|
+
label?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "ref">> | undefined;
|
|
92
|
+
legend?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "ref">> | undefined;
|
|
93
|
+
li: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref">> | ((props: Omit<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref">) => react_jsx_runtime.JSX.Element);
|
|
94
|
+
mark?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
95
|
+
meta?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "ref">> | undefined;
|
|
96
|
+
meter?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "ref">> | undefined;
|
|
97
|
+
nav?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
98
|
+
noindex?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
99
|
+
noscript?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
100
|
+
ol: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref">> | ((props: Omit<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref">) => react_jsx_runtime.JSX.Element);
|
|
101
|
+
optgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "ref">> | undefined;
|
|
102
|
+
output?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "ref">> | undefined;
|
|
103
|
+
p: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">> | ((props: Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">) => react_jsx_runtime.JSX.Element);
|
|
104
|
+
param?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "ref">> | undefined;
|
|
105
|
+
picture?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
106
|
+
pre: keyof react.JSX.IntrinsicElements | react.FC<nextra_mdx_components_pre_index.PreProps> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "ref">>;
|
|
107
|
+
progress?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "ref">> | undefined;
|
|
108
|
+
q?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "ref">> | undefined;
|
|
109
|
+
rp?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
110
|
+
rt?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
111
|
+
ruby?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
112
|
+
s?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
113
|
+
samp?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
114
|
+
script?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "ref">> | undefined;
|
|
115
|
+
section?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
116
|
+
select?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "ref">> | undefined;
|
|
117
|
+
source?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "ref">> | undefined;
|
|
118
|
+
strong?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
119
|
+
summary: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | typeof nextra_components.Summary;
|
|
120
|
+
template?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "ref">> | undefined;
|
|
121
|
+
tbody?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
|
|
122
|
+
td: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>> | react.FC<Omit<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref">>;
|
|
123
|
+
textarea?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref">> | undefined;
|
|
124
|
+
tfoot?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
|
|
125
|
+
th: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>> | react.FC<Omit<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref">>;
|
|
126
|
+
thead?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
|
|
127
|
+
tr: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref">>;
|
|
128
|
+
track?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "ref">> | undefined;
|
|
129
|
+
u?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
130
|
+
ul: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref">> | ((props: Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref">) => react_jsx_runtime.JSX.Element);
|
|
131
|
+
var?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
132
|
+
video?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "ref">> | undefined;
|
|
133
|
+
wbr?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
134
|
+
webview?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, "ref">> | undefined;
|
|
135
|
+
svg?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSVGElement>, "ref">> | undefined;
|
|
136
|
+
animate?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
137
|
+
animateMotion?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
138
|
+
animateTransform?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
139
|
+
circle?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGCircleElement>, "ref">> | undefined;
|
|
140
|
+
clipPath?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGClipPathElement>, "ref">> | undefined;
|
|
141
|
+
defs?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGDefsElement>, "ref">> | undefined;
|
|
142
|
+
desc?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGDescElement>, "ref">> | undefined;
|
|
143
|
+
ellipse?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGEllipseElement>, "ref">> | undefined;
|
|
144
|
+
feBlend?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEBlendElement>, "ref">> | undefined;
|
|
145
|
+
feColorMatrix?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEColorMatrixElement>, "ref">> | undefined;
|
|
146
|
+
feComponentTransfer?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEComponentTransferElement>, "ref">> | undefined;
|
|
147
|
+
feComposite?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFECompositeElement>, "ref">> | undefined;
|
|
148
|
+
feConvolveMatrix?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEConvolveMatrixElement>, "ref">> | undefined;
|
|
149
|
+
feDiffuseLighting?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDiffuseLightingElement>, "ref">> | undefined;
|
|
150
|
+
feDisplacementMap?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDisplacementMapElement>, "ref">> | undefined;
|
|
151
|
+
feDistantLight?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDistantLightElement>, "ref">> | undefined;
|
|
152
|
+
feDropShadow?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDropShadowElement>, "ref">> | undefined;
|
|
153
|
+
feFlood?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFloodElement>, "ref">> | undefined;
|
|
154
|
+
feFuncA?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncAElement>, "ref">> | undefined;
|
|
155
|
+
feFuncB?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncBElement>, "ref">> | undefined;
|
|
156
|
+
feFuncG?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncGElement>, "ref">> | undefined;
|
|
157
|
+
feFuncR?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncRElement>, "ref">> | undefined;
|
|
158
|
+
feGaussianBlur?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEGaussianBlurElement>, "ref">> | undefined;
|
|
159
|
+
feImage?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEImageElement>, "ref">> | undefined;
|
|
160
|
+
feMerge?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEMergeElement>, "ref">> | undefined;
|
|
161
|
+
feMergeNode?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEMergeNodeElement>, "ref">> | undefined;
|
|
162
|
+
feMorphology?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEMorphologyElement>, "ref">> | undefined;
|
|
163
|
+
feOffset?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEOffsetElement>, "ref">> | undefined;
|
|
164
|
+
fePointLight?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEPointLightElement>, "ref">> | undefined;
|
|
165
|
+
feSpecularLighting?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFESpecularLightingElement>, "ref">> | undefined;
|
|
166
|
+
feSpotLight?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFESpotLightElement>, "ref">> | undefined;
|
|
167
|
+
feTile?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFETileElement>, "ref">> | undefined;
|
|
168
|
+
feTurbulence?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFETurbulenceElement>, "ref">> | undefined;
|
|
169
|
+
foreignObject?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGForeignObjectElement>, "ref">> | undefined;
|
|
170
|
+
g?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGGElement>, "ref">> | undefined;
|
|
171
|
+
image?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGImageElement>, "ref">> | undefined;
|
|
172
|
+
line?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGLineElementAttributes<SVGLineElement>, "ref">> | undefined;
|
|
173
|
+
linearGradient?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGLinearGradientElement>, "ref">> | undefined;
|
|
174
|
+
marker?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGMarkerElement>, "ref">> | undefined;
|
|
175
|
+
mask?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGMaskElement>, "ref">> | undefined;
|
|
176
|
+
metadata?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGMetadataElement>, "ref">> | undefined;
|
|
177
|
+
mpath?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
178
|
+
pattern?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPatternElement>, "ref">> | undefined;
|
|
179
|
+
polygon?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPolygonElement>, "ref">> | undefined;
|
|
180
|
+
polyline?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPolylineElement>, "ref">> | undefined;
|
|
181
|
+
radialGradient?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGRadialGradientElement>, "ref">> | undefined;
|
|
182
|
+
rect?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGRectElement>, "ref">> | undefined;
|
|
183
|
+
stop?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGStopElement>, "ref">> | undefined;
|
|
184
|
+
textPath?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGTextPathElement>, "ref">> | undefined;
|
|
185
|
+
tspan?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGTSpanElement>, "ref">> | undefined;
|
|
186
|
+
use?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGUseElement>, "ref">> | undefined;
|
|
187
|
+
view?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGViewElement>, "ref">> | undefined;
|
|
188
|
+
wrapper: nextra.MDXWrapper | (({ toc, children, ...props }: {
|
|
189
|
+
toc: nextra.Heading[];
|
|
190
|
+
children: react.ReactNode;
|
|
191
|
+
metadata: nextra.NextraMetadata;
|
|
192
|
+
}) => react_jsx_runtime.JSX.Element);
|
|
193
|
+
img: react.FC<next_image.ImageProps>;
|
|
194
|
+
};
|
|
4
195
|
|
|
5
196
|
export { useMDXComponents };
|
|
@@ -3,6 +3,7 @@ import fs from "fs/promises";
|
|
|
3
3
|
import path from "path";
|
|
4
4
|
import clsx from "clsx";
|
|
5
5
|
import { useMDXComponents as getDocsMDXComponents } from "nextra-theme-docs";
|
|
6
|
+
import { addBasePath } from "next/dist/client/add-base-path";
|
|
6
7
|
const docsComponents = getDocsMDXComponents({
|
|
7
8
|
async source({ src, type, ...props }) {
|
|
8
9
|
if (!src) {
|
|
@@ -24,7 +25,7 @@ const docsComponents = getDocsMDXComponents({
|
|
|
24
25
|
if (ext === "mov") {
|
|
25
26
|
ext = "quicktime";
|
|
26
27
|
}
|
|
27
|
-
return /* @__PURE__ */ jsx("source", { ...props, src, type: type || `video/${ext}` });
|
|
28
|
+
return /* @__PURE__ */ jsx("source", { ...props, src: addBasePath(src), type: type || `video/${ext}` });
|
|
28
29
|
},
|
|
29
30
|
video: ({ className, children, ...props }) => /* @__PURE__ */ jsxs("video", { className: clsx("mt-6 w-full", className), autoPlay: true, loop: true, muted: true, ...props, children: [
|
|
30
31
|
children,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theguild/components",
|
|
3
|
-
"version": "8.0.0-alpha-
|
|
3
|
+
"version": "8.0.0-alpha-20241120110520-c3f9e095066787ab69ed8ccc219bf96e24afaae8",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/the-guild-org/docs",
|
|
6
6
|
"directory": "packages/components"
|
package/style.css
CHANGED
|
@@ -5,12 +5,6 @@
|
|
|
5
5
|
@import 'tailwindcss/components' layer(l-components);
|
|
6
6
|
@import 'tailwindcss/utilities';
|
|
7
7
|
|
|
8
|
-
/*html {*/
|
|
9
|
-
/* !* font from tailwindcss/base is overwritten by Nextra styles *!*/
|
|
10
|
-
/* font-family: var(--font-sans), ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',*/
|
|
11
|
-
/* 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';*/
|
|
12
|
-
/*}*/
|
|
13
|
-
|
|
14
8
|
/* #region hamburger mobile menu */
|
|
15
9
|
|
|
16
10
|
.light .nextra-sidebar-container input {
|