@theguild/components 8.0.0-alpha-20241205150715-1c38acac57eaf933887bfbbb59a87a939b658817 → 8.0.0-alpha-20241205181447-87125d0b44dc0d1a7ce638de956987d05110bb5e
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/contact-us.d.mts +18 -0
- package/dist/components/contact-us.js +32 -0
- package/dist/components/cookies-consent.d.mts +2 -1
- package/dist/components/cookies-consent.js +25 -9
- package/dist/components/explore-main-product-cards.js +1 -1
- package/dist/components/get-your-api-game-right-section.js +4 -16
- package/dist/components/heading.js +1 -0
- package/dist/components/{hive-footer.d.mts → hive-footer/index.d.mts} +8 -5
- package/dist/components/{hive-footer.js → hive-footer/index.js} +18 -26
- package/dist/components/hive-navigation/graphql-conf-card.js +1 -1
- package/dist/components/hive-navigation/index.d.mts +11 -18
- package/dist/components/hive-navigation/index.js +40 -72
- package/dist/components/icons/index.d.mts +1 -1
- package/dist/components/icons/index.js +28 -28
- package/dist/components/icons/stellate.js +12 -0
- package/dist/components/index.d.mts +6 -5
- package/dist/components/index.js +4 -12
- package/dist/components/{tools-and-libraries-cards → product-card}/hive-decoration.js +1 -1
- package/dist/components/{tools-and-libraries-cards → product-card}/hive-gateway-decoration.js +1 -1
- package/dist/components/product-card/index.d.mts +13 -0
- package/dist/components/product-card/index.js +101 -0
- package/dist/components/{tools-and-libraries-cards → product-card}/mesh-decoration.js +1 -1
- package/dist/components/product-card/yoga-decoration.d.mts +3 -0
- package/dist/components/{tools-and-libraries-cards → product-card}/yoga-decoration.js +1 -1
- package/dist/components/schema-type.js +1 -1
- package/dist/components/stud.d.mts +2 -1
- package/dist/components/tools-and-libraries-cards/index.d.mts +3 -12
- package/dist/components/tools-and-libraries-cards/index.js +12 -87
- package/dist/index.d.mts +8 -8
- package/dist/index.js +3 -1
- package/dist/logos/guild.js +1 -1
- package/dist/logos/index.d.mts +20 -21
- package/dist/logos/index.js +16 -13
- package/dist/products.d.mts +9 -6
- package/dist/products.js +20 -13
- package/dist/server/index.d.mts +5 -4
- package/dist/server/index.js +2 -1
- package/dist/server/mdx-components.d.mts +183 -204
- package/dist/server/mdx-components.js +2 -1
- package/dist/server/next.config.js +16 -2
- package/dist/server/theme-layout.d.mts +7 -1
- package/dist/server/theme-layout.js +29 -13
- package/dist/types/components.d.mts +1 -9
- package/package.json +3 -3
- package/style.css +16 -43
- package/dist/components/footer.d.mts +0 -9
- package/dist/components/footer.js +0 -116
- package/dist/components/guild-navbar-logo.d.mts +0 -19
- package/dist/components/guild-navbar-logo.js +0 -62
- package/dist/helpers/render-slot.d.mts +0 -3
- package/dist/helpers/render-slot.js +0 -21
- /package/dist/components/{tools-and-libraries-cards/hive-decoration.d.mts → icons/stellate.d.mts} +0 -0
- /package/dist/components/{tools-and-libraries-cards/hive-gateway-decoration.d.mts → product-card/hive-decoration.d.mts} +0 -0
- /package/dist/components/{tools-and-libraries-cards/mesh-decoration.d.mts → product-card/hive-gateway-decoration.d.mts} +0 -0
- /package/dist/components/{tools-and-libraries-cards/yoga-decoration.d.mts → product-card/mesh-decoration.d.mts} +0 -0
|
@@ -1,216 +1,195 @@
|
|
|
1
|
+
import * as next_image from 'next/image';
|
|
1
2
|
import * as nextra from 'nextra';
|
|
2
|
-
import * as nextra_components from 'nextra/components';
|
|
3
3
|
import * as nextra_mdx_components_pre_index from 'nextra/mdx-components/pre/index';
|
|
4
|
-
import * as next_image from 'next/image';
|
|
5
|
-
import * as next_dist_shared_lib_get_img_props from 'next/dist/shared/lib/get-img-props';
|
|
6
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
5
|
import * as react from 'react';
|
|
8
6
|
|
|
9
|
-
declare const useMDXComponents: (components
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
button?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>> | undefined;
|
|
26
|
-
canvas?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>> | undefined;
|
|
27
|
-
caption?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
|
|
28
|
-
center?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
|
|
29
|
-
cite?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
|
|
30
|
-
code: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | react.FC<react.ClassAttributes<HTMLElement> & react.HTMLAttributes<HTMLElement> & {
|
|
7
|
+
declare const useMDXComponents: (components?: object) => {
|
|
8
|
+
symbol?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSymbolElement>, "ref">> | undefined;
|
|
9
|
+
object?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "ref">> | undefined;
|
|
10
|
+
map?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "ref">> | undefined;
|
|
11
|
+
filter?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFilterElement>, "ref">> | undefined;
|
|
12
|
+
footer?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
13
|
+
article?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
14
|
+
title?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "ref">> | undefined;
|
|
15
|
+
menu?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MenuHTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
16
|
+
search?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
17
|
+
big?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
18
|
+
link?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "ref">> | undefined;
|
|
19
|
+
small?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
20
|
+
sub?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
21
|
+
sup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
22
|
+
code: keyof react.JSX.IntrinsicElements | react.FC<react.ClassAttributes<HTMLElement> & react.HTMLAttributes<HTMLElement> & {
|
|
31
23
|
"data-language"?: string;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
input?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>> | undefined;
|
|
87
|
-
ins?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>> | undefined;
|
|
88
|
-
kbd?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
|
|
89
|
-
keygen?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.KeygenHTMLAttributes<HTMLElement>, HTMLElement>> | undefined;
|
|
90
|
-
label?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>> | undefined;
|
|
91
|
-
legend?: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>> | undefined;
|
|
92
|
-
li: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>> | ((props: react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>) => react_jsx_runtime.JSX.Element);
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
path?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGPathElement>> | undefined;
|
|
196
|
-
pattern?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGPatternElement>> | undefined;
|
|
197
|
-
polygon?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGPolygonElement>> | undefined;
|
|
198
|
-
polyline?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGPolylineElement>> | undefined;
|
|
199
|
-
radialGradient?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGRadialGradientElement>> | undefined;
|
|
200
|
-
rect?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGRectElement>> | undefined;
|
|
201
|
-
set?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGSetElement>> | undefined;
|
|
202
|
-
stop?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGStopElement>> | undefined;
|
|
203
|
-
switch?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGSwitchElement>> | undefined;
|
|
204
|
-
symbol?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGSymbolElement>> | undefined;
|
|
205
|
-
text?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGTextElementAttributes<SVGTextElement>> | undefined;
|
|
206
|
-
textPath?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGTextPathElement>> | undefined;
|
|
207
|
-
tspan?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGTSpanElement>> | undefined;
|
|
208
|
-
use?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGUseElement>> | undefined;
|
|
209
|
-
view?: keyof react.JSX.IntrinsicElements | react.FC<react.SVGProps<SVGViewElement>> | undefined;
|
|
24
|
+
}> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">>;
|
|
25
|
+
path?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPathElement>, "ref">> | undefined;
|
|
26
|
+
set?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSetElement>, "ref">> | undefined;
|
|
27
|
+
time?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "ref">> | undefined;
|
|
28
|
+
span?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">> | undefined;
|
|
29
|
+
a: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">>;
|
|
30
|
+
abbr?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
31
|
+
address?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
32
|
+
area?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "ref">> | undefined;
|
|
33
|
+
aside?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
34
|
+
audio?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "ref">> | undefined;
|
|
35
|
+
b?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
36
|
+
base?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "ref">> | undefined;
|
|
37
|
+
bdi?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
38
|
+
bdo?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
39
|
+
blockquote: keyof react.JSX.IntrinsicElements | react.FunctionComponent<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>> | react.FC<Omit<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "ref">>;
|
|
40
|
+
body?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "ref">> | undefined;
|
|
41
|
+
br?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "ref">> | undefined;
|
|
42
|
+
button?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">> | undefined;
|
|
43
|
+
canvas?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "ref">> | undefined;
|
|
44
|
+
caption?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
45
|
+
center?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
46
|
+
cite?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
47
|
+
col?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref">> | undefined;
|
|
48
|
+
colgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref">> | undefined;
|
|
49
|
+
data?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "ref">> | undefined;
|
|
50
|
+
datalist?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "ref">> | undefined;
|
|
51
|
+
dd?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
52
|
+
del?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref">> | undefined;
|
|
53
|
+
details: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>> | react.FC<Omit<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "ref">>;
|
|
54
|
+
dfn?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
55
|
+
dialog?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "ref">> | undefined;
|
|
56
|
+
div?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">> | undefined;
|
|
57
|
+
dl?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "ref">> | undefined;
|
|
58
|
+
dt?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
59
|
+
em?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
60
|
+
embed?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "ref">> | undefined;
|
|
61
|
+
fieldset?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "ref">> | undefined;
|
|
62
|
+
figcaption?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
63
|
+
figure?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
64
|
+
form?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "ref">> | undefined;
|
|
65
|
+
h1: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
66
|
+
h2: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
67
|
+
h3: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
68
|
+
h4: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
69
|
+
h5: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
70
|
+
h6: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">>;
|
|
71
|
+
head?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "ref">> | undefined;
|
|
72
|
+
header?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
73
|
+
hgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
74
|
+
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);
|
|
75
|
+
html?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "ref">> | undefined;
|
|
76
|
+
i?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
77
|
+
iframe?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "ref">> | undefined;
|
|
78
|
+
input?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">> | undefined;
|
|
79
|
+
ins?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref">> | undefined;
|
|
80
|
+
kbd?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
81
|
+
keygen?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.KeygenHTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
82
|
+
label?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "ref">> | undefined;
|
|
83
|
+
legend?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "ref">> | undefined;
|
|
84
|
+
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);
|
|
85
|
+
main?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
86
|
+
mark?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
87
|
+
menuitem?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
88
|
+
meta?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "ref">> | undefined;
|
|
89
|
+
meter?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "ref">> | undefined;
|
|
90
|
+
nav?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
91
|
+
noindex?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
92
|
+
noscript?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
93
|
+
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);
|
|
94
|
+
optgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "ref">> | undefined;
|
|
95
|
+
option?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "ref">> | undefined;
|
|
96
|
+
output?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "ref">> | undefined;
|
|
97
|
+
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);
|
|
98
|
+
param?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "ref">> | undefined;
|
|
99
|
+
picture?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
100
|
+
pre: keyof react.JSX.IntrinsicElements | react.FC<nextra_mdx_components_pre_index.PreProps> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "ref">>;
|
|
101
|
+
progress?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "ref">> | undefined;
|
|
102
|
+
q?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "ref">> | undefined;
|
|
103
|
+
rp?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
104
|
+
rt?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
105
|
+
ruby?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
106
|
+
s?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
107
|
+
samp?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
108
|
+
slot?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>, "ref">> | undefined;
|
|
109
|
+
script?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "ref">> | undefined;
|
|
110
|
+
section?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
111
|
+
select?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "ref">> | undefined;
|
|
112
|
+
source?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "ref">> | undefined;
|
|
113
|
+
strong?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
114
|
+
style?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "ref">> | undefined;
|
|
115
|
+
summary: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">>;
|
|
116
|
+
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);
|
|
117
|
+
template?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "ref">> | undefined;
|
|
118
|
+
tbody?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
|
|
119
|
+
td: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>> | react.FC<Omit<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref">>;
|
|
120
|
+
textarea?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref">> | undefined;
|
|
121
|
+
tfoot?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
|
|
122
|
+
th: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>> | react.FC<Omit<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref">>;
|
|
123
|
+
thead?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
|
|
124
|
+
tr: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref">>;
|
|
125
|
+
track?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "ref">> | undefined;
|
|
126
|
+
u?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
127
|
+
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);
|
|
128
|
+
var?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
129
|
+
video?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "ref">> | undefined;
|
|
130
|
+
wbr?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
|
|
131
|
+
webview?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, "ref">> | undefined;
|
|
132
|
+
svg?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSVGElement>, "ref">> | undefined;
|
|
133
|
+
animate?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
134
|
+
animateMotion?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
135
|
+
animateTransform?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
136
|
+
circle?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGCircleElement>, "ref">> | undefined;
|
|
137
|
+
clipPath?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGClipPathElement>, "ref">> | undefined;
|
|
138
|
+
defs?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGDefsElement>, "ref">> | undefined;
|
|
139
|
+
desc?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGDescElement>, "ref">> | undefined;
|
|
140
|
+
ellipse?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGEllipseElement>, "ref">> | undefined;
|
|
141
|
+
feBlend?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEBlendElement>, "ref">> | undefined;
|
|
142
|
+
feColorMatrix?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEColorMatrixElement>, "ref">> | undefined;
|
|
143
|
+
feComponentTransfer?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEComponentTransferElement>, "ref">> | undefined;
|
|
144
|
+
feComposite?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFECompositeElement>, "ref">> | undefined;
|
|
145
|
+
feConvolveMatrix?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEConvolveMatrixElement>, "ref">> | undefined;
|
|
146
|
+
feDiffuseLighting?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDiffuseLightingElement>, "ref">> | undefined;
|
|
147
|
+
feDisplacementMap?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDisplacementMapElement>, "ref">> | undefined;
|
|
148
|
+
feDistantLight?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDistantLightElement>, "ref">> | undefined;
|
|
149
|
+
feDropShadow?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEDropShadowElement>, "ref">> | undefined;
|
|
150
|
+
feFlood?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFloodElement>, "ref">> | undefined;
|
|
151
|
+
feFuncA?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncAElement>, "ref">> | undefined;
|
|
152
|
+
feFuncB?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncBElement>, "ref">> | undefined;
|
|
153
|
+
feFuncG?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncGElement>, "ref">> | undefined;
|
|
154
|
+
feFuncR?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEFuncRElement>, "ref">> | undefined;
|
|
155
|
+
feGaussianBlur?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEGaussianBlurElement>, "ref">> | undefined;
|
|
156
|
+
feImage?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEImageElement>, "ref">> | undefined;
|
|
157
|
+
feMerge?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEMergeElement>, "ref">> | undefined;
|
|
158
|
+
feMergeNode?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEMergeNodeElement>, "ref">> | undefined;
|
|
159
|
+
feMorphology?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEMorphologyElement>, "ref">> | undefined;
|
|
160
|
+
feOffset?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEOffsetElement>, "ref">> | undefined;
|
|
161
|
+
fePointLight?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFEPointLightElement>, "ref">> | undefined;
|
|
162
|
+
feSpecularLighting?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFESpecularLightingElement>, "ref">> | undefined;
|
|
163
|
+
feSpotLight?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFESpotLightElement>, "ref">> | undefined;
|
|
164
|
+
feTile?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFETileElement>, "ref">> | undefined;
|
|
165
|
+
feTurbulence?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFETurbulenceElement>, "ref">> | undefined;
|
|
166
|
+
foreignObject?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGForeignObjectElement>, "ref">> | undefined;
|
|
167
|
+
g?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGGElement>, "ref">> | undefined;
|
|
168
|
+
image?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGImageElement>, "ref">> | undefined;
|
|
169
|
+
line?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGLineElementAttributes<SVGLineElement>, "ref">> | undefined;
|
|
170
|
+
linearGradient?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGLinearGradientElement>, "ref">> | undefined;
|
|
171
|
+
marker?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGMarkerElement>, "ref">> | undefined;
|
|
172
|
+
mask?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGMaskElement>, "ref">> | undefined;
|
|
173
|
+
metadata?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGMetadataElement>, "ref">> | undefined;
|
|
174
|
+
mpath?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGElement>, "ref">> | undefined;
|
|
175
|
+
pattern?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPatternElement>, "ref">> | undefined;
|
|
176
|
+
polygon?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPolygonElement>, "ref">> | undefined;
|
|
177
|
+
polyline?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPolylineElement>, "ref">> | undefined;
|
|
178
|
+
radialGradient?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGRadialGradientElement>, "ref">> | undefined;
|
|
179
|
+
rect?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGRectElement>, "ref">> | undefined;
|
|
180
|
+
stop?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGStopElement>, "ref">> | undefined;
|
|
181
|
+
switch?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSwitchElement>, "ref">> | undefined;
|
|
182
|
+
text?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGTextElementAttributes<SVGTextElement>, "ref">> | undefined;
|
|
183
|
+
textPath?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGTextPathElement>, "ref">> | undefined;
|
|
184
|
+
tspan?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGTSpanElement>, "ref">> | undefined;
|
|
185
|
+
use?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGUseElement>, "ref">> | undefined;
|
|
186
|
+
view?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGViewElement>, "ref">> | undefined;
|
|
210
187
|
wrapper: nextra.MDXWrapper | (({ toc, children, ...props }: {
|
|
211
188
|
toc: nextra.Heading[];
|
|
212
189
|
children: react.ReactNode;
|
|
213
|
-
|
|
190
|
+
metadata: nextra.NextraMetadata;
|
|
191
|
+
}) => react_jsx_runtime.JSX.Element);
|
|
192
|
+
img: react.FC<next_image.ImageProps>;
|
|
214
193
|
};
|
|
215
194
|
|
|
216
195
|
export { useMDXComponents };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import fs from "fs/promises";
|
|
3
3
|
import path from "path";
|
|
4
|
+
import { addBasePath } from "next/dist/client/add-base-path";
|
|
4
5
|
import clsx from "clsx";
|
|
5
6
|
import { useMDXComponents as getDocsMDXComponents } from "nextra-theme-docs";
|
|
6
7
|
const docsComponents = getDocsMDXComponents({
|
|
@@ -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,
|
|
@@ -5,10 +5,21 @@ import nextBundleAnalyzer from "@next/bundle-analyzer";
|
|
|
5
5
|
import { applyUnderscoreRedirects } from "./underscore-redirects.js";
|
|
6
6
|
const warnings = /* @__PURE__ */ new Set();
|
|
7
7
|
const require2 = createRequire(import.meta.url);
|
|
8
|
-
|
|
8
|
+
function getFrontMatterASTObject(node) {
|
|
9
|
+
const [n] = node.data.estree.body;
|
|
10
|
+
return n.declaration.declarations[0].init.properties;
|
|
11
|
+
}
|
|
12
|
+
function isExportNode(node, varName) {
|
|
13
|
+
if (node.type !== "mdxjsEsm") return false;
|
|
14
|
+
const [n] = node.data.estree.body;
|
|
15
|
+
if (n.type !== "ExportNamedDeclaration") return false;
|
|
16
|
+
const name = n.declaration?.declarations?.[0].id.name;
|
|
17
|
+
if (!name) return false;
|
|
18
|
+
return name === varName;
|
|
19
|
+
}
|
|
20
|
+
const rehypeCheckFrontMatter = () => (ast, file) => {
|
|
9
21
|
const [filePath] = file.history;
|
|
10
22
|
if (!filePath) return;
|
|
11
|
-
const { description } = file.data.frontMatter;
|
|
12
23
|
const relativePath = path.relative(process.cwd(), filePath);
|
|
13
24
|
const fileName = path.parse(relativePath).name;
|
|
14
25
|
const isPage = relativePath.startsWith("app/") && fileName === "page" || relativePath.startsWith("/content/");
|
|
@@ -20,6 +31,9 @@ const rehypeCheckFrontMatter = () => (_ast, file) => {
|
|
|
20
31
|
console.warn(msg);
|
|
21
32
|
}
|
|
22
33
|
}
|
|
34
|
+
const frontMatterNode = ast.children.find((node) => isExportNode(node, "metadata"));
|
|
35
|
+
const frontMatter = getFrontMatterASTObject(frontMatterNode);
|
|
36
|
+
const description = frontMatter.find((o) => o.key.value === "description")?.value.value;
|
|
23
37
|
if (!description) {
|
|
24
38
|
warnOnce("The description is missing");
|
|
25
39
|
} else if (description.length > 160) {
|
|
@@ -2,9 +2,15 @@ import { FC, ReactNode, ComponentProps } from 'react';
|
|
|
2
2
|
import { Metadata } from 'next';
|
|
3
3
|
import { Navbar, Layout } from 'nextra-theme-docs';
|
|
4
4
|
import { Head } from 'nextra/components';
|
|
5
|
+
import { HiveNavigation } from '../components/hive-navigation/index.mjs';
|
|
6
|
+
import 'react/jsx-runtime';
|
|
7
|
+
import '../components/hive-navigation/graphql-conf-card.mjs';
|
|
8
|
+
import 'next/image';
|
|
5
9
|
|
|
6
10
|
type LP = ComponentProps<typeof Layout>;
|
|
7
11
|
type LayoutProps = Omit<LP, 'navbar' | 'footer' | 'children' | 'docsRepositoryBase' | 'pageMap'> & Partial<Pick<LP, 'navbar' | 'footer' | 'pageMap'>> & Required<Pick<LP, 'docsRepositoryBase'>>;
|
|
12
|
+
type NP = ComponentProps<typeof HiveNavigation>;
|
|
13
|
+
type NavbarProps = Omit<NP, 'productName'> & Partial<Pick<NP, 'productName'>>;
|
|
8
14
|
declare const GuildLayout: FC<{
|
|
9
15
|
children: ReactNode;
|
|
10
16
|
websiteName: string;
|
|
@@ -28,7 +34,7 @@ declare const GuildLayout: FC<{
|
|
|
28
34
|
/**
|
|
29
35
|
* Nextra's Docs Theme `<Navbar>` component props
|
|
30
36
|
*/
|
|
31
|
-
navbarProps
|
|
37
|
+
navbarProps: NavbarProps;
|
|
32
38
|
}>;
|
|
33
39
|
declare function getDefaultMetadata({ websiteName, description, productName, ...additionalMetadata }: {
|
|
34
40
|
description?: string;
|