@meonode/ui 0.0.1-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +188 -0
- package/dist/core.node.d.ts +25 -0
- package/dist/core.node.d.ts.map +1 -0
- package/dist/core.node.js +105 -0
- package/dist/html.node.d.ts +596 -0
- package/dist/html.node.d.ts.map +1 -0
- package/dist/html.node.js +408 -0
- package/dist/json/css-properties.json +1311 -0
- package/dist/main.d.ts +5 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.js +1 -0
- package/dist/node.helper.d.ts +71 -0
- package/dist/node.helper.d.ts.map +1 -0
- package/dist/node.helper.js +76 -0
- package/dist/node.type.d.ts +108 -0
- package/dist/node.type.d.ts.map +1 -0
- package/dist/node.type.js +1 -0
- package/dist/react-is.helper.d.ts +139 -0
- package/dist/react-is.helper.d.ts.map +1 -0
- package/dist/react-is.helper.js +84 -0
- package/docs/basic-usage.md +66 -0
- package/docs/conditional-component-with-hook.md +71 -0
- package/package.json +54 -0
|
@@ -0,0 +1,596 @@
|
|
|
1
|
+
import type { NodeProps } from './node.type.ts';
|
|
2
|
+
/**
|
|
3
|
+
* Represents the root HTML element.
|
|
4
|
+
* @param props Optional properties for the HTML element.
|
|
5
|
+
* @returns An HTML element node.
|
|
6
|
+
*/
|
|
7
|
+
export declare const Html: (props?: NodeProps<"html">) => import("./node.type.ts").BaseNodeInstance<"html">;
|
|
8
|
+
/**
|
|
9
|
+
* Represents the body element of an HTML document.
|
|
10
|
+
* @param props Optional properties for the body element.
|
|
11
|
+
* @returns A body element node.
|
|
12
|
+
*/
|
|
13
|
+
export declare const Body: (props?: NodeProps<"body">) => import("./node.type.ts").BaseNodeInstance<"body">;
|
|
14
|
+
/**
|
|
15
|
+
* Represents a div element.
|
|
16
|
+
* @param props Optional properties for the div element.
|
|
17
|
+
* @returns A div element node.
|
|
18
|
+
*/
|
|
19
|
+
export declare const Div: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
20
|
+
/**
|
|
21
|
+
* Represents a span element.
|
|
22
|
+
* @param props Optional properties for the span element.
|
|
23
|
+
* @returns A span element node.
|
|
24
|
+
*/
|
|
25
|
+
export declare const Span: (props?: NodeProps<"span">) => import("./node.type.ts").BaseNodeInstance<"span">;
|
|
26
|
+
/**
|
|
27
|
+
* Represents a paragraph element.
|
|
28
|
+
* @param props Optional properties for the paragraph element.
|
|
29
|
+
* @returns A paragraph element node.
|
|
30
|
+
*/
|
|
31
|
+
export declare const P: (props?: NodeProps<"p">) => import("./node.type.ts").BaseNodeInstance<"p">;
|
|
32
|
+
/**
|
|
33
|
+
* Represents a preformatted text element.
|
|
34
|
+
* @param props Optional properties for the pre element.
|
|
35
|
+
* @returns A pre element node.
|
|
36
|
+
*/
|
|
37
|
+
export declare const Pre: (props?: NodeProps<"pre">) => import("./node.type.ts").BaseNodeInstance<"pre">;
|
|
38
|
+
/**
|
|
39
|
+
* Represents a code element for displaying code snippets.
|
|
40
|
+
* @param props Optional properties for the code element.
|
|
41
|
+
* @returns A code element node.
|
|
42
|
+
*/
|
|
43
|
+
export declare const Code: (props?: NodeProps<"code">) => import("./node.type.ts").BaseNodeInstance<"code">;
|
|
44
|
+
/**
|
|
45
|
+
* Represents a column layout using flexbox.
|
|
46
|
+
* @param props Optional properties for the column layout.
|
|
47
|
+
* @returns A div element node with flexbox column layout.
|
|
48
|
+
*/
|
|
49
|
+
export declare const Column: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
50
|
+
/**
|
|
51
|
+
* Represents a row layout using flexbox.
|
|
52
|
+
* @param props Optional properties for the row layout.
|
|
53
|
+
* @returns A div element node with flexbox row layout.
|
|
54
|
+
*/
|
|
55
|
+
export declare const Row: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
56
|
+
/**
|
|
57
|
+
* Represents a grid layout.
|
|
58
|
+
* @param props Optional properties for the grid layout.
|
|
59
|
+
* @returns A div element node with grid layout.
|
|
60
|
+
*/
|
|
61
|
+
export declare const Grid: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
62
|
+
/**
|
|
63
|
+
* Represents the main content of a document.
|
|
64
|
+
* @param props Optional properties for the main element.
|
|
65
|
+
* @returns A main element node.
|
|
66
|
+
*/
|
|
67
|
+
export declare const Main: (props?: NodeProps<"main">) => import("./node.type.ts").BaseNodeInstance<"main">;
|
|
68
|
+
/**
|
|
69
|
+
* Represents a centered layout using flexbox.
|
|
70
|
+
* @param props Optional properties for the centered layout.
|
|
71
|
+
* @returns A div element node with centered flexbox layout.
|
|
72
|
+
*/
|
|
73
|
+
export declare const Center: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
74
|
+
/**
|
|
75
|
+
* Represents a relatively positioned element.
|
|
76
|
+
* @param props Optional properties for the relatively positioned element.
|
|
77
|
+
* @returns A div element node with relative positioning.
|
|
78
|
+
*/
|
|
79
|
+
export declare const Relative: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
80
|
+
/**
|
|
81
|
+
* Represents an absolutely positioned element.
|
|
82
|
+
* @param props Optional properties for the absolutely positioned element.
|
|
83
|
+
* @returns A div element node with absolute positioning.
|
|
84
|
+
*/
|
|
85
|
+
export declare const Absolute: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
86
|
+
/**
|
|
87
|
+
* Represents a sticky positioned element.
|
|
88
|
+
* @param props Optional properties for the sticky positioned element.
|
|
89
|
+
* @returns A div element node with sticky positioning.
|
|
90
|
+
*/
|
|
91
|
+
export declare const Sticky: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
92
|
+
/**
|
|
93
|
+
* Represents a statically positioned element.
|
|
94
|
+
* @param props Optional properties for the statically positioned element.
|
|
95
|
+
* @returns A div element node with static positioning.
|
|
96
|
+
*/
|
|
97
|
+
export declare const Static: (props?: NodeProps<"div">) => import("./node.type.ts").BaseNodeInstance<"div">;
|
|
98
|
+
/**
|
|
99
|
+
* Represents a level 1 heading.
|
|
100
|
+
* @param props Optional properties for the h1 element.
|
|
101
|
+
* @returns An h1 element node.
|
|
102
|
+
*/
|
|
103
|
+
export declare const H1: (props?: NodeProps<"h1">) => import("./node.type.ts").BaseNodeInstance<"h1">;
|
|
104
|
+
/**
|
|
105
|
+
* Represents a level 2 heading.
|
|
106
|
+
* @param props Optional properties for the h2 element.
|
|
107
|
+
* @returns An h2 element node.
|
|
108
|
+
*/
|
|
109
|
+
export declare const H2: (props?: NodeProps<"h2">) => import("./node.type.ts").BaseNodeInstance<"h2">;
|
|
110
|
+
/**
|
|
111
|
+
* Represents a level 3 heading.
|
|
112
|
+
* @param props Optional properties for the h3 element.
|
|
113
|
+
* @returns An h3 element node.
|
|
114
|
+
*/
|
|
115
|
+
export declare const H3: (props?: NodeProps<"h3">) => import("./node.type.ts").BaseNodeInstance<"h3">;
|
|
116
|
+
/**
|
|
117
|
+
* Represents a level 4 heading.
|
|
118
|
+
* @param props Optional properties for the h4 element.
|
|
119
|
+
* @returns An h4 element node.
|
|
120
|
+
*/
|
|
121
|
+
export declare const H4: (props?: NodeProps<"h4">) => import("./node.type.ts").BaseNodeInstance<"h4">;
|
|
122
|
+
/**
|
|
123
|
+
* Represents a level 5 heading.
|
|
124
|
+
* @param props Optional properties for the h5 element.
|
|
125
|
+
* @returns An h5 element node.
|
|
126
|
+
*/
|
|
127
|
+
export declare const H5: (props?: NodeProps<"h5">) => import("./node.type.ts").BaseNodeInstance<"h5">;
|
|
128
|
+
/**
|
|
129
|
+
* Represents a level 6 heading.
|
|
130
|
+
* @param props Optional properties for the h6 element.
|
|
131
|
+
* @returns An h6 element node.
|
|
132
|
+
*/
|
|
133
|
+
export declare const H6: (props?: NodeProps<"h6">) => import("./node.type.ts").BaseNodeInstance<"h6">;
|
|
134
|
+
/**
|
|
135
|
+
* Represents a strong emphasis element.
|
|
136
|
+
* @param props Optional properties for the strong element.
|
|
137
|
+
* @returns A strong element node.
|
|
138
|
+
*/
|
|
139
|
+
export declare const Strong: (props?: NodeProps<"strong">) => import("./node.type.ts").BaseNodeInstance<"strong">;
|
|
140
|
+
/**
|
|
141
|
+
* Represents an emphasized text element.
|
|
142
|
+
* @param props Optional properties for the em element.
|
|
143
|
+
* @returns An em element node.
|
|
144
|
+
*/
|
|
145
|
+
export declare const Em: (props?: NodeProps<"em">) => import("./node.type.ts").BaseNodeInstance<"em">;
|
|
146
|
+
/**
|
|
147
|
+
* Represents a small text element.
|
|
148
|
+
* @param props Optional properties for the small element.
|
|
149
|
+
* @returns A small element node.
|
|
150
|
+
*/
|
|
151
|
+
export declare const Small: (props?: NodeProps<"small">) => import("./node.type.ts").BaseNodeInstance<"small">;
|
|
152
|
+
/**
|
|
153
|
+
* Represents a marked text element.
|
|
154
|
+
* @param props Optional properties for the mark element.
|
|
155
|
+
* @returns A mark element node.
|
|
156
|
+
*/
|
|
157
|
+
export declare const Mark: (props?: NodeProps<"mark">) => import("./node.type.ts").BaseNodeInstance<"mark">;
|
|
158
|
+
/**
|
|
159
|
+
* Represents an ordered list.
|
|
160
|
+
* @param props Optional properties for the ol element.
|
|
161
|
+
* @returns An ol element node.
|
|
162
|
+
*/
|
|
163
|
+
export declare const Ol: (props?: NodeProps<"ol">) => import("./node.type.ts").BaseNodeInstance<"ol">;
|
|
164
|
+
/**
|
|
165
|
+
* Represents an unordered list.
|
|
166
|
+
* @param props Optional properties for the ul element.
|
|
167
|
+
* @returns A ul element node.
|
|
168
|
+
*/
|
|
169
|
+
export declare const Ul: (props?: NodeProps<"ul">) => import("./node.type.ts").BaseNodeInstance<"ul">;
|
|
170
|
+
/**
|
|
171
|
+
* Represents a list item.
|
|
172
|
+
* @param props Optional properties for the li element.
|
|
173
|
+
* @returns An li element node.
|
|
174
|
+
*/
|
|
175
|
+
export declare const Li: (props?: NodeProps<"li">) => import("./node.type.ts").BaseNodeInstance<"li">;
|
|
176
|
+
/**
|
|
177
|
+
* Represents a description list.
|
|
178
|
+
* @param props Optional properties for the dl element.
|
|
179
|
+
* @returns A dl element node.
|
|
180
|
+
*/
|
|
181
|
+
export declare const Dl: (props?: NodeProps<"dl">) => import("./node.type.ts").BaseNodeInstance<"dl">;
|
|
182
|
+
/**
|
|
183
|
+
* Represents a term in a description list.
|
|
184
|
+
* @param props Optional properties for the dt element.
|
|
185
|
+
* @returns A dt element node.
|
|
186
|
+
*/
|
|
187
|
+
export declare const Dt: (props?: NodeProps<"dt">) => import("./node.type.ts").BaseNodeInstance<"dt">;
|
|
188
|
+
/**
|
|
189
|
+
* Represents a description in a description list.
|
|
190
|
+
* @param props Optional properties for the dd element.
|
|
191
|
+
* @returns A dd element node.
|
|
192
|
+
*/
|
|
193
|
+
export declare const Dd: (props?: NodeProps<"dd">) => import("./node.type.ts").BaseNodeInstance<"dd">;
|
|
194
|
+
/**
|
|
195
|
+
* Represents an HTML form.
|
|
196
|
+
* @param props Optional properties for the form element.
|
|
197
|
+
* @returns A form element node.
|
|
198
|
+
*/
|
|
199
|
+
export declare const Form: (props?: NodeProps<"form">) => import("./node.type.ts").BaseNodeInstance<"form">;
|
|
200
|
+
/**
|
|
201
|
+
* Represents a label for an input element.
|
|
202
|
+
* @param props Optional properties for the label element.
|
|
203
|
+
* @returns A label element node.
|
|
204
|
+
*/
|
|
205
|
+
export declare const Label: (props?: NodeProps<"label">) => import("./node.type.ts").BaseNodeInstance<"label">;
|
|
206
|
+
/**
|
|
207
|
+
* Represents an input element.
|
|
208
|
+
* @param props Optional properties for the input element.
|
|
209
|
+
* @returns An input element node.
|
|
210
|
+
*/
|
|
211
|
+
export declare const Input: (props?: NodeProps<"input">) => import("./node.type.ts").BaseNodeInstance<"input">;
|
|
212
|
+
/**
|
|
213
|
+
* Represents a button element.
|
|
214
|
+
* @param props Optional properties for the button element.
|
|
215
|
+
* @returns A button element node.
|
|
216
|
+
*/
|
|
217
|
+
export declare const Button: (props?: NodeProps<"button">) => import("./node.type.ts").BaseNodeInstance<"button">;
|
|
218
|
+
/**
|
|
219
|
+
* Represents a textarea element for multiline text input.
|
|
220
|
+
* @param props Optional properties for the textarea element.
|
|
221
|
+
* @returns A textarea element node.
|
|
222
|
+
*/
|
|
223
|
+
export declare const Textarea: (props?: NodeProps<"textarea">) => import("./node.type.ts").BaseNodeInstance<"textarea">;
|
|
224
|
+
/**
|
|
225
|
+
* Represents a select dropdown element.
|
|
226
|
+
* @param props Optional properties for the select element.
|
|
227
|
+
* @returns A select element node.
|
|
228
|
+
*/
|
|
229
|
+
export declare const Select: (props?: NodeProps<"select">) => import("./node.type.ts").BaseNodeInstance<"select">;
|
|
230
|
+
/**
|
|
231
|
+
* Represents an option within a select element.
|
|
232
|
+
* @param props Optional properties for the option element.
|
|
233
|
+
* @returns An option element node.
|
|
234
|
+
*/
|
|
235
|
+
export declare const Option: (props?: NodeProps<"option">) => import("./node.type.ts").BaseNodeInstance<"option">;
|
|
236
|
+
/**
|
|
237
|
+
* Represents a fieldset element for grouping form elements.
|
|
238
|
+
* @param props Optional properties for the fieldset element.
|
|
239
|
+
* @returns A fieldset element node.
|
|
240
|
+
*/
|
|
241
|
+
export declare const Fieldset: (props?: NodeProps<"fieldset">) => import("./node.type.ts").BaseNodeInstance<"fieldset">;
|
|
242
|
+
/**
|
|
243
|
+
* Represents a legend for a fieldset.
|
|
244
|
+
* @param props Optional properties for the legend element.
|
|
245
|
+
* @returns A legend element node.
|
|
246
|
+
*/
|
|
247
|
+
export declare const Legend: (props?: NodeProps<"legend">) => import("./node.type.ts").BaseNodeInstance<"legend">;
|
|
248
|
+
/**
|
|
249
|
+
* Represents an option group within a select element.
|
|
250
|
+
* @param props Optional properties for the optgroup element.
|
|
251
|
+
* @returns An optgroup element node.
|
|
252
|
+
*/
|
|
253
|
+
export declare const Optgroup: (props?: NodeProps<"optgroup">) => import("./node.type.ts").BaseNodeInstance<"optgroup">;
|
|
254
|
+
/**
|
|
255
|
+
* Represents a table element.
|
|
256
|
+
* @param props Optional properties for the table element.
|
|
257
|
+
* @returns A table element node.
|
|
258
|
+
*/
|
|
259
|
+
export declare const Table: (props?: NodeProps<"table">) => import("./node.type.ts").BaseNodeInstance<"table">;
|
|
260
|
+
/**
|
|
261
|
+
* Represents a table header section.
|
|
262
|
+
* @param props Optional properties for the thead element.
|
|
263
|
+
* @returns A thead element node.
|
|
264
|
+
*/
|
|
265
|
+
export declare const Thead: (props?: NodeProps<"thead">) => import("./node.type.ts").BaseNodeInstance<"thead">;
|
|
266
|
+
/**
|
|
267
|
+
* Represents a table body section.
|
|
268
|
+
* @param props Optional properties for the tbody element.
|
|
269
|
+
* @returns A tbody element node.
|
|
270
|
+
*/
|
|
271
|
+
export declare const Tbody: (props?: NodeProps<"tbody">) => import("./node.type.ts").BaseNodeInstance<"tbody">;
|
|
272
|
+
/**
|
|
273
|
+
* Represents a table footer section.
|
|
274
|
+
* @param props Optional properties for the tfoot element.
|
|
275
|
+
* @returns A tfoot element node.
|
|
276
|
+
*/
|
|
277
|
+
export declare const Tfoot: (props?: NodeProps<"tfoot">) => import("./node.type.ts").BaseNodeInstance<"tfoot">;
|
|
278
|
+
/**
|
|
279
|
+
* Represents a table row.
|
|
280
|
+
* @param props Optional properties for the tr element.
|
|
281
|
+
* @returns A tr element node.
|
|
282
|
+
*/
|
|
283
|
+
export declare const Tr: (props?: NodeProps<"tr">) => import("./node.type.ts").BaseNodeInstance<"tr">;
|
|
284
|
+
/**
|
|
285
|
+
* Represents a table header cell.
|
|
286
|
+
* @param props Optional properties for the th element.
|
|
287
|
+
* @returns A th element node.
|
|
288
|
+
*/
|
|
289
|
+
export declare const Th: (props?: NodeProps<"th">) => import("./node.type.ts").BaseNodeInstance<"th">;
|
|
290
|
+
/**
|
|
291
|
+
* Represents a table data cell.
|
|
292
|
+
* @param props Optional properties for the td element.
|
|
293
|
+
* @returns A td element node.
|
|
294
|
+
*/
|
|
295
|
+
export declare const Td: (props?: NodeProps<"td">) => import("./node.type.ts").BaseNodeInstance<"td">;
|
|
296
|
+
/**
|
|
297
|
+
* Represents a table caption.
|
|
298
|
+
* @param props Optional properties for the caption element.
|
|
299
|
+
* @returns A caption element node.
|
|
300
|
+
*/
|
|
301
|
+
export declare const Caption: (props?: NodeProps<"caption">) => import("./node.type.ts").BaseNodeInstance<"caption">;
|
|
302
|
+
/**
|
|
303
|
+
* Represents a table column group.
|
|
304
|
+
* @param props Optional properties for the colgroup element.
|
|
305
|
+
* @returns A colgroup element node.
|
|
306
|
+
*/
|
|
307
|
+
export declare const Colgroup: (props?: NodeProps<"colgroup">) => import("./node.type.ts").BaseNodeInstance<"colgroup">;
|
|
308
|
+
/**
|
|
309
|
+
* Represents a table column.
|
|
310
|
+
* @param props Optional properties for the col element.
|
|
311
|
+
* @returns A col element node.
|
|
312
|
+
*/
|
|
313
|
+
export declare const Col: (props?: NodeProps<"col">) => import("./node.type.ts").BaseNodeInstance<"col">;
|
|
314
|
+
/**
|
|
315
|
+
* Represents an image element (alias for Img).
|
|
316
|
+
* @param props Optional properties for the img element.
|
|
317
|
+
* @returns An img element node.
|
|
318
|
+
*/
|
|
319
|
+
export declare const Image: (props?: NodeProps<"img">) => import("./node.type.ts").BaseNodeInstance<"img">;
|
|
320
|
+
/**
|
|
321
|
+
* Represents an image element.
|
|
322
|
+
* @param props Optional properties for the img element.
|
|
323
|
+
* @returns An img element node.
|
|
324
|
+
*/
|
|
325
|
+
export declare const Img: (props?: NodeProps<"img">) => import("./node.type.ts").BaseNodeInstance<"img">;
|
|
326
|
+
/**
|
|
327
|
+
* Represents a video element.
|
|
328
|
+
* @param props Optional properties for the video element.
|
|
329
|
+
* @returns A video element node.
|
|
330
|
+
*/
|
|
331
|
+
export declare const Video: (props?: NodeProps<"video">) => import("./node.type.ts").BaseNodeInstance<"video">;
|
|
332
|
+
/**
|
|
333
|
+
* Represents an audio element.
|
|
334
|
+
* @param props Optional properties for the audio element.
|
|
335
|
+
* @returns An audio element node.
|
|
336
|
+
*/
|
|
337
|
+
export declare const Audio: (props?: NodeProps<"audio">) => import("./node.type.ts").BaseNodeInstance<"audio">;
|
|
338
|
+
/**
|
|
339
|
+
* Represents a picture element.
|
|
340
|
+
* @param props Optional properties for the picture element.
|
|
341
|
+
* @returns A picture element node.
|
|
342
|
+
*/
|
|
343
|
+
export declare const Picture: (props?: NodeProps<"picture">) => import("./node.type.ts").BaseNodeInstance<"picture">;
|
|
344
|
+
/**
|
|
345
|
+
* Represents a source element.
|
|
346
|
+
* @param props Optional properties for the source element.
|
|
347
|
+
* @returns A source element node.
|
|
348
|
+
*/
|
|
349
|
+
export declare const Source: (props?: NodeProps<"source">) => import("./node.type.ts").BaseNodeInstance<"source">;
|
|
350
|
+
/**
|
|
351
|
+
* Represents a text track element.
|
|
352
|
+
* @param props Optional properties for the track element.
|
|
353
|
+
* @returns A track element node.
|
|
354
|
+
*/
|
|
355
|
+
export declare const Track: (props?: NodeProps<"track">) => import("./node.type.ts").BaseNodeInstance<"track">;
|
|
356
|
+
/**
|
|
357
|
+
* Represents a canvas element.
|
|
358
|
+
* @param props Optional properties for the canvas element.
|
|
359
|
+
* @returns A canvas element node.
|
|
360
|
+
*/
|
|
361
|
+
export declare const Canvas: (props?: NodeProps<"canvas">) => import("./node.type.ts").BaseNodeInstance<"canvas">;
|
|
362
|
+
/**
|
|
363
|
+
* Represents an iframe element.
|
|
364
|
+
* @param props Optional properties for the iframe element.
|
|
365
|
+
* @returns An iframe element node.
|
|
366
|
+
*/
|
|
367
|
+
export declare const Iframe: (props?: NodeProps<"iframe">) => import("./node.type.ts").BaseNodeInstance<"iframe">;
|
|
368
|
+
/**
|
|
369
|
+
* Represents an SVG container element.
|
|
370
|
+
* @param props Optional properties for the svg element.
|
|
371
|
+
* @returns An svg element node.
|
|
372
|
+
*/
|
|
373
|
+
export declare const Svg: (props?: NodeProps<"svg">) => import("./node.type.ts").BaseNodeInstance<"svg">;
|
|
374
|
+
/**
|
|
375
|
+
* Represents an SVG path element.
|
|
376
|
+
* @param props Optional properties for the path element.
|
|
377
|
+
* @returns A path element node.
|
|
378
|
+
*/
|
|
379
|
+
export declare const SvgPath: (props?: NodeProps<"path">) => import("./node.type.ts").BaseNodeInstance<"path">;
|
|
380
|
+
/**
|
|
381
|
+
* Represents an SVG circle element.
|
|
382
|
+
* @param props Optional properties for the circle element.
|
|
383
|
+
* @returns A circle element node.
|
|
384
|
+
*/
|
|
385
|
+
export declare const SvgCircle: (props?: NodeProps<"circle">) => import("./node.type.ts").BaseNodeInstance<"circle">;
|
|
386
|
+
/**
|
|
387
|
+
* Represents an SVG ellipse element.
|
|
388
|
+
* @param props Optional properties for the ellipse element.
|
|
389
|
+
* @returns An ellipse element node.
|
|
390
|
+
*/
|
|
391
|
+
export declare const SvgEllipse: (props?: NodeProps<"ellipse">) => import("./node.type.ts").BaseNodeInstance<"ellipse">;
|
|
392
|
+
/**
|
|
393
|
+
* Represents an SVG line element.
|
|
394
|
+
* @param props Optional properties for the line element.
|
|
395
|
+
* @returns A line element node.
|
|
396
|
+
*/
|
|
397
|
+
export declare const SvgLine: (props?: NodeProps<"line">) => import("./node.type.ts").BaseNodeInstance<"line">;
|
|
398
|
+
/**
|
|
399
|
+
* Represents an SVG polyline element.
|
|
400
|
+
* @param props Optional properties for the polyline element.
|
|
401
|
+
* @returns A polyline element node.
|
|
402
|
+
*/
|
|
403
|
+
export declare const SvgPolyline: (props?: NodeProps<"polyline">) => import("./node.type.ts").BaseNodeInstance<"polyline">;
|
|
404
|
+
/**
|
|
405
|
+
* Represents an SVG polygon element.
|
|
406
|
+
* @param props Optional properties for the polygon element.
|
|
407
|
+
* @returns A polygon element node.
|
|
408
|
+
*/
|
|
409
|
+
export declare const SvgPolygon: (props?: NodeProps<"polygon">) => import("./node.type.ts").BaseNodeInstance<"polygon">;
|
|
410
|
+
/**
|
|
411
|
+
* Represents an SVG rectangle element.
|
|
412
|
+
* @param props Optional properties for the rect element.
|
|
413
|
+
* @returns A rect element node.
|
|
414
|
+
*/
|
|
415
|
+
export declare const SvgRect: (props?: NodeProps<"rect">) => import("./node.type.ts").BaseNodeInstance<"rect">;
|
|
416
|
+
/**
|
|
417
|
+
* Represents an SVG use element.
|
|
418
|
+
* @param props Optional properties for the use element.
|
|
419
|
+
* @returns A use element node.
|
|
420
|
+
*/
|
|
421
|
+
export declare const SvgUse: (props?: NodeProps<"use">) => import("./node.type.ts").BaseNodeInstance<"use">;
|
|
422
|
+
/**
|
|
423
|
+
* Represents an SVG definitions element.
|
|
424
|
+
* @param props Optional properties for the defs element.
|
|
425
|
+
* @returns A defs element node.
|
|
426
|
+
*/
|
|
427
|
+
export declare const SvgDefs: (props?: NodeProps<"defs">) => import("./node.type.ts").BaseNodeInstance<"defs">;
|
|
428
|
+
/**
|
|
429
|
+
* Represents an SVG linear gradient element.
|
|
430
|
+
* @param props Optional properties for the linearGradient element.
|
|
431
|
+
* @returns A linearGradient element node.
|
|
432
|
+
*/
|
|
433
|
+
export declare const SvgLinearGradient: (props?: NodeProps<"linearGradient">) => import("./node.type.ts").BaseNodeInstance<"linearGradient">;
|
|
434
|
+
/**
|
|
435
|
+
* Represents an SVG radial gradient element.
|
|
436
|
+
* @param props Optional properties for the radialGradient element.
|
|
437
|
+
* @returns A radialGradient element node.
|
|
438
|
+
*/
|
|
439
|
+
export declare const SvgRadialGradient: (props?: NodeProps<"radialGradient">) => import("./node.type.ts").BaseNodeInstance<"radialGradient">;
|
|
440
|
+
/**
|
|
441
|
+
* Represents an SVG gradient stop element.
|
|
442
|
+
* @param props Optional properties for the stop element.
|
|
443
|
+
* @returns A stop element node.
|
|
444
|
+
*/
|
|
445
|
+
export declare const SvgStop: (props?: NodeProps<"stop">) => import("./node.type.ts").BaseNodeInstance<"stop">;
|
|
446
|
+
/**
|
|
447
|
+
* Represents an SVG symbol element.
|
|
448
|
+
* @param props Optional properties for the symbol element.
|
|
449
|
+
* @returns A symbol element node.
|
|
450
|
+
*/
|
|
451
|
+
export declare const SvgSymbol: (props?: NodeProps<"symbol">) => import("./node.type.ts").BaseNodeInstance<"symbol">;
|
|
452
|
+
/**
|
|
453
|
+
* Represents an SVG group element.
|
|
454
|
+
* @param props Optional properties for the g element.
|
|
455
|
+
* @returns A g element node.
|
|
456
|
+
*/
|
|
457
|
+
export declare const SvgG: (props?: NodeProps<"g">) => import("./node.type.ts").BaseNodeInstance<"g">;
|
|
458
|
+
/**
|
|
459
|
+
* Represents an SVG text element.
|
|
460
|
+
* @param props Optional properties for the text element.
|
|
461
|
+
* @returns A text element node.
|
|
462
|
+
*/
|
|
463
|
+
export declare const SvgText: (props?: NodeProps<"text">) => import("./node.type.ts").BaseNodeInstance<"text">;
|
|
464
|
+
/**
|
|
465
|
+
* Represents an SVG text span element.
|
|
466
|
+
* @param props Optional properties for the tspan element.
|
|
467
|
+
* @returns A tspan element node.
|
|
468
|
+
*/
|
|
469
|
+
export declare const SvgTspan: (props?: NodeProps<"tspan">) => import("./node.type.ts").BaseNodeInstance<"tspan">;
|
|
470
|
+
/**
|
|
471
|
+
* Represents an anchor element.
|
|
472
|
+
* @param props Optional properties for the a element.
|
|
473
|
+
* @returns An a element node.
|
|
474
|
+
*/
|
|
475
|
+
export declare const A: (props?: NodeProps<"a">) => import("./node.type.ts").BaseNodeInstance<"a">;
|
|
476
|
+
/**
|
|
477
|
+
* Represents a navigation element.
|
|
478
|
+
* @param props Optional properties for the nav element.
|
|
479
|
+
* @returns A nav element node.
|
|
480
|
+
*/
|
|
481
|
+
export declare const Nav: (props?: NodeProps<"nav">) => import("./node.type.ts").BaseNodeInstance<"nav">;
|
|
482
|
+
/**
|
|
483
|
+
* Represents a header element.
|
|
484
|
+
* @param props Optional properties for the header element.
|
|
485
|
+
* @returns A header element node.
|
|
486
|
+
*/
|
|
487
|
+
export declare const Header: (props?: NodeProps<"header">) => import("./node.type.ts").BaseNodeInstance<"header">;
|
|
488
|
+
/**
|
|
489
|
+
* Represents a footer element.
|
|
490
|
+
* @param props Optional properties for the footer element.
|
|
491
|
+
* @returns A footer element node.
|
|
492
|
+
*/
|
|
493
|
+
export declare const Footer: (props?: NodeProps<"footer">) => import("./node.type.ts").BaseNodeInstance<"footer">;
|
|
494
|
+
/**
|
|
495
|
+
* Represents an aside element.
|
|
496
|
+
* @param props Optional properties for the aside element.
|
|
497
|
+
* @returns An aside element node.
|
|
498
|
+
*/
|
|
499
|
+
export declare const Aside: (props?: NodeProps<"aside">) => import("./node.type.ts").BaseNodeInstance<"aside">;
|
|
500
|
+
/**
|
|
501
|
+
* Represents a section element.
|
|
502
|
+
* @param props Optional properties for the section element.
|
|
503
|
+
* @returns A section element node.
|
|
504
|
+
*/
|
|
505
|
+
export declare const Section: (props?: NodeProps<"section">) => import("./node.type.ts").BaseNodeInstance<"section">;
|
|
506
|
+
/**
|
|
507
|
+
* Represents an article element.
|
|
508
|
+
* @param props Optional properties for the article element.
|
|
509
|
+
* @returns An article element node.
|
|
510
|
+
*/
|
|
511
|
+
export declare const Article: (props?: NodeProps<"article">) => import("./node.type.ts").BaseNodeInstance<"article">;
|
|
512
|
+
/**
|
|
513
|
+
* Represents a figure element.
|
|
514
|
+
* @param props Optional properties for the figure element.
|
|
515
|
+
* @returns A figure element node.
|
|
516
|
+
*/
|
|
517
|
+
export declare const Figure: (props?: NodeProps<"figure">) => import("./node.type.ts").BaseNodeInstance<"figure">;
|
|
518
|
+
/**
|
|
519
|
+
* Represents a figure caption element.
|
|
520
|
+
* @param props Optional properties for the figcaption element.
|
|
521
|
+
* @returns A figcaption element node.
|
|
522
|
+
*/
|
|
523
|
+
export declare const Figcaption: (props?: NodeProps<"figcaption">) => import("./node.type.ts").BaseNodeInstance<"figcaption">;
|
|
524
|
+
/**
|
|
525
|
+
* Represents a blockquote element.
|
|
526
|
+
* @param props Optional properties for the blockquote element.
|
|
527
|
+
* @returns A blockquote element node.
|
|
528
|
+
*/
|
|
529
|
+
export declare const Blockquote: (props?: NodeProps<"blockquote">) => import("./node.type.ts").BaseNodeInstance<"blockquote">;
|
|
530
|
+
/**
|
|
531
|
+
* Represents an address element.
|
|
532
|
+
* @param props Optional properties for the address element.
|
|
533
|
+
* @returns An address element node.
|
|
534
|
+
*/
|
|
535
|
+
export declare const Address: (props?: NodeProps<"address">) => import("./node.type.ts").BaseNodeInstance<"address">;
|
|
536
|
+
/**
|
|
537
|
+
* Represents a dialog element.
|
|
538
|
+
* @param props Optional properties for the dialog element.
|
|
539
|
+
* @returns A dialog element node.
|
|
540
|
+
*/
|
|
541
|
+
export declare const Dialog: (props?: NodeProps<"dialog">) => import("./node.type.ts").BaseNodeInstance<"dialog">;
|
|
542
|
+
/**
|
|
543
|
+
* Represents a details element.
|
|
544
|
+
* @param props Optional properties for the details element.
|
|
545
|
+
* @returns A details element node.
|
|
546
|
+
*/
|
|
547
|
+
export declare const Details: (props?: NodeProps<"details">) => import("./node.type.ts").BaseNodeInstance<"details">;
|
|
548
|
+
/**
|
|
549
|
+
* Represents a summary element.
|
|
550
|
+
* @param props Optional properties for the summary element.
|
|
551
|
+
* @returns A summary element node.
|
|
552
|
+
*/
|
|
553
|
+
export declare const Summary: (props?: NodeProps<"summary">) => import("./node.type.ts").BaseNodeInstance<"summary">;
|
|
554
|
+
/**
|
|
555
|
+
* Represents a head element.
|
|
556
|
+
* @param props Optional properties for the head element.
|
|
557
|
+
* @returns A head element node.
|
|
558
|
+
*/
|
|
559
|
+
export declare const Head: (props?: NodeProps<"head">) => import("./node.type.ts").BaseNodeInstance<"head">;
|
|
560
|
+
/**
|
|
561
|
+
* Represents a meta element.
|
|
562
|
+
* @param props Optional properties for the meta element.
|
|
563
|
+
* @returns A meta element node.
|
|
564
|
+
*/
|
|
565
|
+
export declare const Meta: (props?: NodeProps<"meta">) => import("./node.type.ts").BaseNodeInstance<"meta">;
|
|
566
|
+
/**
|
|
567
|
+
* Represents a link element.
|
|
568
|
+
* @param props Optional properties for the link element.
|
|
569
|
+
* @returns A link element node.
|
|
570
|
+
*/
|
|
571
|
+
export declare const Link: (props?: NodeProps<"link">) => import("./node.type.ts").BaseNodeInstance<"link">;
|
|
572
|
+
/**
|
|
573
|
+
* Represents a style element.
|
|
574
|
+
* @param props Optional properties for the style element.
|
|
575
|
+
* @returns A style element node.
|
|
576
|
+
*/
|
|
577
|
+
export declare const Style: (props?: NodeProps<"style">) => import("./node.type.ts").BaseNodeInstance<"style">;
|
|
578
|
+
/**
|
|
579
|
+
* Represents a script element.
|
|
580
|
+
* @param props Optional properties for the script element.
|
|
581
|
+
* @returns A script element node.
|
|
582
|
+
*/
|
|
583
|
+
export declare const Script: (props?: NodeProps<"script">) => import("./node.type.ts").BaseNodeInstance<"script">;
|
|
584
|
+
/**
|
|
585
|
+
* Represents a title element.
|
|
586
|
+
* @param props Optional properties for the title element.
|
|
587
|
+
* @returns A title element node.
|
|
588
|
+
*/
|
|
589
|
+
export declare const Title: (props?: NodeProps<"title">) => import("./node.type.ts").BaseNodeInstance<"title">;
|
|
590
|
+
/**
|
|
591
|
+
* Represents a base element.
|
|
592
|
+
* @param props Optional properties for the base element.
|
|
593
|
+
* @returns A base element node.
|
|
594
|
+
*/
|
|
595
|
+
export declare const Base: (props?: NodeProps<"base">) => import("./node.type.ts").BaseNodeInstance<"base">;
|
|
596
|
+
//# sourceMappingURL=html.node.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"html.node.d.ts","sourceRoot":"","sources":["../src/html.node.ts"],"names":[],"mappings":"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"}
|