kui-complex 0.0.40 → 0.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +13 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -282,16 +282,19 @@ type PopperPlacements =
|
|
|
282
282
|
| "bottomMiddle"
|
|
283
283
|
| "bottomEnd"
|
|
284
284
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
285
|
+
interface TooltipProps
|
|
286
|
+
extends Omit<React__default.HTMLAttributes<HTMLDivElement>, "content"> {
|
|
287
|
+
onOpen?: () => void
|
|
288
|
+
onClose?: () => void
|
|
289
|
+
content: ReactNode
|
|
290
|
+
open?: boolean
|
|
291
|
+
placement?: PopperPlacements
|
|
292
|
+
withArrow?: boolean
|
|
293
|
+
cursor?: "pointer" | "auto"
|
|
294
|
+
spacing?: string
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps & React.RefAttributes<HTMLDivElement>>;
|
|
295
298
|
|
|
296
299
|
type ButtonSelectProps = InputSelectProps
|
|
297
300
|
|