uhuu-components 0.2.55 → 0.2.56
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/package.json
CHANGED
package/uhuu-components.es.js
CHANGED
|
@@ -12329,7 +12329,7 @@ const Cf = ({ children: t, className: e, setup: r }) => {
|
|
|
12329
12329
|
"img",
|
|
12330
12330
|
{
|
|
12331
12331
|
className: m,
|
|
12332
|
-
src: i,
|
|
12332
|
+
src: i || null,
|
|
12333
12333
|
onLoad: (A) => x(A)
|
|
12334
12334
|
},
|
|
12335
12335
|
`${i}-${S}-${h}`
|
|
@@ -19366,7 +19366,7 @@ function ec(t) {
|
|
|
19366
19366
|
"img",
|
|
19367
19367
|
{
|
|
19368
19368
|
className: v,
|
|
19369
|
-
src: i,
|
|
19369
|
+
src: i || null,
|
|
19370
19370
|
onLoad: (N) => H(N)
|
|
19371
19371
|
},
|
|
19372
19372
|
`${i}-${h}-${y}`
|
|
@@ -19954,7 +19954,9 @@ function Lg({
|
|
|
19954
19954
|
}, [t, p, u, m]);
|
|
19955
19955
|
const v = T.useCallback(
|
|
19956
19956
|
(x) => {
|
|
19957
|
-
e?.(x), typeof window
|
|
19957
|
+
if (e?.(x), typeof window > "u") return;
|
|
19958
|
+
const A = window.$uhuu;
|
|
19959
|
+
A?.emitPayload && A.emitPayload(x);
|
|
19958
19960
|
},
|
|
19959
19961
|
[e]
|
|
19960
19962
|
), f = T.useCallback(
|