@televet/kibble-ui 1.2.0-beta.0 → 1.2.0-beta.2
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.
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import { LogoHoliday, LogoType, LogoColor } from './logo.types';
|
|
3
3
|
export interface ILogoProps {
|
|
4
4
|
type?: LogoType;
|
|
5
5
|
color?: LogoColor;
|
|
6
6
|
holiday?: LogoHoliday;
|
|
7
|
-
|
|
7
|
+
height?: number;
|
|
8
|
+
width?: number;
|
|
8
9
|
handleClick?: () => void;
|
|
9
10
|
}
|
|
10
11
|
export declare const Logo: {
|
|
11
|
-
({ type, color, holiday,
|
|
12
|
+
({ type, color, holiday, height, width, handleClick, }: ILogoProps): JSX.Element;
|
|
12
13
|
displayName: string;
|
|
13
14
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { TooltipProps as ChakraTooltipProps } from '@chakra-ui/react';
|
|
2
|
+
import { PlacementWithLogical, TooltipProps as ChakraTooltipProps } from '@chakra-ui/react';
|
|
3
3
|
export interface TooltipProps extends ChakraTooltipProps {
|
|
4
4
|
label: string;
|
|
5
|
+
placement?: PlacementWithLogical;
|
|
6
|
+
titleCaseLabel?: boolean;
|
|
5
7
|
}
|
|
6
|
-
export declare const Tooltip: ({ children, label, openDelay, ...rest }: TooltipProps) => JSX.Element;
|
|
8
|
+
export declare const Tooltip: ({ children, label, openDelay, placement, titleCaseLabel, ...rest }: TooltipProps) => JSX.Element;
|
|
@@ -5,3 +5,4 @@ export * from './Typography';
|
|
|
5
5
|
export * from './Textarea';
|
|
6
6
|
export * from './Button';
|
|
7
7
|
export * from './Tooltip';
|
|
8
|
+
export { Box, BoxProps, Center, CenterProps, Flex, FlexProps, Hide, HideProps, Show, ShowProps, Tbody, Td, Th, Thead, Tr, VStack, HStack, } from '@chakra-ui/react';
|