@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.
- package/lib/index.qwik.cjs +2 -0
- package/lib/index.qwik.mjs +2 -0
- package/package.json +1 -1
package/lib/index.qwik.cjs
CHANGED
|
@@ -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":
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -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":
|