@nlxai/touchpoint-ui 1.2.4-alpha.1 → 1.2.4-alpha.5

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,3050 @@
1
+ ## Interfaces
2
+
3
+ ### Element
4
+
5
+ #### Extends
6
+
7
+ - `GlobalJSXElement`
8
+
9
+ #### Properties
10
+
11
+ ##### type
12
+
13
+ ```ts
14
+ type: any;
15
+ ```
16
+
17
+ ###### Inherited from
18
+
19
+ ```ts
20
+ GlobalJSXElement.type;
21
+ ```
22
+
23
+ ##### props
24
+
25
+ ```ts
26
+ props: any;
27
+ ```
28
+
29
+ ###### Inherited from
30
+
31
+ ```ts
32
+ GlobalJSXElement.props;
33
+ ```
34
+
35
+ ##### key
36
+
37
+ ```ts
38
+ key: string | null;
39
+ ```
40
+
41
+ ###### Inherited from
42
+
43
+ ```ts
44
+ GlobalJSXElement.key;
45
+ ```
46
+
47
+ ---
48
+
49
+ ### ElementClass
50
+
51
+ #### Extends
52
+
53
+ - `GlobalJSXElementClass`
54
+
55
+ #### Methods
56
+
57
+ ##### setState()
58
+
59
+ ```ts
60
+ setState<K>(state, callback?): void;
61
+ ```
62
+
63
+ ###### Type Parameters
64
+
65
+ ###### K
66
+
67
+ `K` _extends_ `never`
68
+
69
+ ###### Parameters
70
+
71
+ ###### state
72
+
73
+ \{
74
+ \} | (`prevState`, `props`) =>
75
+ \| \{
76
+ \}
77
+ \| `Pick`\<\{
78
+ \}, `K`\>
79
+ \| `null` | `Pick`\<\{
80
+ \}, `K`\> | `null`
81
+
82
+ ###### callback?
83
+
84
+ () => `void`
85
+
86
+ ###### Returns
87
+
88
+ `void`
89
+
90
+ ###### Inherited from
91
+
92
+ ```ts
93
+ GlobalJSXElementClass.setState;
94
+ ```
95
+
96
+ ##### forceUpdate()
97
+
98
+ ```ts
99
+ forceUpdate(callback?): void;
100
+ ```
101
+
102
+ ###### Parameters
103
+
104
+ ###### callback?
105
+
106
+ () => `void`
107
+
108
+ ###### Returns
109
+
110
+ `void`
111
+
112
+ ###### Inherited from
113
+
114
+ ```ts
115
+ GlobalJSXElementClass.forceUpdate;
116
+ ```
117
+
118
+ ##### componentDidMount()?
119
+
120
+ ```ts
121
+ optional componentDidMount(): void;
122
+ ```
123
+
124
+ Called immediately after a component is mounted. Setting state here will trigger re-rendering.
125
+
126
+ ###### Returns
127
+
128
+ `void`
129
+
130
+ ###### Inherited from
131
+
132
+ ```ts
133
+ GlobalJSXElementClass.componentDidMount;
134
+ ```
135
+
136
+ ##### shouldComponentUpdate()?
137
+
138
+ ```ts
139
+ optional shouldComponentUpdate(
140
+ nextProps,
141
+ nextState,
142
+ nextContext): boolean;
143
+ ```
144
+
145
+ Called to determine whether the change in props and state should trigger a re-render.
146
+
147
+ `Component` always returns true.
148
+ `PureComponent` implements a shallow comparison on props and state and returns true if any
149
+ props or states have changed.
150
+
151
+ If false is returned, [Component.render](../README.md#render), `componentWillUpdate`
152
+ and `componentDidUpdate` will not be called.
153
+
154
+ ###### Parameters
155
+
156
+ ###### nextProps
157
+
158
+ `Readonly`\<`P`\>
159
+
160
+ ###### nextState
161
+
162
+ `Readonly`\<`S`\>
163
+
164
+ ###### nextContext
165
+
166
+ `any`
167
+
168
+ ###### Returns
169
+
170
+ `boolean`
171
+
172
+ ###### Inherited from
173
+
174
+ ```ts
175
+ GlobalJSXElementClass.shouldComponentUpdate;
176
+ ```
177
+
178
+ ##### componentWillUnmount()?
179
+
180
+ ```ts
181
+ optional componentWillUnmount(): void;
182
+ ```
183
+
184
+ Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as
185
+ cancelled network requests, or cleaning up any DOM elements created in `componentDidMount`.
186
+
187
+ ###### Returns
188
+
189
+ `void`
190
+
191
+ ###### Inherited from
192
+
193
+ ```ts
194
+ GlobalJSXElementClass.componentWillUnmount;
195
+ ```
196
+
197
+ ##### componentDidCatch()?
198
+
199
+ ```ts
200
+ optional componentDidCatch(error, errorInfo): void;
201
+ ```
202
+
203
+ Catches exceptions generated in descendant components. Unhandled exceptions will cause
204
+ the entire component tree to unmount.
205
+
206
+ ###### Parameters
207
+
208
+ ###### error
209
+
210
+ `Error`
211
+
212
+ ###### errorInfo
213
+
214
+ [`ErrorInfo`](../README.md#errorinfo)
215
+
216
+ ###### Returns
217
+
218
+ `void`
219
+
220
+ ###### Inherited from
221
+
222
+ ```ts
223
+ GlobalJSXElementClass.componentDidCatch;
224
+ ```
225
+
226
+ ##### getSnapshotBeforeUpdate()?
227
+
228
+ ```ts
229
+ optional getSnapshotBeforeUpdate(prevProps, prevState): any;
230
+ ```
231
+
232
+ Runs before React applies the result of [render](../README.md#render) to the document, and
233
+ returns an object to be given to [componentDidUpdate](../README.md#componentdidupdate-8). Useful for saving
234
+ things such as scroll position before [render](../README.md#render) causes changes to it.
235
+
236
+ Note: the presence of this method prevents any of the deprecated
237
+ lifecycle events from running.
238
+
239
+ ###### Parameters
240
+
241
+ ###### prevProps
242
+
243
+ `Readonly`\<`P`\>
244
+
245
+ ###### prevState
246
+
247
+ `Readonly`\<`S`\>
248
+
249
+ ###### Returns
250
+
251
+ `any`
252
+
253
+ ###### Inherited from
254
+
255
+ ```ts
256
+ GlobalJSXElementClass.getSnapshotBeforeUpdate;
257
+ ```
258
+
259
+ ##### componentDidUpdate()?
260
+
261
+ ```ts
262
+ optional componentDidUpdate(
263
+ prevProps,
264
+ prevState,
265
+ snapshot?): void;
266
+ ```
267
+
268
+ Called immediately after updating occurs. Not called for the initial render.
269
+
270
+ The snapshot is only present if [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8) is present and returns non-null.
271
+
272
+ ###### Parameters
273
+
274
+ ###### prevProps
275
+
276
+ `Readonly`\<`P`\>
277
+
278
+ ###### prevState
279
+
280
+ `Readonly`\<`S`\>
281
+
282
+ ###### snapshot?
283
+
284
+ `any`
285
+
286
+ ###### Returns
287
+
288
+ `void`
289
+
290
+ ###### Inherited from
291
+
292
+ ```ts
293
+ GlobalJSXElementClass.componentDidUpdate;
294
+ ```
295
+
296
+ ##### ~~componentWillMount()?~~
297
+
298
+ ```ts
299
+ optional componentWillMount(): void;
300
+ ```
301
+
302
+ Called immediately before mounting occurs, and before [Component.render](../README.md#render).
303
+ Avoid introducing any side-effects or subscriptions in this method.
304
+
305
+ Note: the presence of [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8)
306
+ or [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) prevents
307
+ this from being invoked.
308
+
309
+ ###### Returns
310
+
311
+ `void`
312
+
313
+ ###### Deprecated
314
+
315
+ 16.3, use [componentDidMount](../README.md#componentdidmount-6) or the constructor instead; will stop working in React 17
316
+
317
+ ###### See
318
+
319
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state)
320
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path)
321
+
322
+ ###### Inherited from
323
+
324
+ ```ts
325
+ GlobalJSXElementClass.componentWillMount;
326
+ ```
327
+
328
+ ##### ~~UNSAFE_componentWillMount()?~~
329
+
330
+ ```ts
331
+ optional UNSAFE_componentWillMount(): void;
332
+ ```
333
+
334
+ Called immediately before mounting occurs, and before [Component.render](../README.md#render).
335
+ Avoid introducing any side-effects or subscriptions in this method.
336
+
337
+ This method will not stop working in React 17.
338
+
339
+ Note: the presence of [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8)
340
+ or [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) prevents
341
+ this from being invoked.
342
+
343
+ ###### Returns
344
+
345
+ `void`
346
+
347
+ ###### Deprecated
348
+
349
+ 16.3, use [componentDidMount](../README.md#componentdidmount-6) or the constructor instead
350
+
351
+ ###### See
352
+
353
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state)
354
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path)
355
+
356
+ ###### Inherited from
357
+
358
+ ```ts
359
+ GlobalJSXElementClass.UNSAFE_componentWillMount;
360
+ ```
361
+
362
+ ##### ~~componentWillReceiveProps()?~~
363
+
364
+ ```ts
365
+ optional componentWillReceiveProps(nextProps, nextContext): void;
366
+ ```
367
+
368
+ Called when the component may be receiving new props.
369
+ React may call this even if props have not changed, so be sure to compare new and existing
370
+ props if you only want to handle changes.
371
+
372
+ Calling [Component.setState](../README.md#setstate) generally does not trigger this method.
373
+
374
+ Note: the presence of [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8)
375
+ or [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) prevents
376
+ this from being invoked.
377
+
378
+ ###### Parameters
379
+
380
+ ###### nextProps
381
+
382
+ `Readonly`\<`P`\>
383
+
384
+ ###### nextContext
385
+
386
+ `any`
387
+
388
+ ###### Returns
389
+
390
+ `void`
391
+
392
+ ###### Deprecated
393
+
394
+ 16.3, use static [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) instead; will stop working in React 17
395
+
396
+ ###### See
397
+
398
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props)
399
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path)
400
+
401
+ ###### Inherited from
402
+
403
+ ```ts
404
+ GlobalJSXElementClass.componentWillReceiveProps;
405
+ ```
406
+
407
+ ##### ~~UNSAFE_componentWillReceiveProps()?~~
408
+
409
+ ```ts
410
+ optional UNSAFE_componentWillReceiveProps(nextProps, nextContext): void;
411
+ ```
412
+
413
+ Called when the component may be receiving new props.
414
+ React may call this even if props have not changed, so be sure to compare new and existing
415
+ props if you only want to handle changes.
416
+
417
+ Calling [Component.setState](../README.md#setstate) generally does not trigger this method.
418
+
419
+ This method will not stop working in React 17.
420
+
421
+ Note: the presence of [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8)
422
+ or [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) prevents
423
+ this from being invoked.
424
+
425
+ ###### Parameters
426
+
427
+ ###### nextProps
428
+
429
+ `Readonly`\<`P`\>
430
+
431
+ ###### nextContext
432
+
433
+ `any`
434
+
435
+ ###### Returns
436
+
437
+ `void`
438
+
439
+ ###### Deprecated
440
+
441
+ 16.3, use static [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) instead
442
+
443
+ ###### See
444
+
445
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props)
446
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path)
447
+
448
+ ###### Inherited from
449
+
450
+ ```ts
451
+ GlobalJSXElementClass.UNSAFE_componentWillReceiveProps;
452
+ ```
453
+
454
+ ##### ~~componentWillUpdate()?~~
455
+
456
+ ```ts
457
+ optional componentWillUpdate(
458
+ nextProps,
459
+ nextState,
460
+ nextContext): void;
461
+ ```
462
+
463
+ Called immediately before rendering when new props or state is received. Not called for the initial render.
464
+
465
+ Note: You cannot call [Component.setState](../README.md#setstate) here.
466
+
467
+ Note: the presence of [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8)
468
+ or [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) prevents
469
+ this from being invoked.
470
+
471
+ ###### Parameters
472
+
473
+ ###### nextProps
474
+
475
+ `Readonly`\<`P`\>
476
+
477
+ ###### nextState
478
+
479
+ `Readonly`\<`S`\>
480
+
481
+ ###### nextContext
482
+
483
+ `any`
484
+
485
+ ###### Returns
486
+
487
+ `void`
488
+
489
+ ###### Deprecated
490
+
491
+ 16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17
492
+
493
+ ###### See
494
+
495
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update)
496
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path)
497
+
498
+ ###### Inherited from
499
+
500
+ ```ts
501
+ GlobalJSXElementClass.componentWillUpdate;
502
+ ```
503
+
504
+ ##### ~~UNSAFE_componentWillUpdate()?~~
505
+
506
+ ```ts
507
+ optional UNSAFE_componentWillUpdate(
508
+ nextProps,
509
+ nextState,
510
+ nextContext): void;
511
+ ```
512
+
513
+ Called immediately before rendering when new props or state is received. Not called for the initial render.
514
+
515
+ Note: You cannot call [Component.setState](../README.md#setstate) here.
516
+
517
+ This method will not stop working in React 17.
518
+
519
+ Note: the presence of [getSnapshotBeforeUpdate](../README.md#getsnapshotbeforeupdate-8)
520
+ or [getDerivedStateFromProps](../README.md#getderivedstatefromprops-2) prevents
521
+ this from being invoked.
522
+
523
+ ###### Parameters
524
+
525
+ ###### nextProps
526
+
527
+ `Readonly`\<`P`\>
528
+
529
+ ###### nextState
530
+
531
+ `Readonly`\<`S`\>
532
+
533
+ ###### nextContext
534
+
535
+ `any`
536
+
537
+ ###### Returns
538
+
539
+ `void`
540
+
541
+ ###### Deprecated
542
+
543
+ 16.3, use getSnapshotBeforeUpdate instead
544
+
545
+ ###### See
546
+
547
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update)
548
+ - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path)
549
+
550
+ ###### Inherited from
551
+
552
+ ```ts
553
+ GlobalJSXElementClass.UNSAFE_componentWillUpdate;
554
+ ```
555
+
556
+ ##### render()
557
+
558
+ ```ts
559
+ render(): ReactNode;
560
+ ```
561
+
562
+ ###### Returns
563
+
564
+ [`ReactNode`](../README.md#reactnode)
565
+
566
+ ###### Inherited from
567
+
568
+ ```ts
569
+ GlobalJSXElementClass.render;
570
+ ```
571
+
572
+ #### Properties
573
+
574
+ ##### context
575
+
576
+ ```ts
577
+ context: unknown;
578
+ ```
579
+
580
+ If using the new style context, re-declare this in your class to be the
581
+ `React.ContextType` of your `static contextType`.
582
+ Should be used with type annotation or static contextType.
583
+
584
+ ###### Example
585
+
586
+ ```ts
587
+ static contextType = MyContext
588
+ // For TS pre-3.7:
589
+ context!: React.ContextType<typeof MyContext>
590
+ // For TS 3.7 and above:
591
+ declare context: React.ContextType<typeof MyContext>
592
+ ```
593
+
594
+ ###### See
595
+
596
+ [React Docs](https://react.dev/reference/react/Component#context)
597
+
598
+ ###### Inherited from
599
+
600
+ ```ts
601
+ GlobalJSXElementClass.context;
602
+ ```
603
+
604
+ ##### props
605
+
606
+ ```ts
607
+ readonly props: Readonly<P>;
608
+ ```
609
+
610
+ ###### Inherited from
611
+
612
+ ```ts
613
+ GlobalJSXElementClass.props;
614
+ ```
615
+
616
+ ##### state
617
+
618
+ ```ts
619
+ state: Readonly<S>;
620
+ ```
621
+
622
+ ###### Inherited from
623
+
624
+ ```ts
625
+ GlobalJSXElementClass.state;
626
+ ```
627
+
628
+ ##### ~~refs~~
629
+
630
+ ```ts
631
+ refs: object;
632
+ ```
633
+
634
+ ###### Index Signature
635
+
636
+ ```ts
637
+ [key: string]: ReactInstance
638
+ ```
639
+
640
+ ###### Deprecated
641
+
642
+ ###### See
643
+
644
+ [Legacy React Docs](https://legacy.reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs)
645
+
646
+ ###### Inherited from
647
+
648
+ ```ts
649
+ GlobalJSXElementClass.refs;
650
+ ```
651
+
652
+ ---
653
+
654
+ ### ElementAttributesProperty
655
+
656
+ #### Extends
657
+
658
+ - `GlobalJSXElementAttributesProperty`
659
+
660
+ #### Properties
661
+
662
+ ##### props
663
+
664
+ ```ts
665
+ props: object;
666
+ ```
667
+
668
+ ###### Inherited from
669
+
670
+ ```ts
671
+ GlobalJSXElementAttributesProperty.props;
672
+ ```
673
+
674
+ ---
675
+
676
+ ### ElementChildrenAttribute
677
+
678
+ #### Extends
679
+
680
+ - `GlobalJSXElementChildrenAttribute`
681
+
682
+ #### Properties
683
+
684
+ ##### children
685
+
686
+ ```ts
687
+ children: object;
688
+ ```
689
+
690
+ ###### Inherited from
691
+
692
+ ```ts
693
+ GlobalJSXElementChildrenAttribute.children;
694
+ ```
695
+
696
+ ---
697
+
698
+ ### IntrinsicAttributes
699
+
700
+ #### Extends
701
+
702
+ - `GlobalJSXIntrinsicAttributes`
703
+
704
+ #### Properties
705
+
706
+ ##### key?
707
+
708
+ ```ts
709
+ optional key: Key | null;
710
+ ```
711
+
712
+ ###### Inherited from
713
+
714
+ ```ts
715
+ GlobalJSXIntrinsicAttributes.key;
716
+ ```
717
+
718
+ ---
719
+
720
+ ### IntrinsicClassAttributes
721
+
722
+ #### Extends
723
+
724
+ - `GlobalJSXIntrinsicClassAttributes`\<`T`\>
725
+
726
+ #### Type Parameters
727
+
728
+ ##### T
729
+
730
+ `T`
731
+
732
+ #### Properties
733
+
734
+ ##### key?
735
+
736
+ ```ts
737
+ optional key: Key | null;
738
+ ```
739
+
740
+ ###### Inherited from
741
+
742
+ ```ts
743
+ GlobalJSXIntrinsicClassAttributes.key;
744
+ ```
745
+
746
+ ##### ref?
747
+
748
+ ```ts
749
+ optional ref: LegacyRef<T>;
750
+ ```
751
+
752
+ Allows getting a ref to the component instance.
753
+ Once the component unmounts, React will set `ref.current` to `null`
754
+ (or call the ref with `null` if you passed a callback ref).
755
+
756
+ ###### See
757
+
758
+ [React Docs](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom)
759
+
760
+ ###### Inherited from
761
+
762
+ ```ts
763
+ GlobalJSXIntrinsicClassAttributes.ref;
764
+ ```
765
+
766
+ ---
767
+
768
+ ### IntrinsicElements
769
+
770
+ #### Extends
771
+
772
+ - `GlobalJSXIntrinsicElements`
773
+
774
+ #### Properties
775
+
776
+ ##### a
777
+
778
+ ```ts
779
+ a: DetailedHTMLProps<
780
+ AnchorHTMLAttributes<HTMLAnchorElement>,
781
+ HTMLAnchorElement
782
+ >;
783
+ ```
784
+
785
+ ###### Inherited from
786
+
787
+ ```ts
788
+ GlobalJSXIntrinsicElements.a;
789
+ ```
790
+
791
+ ##### abbr
792
+
793
+ ```ts
794
+ abbr: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
795
+ ```
796
+
797
+ ###### Inherited from
798
+
799
+ ```ts
800
+ GlobalJSXIntrinsicElements.abbr;
801
+ ```
802
+
803
+ ##### address
804
+
805
+ ```ts
806
+ address: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
807
+ ```
808
+
809
+ ###### Inherited from
810
+
811
+ ```ts
812
+ GlobalJSXIntrinsicElements.address;
813
+ ```
814
+
815
+ ##### area
816
+
817
+ ```ts
818
+ area: DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>;
819
+ ```
820
+
821
+ ###### Inherited from
822
+
823
+ ```ts
824
+ GlobalJSXIntrinsicElements.area;
825
+ ```
826
+
827
+ ##### article
828
+
829
+ ```ts
830
+ article: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
831
+ ```
832
+
833
+ ###### Inherited from
834
+
835
+ ```ts
836
+ GlobalJSXIntrinsicElements.article;
837
+ ```
838
+
839
+ ##### aside
840
+
841
+ ```ts
842
+ aside: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
843
+ ```
844
+
845
+ ###### Inherited from
846
+
847
+ ```ts
848
+ GlobalJSXIntrinsicElements.aside;
849
+ ```
850
+
851
+ ##### audio
852
+
853
+ ```ts
854
+ audio: DetailedHTMLProps<
855
+ AudioHTMLAttributes<HTMLAudioElement>,
856
+ HTMLAudioElement
857
+ >;
858
+ ```
859
+
860
+ ###### Inherited from
861
+
862
+ ```ts
863
+ GlobalJSXIntrinsicElements.audio;
864
+ ```
865
+
866
+ ##### b
867
+
868
+ ```ts
869
+ b: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
870
+ ```
871
+
872
+ ###### Inherited from
873
+
874
+ ```ts
875
+ GlobalJSXIntrinsicElements.b;
876
+ ```
877
+
878
+ ##### base
879
+
880
+ ```ts
881
+ base: DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>;
882
+ ```
883
+
884
+ ###### Inherited from
885
+
886
+ ```ts
887
+ GlobalJSXIntrinsicElements.base;
888
+ ```
889
+
890
+ ##### bdi
891
+
892
+ ```ts
893
+ bdi: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
894
+ ```
895
+
896
+ ###### Inherited from
897
+
898
+ ```ts
899
+ GlobalJSXIntrinsicElements.bdi;
900
+ ```
901
+
902
+ ##### bdo
903
+
904
+ ```ts
905
+ bdo: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
906
+ ```
907
+
908
+ ###### Inherited from
909
+
910
+ ```ts
911
+ GlobalJSXIntrinsicElements.bdo;
912
+ ```
913
+
914
+ ##### big
915
+
916
+ ```ts
917
+ big: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
918
+ ```
919
+
920
+ ###### Inherited from
921
+
922
+ ```ts
923
+ GlobalJSXIntrinsicElements.big;
924
+ ```
925
+
926
+ ##### blockquote
927
+
928
+ ```ts
929
+ blockquote: DetailedHTMLProps<
930
+ BlockquoteHTMLAttributes<HTMLQuoteElement>,
931
+ HTMLQuoteElement
932
+ >;
933
+ ```
934
+
935
+ ###### Inherited from
936
+
937
+ ```ts
938
+ GlobalJSXIntrinsicElements.blockquote;
939
+ ```
940
+
941
+ ##### body
942
+
943
+ ```ts
944
+ body: DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>;
945
+ ```
946
+
947
+ ###### Inherited from
948
+
949
+ ```ts
950
+ GlobalJSXIntrinsicElements.body;
951
+ ```
952
+
953
+ ##### br
954
+
955
+ ```ts
956
+ br: DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>;
957
+ ```
958
+
959
+ ###### Inherited from
960
+
961
+ ```ts
962
+ GlobalJSXIntrinsicElements.br;
963
+ ```
964
+
965
+ ##### button
966
+
967
+ ```ts
968
+ button: DetailedHTMLProps<
969
+ ButtonHTMLAttributes<HTMLButtonElement>,
970
+ HTMLButtonElement
971
+ >;
972
+ ```
973
+
974
+ ###### Inherited from
975
+
976
+ ```ts
977
+ GlobalJSXIntrinsicElements.button;
978
+ ```
979
+
980
+ ##### canvas
981
+
982
+ ```ts
983
+ canvas: DetailedHTMLProps<
984
+ CanvasHTMLAttributes<HTMLCanvasElement>,
985
+ HTMLCanvasElement
986
+ >;
987
+ ```
988
+
989
+ ###### Inherited from
990
+
991
+ ```ts
992
+ GlobalJSXIntrinsicElements.canvas;
993
+ ```
994
+
995
+ ##### caption
996
+
997
+ ```ts
998
+ caption: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
999
+ ```
1000
+
1001
+ ###### Inherited from
1002
+
1003
+ ```ts
1004
+ GlobalJSXIntrinsicElements.caption;
1005
+ ```
1006
+
1007
+ ##### center
1008
+
1009
+ ```ts
1010
+ center: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1011
+ ```
1012
+
1013
+ ###### Inherited from
1014
+
1015
+ ```ts
1016
+ GlobalJSXIntrinsicElements.center;
1017
+ ```
1018
+
1019
+ ##### cite
1020
+
1021
+ ```ts
1022
+ cite: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1023
+ ```
1024
+
1025
+ ###### Inherited from
1026
+
1027
+ ```ts
1028
+ GlobalJSXIntrinsicElements.cite;
1029
+ ```
1030
+
1031
+ ##### code
1032
+
1033
+ ```ts
1034
+ code: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1035
+ ```
1036
+
1037
+ ###### Inherited from
1038
+
1039
+ ```ts
1040
+ GlobalJSXIntrinsicElements.code;
1041
+ ```
1042
+
1043
+ ##### col
1044
+
1045
+ ```ts
1046
+ col: DetailedHTMLProps<
1047
+ ColHTMLAttributes<HTMLTableColElement>,
1048
+ HTMLTableColElement
1049
+ >;
1050
+ ```
1051
+
1052
+ ###### Inherited from
1053
+
1054
+ ```ts
1055
+ GlobalJSXIntrinsicElements.col;
1056
+ ```
1057
+
1058
+ ##### colgroup
1059
+
1060
+ ```ts
1061
+ colgroup: DetailedHTMLProps<
1062
+ ColgroupHTMLAttributes<HTMLTableColElement>,
1063
+ HTMLTableColElement
1064
+ >;
1065
+ ```
1066
+
1067
+ ###### Inherited from
1068
+
1069
+ ```ts
1070
+ GlobalJSXIntrinsicElements.colgroup;
1071
+ ```
1072
+
1073
+ ##### data
1074
+
1075
+ ```ts
1076
+ data: DetailedHTMLProps<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>;
1077
+ ```
1078
+
1079
+ ###### Inherited from
1080
+
1081
+ ```ts
1082
+ GlobalJSXIntrinsicElements.data;
1083
+ ```
1084
+
1085
+ ##### datalist
1086
+
1087
+ ```ts
1088
+ datalist: DetailedHTMLProps<
1089
+ HTMLAttributes<HTMLDataListElement>,
1090
+ HTMLDataListElement
1091
+ >;
1092
+ ```
1093
+
1094
+ ###### Inherited from
1095
+
1096
+ ```ts
1097
+ GlobalJSXIntrinsicElements.datalist;
1098
+ ```
1099
+
1100
+ ##### dd
1101
+
1102
+ ```ts
1103
+ dd: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1104
+ ```
1105
+
1106
+ ###### Inherited from
1107
+
1108
+ ```ts
1109
+ GlobalJSXIntrinsicElements.dd;
1110
+ ```
1111
+
1112
+ ##### del
1113
+
1114
+ ```ts
1115
+ del: DetailedHTMLProps<DelHTMLAttributes<HTMLModElement>, HTMLModElement>;
1116
+ ```
1117
+
1118
+ ###### Inherited from
1119
+
1120
+ ```ts
1121
+ GlobalJSXIntrinsicElements.del;
1122
+ ```
1123
+
1124
+ ##### details
1125
+
1126
+ ```ts
1127
+ details: DetailedHTMLProps<
1128
+ DetailsHTMLAttributes<HTMLDetailsElement>,
1129
+ HTMLDetailsElement
1130
+ >;
1131
+ ```
1132
+
1133
+ ###### Inherited from
1134
+
1135
+ ```ts
1136
+ GlobalJSXIntrinsicElements.details;
1137
+ ```
1138
+
1139
+ ##### dfn
1140
+
1141
+ ```ts
1142
+ dfn: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1143
+ ```
1144
+
1145
+ ###### Inherited from
1146
+
1147
+ ```ts
1148
+ GlobalJSXIntrinsicElements.dfn;
1149
+ ```
1150
+
1151
+ ##### dialog
1152
+
1153
+ ```ts
1154
+ dialog: DetailedHTMLProps<
1155
+ DialogHTMLAttributes<HTMLDialogElement>,
1156
+ HTMLDialogElement
1157
+ >;
1158
+ ```
1159
+
1160
+ ###### Inherited from
1161
+
1162
+ ```ts
1163
+ GlobalJSXIntrinsicElements.dialog;
1164
+ ```
1165
+
1166
+ ##### div
1167
+
1168
+ ```ts
1169
+ div: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
1170
+ ```
1171
+
1172
+ ###### Inherited from
1173
+
1174
+ ```ts
1175
+ GlobalJSXIntrinsicElements.div;
1176
+ ```
1177
+
1178
+ ##### dl
1179
+
1180
+ ```ts
1181
+ dl: DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>;
1182
+ ```
1183
+
1184
+ ###### Inherited from
1185
+
1186
+ ```ts
1187
+ GlobalJSXIntrinsicElements.dl;
1188
+ ```
1189
+
1190
+ ##### dt
1191
+
1192
+ ```ts
1193
+ dt: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1194
+ ```
1195
+
1196
+ ###### Inherited from
1197
+
1198
+ ```ts
1199
+ GlobalJSXIntrinsicElements.dt;
1200
+ ```
1201
+
1202
+ ##### em
1203
+
1204
+ ```ts
1205
+ em: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1206
+ ```
1207
+
1208
+ ###### Inherited from
1209
+
1210
+ ```ts
1211
+ GlobalJSXIntrinsicElements.em;
1212
+ ```
1213
+
1214
+ ##### embed
1215
+
1216
+ ```ts
1217
+ embed: DetailedHTMLProps<
1218
+ EmbedHTMLAttributes<HTMLEmbedElement>,
1219
+ HTMLEmbedElement
1220
+ >;
1221
+ ```
1222
+
1223
+ ###### Inherited from
1224
+
1225
+ ```ts
1226
+ GlobalJSXIntrinsicElements.embed;
1227
+ ```
1228
+
1229
+ ##### fieldset
1230
+
1231
+ ```ts
1232
+ fieldset: DetailedHTMLProps<
1233
+ FieldsetHTMLAttributes<HTMLFieldSetElement>,
1234
+ HTMLFieldSetElement
1235
+ >;
1236
+ ```
1237
+
1238
+ ###### Inherited from
1239
+
1240
+ ```ts
1241
+ GlobalJSXIntrinsicElements.fieldset;
1242
+ ```
1243
+
1244
+ ##### figcaption
1245
+
1246
+ ```ts
1247
+ figcaption: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1248
+ ```
1249
+
1250
+ ###### Inherited from
1251
+
1252
+ ```ts
1253
+ GlobalJSXIntrinsicElements.figcaption;
1254
+ ```
1255
+
1256
+ ##### figure
1257
+
1258
+ ```ts
1259
+ figure: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1260
+ ```
1261
+
1262
+ ###### Inherited from
1263
+
1264
+ ```ts
1265
+ GlobalJSXIntrinsicElements.figure;
1266
+ ```
1267
+
1268
+ ##### footer
1269
+
1270
+ ```ts
1271
+ footer: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1272
+ ```
1273
+
1274
+ ###### Inherited from
1275
+
1276
+ ```ts
1277
+ GlobalJSXIntrinsicElements.footer;
1278
+ ```
1279
+
1280
+ ##### form
1281
+
1282
+ ```ts
1283
+ form: DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>;
1284
+ ```
1285
+
1286
+ ###### Inherited from
1287
+
1288
+ ```ts
1289
+ GlobalJSXIntrinsicElements.form;
1290
+ ```
1291
+
1292
+ ##### h1
1293
+
1294
+ ```ts
1295
+ h1: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1296
+ ```
1297
+
1298
+ ###### Inherited from
1299
+
1300
+ ```ts
1301
+ GlobalJSXIntrinsicElements.h1;
1302
+ ```
1303
+
1304
+ ##### h2
1305
+
1306
+ ```ts
1307
+ h2: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1308
+ ```
1309
+
1310
+ ###### Inherited from
1311
+
1312
+ ```ts
1313
+ GlobalJSXIntrinsicElements.h2;
1314
+ ```
1315
+
1316
+ ##### h3
1317
+
1318
+ ```ts
1319
+ h3: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1320
+ ```
1321
+
1322
+ ###### Inherited from
1323
+
1324
+ ```ts
1325
+ GlobalJSXIntrinsicElements.h3;
1326
+ ```
1327
+
1328
+ ##### h4
1329
+
1330
+ ```ts
1331
+ h4: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1332
+ ```
1333
+
1334
+ ###### Inherited from
1335
+
1336
+ ```ts
1337
+ GlobalJSXIntrinsicElements.h4;
1338
+ ```
1339
+
1340
+ ##### h5
1341
+
1342
+ ```ts
1343
+ h5: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1344
+ ```
1345
+
1346
+ ###### Inherited from
1347
+
1348
+ ```ts
1349
+ GlobalJSXIntrinsicElements.h5;
1350
+ ```
1351
+
1352
+ ##### h6
1353
+
1354
+ ```ts
1355
+ h6: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1356
+ ```
1357
+
1358
+ ###### Inherited from
1359
+
1360
+ ```ts
1361
+ GlobalJSXIntrinsicElements.h6;
1362
+ ```
1363
+
1364
+ ##### head
1365
+
1366
+ ```ts
1367
+ head: DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>;
1368
+ ```
1369
+
1370
+ ###### Inherited from
1371
+
1372
+ ```ts
1373
+ GlobalJSXIntrinsicElements.head;
1374
+ ```
1375
+
1376
+ ##### header
1377
+
1378
+ ```ts
1379
+ header: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1380
+ ```
1381
+
1382
+ ###### Inherited from
1383
+
1384
+ ```ts
1385
+ GlobalJSXIntrinsicElements.header;
1386
+ ```
1387
+
1388
+ ##### hgroup
1389
+
1390
+ ```ts
1391
+ hgroup: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1392
+ ```
1393
+
1394
+ ###### Inherited from
1395
+
1396
+ ```ts
1397
+ GlobalJSXIntrinsicElements.hgroup;
1398
+ ```
1399
+
1400
+ ##### hr
1401
+
1402
+ ```ts
1403
+ hr: DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>;
1404
+ ```
1405
+
1406
+ ###### Inherited from
1407
+
1408
+ ```ts
1409
+ GlobalJSXIntrinsicElements.hr;
1410
+ ```
1411
+
1412
+ ##### html
1413
+
1414
+ ```ts
1415
+ html: DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>;
1416
+ ```
1417
+
1418
+ ###### Inherited from
1419
+
1420
+ ```ts
1421
+ GlobalJSXIntrinsicElements.html;
1422
+ ```
1423
+
1424
+ ##### i
1425
+
1426
+ ```ts
1427
+ i: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1428
+ ```
1429
+
1430
+ ###### Inherited from
1431
+
1432
+ ```ts
1433
+ GlobalJSXIntrinsicElements.i;
1434
+ ```
1435
+
1436
+ ##### iframe
1437
+
1438
+ ```ts
1439
+ iframe: DetailedHTMLProps<
1440
+ IframeHTMLAttributes<HTMLIFrameElement>,
1441
+ HTMLIFrameElement
1442
+ >;
1443
+ ```
1444
+
1445
+ ###### Inherited from
1446
+
1447
+ ```ts
1448
+ GlobalJSXIntrinsicElements.iframe;
1449
+ ```
1450
+
1451
+ ##### img
1452
+
1453
+ ```ts
1454
+ img: DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
1455
+ ```
1456
+
1457
+ ###### Inherited from
1458
+
1459
+ ```ts
1460
+ GlobalJSXIntrinsicElements.img;
1461
+ ```
1462
+
1463
+ ##### input
1464
+
1465
+ ```ts
1466
+ input: DetailedHTMLProps<
1467
+ InputHTMLAttributes<HTMLInputElement>,
1468
+ HTMLInputElement
1469
+ >;
1470
+ ```
1471
+
1472
+ ###### Inherited from
1473
+
1474
+ ```ts
1475
+ GlobalJSXIntrinsicElements.input;
1476
+ ```
1477
+
1478
+ ##### ins
1479
+
1480
+ ```ts
1481
+ ins: DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>;
1482
+ ```
1483
+
1484
+ ###### Inherited from
1485
+
1486
+ ```ts
1487
+ GlobalJSXIntrinsicElements.ins;
1488
+ ```
1489
+
1490
+ ##### kbd
1491
+
1492
+ ```ts
1493
+ kbd: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1494
+ ```
1495
+
1496
+ ###### Inherited from
1497
+
1498
+ ```ts
1499
+ GlobalJSXIntrinsicElements.kbd;
1500
+ ```
1501
+
1502
+ ##### keygen
1503
+
1504
+ ```ts
1505
+ keygen: DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>;
1506
+ ```
1507
+
1508
+ ###### Inherited from
1509
+
1510
+ ```ts
1511
+ GlobalJSXIntrinsicElements.keygen;
1512
+ ```
1513
+
1514
+ ##### label
1515
+
1516
+ ```ts
1517
+ label: DetailedHTMLProps<
1518
+ LabelHTMLAttributes<HTMLLabelElement>,
1519
+ HTMLLabelElement
1520
+ >;
1521
+ ```
1522
+
1523
+ ###### Inherited from
1524
+
1525
+ ```ts
1526
+ GlobalJSXIntrinsicElements.label;
1527
+ ```
1528
+
1529
+ ##### legend
1530
+
1531
+ ```ts
1532
+ legend: DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>;
1533
+ ```
1534
+
1535
+ ###### Inherited from
1536
+
1537
+ ```ts
1538
+ GlobalJSXIntrinsicElements.legend;
1539
+ ```
1540
+
1541
+ ##### li
1542
+
1543
+ ```ts
1544
+ li: DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>;
1545
+ ```
1546
+
1547
+ ###### Inherited from
1548
+
1549
+ ```ts
1550
+ GlobalJSXIntrinsicElements.li;
1551
+ ```
1552
+
1553
+ ##### link
1554
+
1555
+ ```ts
1556
+ link: DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>;
1557
+ ```
1558
+
1559
+ ###### Inherited from
1560
+
1561
+ ```ts
1562
+ GlobalJSXIntrinsicElements.link;
1563
+ ```
1564
+
1565
+ ##### main
1566
+
1567
+ ```ts
1568
+ main: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1569
+ ```
1570
+
1571
+ ###### Inherited from
1572
+
1573
+ ```ts
1574
+ GlobalJSXIntrinsicElements.main;
1575
+ ```
1576
+
1577
+ ##### map
1578
+
1579
+ ```ts
1580
+ map: DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>;
1581
+ ```
1582
+
1583
+ ###### Inherited from
1584
+
1585
+ ```ts
1586
+ GlobalJSXIntrinsicElements.map;
1587
+ ```
1588
+
1589
+ ##### mark
1590
+
1591
+ ```ts
1592
+ mark: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1593
+ ```
1594
+
1595
+ ###### Inherited from
1596
+
1597
+ ```ts
1598
+ GlobalJSXIntrinsicElements.mark;
1599
+ ```
1600
+
1601
+ ##### menu
1602
+
1603
+ ```ts
1604
+ menu: DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>;
1605
+ ```
1606
+
1607
+ ###### Inherited from
1608
+
1609
+ ```ts
1610
+ GlobalJSXIntrinsicElements.menu;
1611
+ ```
1612
+
1613
+ ##### menuitem
1614
+
1615
+ ```ts
1616
+ menuitem: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1617
+ ```
1618
+
1619
+ ###### Inherited from
1620
+
1621
+ ```ts
1622
+ GlobalJSXIntrinsicElements.menuitem;
1623
+ ```
1624
+
1625
+ ##### meta
1626
+
1627
+ ```ts
1628
+ meta: DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>;
1629
+ ```
1630
+
1631
+ ###### Inherited from
1632
+
1633
+ ```ts
1634
+ GlobalJSXIntrinsicElements.meta;
1635
+ ```
1636
+
1637
+ ##### meter
1638
+
1639
+ ```ts
1640
+ meter: DetailedHTMLProps<
1641
+ MeterHTMLAttributes<HTMLMeterElement>,
1642
+ HTMLMeterElement
1643
+ >;
1644
+ ```
1645
+
1646
+ ###### Inherited from
1647
+
1648
+ ```ts
1649
+ GlobalJSXIntrinsicElements.meter;
1650
+ ```
1651
+
1652
+ ##### nav
1653
+
1654
+ ```ts
1655
+ nav: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1656
+ ```
1657
+
1658
+ ###### Inherited from
1659
+
1660
+ ```ts
1661
+ GlobalJSXIntrinsicElements.nav;
1662
+ ```
1663
+
1664
+ ##### noindex
1665
+
1666
+ ```ts
1667
+ noindex: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1668
+ ```
1669
+
1670
+ ###### Inherited from
1671
+
1672
+ ```ts
1673
+ GlobalJSXIntrinsicElements.noindex;
1674
+ ```
1675
+
1676
+ ##### noscript
1677
+
1678
+ ```ts
1679
+ noscript: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1680
+ ```
1681
+
1682
+ ###### Inherited from
1683
+
1684
+ ```ts
1685
+ GlobalJSXIntrinsicElements.noscript;
1686
+ ```
1687
+
1688
+ ##### object
1689
+
1690
+ ```ts
1691
+ object: DetailedHTMLProps<
1692
+ ObjectHTMLAttributes<HTMLObjectElement>,
1693
+ HTMLObjectElement
1694
+ >;
1695
+ ```
1696
+
1697
+ ###### Inherited from
1698
+
1699
+ ```ts
1700
+ GlobalJSXIntrinsicElements.object;
1701
+ ```
1702
+
1703
+ ##### ol
1704
+
1705
+ ```ts
1706
+ ol: DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>;
1707
+ ```
1708
+
1709
+ ###### Inherited from
1710
+
1711
+ ```ts
1712
+ GlobalJSXIntrinsicElements.ol;
1713
+ ```
1714
+
1715
+ ##### optgroup
1716
+
1717
+ ```ts
1718
+ optgroup: DetailedHTMLProps<
1719
+ OptgroupHTMLAttributes<HTMLOptGroupElement>,
1720
+ HTMLOptGroupElement
1721
+ >;
1722
+ ```
1723
+
1724
+ ###### Inherited from
1725
+
1726
+ ```ts
1727
+ GlobalJSXIntrinsicElements.optgroup;
1728
+ ```
1729
+
1730
+ ##### option
1731
+
1732
+ ```ts
1733
+ option: DetailedHTMLProps<
1734
+ OptionHTMLAttributes<HTMLOptionElement>,
1735
+ HTMLOptionElement
1736
+ >;
1737
+ ```
1738
+
1739
+ ###### Inherited from
1740
+
1741
+ ```ts
1742
+ GlobalJSXIntrinsicElements.option;
1743
+ ```
1744
+
1745
+ ##### output
1746
+
1747
+ ```ts
1748
+ output: DetailedHTMLProps<
1749
+ OutputHTMLAttributes<HTMLOutputElement>,
1750
+ HTMLOutputElement
1751
+ >;
1752
+ ```
1753
+
1754
+ ###### Inherited from
1755
+
1756
+ ```ts
1757
+ GlobalJSXIntrinsicElements.output;
1758
+ ```
1759
+
1760
+ ##### p
1761
+
1762
+ ```ts
1763
+ p: DetailedHTMLProps<
1764
+ HTMLAttributes<HTMLParagraphElement>,
1765
+ HTMLParagraphElement
1766
+ >;
1767
+ ```
1768
+
1769
+ ###### Inherited from
1770
+
1771
+ ```ts
1772
+ GlobalJSXIntrinsicElements.p;
1773
+ ```
1774
+
1775
+ ##### param
1776
+
1777
+ ```ts
1778
+ param: DetailedHTMLProps<
1779
+ ParamHTMLAttributes<HTMLParamElement>,
1780
+ HTMLParamElement
1781
+ >;
1782
+ ```
1783
+
1784
+ ###### Inherited from
1785
+
1786
+ ```ts
1787
+ GlobalJSXIntrinsicElements.param;
1788
+ ```
1789
+
1790
+ ##### picture
1791
+
1792
+ ```ts
1793
+ picture: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1794
+ ```
1795
+
1796
+ ###### Inherited from
1797
+
1798
+ ```ts
1799
+ GlobalJSXIntrinsicElements.picture;
1800
+ ```
1801
+
1802
+ ##### pre
1803
+
1804
+ ```ts
1805
+ pre: DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>;
1806
+ ```
1807
+
1808
+ ###### Inherited from
1809
+
1810
+ ```ts
1811
+ GlobalJSXIntrinsicElements.pre;
1812
+ ```
1813
+
1814
+ ##### progress
1815
+
1816
+ ```ts
1817
+ progress: DetailedHTMLProps<
1818
+ ProgressHTMLAttributes<HTMLProgressElement>,
1819
+ HTMLProgressElement
1820
+ >;
1821
+ ```
1822
+
1823
+ ###### Inherited from
1824
+
1825
+ ```ts
1826
+ GlobalJSXIntrinsicElements.progress;
1827
+ ```
1828
+
1829
+ ##### q
1830
+
1831
+ ```ts
1832
+ q: DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
1833
+ ```
1834
+
1835
+ ###### Inherited from
1836
+
1837
+ ```ts
1838
+ GlobalJSXIntrinsicElements.q;
1839
+ ```
1840
+
1841
+ ##### rp
1842
+
1843
+ ```ts
1844
+ rp: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1845
+ ```
1846
+
1847
+ ###### Inherited from
1848
+
1849
+ ```ts
1850
+ GlobalJSXIntrinsicElements.rp;
1851
+ ```
1852
+
1853
+ ##### rt
1854
+
1855
+ ```ts
1856
+ rt: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1857
+ ```
1858
+
1859
+ ###### Inherited from
1860
+
1861
+ ```ts
1862
+ GlobalJSXIntrinsicElements.rt;
1863
+ ```
1864
+
1865
+ ##### ruby
1866
+
1867
+ ```ts
1868
+ ruby: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1869
+ ```
1870
+
1871
+ ###### Inherited from
1872
+
1873
+ ```ts
1874
+ GlobalJSXIntrinsicElements.ruby;
1875
+ ```
1876
+
1877
+ ##### s
1878
+
1879
+ ```ts
1880
+ s: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1881
+ ```
1882
+
1883
+ ###### Inherited from
1884
+
1885
+ ```ts
1886
+ GlobalJSXIntrinsicElements.s;
1887
+ ```
1888
+
1889
+ ##### samp
1890
+
1891
+ ```ts
1892
+ samp: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1893
+ ```
1894
+
1895
+ ###### Inherited from
1896
+
1897
+ ```ts
1898
+ GlobalJSXIntrinsicElements.samp;
1899
+ ```
1900
+
1901
+ ##### search
1902
+
1903
+ ```ts
1904
+ search: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1905
+ ```
1906
+
1907
+ ###### Inherited from
1908
+
1909
+ ```ts
1910
+ GlobalJSXIntrinsicElements.search;
1911
+ ```
1912
+
1913
+ ##### slot
1914
+
1915
+ ```ts
1916
+ slot: DetailedHTMLProps<SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>;
1917
+ ```
1918
+
1919
+ ###### Inherited from
1920
+
1921
+ ```ts
1922
+ GlobalJSXIntrinsicElements.slot;
1923
+ ```
1924
+
1925
+ ##### script
1926
+
1927
+ ```ts
1928
+ script: DetailedHTMLProps<
1929
+ ScriptHTMLAttributes<HTMLScriptElement>,
1930
+ HTMLScriptElement
1931
+ >;
1932
+ ```
1933
+
1934
+ ###### Inherited from
1935
+
1936
+ ```ts
1937
+ GlobalJSXIntrinsicElements.script;
1938
+ ```
1939
+
1940
+ ##### section
1941
+
1942
+ ```ts
1943
+ section: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1944
+ ```
1945
+
1946
+ ###### Inherited from
1947
+
1948
+ ```ts
1949
+ GlobalJSXIntrinsicElements.section;
1950
+ ```
1951
+
1952
+ ##### select
1953
+
1954
+ ```ts
1955
+ select: DetailedHTMLProps<
1956
+ SelectHTMLAttributes<HTMLSelectElement>,
1957
+ HTMLSelectElement
1958
+ >;
1959
+ ```
1960
+
1961
+ ###### Inherited from
1962
+
1963
+ ```ts
1964
+ GlobalJSXIntrinsicElements.select;
1965
+ ```
1966
+
1967
+ ##### small
1968
+
1969
+ ```ts
1970
+ small: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1971
+ ```
1972
+
1973
+ ###### Inherited from
1974
+
1975
+ ```ts
1976
+ GlobalJSXIntrinsicElements.small;
1977
+ ```
1978
+
1979
+ ##### source
1980
+
1981
+ ```ts
1982
+ source: DetailedHTMLProps<
1983
+ SourceHTMLAttributes<HTMLSourceElement>,
1984
+ HTMLSourceElement
1985
+ >;
1986
+ ```
1987
+
1988
+ ###### Inherited from
1989
+
1990
+ ```ts
1991
+ GlobalJSXIntrinsicElements.source;
1992
+ ```
1993
+
1994
+ ##### span
1995
+
1996
+ ```ts
1997
+ span: DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>;
1998
+ ```
1999
+
2000
+ ###### Inherited from
2001
+
2002
+ ```ts
2003
+ GlobalJSXIntrinsicElements.span;
2004
+ ```
2005
+
2006
+ ##### strong
2007
+
2008
+ ```ts
2009
+ strong: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2010
+ ```
2011
+
2012
+ ###### Inherited from
2013
+
2014
+ ```ts
2015
+ GlobalJSXIntrinsicElements.strong;
2016
+ ```
2017
+
2018
+ ##### style
2019
+
2020
+ ```ts
2021
+ style: DetailedHTMLProps<
2022
+ StyleHTMLAttributes<HTMLStyleElement>,
2023
+ HTMLStyleElement
2024
+ >;
2025
+ ```
2026
+
2027
+ ###### Inherited from
2028
+
2029
+ ```ts
2030
+ GlobalJSXIntrinsicElements.style;
2031
+ ```
2032
+
2033
+ ##### sub
2034
+
2035
+ ```ts
2036
+ sub: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2037
+ ```
2038
+
2039
+ ###### Inherited from
2040
+
2041
+ ```ts
2042
+ GlobalJSXIntrinsicElements.sub;
2043
+ ```
2044
+
2045
+ ##### summary
2046
+
2047
+ ```ts
2048
+ summary: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2049
+ ```
2050
+
2051
+ ###### Inherited from
2052
+
2053
+ ```ts
2054
+ GlobalJSXIntrinsicElements.summary;
2055
+ ```
2056
+
2057
+ ##### sup
2058
+
2059
+ ```ts
2060
+ sup: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2061
+ ```
2062
+
2063
+ ###### Inherited from
2064
+
2065
+ ```ts
2066
+ GlobalJSXIntrinsicElements.sup;
2067
+ ```
2068
+
2069
+ ##### table
2070
+
2071
+ ```ts
2072
+ table: DetailedHTMLProps<
2073
+ TableHTMLAttributes<HTMLTableElement>,
2074
+ HTMLTableElement
2075
+ >;
2076
+ ```
2077
+
2078
+ ###### Inherited from
2079
+
2080
+ ```ts
2081
+ GlobalJSXIntrinsicElements.table;
2082
+ ```
2083
+
2084
+ ##### template
2085
+
2086
+ ```ts
2087
+ template: DetailedHTMLProps<
2088
+ HTMLAttributes<HTMLTemplateElement>,
2089
+ HTMLTemplateElement
2090
+ >;
2091
+ ```
2092
+
2093
+ ###### Inherited from
2094
+
2095
+ ```ts
2096
+ GlobalJSXIntrinsicElements.template;
2097
+ ```
2098
+
2099
+ ##### tbody
2100
+
2101
+ ```ts
2102
+ tbody: DetailedHTMLProps<
2103
+ HTMLAttributes<HTMLTableSectionElement>,
2104
+ HTMLTableSectionElement
2105
+ >;
2106
+ ```
2107
+
2108
+ ###### Inherited from
2109
+
2110
+ ```ts
2111
+ GlobalJSXIntrinsicElements.tbody;
2112
+ ```
2113
+
2114
+ ##### td
2115
+
2116
+ ```ts
2117
+ td: DetailedHTMLProps<
2118
+ TdHTMLAttributes<HTMLTableDataCellElement>,
2119
+ HTMLTableDataCellElement
2120
+ >;
2121
+ ```
2122
+
2123
+ ###### Inherited from
2124
+
2125
+ ```ts
2126
+ GlobalJSXIntrinsicElements.td;
2127
+ ```
2128
+
2129
+ ##### textarea
2130
+
2131
+ ```ts
2132
+ textarea: DetailedHTMLProps<
2133
+ TextareaHTMLAttributes<HTMLTextAreaElement>,
2134
+ HTMLTextAreaElement
2135
+ >;
2136
+ ```
2137
+
2138
+ ###### Inherited from
2139
+
2140
+ ```ts
2141
+ GlobalJSXIntrinsicElements.textarea;
2142
+ ```
2143
+
2144
+ ##### tfoot
2145
+
2146
+ ```ts
2147
+ tfoot: DetailedHTMLProps<
2148
+ HTMLAttributes<HTMLTableSectionElement>,
2149
+ HTMLTableSectionElement
2150
+ >;
2151
+ ```
2152
+
2153
+ ###### Inherited from
2154
+
2155
+ ```ts
2156
+ GlobalJSXIntrinsicElements.tfoot;
2157
+ ```
2158
+
2159
+ ##### th
2160
+
2161
+ ```ts
2162
+ th: DetailedHTMLProps<
2163
+ ThHTMLAttributes<HTMLTableHeaderCellElement>,
2164
+ HTMLTableHeaderCellElement
2165
+ >;
2166
+ ```
2167
+
2168
+ ###### Inherited from
2169
+
2170
+ ```ts
2171
+ GlobalJSXIntrinsicElements.th;
2172
+ ```
2173
+
2174
+ ##### thead
2175
+
2176
+ ```ts
2177
+ thead: DetailedHTMLProps<
2178
+ HTMLAttributes<HTMLTableSectionElement>,
2179
+ HTMLTableSectionElement
2180
+ >;
2181
+ ```
2182
+
2183
+ ###### Inherited from
2184
+
2185
+ ```ts
2186
+ GlobalJSXIntrinsicElements.thead;
2187
+ ```
2188
+
2189
+ ##### time
2190
+
2191
+ ```ts
2192
+ time: DetailedHTMLProps<TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>;
2193
+ ```
2194
+
2195
+ ###### Inherited from
2196
+
2197
+ ```ts
2198
+ GlobalJSXIntrinsicElements.time;
2199
+ ```
2200
+
2201
+ ##### title
2202
+
2203
+ ```ts
2204
+ title: DetailedHTMLProps<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>;
2205
+ ```
2206
+
2207
+ ###### Inherited from
2208
+
2209
+ ```ts
2210
+ GlobalJSXIntrinsicElements.title;
2211
+ ```
2212
+
2213
+ ##### tr
2214
+
2215
+ ```ts
2216
+ tr: DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>;
2217
+ ```
2218
+
2219
+ ###### Inherited from
2220
+
2221
+ ```ts
2222
+ GlobalJSXIntrinsicElements.tr;
2223
+ ```
2224
+
2225
+ ##### track
2226
+
2227
+ ```ts
2228
+ track: DetailedHTMLProps<
2229
+ TrackHTMLAttributes<HTMLTrackElement>,
2230
+ HTMLTrackElement
2231
+ >;
2232
+ ```
2233
+
2234
+ ###### Inherited from
2235
+
2236
+ ```ts
2237
+ GlobalJSXIntrinsicElements.track;
2238
+ ```
2239
+
2240
+ ##### u
2241
+
2242
+ ```ts
2243
+ u: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2244
+ ```
2245
+
2246
+ ###### Inherited from
2247
+
2248
+ ```ts
2249
+ GlobalJSXIntrinsicElements.u;
2250
+ ```
2251
+
2252
+ ##### ul
2253
+
2254
+ ```ts
2255
+ ul: DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>;
2256
+ ```
2257
+
2258
+ ###### Inherited from
2259
+
2260
+ ```ts
2261
+ GlobalJSXIntrinsicElements.ul;
2262
+ ```
2263
+
2264
+ ##### var
2265
+
2266
+ ```ts
2267
+ var: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2268
+ ```
2269
+
2270
+ ###### Inherited from
2271
+
2272
+ ```ts
2273
+ GlobalJSXIntrinsicElements.var;
2274
+ ```
2275
+
2276
+ ##### video
2277
+
2278
+ ```ts
2279
+ video: DetailedHTMLProps<
2280
+ VideoHTMLAttributes<HTMLVideoElement>,
2281
+ HTMLVideoElement
2282
+ >;
2283
+ ```
2284
+
2285
+ ###### Inherited from
2286
+
2287
+ ```ts
2288
+ GlobalJSXIntrinsicElements.video;
2289
+ ```
2290
+
2291
+ ##### wbr
2292
+
2293
+ ```ts
2294
+ wbr: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
2295
+ ```
2296
+
2297
+ ###### Inherited from
2298
+
2299
+ ```ts
2300
+ GlobalJSXIntrinsicElements.wbr;
2301
+ ```
2302
+
2303
+ ##### webview
2304
+
2305
+ ```ts
2306
+ webview: DetailedHTMLProps<
2307
+ WebViewHTMLAttributes<HTMLWebViewElement>,
2308
+ HTMLWebViewElement
2309
+ >;
2310
+ ```
2311
+
2312
+ ###### Inherited from
2313
+
2314
+ ```ts
2315
+ GlobalJSXIntrinsicElements.webview;
2316
+ ```
2317
+
2318
+ ##### svg
2319
+
2320
+ ```ts
2321
+ svg: SVGProps<SVGSVGElement>;
2322
+ ```
2323
+
2324
+ ###### Inherited from
2325
+
2326
+ ```ts
2327
+ GlobalJSXIntrinsicElements.svg;
2328
+ ```
2329
+
2330
+ ##### animate
2331
+
2332
+ ```ts
2333
+ animate: SVGProps<SVGElement>;
2334
+ ```
2335
+
2336
+ ###### Inherited from
2337
+
2338
+ ```ts
2339
+ GlobalJSXIntrinsicElements.animate;
2340
+ ```
2341
+
2342
+ ##### animateMotion
2343
+
2344
+ ```ts
2345
+ animateMotion: SVGProps<SVGElement>;
2346
+ ```
2347
+
2348
+ ###### Inherited from
2349
+
2350
+ ```ts
2351
+ GlobalJSXIntrinsicElements.animateMotion;
2352
+ ```
2353
+
2354
+ ##### animateTransform
2355
+
2356
+ ```ts
2357
+ animateTransform: SVGProps<SVGElement>;
2358
+ ```
2359
+
2360
+ ###### Inherited from
2361
+
2362
+ ```ts
2363
+ GlobalJSXIntrinsicElements.animateTransform;
2364
+ ```
2365
+
2366
+ ##### circle
2367
+
2368
+ ```ts
2369
+ circle: SVGProps<SVGCircleElement>;
2370
+ ```
2371
+
2372
+ ###### Inherited from
2373
+
2374
+ ```ts
2375
+ GlobalJSXIntrinsicElements.circle;
2376
+ ```
2377
+
2378
+ ##### clipPath
2379
+
2380
+ ```ts
2381
+ clipPath: SVGProps<SVGClipPathElement>;
2382
+ ```
2383
+
2384
+ ###### Inherited from
2385
+
2386
+ ```ts
2387
+ GlobalJSXIntrinsicElements.clipPath;
2388
+ ```
2389
+
2390
+ ##### defs
2391
+
2392
+ ```ts
2393
+ defs: SVGProps<SVGDefsElement>;
2394
+ ```
2395
+
2396
+ ###### Inherited from
2397
+
2398
+ ```ts
2399
+ GlobalJSXIntrinsicElements.defs;
2400
+ ```
2401
+
2402
+ ##### desc
2403
+
2404
+ ```ts
2405
+ desc: SVGProps<SVGDescElement>;
2406
+ ```
2407
+
2408
+ ###### Inherited from
2409
+
2410
+ ```ts
2411
+ GlobalJSXIntrinsicElements.desc;
2412
+ ```
2413
+
2414
+ ##### ellipse
2415
+
2416
+ ```ts
2417
+ ellipse: SVGProps<SVGEllipseElement>;
2418
+ ```
2419
+
2420
+ ###### Inherited from
2421
+
2422
+ ```ts
2423
+ GlobalJSXIntrinsicElements.ellipse;
2424
+ ```
2425
+
2426
+ ##### feBlend
2427
+
2428
+ ```ts
2429
+ feBlend: SVGProps<SVGFEBlendElement>;
2430
+ ```
2431
+
2432
+ ###### Inherited from
2433
+
2434
+ ```ts
2435
+ GlobalJSXIntrinsicElements.feBlend;
2436
+ ```
2437
+
2438
+ ##### feColorMatrix
2439
+
2440
+ ```ts
2441
+ feColorMatrix: SVGProps<SVGFEColorMatrixElement>;
2442
+ ```
2443
+
2444
+ ###### Inherited from
2445
+
2446
+ ```ts
2447
+ GlobalJSXIntrinsicElements.feColorMatrix;
2448
+ ```
2449
+
2450
+ ##### feComponentTransfer
2451
+
2452
+ ```ts
2453
+ feComponentTransfer: SVGProps<SVGFEComponentTransferElement>;
2454
+ ```
2455
+
2456
+ ###### Inherited from
2457
+
2458
+ ```ts
2459
+ GlobalJSXIntrinsicElements.feComponentTransfer;
2460
+ ```
2461
+
2462
+ ##### feComposite
2463
+
2464
+ ```ts
2465
+ feComposite: SVGProps<SVGFECompositeElement>;
2466
+ ```
2467
+
2468
+ ###### Inherited from
2469
+
2470
+ ```ts
2471
+ GlobalJSXIntrinsicElements.feComposite;
2472
+ ```
2473
+
2474
+ ##### feConvolveMatrix
2475
+
2476
+ ```ts
2477
+ feConvolveMatrix: SVGProps<SVGFEConvolveMatrixElement>;
2478
+ ```
2479
+
2480
+ ###### Inherited from
2481
+
2482
+ ```ts
2483
+ GlobalJSXIntrinsicElements.feConvolveMatrix;
2484
+ ```
2485
+
2486
+ ##### feDiffuseLighting
2487
+
2488
+ ```ts
2489
+ feDiffuseLighting: SVGProps<SVGFEDiffuseLightingElement>;
2490
+ ```
2491
+
2492
+ ###### Inherited from
2493
+
2494
+ ```ts
2495
+ GlobalJSXIntrinsicElements.feDiffuseLighting;
2496
+ ```
2497
+
2498
+ ##### feDisplacementMap
2499
+
2500
+ ```ts
2501
+ feDisplacementMap: SVGProps<SVGFEDisplacementMapElement>;
2502
+ ```
2503
+
2504
+ ###### Inherited from
2505
+
2506
+ ```ts
2507
+ GlobalJSXIntrinsicElements.feDisplacementMap;
2508
+ ```
2509
+
2510
+ ##### feDistantLight
2511
+
2512
+ ```ts
2513
+ feDistantLight: SVGProps<SVGFEDistantLightElement>;
2514
+ ```
2515
+
2516
+ ###### Inherited from
2517
+
2518
+ ```ts
2519
+ GlobalJSXIntrinsicElements.feDistantLight;
2520
+ ```
2521
+
2522
+ ##### feDropShadow
2523
+
2524
+ ```ts
2525
+ feDropShadow: SVGProps<SVGFEDropShadowElement>;
2526
+ ```
2527
+
2528
+ ###### Inherited from
2529
+
2530
+ ```ts
2531
+ GlobalJSXIntrinsicElements.feDropShadow;
2532
+ ```
2533
+
2534
+ ##### feFlood
2535
+
2536
+ ```ts
2537
+ feFlood: SVGProps<SVGFEFloodElement>;
2538
+ ```
2539
+
2540
+ ###### Inherited from
2541
+
2542
+ ```ts
2543
+ GlobalJSXIntrinsicElements.feFlood;
2544
+ ```
2545
+
2546
+ ##### feFuncA
2547
+
2548
+ ```ts
2549
+ feFuncA: SVGProps<SVGFEFuncAElement>;
2550
+ ```
2551
+
2552
+ ###### Inherited from
2553
+
2554
+ ```ts
2555
+ GlobalJSXIntrinsicElements.feFuncA;
2556
+ ```
2557
+
2558
+ ##### feFuncB
2559
+
2560
+ ```ts
2561
+ feFuncB: SVGProps<SVGFEFuncBElement>;
2562
+ ```
2563
+
2564
+ ###### Inherited from
2565
+
2566
+ ```ts
2567
+ GlobalJSXIntrinsicElements.feFuncB;
2568
+ ```
2569
+
2570
+ ##### feFuncG
2571
+
2572
+ ```ts
2573
+ feFuncG: SVGProps<SVGFEFuncGElement>;
2574
+ ```
2575
+
2576
+ ###### Inherited from
2577
+
2578
+ ```ts
2579
+ GlobalJSXIntrinsicElements.feFuncG;
2580
+ ```
2581
+
2582
+ ##### feFuncR
2583
+
2584
+ ```ts
2585
+ feFuncR: SVGProps<SVGFEFuncRElement>;
2586
+ ```
2587
+
2588
+ ###### Inherited from
2589
+
2590
+ ```ts
2591
+ GlobalJSXIntrinsicElements.feFuncR;
2592
+ ```
2593
+
2594
+ ##### feGaussianBlur
2595
+
2596
+ ```ts
2597
+ feGaussianBlur: SVGProps<SVGFEGaussianBlurElement>;
2598
+ ```
2599
+
2600
+ ###### Inherited from
2601
+
2602
+ ```ts
2603
+ GlobalJSXIntrinsicElements.feGaussianBlur;
2604
+ ```
2605
+
2606
+ ##### feImage
2607
+
2608
+ ```ts
2609
+ feImage: SVGProps<SVGFEImageElement>;
2610
+ ```
2611
+
2612
+ ###### Inherited from
2613
+
2614
+ ```ts
2615
+ GlobalJSXIntrinsicElements.feImage;
2616
+ ```
2617
+
2618
+ ##### feMerge
2619
+
2620
+ ```ts
2621
+ feMerge: SVGProps<SVGFEMergeElement>;
2622
+ ```
2623
+
2624
+ ###### Inherited from
2625
+
2626
+ ```ts
2627
+ GlobalJSXIntrinsicElements.feMerge;
2628
+ ```
2629
+
2630
+ ##### feMergeNode
2631
+
2632
+ ```ts
2633
+ feMergeNode: SVGProps<SVGFEMergeNodeElement>;
2634
+ ```
2635
+
2636
+ ###### Inherited from
2637
+
2638
+ ```ts
2639
+ GlobalJSXIntrinsicElements.feMergeNode;
2640
+ ```
2641
+
2642
+ ##### feMorphology
2643
+
2644
+ ```ts
2645
+ feMorphology: SVGProps<SVGFEMorphologyElement>;
2646
+ ```
2647
+
2648
+ ###### Inherited from
2649
+
2650
+ ```ts
2651
+ GlobalJSXIntrinsicElements.feMorphology;
2652
+ ```
2653
+
2654
+ ##### feOffset
2655
+
2656
+ ```ts
2657
+ feOffset: SVGProps<SVGFEOffsetElement>;
2658
+ ```
2659
+
2660
+ ###### Inherited from
2661
+
2662
+ ```ts
2663
+ GlobalJSXIntrinsicElements.feOffset;
2664
+ ```
2665
+
2666
+ ##### fePointLight
2667
+
2668
+ ```ts
2669
+ fePointLight: SVGProps<SVGFEPointLightElement>;
2670
+ ```
2671
+
2672
+ ###### Inherited from
2673
+
2674
+ ```ts
2675
+ GlobalJSXIntrinsicElements.fePointLight;
2676
+ ```
2677
+
2678
+ ##### feSpecularLighting
2679
+
2680
+ ```ts
2681
+ feSpecularLighting: SVGProps<SVGFESpecularLightingElement>;
2682
+ ```
2683
+
2684
+ ###### Inherited from
2685
+
2686
+ ```ts
2687
+ GlobalJSXIntrinsicElements.feSpecularLighting;
2688
+ ```
2689
+
2690
+ ##### feSpotLight
2691
+
2692
+ ```ts
2693
+ feSpotLight: SVGProps<SVGFESpotLightElement>;
2694
+ ```
2695
+
2696
+ ###### Inherited from
2697
+
2698
+ ```ts
2699
+ GlobalJSXIntrinsicElements.feSpotLight;
2700
+ ```
2701
+
2702
+ ##### feTile
2703
+
2704
+ ```ts
2705
+ feTile: SVGProps<SVGFETileElement>;
2706
+ ```
2707
+
2708
+ ###### Inherited from
2709
+
2710
+ ```ts
2711
+ GlobalJSXIntrinsicElements.feTile;
2712
+ ```
2713
+
2714
+ ##### feTurbulence
2715
+
2716
+ ```ts
2717
+ feTurbulence: SVGProps<SVGFETurbulenceElement>;
2718
+ ```
2719
+
2720
+ ###### Inherited from
2721
+
2722
+ ```ts
2723
+ GlobalJSXIntrinsicElements.feTurbulence;
2724
+ ```
2725
+
2726
+ ##### filter
2727
+
2728
+ ```ts
2729
+ filter: SVGProps<SVGFilterElement>;
2730
+ ```
2731
+
2732
+ ###### Inherited from
2733
+
2734
+ ```ts
2735
+ GlobalJSXIntrinsicElements.filter;
2736
+ ```
2737
+
2738
+ ##### foreignObject
2739
+
2740
+ ```ts
2741
+ foreignObject: SVGProps<SVGForeignObjectElement>;
2742
+ ```
2743
+
2744
+ ###### Inherited from
2745
+
2746
+ ```ts
2747
+ GlobalJSXIntrinsicElements.foreignObject;
2748
+ ```
2749
+
2750
+ ##### g
2751
+
2752
+ ```ts
2753
+ g: SVGProps<SVGGElement>;
2754
+ ```
2755
+
2756
+ ###### Inherited from
2757
+
2758
+ ```ts
2759
+ GlobalJSXIntrinsicElements.g;
2760
+ ```
2761
+
2762
+ ##### image
2763
+
2764
+ ```ts
2765
+ image: SVGProps<SVGImageElement>;
2766
+ ```
2767
+
2768
+ ###### Inherited from
2769
+
2770
+ ```ts
2771
+ GlobalJSXIntrinsicElements.image;
2772
+ ```
2773
+
2774
+ ##### line
2775
+
2776
+ ```ts
2777
+ line: SVGLineElementAttributes<SVGLineElement>;
2778
+ ```
2779
+
2780
+ ###### Inherited from
2781
+
2782
+ ```ts
2783
+ GlobalJSXIntrinsicElements.line;
2784
+ ```
2785
+
2786
+ ##### linearGradient
2787
+
2788
+ ```ts
2789
+ linearGradient: SVGProps<SVGLinearGradientElement>;
2790
+ ```
2791
+
2792
+ ###### Inherited from
2793
+
2794
+ ```ts
2795
+ GlobalJSXIntrinsicElements.linearGradient;
2796
+ ```
2797
+
2798
+ ##### marker
2799
+
2800
+ ```ts
2801
+ marker: SVGProps<SVGMarkerElement>;
2802
+ ```
2803
+
2804
+ ###### Inherited from
2805
+
2806
+ ```ts
2807
+ GlobalJSXIntrinsicElements.marker;
2808
+ ```
2809
+
2810
+ ##### mask
2811
+
2812
+ ```ts
2813
+ mask: SVGProps<SVGMaskElement>;
2814
+ ```
2815
+
2816
+ ###### Inherited from
2817
+
2818
+ ```ts
2819
+ GlobalJSXIntrinsicElements.mask;
2820
+ ```
2821
+
2822
+ ##### metadata
2823
+
2824
+ ```ts
2825
+ metadata: SVGProps<SVGMetadataElement>;
2826
+ ```
2827
+
2828
+ ###### Inherited from
2829
+
2830
+ ```ts
2831
+ GlobalJSXIntrinsicElements.metadata;
2832
+ ```
2833
+
2834
+ ##### mpath
2835
+
2836
+ ```ts
2837
+ mpath: SVGProps<SVGElement>;
2838
+ ```
2839
+
2840
+ ###### Inherited from
2841
+
2842
+ ```ts
2843
+ GlobalJSXIntrinsicElements.mpath;
2844
+ ```
2845
+
2846
+ ##### path
2847
+
2848
+ ```ts
2849
+ path: SVGProps<SVGPathElement>;
2850
+ ```
2851
+
2852
+ ###### Inherited from
2853
+
2854
+ ```ts
2855
+ GlobalJSXIntrinsicElements.path;
2856
+ ```
2857
+
2858
+ ##### pattern
2859
+
2860
+ ```ts
2861
+ pattern: SVGProps<SVGPatternElement>;
2862
+ ```
2863
+
2864
+ ###### Inherited from
2865
+
2866
+ ```ts
2867
+ GlobalJSXIntrinsicElements.pattern;
2868
+ ```
2869
+
2870
+ ##### polygon
2871
+
2872
+ ```ts
2873
+ polygon: SVGProps<SVGPolygonElement>;
2874
+ ```
2875
+
2876
+ ###### Inherited from
2877
+
2878
+ ```ts
2879
+ GlobalJSXIntrinsicElements.polygon;
2880
+ ```
2881
+
2882
+ ##### polyline
2883
+
2884
+ ```ts
2885
+ polyline: SVGProps<SVGPolylineElement>;
2886
+ ```
2887
+
2888
+ ###### Inherited from
2889
+
2890
+ ```ts
2891
+ GlobalJSXIntrinsicElements.polyline;
2892
+ ```
2893
+
2894
+ ##### radialGradient
2895
+
2896
+ ```ts
2897
+ radialGradient: SVGProps<SVGRadialGradientElement>;
2898
+ ```
2899
+
2900
+ ###### Inherited from
2901
+
2902
+ ```ts
2903
+ GlobalJSXIntrinsicElements.radialGradient;
2904
+ ```
2905
+
2906
+ ##### rect
2907
+
2908
+ ```ts
2909
+ rect: SVGProps<SVGRectElement>;
2910
+ ```
2911
+
2912
+ ###### Inherited from
2913
+
2914
+ ```ts
2915
+ GlobalJSXIntrinsicElements.rect;
2916
+ ```
2917
+
2918
+ ##### set
2919
+
2920
+ ```ts
2921
+ set: SVGProps<SVGSetElement>;
2922
+ ```
2923
+
2924
+ ###### Inherited from
2925
+
2926
+ ```ts
2927
+ GlobalJSXIntrinsicElements.set;
2928
+ ```
2929
+
2930
+ ##### stop
2931
+
2932
+ ```ts
2933
+ stop: SVGProps<SVGStopElement>;
2934
+ ```
2935
+
2936
+ ###### Inherited from
2937
+
2938
+ ```ts
2939
+ GlobalJSXIntrinsicElements.stop;
2940
+ ```
2941
+
2942
+ ##### switch
2943
+
2944
+ ```ts
2945
+ switch: SVGProps<SVGSwitchElement>;
2946
+ ```
2947
+
2948
+ ###### Inherited from
2949
+
2950
+ ```ts
2951
+ GlobalJSXIntrinsicElements.switch;
2952
+ ```
2953
+
2954
+ ##### symbol
2955
+
2956
+ ```ts
2957
+ symbol: SVGProps<SVGSymbolElement>;
2958
+ ```
2959
+
2960
+ ###### Inherited from
2961
+
2962
+ ```ts
2963
+ GlobalJSXIntrinsicElements.symbol;
2964
+ ```
2965
+
2966
+ ##### text
2967
+
2968
+ ```ts
2969
+ text: SVGTextElementAttributes<SVGTextElement>;
2970
+ ```
2971
+
2972
+ ###### Inherited from
2973
+
2974
+ ```ts
2975
+ GlobalJSXIntrinsicElements.text;
2976
+ ```
2977
+
2978
+ ##### textPath
2979
+
2980
+ ```ts
2981
+ textPath: SVGProps<SVGTextPathElement>;
2982
+ ```
2983
+
2984
+ ###### Inherited from
2985
+
2986
+ ```ts
2987
+ GlobalJSXIntrinsicElements.textPath;
2988
+ ```
2989
+
2990
+ ##### tspan
2991
+
2992
+ ```ts
2993
+ tspan: SVGProps<SVGTSpanElement>;
2994
+ ```
2995
+
2996
+ ###### Inherited from
2997
+
2998
+ ```ts
2999
+ GlobalJSXIntrinsicElements.tspan;
3000
+ ```
3001
+
3002
+ ##### use
3003
+
3004
+ ```ts
3005
+ use: SVGProps<SVGUseElement>;
3006
+ ```
3007
+
3008
+ ###### Inherited from
3009
+
3010
+ ```ts
3011
+ GlobalJSXIntrinsicElements.use;
3012
+ ```
3013
+
3014
+ ##### view
3015
+
3016
+ ```ts
3017
+ view: SVGProps<SVGViewElement>;
3018
+ ```
3019
+
3020
+ ###### Inherited from
3021
+
3022
+ ```ts
3023
+ GlobalJSXIntrinsicElements.view;
3024
+ ```
3025
+
3026
+ ## Type Aliases
3027
+
3028
+ ### ElementType
3029
+
3030
+ ```ts
3031
+ type ElementType = GlobalJSXElementType;
3032
+ ```
3033
+
3034
+ ---
3035
+
3036
+ ### LibraryManagedAttributes
3037
+
3038
+ ```ts
3039
+ type LibraryManagedAttributes<C, P> = GlobalJSXLibraryManagedAttributes<C, P>;
3040
+ ```
3041
+
3042
+ #### Type Parameters
3043
+
3044
+ ##### C
3045
+
3046
+ `C`
3047
+
3048
+ ##### P
3049
+
3050
+ `P`