@luminescent/ui-qwik 4.1.0 → 4.1.1
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.
- package/lib/index.qwik.cjs +5 -5
- package/lib/index.qwik.mjs +5 -5
- package/package.json +2 -2
package/lib/index.qwik.cjs
CHANGED
|
@@ -606,7 +606,7 @@ const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
|
|
|
606
606
|
await setColor(color);
|
|
607
607
|
},
|
|
608
608
|
children: /* @__PURE__ */ jsxRuntime.jsx(Shuffle, {
|
|
609
|
-
class: "p-0.5 pl-0.5 text-
|
|
609
|
+
class: "p-0.5 pl-0.5 text-lum-text"
|
|
610
610
|
})
|
|
611
611
|
})
|
|
612
612
|
]
|
|
@@ -663,7 +663,7 @@ const SelectMenu = qwik.component$((props) => {
|
|
|
663
663
|
children: [
|
|
664
664
|
/* @__PURE__ */ jsxRuntime.jsx("label", {
|
|
665
665
|
for: props.id,
|
|
666
|
-
class: "pb-1 text-
|
|
666
|
+
class: "pb-1 text-lum-text select-none",
|
|
667
667
|
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
|
|
668
668
|
}),
|
|
669
669
|
/* @__PURE__ */ jsxRuntime.jsxs(SelectMenuRaw, {
|
|
@@ -923,7 +923,7 @@ const NumberInput = qwik.component$((props) => {
|
|
|
923
923
|
children: [
|
|
924
924
|
/* @__PURE__ */ jsxRuntime.jsx("label", {
|
|
925
925
|
for: props.id,
|
|
926
|
-
class: "pb-1 text-
|
|
926
|
+
class: "pb-1 text-lum-text select-none",
|
|
927
927
|
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
|
|
928
928
|
}),
|
|
929
929
|
/* @__PURE__ */ jsxRuntime.jsx(NumberInputRaw, {
|
|
@@ -946,7 +946,7 @@ const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, val
|
|
|
946
946
|
`);
|
|
947
947
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
948
948
|
class: {
|
|
949
|
-
"flex touch-manipulation gap-1 text-
|
|
949
|
+
"flex touch-manipulation gap-1 text-lum-text": true
|
|
950
950
|
},
|
|
951
951
|
children: [
|
|
952
952
|
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
@@ -1028,7 +1028,7 @@ const Toggle = qwik.component$(({ checkbox, round, label, ...props }) => {
|
|
|
1028
1028
|
}),
|
|
1029
1029
|
label && /* @__PURE__ */ jsxRuntime.jsx("label", {
|
|
1030
1030
|
for: props.id,
|
|
1031
|
-
class: "flex gap-2 text-
|
|
1031
|
+
class: "flex gap-2 text-lum-text select-none",
|
|
1032
1032
|
children: label
|
|
1033
1033
|
})
|
|
1034
1034
|
]
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -604,7 +604,7 @@ const ColorPicker = component$(({ id, value = "#000000", colors = [
|
|
|
604
604
|
await setColor(color);
|
|
605
605
|
},
|
|
606
606
|
children: /* @__PURE__ */ jsx(Shuffle, {
|
|
607
|
-
class: "p-0.5 pl-0.5 text-
|
|
607
|
+
class: "p-0.5 pl-0.5 text-lum-text"
|
|
608
608
|
})
|
|
609
609
|
})
|
|
610
610
|
]
|
|
@@ -661,7 +661,7 @@ const SelectMenu = component$((props) => {
|
|
|
661
661
|
children: [
|
|
662
662
|
/* @__PURE__ */ jsx("label", {
|
|
663
663
|
for: props.id,
|
|
664
|
-
class: "pb-1 text-
|
|
664
|
+
class: "pb-1 text-lum-text select-none",
|
|
665
665
|
children: /* @__PURE__ */ jsx(Slot, {})
|
|
666
666
|
}),
|
|
667
667
|
/* @__PURE__ */ jsxs(SelectMenuRaw, {
|
|
@@ -921,7 +921,7 @@ const NumberInput = component$((props) => {
|
|
|
921
921
|
children: [
|
|
922
922
|
/* @__PURE__ */ jsx("label", {
|
|
923
923
|
for: props.id,
|
|
924
|
-
class: "pb-1 text-
|
|
924
|
+
class: "pb-1 text-lum-text select-none",
|
|
925
925
|
children: /* @__PURE__ */ jsx(Slot, {})
|
|
926
926
|
}),
|
|
927
927
|
/* @__PURE__ */ jsx(NumberInputRaw, {
|
|
@@ -944,7 +944,7 @@ const NumberInputRaw = component$(({ input, onDecrement$, onIncrement$, value =
|
|
|
944
944
|
`);
|
|
945
945
|
return /* @__PURE__ */ jsxs("div", {
|
|
946
946
|
class: {
|
|
947
|
-
"flex touch-manipulation gap-1 text-
|
|
947
|
+
"flex touch-manipulation gap-1 text-lum-text": true
|
|
948
948
|
},
|
|
949
949
|
children: [
|
|
950
950
|
/* @__PURE__ */ jsx("button", {
|
|
@@ -1026,7 +1026,7 @@ const Toggle = component$(({ checkbox, round, label, ...props }) => {
|
|
|
1026
1026
|
}),
|
|
1027
1027
|
label && /* @__PURE__ */ jsx("label", {
|
|
1028
1028
|
for: props.id,
|
|
1029
|
-
class: "flex gap-2 text-
|
|
1029
|
+
class: "flex gap-2 text-lum-text select-none",
|
|
1030
1030
|
children: label
|
|
1031
1031
|
})
|
|
1032
1032
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui-qwik",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Luminescent UI library",
|
|
5
5
|
"main": "./lib/index.qwik.mjs",
|
|
6
6
|
"qwik": "./lib/index.qwik.mjs",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"vite-tsconfig-paths": "^5.1.4"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@luminescent/ui": "4.1.
|
|
55
|
+
"@luminescent/ui": "4.1.1"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "qwik build",
|