@nlxai/touchpoint-ui 1.2.7-alpha.2 → 1.2.7-alpha.3

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