kui-basic 1.1.50 → 1.1.52
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -768,7 +768,8 @@ type PopperBaseProps = {
|
|
|
768
768
|
spacing?: string
|
|
769
769
|
className?: string
|
|
770
770
|
popperOffset?: number
|
|
771
|
-
|
|
771
|
+
withoutMobile?: boolean
|
|
772
|
+
isCalculated?: boolean
|
|
772
773
|
} & React.HTMLAttributes<HTMLDivElement>
|
|
773
774
|
|
|
774
775
|
type PopperProps = {
|
|
@@ -796,7 +797,7 @@ interface TooltipProps
|
|
|
796
797
|
cursor?: "pointer" | "auto"
|
|
797
798
|
spacing?: string
|
|
798
799
|
toggleMethod?: TooltipToggleMethods
|
|
799
|
-
|
|
800
|
+
withoutMobile?: boolean
|
|
800
801
|
}
|
|
801
802
|
|
|
802
803
|
type TooltipStylesProps = {
|