@touchtech/baselayer-ui 8.3.0 → 8.3.1

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.
@@ -11,10 +11,11 @@ type TagsInputProps = {
11
11
  size?: Size;
12
12
  noBorder?: boolean;
13
13
  autoFocus?: boolean;
14
+ withScroll?: boolean;
14
15
  inputRef?: React.RefObject<HTMLInputElement>;
15
16
  inputMode?: TextInputMode;
16
17
  disabled?: boolean;
17
18
  tagOptions?: string[];
18
19
  };
19
- declare function TagsInput({ className, onChange, placeholder, value, name, pattern, inputRef, size, type, autoFocus, noBorder, inputMode, disabled, tagOptions, }: TagsInputProps): JSX.Element;
20
+ declare function TagsInput({ className, onChange, placeholder, value, name, pattern, inputRef, size, type, autoFocus, noBorder, withScroll, inputMode, disabled, tagOptions, }: TagsInputProps): JSX.Element;
20
21
  export default TagsInput;
@@ -3,7 +3,8 @@ type TooltipProps = {
3
3
  children: ReactNode;
4
4
  text: string;
5
5
  placement: "left" | "right" | "top" | "bottom";
6
+ className?: string;
6
7
  showTooltip: boolean;
7
8
  };
8
- declare function Tooltip({ children, text, placement, showTooltip }: TooltipProps): JSX.Element;
9
+ declare function Tooltip({ children, text, placement, showTooltip, className, }: TooltipProps): JSX.Element;
9
10
  export default Tooltip;