@elmethis/qwik 0.0.40 → 0.0.41

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.
@@ -2329,7 +2329,7 @@ const ElmBlockImage = qwik.component$(({ src, alt, caption: caption2, width, hei
2329
2329
  height,
2330
2330
  onLoad$: handleImageLoad,
2331
2331
  style: {
2332
- "--opacity": isLoading.value ? 0 : 1,
2332
+ "--opacity": isLoading.value ? 0.01 : 1,
2333
2333
  "--cursor": enableModal ? isShowModal.value ? "zoom-out" : "zoom-in" : "default",
2334
2334
  "--aspect-ratio": width && height ? `${width} / ${height}` : "auto"
2335
2335
  }
@@ -2350,7 +2350,7 @@ const ElmBlockImage = qwik.component$(({ src, alt, caption: caption2, width, hei
2350
2350
  /* @__PURE__ */ jsxRuntime.jsxs("div", {
2351
2351
  class: styles$h["image-container"],
2352
2352
  style: {
2353
- "--opacity": isLoading.value ? 1 : 0
2353
+ "--opacity": isLoading.value ? 1 : 0.01
2354
2354
  },
2355
2355
  onClick$: handleToggleModal,
2356
2356
  children: [
@@ -2364,7 +2364,7 @@ const ElmBlockImage = qwik.component$(({ src, alt, caption: caption2, width, hei
2364
2364
  caption2 && /* @__PURE__ */ jsxRuntime.jsxs("figcaption", {
2365
2365
  class: styles$h["caption-box"],
2366
2366
  style: {
2367
- "--opacity": isLoading.value ? 0 : 1
2367
+ "--opacity": isLoading.value ? 0.01 : 1
2368
2368
  },
2369
2369
  children: [
2370
2370
  /* @__PURE__ */ jsxRuntime.jsx("span", {
@@ -2327,7 +2327,7 @@ const ElmBlockImage = component$(({ src, alt, caption: caption2, width, height,
2327
2327
  height,
2328
2328
  onLoad$: handleImageLoad,
2329
2329
  style: {
2330
- "--opacity": isLoading.value ? 0 : 1,
2330
+ "--opacity": isLoading.value ? 0.01 : 1,
2331
2331
  "--cursor": enableModal ? isShowModal.value ? "zoom-out" : "zoom-in" : "default",
2332
2332
  "--aspect-ratio": width && height ? `${width} / ${height}` : "auto"
2333
2333
  }
@@ -2348,7 +2348,7 @@ const ElmBlockImage = component$(({ src, alt, caption: caption2, width, height,
2348
2348
  /* @__PURE__ */ jsxs("div", {
2349
2349
  class: styles$h["image-container"],
2350
2350
  style: {
2351
- "--opacity": isLoading.value ? 1 : 0
2351
+ "--opacity": isLoading.value ? 1 : 0.01
2352
2352
  },
2353
2353
  onClick$: handleToggleModal,
2354
2354
  children: [
@@ -2362,7 +2362,7 @@ const ElmBlockImage = component$(({ src, alt, caption: caption2, width, height,
2362
2362
  caption2 && /* @__PURE__ */ jsxs("figcaption", {
2363
2363
  class: styles$h["caption-box"],
2364
2364
  style: {
2365
- "--opacity": isLoading.value ? 0 : 1
2365
+ "--opacity": isLoading.value ? 0.01 : 1
2366
2366
  },
2367
2367
  children: [
2368
2368
  /* @__PURE__ */ jsx("span", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/qwik",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },