1
1
/* eslint-disable jsx-a11y/no-static-element-interactions */
2
2
/* eslint-disable jsx-a11y/click-events-have-key-events */
3
3
import { TooltipController as Tooltip } from 'components/TooltipController'
4
- import { IPosition , TooltipRefProps } from 'components/Tooltip/TooltipTypes.d'
5
- import React , { useEffect , useRef , useState } from 'react'
4
+ import type { IPosition , TooltipRefProps } from 'components/Tooltip/TooltipTypes.d'
5
+ import type React from 'react'
6
+ import { useEffect , useRef , useState } from 'react'
6
7
import { inline , offset } from '@floating-ui/dom'
7
8
import styles from './styles.module.css'
8
9
@@ -81,13 +82,15 @@ function App() {
81
82
< p >
82
83
< button
83
84
id = "button2"
85
+ type = "button"
84
86
data-tooltip-content = "Hello World from a Tooltip 2"
85
87
onClick = { handleButtonClick }
86
88
>
87
89
Hover or focus me
88
90
</ button >
89
91
< button
90
92
id = "button3"
93
+ type = "button"
91
94
data-tooltip-content = "Hello World from a Tooltip 3"
92
95
onClick = { handleButtonClick }
93
96
>
@@ -97,11 +100,19 @@ function App() {
97
100
</ section >
98
101
< section id = "section-anchor-select" style = { { marginTop : '100px' } } >
99
102
< p >
100
- < button data-tooltip-id = "anchor-select" data-tooltip-content = "this content is different" >
103
+ < button
104
+ type = "button"
105
+ data-tooltip-id = "anchor-select"
106
+ data-tooltip-content = "this content is different"
107
+ >
101
108
Anchor select
102
109
</ button >
103
- < button data-tooltip-id = "anchor-select" > Anchor select 2</ button >
104
- < button data-tooltip-id = "anchor-select" > Anchor select 3</ button >
110
+ < button type = "button" type = "button" data-tooltip-id = "anchor-select" >
111
+ Anchor select 2
112
+ </ button >
113
+ < button type = "button" type = "button" data-tooltip-id = "anchor-select" >
114
+ Anchor select 3
115
+ </ button >
105
116
</ p >
106
117
< Tooltip id = "anchor-select" > Tooltip content</ Tooltip >
107
118
< Tooltip
@@ -163,6 +174,7 @@ function App() {
163
174
/>
164
175
</ div >
165
176
< button
177
+ type = "button"
166
178
id = "imperativeTooltipButton"
167
179
style = { { height : 40 , marginLeft : 100 } }
168
180
onClick = { ( ) => {
@@ -184,7 +196,9 @@ function App() {
184
196
</ div >
185
197
186
198
< div style = { { marginTop : '1rem' } } >
187
- < button id = "buttonCallbacks" > Check the dev console</ button >
199
+ < button type = "button" id = "buttonCallbacks" >
200
+ Check the dev console
201
+ </ button >
188
202
< Tooltip
189
203
place = "bottom"
190
204
anchorSelect = "#buttonCallbacks"
@@ -195,7 +209,9 @@ function App() {
195
209
content = "Showing tooltip and calling afterShow method"
196
210
/>
197
211
198
- < button id = "buttonCallbacksClick" > With click event</ button >
212
+ < button type = "button" id = "buttonCallbacksClick" >
213
+ With click event
214
+ </ button >
199
215
< Tooltip
200
216
openOnClick
201
217
place = "bottom"
@@ -207,7 +223,9 @@ function App() {
207
223
content = "Showing tooltip and calling afterShow method"
208
224
/>
209
225
210
- < button id = "buttonCallbacksDelay" > With delay</ button >
226
+ < button type = "button" id = "buttonCallbacksDelay" >
227
+ With delay
228
+ </ button >
211
229
< Tooltip
212
230
delayShow = { 1000 }
213
231
place = "bottom"
0 commit comments