kui-basic 1.1.148 → 1.1.149
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 +2 -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 +2 -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"> {
|
|
@@ -803,6 +803,7 @@ interface TooltipProps
|
|
|
803
803
|
withClosing?: boolean
|
|
804
804
|
offsetOptions?: OffsetOptions
|
|
805
805
|
strategy?: Strategy
|
|
806
|
+
fullWidth?: boolean
|
|
806
807
|
}
|
|
807
808
|
|
|
808
809
|
type TooltipStylesProps = {
|