@luminescent/ui-qwik 4.0.2 → 4.1.0
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 +3 -3
- package/lib/index.qwik.mjs +3 -3
- package/package.json +2 -2
package/lib/index.qwik.cjs
CHANGED
|
@@ -741,7 +741,7 @@ const SelectMenuRaw = qwik.component$(({ id, values, class: Class, customDropdow
|
|
|
741
741
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
742
742
|
id: `lui-${id}-opts`,
|
|
743
743
|
class: {
|
|
744
|
-
"lum-bg-
|
|
744
|
+
"lum-bg-lum-input-bg lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all": true
|
|
745
745
|
},
|
|
746
746
|
children: [
|
|
747
747
|
values?.map(({ name, value }, i) => {
|
|
@@ -797,7 +797,7 @@ const Menu = qwik.component$(({ size, ...props }) => {
|
|
|
797
797
|
]
|
|
798
798
|
});
|
|
799
799
|
});
|
|
800
|
-
const Nav = qwik.component$(({ fixed, floating, nohamburger, colorClass = "lum-bg-
|
|
800
|
+
const Nav = qwik.component$(({ fixed, floating, nohamburger, colorClass = "lum-bg-lum-card-bg", ...props }) => {
|
|
801
801
|
const menu = qwik.useSignal(false);
|
|
802
802
|
return /* @__PURE__ */ jsxRuntime.jsxs("nav", {
|
|
803
803
|
...props,
|
|
@@ -1020,7 +1020,7 @@ const Toggle = qwik.component$(({ checkbox, round, label, ...props }) => {
|
|
|
1020
1020
|
"rounded-full after:rounded-full": round,
|
|
1021
1021
|
"w-12 peer-checked:after:translate-x-full": !checkbox,
|
|
1022
1022
|
"w-7 after:opacity-0 peer-checked:after:opacity-100": checkbox,
|
|
1023
|
-
"lum-toggle-bg-
|
|
1023
|
+
"lum-toggle-bg-lum-input-bg peer-checked:lum-toggle-bg-lum-accent": true,
|
|
1024
1024
|
[props.class ?? ""]: !!props.class
|
|
1025
1025
|
}
|
|
1026
1026
|
})
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -739,7 +739,7 @@ const SelectMenuRaw = component$(({ id, values, class: Class, customDropdown, ho
|
|
|
739
739
|
children: /* @__PURE__ */ jsxs("div", {
|
|
740
740
|
id: `lui-${id}-opts`,
|
|
741
741
|
class: {
|
|
742
|
-
"lum-bg-
|
|
742
|
+
"lum-bg-lum-input-bg lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all": true
|
|
743
743
|
},
|
|
744
744
|
children: [
|
|
745
745
|
values?.map(({ name, value }, i) => {
|
|
@@ -795,7 +795,7 @@ const Menu = component$(({ size, ...props }) => {
|
|
|
795
795
|
]
|
|
796
796
|
});
|
|
797
797
|
});
|
|
798
|
-
const Nav = component$(({ fixed, floating, nohamburger, colorClass = "lum-bg-
|
|
798
|
+
const Nav = component$(({ fixed, floating, nohamburger, colorClass = "lum-bg-lum-card-bg", ...props }) => {
|
|
799
799
|
const menu = useSignal(false);
|
|
800
800
|
return /* @__PURE__ */ jsxs("nav", {
|
|
801
801
|
...props,
|
|
@@ -1018,7 +1018,7 @@ const Toggle = component$(({ checkbox, round, label, ...props }) => {
|
|
|
1018
1018
|
"rounded-full after:rounded-full": round,
|
|
1019
1019
|
"w-12 peer-checked:after:translate-x-full": !checkbox,
|
|
1020
1020
|
"w-7 after:opacity-0 peer-checked:after:opacity-100": checkbox,
|
|
1021
|
-
"lum-toggle-bg-
|
|
1021
|
+
"lum-toggle-bg-lum-input-bg peer-checked:lum-toggle-bg-lum-accent": true,
|
|
1022
1022
|
[props.class ?? ""]: !!props.class
|
|
1023
1023
|
}
|
|
1024
1024
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luminescent/ui-qwik",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
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.0
|
|
55
|
+
"@luminescent/ui": "4.1.0"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "qwik build",
|