aloha-vue 2.30.1 → 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 CHANGED
@@ -7,6 +7,10 @@
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
+
10
14
  ## 2.30.1
11
15
 
12
16
  - Feature: Export `remPx` from ARemPxAPI for enhanced utility
@@ -52417,12 +52417,15 @@ const xKe = {
52417
52417
  };
52418
52418
  }
52419
52419
  }, GKe = {
52420
- install() {
52421
- const e = document.createElement("div");
52422
- e.style.position = "absolute", e.style.visibility = "hidden", e.style.height = "1rem", e.style.width = "1rem", document.body.appendChild(e), new ResizeObserver(() => {
52423
- const _ = e.offsetHeight;
52424
- _ !== Rd.value && (Rd.value = _);
52425
- }).observe(e);
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 } = {}) => {