@greghowe79/the-lib 1.0.5 → 1.0.6

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.
@@ -117,8 +117,7 @@ const Input = qwik.component$(({ id, type, placeholder, value, error, onValidate
117
117
  id,
118
118
  type: "radio",
119
119
  name,
120
- value: placeholder,
121
- "bind:checked": checked,
120
+ checked: checked?.value,
122
121
  required
123
122
  }) : /* @__PURE__ */ jsxRuntime.jsx("label", {
124
123
  class: `input-label ${bgLight ? "bg_light" : ""}`,
@@ -115,8 +115,7 @@ const Input = component$(({ id, type, placeholder, value, error, onValidate$, on
115
115
  id,
116
116
  type: "radio",
117
117
  name,
118
- value: placeholder,
119
- "bind:checked": checked,
118
+ checked: checked?.value,
120
119
  required
121
120
  }) : /* @__PURE__ */ jsx("label", {
122
121
  class: `input-label ${bgLight ? "bg_light" : ""}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",