@greghowe79/the-lib 1.0.6 → 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.
@@ -118,7 +118,8 @@ const Input = qwik.component$(({ id, type, placeholder, value, error, onValidate
118
118
  type: "radio",
119
119
  name,
120
120
  checked: checked?.value,
121
- required
121
+ required,
122
+ "bind:value": value
122
123
  }) : /* @__PURE__ */ jsxRuntime.jsx("label", {
123
124
  class: `input-label ${bgLight ? "bg_light" : ""}`,
124
125
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
@@ -116,7 +116,8 @@ const Input = component$(({ id, type, placeholder, value, error, onValidate$, on
116
116
  type: "radio",
117
117
  name,
118
118
  checked: checked?.value,
119
- required
119
+ required,
120
+ "bind:value": value
120
121
  }) : /* @__PURE__ */ jsx("label", {
121
122
  class: `input-label ${bgLight ? "bg_light" : ""}`,
122
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.6",
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",