Skip to content

Commit

Permalink
Fix Tooltip pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
diyorbek committed Jul 8, 2024
1 parent d4b6250 commit c9e656e
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin-gestalt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-gestalt",
"version": "154.6.3-alpha.0",
"version": "154.6.4",
"license": "Apache-2.0",
"homepage": "https://gestalt.pinterest.systems/",
"description": "ESLint rules for Pinterest's design language Gestalt",
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt-charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gestalt-charts",
"version": "154.6.3-alpha.0",
"version": "154.6.4",
"license": "Apache-2.0",
"homepage": "https://gestalt.pinterest.systems/",
"description": "A React UI chart component which enforces Pinterest's design language",
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt-datepicker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gestalt-datepicker",
"version": "154.6.3-alpha.0",
"version": "154.6.4",
"license": "Apache-2.0",
"homepage": "https://gestalt.pinterest.systems/",
"description": "A React UI datepicker component which enforces Pinterest's design language",
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt-design-tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gestalt-design-tokens",
"version": "154.6.3-alpha.0",
"version": "154.6.4",
"license": "Apache-2.0",
"homepage": "https://gestalt.pinterest.systems/",
"description": "Design tokens style dictionary for Gestalt",
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gestalt",
"version": "154.6.3-alpha.0",
"version": "154.6.4",
"license": "Apache-2.0",
"homepage": "https://gestalt.pinterest.systems/",
"description": "A set of React UI components which enforce Pinterest's design language",
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Popover/Contents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function Contents({
hideWhenReferenceHidden,
onPositioned,
shouldTrapFocus,
overflow = 'auto',
overflow,
}: Props) {
const caretRef = useRef<HTMLElement | null>(null);
const idealPlacement = idealDirection ? DIRECTIONS_MAP[idealDirection] : 'top';
Expand Down
2 changes: 1 addition & 1 deletion packages/gestalt/src/Popover/InternalPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function InternalPopover({
hideWhenReferenceHidden,
onPositioned,
disableFocusTrap = false,
overflow,
overflow = 'auto',
}: Props) {
const { accessibilityDismissButtonLabel: accessibilityDismissButtonLabelDefault } =
useDefaultLabelContext('Popover');
Expand Down
1 change: 0 additions & 1 deletion packages/gestalt/src/Tooltip/InternalTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ export default function InternalTooltip({
onMouseEnter={link ? handleTextMouseEnter : undefined}
onMouseLeave={link ? handleTextMouseLeave : undefined}
padding={2}
role="tooltip"
tabIndex={0}
>
<Text color="inverse" size="100">
Expand Down

0 comments on commit c9e656e

Please sign in to comment.