kui-basic 1.1.262 → 1.1.264
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/cjs/index.js +4 -4
- package/index.d.ts +4 -4
- package/index.js +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { HTMLInputTypeAttribute, ReactNode, ReactElement, SyntheticEvent, RefObj
|
|
|
3
3
|
import { Placement, OffsetOptions, Strategy } from '@floating-ui/react';
|
|
4
4
|
import { MiddlewareData } from '@floating-ui/core/src/types';
|
|
5
5
|
import { SnowfallProps } from 'react-snowfall/lib/Snowfall';
|
|
6
|
-
import { TooltipProps as TooltipProps$1, CaptionProps as CaptionProps$1 } from 'kui-basic';
|
|
7
6
|
|
|
8
7
|
interface BrandColors {
|
|
9
8
|
main: string
|
|
@@ -909,11 +908,12 @@ type TextOverflowProps = {
|
|
|
909
908
|
onOpen?: () => void
|
|
910
909
|
multiline?: number
|
|
911
910
|
content?: string | ReactNode
|
|
912
|
-
placement?: TooltipProps
|
|
913
|
-
strategy?: TooltipProps
|
|
911
|
+
placement?: TooltipProps["placement"]
|
|
912
|
+
strategy?: TooltipProps["strategy"]
|
|
914
913
|
endText?: string | false
|
|
915
914
|
openAlways?: boolean
|
|
916
|
-
|
|
915
|
+
toggleMethod?: TooltipProps["toggleMethod"]
|
|
916
|
+
} & CaptionProps
|
|
917
917
|
|
|
918
918
|
type TextOverflowStylesProps = {
|
|
919
919
|
multiline?: number
|