@touchtech/baselayer-ui 8.3.1 → 8.3.3
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.
|
@@ -5,6 +5,7 @@ declare namespace _default {
|
|
|
5
5
|
export default _default;
|
|
6
6
|
export function Default(): JSX.Element;
|
|
7
7
|
export function WithValues(): JSX.Element;
|
|
8
|
+
export function WithScroll(): JSX.Element;
|
|
8
9
|
export function Disabled(): JSX.Element;
|
|
9
10
|
export function Autocomplete(): JSX.Element;
|
|
10
11
|
import TagsInput from "./TagsInput";
|
|
@@ -3,8 +3,9 @@ type TooltipProps = {
|
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
text: string;
|
|
5
5
|
placement: "left" | "right" | "top" | "bottom";
|
|
6
|
+
position?: "absolute" | "fixed";
|
|
6
7
|
className?: string;
|
|
7
8
|
showTooltip: boolean;
|
|
8
9
|
};
|
|
9
|
-
declare function Tooltip({ children, text, placement, showTooltip, className, }: TooltipProps): JSX.Element;
|
|
10
|
+
declare function Tooltip({ children, text, placement, position, showTooltip, className, }: TooltipProps): JSX.Element;
|
|
10
11
|
export default Tooltip;
|