Skip to content

Commit

Permalink
chore: Merge support into master (#2658)
Browse files Browse the repository at this point in the history
Co-authored-by: @mannycarrera4 <mannycarrera4@users.noreply.github.com>
Co-authored-by: manuel.carrera <manuel.carrera@workday.com>
  • Loading branch information
3 people committed Mar 22, 2024
2 parents 71ef1da + 7cfba86 commit d8e3e3a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .github/dependabot.yml

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [v9.1.40](https://github.com/Workday/canvas-kit/releases/tag/v9.1.40) (2024-03-22)

### Components

- fix: Revert overflow calculation until we find a better solution ([#2651](https://github.com/Workday/canvas-kit/pull/2651)) ([@mannycarrera4](https://github.com/mannycarrera4), manuel.carrera)
Reverting the sub pixel calculation on the overflow logic until we find a better solution.
## [v10.3.22](https://github.com/Workday/canvas-kit/releases/tag/v10.3.22) (2024-03-11)

### Infrastructure
Expand Down Expand Up @@ -85,6 +91,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Infrastructure

- ci: Fix forward-merge version conflicts ([#2568](https://github.com/Workday/canvas-kit/pull/2568)) ([@NicholasBoll](https://github.com/NicholasBoll))
- ci: Fix resolve-package-json merge file ([#2575](https://github.com/Workday/canvas-kit/pull/2575)) ([@NicholasBoll](https://github.com/NicholasBoll))


## [v10.3.12](https://github.com/Workday/canvas-kit/releases/tag/v10.3.12) (2024-02-12)
Expand Down
5 changes: 2 additions & 3 deletions modules/react/tooltip/lib/OverflowTooltip.tsx
Expand Up @@ -59,10 +59,9 @@ const isOverflowed = (element: Element) => {
const overflowElement = findEllipsisElement(element) || findOverflowElement(element);

if (overflowElement) {
const clientRect = overflowElement.getBoundingClientRect();
return (
overflowElement.scrollWidth > clientRect.width ||
overflowElement.scrollHeight > clientRect.height
overflowElement.scrollWidth > overflowElement.clientWidth ||
overflowElement.scrollHeight > overflowElement.clientHeight
);
}
return false;
Expand Down

0 comments on commit d8e3e3a

Please sign in to comment.