aloha-vue 2.30.0 → 2.30.2
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/aloha-vue.es.js +10 -6
- package/dist/aloha-vue.umd.js +34 -34
- package/package.json +1 -1
- package/src/index.js +4 -1
- package/src/plugins/ARemPxPlugin.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.30.2
|
|
11
|
+
|
|
12
|
+
- Feature: Add `changeFontSize` callback to ARemPxPlugin for dynamic font size updates
|
|
13
|
+
|
|
14
|
+
## 2.30.1
|
|
15
|
+
|
|
16
|
+
- Feature: Export `remPx` from ARemPxAPI for enhanced utility
|
|
17
|
+
|
|
10
18
|
## 2.30.0
|
|
11
19
|
|
|
12
20
|
- Feature: Add `mobileBreakpoint` ref for better breakpoint management in AMobilePlugin and AMobileAPI
|
package/dist/aloha-vue.es.js
CHANGED
|
@@ -52417,12 +52417,15 @@ const xKe = {
|
|
|
52417
52417
|
};
|
|
52418
52418
|
}
|
|
52419
52419
|
}, GKe = {
|
|
52420
|
-
install(
|
|
52421
|
-
|
|
52422
|
-
|
|
52423
|
-
|
|
52424
|
-
|
|
52425
|
-
|
|
52420
|
+
install(e, {
|
|
52421
|
+
changeFontSize: t = () => {
|
|
52422
|
+
}
|
|
52423
|
+
} = {}) {
|
|
52424
|
+
const _ = document.createElement("div");
|
|
52425
|
+
_.style.position = "absolute", _.style.visibility = "hidden", _.style.height = "1rem", _.style.width = "1rem", document.body.appendChild(_), new ResizeObserver(() => {
|
|
52426
|
+
const r = _.offsetHeight;
|
|
52427
|
+
r !== Rd.value && (Rd.value = r, t(r));
|
|
52428
|
+
}).observe(_);
|
|
52426
52429
|
}
|
|
52427
52430
|
}, qKe = {
|
|
52428
52431
|
install: (e, { axiosCreateOptions: t = {}, baseUrl: _ = "/api/", errorCallbacks: n = {}, headerParams: r = {}, setUrlForArray: s = void 0 } = {}) => {
|
|
@@ -57567,6 +57570,7 @@ export {
|
|
|
57567
57570
|
Ar as ARadioI18n,
|
|
57568
57571
|
TKe as ARate,
|
|
57569
57572
|
s0 as ARemPxAPI,
|
|
57573
|
+
Rd as ARemPxAPI_remPx,
|
|
57570
57574
|
GKe as ARemPxPlugin,
|
|
57571
57575
|
h1 as ARequired,
|
|
57572
57576
|
fr as ARequiredI18n,
|