@blinkk/root 2.5.10 → 2.5.12-alpha.0

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.
@@ -0,0 +1,127 @@
1
+ /**
2
+ * @module jsx-runtime
3
+ *
4
+ * Server-side JSX runtime for Root.js. Replaces Preact as the JSX renderer
5
+ * for server-side rendering (SSR/SSG). This module provides the automatic
6
+ * JSX transform entry point (`jsxImportSource`).
7
+ *
8
+ * Supports:
9
+ * - Automatic JSX transform (jsx, jsxs, Fragment)
10
+ * - Classic JSX transform (createElement / h)
11
+ * - Context API (createContext, useContext)
12
+ * - Server-side renderToString
13
+ */
14
+ type Key = string | number | null;
15
+ /**
16
+ * A virtual DOM node representing an element, component, or fragment.
17
+ */
18
+ interface VNode<P = Record<string, unknown>> {
19
+ type: string | FunctionalComponent<P> | typeof Fragment | (new (...args: any[]) => any);
20
+ props: P;
21
+ key: Key;
22
+ }
23
+ /**
24
+ * Valid children types for JSX elements.
25
+ */
26
+ type ComponentChildren = VNode<any> | string | number | bigint | boolean | null | undefined | ComponentChildren[];
27
+ type ComponentChild = ComponentChildren;
28
+ /**
29
+ * A function component that receives props and returns a VNode or null.
30
+ */
31
+ interface FunctionalComponent<P = Record<string, unknown>> {
32
+ (props: P): VNode<any> | null;
33
+ displayName?: string;
34
+ /** @internal Marks this component as a context Provider. */
35
+ _isProvider?: boolean;
36
+ /** @internal Reference to the context object for Provider components. */
37
+ _context?: Context<any>;
38
+ }
39
+ /**
40
+ * Generic component type (function components only for SSR).
41
+ */
42
+ type ComponentType<P = Record<string, unknown>> = FunctionalComponent<P>;
43
+ /**
44
+ * Global options object. The `vnode` callback is invoked for every VNode
45
+ * created via `jsx()`, `jsxs()`, or `createElement()`. This is used by the
46
+ * renderer to inject nonce values into script/style tags.
47
+ */
48
+ declare const options: {
49
+ vnode?: (vnode: VNode<any>) => void;
50
+ };
51
+ /**
52
+ * Fragment component. Renders its children without a wrapper DOM element.
53
+ * Used as `<>...</>` or `<Fragment>...</Fragment>` in JSX.
54
+ */
55
+ declare function Fragment(props: {
56
+ children?: ComponentChildren;
57
+ }): any;
58
+ /**
59
+ * Creates a VNode. Used by the automatic JSX transform for elements with
60
+ * a single child or no children.
61
+ */
62
+ declare function jsx(type: string | FunctionalComponent<any> | typeof Fragment, props: Record<string, any>, key?: Key): VNode;
63
+
64
+ /**
65
+ * Creates a VNode. Compatible with the classic `React.createElement` API.
66
+ *
67
+ * ```ts
68
+ * createElement('div', {className: 'foo'}, 'Hello', ' ', 'World');
69
+ * ```
70
+ */
71
+ declare function createElement(type: string | FunctionalComponent<any> | typeof Fragment, props?: Record<string, any> | null, ...children: any[]): VNode;
72
+
73
+ /**
74
+ * A context object created by `createContext()`. Provides a `Provider`
75
+ * component and can be read via `useContext()`.
76
+ */
77
+ interface Context<T> {
78
+ /** @internal Default value for this context. */
79
+ _defaultValue: T;
80
+ /** @internal Stack of provided values (managed by renderToString). */
81
+ _stack: T[];
82
+ /** Provider component that supplies a context value to descendants. */
83
+ Provider: FunctionalComponent<{
84
+ value: T;
85
+ children?: ComponentChildren;
86
+ }>;
87
+ }
88
+ /**
89
+ * Creates a new context with an optional default value. Returns a context
90
+ * object with a `Provider` component.
91
+ *
92
+ * ```ts
93
+ * const ThemeContext = createContext('light');
94
+ *
95
+ * // In a parent component:
96
+ * <ThemeContext.Provider value="dark">
97
+ * <App />
98
+ * </ThemeContext.Provider>
99
+ *
100
+ * // In a child component:
101
+ * const theme = useContext(ThemeContext);
102
+ * ```
103
+ */
104
+ declare function createContext<T>(defaultValue: T): Context<T>;
105
+ /**
106
+ * Reads the current value of a context. Must be called during the render
107
+ * of a function component that is a descendant of a matching Provider.
108
+ * Returns the default value if no Provider is found.
109
+ *
110
+ * ```ts
111
+ * const theme = useContext(ThemeContext);
112
+ * ```
113
+ */
114
+ declare function useContext<T>(context: Context<T>): T;
115
+
116
+ interface JsxRenderOptions {
117
+ /** Render mode. `'pretty'` adds newlines around block elements; `'minimal'` outputs compact HTML. Default: `'pretty'`. */
118
+ mode?: 'pretty' | 'minimal';
119
+ /** Additional tag names to treat as block-level elements in pretty mode. */
120
+ blockElements?: string[];
121
+ }
122
+ /**
123
+ * Renders a Preact VNode tree to an HTML string.
124
+ */
125
+ declare function renderJsxToString(vnode: VNode, options?: JsxRenderOptions): string;
126
+
127
+ export { type ComponentChildren as C, Fragment as F, type JsxRenderOptions as J, type Key as K, type VNode as V, createContext as a, type ComponentChild as b, createElement as c, type ComponentType as d, type FunctionalComponent as e, type Context as f, jsx as j, options as o, renderJsxToString as r, useContext as u };
package/dist/jsx.d.ts ADDED
@@ -0,0 +1,565 @@
1
+ import { C as ComponentChildren, V as VNode } from './jsx-render-BCCySLjz.js';
2
+ export { b as ComponentChild, d as ComponentType, f as Context, F as Fragment, e as FunctionalComponent, K as Key, a as createContext, c as createElement, c as h, j as jsx, j as jsxs, o as options, r as renderJsxToString, u as useContext } from './jsx-render-BCCySLjz.js';
3
+
4
+ /**
5
+ * @module types
6
+ *
7
+ * JSX namespace and HTML attribute type definitions for the Root.js SSR
8
+ * JSX runtime. These types allow TypeScript to type-check JSX expressions
9
+ * when `jsxImportSource` points to this module.
10
+ */
11
+
12
+ interface DOMAttributes {
13
+ children?: ComponentChildren;
14
+ dangerouslySetInnerHTML?: {
15
+ __html: string;
16
+ };
17
+ onCopy?: EventHandler;
18
+ onCut?: EventHandler;
19
+ onPaste?: EventHandler;
20
+ onKeyDown?: EventHandler;
21
+ onKeyPress?: EventHandler;
22
+ onKeyUp?: EventHandler;
23
+ onFocus?: EventHandler;
24
+ onBlur?: EventHandler;
25
+ onChange?: EventHandler;
26
+ onInput?: EventHandler;
27
+ onSubmit?: EventHandler;
28
+ onReset?: EventHandler;
29
+ onClick?: EventHandler;
30
+ onContextMenu?: EventHandler;
31
+ onDoubleClick?: EventHandler;
32
+ onDrag?: EventHandler;
33
+ onDragEnd?: EventHandler;
34
+ onDragEnter?: EventHandler;
35
+ onDragExit?: EventHandler;
36
+ onDragLeave?: EventHandler;
37
+ onDragOver?: EventHandler;
38
+ onDragStart?: EventHandler;
39
+ onDrop?: EventHandler;
40
+ onMouseDown?: EventHandler;
41
+ onMouseEnter?: EventHandler;
42
+ onMouseLeave?: EventHandler;
43
+ onMouseMove?: EventHandler;
44
+ onMouseOut?: EventHandler;
45
+ onMouseOver?: EventHandler;
46
+ onMouseUp?: EventHandler;
47
+ onTouchCancel?: EventHandler;
48
+ onTouchEnd?: EventHandler;
49
+ onTouchMove?: EventHandler;
50
+ onTouchStart?: EventHandler;
51
+ onScroll?: EventHandler;
52
+ onAnimationStart?: EventHandler;
53
+ onAnimationEnd?: EventHandler;
54
+ onAnimationIteration?: EventHandler;
55
+ onTransitionEnd?: EventHandler;
56
+ onLoad?: EventHandler;
57
+ onError?: EventHandler;
58
+ }
59
+ type EventHandler = (...args: any[]) => void;
60
+ interface AriaAttributes {
61
+ role?: string;
62
+ 'aria-activedescendant'?: string;
63
+ 'aria-atomic'?: boolean | 'false' | 'true';
64
+ 'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both';
65
+ 'aria-busy'?: boolean | 'false' | 'true';
66
+ 'aria-checked'?: boolean | 'false' | 'mixed' | 'true';
67
+ 'aria-colcount'?: number;
68
+ 'aria-colindex'?: number;
69
+ 'aria-colspan'?: number;
70
+ 'aria-controls'?: string;
71
+ 'aria-current'?: boolean | 'false' | 'true' | 'page' | 'step' | 'location' | 'date' | 'time';
72
+ 'aria-describedby'?: string;
73
+ 'aria-details'?: string;
74
+ 'aria-disabled'?: boolean | 'false' | 'true';
75
+ 'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup';
76
+ 'aria-errormessage'?: string;
77
+ 'aria-expanded'?: boolean | 'false' | 'true';
78
+ 'aria-flowto'?: string;
79
+ 'aria-grabbed'?: boolean | 'false' | 'true';
80
+ 'aria-haspopup'?: boolean | 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog';
81
+ 'aria-hidden'?: boolean | 'false' | 'true';
82
+ 'aria-invalid'?: boolean | 'false' | 'true' | 'grammar' | 'spelling';
83
+ 'aria-keyshortcuts'?: string;
84
+ 'aria-label'?: string;
85
+ 'aria-labelledby'?: string;
86
+ 'aria-level'?: number;
87
+ 'aria-live'?: 'off' | 'assertive' | 'polite';
88
+ 'aria-modal'?: boolean | 'false' | 'true';
89
+ 'aria-multiline'?: boolean | 'false' | 'true';
90
+ 'aria-multiselectable'?: boolean | 'false' | 'true';
91
+ 'aria-orientation'?: 'horizontal' | 'vertical';
92
+ 'aria-owns'?: string;
93
+ 'aria-placeholder'?: string;
94
+ 'aria-posinset'?: number;
95
+ 'aria-pressed'?: boolean | 'false' | 'mixed' | 'true';
96
+ 'aria-readonly'?: boolean | 'false' | 'true';
97
+ 'aria-relevant'?: string;
98
+ 'aria-required'?: boolean | 'false' | 'true';
99
+ 'aria-roledescription'?: string;
100
+ 'aria-rowcount'?: number;
101
+ 'aria-rowindex'?: number;
102
+ 'aria-rowspan'?: number;
103
+ 'aria-selected'?: boolean | 'false' | 'true';
104
+ 'aria-setsize'?: number;
105
+ 'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other';
106
+ 'aria-valuemax'?: number;
107
+ 'aria-valuemin'?: number;
108
+ 'aria-valuenow'?: number;
109
+ 'aria-valuetext'?: string;
110
+ }
111
+ /**
112
+ * Common HTML attributes shared by all HTML elements.
113
+ * The type parameter `T` is retained for API compatibility with Preact's
114
+ * `HTMLAttributes<HTMLElement>` pattern, but is unused at runtime since
115
+ * this is an SSR-only renderer.
116
+ */
117
+ interface HTMLAttributes<T = HTMLElement> extends DOMAttributes, AriaAttributes {
118
+ accept?: string;
119
+ acceptCharset?: string;
120
+ accessKey?: string;
121
+ action?: string;
122
+ allow?: string;
123
+ allowFullScreen?: boolean;
124
+ allowTransparency?: boolean;
125
+ alt?: string;
126
+ as?: string;
127
+ async?: boolean;
128
+ autoComplete?: string;
129
+ autoCorrect?: string;
130
+ autoFocus?: boolean;
131
+ autoPlay?: boolean;
132
+ capture?: boolean | string;
133
+ cellPadding?: number | string;
134
+ cellSpacing?: number | string;
135
+ charSet?: string;
136
+ challenge?: string;
137
+ checked?: boolean;
138
+ cite?: string;
139
+ class?: string;
140
+ className?: string;
141
+ cols?: number;
142
+ colSpan?: number;
143
+ content?: string;
144
+ contentEditable?: boolean | 'true' | 'false' | 'inherit';
145
+ contextMenu?: string;
146
+ controls?: boolean;
147
+ controlsList?: string;
148
+ coords?: string;
149
+ crossOrigin?: string;
150
+ data?: string;
151
+ dateTime?: string;
152
+ default?: boolean;
153
+ defer?: boolean;
154
+ dir?: 'auto' | 'ltr' | 'rtl';
155
+ disabled?: boolean;
156
+ disableRemotePlayback?: boolean;
157
+ download?: string | boolean;
158
+ decoding?: 'sync' | 'async' | 'auto';
159
+ draggable?: boolean;
160
+ encType?: string;
161
+ enterKeyHint?: string;
162
+ for?: string;
163
+ form?: string;
164
+ formAction?: string;
165
+ formEncType?: string;
166
+ formMethod?: string;
167
+ formNoValidate?: boolean;
168
+ formTarget?: string;
169
+ frameBorder?: number | string;
170
+ headers?: string;
171
+ height?: number | string;
172
+ hidden?: boolean | string;
173
+ high?: number;
174
+ href?: string;
175
+ hrefLang?: string;
176
+ htmlFor?: string;
177
+ httpEquiv?: string;
178
+ icon?: string;
179
+ id?: string;
180
+ importance?: 'auto' | 'high' | 'low';
181
+ inputMode?: string;
182
+ integrity?: string;
183
+ is?: string;
184
+ key?: string | number;
185
+ kind?: string;
186
+ label?: string;
187
+ lang?: string;
188
+ list?: string;
189
+ loading?: 'eager' | 'lazy';
190
+ loop?: boolean;
191
+ low?: number;
192
+ manifest?: string;
193
+ marginHeight?: number;
194
+ marginWidth?: number;
195
+ max?: number | string;
196
+ maxLength?: number;
197
+ media?: string;
198
+ mediaGroup?: string;
199
+ method?: string;
200
+ min?: number | string;
201
+ minLength?: number;
202
+ multiple?: boolean;
203
+ muted?: boolean;
204
+ name?: string;
205
+ noModule?: boolean;
206
+ nonce?: string;
207
+ noValidate?: boolean;
208
+ open?: boolean;
209
+ optimum?: number;
210
+ part?: string;
211
+ pattern?: string;
212
+ placeholder?: string;
213
+ playsInline?: boolean;
214
+ poster?: string;
215
+ preload?: string;
216
+ radioGroup?: string;
217
+ readOnly?: boolean;
218
+ referrerPolicy?: string;
219
+ rel?: string;
220
+ required?: boolean;
221
+ reversed?: boolean;
222
+ rows?: number;
223
+ rowSpan?: number;
224
+ sandbox?: string;
225
+ scope?: string;
226
+ scoped?: boolean;
227
+ scrolling?: string;
228
+ seamless?: boolean;
229
+ selected?: boolean;
230
+ shape?: string;
231
+ size?: number;
232
+ sizes?: string;
233
+ slot?: string;
234
+ span?: number;
235
+ spellcheck?: boolean;
236
+ src?: string;
237
+ srcDoc?: string;
238
+ srcLang?: string;
239
+ srcSet?: string;
240
+ start?: number;
241
+ step?: number | string;
242
+ style?: string | Record<string, string | number>;
243
+ summary?: string;
244
+ tabIndex?: number;
245
+ target?: string;
246
+ title?: string;
247
+ translate?: 'yes' | 'no';
248
+ type?: string;
249
+ useMap?: string;
250
+ value?: string | string[] | number;
251
+ volume?: number;
252
+ width?: number | string;
253
+ wmode?: string;
254
+ wrap?: string;
255
+ autocapitalize?: string;
256
+ disablePictureInPicture?: boolean;
257
+ results?: number;
258
+ security?: string;
259
+ unselectable?: 'on' | 'off';
260
+ [key: `data-${string}`]: string | number | boolean | undefined;
261
+ }
262
+ /**
263
+ * SVG-specific attributes.
264
+ */
265
+ interface SVGAttributes<T = SVGElement> extends HTMLAttributes<T> {
266
+ accentHeight?: number | string;
267
+ accumulate?: 'none' | 'sum';
268
+ additive?: 'replace' | 'sum';
269
+ alignmentBaseline?: string;
270
+ allowReorder?: 'no' | 'yes';
271
+ clipPath?: string;
272
+ clipPathUnits?: string;
273
+ clipRule?: string;
274
+ colorInterpolation?: string;
275
+ colorInterpolationFilters?: string;
276
+ cursor?: string;
277
+ cx?: number | string;
278
+ cy?: number | string;
279
+ d?: string;
280
+ dominantBaseline?: string;
281
+ dx?: number | string;
282
+ dy?: number | string;
283
+ fill?: string;
284
+ fillOpacity?: number | string;
285
+ fillRule?: 'nonzero' | 'evenodd' | 'inherit';
286
+ filter?: string;
287
+ floodColor?: string;
288
+ floodOpacity?: number | string;
289
+ fontFamily?: string;
290
+ fontSize?: number | string;
291
+ fontStyle?: string;
292
+ fontVariant?: string;
293
+ fontWeight?: number | string;
294
+ fx?: number | string;
295
+ fy?: number | string;
296
+ gradientTransform?: string;
297
+ gradientUnits?: string;
298
+ imageRendering?: string;
299
+ in?: string;
300
+ in2?: string;
301
+ k1?: number;
302
+ k2?: number;
303
+ k3?: number;
304
+ k4?: number;
305
+ letterSpacing?: number | string;
306
+ lightingColor?: string;
307
+ markerEnd?: string;
308
+ markerHeight?: number | string;
309
+ markerMid?: string;
310
+ markerStart?: string;
311
+ markerUnits?: string;
312
+ markerWidth?: number | string;
313
+ mask?: string;
314
+ offset?: number | string;
315
+ opacity?: number | string;
316
+ operator?: string;
317
+ order?: number | string;
318
+ overflow?: string;
319
+ paintOrder?: string;
320
+ pathLength?: number;
321
+ patternContentUnits?: string;
322
+ patternTransform?: string;
323
+ patternUnits?: string;
324
+ pointerEvents?: string;
325
+ points?: string;
326
+ preserveAspectRatio?: string;
327
+ r?: number | string;
328
+ result?: string;
329
+ rx?: number | string;
330
+ ry?: number | string;
331
+ shapeRendering?: string;
332
+ stopColor?: string;
333
+ stopOpacity?: number | string;
334
+ stroke?: string;
335
+ strokeDasharray?: string | number;
336
+ strokeDashoffset?: string | number;
337
+ strokeLinecap?: 'butt' | 'round' | 'square';
338
+ strokeLinejoin?: 'miter' | 'round' | 'bevel';
339
+ strokeMiterlimit?: number | string;
340
+ strokeOpacity?: number | string;
341
+ strokeWidth?: number | string;
342
+ textAnchor?: string;
343
+ textDecoration?: string;
344
+ textRendering?: string;
345
+ transform?: string;
346
+ vectorEffect?: string;
347
+ version?: string;
348
+ viewBox?: string;
349
+ visibility?: string;
350
+ wordSpacing?: number | string;
351
+ writingMode?: string;
352
+ x?: number | string;
353
+ x1?: number | string;
354
+ x2?: number | string;
355
+ xlinkActuate?: string;
356
+ xlinkArcrole?: string;
357
+ xlinkHref?: string;
358
+ xlinkRole?: string;
359
+ xlinkShow?: string;
360
+ xlinkTitle?: string;
361
+ xlinkType?: string;
362
+ xmlBase?: string;
363
+ xmlLang?: string;
364
+ xmlSpace?: string;
365
+ y?: number | string;
366
+ y1?: number | string;
367
+ y2?: number | string;
368
+ }
369
+ /**
370
+ * Script-specific HTML attributes (for the `<Script>` component).
371
+ */
372
+ interface ScriptHTMLAttributes<T = HTMLScriptElement> extends HTMLAttributes<T> {
373
+ async?: boolean;
374
+ crossOrigin?: string;
375
+ defer?: boolean;
376
+ integrity?: string;
377
+ noModule?: boolean;
378
+ nonce?: string;
379
+ referrerPolicy?: string;
380
+ src?: string;
381
+ type?: string;
382
+ }
383
+ declare namespace JSX {
384
+ type Element = VNode<any>;
385
+ interface ElementChildrenAttribute {
386
+ children: {};
387
+ }
388
+ interface IntrinsicElements {
389
+ a: HTMLAttributes<HTMLAnchorElement>;
390
+ abbr: HTMLAttributes;
391
+ address: HTMLAttributes;
392
+ area: HTMLAttributes<HTMLAreaElement>;
393
+ article: HTMLAttributes;
394
+ aside: HTMLAttributes;
395
+ audio: HTMLAttributes<HTMLAudioElement>;
396
+ b: HTMLAttributes;
397
+ base: HTMLAttributes<HTMLBaseElement>;
398
+ bdi: HTMLAttributes;
399
+ bdo: HTMLAttributes;
400
+ big: HTMLAttributes;
401
+ blockquote: HTMLAttributes<HTMLQuoteElement>;
402
+ body: HTMLAttributes<HTMLBodyElement>;
403
+ br: HTMLAttributes<HTMLBRElement>;
404
+ button: HTMLAttributes<HTMLButtonElement>;
405
+ canvas: HTMLAttributes<HTMLCanvasElement>;
406
+ caption: HTMLAttributes;
407
+ cite: HTMLAttributes;
408
+ code: HTMLAttributes;
409
+ col: HTMLAttributes<HTMLTableColElement>;
410
+ colgroup: HTMLAttributes<HTMLTableColElement>;
411
+ data: HTMLAttributes<HTMLDataElement>;
412
+ datalist: HTMLAttributes<HTMLDataListElement>;
413
+ dd: HTMLAttributes;
414
+ del: HTMLAttributes<HTMLModElement>;
415
+ details: HTMLAttributes<HTMLDetailsElement>;
416
+ dfn: HTMLAttributes;
417
+ dialog: HTMLAttributes<HTMLDialogElement>;
418
+ div: HTMLAttributes<HTMLDivElement>;
419
+ dl: HTMLAttributes<HTMLDListElement>;
420
+ dt: HTMLAttributes;
421
+ em: HTMLAttributes;
422
+ embed: HTMLAttributes<HTMLEmbedElement>;
423
+ fieldset: HTMLAttributes<HTMLFieldSetElement>;
424
+ figcaption: HTMLAttributes;
425
+ figure: HTMLAttributes;
426
+ footer: HTMLAttributes;
427
+ form: HTMLAttributes<HTMLFormElement>;
428
+ h1: HTMLAttributes<HTMLHeadingElement>;
429
+ h2: HTMLAttributes<HTMLHeadingElement>;
430
+ h3: HTMLAttributes<HTMLHeadingElement>;
431
+ h4: HTMLAttributes<HTMLHeadingElement>;
432
+ h5: HTMLAttributes<HTMLHeadingElement>;
433
+ h6: HTMLAttributes<HTMLHeadingElement>;
434
+ head: HTMLAttributes<HTMLHeadElement>;
435
+ header: HTMLAttributes;
436
+ hgroup: HTMLAttributes;
437
+ hr: HTMLAttributes<HTMLHRElement>;
438
+ html: HTMLAttributes<HTMLHtmlElement>;
439
+ i: HTMLAttributes;
440
+ iframe: HTMLAttributes<HTMLIFrameElement>;
441
+ img: HTMLAttributes<HTMLImageElement>;
442
+ input: HTMLAttributes<HTMLInputElement>;
443
+ ins: HTMLAttributes<HTMLModElement>;
444
+ kbd: HTMLAttributes;
445
+ label: HTMLAttributes<HTMLLabelElement>;
446
+ legend: HTMLAttributes<HTMLLegendElement>;
447
+ li: HTMLAttributes<HTMLLIElement>;
448
+ link: HTMLAttributes<HTMLLinkElement>;
449
+ main: HTMLAttributes;
450
+ map: HTMLAttributes<HTMLMapElement>;
451
+ mark: HTMLAttributes;
452
+ menu: HTMLAttributes<HTMLMenuElement>;
453
+ meta: HTMLAttributes<HTMLMetaElement>;
454
+ meter: HTMLAttributes<HTMLMeterElement>;
455
+ nav: HTMLAttributes;
456
+ noscript: HTMLAttributes;
457
+ object: HTMLAttributes<HTMLObjectElement>;
458
+ ol: HTMLAttributes<HTMLOListElement>;
459
+ optgroup: HTMLAttributes<HTMLOptGroupElement>;
460
+ option: HTMLAttributes<HTMLOptionElement>;
461
+ output: HTMLAttributes<HTMLOutputElement>;
462
+ p: HTMLAttributes<HTMLParagraphElement>;
463
+ param: HTMLAttributes;
464
+ picture: HTMLAttributes;
465
+ pre: HTMLAttributes<HTMLPreElement>;
466
+ progress: HTMLAttributes<HTMLProgressElement>;
467
+ q: HTMLAttributes<HTMLQuoteElement>;
468
+ rp: HTMLAttributes;
469
+ rt: HTMLAttributes;
470
+ ruby: HTMLAttributes;
471
+ s: HTMLAttributes;
472
+ samp: HTMLAttributes;
473
+ script: ScriptHTMLAttributes<HTMLScriptElement>;
474
+ search: HTMLAttributes;
475
+ section: HTMLAttributes;
476
+ select: HTMLAttributes<HTMLSelectElement>;
477
+ slot: HTMLAttributes<HTMLSlotElement>;
478
+ small: HTMLAttributes;
479
+ source: HTMLAttributes<HTMLSourceElement>;
480
+ span: HTMLAttributes<HTMLSpanElement>;
481
+ strong: HTMLAttributes;
482
+ style: HTMLAttributes<HTMLStyleElement>;
483
+ sub: HTMLAttributes;
484
+ summary: HTMLAttributes;
485
+ sup: HTMLAttributes;
486
+ table: HTMLAttributes<HTMLTableElement>;
487
+ tbody: HTMLAttributes<HTMLTableSectionElement>;
488
+ td: HTMLAttributes<HTMLTableCellElement>;
489
+ template: HTMLAttributes<HTMLTemplateElement>;
490
+ textarea: HTMLAttributes<HTMLTextAreaElement>;
491
+ tfoot: HTMLAttributes<HTMLTableSectionElement>;
492
+ th: HTMLAttributes<HTMLTableCellElement>;
493
+ thead: HTMLAttributes<HTMLTableSectionElement>;
494
+ time: HTMLAttributes<HTMLTimeElement>;
495
+ title: HTMLAttributes<HTMLTitleElement>;
496
+ tr: HTMLAttributes<HTMLTableRowElement>;
497
+ track: HTMLAttributes<HTMLTrackElement>;
498
+ u: HTMLAttributes;
499
+ ul: HTMLAttributes<HTMLUListElement>;
500
+ var: HTMLAttributes;
501
+ video: HTMLAttributes<HTMLVideoElement>;
502
+ wbr: HTMLAttributes;
503
+ svg: SVGAttributes<SVGSVGElement>;
504
+ animate: SVGAttributes;
505
+ animateMotion: SVGAttributes;
506
+ animateTransform: SVGAttributes;
507
+ circle: SVGAttributes<SVGCircleElement>;
508
+ clipPath: SVGAttributes;
509
+ defs: SVGAttributes;
510
+ desc: SVGAttributes;
511
+ ellipse: SVGAttributes<SVGEllipseElement>;
512
+ feBlend: SVGAttributes;
513
+ feColorMatrix: SVGAttributes;
514
+ feComponentTransfer: SVGAttributes;
515
+ feComposite: SVGAttributes;
516
+ feConvolveMatrix: SVGAttributes;
517
+ feDiffuseLighting: SVGAttributes;
518
+ feDisplacementMap: SVGAttributes;
519
+ feDistantLight: SVGAttributes;
520
+ feDropShadow: SVGAttributes;
521
+ feFlood: SVGAttributes;
522
+ feFuncA: SVGAttributes;
523
+ feFuncB: SVGAttributes;
524
+ feFuncG: SVGAttributes;
525
+ feFuncR: SVGAttributes;
526
+ feGaussianBlur: SVGAttributes;
527
+ feImage: SVGAttributes;
528
+ feMerge: SVGAttributes;
529
+ feMergeNode: SVGAttributes;
530
+ feMorphology: SVGAttributes;
531
+ feOffset: SVGAttributes;
532
+ fePointLight: SVGAttributes;
533
+ feSpecularLighting: SVGAttributes;
534
+ feSpotLight: SVGAttributes;
535
+ feTile: SVGAttributes;
536
+ feTurbulence: SVGAttributes;
537
+ filter: SVGAttributes;
538
+ foreignObject: SVGAttributes;
539
+ g: SVGAttributes<SVGGElement>;
540
+ image: SVGAttributes<SVGImageElement>;
541
+ line: SVGAttributes<SVGLineElement>;
542
+ linearGradient: SVGAttributes;
543
+ marker: SVGAttributes<SVGMarkerElement>;
544
+ mask: SVGAttributes<SVGMaskElement>;
545
+ metadata: SVGAttributes;
546
+ mpath: SVGAttributes;
547
+ path: SVGAttributes<SVGPathElement>;
548
+ pattern: SVGAttributes<SVGPatternElement>;
549
+ polygon: SVGAttributes<SVGPolygonElement>;
550
+ polyline: SVGAttributes<SVGPolylineElement>;
551
+ radialGradient: SVGAttributes;
552
+ rect: SVGAttributes<SVGRectElement>;
553
+ set: SVGAttributes;
554
+ stop: SVGAttributes;
555
+ switch: SVGAttributes;
556
+ symbol: SVGAttributes<SVGSymbolElement>;
557
+ text: SVGAttributes<SVGTextElement>;
558
+ textPath: SVGAttributes;
559
+ tspan: SVGAttributes<SVGTSpanElement>;
560
+ use: SVGAttributes<SVGUseElement>;
561
+ view: SVGAttributes<SVGViewElement>;
562
+ }
563
+ }
564
+
565
+ export { type AriaAttributes, ComponentChildren, type DOMAttributes, type HTMLAttributes, JSX, type SVGAttributes, type ScriptHTMLAttributes, VNode };