@luminescent/ui-qwik 3.0.2 → 3.0.4
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 +6 -0
- package/lib/index.qwik.mjs +6 -0
- package/package.json +2 -2
package/lib/index.qwik.cjs
CHANGED
|
@@ -586,6 +586,7 @@ const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
|
|
|
586
586
|
}),
|
|
587
587
|
colors.map((color, i) => {
|
|
588
588
|
return /* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
589
|
+
type: "button",
|
|
589
590
|
class: {
|
|
590
591
|
"lum-btn h-[1.6rem] w-[1.6rem] border-2 border-white/30 p-0 hover:border-white": true
|
|
591
592
|
},
|
|
@@ -599,6 +600,7 @@ const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
|
|
|
599
600
|
}, i);
|
|
600
601
|
}),
|
|
601
602
|
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
603
|
+
type: "button",
|
|
602
604
|
class: "lum-btn h-[1.6rem] w-[1.6rem] p-0.5",
|
|
603
605
|
onClick$: async () => {
|
|
604
606
|
const color = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
|
|
@@ -633,6 +635,7 @@ const ChevronDown = qwik.component$(({ size, ...props }) => {
|
|
|
633
635
|
});
|
|
634
636
|
const Dropdown = qwik.component$(({ class: Class, hover, opened, ...props }) => {
|
|
635
637
|
return /* @__PURE__ */ jsxRuntime.jsxs("button", {
|
|
638
|
+
type: "button",
|
|
636
639
|
class: {
|
|
637
640
|
"lum-btn": true,
|
|
638
641
|
...Class
|
|
@@ -744,6 +747,7 @@ const SelectMenuRaw = qwik.component$(({ id, values, class: Class, customDropdow
|
|
|
744
747
|
children: [
|
|
745
748
|
values?.map(({ name, value }, i) => {
|
|
746
749
|
return /* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
750
|
+
type: "button",
|
|
747
751
|
class: {
|
|
748
752
|
"lum-btn lum-bg-transparent": true
|
|
749
753
|
},
|
|
@@ -947,6 +951,7 @@ const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, val
|
|
|
947
951
|
},
|
|
948
952
|
children: [
|
|
949
953
|
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
954
|
+
type: "button",
|
|
950
955
|
class: {
|
|
951
956
|
"lum-btn p-2": true
|
|
952
957
|
},
|
|
@@ -973,6 +978,7 @@ const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, val
|
|
|
973
978
|
}
|
|
974
979
|
}),
|
|
975
980
|
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
981
|
+
type: "button",
|
|
976
982
|
class: {
|
|
977
983
|
"lum-btn p-2": true
|
|
978
984
|
},
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -584,6 +584,7 @@ const ColorPicker = component$(({ id, value = "#000000", colors = [
|
|
|
584
584
|
}),
|
|
585
585
|
colors.map((color, i) => {
|
|
586
586
|
return /* @__PURE__ */ jsx("button", {
|
|
587
|
+
type: "button",
|
|
587
588
|
class: {
|
|
588
589
|
"lum-btn h-[1.6rem] w-[1.6rem] border-2 border-white/30 p-0 hover:border-white": true
|
|
589
590
|
},
|
|
@@ -597,6 +598,7 @@ const ColorPicker = component$(({ id, value = "#000000", colors = [
|
|
|
597
598
|
}, i);
|
|
598
599
|
}),
|
|
599
600
|
/* @__PURE__ */ jsx("button", {
|
|
601
|
+
type: "button",
|
|
600
602
|
class: "lum-btn h-[1.6rem] w-[1.6rem] p-0.5",
|
|
601
603
|
onClick$: async () => {
|
|
602
604
|
const color = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
|
|
@@ -631,6 +633,7 @@ const ChevronDown = component$(({ size, ...props }) => {
|
|
|
631
633
|
});
|
|
632
634
|
const Dropdown = component$(({ class: Class, hover, opened, ...props }) => {
|
|
633
635
|
return /* @__PURE__ */ jsxs("button", {
|
|
636
|
+
type: "button",
|
|
634
637
|
class: {
|
|
635
638
|
"lum-btn": true,
|
|
636
639
|
...Class
|
|
@@ -742,6 +745,7 @@ const SelectMenuRaw = component$(({ id, values, class: Class, customDropdown, ho
|
|
|
742
745
|
children: [
|
|
743
746
|
values?.map(({ name, value }, i) => {
|
|
744
747
|
return /* @__PURE__ */ jsx("button", {
|
|
748
|
+
type: "button",
|
|
745
749
|
class: {
|
|
746
750
|
"lum-btn lum-bg-transparent": true
|
|
747
751
|
},
|
|
@@ -945,6 +949,7 @@ const NumberInputRaw = component$(({ input, onDecrement$, onIncrement$, value =
|
|
|
945
949
|
},
|
|
946
950
|
children: [
|
|
947
951
|
/* @__PURE__ */ jsx("button", {
|
|
952
|
+
type: "button",
|
|
948
953
|
class: {
|
|
949
954
|
"lum-btn p-2": true
|
|
950
955
|
},
|
|
@@ -971,6 +976,7 @@ const NumberInputRaw = component$(({ input, onDecrement$, onIncrement$, value =
|
|
|
971
976
|
}
|
|
972
977
|
}),
|
|
973
978
|
/* @__PURE__ */ jsx("button", {
|
|
979
|
+
type: "button",
|
|
974
980
|
class: {
|
|
975
981
|
"lum-btn p-2": true
|
|
976
982
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui-qwik",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
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": "3.0.
|
|
55
|
+
"@luminescent/ui": "3.0.4"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "qwik build",
|