@mobileaction/action-kit 1.39.3 → 1.39.31
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 +8 -0
- package/dist/action-kit.mjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.38.10](https://github.com/mobileaction/action-kit/compare/v1.38.9...v1.38.10) (2024-12-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **DUV-6850:** ellipsis component empty tooltip fix ([02585a0](https://github.com/mobileaction/action-kit/commit/02585a01bb4edf6ae31c02a78da1d74c9fe68abc))
|
|
11
|
+
* **DUV-6850:** select component arrow css fix ([eeabd05](https://github.com/mobileaction/action-kit/commit/eeabd054a762fc6c03465e61a54cbf41fae40585))
|
|
12
|
+
|
|
5
13
|
## [1.38.9](https://github.com/mobileaction/action-kit/compare/v1.38.8...v1.38.9) (2024-12-02)
|
|
6
14
|
|
|
7
15
|
|
package/dist/action-kit.mjs
CHANGED
|
@@ -5626,7 +5626,7 @@ const Mb = { class: "dropdown-wrapper" }, Ab = { class: "mobile-header" }, xb =
|
|
|
5626
5626
|
const ve = F(fe);
|
|
5627
5627
|
document.body.appendChild(ve);
|
|
5628
5628
|
const pe = ve.getBoundingClientRect().width;
|
|
5629
|
-
return document.body.removeChild(ve), v.value < pe;
|
|
5629
|
+
return document.body.removeChild(ve), parseInt(v.value.toString()) < parseInt(pe.toString());
|
|
5630
5630
|
}, F = (fe) => {
|
|
5631
5631
|
const ve = document.createElement("div"), pe = window.getComputedStyle(fe, null);
|
|
5632
5632
|
Object.assign(ve.style, {
|