@nr1e/qwik-ui 0.0.13 → 0.0.14

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.
@@ -13,7 +13,7 @@ const SelectField = qwik.component$((props) => {
13
13
  },
14
14
  children: /* @__PURE__ */ jsxRuntime.jsx("span", {
15
15
  class: "label-text",
16
- children: props.title
16
+ children: props.label
17
17
  })
18
18
  }),
19
19
  /* @__PURE__ */ jsxRuntime.jsx("select", {
@@ -11,7 +11,7 @@ const SelectField = component$((props) => {
11
11
  },
12
12
  children: /* @__PURE__ */ jsx("span", {
13
13
  class: "label-text",
14
- children: props.title
14
+ children: props.label
15
15
  })
16
16
  }),
17
17
  /* @__PURE__ */ jsx("select", {
@@ -1,6 +1,6 @@
1
1
  export interface SelectFieldProps {
2
2
  id?: string;
3
- title: string;
3
+ label: string;
4
4
  name?: string;
5
5
  }
6
6
  export declare const SelectField: import("@builder.io/qwik").Component<SelectFieldProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-ui",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "NR1E Qwik UI Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {