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 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
@@ -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 } = {}) => {
@@ -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,