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