@fynixorg/ui 1.0.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.
package/types/jsx.d.ts ADDED
@@ -0,0 +1,669 @@
1
+ // Augment global JSX namespace for TypeScript compatibility
2
+ export {};
3
+ declare global {
4
+ namespace JSX {
5
+ type Element = FynixJSX.Element;
6
+ interface ElementChildrenAttribute extends FynixJSX.ElementChildrenAttribute {}
7
+ interface IntrinsicElements extends FynixJSX.IntrinsicElements {}
8
+ // Optionally, add more interfaces if needed
9
+ }
10
+ }
11
+ // JSX Type Definitions for Fynix
12
+
13
+ declare namespace FynixJSX {
14
+ type Element = any;
15
+
16
+ interface ElementChildrenAttribute {
17
+ children: {};
18
+ }
19
+
20
+ // Base attributes for all HTML elements
21
+ interface HTMLAttributes {
22
+ // Core
23
+ key?: string | number | null;
24
+ children?: any;
25
+ ref?: (el: any) => void;
26
+
27
+ // Global HTML Attributes
28
+ id?: string;
29
+ class?: string;
30
+ className?: string;
31
+ style?: string | Partial<CSSStyleDeclaration>;
32
+ title?: string;
33
+ role?: string;
34
+ hidden?: boolean;
35
+ tabIndex?: number;
36
+ tabindex?: number;
37
+ lang?: string;
38
+ draggable?: boolean;
39
+ contentEditable?: boolean | "true" | "false" | "inherit";
40
+ spellCheck?: boolean;
41
+ translate?: "yes" | "no";
42
+ accessKey?: string;
43
+ dir?: "ltr" | "rtl" | "auto";
44
+
45
+ // ARIA Attributes
46
+ "aria-label"?: string;
47
+ "aria-labelledby"?: string;
48
+ "aria-describedby"?: string;
49
+ "aria-hidden"?: boolean | "true" | "false";
50
+ "aria-expanded"?: boolean | "true" | "false";
51
+ "aria-controls"?: string;
52
+ "aria-live"?: "polite" | "assertive" | "off";
53
+ "aria-atomic"?: boolean | "true" | "false";
54
+ "aria-busy"?: boolean | "true" | "false";
55
+ "aria-checked"?: boolean | "true" | "false" | "mixed";
56
+ "aria-disabled"?: boolean | "true" | "false";
57
+ "aria-selected"?: boolean | "true" | "false";
58
+ "aria-pressed"?: boolean | "true" | "false" | "mixed";
59
+ "aria-invalid"?: boolean | "true" | "false";
60
+ "aria-required"?: boolean | "true" | "false";
61
+
62
+ // Fynix Event Directives (r-*)
63
+ "r-click"?: (this: HTMLElement, event: MouseEvent) => void;
64
+ "r-dblclick"?: (this: HTMLElement, event: MouseEvent) => void;
65
+ "r-input"?: (this: HTMLElement, event: Event) => void;
66
+ "r-change"?: (this: HTMLElement, event: Event) => void;
67
+ "r-submit"?: (this: HTMLElement, event: Event) => void;
68
+ "r-focus"?: (this: HTMLElement, event: FocusEvent) => void;
69
+ "r-blur"?: (this: HTMLElement, event: FocusEvent) => void;
70
+ "r-keydown"?: (this: HTMLElement, event: KeyboardEvent) => void;
71
+ "r-keyup"?: (this: HTMLElement, event: KeyboardEvent) => void;
72
+ "r-keypress"?: (this: HTMLElement, event: KeyboardEvent) => void;
73
+ "r-mouseenter"?: (this: HTMLElement, event: MouseEvent) => void;
74
+ "r-mouseleave"?: (this: HTMLElement, event: MouseEvent) => void;
75
+ "r-mouseover"?: (this: HTMLElement, event: MouseEvent) => void;
76
+ "r-mouseout"?: (this: HTMLElement, event: MouseEvent) => void;
77
+ "r-mousedown"?: (this: HTMLElement, event: MouseEvent) => void;
78
+ "r-mouseup"?: (this: HTMLElement, event: MouseEvent) => void;
79
+ "r-mousemove"?: (this: HTMLElement, event: MouseEvent) => void;
80
+ "r-scroll"?: (this: HTMLElement, event: Event) => void;
81
+ "r-class"?: string | { value: string; subscribe: (cb: () => void) => () => void };
82
+ rc?: string | { value: string; subscribe: (cb: () => void) => () => void };
83
+
84
+ // Data attributes
85
+ [dataAttr: `data-${string}`]: any;
86
+ }
87
+
88
+ interface AnchorHTMLAttributes extends HTMLAttributes {
89
+ href?: string;
90
+ target?: "_self" | "_blank" | "_parent" | "_top" | string;
91
+ rel?: string;
92
+ download?: string | boolean;
93
+ type?: string;
94
+ }
95
+
96
+ interface ButtonHTMLAttributes extends HTMLAttributes {
97
+ type?: "button" | "submit" | "reset";
98
+ disabled?: boolean;
99
+ name?: string;
100
+ value?: string;
101
+ autoFocus?: boolean;
102
+ autofocus?: boolean;
103
+ }
104
+
105
+ interface FormHTMLAttributes extends HTMLAttributes {
106
+ action?: string;
107
+ method?: "get" | "post" | "dialog";
108
+ encType?: string;
109
+ enctype?: string;
110
+ target?: string;
111
+ noValidate?: boolean;
112
+ novalidate?: boolean;
113
+ autoComplete?: "on" | "off";
114
+ autocomplete?: "on" | "off";
115
+ }
116
+
117
+ interface InputHTMLAttributes extends HTMLAttributes {
118
+ type?: "button" | "checkbox" | "color" | "date" | "datetime-local"
119
+ | "email" | "file" | "hidden" | "image" | "month" | "number"
120
+ | "password" | "radio" | "range" | "reset" | "search"
121
+ | "submit" | "tel" | "text" | "time" | "url" | "week";
122
+ value?: string | number | readonly string[];
123
+ placeholder?: string;
124
+ checked?: boolean;
125
+ disabled?: boolean;
126
+ required?: boolean;
127
+ readOnly?: boolean;
128
+ readonly?: boolean;
129
+ name?: string;
130
+ accept?: string;
131
+ autoComplete?: string;
132
+ autocomplete?: string;
133
+ autoFocus?: boolean;
134
+ autofocus?: boolean;
135
+ min?: number | string;
136
+ max?: number | string;
137
+ step?: number | string;
138
+ minLength?: number;
139
+ maxLength?: number;
140
+ pattern?: string;
141
+ size?: number;
142
+ multiple?: boolean;
143
+ }
144
+
145
+ interface TextareaHTMLAttributes extends HTMLAttributes {
146
+ value?: string;
147
+ placeholder?: string;
148
+ rows?: number;
149
+ cols?: number;
150
+ disabled?: boolean;
151
+ required?: boolean;
152
+ readOnly?: boolean;
153
+ readonly?: boolean;
154
+ name?: string;
155
+ maxLength?: number;
156
+ minLength?: number;
157
+ wrap?: "hard" | "soft" | "off";
158
+ }
159
+
160
+ interface SelectHTMLAttributes extends HTMLAttributes {
161
+ value?: string | number | readonly string[];
162
+ multiple?: boolean;
163
+ disabled?: boolean;
164
+ required?: boolean;
165
+ name?: string;
166
+ size?: number;
167
+ }
168
+
169
+ interface OptionHTMLAttributes extends HTMLAttributes {
170
+ value?: string | number;
171
+ selected?: boolean;
172
+ disabled?: boolean;
173
+ label?: string;
174
+ }
175
+
176
+ interface LabelHTMLAttributes extends HTMLAttributes {
177
+ htmlFor?: string;
178
+ for?: string;
179
+ form?: string;
180
+ }
181
+
182
+ interface ImgHTMLAttributes extends HTMLAttributes {
183
+ src?: string;
184
+ alt?: string;
185
+ width?: number | string;
186
+ height?: number | string;
187
+ loading?: "lazy" | "eager";
188
+ decoding?: "async" | "sync" | "auto";
189
+ crossOrigin?: "anonymous" | "use-credentials" | "";
190
+ referrerPolicy?: ReferrerPolicy;
191
+ srcSet?: string;
192
+ sizes?: string;
193
+ useMap?: string;
194
+ }
195
+
196
+ interface IframeHTMLAttributes extends HTMLAttributes {
197
+ src?: string;
198
+ srcdoc?: string;
199
+ name?: string;
200
+ width?: number | string;
201
+ height?: number | string;
202
+ sandbox?: string;
203
+ allow?: string;
204
+ allowFullScreen?: boolean;
205
+ allowfullscreen?: boolean;
206
+ referrerPolicy?: ReferrerPolicy;
207
+ loading?: "lazy" | "eager";
208
+ }
209
+
210
+ interface CanvasHTMLAttributes extends HTMLAttributes {
211
+ width?: number | string;
212
+ height?: number | string;
213
+ }
214
+
215
+ interface VideoHTMLAttributes extends HTMLAttributes {
216
+ src?: string;
217
+ poster?: string;
218
+ width?: number | string;
219
+ height?: number | string;
220
+ controls?: boolean;
221
+ autoPlay?: boolean;
222
+ autoplay?: boolean;
223
+ loop?: boolean;
224
+ muted?: boolean;
225
+ preload?: "none" | "metadata" | "auto" | "";
226
+ playsInline?: boolean;
227
+ playsinline?: boolean;
228
+ }
229
+
230
+ interface AudioHTMLAttributes extends HTMLAttributes {
231
+ src?: string;
232
+ controls?: boolean;
233
+ autoPlay?: boolean;
234
+ autoplay?: boolean;
235
+ loop?: boolean;
236
+ muted?: boolean;
237
+ preload?: "none" | "metadata" | "auto" | "";
238
+ }
239
+
240
+ interface SourceHTMLAttributes extends HTMLAttributes {
241
+ src?: string;
242
+ type?: string;
243
+ media?: string;
244
+ sizes?: string;
245
+ srcSet?: string;
246
+ }
247
+
248
+ interface TrackHTMLAttributes extends HTMLAttributes {
249
+ src?: string;
250
+ kind?: "subtitles" | "captions" | "descriptions" | "chapters" | "metadata";
251
+ srcLang?: string;
252
+ label?: string;
253
+ default?: boolean;
254
+ }
255
+
256
+ interface ScriptHTMLAttributes extends HTMLAttributes {
257
+ src?: string;
258
+ type?: string;
259
+ async?: boolean;
260
+ defer?: boolean;
261
+ crossOrigin?: "anonymous" | "use-credentials" | "";
262
+ integrity?: string;
263
+ noModule?: boolean;
264
+ nomodule?: boolean;
265
+ referrerPolicy?: ReferrerPolicy;
266
+ }
267
+
268
+ interface LinkHTMLAttributes extends HTMLAttributes {
269
+ href?: string;
270
+ rel?: string;
271
+ type?: string;
272
+ as?: string;
273
+ crossOrigin?: "anonymous" | "use-credentials" | "";
274
+ integrity?: string;
275
+ media?: string;
276
+ referrerPolicy?: ReferrerPolicy;
277
+ sizes?: string;
278
+ }
279
+
280
+ interface MetaHTMLAttributes extends HTMLAttributes {
281
+ name?: string;
282
+ content?: string;
283
+ httpEquiv?: string;
284
+ charset?: string;
285
+ }
286
+
287
+ interface StyleHTMLAttributes extends HTMLAttributes {
288
+ media?: string;
289
+ scoped?: boolean;
290
+ type?: string;
291
+ }
292
+
293
+ interface TableHTMLAttributes extends HTMLAttributes {
294
+ cellPadding?: number | string;
295
+ cellpadding?: number | string;
296
+ cellSpacing?: number | string;
297
+ cellspacing?: number | string;
298
+ }
299
+
300
+ interface ColHTMLAttributes extends HTMLAttributes {
301
+ span?: number;
302
+ }
303
+
304
+ interface ColgroupHTMLAttributes extends HTMLAttributes {
305
+ span?: number;
306
+ }
307
+
308
+ interface TdHTMLAttributes extends HTMLAttributes {
309
+ colSpan?: number;
310
+ colspan?: number;
311
+ rowSpan?: number;
312
+ rowspan?: number;
313
+ headers?: string;
314
+ }
315
+
316
+ interface ThHTMLAttributes extends HTMLAttributes {
317
+ colSpan?: number;
318
+ colspan?: number;
319
+ rowSpan?: number;
320
+ rowspan?: number;
321
+ headers?: string;
322
+ scope?: "col" | "row" | "colgroup" | "rowgroup";
323
+ abbr?: string;
324
+ }
325
+
326
+ interface ProgressHTMLAttributes extends HTMLAttributes {
327
+ value?: number | string;
328
+ max?: number | string;
329
+ }
330
+
331
+ interface MeterHTMLAttributes extends HTMLAttributes {
332
+ value?: number | string;
333
+ min?: number | string;
334
+ max?: number | string;
335
+ low?: number | string;
336
+ high?: number | string;
337
+ optimum?: number | string;
338
+ }
339
+
340
+ interface DetailsHTMLAttributes extends HTMLAttributes {
341
+ open?: boolean;
342
+ }
343
+
344
+ interface DialogHTMLAttributes extends HTMLAttributes {
345
+ open?: boolean;
346
+ }
347
+
348
+ interface EmbedHTMLAttributes extends HTMLAttributes {
349
+ src?: string;
350
+ type?: string;
351
+ width?: number | string;
352
+ height?: number | string;
353
+ }
354
+
355
+ interface ObjectHTMLAttributes extends HTMLAttributes {
356
+ data?: string;
357
+ type?: string;
358
+ name?: string;
359
+ useMap?: string;
360
+ width?: number | string;
361
+ height?: number | string;
362
+ }
363
+
364
+ interface ParamHTMLAttributes extends HTMLAttributes {
365
+ name?: string;
366
+ value?: string;
367
+ }
368
+
369
+ interface FieldsetHTMLAttributes extends HTMLAttributes {
370
+ disabled?: boolean;
371
+ form?: string;
372
+ name?: string;
373
+ }
374
+
375
+ interface TimeHTMLAttributes extends HTMLAttributes {
376
+ dateTime?: string;
377
+ }
378
+
379
+ interface OutputHTMLAttributes extends HTMLAttributes {
380
+ htmlFor?: string;
381
+ for?: string;
382
+ form?: string;
383
+ name?: string;
384
+ }
385
+
386
+ interface DataHTMLAttributes extends HTMLAttributes {
387
+ value?: string;
388
+ }
389
+
390
+ interface BlockquoteHTMLAttributes extends HTMLAttributes {
391
+ cite?: string;
392
+ }
393
+
394
+ interface QHTMLAttributes extends HTMLAttributes {
395
+ cite?: string;
396
+ }
397
+
398
+ interface DelHTMLAttributes extends HTMLAttributes {
399
+ cite?: string;
400
+ dateTime?: string;
401
+ }
402
+
403
+ interface InsHTMLAttributes extends HTMLAttributes {
404
+ cite?: string;
405
+ dateTime?: string;
406
+ }
407
+
408
+ interface OlHTMLAttributes extends HTMLAttributes {
409
+ reversed?: boolean;
410
+ start?: number;
411
+ type?: "1" | "a" | "A" | "i" | "I";
412
+ }
413
+
414
+ interface LiHTMLAttributes extends HTMLAttributes {
415
+ value?: number;
416
+ }
417
+
418
+ interface MapHTMLAttributes extends HTMLAttributes {
419
+ name?: string;
420
+ }
421
+
422
+ interface AreaHTMLAttributes extends HTMLAttributes {
423
+ alt?: string;
424
+ coords?: string;
425
+ shape?: "rect" | "circle" | "poly" | "default";
426
+ href?: string;
427
+ target?: string;
428
+ download?: string;
429
+ rel?: string;
430
+ }
431
+
432
+ interface BaseHTMLAttributes extends HTMLAttributes {
433
+ href?: string;
434
+ target?: string;
435
+ }
436
+
437
+ interface SlotHTMLAttributes extends HTMLAttributes {
438
+ name?: string;
439
+ }
440
+
441
+ interface SVGAttributes extends HTMLAttributes {
442
+ // Presentation attributes
443
+ fill?: string;
444
+ stroke?: string;
445
+ strokeWidth?: string | number;
446
+ strokeLinecap?: "butt" | "round" | "square";
447
+ strokeLinejoin?: "miter" | "round" | "bevel";
448
+ strokeDasharray?: string | number;
449
+ strokeDashoffset?: string | number;
450
+ strokeOpacity?: string | number;
451
+ fillOpacity?: string | number;
452
+ opacity?: string | number;
453
+
454
+ // SVG specific
455
+ viewBox?: string;
456
+ xmlns?: string;
457
+ xmlnsXlink?: string;
458
+ preserveAspectRatio?: string;
459
+ transform?: string;
460
+
461
+ // Geometry
462
+ width?: string | number;
463
+ height?: string | number;
464
+ cx?: string | number;
465
+ cy?: string | number;
466
+ r?: string | number;
467
+ rx?: string | number;
468
+ ry?: string | number;
469
+ x?: string | number;
470
+ y?: string | number;
471
+ x1?: string | number;
472
+ y1?: string | number;
473
+ x2?: string | number;
474
+ y2?: string | number;
475
+ d?: string;
476
+ points?: string;
477
+ pathLength?: number;
478
+
479
+ // Text
480
+ textAnchor?: "start" | "middle" | "end";
481
+ dominantBaseline?: "auto" | "middle" | "hanging" | "alphabetic";
482
+
483
+ // Gradient/Filter
484
+ offset?: string | number;
485
+ stopColor?: string;
486
+ stopOpacity?: string | number;
487
+ gradientUnits?: "userSpaceOnUse" | "objectBoundingBox";
488
+ gradientTransform?: string;
489
+ }
490
+
491
+ interface IntrinsicElements {
492
+ // HTML Elements - Complete HTML5 Coverage
493
+ a: AnchorHTMLAttributes;
494
+ abbr: HTMLAttributes;
495
+ address: HTMLAttributes;
496
+ area: AreaHTMLAttributes;
497
+ article: HTMLAttributes;
498
+ aside: HTMLAttributes;
499
+ audio: AudioHTMLAttributes;
500
+ b: HTMLAttributes;
501
+ base: BaseHTMLAttributes;
502
+ bdi: HTMLAttributes;
503
+ bdo: HTMLAttributes;
504
+ big: HTMLAttributes;
505
+ blockquote: BlockquoteHTMLAttributes;
506
+ body: HTMLAttributes;
507
+ br: HTMLAttributes;
508
+ button: ButtonHTMLAttributes;
509
+ canvas: CanvasHTMLAttributes;
510
+ caption: HTMLAttributes;
511
+ cite: HTMLAttributes;
512
+ code: HTMLAttributes;
513
+ col: ColHTMLAttributes;
514
+ colgroup: ColgroupHTMLAttributes;
515
+ data: DataHTMLAttributes;
516
+ datalist: HTMLAttributes;
517
+ dd: HTMLAttributes;
518
+ del: DelHTMLAttributes;
519
+ details: DetailsHTMLAttributes;
520
+ dfn: HTMLAttributes;
521
+ dialog: DialogHTMLAttributes;
522
+ div: HTMLAttributes;
523
+ dl: HTMLAttributes;
524
+ dt: HTMLAttributes;
525
+ em: HTMLAttributes;
526
+ embed: EmbedHTMLAttributes;
527
+ fieldset: FieldsetHTMLAttributes;
528
+ figcaption: HTMLAttributes;
529
+ figure: HTMLAttributes;
530
+ footer: HTMLAttributes;
531
+ form: FormHTMLAttributes;
532
+ h1: HTMLAttributes;
533
+ h2: HTMLAttributes;
534
+ h3: HTMLAttributes;
535
+ h4: HTMLAttributes;
536
+ h5: HTMLAttributes;
537
+ h6: HTMLAttributes;
538
+ head: HTMLAttributes;
539
+ header: HTMLAttributes;
540
+ hgroup: HTMLAttributes;
541
+ hr: HTMLAttributes;
542
+ html: HTMLAttributes;
543
+ i: HTMLAttributes;
544
+ iframe: IframeHTMLAttributes;
545
+ img: ImgHTMLAttributes;
546
+ input: InputHTMLAttributes;
547
+ ins: InsHTMLAttributes;
548
+ kbd: HTMLAttributes;
549
+ label: LabelHTMLAttributes;
550
+ legend: HTMLAttributes;
551
+ li: LiHTMLAttributes;
552
+ link: LinkHTMLAttributes;
553
+ main: HTMLAttributes;
554
+ map: MapHTMLAttributes;
555
+ mark: HTMLAttributes;
556
+ menu: HTMLAttributes;
557
+ meta: MetaHTMLAttributes;
558
+ meter: MeterHTMLAttributes;
559
+ nav: HTMLAttributes;
560
+ noscript: HTMLAttributes;
561
+ object: ObjectHTMLAttributes;
562
+ ol: OlHTMLAttributes;
563
+ optgroup: HTMLAttributes;
564
+ option: OptionHTMLAttributes;
565
+ output: OutputHTMLAttributes;
566
+ p: HTMLAttributes;
567
+ param: ParamHTMLAttributes;
568
+ picture: HTMLAttributes;
569
+ pre: HTMLAttributes;
570
+ progress: ProgressHTMLAttributes;
571
+ q: QHTMLAttributes;
572
+ rp: HTMLAttributes;
573
+ rt: HTMLAttributes;
574
+ ruby: HTMLAttributes;
575
+ s: HTMLAttributes;
576
+ samp: HTMLAttributes;
577
+ script: ScriptHTMLAttributes;
578
+ search: HTMLAttributes;
579
+ section: HTMLAttributes;
580
+ select: SelectHTMLAttributes;
581
+ slot: SlotHTMLAttributes;
582
+ small: HTMLAttributes;
583
+ source: SourceHTMLAttributes;
584
+ span: HTMLAttributes;
585
+ strong: HTMLAttributes;
586
+ style: StyleHTMLAttributes;
587
+ sub: HTMLAttributes;
588
+ summary: HTMLAttributes;
589
+ sup: HTMLAttributes;
590
+ table: TableHTMLAttributes;
591
+ tbody: HTMLAttributes;
592
+ td: TdHTMLAttributes;
593
+ template: HTMLAttributes;
594
+ textarea: TextareaHTMLAttributes;
595
+ tfoot: HTMLAttributes;
596
+ th: ThHTMLAttributes;
597
+ thead: HTMLAttributes;
598
+ time: TimeHTMLAttributes;
599
+ title: HTMLAttributes;
600
+ tr: HTMLAttributes;
601
+ track: TrackHTMLAttributes;
602
+ u: HTMLAttributes;
603
+ ul: HTMLAttributes;
604
+ var: HTMLAttributes;
605
+ video: VideoHTMLAttributes;
606
+ wbr: HTMLAttributes;
607
+
608
+ // SVG Elements - Complete Coverage
609
+ svg: SVGAttributes;
610
+ animate: SVGAttributes;
611
+ animateMotion: SVGAttributes;
612
+ animateTransform: SVGAttributes;
613
+ circle: SVGAttributes;
614
+ clipPath: SVGAttributes;
615
+ defs: SVGAttributes;
616
+ desc: SVGAttributes;
617
+ ellipse: SVGAttributes;
618
+ feBlend: SVGAttributes;
619
+ feColorMatrix: SVGAttributes;
620
+ feComponentTransfer: SVGAttributes;
621
+ feComposite: SVGAttributes;
622
+ feConvolveMatrix: SVGAttributes;
623
+ feDiffuseLighting: SVGAttributes;
624
+ feDisplacementMap: SVGAttributes;
625
+ feDistantLight: SVGAttributes;
626
+ feDropShadow: SVGAttributes;
627
+ feFlood: SVGAttributes;
628
+ feFuncA: SVGAttributes;
629
+ feFuncB: SVGAttributes;
630
+ feFuncG: SVGAttributes;
631
+ feFuncR: SVGAttributes;
632
+ feGaussianBlur: SVGAttributes;
633
+ feImage: SVGAttributes;
634
+ feMerge: SVGAttributes;
635
+ feMergeNode: SVGAttributes;
636
+ feMorphology: SVGAttributes;
637
+ feOffset: SVGAttributes;
638
+ fePointLight: SVGAttributes;
639
+ feSpecularLighting: SVGAttributes;
640
+ feSpotLight: SVGAttributes;
641
+ feTile: SVGAttributes;
642
+ feTurbulence: SVGAttributes;
643
+ filter: SVGAttributes;
644
+ foreignObject: SVGAttributes;
645
+ g: SVGAttributes;
646
+ image: SVGAttributes;
647
+ line: SVGAttributes;
648
+ linearGradient: SVGAttributes;
649
+ marker: SVGAttributes;
650
+ mask: SVGAttributes;
651
+ metadata: SVGAttributes;
652
+ mpath: SVGAttributes;
653
+ path: SVGAttributes;
654
+ pattern: SVGAttributes;
655
+ polygon: SVGAttributes;
656
+ polyline: SVGAttributes;
657
+ radialGradient: SVGAttributes;
658
+ rect: SVGAttributes;
659
+ set: SVGAttributes;
660
+ stop: SVGAttributes;
661
+ switch: SVGAttributes;
662
+ symbol: SVGAttributes;
663
+ text: SVGAttributes;
664
+ textPath: SVGAttributes;
665
+ tspan: SVGAttributes;
666
+ use: SVGAttributes;
667
+ view: SVGAttributes;
668
+ }
669
+ }