Merge pull request #19194 from Scroody/issue-16945

fix: upgrade tooltip dependency and fix open tooltip on mobile (port from 2.7)
This commit is contained in:
Ramón Souza 2024-01-25 09:53:25 -03:00 committed by GitHub
commit 1dcc68f387
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 15 deletions

View File

@ -1,4 +1,4 @@
.tippy-tooltip.bbbtip-theme{
.tippy-box[data-theme~='bbbtip']{
color:#fff;
background-color:#333333;
padding: .25rem .5rem;
@ -6,12 +6,12 @@
user-select: none;
}
.tippy-tooltip.bbbtip-theme>.tippy-svg-arrow{
.tippy-box[data-theme~='bbbtip']>.tippy-svg-arrow{
fill: #333333;
background-color: transparent;
}
.tippy-tooltip.bbbtip-theme>.tippy-content{
.tippy-box[data-theme~='bbbtip']>.tippy-content{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

View File

@ -15,7 +15,7 @@ const ANIMATION_DURATION = 350;
const ANIMATION_DELAY = [150, 50];
const DEFAULT_ANIMATION = 'shift-away';
const ANIMATION_NONE = 'none';
const TIP_OFFSET = '0, 10';
const TIP_OFFSET = [0, 10];
const propTypes = {
title: PropTypes.string,
@ -87,7 +87,7 @@ class Tooltip extends Component {
onHide: this.onHide,
offset: TIP_OFFSET,
placement: overridePlacement,
touch: 'hold',
touch: ['hold', 1000],
theme: 'bbbtip',
multiple: false,
};

View File

@ -7650,11 +7650,6 @@
"semver-compare": "^1.0.0"
}
},
"popper.js": {
"version": "1.16.1",
"resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
"integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ=="
},
"postcss": {
"version": "8.4.31",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
@ -8923,11 +8918,11 @@
"dev": true
},
"tippy.js": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-5.2.1.tgz",
"integrity": "sha512-66UT6JRVn3dXNCORE+0UvUK3JZqV/VhLlU6HTDm3FmrweUUFUxUGvT8tUQ7ycMp+uhuLAwQw6dBabyC+iKf/MA==",
"version": "6.3.7",
"resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-6.3.7.tgz",
"integrity": "sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==",
"requires": {
"popper.js": "^1.16.0"
"@popperjs/core": "^2.9.0"
}
},
"to-fast-properties": {

View File

@ -102,7 +102,7 @@
"string-hash": "~1.1.3",
"styled-components": "^5.3.3",
"subscriptions-transport-ws": "^0.11.0",
"tippy.js": "^5.1.3",
"tippy.js": "^6.3.7",
"use-context-selector": "^1.3.7",
"uuid": "^9.0.0",
"wasm-feature-detect": "^1.5.1",