@meonode/ui 0.1.112 → 0.1.113
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/core.node.d.ts +29 -7
- package/dist/core.node.d.ts.map +1 -1
- package/dist/core.node.js +25 -5
- package/dist/hoc/component.hoc.d.ts +3 -3
- package/dist/hoc/component.hoc.d.ts.map +1 -1
- package/dist/html.node.d.ts +997 -139
- package/dist/html.node.d.ts.map +1 -1
- package/dist/html.node.js +55 -59
- package/dist/node.type.d.ts +3 -13
- package/dist/node.type.d.ts.map +1 -1
- package/package.json +14 -14
package/dist/html.node.d.ts
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import type { NodeElement, NodeProps } from './node.type.js';
|
|
2
1
|
// Layout components
|
|
3
2
|
/**
|
|
4
3
|
* Represents a div element.
|
|
5
4
|
* @param props Optional properties for the div element.
|
|
6
5
|
* @returns A div element node.
|
|
7
6
|
*/
|
|
8
|
-
export declare const Div: (props?:
|
|
7
|
+
export declare const Div: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
8
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
9
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
10
|
+
theme: Partial<{
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>;
|
|
13
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
9
14
|
/**
|
|
10
15
|
* Represents a root div element with full viewport dimensions and column flex layout.
|
|
11
16
|
* By default, applies flex column layout and 100% viewport dimensions.
|
|
@@ -17,62 +22,150 @@ export declare const Div: (props?: NodeProps<"div"> | undefined) => import("./no
|
|
|
17
22
|
* children: [Header(), Main(), Footer()]
|
|
18
23
|
* })
|
|
19
24
|
*/
|
|
20
|
-
export declare const Root:
|
|
25
|
+
export declare const Root: <AdditionalProps extends Record<string, any> = {
|
|
26
|
+
display: "flex";
|
|
27
|
+
flexDirection: "column";
|
|
28
|
+
minHeight: string;
|
|
29
|
+
minWidth: string;
|
|
30
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
31
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
32
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
33
|
+
theme: Partial<{
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
}>;
|
|
36
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
21
37
|
/**
|
|
22
38
|
* Represents a column layout using flexbox.
|
|
23
39
|
* @param props Optional properties for the column layout.
|
|
24
40
|
* @returns A div element node with flexbox column layout.
|
|
25
41
|
*/
|
|
26
|
-
export declare const Column:
|
|
42
|
+
export declare const Column: <AdditionalProps extends Record<string, any> = {
|
|
43
|
+
display: "flex";
|
|
44
|
+
flexDirection: "column";
|
|
45
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
46
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
47
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
48
|
+
theme: Partial<{
|
|
49
|
+
[key: string]: any;
|
|
50
|
+
}>;
|
|
51
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
27
52
|
/**
|
|
28
53
|
* Represents a row layout using flexbox.
|
|
29
54
|
* @param props Optional properties for the row layout.
|
|
30
55
|
* @returns A div element node with flexbox row layout.
|
|
31
56
|
*/
|
|
32
|
-
export declare const Row:
|
|
57
|
+
export declare const Row: <AdditionalProps extends Record<string, any> = {
|
|
58
|
+
display: "flex";
|
|
59
|
+
flexDirection: "row";
|
|
60
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
61
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
62
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
63
|
+
theme: Partial<{
|
|
64
|
+
[key: string]: any;
|
|
65
|
+
}>;
|
|
66
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
33
67
|
/**
|
|
34
68
|
* Represents a grid layout.
|
|
35
69
|
* @param props Optional properties for the grid layout.
|
|
36
70
|
* @returns A div element node with grid layout.
|
|
37
71
|
*/
|
|
38
|
-
export declare const Grid:
|
|
72
|
+
export declare const Grid: <AdditionalProps extends Record<string, any> = {
|
|
73
|
+
display: "grid";
|
|
74
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
75
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
76
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
77
|
+
theme: Partial<{
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
}>;
|
|
80
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
39
81
|
/**
|
|
40
82
|
* Represents a centered container with flexbox alignment.
|
|
41
83
|
* By default, centers content both horizontally and vertically.
|
|
42
84
|
* @param props Optional properties for the div element.
|
|
43
85
|
* @returns A div element node configured for centered content.
|
|
44
86
|
*/
|
|
45
|
-
export declare const Center:
|
|
87
|
+
export declare const Center: <AdditionalProps extends Record<string, any> = {
|
|
88
|
+
display: "flex";
|
|
89
|
+
flexDirection: "column";
|
|
90
|
+
alignItems: "center";
|
|
91
|
+
justifyContent: "center";
|
|
92
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
93
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
94
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
95
|
+
theme: Partial<{
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>;
|
|
98
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
46
99
|
/**
|
|
47
100
|
* Represents a fixed positioned element.
|
|
48
101
|
* @param props Optional properties for the fixed positioned element.
|
|
49
102
|
* @returns A div element node with fixed positioning.
|
|
50
103
|
*/
|
|
51
|
-
export declare const Fixed:
|
|
104
|
+
export declare const Fixed: <AdditionalProps extends Record<string, any> = {
|
|
105
|
+
position: "fixed";
|
|
106
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
107
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
108
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
109
|
+
theme: Partial<{
|
|
110
|
+
[key: string]: any;
|
|
111
|
+
}>;
|
|
112
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
52
113
|
/**
|
|
53
114
|
* Represents a relatively positioned element.
|
|
54
115
|
* @param props Optional properties for the relatively positioned element.
|
|
55
116
|
* @returns A div element node with relative positioning.
|
|
56
117
|
*/
|
|
57
|
-
export declare const Relative:
|
|
118
|
+
export declare const Relative: <AdditionalProps extends Record<string, any> = {
|
|
119
|
+
position: "relative";
|
|
120
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
121
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
122
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
123
|
+
theme: Partial<{
|
|
124
|
+
[key: string]: any;
|
|
125
|
+
}>;
|
|
126
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
58
127
|
/**
|
|
59
128
|
* Represents an absolutely positioned element.
|
|
60
129
|
* @param props Optional properties for the absolutely positioned element.
|
|
61
130
|
* @returns A div element node with absolute positioning.
|
|
62
131
|
*/
|
|
63
|
-
export declare const Absolute:
|
|
132
|
+
export declare const Absolute: <AdditionalProps extends Record<string, any> = {
|
|
133
|
+
position: "absolute";
|
|
134
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
135
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
136
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
137
|
+
theme: Partial<{
|
|
138
|
+
[key: string]: any;
|
|
139
|
+
}>;
|
|
140
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
64
141
|
/**
|
|
65
142
|
* Represents a sticky positioned element.
|
|
66
143
|
* @param props Optional properties for the sticky positioned element.
|
|
67
144
|
* @returns A div element node with sticky positioning.
|
|
68
145
|
*/
|
|
69
|
-
export declare const Sticky:
|
|
146
|
+
export declare const Sticky: <AdditionalProps extends Record<string, any> = {
|
|
147
|
+
position: "sticky";
|
|
148
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
149
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
150
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
151
|
+
theme: Partial<{
|
|
152
|
+
[key: string]: any;
|
|
153
|
+
}>;
|
|
154
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
70
155
|
/**
|
|
71
156
|
* Represents a statically positioned element.
|
|
72
157
|
* @param props Optional properties for the statically positioned element.
|
|
73
158
|
* @returns A div element node with static positioning.
|
|
74
159
|
*/
|
|
75
|
-
export declare const Static:
|
|
160
|
+
export declare const Static: <AdditionalProps extends Record<string, any> = {
|
|
161
|
+
position: "static";
|
|
162
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
163
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
164
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
165
|
+
theme: Partial<{
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
}>;
|
|
168
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
76
169
|
// Typography
|
|
77
170
|
/**
|
|
78
171
|
* Creates an h1 heading element node.
|
|
@@ -80,576 +173,1125 @@ export declare const Static: (props?: NodeProps<"div"> | undefined) => import(".
|
|
|
80
173
|
* @param props Optional properties for the h1 element.
|
|
81
174
|
* @returns An h1 element node.
|
|
82
175
|
*/
|
|
83
|
-
export declare const H1: (children
|
|
176
|
+
export declare const H1: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
177
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
178
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
179
|
+
theme: Partial<{
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
}>;
|
|
182
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h1">;
|
|
84
183
|
/**
|
|
85
184
|
* Creates an h2 heading element node.
|
|
86
185
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
|
|
87
186
|
* @param props Optional properties for the h2 element.
|
|
88
187
|
* @returns An h2 element node.
|
|
89
188
|
*/
|
|
90
|
-
export declare const H2: (children
|
|
189
|
+
export declare const H2: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
190
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
191
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
192
|
+
theme: Partial<{
|
|
193
|
+
[key: string]: any;
|
|
194
|
+
}>;
|
|
195
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h2">;
|
|
91
196
|
/**
|
|
92
197
|
* Creates an h3 heading element node.
|
|
93
198
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
|
|
94
199
|
* @param props Optional properties for the h3 element.
|
|
95
200
|
* @returns An h3 element node.
|
|
96
201
|
*/
|
|
97
|
-
export declare const H3: (children
|
|
202
|
+
export declare const H3: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
203
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
204
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
205
|
+
theme: Partial<{
|
|
206
|
+
[key: string]: any;
|
|
207
|
+
}>;
|
|
208
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h3">;
|
|
98
209
|
/**
|
|
99
210
|
* Creates an h4 heading element node.
|
|
100
211
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
|
|
101
212
|
* @param props Optional properties for the h4 element.
|
|
102
213
|
* @returns An h4 element node.
|
|
103
214
|
*/
|
|
104
|
-
export declare const H4: (children
|
|
215
|
+
export declare const H4: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
216
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
217
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
218
|
+
theme: Partial<{
|
|
219
|
+
[key: string]: any;
|
|
220
|
+
}>;
|
|
221
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h4">;
|
|
105
222
|
/**
|
|
106
223
|
* Creates an h5 heading element node.
|
|
107
224
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
|
|
108
225
|
* @param props Optional properties for the h5 element.
|
|
109
226
|
* @returns An h5 element node.
|
|
110
227
|
*/
|
|
111
|
-
export declare const H5: (children
|
|
228
|
+
export declare const H5: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
229
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
230
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
231
|
+
theme: Partial<{
|
|
232
|
+
[key: string]: any;
|
|
233
|
+
}>;
|
|
234
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h5">;
|
|
112
235
|
/**
|
|
113
236
|
* Creates an h6 heading element node.
|
|
114
237
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
|
|
115
238
|
* @param props Optional properties for the h6 element.
|
|
116
239
|
* @returns An h6 element node.
|
|
117
240
|
*/
|
|
118
|
-
export declare const H6: (children
|
|
241
|
+
export declare const H6: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
242
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
243
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
244
|
+
theme: Partial<{
|
|
245
|
+
[key: string]: any;
|
|
246
|
+
}>;
|
|
247
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h6">;
|
|
119
248
|
/**
|
|
120
249
|
* Creates a strong element node for important text.
|
|
121
250
|
* @param children The content to be rendered within the element (text, numbers, components, etc) to emphasize.
|
|
122
251
|
* @param props Optional properties for the strong element.
|
|
123
252
|
* @returns A strong element node.
|
|
124
253
|
*/
|
|
125
|
-
export declare const Strong: (children
|
|
254
|
+
export declare const Strong: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
255
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
256
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
257
|
+
theme: Partial<{
|
|
258
|
+
[key: string]: any;
|
|
259
|
+
}>;
|
|
260
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"strong">;
|
|
126
261
|
/**
|
|
127
262
|
* Creates an em element node for emphasized text.
|
|
128
263
|
* @param children The content to be rendered within the element (text, numbers, components, etc) to emphasize.
|
|
129
264
|
* @param props Optional properties for the em element.
|
|
130
265
|
* @returns An em element node.
|
|
131
266
|
*/
|
|
132
|
-
export declare const Em: (children
|
|
267
|
+
export declare const Em: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
268
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
269
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
270
|
+
theme: Partial<{
|
|
271
|
+
[key: string]: any;
|
|
272
|
+
}>;
|
|
273
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"em">;
|
|
133
274
|
/**
|
|
134
275
|
* Creates a small element node for side-comments and small print.
|
|
135
276
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
136
277
|
* @param props Optional properties for styling and configuring the small element.
|
|
137
278
|
* @returns A small element node that can be rendered in React.
|
|
138
279
|
*/
|
|
139
|
-
export declare const Small: (children
|
|
280
|
+
export declare const Small: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
281
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
282
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
283
|
+
theme: Partial<{
|
|
284
|
+
[key: string]: any;
|
|
285
|
+
}>;
|
|
286
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"small">;
|
|
140
287
|
/**
|
|
141
288
|
* Creates a mark element node for highlighted text.
|
|
142
289
|
* @param children The content to be rendered within the element (text, numbers, components, etc) to highlight.
|
|
143
290
|
* @param props Optional properties for the mark element.
|
|
144
291
|
* @returns A mark element node.
|
|
145
292
|
*/
|
|
146
|
-
export declare const Mark: (children
|
|
293
|
+
export declare const Mark: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
294
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
295
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
296
|
+
theme: Partial<{
|
|
297
|
+
[key: string]: any;
|
|
298
|
+
}>;
|
|
299
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"mark">;
|
|
147
300
|
/**
|
|
148
301
|
* Creates a span element node.
|
|
149
302
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the span.
|
|
150
303
|
* @param props Optional properties for the span element.
|
|
151
304
|
* @returns A span element node.
|
|
152
305
|
*/
|
|
153
|
-
export declare const Span: (children
|
|
306
|
+
export declare const Span: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
307
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children">>;
|
|
308
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
309
|
+
theme: Partial<{
|
|
310
|
+
[key: string]: any;
|
|
311
|
+
}>;
|
|
312
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"span">;
|
|
154
313
|
/**
|
|
155
314
|
* Creates a paragraph element node.
|
|
156
315
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the paragraph.
|
|
157
316
|
* @param props Optional properties for the p element.
|
|
158
317
|
* @returns A paragraph element node.
|
|
159
318
|
*/
|
|
160
|
-
export declare const P: (children
|
|
319
|
+
export declare const P: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
320
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children">>;
|
|
321
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
322
|
+
theme: Partial<{
|
|
323
|
+
[key: string]: any;
|
|
324
|
+
}>;
|
|
325
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"p">;
|
|
161
326
|
/**
|
|
162
327
|
* Renders a semantic block of text using a `<p>` element.
|
|
163
328
|
* Alias for `P(...)`, recommended for general-purpose text content.
|
|
164
329
|
* @example
|
|
165
330
|
* Text('Hello world', { fontSize: 'theme.text.md' })
|
|
166
331
|
*/
|
|
167
|
-
export declare const Text: (children
|
|
332
|
+
export declare const Text: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
333
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children">>;
|
|
334
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
335
|
+
theme: Partial<{
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
}>;
|
|
338
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"p">;
|
|
168
339
|
/**
|
|
169
340
|
* Creates a preformatted text element node.
|
|
170
341
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the pre element.
|
|
171
342
|
* @param props Optional properties for the pre element.
|
|
172
343
|
* @returns A pre element node.
|
|
173
344
|
*/
|
|
174
|
-
export declare const Pre: (children
|
|
345
|
+
export declare const Pre: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
346
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "children">>;
|
|
347
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
348
|
+
theme: Partial<{
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
}>;
|
|
351
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"pre">;
|
|
175
352
|
/**
|
|
176
353
|
* Creates a code element node for displaying code snippets.
|
|
177
354
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the code.
|
|
178
355
|
* @param props Optional properties for the code element.
|
|
179
356
|
* @returns A code element node.
|
|
180
357
|
*/
|
|
181
|
-
export declare const Code: (children
|
|
358
|
+
export declare const Code: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
359
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
360
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
361
|
+
theme: Partial<{
|
|
362
|
+
[key: string]: any;
|
|
363
|
+
}>;
|
|
364
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"code">;
|
|
182
365
|
/**
|
|
183
366
|
* Represents a line break element.
|
|
184
367
|
* @param props Optional properties for the br element.
|
|
185
368
|
* @returns A br element node.
|
|
186
369
|
*/
|
|
187
|
-
export declare const Br: (props?:
|
|
370
|
+
export declare const Br: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
371
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "children">>;
|
|
372
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
373
|
+
theme: Partial<{
|
|
374
|
+
[key: string]: any;
|
|
375
|
+
}>;
|
|
376
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"br">;
|
|
188
377
|
// Lists
|
|
189
378
|
/**
|
|
190
379
|
* Represents an ordered list.
|
|
191
380
|
* @param props Optional properties for the ol element.
|
|
192
381
|
* @returns An ol element node.
|
|
193
382
|
*/
|
|
194
|
-
export declare const Ol: (props?:
|
|
383
|
+
export declare const Ol: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
384
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "children">>;
|
|
385
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
386
|
+
theme: Partial<{
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
}>;
|
|
389
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ol">;
|
|
195
390
|
/**
|
|
196
391
|
* Represents an unordered list.
|
|
197
392
|
* @param props Optional properties for the ul element.
|
|
198
393
|
* @returns A ul element node.
|
|
199
394
|
*/
|
|
200
|
-
export declare const Ul: (props?:
|
|
395
|
+
export declare const Ul: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
396
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "children">>;
|
|
397
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
398
|
+
theme: Partial<{
|
|
399
|
+
[key: string]: any;
|
|
400
|
+
}>;
|
|
401
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ul">;
|
|
201
402
|
/**
|
|
202
403
|
* Represents a list item.
|
|
203
404
|
* @param props Optional properties for the li element.
|
|
204
405
|
* @returns An li element node.
|
|
205
406
|
*/
|
|
206
|
-
export declare const Li: (props?:
|
|
407
|
+
export declare const Li: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
408
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "children">>;
|
|
409
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
410
|
+
theme: Partial<{
|
|
411
|
+
[key: string]: any;
|
|
412
|
+
}>;
|
|
413
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"li">;
|
|
207
414
|
/**
|
|
208
415
|
* Represents a description list.
|
|
209
416
|
* @param props Optional properties for the dl element.
|
|
210
417
|
* @returns A dl element node.
|
|
211
418
|
*/
|
|
212
|
-
export declare const Dl: (props?:
|
|
419
|
+
export declare const Dl: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
420
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "children">>;
|
|
421
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
422
|
+
theme: Partial<{
|
|
423
|
+
[key: string]: any;
|
|
424
|
+
}>;
|
|
425
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dl">;
|
|
213
426
|
/**
|
|
214
427
|
* Represents a term in a description list.
|
|
215
428
|
* @param props Optional properties for the dt element.
|
|
216
429
|
* @returns A dt element node.
|
|
217
430
|
*/
|
|
218
|
-
export declare const Dt: (props?:
|
|
431
|
+
export declare const Dt: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
432
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
433
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
434
|
+
theme: Partial<{
|
|
435
|
+
[key: string]: any;
|
|
436
|
+
}>;
|
|
437
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dt">;
|
|
219
438
|
/**
|
|
220
439
|
* Represents a description in a description list.
|
|
221
440
|
* @param props Optional properties for the dd element.
|
|
222
441
|
* @returns A dd element node.
|
|
223
442
|
*/
|
|
224
|
-
export declare const Dd: (props?:
|
|
443
|
+
export declare const Dd: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
444
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
445
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
446
|
+
theme: Partial<{
|
|
447
|
+
[key: string]: any;
|
|
448
|
+
}>;
|
|
449
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dd">;
|
|
225
450
|
// Forms and inputs
|
|
226
451
|
/**
|
|
227
452
|
* Represents an HTML form.
|
|
228
453
|
* @param props Optional properties for the form element.
|
|
229
454
|
* @returns A form element node.
|
|
230
455
|
*/
|
|
231
|
-
export declare const Form: (props?:
|
|
456
|
+
export declare const Form: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
457
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "children">>;
|
|
458
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
459
|
+
theme: Partial<{
|
|
460
|
+
[key: string]: any;
|
|
461
|
+
}>;
|
|
462
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"form">;
|
|
232
463
|
/**
|
|
233
464
|
* Represents a label for an input element.
|
|
234
465
|
* @param props Optional properties for the label element.
|
|
235
466
|
* @returns A label element node.
|
|
236
467
|
*/
|
|
237
|
-
export declare const Label: (props?:
|
|
468
|
+
export declare const Label: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
469
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "children">>;
|
|
470
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
471
|
+
theme: Partial<{
|
|
472
|
+
[key: string]: any;
|
|
473
|
+
}>;
|
|
474
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"label">;
|
|
238
475
|
/**
|
|
239
476
|
* Represents an input element.
|
|
240
477
|
* @param props Optional properties for the input element.
|
|
241
478
|
* @returns An input element node.
|
|
242
479
|
*/
|
|
243
|
-
export declare const Input: (props?:
|
|
480
|
+
export declare const Input: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
481
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "children">>;
|
|
482
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
483
|
+
theme: Partial<{
|
|
484
|
+
[key: string]: any;
|
|
485
|
+
}>;
|
|
486
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"input">;
|
|
244
487
|
/**
|
|
245
488
|
* Creates a button element node.
|
|
246
489
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the button.
|
|
247
490
|
* @param props Optional properties for the button element.
|
|
248
491
|
* @returns A button element node.
|
|
249
492
|
*/
|
|
250
|
-
export declare const Button: (children
|
|
493
|
+
export declare const Button: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
494
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children">>;
|
|
495
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
496
|
+
theme: Partial<{
|
|
497
|
+
[key: string]: any;
|
|
498
|
+
}>;
|
|
499
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"button">;
|
|
251
500
|
/**
|
|
252
501
|
* Represents a textarea element for multiline text input.
|
|
253
502
|
* @param props Optional properties for the textarea element.
|
|
254
503
|
* @returns A textarea element node.
|
|
255
504
|
*/
|
|
256
|
-
export declare const Textarea: (props?:
|
|
505
|
+
export declare const Textarea: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
506
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children">>;
|
|
507
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
508
|
+
theme: Partial<{
|
|
509
|
+
[key: string]: any;
|
|
510
|
+
}>;
|
|
511
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"textarea">;
|
|
257
512
|
/**
|
|
258
513
|
* Represents a select dropdown element.
|
|
259
514
|
* @param props Optional properties for the select element.
|
|
260
515
|
* @returns A select element node.
|
|
261
516
|
*/
|
|
262
|
-
export declare const Select: (props?:
|
|
517
|
+
export declare const Select: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
518
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "children">>;
|
|
519
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
520
|
+
theme: Partial<{
|
|
521
|
+
[key: string]: any;
|
|
522
|
+
}>;
|
|
523
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"select">;
|
|
263
524
|
/**
|
|
264
525
|
* Represents an option within a select element.
|
|
265
526
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the option.
|
|
266
527
|
* @param props Optional properties for the option element.
|
|
267
528
|
* @returns An option element node.
|
|
268
529
|
*/
|
|
269
|
-
export declare const Option: (children
|
|
530
|
+
export declare const Option: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
531
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "children">>;
|
|
532
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
533
|
+
theme: Partial<{
|
|
534
|
+
[key: string]: any;
|
|
535
|
+
}>;
|
|
536
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"option">;
|
|
270
537
|
/**
|
|
271
538
|
* Represents a fieldset element for grouping form elements.
|
|
272
539
|
* @param props Optional properties for the fieldset element.
|
|
273
540
|
* @returns A fieldset element node.
|
|
274
541
|
*/
|
|
275
|
-
export declare const Fieldset: (props?:
|
|
542
|
+
export declare const Fieldset: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
543
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "children">>;
|
|
544
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
545
|
+
theme: Partial<{
|
|
546
|
+
[key: string]: any;
|
|
547
|
+
}>;
|
|
548
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"fieldset">;
|
|
276
549
|
/**
|
|
277
550
|
* Represents a legend for a fieldset.
|
|
278
551
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the legend.
|
|
279
552
|
* @param props Optional properties for the legend element.
|
|
280
553
|
* @returns A legend element node.
|
|
281
554
|
*/
|
|
282
|
-
export declare const Legend: (children
|
|
555
|
+
export declare const Legend: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
556
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "children">>;
|
|
557
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
558
|
+
theme: Partial<{
|
|
559
|
+
[key: string]: any;
|
|
560
|
+
}>;
|
|
561
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"legend">;
|
|
283
562
|
/**
|
|
284
563
|
* Represents an option group within a select element.
|
|
285
564
|
* @param props Optional properties for the optgroup element.
|
|
286
565
|
* @returns An optgroup element node.
|
|
287
566
|
*/
|
|
288
|
-
export declare const Optgroup: (props?:
|
|
567
|
+
export declare const Optgroup: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
568
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "children">>;
|
|
569
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
570
|
+
theme: Partial<{
|
|
571
|
+
[key: string]: any;
|
|
572
|
+
}>;
|
|
573
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"optgroup">;
|
|
289
574
|
// Tables
|
|
290
575
|
/**
|
|
291
576
|
* Represents a table element.
|
|
292
577
|
* @param props Optional properties for the table element.
|
|
293
578
|
* @returns A table element node.
|
|
294
579
|
*/
|
|
295
|
-
export declare const Table: (props?:
|
|
580
|
+
export declare const Table: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
581
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "children">>;
|
|
582
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
583
|
+
theme: Partial<{
|
|
584
|
+
[key: string]: any;
|
|
585
|
+
}>;
|
|
586
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"table">;
|
|
296
587
|
/**
|
|
297
588
|
* Represents a table header section.
|
|
298
589
|
* @param props Optional properties for the thead element.
|
|
299
590
|
* @returns A thead element node.
|
|
300
591
|
*/
|
|
301
|
-
export declare const Thead: (props?:
|
|
592
|
+
export declare const Thead: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
593
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children">>;
|
|
594
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
595
|
+
theme: Partial<{
|
|
596
|
+
[key: string]: any;
|
|
597
|
+
}>;
|
|
598
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"thead">;
|
|
302
599
|
/**
|
|
303
600
|
* Represents a table body section.
|
|
304
601
|
* @param props Optional properties for the tbody element.
|
|
305
602
|
* @returns A tbody element node.
|
|
306
603
|
*/
|
|
307
|
-
export declare const Tbody: (props?:
|
|
604
|
+
export declare const Tbody: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
605
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children">>;
|
|
606
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
607
|
+
theme: Partial<{
|
|
608
|
+
[key: string]: any;
|
|
609
|
+
}>;
|
|
610
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tbody">;
|
|
308
611
|
/**
|
|
309
612
|
* Represents a table footer section.
|
|
310
613
|
* @param props Optional properties for the tfoot element.
|
|
311
614
|
* @returns A tfoot element node.
|
|
312
615
|
*/
|
|
313
|
-
export declare const Tfoot: (props?:
|
|
616
|
+
export declare const Tfoot: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
617
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children">>;
|
|
618
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
619
|
+
theme: Partial<{
|
|
620
|
+
[key: string]: any;
|
|
621
|
+
}>;
|
|
622
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tfoot">;
|
|
314
623
|
/**
|
|
315
624
|
* Represents a table row.
|
|
316
625
|
* @param props Optional properties for the tr element.
|
|
317
626
|
* @returns A tr element node.
|
|
318
627
|
*/
|
|
319
|
-
export declare const Tr: (props?:
|
|
628
|
+
export declare const Tr: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
629
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "children">>;
|
|
630
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
631
|
+
theme: Partial<{
|
|
632
|
+
[key: string]: any;
|
|
633
|
+
}>;
|
|
634
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tr">;
|
|
320
635
|
/**
|
|
321
636
|
* Represents a table header cell.
|
|
322
637
|
* @param props Optional properties for the th element.
|
|
323
638
|
* @returns A th element node.
|
|
324
639
|
*/
|
|
325
|
-
export declare const Th: (props?:
|
|
640
|
+
export declare const Th: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
641
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "children">>;
|
|
642
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
643
|
+
theme: Partial<{
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
}>;
|
|
646
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"th">;
|
|
326
647
|
/**
|
|
327
648
|
* Represents a table data cell.
|
|
328
649
|
* @param props Optional properties for the td element.
|
|
329
650
|
* @returns A td element node.
|
|
330
651
|
*/
|
|
331
|
-
export declare const Td: (props?:
|
|
652
|
+
export declare const Td: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
653
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "children">>;
|
|
654
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
655
|
+
theme: Partial<{
|
|
656
|
+
[key: string]: any;
|
|
657
|
+
}>;
|
|
658
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"td">;
|
|
332
659
|
/**
|
|
333
660
|
* Represents a table caption.
|
|
334
661
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the caption.
|
|
335
662
|
* @param props Optional properties for the caption element.
|
|
336
663
|
* @returns A caption element node.
|
|
337
664
|
*/
|
|
338
|
-
export declare const Caption: (children
|
|
665
|
+
export declare const Caption: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
666
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
667
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
668
|
+
theme: Partial<{
|
|
669
|
+
[key: string]: any;
|
|
670
|
+
}>;
|
|
671
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"caption">;
|
|
339
672
|
/**
|
|
340
673
|
* Represents a table column group.
|
|
341
674
|
* @param props Optional properties for the colgroup element.
|
|
342
675
|
* @returns A colgroup element node.
|
|
343
676
|
*/
|
|
344
|
-
export declare const Colgroup: (props?:
|
|
677
|
+
export declare const Colgroup: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
678
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children">>;
|
|
679
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
680
|
+
theme: Partial<{
|
|
681
|
+
[key: string]: any;
|
|
682
|
+
}>;
|
|
683
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"colgroup">;
|
|
345
684
|
/**
|
|
346
685
|
* Represents a table column.
|
|
347
686
|
* @param props Optional properties for the col element.
|
|
348
687
|
* @returns A col element node.
|
|
349
688
|
*/
|
|
350
|
-
export declare const Col: (props?:
|
|
689
|
+
export declare const Col: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
690
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children">>;
|
|
691
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
692
|
+
theme: Partial<{
|
|
693
|
+
[key: string]: any;
|
|
694
|
+
}>;
|
|
695
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"col">;
|
|
351
696
|
// Media elements
|
|
352
697
|
/**
|
|
353
698
|
* Represents an image element.
|
|
354
699
|
* @param props Optional properties for the img element.
|
|
355
700
|
* @returns An img element node.
|
|
356
701
|
*/
|
|
357
|
-
export declare const Img: (props?:
|
|
702
|
+
export declare const Img: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
703
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "children">>;
|
|
704
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
705
|
+
theme: Partial<{
|
|
706
|
+
[key: string]: any;
|
|
707
|
+
}>;
|
|
708
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"img">;
|
|
358
709
|
/**
|
|
359
710
|
* Represents a video element.
|
|
360
711
|
* @param props Optional properties for the video element.
|
|
361
712
|
* @returns A video element node.
|
|
362
713
|
*/
|
|
363
|
-
export declare const Video: (props?:
|
|
714
|
+
export declare const Video: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
715
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "children">>;
|
|
716
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
717
|
+
theme: Partial<{
|
|
718
|
+
[key: string]: any;
|
|
719
|
+
}>;
|
|
720
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"video">;
|
|
364
721
|
/**
|
|
365
722
|
* Represents an audio element.
|
|
366
723
|
* @param props Optional properties for the audio element.
|
|
367
724
|
* @returns An audio element node.
|
|
368
725
|
*/
|
|
369
|
-
export declare const Audio: (props?:
|
|
726
|
+
export declare const Audio: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
727
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "children">>;
|
|
728
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
729
|
+
theme: Partial<{
|
|
730
|
+
[key: string]: any;
|
|
731
|
+
}>;
|
|
732
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"audio">;
|
|
370
733
|
/**
|
|
371
734
|
* Represents a picture element.
|
|
372
735
|
* @param props Optional properties for the picture element.
|
|
373
736
|
* @returns A picture element node.
|
|
374
737
|
*/
|
|
375
|
-
export declare const Picture: (props?:
|
|
738
|
+
export declare const Picture: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
739
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
740
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
741
|
+
theme: Partial<{
|
|
742
|
+
[key: string]: any;
|
|
743
|
+
}>;
|
|
744
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"picture">;
|
|
376
745
|
/**
|
|
377
746
|
* Represents a source element.
|
|
378
747
|
* @param props Optional properties for the source element.
|
|
379
748
|
* @returns A source element node.
|
|
380
749
|
*/
|
|
381
|
-
export declare const Source: (props?:
|
|
750
|
+
export declare const Source: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
751
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "children">>;
|
|
752
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
753
|
+
theme: Partial<{
|
|
754
|
+
[key: string]: any;
|
|
755
|
+
}>;
|
|
756
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"source">;
|
|
382
757
|
/**
|
|
383
758
|
* Represents a text track element.
|
|
384
759
|
* @param props Optional properties for the track element.
|
|
385
760
|
* @returns A track element node.
|
|
386
761
|
*/
|
|
387
|
-
export declare const Track: (props?:
|
|
762
|
+
export declare const Track: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
763
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "children">>;
|
|
764
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
765
|
+
theme: Partial<{
|
|
766
|
+
[key: string]: any;
|
|
767
|
+
}>;
|
|
768
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"track">;
|
|
388
769
|
/**
|
|
389
770
|
* Represents a canvas element.
|
|
390
771
|
* @param props Optional properties for the canvas element.
|
|
391
772
|
* @returns A canvas element node.
|
|
392
773
|
*/
|
|
393
|
-
export declare const Canvas: (props?:
|
|
774
|
+
export declare const Canvas: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
775
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "children">>;
|
|
776
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
777
|
+
theme: Partial<{
|
|
778
|
+
[key: string]: any;
|
|
779
|
+
}>;
|
|
780
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"canvas">;
|
|
394
781
|
/**
|
|
395
782
|
* Represents an iframe element.
|
|
396
783
|
* @param props Optional properties for the iframe element.
|
|
397
784
|
* @returns An iframe element node.
|
|
398
785
|
*/
|
|
399
|
-
export declare const Iframe: (props?:
|
|
786
|
+
export declare const Iframe: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
787
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "children">>;
|
|
788
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
789
|
+
theme: Partial<{
|
|
790
|
+
[key: string]: any;
|
|
791
|
+
}>;
|
|
792
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"iframe">;
|
|
400
793
|
// SVG elements
|
|
401
794
|
/**
|
|
402
795
|
* Represents an SVG container element.
|
|
403
796
|
* @param props Optional properties for the svg element.
|
|
404
797
|
* @returns An svg element node.
|
|
405
798
|
*/
|
|
406
|
-
export declare const Svg: (props?:
|
|
799
|
+
export declare const Svg: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGSVGElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
800
|
+
props: Partial<Omit<import("react").SVGProps<SVGSVGElement>, "children">>;
|
|
801
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
802
|
+
theme: Partial<{
|
|
803
|
+
[key: string]: any;
|
|
804
|
+
}>;
|
|
805
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"svg">;
|
|
407
806
|
/**
|
|
408
807
|
* Represents an SVG path element.
|
|
409
808
|
* @param props Optional properties for the path element.
|
|
410
809
|
* @returns A path element node.
|
|
411
810
|
*/
|
|
412
|
-
export declare const SvgPath: (props?:
|
|
811
|
+
export declare const SvgPath: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGPathElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
812
|
+
props: Partial<Omit<import("react").SVGProps<SVGPathElement>, "children">>;
|
|
813
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
814
|
+
theme: Partial<{
|
|
815
|
+
[key: string]: any;
|
|
816
|
+
}>;
|
|
817
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"path">;
|
|
413
818
|
/**
|
|
414
819
|
* Represents an SVG circle element.
|
|
415
820
|
* @param props Optional properties for the circle element.
|
|
416
821
|
* @returns A circle element node.
|
|
417
822
|
*/
|
|
418
|
-
export declare const SvgCircle: (props?:
|
|
823
|
+
export declare const SvgCircle: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGCircleElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
824
|
+
props: Partial<Omit<import("react").SVGProps<SVGCircleElement>, "children">>;
|
|
825
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
826
|
+
theme: Partial<{
|
|
827
|
+
[key: string]: any;
|
|
828
|
+
}>;
|
|
829
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"circle">;
|
|
419
830
|
/**
|
|
420
831
|
* Represents an SVG ellipse element.
|
|
421
832
|
* @param props Optional properties for the ellipse element.
|
|
422
833
|
* @returns An ellipse element node.
|
|
423
834
|
*/
|
|
424
|
-
export declare const SvgEllipse: (props?:
|
|
835
|
+
export declare const SvgEllipse: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGEllipseElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
836
|
+
props: Partial<Omit<import("react").SVGProps<SVGEllipseElement>, "children">>;
|
|
837
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
838
|
+
theme: Partial<{
|
|
839
|
+
[key: string]: any;
|
|
840
|
+
}>;
|
|
841
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ellipse">;
|
|
425
842
|
/**
|
|
426
843
|
* Represents an SVG line element.
|
|
427
844
|
* @param props Optional properties for the line element.
|
|
428
845
|
* @returns A line element node.
|
|
429
846
|
*/
|
|
430
|
-
export declare const SvgLine: (props?:
|
|
847
|
+
export declare const SvgLine: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGLineElementAttributes<SVGLineElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
848
|
+
props: Partial<Omit<import("react").SVGLineElementAttributes<SVGLineElement>, "children">>;
|
|
849
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
850
|
+
theme: Partial<{
|
|
851
|
+
[key: string]: any;
|
|
852
|
+
}>;
|
|
853
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"line">;
|
|
431
854
|
/**
|
|
432
855
|
* Represents an SVG polyline element.
|
|
433
856
|
* @param props Optional properties for the polyline element.
|
|
434
857
|
* @returns A polyline element node.
|
|
435
858
|
*/
|
|
436
|
-
export declare const SvgPolyline: (props?:
|
|
859
|
+
export declare const SvgPolyline: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGPolylineElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
860
|
+
props: Partial<Omit<import("react").SVGProps<SVGPolylineElement>, "children">>;
|
|
861
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
862
|
+
theme: Partial<{
|
|
863
|
+
[key: string]: any;
|
|
864
|
+
}>;
|
|
865
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"polyline">;
|
|
437
866
|
/**
|
|
438
867
|
* Represents an SVG polygon element.
|
|
439
868
|
* @param props Optional properties for the polygon element.
|
|
440
869
|
* @returns A polygon element node.
|
|
441
870
|
*/
|
|
442
|
-
export declare const SvgPolygon: (props?:
|
|
871
|
+
export declare const SvgPolygon: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGPolygonElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
872
|
+
props: Partial<Omit<import("react").SVGProps<SVGPolygonElement>, "children">>;
|
|
873
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
874
|
+
theme: Partial<{
|
|
875
|
+
[key: string]: any;
|
|
876
|
+
}>;
|
|
877
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"polygon">;
|
|
443
878
|
/**
|
|
444
879
|
* Represents an SVG rectangle element.
|
|
445
880
|
* @param props Optional properties for the rect element.
|
|
446
881
|
* @returns A rect element node.
|
|
447
882
|
*/
|
|
448
|
-
export declare const SvgRect: (props?:
|
|
883
|
+
export declare const SvgRect: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGRectElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
884
|
+
props: Partial<Omit<import("react").SVGProps<SVGRectElement>, "children">>;
|
|
885
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
886
|
+
theme: Partial<{
|
|
887
|
+
[key: string]: any;
|
|
888
|
+
}>;
|
|
889
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"rect">;
|
|
449
890
|
/**
|
|
450
891
|
* Represents an SVG use element.
|
|
451
892
|
* @param props Optional properties for the use element.
|
|
452
893
|
* @returns A use element node.
|
|
453
894
|
*/
|
|
454
|
-
export declare const SvgUse: (props?:
|
|
895
|
+
export declare const SvgUse: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGUseElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
896
|
+
props: Partial<Omit<import("react").SVGProps<SVGUseElement>, "children">>;
|
|
897
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
898
|
+
theme: Partial<{
|
|
899
|
+
[key: string]: any;
|
|
900
|
+
}>;
|
|
901
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"use">;
|
|
455
902
|
/**
|
|
456
903
|
* Represents an SVG definitions element.
|
|
457
904
|
* @param props Optional properties for the defs element.
|
|
458
905
|
* @returns A defs element node.
|
|
459
906
|
*/
|
|
460
|
-
export declare const SvgDefs: (props?:
|
|
907
|
+
export declare const SvgDefs: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGDefsElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
908
|
+
props: Partial<Omit<import("react").SVGProps<SVGDefsElement>, "children">>;
|
|
909
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
910
|
+
theme: Partial<{
|
|
911
|
+
[key: string]: any;
|
|
912
|
+
}>;
|
|
913
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"defs">;
|
|
461
914
|
/**
|
|
462
915
|
* Represents an SVG linear gradient element.
|
|
463
916
|
* @param props Optional properties for the linearGradient element.
|
|
464
917
|
* @returns A linearGradient element node.
|
|
465
918
|
*/
|
|
466
|
-
export declare const SvgLinearGradient: (props?:
|
|
919
|
+
export declare const SvgLinearGradient: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGLinearGradientElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
920
|
+
props: Partial<Omit<import("react").SVGProps<SVGLinearGradientElement>, "children">>;
|
|
921
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
922
|
+
theme: Partial<{
|
|
923
|
+
[key: string]: any;
|
|
924
|
+
}>;
|
|
925
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"linearGradient">;
|
|
467
926
|
/**
|
|
468
927
|
* Represents an SVG radial gradient element.
|
|
469
928
|
* @param props Optional properties for the radialGradient element.
|
|
470
929
|
* @returns A radialGradient element node.
|
|
471
930
|
*/
|
|
472
|
-
export declare const SvgRadialGradient: (props?:
|
|
931
|
+
export declare const SvgRadialGradient: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGRadialGradientElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
932
|
+
props: Partial<Omit<import("react").SVGProps<SVGRadialGradientElement>, "children">>;
|
|
933
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
934
|
+
theme: Partial<{
|
|
935
|
+
[key: string]: any;
|
|
936
|
+
}>;
|
|
937
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"radialGradient">;
|
|
473
938
|
/**
|
|
474
939
|
* Represents an SVG gradient stop element.
|
|
475
940
|
* @param props Optional properties for the stop element.
|
|
476
941
|
* @returns A stop element node.
|
|
477
942
|
*/
|
|
478
|
-
export declare const SvgStop: (props?:
|
|
943
|
+
export declare const SvgStop: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGStopElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
944
|
+
props: Partial<Omit<import("react").SVGProps<SVGStopElement>, "children">>;
|
|
945
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
946
|
+
theme: Partial<{
|
|
947
|
+
[key: string]: any;
|
|
948
|
+
}>;
|
|
949
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"stop">;
|
|
479
950
|
/**
|
|
480
951
|
* Represents an SVG symbol element.
|
|
481
952
|
* @param props Optional properties for the symbol element.
|
|
482
953
|
* @returns A symbol element node.
|
|
483
954
|
*/
|
|
484
|
-
export declare const SvgSymbol: (props?:
|
|
955
|
+
export declare const SvgSymbol: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGSymbolElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
956
|
+
props: Partial<Omit<import("react").SVGProps<SVGSymbolElement>, "children">>;
|
|
957
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
958
|
+
theme: Partial<{
|
|
959
|
+
[key: string]: any;
|
|
960
|
+
}>;
|
|
961
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"symbol">;
|
|
485
962
|
/**
|
|
486
963
|
* Represents an SVG group element.
|
|
487
964
|
* @param props Optional properties for the g element.
|
|
488
965
|
* @returns A g element node.
|
|
489
966
|
*/
|
|
490
|
-
export declare const SvgG: (props?:
|
|
967
|
+
export declare const SvgG: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGGElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
968
|
+
props: Partial<Omit<import("react").SVGProps<SVGGElement>, "children">>;
|
|
969
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
970
|
+
theme: Partial<{
|
|
971
|
+
[key: string]: any;
|
|
972
|
+
}>;
|
|
973
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"g">;
|
|
491
974
|
/**
|
|
492
975
|
* Represents an SVG text element.
|
|
493
976
|
* @param props Optional properties for the text element.
|
|
494
977
|
* @returns A text element node.
|
|
495
978
|
*/
|
|
496
|
-
export declare const SvgText: (props?:
|
|
979
|
+
export declare const SvgText: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGTextElementAttributes<SVGTextElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
980
|
+
props: Partial<Omit<import("react").SVGTextElementAttributes<SVGTextElement>, "children">>;
|
|
981
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
982
|
+
theme: Partial<{
|
|
983
|
+
[key: string]: any;
|
|
984
|
+
}>;
|
|
985
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"text">;
|
|
497
986
|
/**
|
|
498
987
|
* Represents an SVG text span element.
|
|
499
988
|
* @param props Optional properties for the tspan element.
|
|
500
989
|
* @returns A tspan element node.
|
|
501
990
|
*/
|
|
502
|
-
export declare const SvgTspan: (props?:
|
|
991
|
+
export declare const SvgTspan: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGTSpanElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
992
|
+
props: Partial<Omit<import("react").SVGProps<SVGTSpanElement>, "children">>;
|
|
993
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
994
|
+
theme: Partial<{
|
|
995
|
+
[key: string]: any;
|
|
996
|
+
}>;
|
|
997
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tspan">;
|
|
503
998
|
// Navigation and links
|
|
504
999
|
/**
|
|
505
1000
|
* Represents an anchor element.
|
|
506
1001
|
* @param props Optional properties for the a element.
|
|
507
1002
|
* @returns An a element node.
|
|
508
1003
|
*/
|
|
509
|
-
export declare const A: (props?:
|
|
1004
|
+
export declare const A: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1005
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children">>;
|
|
1006
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1007
|
+
theme: Partial<{
|
|
1008
|
+
[key: string]: any;
|
|
1009
|
+
}>;
|
|
1010
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"a">;
|
|
510
1011
|
/**
|
|
511
1012
|
* Represents a navigation element.
|
|
512
1013
|
* @param props Optional properties for the nav element.
|
|
513
1014
|
* @returns A nav element node.
|
|
514
1015
|
*/
|
|
515
|
-
export declare const Nav: (props?:
|
|
1016
|
+
export declare const Nav: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1017
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1018
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1019
|
+
theme: Partial<{
|
|
1020
|
+
[key: string]: any;
|
|
1021
|
+
}>;
|
|
1022
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"nav">;
|
|
516
1023
|
// Document structure
|
|
517
1024
|
/**
|
|
518
1025
|
* Represents the body element of an HTML document.
|
|
519
1026
|
* @param props Optional properties for the body element.
|
|
520
1027
|
* @returns A body element node.
|
|
521
1028
|
*/
|
|
522
|
-
export declare const Body: (props?:
|
|
1029
|
+
export declare const Body: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1030
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "children">>;
|
|
1031
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1032
|
+
theme: Partial<{
|
|
1033
|
+
[key: string]: any;
|
|
1034
|
+
}>;
|
|
1035
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"body">;
|
|
523
1036
|
/**
|
|
524
1037
|
* Represents the main content of a document.
|
|
525
1038
|
* @param props Optional properties for the main element.
|
|
526
1039
|
* @returns A main element node.
|
|
527
1040
|
*/
|
|
528
|
-
export declare const Main:
|
|
1041
|
+
export declare const Main: <AdditionalProps extends Record<string, any> = {
|
|
1042
|
+
display: "flex";
|
|
1043
|
+
flexDirection: "column";
|
|
1044
|
+
}>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1045
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1046
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1047
|
+
theme: Partial<{
|
|
1048
|
+
[key: string]: any;
|
|
1049
|
+
}>;
|
|
1050
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"main">;
|
|
529
1051
|
/**
|
|
530
1052
|
* Represents a header element.
|
|
531
1053
|
* @param props Optional properties for the header element.
|
|
532
1054
|
* @returns A header element node.
|
|
533
1055
|
*/
|
|
534
|
-
export declare const Header: (props?:
|
|
1056
|
+
export declare const Header: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1057
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1058
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1059
|
+
theme: Partial<{
|
|
1060
|
+
[key: string]: any;
|
|
1061
|
+
}>;
|
|
1062
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"header">;
|
|
535
1063
|
/**
|
|
536
1064
|
* Represents a footer element.
|
|
537
1065
|
* @param props Optional properties for the footer element.
|
|
538
1066
|
* @returns A footer element node.
|
|
539
1067
|
*/
|
|
540
|
-
export declare const Footer: (props?:
|
|
1068
|
+
export declare const Footer: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1069
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1070
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1071
|
+
theme: Partial<{
|
|
1072
|
+
[key: string]: any;
|
|
1073
|
+
}>;
|
|
1074
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"footer">;
|
|
541
1075
|
/**
|
|
542
1076
|
* Represents an aside element.
|
|
543
1077
|
* @param props Optional properties for the aside element.
|
|
544
1078
|
* @returns An aside element node.
|
|
545
1079
|
*/
|
|
546
|
-
export declare const Aside: (props?:
|
|
1080
|
+
export declare const Aside: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1081
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1082
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1083
|
+
theme: Partial<{
|
|
1084
|
+
[key: string]: any;
|
|
1085
|
+
}>;
|
|
1086
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"aside">;
|
|
547
1087
|
/**
|
|
548
1088
|
* Represents a section element.
|
|
549
1089
|
* @param props Optional properties for the section element.
|
|
550
1090
|
* @returns A section element node.
|
|
551
1091
|
*/
|
|
552
|
-
export declare const Section: (props?:
|
|
1092
|
+
export declare const Section: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1093
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1094
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1095
|
+
theme: Partial<{
|
|
1096
|
+
[key: string]: any;
|
|
1097
|
+
}>;
|
|
1098
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"section">;
|
|
553
1099
|
/**
|
|
554
1100
|
* Represents an article element.
|
|
555
1101
|
* @param props Optional properties for the article element.
|
|
556
1102
|
* @returns An article element node.
|
|
557
1103
|
*/
|
|
558
|
-
export declare const Article: (props?:
|
|
1104
|
+
export declare const Article: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1105
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1106
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1107
|
+
theme: Partial<{
|
|
1108
|
+
[key: string]: any;
|
|
1109
|
+
}>;
|
|
1110
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"article">;
|
|
559
1111
|
/**
|
|
560
1112
|
* Represents a figure element.
|
|
561
1113
|
* @param props Optional properties for the figure element.
|
|
562
1114
|
* @returns A figure element node.
|
|
563
1115
|
*/
|
|
564
|
-
export declare const Figure: (props?:
|
|
1116
|
+
export declare const Figure: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1117
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1118
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1119
|
+
theme: Partial<{
|
|
1120
|
+
[key: string]: any;
|
|
1121
|
+
}>;
|
|
1122
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"figure">;
|
|
565
1123
|
/**
|
|
566
1124
|
* Represents a figure caption element.
|
|
567
1125
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the figcaption.
|
|
568
1126
|
* @param props Optional properties for the figcaption element.
|
|
569
1127
|
* @returns A figcaption element node.
|
|
570
1128
|
*/
|
|
571
|
-
export declare const Figcaption: (children
|
|
1129
|
+
export declare const Figcaption: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1130
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1131
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1132
|
+
theme: Partial<{
|
|
1133
|
+
[key: string]: any;
|
|
1134
|
+
}>;
|
|
1135
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"figcaption">;
|
|
572
1136
|
/**
|
|
573
1137
|
* Represents a blockquote element.
|
|
574
1138
|
* @param props Optional properties for the blockquote element.
|
|
575
1139
|
* @returns A blockquote element node.
|
|
576
1140
|
*/
|
|
577
|
-
export declare const Blockquote: (props?:
|
|
1141
|
+
export declare const Blockquote: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1142
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children">>;
|
|
1143
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1144
|
+
theme: Partial<{
|
|
1145
|
+
[key: string]: any;
|
|
1146
|
+
}>;
|
|
1147
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"blockquote">;
|
|
578
1148
|
/**
|
|
579
1149
|
* Represents an address element.
|
|
580
1150
|
* @param props Optional properties for the address element.
|
|
581
1151
|
* @returns An address element node.
|
|
582
1152
|
*/
|
|
583
|
-
export declare const Address: (props?:
|
|
1153
|
+
export declare const Address: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1154
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1155
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1156
|
+
theme: Partial<{
|
|
1157
|
+
[key: string]: any;
|
|
1158
|
+
}>;
|
|
1159
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"address">;
|
|
584
1160
|
/**
|
|
585
1161
|
* Represents a dialog element.
|
|
586
1162
|
* @param props Optional properties for the dialog element.
|
|
587
1163
|
* @returns A dialog element node.
|
|
588
1164
|
*/
|
|
589
|
-
export declare const Dialog: (props?:
|
|
1165
|
+
export declare const Dialog: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1166
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "children">>;
|
|
1167
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1168
|
+
theme: Partial<{
|
|
1169
|
+
[key: string]: any;
|
|
1170
|
+
}>;
|
|
1171
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dialog">;
|
|
590
1172
|
/**
|
|
591
1173
|
* Represents a details element.
|
|
592
1174
|
* @param props Optional properties for the details element.
|
|
593
1175
|
* @returns A details element node.
|
|
594
1176
|
*/
|
|
595
|
-
export declare const Details: (props?:
|
|
1177
|
+
export declare const Details: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1178
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "children">>;
|
|
1179
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1180
|
+
theme: Partial<{
|
|
1181
|
+
[key: string]: any;
|
|
1182
|
+
}>;
|
|
1183
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"details">;
|
|
596
1184
|
/**
|
|
597
1185
|
* Represents a summary element for a details disclosure box.
|
|
598
1186
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the summary.
|
|
599
1187
|
* @param props Optional properties for the summary element.
|
|
600
1188
|
* @returns A summary element node.
|
|
601
1189
|
*/
|
|
602
|
-
export declare const Summary: (children
|
|
1190
|
+
export declare const Summary: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1191
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1192
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1193
|
+
theme: Partial<{
|
|
1194
|
+
[key: string]: any;
|
|
1195
|
+
}>;
|
|
1196
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"summary">;
|
|
603
1197
|
// Document head elements
|
|
604
1198
|
/**
|
|
605
1199
|
* Represents a head element.
|
|
606
1200
|
* @param props Optional properties for the head element.
|
|
607
1201
|
* @returns A head element node.
|
|
608
1202
|
*/
|
|
609
|
-
export declare const Head: (props?:
|
|
1203
|
+
export declare const Head: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1204
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "children">>;
|
|
1205
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1206
|
+
theme: Partial<{
|
|
1207
|
+
[key: string]: any;
|
|
1208
|
+
}>;
|
|
1209
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"head">;
|
|
610
1210
|
/**
|
|
611
1211
|
* Represents the root HTML element.
|
|
612
1212
|
* @param props Optional properties for the HTML element.
|
|
613
1213
|
* @returns An HTML element node.
|
|
614
1214
|
*/
|
|
615
|
-
export declare const Html: (props?:
|
|
1215
|
+
export declare const Html: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1216
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "children">>;
|
|
1217
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1218
|
+
theme: Partial<{
|
|
1219
|
+
[key: string]: any;
|
|
1220
|
+
}>;
|
|
1221
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"html">;
|
|
616
1222
|
/**
|
|
617
1223
|
* Represents a meta element.
|
|
618
1224
|
* @param props Optional properties for the meta element.
|
|
619
1225
|
* @returns A meta element node.
|
|
620
1226
|
*/
|
|
621
|
-
export declare const Meta: (props?:
|
|
1227
|
+
export declare const Meta: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1228
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "children">>;
|
|
1229
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1230
|
+
theme: Partial<{
|
|
1231
|
+
[key: string]: any;
|
|
1232
|
+
}>;
|
|
1233
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"meta">;
|
|
622
1234
|
/**
|
|
623
1235
|
* Represents a link element.
|
|
624
1236
|
* @param props Optional properties for the link element.
|
|
625
1237
|
* @returns A link element node.
|
|
626
1238
|
*/
|
|
627
|
-
export declare const Link: (props?:
|
|
1239
|
+
export declare const Link: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1240
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "children">>;
|
|
1241
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1242
|
+
theme: Partial<{
|
|
1243
|
+
[key: string]: any;
|
|
1244
|
+
}>;
|
|
1245
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"link">;
|
|
628
1246
|
/**
|
|
629
1247
|
* Represents a style element. Its content should be CSS text.
|
|
630
1248
|
* @param props Optional properties for the style element.
|
|
631
1249
|
* @returns A style element node.
|
|
632
1250
|
*/
|
|
633
|
-
export declare const Style: (props?:
|
|
1251
|
+
export declare const Style: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1252
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "children">>;
|
|
1253
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1254
|
+
theme: Partial<{
|
|
1255
|
+
[key: string]: any;
|
|
1256
|
+
}>;
|
|
1257
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"style">;
|
|
634
1258
|
/**
|
|
635
1259
|
* Represents a script element. For inline scripts, its content should be JavaScript text.
|
|
636
1260
|
* @param props Optional properties for the script element (e.g., src, type, async, defer).
|
|
637
1261
|
* @returns A script element node.
|
|
638
1262
|
*/
|
|
639
|
-
export declare const Script: (props?:
|
|
1263
|
+
export declare const Script: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1264
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "children">>;
|
|
1265
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1266
|
+
theme: Partial<{
|
|
1267
|
+
[key: string]: any;
|
|
1268
|
+
}>;
|
|
1269
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"script">;
|
|
640
1270
|
/**
|
|
641
1271
|
* Creates a title element node for document head title.
|
|
642
1272
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the title.
|
|
643
1273
|
* @param props Optional properties for the title element.
|
|
644
1274
|
* @returns A title element node.
|
|
645
1275
|
*/
|
|
646
|
-
export declare const Title: (children
|
|
1276
|
+
export declare const Title: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1277
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "children">>;
|
|
1278
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1279
|
+
theme: Partial<{
|
|
1280
|
+
[key: string]: any;
|
|
1281
|
+
}>;
|
|
1282
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"title">;
|
|
647
1283
|
/**
|
|
648
1284
|
* Represents a base element.
|
|
649
1285
|
* @param props Optional properties for the base element.
|
|
650
1286
|
* @returns A base element node.
|
|
651
1287
|
*/
|
|
652
|
-
export declare const Base: (props?:
|
|
1288
|
+
export declare const Base: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1289
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "children">>;
|
|
1290
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1291
|
+
theme: Partial<{
|
|
1292
|
+
[key: string]: any;
|
|
1293
|
+
}>;
|
|
1294
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"base">;
|
|
653
1295
|
// --- Additional Text-Level Semantics ---
|
|
654
1296
|
/**
|
|
655
1297
|
* Represents an abbreviation or acronym.
|
|
@@ -657,238 +1299,454 @@ export declare const Base: (props?: NodeProps<"base"> | undefined) => import("./
|
|
|
657
1299
|
* @param props Optional properties for the abbr element.
|
|
658
1300
|
* @returns An abbr element node.
|
|
659
1301
|
*/
|
|
660
|
-
export declare const Abbr: (children
|
|
1302
|
+
export declare const Abbr: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1303
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1304
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1305
|
+
theme: Partial<{
|
|
1306
|
+
[key: string]: any;
|
|
1307
|
+
}>;
|
|
1308
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"abbr">;
|
|
661
1309
|
/**
|
|
662
1310
|
* Represents text that should be stylistically offset from normal prose (traditionally bold).
|
|
663
1311
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
664
1312
|
* @param props Optional properties for the b element.
|
|
665
1313
|
* @returns A b element node.
|
|
666
1314
|
*/
|
|
667
|
-
export declare const B: (children
|
|
1315
|
+
export declare const B: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1316
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1317
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1318
|
+
theme: Partial<{
|
|
1319
|
+
[key: string]: any;
|
|
1320
|
+
}>;
|
|
1321
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"b">;
|
|
668
1322
|
/**
|
|
669
1323
|
* Represents text that is isolated from its surroundings for bidirectional text formatting.
|
|
670
1324
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
671
1325
|
* @param props Optional properties for the bdi element.
|
|
672
1326
|
* @returns A bdi element node.
|
|
673
1327
|
*/
|
|
674
|
-
export declare const Bdi: (children
|
|
1328
|
+
export declare const Bdi: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1329
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1330
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1331
|
+
theme: Partial<{
|
|
1332
|
+
[key: string]: any;
|
|
1333
|
+
}>;
|
|
1334
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"bdi">;
|
|
675
1335
|
/**
|
|
676
1336
|
* Overrides the current text directionality.
|
|
677
1337
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
678
1338
|
* @param props Optional properties for the bdo element.
|
|
679
1339
|
* @returns A bdo element node.
|
|
680
1340
|
*/
|
|
681
|
-
export declare const Bdo: (children
|
|
1341
|
+
export declare const Bdo: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1342
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1343
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1344
|
+
theme: Partial<{
|
|
1345
|
+
[key: string]: any;
|
|
1346
|
+
}>;
|
|
1347
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"bdo">;
|
|
682
1348
|
/**
|
|
683
1349
|
* Represents the title of a work (e.g., a book, a song, an essay).
|
|
684
1350
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the citation.
|
|
685
1351
|
* @param props Optional properties for the cite element.
|
|
686
1352
|
* @returns A cite element node.
|
|
687
1353
|
*/
|
|
688
|
-
export declare const Cite: (children
|
|
1354
|
+
export declare const Cite: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1355
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1356
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1357
|
+
theme: Partial<{
|
|
1358
|
+
[key: string]: any;
|
|
1359
|
+
}>;
|
|
1360
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"cite">;
|
|
689
1361
|
/**
|
|
690
1362
|
* Links a piece of content with a machine-readable translation.
|
|
691
1363
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
692
1364
|
* @param props Optional properties for the data element.
|
|
693
1365
|
* @returns A data element node.
|
|
694
1366
|
*/
|
|
695
|
-
export declare const Data: (children
|
|
1367
|
+
export declare const Data: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1368
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "children">>;
|
|
1369
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1370
|
+
theme: Partial<{
|
|
1371
|
+
[key: string]: any;
|
|
1372
|
+
}>;
|
|
1373
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"data">;
|
|
696
1374
|
/**
|
|
697
1375
|
* Represents a definition of a term.
|
|
698
1376
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the definition.
|
|
699
1377
|
* @param props Optional properties for the dfn element.
|
|
700
1378
|
* @returns A dfn element node.
|
|
701
1379
|
*/
|
|
702
|
-
export declare const Dfn: (children
|
|
1380
|
+
export declare const Dfn: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1381
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1382
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1383
|
+
theme: Partial<{
|
|
1384
|
+
[key: string]: any;
|
|
1385
|
+
}>;
|
|
1386
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"dfn">;
|
|
703
1387
|
/**
|
|
704
1388
|
* Represents text in an alternate voice or mood (traditionally italic).
|
|
705
1389
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
706
1390
|
* @param props Optional properties for the i element.
|
|
707
1391
|
* @returns An i element node.
|
|
708
1392
|
*/
|
|
709
|
-
export declare const I: (children
|
|
1393
|
+
export declare const I: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1394
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1395
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1396
|
+
theme: Partial<{
|
|
1397
|
+
[key: string]: any;
|
|
1398
|
+
}>;
|
|
1399
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"i">;
|
|
710
1400
|
/**
|
|
711
1401
|
* Represents user input (typically keyboard input).
|
|
712
1402
|
* @param children The content to be rendered within the element (text, numbers, components, etc) representing keyboard input.
|
|
713
1403
|
* @param props Optional properties for the kbd element.
|
|
714
1404
|
* @returns A kbd element node.
|
|
715
1405
|
*/
|
|
716
|
-
export declare const Kbd: (children
|
|
1406
|
+
export declare const Kbd: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1407
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1408
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1409
|
+
theme: Partial<{
|
|
1410
|
+
[key: string]: any;
|
|
1411
|
+
}>;
|
|
1412
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"kbd">;
|
|
717
1413
|
/**
|
|
718
1414
|
* Represents an inline quotation.
|
|
719
1415
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the quotation.
|
|
720
1416
|
* @param props Optional properties for the q element.
|
|
721
1417
|
* @returns A q element node.
|
|
722
1418
|
*/
|
|
723
|
-
export declare const Q: (children
|
|
1419
|
+
export declare const Q: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1420
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children">>;
|
|
1421
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1422
|
+
theme: Partial<{
|
|
1423
|
+
[key: string]: any;
|
|
1424
|
+
}>;
|
|
1425
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"q">;
|
|
724
1426
|
/**
|
|
725
1427
|
* Represents fallback parenthesis for ruby annotations.
|
|
726
1428
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
727
1429
|
* @param props Optional properties for the rp element.
|
|
728
1430
|
* @returns An rp element node.
|
|
729
1431
|
*/
|
|
730
|
-
export declare const Rp: (children
|
|
1432
|
+
export declare const Rp: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1433
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1434
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1435
|
+
theme: Partial<{
|
|
1436
|
+
[key: string]: any;
|
|
1437
|
+
}>;
|
|
1438
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"rp">;
|
|
731
1439
|
/**
|
|
732
1440
|
* Represents the ruby text component of a ruby annotation.
|
|
733
1441
|
* @param children The content to be rendered within the element (text, numbers, components, etc).
|
|
734
1442
|
* @param props Optional properties for the rt element.
|
|
735
1443
|
* @returns An rt element node.
|
|
736
1444
|
*/
|
|
737
|
-
export declare const Rt: (children
|
|
1445
|
+
export declare const Rt: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1446
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1447
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1448
|
+
theme: Partial<{
|
|
1449
|
+
[key: string]: any;
|
|
1450
|
+
}>;
|
|
1451
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"rt">;
|
|
738
1452
|
/**
|
|
739
1453
|
* Represents a ruby annotation.
|
|
740
1454
|
* @param props Optional properties for the ruby element.
|
|
741
1455
|
* @returns A ruby element node.
|
|
742
1456
|
*/
|
|
743
|
-
export declare const Ruby: (props?:
|
|
1457
|
+
export declare const Ruby: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1458
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1459
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1460
|
+
theme: Partial<{
|
|
1461
|
+
[key: string]: any;
|
|
1462
|
+
}>;
|
|
1463
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ruby">;
|
|
744
1464
|
/**
|
|
745
1465
|
* Represents text that is no longer accurate or relevant (strikethrough).
|
|
746
1466
|
* @param children The content to be rendered within the element (text, numbers, components, etc) to be struck through.
|
|
747
1467
|
* @param props Optional properties for the s element.
|
|
748
1468
|
* @returns An s element node.
|
|
749
1469
|
*/
|
|
750
|
-
export declare const S: (children
|
|
1470
|
+
export declare const S: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1471
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1472
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1473
|
+
theme: Partial<{
|
|
1474
|
+
[key: string]: any;
|
|
1475
|
+
}>;
|
|
1476
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"s">;
|
|
751
1477
|
/**
|
|
752
1478
|
* Represents sample output from a computer program.
|
|
753
1479
|
* @param children The content to be rendered within the element (text, numbers, components, etc) representing sample output.
|
|
754
1480
|
* @param props Optional properties for the samp element.
|
|
755
1481
|
* @returns A samp element node.
|
|
756
1482
|
*/
|
|
757
|
-
export declare const Samp: (children
|
|
1483
|
+
export declare const Samp: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1484
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1485
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1486
|
+
theme: Partial<{
|
|
1487
|
+
[key: string]: any;
|
|
1488
|
+
}>;
|
|
1489
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"samp">;
|
|
758
1490
|
/**
|
|
759
1491
|
* Represents subscript text.
|
|
760
1492
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the subscript.
|
|
761
1493
|
* @param props Optional properties for the sub element.
|
|
762
1494
|
* @returns A sub element node.
|
|
763
1495
|
*/
|
|
764
|
-
export declare const Sub: (children
|
|
1496
|
+
export declare const Sub: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1497
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1498
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1499
|
+
theme: Partial<{
|
|
1500
|
+
[key: string]: any;
|
|
1501
|
+
}>;
|
|
1502
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"sub">;
|
|
765
1503
|
/**
|
|
766
1504
|
* Represents superscript text.
|
|
767
1505
|
* @param children The content to be rendered within the element (text, numbers, components, etc) for the superscript.
|
|
768
1506
|
* @param props Optional properties for the sup element.
|
|
769
1507
|
* @returns A sup element node.
|
|
770
1508
|
*/
|
|
771
|
-
export declare const Sup: (children
|
|
1509
|
+
export declare const Sup: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1510
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1511
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1512
|
+
theme: Partial<{
|
|
1513
|
+
[key: string]: any;
|
|
1514
|
+
}>;
|
|
1515
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"sup">;
|
|
772
1516
|
/**
|
|
773
1517
|
* Represents a specific period in time or a date.
|
|
774
1518
|
* @param children The content to be rendered within the element (text, numbers, components, etc) representing the time/date.
|
|
775
1519
|
* @param props Optional properties for the time element.
|
|
776
1520
|
* @returns A time element node.
|
|
777
1521
|
*/
|
|
778
|
-
export declare const Time: (children
|
|
1522
|
+
export declare const Time: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1523
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "children">>;
|
|
1524
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1525
|
+
theme: Partial<{
|
|
1526
|
+
[key: string]: any;
|
|
1527
|
+
}>;
|
|
1528
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"time">;
|
|
779
1529
|
/**
|
|
780
1530
|
* Represents text that should be rendered with an unarticulated, non-textual annotation (traditionally underline).
|
|
781
1531
|
* @param children The content to be rendered within the element (text, numbers, components, etc) to be underlined.
|
|
782
1532
|
* @param props Optional properties for the u element.
|
|
783
1533
|
* @returns A u element node.
|
|
784
1534
|
*/
|
|
785
|
-
export declare const U: (children
|
|
1535
|
+
export declare const U: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1536
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1537
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1538
|
+
theme: Partial<{
|
|
1539
|
+
[key: string]: any;
|
|
1540
|
+
}>;
|
|
1541
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"u">;
|
|
786
1542
|
/**
|
|
787
1543
|
* Represents a variable in a mathematical expression or programming context.
|
|
788
1544
|
* @param children The content to be rendered within the element (text, numbers, components, etc) representing a variable.
|
|
789
1545
|
* @param props Optional properties for the var element.
|
|
790
1546
|
* @returns A var element node.
|
|
791
1547
|
*/
|
|
792
|
-
export declare const Var: (children
|
|
1548
|
+
export declare const Var: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1549
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1550
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1551
|
+
theme: Partial<{
|
|
1552
|
+
[key: string]: any;
|
|
1553
|
+
}>;
|
|
1554
|
+
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"var">;
|
|
793
1555
|
/**
|
|
794
1556
|
* Represents a word break opportunity. This is a void element.
|
|
795
1557
|
* @param props Optional properties for the wbr element.
|
|
796
1558
|
* @returns A wbr element node.
|
|
797
1559
|
*/
|
|
798
|
-
export declare const Wbr: (props?:
|
|
1560
|
+
export declare const Wbr: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1561
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1562
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1563
|
+
theme: Partial<{
|
|
1564
|
+
[key: string]: any;
|
|
1565
|
+
}>;
|
|
1566
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"wbr">;
|
|
799
1567
|
// --- Additional Grouping Content ---
|
|
800
1568
|
/**
|
|
801
1569
|
* Represents a thematic break between paragraph-level elements (e.g., a scene change in a story, or a shift of topic). This is a void element.
|
|
802
1570
|
* @param props Optional properties for the hr element.
|
|
803
1571
|
* @returns An hr element node.
|
|
804
1572
|
*/
|
|
805
|
-
export declare const Hr: (props?:
|
|
1573
|
+
export declare const Hr: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1574
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "children">>;
|
|
1575
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1576
|
+
theme: Partial<{
|
|
1577
|
+
[key: string]: any;
|
|
1578
|
+
}>;
|
|
1579
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"hr">;
|
|
806
1580
|
/**
|
|
807
1581
|
* Represents a group of commands that a user can perform or activate.
|
|
808
1582
|
* @param props Optional properties for the menu element.
|
|
809
1583
|
* @returns A menu element node.
|
|
810
1584
|
*/
|
|
811
|
-
export declare const Menu: (props?:
|
|
1585
|
+
export declare const Menu: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1586
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1587
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1588
|
+
theme: Partial<{
|
|
1589
|
+
[key: string]: any;
|
|
1590
|
+
}>;
|
|
1591
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"menu">;
|
|
812
1592
|
/**
|
|
813
1593
|
* Represents the parts of a document or application that contain search or filtering controls.
|
|
814
1594
|
* @param props Optional properties for the search element.
|
|
815
1595
|
* @returns A search element node.
|
|
816
1596
|
*/
|
|
817
|
-
export declare const Search: (props?:
|
|
1597
|
+
export declare const Search: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1598
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1599
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1600
|
+
theme: Partial<{
|
|
1601
|
+
[key: string]: any;
|
|
1602
|
+
}>;
|
|
1603
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"search">;
|
|
818
1604
|
// --- Additional Embedded Content ---
|
|
819
1605
|
/**
|
|
820
1606
|
* Represents an integration point for an external application or interactive content (a plug-in). This is a void element.
|
|
821
1607
|
* @param props Optional properties for the embed element.
|
|
822
1608
|
* @returns An embed element node.
|
|
823
1609
|
*/
|
|
824
|
-
export declare const Embed: (props?:
|
|
1610
|
+
export declare const Embed: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1611
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "children">>;
|
|
1612
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1613
|
+
theme: Partial<{
|
|
1614
|
+
[key: string]: any;
|
|
1615
|
+
}>;
|
|
1616
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"embed">;
|
|
825
1617
|
/**
|
|
826
1618
|
* Represents an external resource, which can be treated as an image, a nested Browse context, or content to be handled by a plugin.
|
|
827
1619
|
* @param props Optional properties for the object element.
|
|
828
1620
|
* @returns An object element node.
|
|
829
1621
|
*/
|
|
830
|
-
export declare const ObjectElement:
|
|
1622
|
+
export declare const ObjectElement: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1623
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "children">>;
|
|
1624
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1625
|
+
theme: Partial<{
|
|
1626
|
+
[key: string]: any;
|
|
1627
|
+
}>;
|
|
1628
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"object">;
|
|
831
1629
|
/**
|
|
832
1630
|
* Defines parameters for an <object> element. This is a void element.
|
|
833
1631
|
* @param props Optional properties for the param element.
|
|
834
1632
|
* @returns A param element node.
|
|
835
1633
|
*/
|
|
836
|
-
export declare const Param: (props?:
|
|
1634
|
+
export declare const Param: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1635
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "children">>;
|
|
1636
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1637
|
+
theme: Partial<{
|
|
1638
|
+
[key: string]: any;
|
|
1639
|
+
}>;
|
|
1640
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"param">;
|
|
837
1641
|
/**
|
|
838
1642
|
* Represents an image map, with clickable areas.
|
|
839
1643
|
* @param props Optional properties for the map element.
|
|
840
1644
|
* @returns A map element node.
|
|
841
1645
|
*/
|
|
842
|
-
export declare const MapElement:
|
|
1646
|
+
export declare const MapElement: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1647
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "children">>;
|
|
1648
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1649
|
+
theme: Partial<{
|
|
1650
|
+
[key: string]: any;
|
|
1651
|
+
}>;
|
|
1652
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"map">;
|
|
843
1653
|
/**
|
|
844
1654
|
* Defines a client-side image map area. This is a void element.
|
|
845
1655
|
* @param props Optional properties for the area element.
|
|
846
1656
|
* @returns An area element node.
|
|
847
1657
|
*/
|
|
848
|
-
export declare const Area: (props?:
|
|
1658
|
+
export declare const Area: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1659
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "children">>;
|
|
1660
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1661
|
+
theme: Partial<{
|
|
1662
|
+
[key: string]: any;
|
|
1663
|
+
}>;
|
|
1664
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"area">;
|
|
849
1665
|
// --- Additional Forms Elements ---
|
|
850
1666
|
/**
|
|
851
1667
|
* Contains a set of <option> elements that represent predefined options for other controls.
|
|
852
1668
|
* @param props Optional properties for the datalist element.
|
|
853
1669
|
* @returns A datalist element node.
|
|
854
1670
|
*/
|
|
855
|
-
export declare const Datalist: (props?:
|
|
1671
|
+
export declare const Datalist: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1672
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "children">>;
|
|
1673
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1674
|
+
theme: Partial<{
|
|
1675
|
+
[key: string]: any;
|
|
1676
|
+
}>;
|
|
1677
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"datalist">;
|
|
856
1678
|
/**
|
|
857
1679
|
* Represents the result of a calculation or user action.
|
|
858
1680
|
* @param props Optional properties for the output element.
|
|
859
1681
|
* @returns An output element node.
|
|
860
1682
|
*/
|
|
861
|
-
export declare const Output: (props?:
|
|
1683
|
+
export declare const Output: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1684
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "children">>;
|
|
1685
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1686
|
+
theme: Partial<{
|
|
1687
|
+
[key: string]: any;
|
|
1688
|
+
}>;
|
|
1689
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"output">;
|
|
862
1690
|
/**
|
|
863
1691
|
* Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
|
|
864
1692
|
* @param props Optional properties for the progress element.
|
|
865
1693
|
* @returns A progress element node.
|
|
866
1694
|
*/
|
|
867
|
-
export declare const Progress: (props?:
|
|
1695
|
+
export declare const Progress: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1696
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "children">>;
|
|
1697
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1698
|
+
theme: Partial<{
|
|
1699
|
+
[key: string]: any;
|
|
1700
|
+
}>;
|
|
1701
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"progress">;
|
|
868
1702
|
/**
|
|
869
1703
|
* Represents either a scalar value within a known range or a fractional value.
|
|
870
1704
|
* @param props Optional properties for the meter element.
|
|
871
1705
|
* @returns A meter element node.
|
|
872
1706
|
*/
|
|
873
|
-
export declare const Meter: (props?:
|
|
1707
|
+
export declare const Meter: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1708
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "children">>;
|
|
1709
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1710
|
+
theme: Partial<{
|
|
1711
|
+
[key: string]: any;
|
|
1712
|
+
}>;
|
|
1713
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"meter">;
|
|
874
1714
|
// --- Additional Scripting & Document Elements ---
|
|
875
1715
|
/**
|
|
876
1716
|
* Defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.
|
|
877
1717
|
* @param props Optional properties for the noscript element.
|
|
878
1718
|
* @returns A noscript element node.
|
|
879
1719
|
*/
|
|
880
|
-
export declare const Noscript: (props?:
|
|
1720
|
+
export declare const Noscript: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1721
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1722
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1723
|
+
theme: Partial<{
|
|
1724
|
+
[key: string]: any;
|
|
1725
|
+
}>;
|
|
1726
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"noscript">;
|
|
881
1727
|
/**
|
|
882
1728
|
* A mechanism for holding HTML that is not to be rendered immediately when a page is loaded but may be instantiated subsequently during runtime using JavaScript.
|
|
883
1729
|
* @param props Optional properties for the template element.
|
|
884
1730
|
* @returns A template element node.
|
|
885
1731
|
*/
|
|
886
|
-
export declare const Template: (props?:
|
|
1732
|
+
export declare const Template: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1733
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "children">>;
|
|
1734
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1735
|
+
theme: Partial<{
|
|
1736
|
+
[key: string]: any;
|
|
1737
|
+
}>;
|
|
1738
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"template">;
|
|
887
1739
|
// --- Additional Sections Elements ---
|
|
888
1740
|
/**
|
|
889
1741
|
* Represents a heading group. It is used to group a set of <h1>–<h6> elements.
|
|
890
1742
|
* @param props Optional properties for the hgroup element.
|
|
891
1743
|
* @returns An hgroup element node.
|
|
892
1744
|
*/
|
|
893
|
-
export declare const Hgroup: (props?:
|
|
1745
|
+
export declare const Hgroup: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1746
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1747
|
+
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1748
|
+
theme: Partial<{
|
|
1749
|
+
[key: string]: any;
|
|
1750
|
+
}>;
|
|
1751
|
+
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"hgroup">;
|
|
894
1752
|
//# sourceMappingURL=html.node.d.ts.map
|