kui-basic 1.1.148 → 1.1.151
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/InputWithCountryDropdown/cjs/index.js +4 -4
- package/InputWithCountryDropdown/cjs/index.js.map +1 -1
- package/InputWithCountryDropdown/index.js +4 -4
- package/InputWithCountryDropdown/index.js.map +1 -1
- package/Tooltip/cjs/index.js +2 -2
- package/Tooltip/cjs/index.js.map +1 -1
- package/Tooltip/index.d.ts +3 -1
- package/Tooltip/index.js +2 -2
- package/Tooltip/index.js.map +1 -1
- package/cjs/index.js +4 -4
- package/cjs/index.js.map +1 -1
- package/index.d.ts +3 -1
- package/index.js +4 -4
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -784,7 +784,7 @@ type PopperBaseProps = {
|
|
|
784
784
|
|
|
785
785
|
declare const PopperBase: (props: PopperBaseProps) => React.ReactElement
|
|
786
786
|
|
|
787
|
-
type TooltipToggleMethods = "click" | "hover"
|
|
787
|
+
type TooltipToggleMethods = "click" | "hover" | "controlled"
|
|
788
788
|
|
|
789
789
|
interface TooltipProps
|
|
790
790
|
extends Omit<React.HTMLAttributes<HTMLDivElement>, "content" | "onChange"> {
|
|
@@ -796,6 +796,7 @@ interface TooltipProps
|
|
|
796
796
|
defaultOpen?: boolean
|
|
797
797
|
placement?: Placement
|
|
798
798
|
withArrow?: boolean
|
|
799
|
+
withShift?: boolean
|
|
799
800
|
cursor?: "pointer" | "auto"
|
|
800
801
|
spacing?: string
|
|
801
802
|
toggleMethod?: TooltipToggleMethods
|
|
@@ -803,6 +804,7 @@ interface TooltipProps
|
|
|
803
804
|
withClosing?: boolean
|
|
804
805
|
offsetOptions?: OffsetOptions
|
|
805
806
|
strategy?: Strategy
|
|
807
|
+
fullWidth?: boolean
|
|
806
808
|
}
|
|
807
809
|
|
|
808
810
|
type TooltipStylesProps = {
|