@greghowe79/the-lib 1.2.8 → 1.2.9

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.
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
4
  const qwik = require("@builder.io/qwik");
5
- const qwik$1 = require("@unpic/qwik");
6
5
  const styles = require("./styles.css.qwik.cjs");
7
6
  require("@fontsource/roboto-condensed/500.css");
8
7
  const qwikCity = require("@builder.io/qwik-city");
@@ -18,16 +17,12 @@ const Card = qwik.component$(({ item, icon, subtitle, link, path }) => {
18
17
  /* @__PURE__ */ jsxRuntime.jsx("div", {
19
18
  class: "card-cover"
20
19
  }),
21
- /* @__PURE__ */ jsxRuntime.jsx(qwik$1.Image, {
22
- objectFit: "cover",
23
- width: 128,
24
- height: 128,
20
+ /* @__PURE__ */ jsxRuntime.jsx("img", {
25
21
  src: item.img_url,
26
- layout: "constrained",
27
- decoding: "async",
28
- loading: "eager",
29
22
  alt: `${item.first_name} ${item.last_name}`,
30
- class: "card-avatar"
23
+ class: "card-avatar",
24
+ width: 128,
25
+ height: 128
31
26
  }),
32
27
  /* @__PURE__ */ jsxRuntime.jsx("h1", {
33
28
  class: "card-fullname",
@@ -1,6 +1,5 @@
1
1
  import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
2
  import { component$, useStyles$ } from "@builder.io/qwik";
3
- import { Image } from "@unpic/qwik";
4
3
  import styles from "./styles.css.qwik.mjs";
5
4
  import "@fontsource/roboto-condensed/500.css";
6
5
  import { Link } from "@builder.io/qwik-city";
@@ -16,16 +15,12 @@ const Card = component$(({ item, icon, subtitle, link, path }) => {
16
15
  /* @__PURE__ */ jsx("div", {
17
16
  class: "card-cover"
18
17
  }),
19
- /* @__PURE__ */ jsx(Image, {
20
- objectFit: "cover",
21
- width: 128,
22
- height: 128,
18
+ /* @__PURE__ */ jsx("img", {
23
19
  src: item.img_url,
24
- layout: "constrained",
25
- decoding: "async",
26
- loading: "eager",
27
20
  alt: `${item.first_name} ${item.last_name}`,
28
- class: "card-avatar"
21
+ class: "card-avatar",
22
+ width: 128,
23
+ height: 128
29
24
  }),
30
25
  /* @__PURE__ */ jsx("h1", {
31
26
  class: "card-fullname",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",