@elmethis/qwik 0.0.39 → 0.0.40

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.
@@ -3102,6 +3102,8 @@ const ElmJarkup = qwik.component$((props) => {
3102
3102
  return /* @__PURE__ */ jsxRuntime.jsx(ElmBlockImage, {
3103
3103
  src: component.props.src,
3104
3104
  alt: component.props.alt,
3105
+ width: component.props.width,
3106
+ height: component.props.height,
3105
3107
  enableModal: true
3106
3108
  }, key);
3107
3109
  case "CodeBlock":
@@ -3100,6 +3100,8 @@ const ElmJarkup = component$((props) => {
3100
3100
  return /* @__PURE__ */ jsx(ElmBlockImage, {
3101
3101
  src: component.props.src,
3102
3102
  alt: component.props.alt,
3103
+ width: component.props.width,
3104
+ height: component.props.height,
3103
3105
  enableModal: true
3104
3106
  }, key);
3105
3107
  case "CodeBlock":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/qwik",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },