kui-basic 1.1.128 → 1.1.129
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/Input/cjs/index.js.map +1 -1
- package/Input/index.js.map +1 -1
- package/InputWithAdornments/cjs/index.js.map +1 -1
- package/InputWithAdornments/index.js.map +1 -1
- package/InputWithCountryDropdown/cjs/index.js.map +1 -1
- package/InputWithCountryDropdown/index.js.map +1 -1
- package/InputWithMask/cjs/index.js.map +1 -1
- package/InputWithMask/index.js.map +1 -1
- package/Switch/cjs/index.js.map +1 -1
- package/Switch/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 -0
- package/Tooltip/index.js +2 -2
- package/Tooltip/index.js.map +1 -1
- package/cjs/index.js +3 -3
- package/cjs/index.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import { HTMLInputTypeAttribute, ReactElement, SyntheticEvent, ReactNode, RefObject } from 'react';
|
|
3
3
|
import { Placement } from '@floating-ui/react';
|
|
4
4
|
import { MiddlewareData } from '@floating-ui/core/src/types';
|
|
5
|
+
import { OffsetOptions } from '@floating-ui/core/src/middleware/offset';
|
|
5
6
|
|
|
6
7
|
interface BrandColors {
|
|
7
8
|
main: string
|
|
@@ -798,6 +799,8 @@ interface TooltipProps
|
|
|
798
799
|
spacing?: string
|
|
799
800
|
toggleMethod?: TooltipToggleMethods
|
|
800
801
|
withoutMobile?: boolean
|
|
802
|
+
withClosing?: boolean
|
|
803
|
+
offsetOptions?: OffsetOptions
|
|
801
804
|
}
|
|
802
805
|
|
|
803
806
|
type TooltipStylesProps = {
|