Skip to content

Commit

Permalink
Merge branch 'master' into AlertBanner--replace-Button--Icon-with-Ico…
Browse files Browse the repository at this point in the history
…nButton-5414954008
  • Loading branch information
rivka-ungar authored May 16, 2024
2 parents 903f986 + 707c5c3 commit b3252cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/Dropdown/Dropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -667,11 +667,11 @@ Dropdown.propTypes = {
*/
isOptionSelected: PropTypes.func,
/**
* For display the drop down menu in overflow hidden/scroll container.
* Allows the dropdown menu to overflow its container.
*/
insideOverflowContainer: PropTypes.bool,
/**
* For display the drop down menu in overflow hidden/scroll container which contains transform css function usage.
* Allows the dropdown menu to overflow its container, including CSS transformations.
*/
insideOverflowWithTransformContainer: PropTypes.bool,
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/Typography/Typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface TypographyProps extends VibeComponentProps, HTMLAttributes<HTML
/**
* All props are passed to the tooltip displayed when hovering over the text. By default, the tooltip will display when text contains an ellipsis and will show the full text
*/
tooltipProps?: TooltipProps;
tooltipProps?: Partial<TooltipProps>;
/**
* Hide tooltip when hovering the text, by default the tooltip swill display when text contains an ellipsis
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function useTooltipProps(
ref: MutableRefObject<HTMLElement>,
withoutTooltip: boolean,
ellipsis: boolean,
tooltipProps: TooltipProps,
tooltipProps: Partial<TooltipProps>,
children: ElementContent,
ignoreHeightOverflow: boolean,
overflowTolerance: number
Expand Down

0 comments on commit b3252cf

Please sign in to comment.