@greghowe79/the-lib 1.0.5 → 1.0.7

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,9 +117,9 @@ 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,
122
- required
120
+ checked: checked?.value,
121
+ required,
122
+ "bind:value": value
123
123
  }) : /* @__PURE__ */ jsxRuntime.jsx("label", {
124
124
  class: `input-label ${bgLight ? "bg_light" : ""}`,
125
125
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
@@ -115,9 +115,9 @@ 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,
120
- required
118
+ checked: checked?.value,
119
+ required,
120
+ "bind:value": value
121
121
  }) : /* @__PURE__ */ jsx("label", {
122
122
  class: `input-label ${bgLight ? "bg_light" : ""}`,
123
123
  children: /* @__PURE__ */ jsxs("div", {
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.7",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",