@luminescent/ui-qwik 6.4.22 → 6.4.23

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.
@@ -893,7 +893,7 @@ const SelectMenu = qwik.component$((props) => {
893
893
  class: "flex flex-col",
894
894
  children: [
895
895
  /* @__PURE__ */ jsxRuntime.jsx("label", {
896
- for: props.id,
896
+ for: props.id ? `${props.id}-dropdown` : void 0,
897
897
  class: "pb-1 text-lum-text select-none",
898
898
  children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
899
899
  }),
@@ -942,6 +942,7 @@ const SelectMenuRaw = qwik.component$(({ values, class: Class, panelClass = "lum
942
942
  })
943
943
  }),
944
944
  /* @__PURE__ */ jsxRuntime.jsxs(Dropdown, {
945
+ id: props.id ? `${props.id}-dropdown` : void 0,
945
946
  opened: store.opened,
946
947
  class: {
947
948
  "w-full": true,
@@ -891,7 +891,7 @@ const SelectMenu = component$((props) => {
891
891
  class: "flex flex-col",
892
892
  children: [
893
893
  /* @__PURE__ */ jsx("label", {
894
- for: props.id,
894
+ for: props.id ? `${props.id}-dropdown` : void 0,
895
895
  class: "pb-1 text-lum-text select-none",
896
896
  children: /* @__PURE__ */ jsx(Slot, {})
897
897
  }),
@@ -940,6 +940,7 @@ const SelectMenuRaw = component$(({ values, class: Class, panelClass = "lum-bg-l
940
940
  })
941
941
  }),
942
942
  /* @__PURE__ */ jsxs(Dropdown, {
943
+ id: props.id ? `${props.id}-dropdown` : void 0,
943
944
  opened: store.opened,
944
945
  class: {
945
946
  "w-full": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminescent/ui-qwik",
3
- "version": "6.4.22",
3
+ "version": "6.4.23",
4
4
  "description": "Luminescent UI library - Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",
@@ -50,7 +50,7 @@
50
50
  "vite-tsconfig-paths": "^6.0.3"
51
51
  },
52
52
  "peerDependencies": {
53
- "@luminescent/ui": "6.4.22"
53
+ "@luminescent/ui": "6.4.23"
54
54
  },
55
55
  "scripts": {
56
56
  "build": "qwik build",