@ordergroove/offers 2.45.4 → 2.45.5
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.
- package/CHANGELOG.md +11 -0
- package/dist/offers.js +2 -1
- package/dist/offers.js.map +2 -2
- package/package.json +2 -2
- package/src/components/Tooltip.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.45.5](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.45.4...@ordergroove/offers@2.45.5) (2025-08-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* show tooltip when link inside content is focused ([d97e7d7](https://github.com/ordergroove/plush-toys/commit/d97e7d72e9822705a0a63e36f6da752d7123d4d2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.45.4](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.45.3...@ordergroove/offers@2.45.4) (2025-08-12)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @ordergroove/offers
|
package/dist/offers.js
CHANGED
|
@@ -780,7 +780,8 @@ var lib=(()=>{var ja=Object.create;var mt=Object.defineProperty;var Ga=Object.ge
|
|
|
780
780
|
}
|
|
781
781
|
|
|
782
782
|
.tooltip:hover .content,
|
|
783
|
-
.trigger:focus + .content
|
|
783
|
+
.trigger:focus + .content,
|
|
784
|
+
.content:focus-within {
|
|
784
785
|
opacity: 1;
|
|
785
786
|
width: 200px;
|
|
786
787
|
pointer-events: auto;
|