@luminescent/ui 0.7.0 → 0.7.2
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 -2
- package/lib/index.qwik.mjs +3 -2
- package/package.json +1 -1
package/lib/index.qwik.cjs
CHANGED
|
@@ -216,6 +216,7 @@ const Card = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((
|
|
|
216
216
|
[cardColorClasses[props.color ?? "darkgray"].card.bg_blobs]: props.blobs,
|
|
217
217
|
[cardColorClasses[props.color ?? "darkgray"].card.hover + " hover:shadow-lg"]: props.hover,
|
|
218
218
|
[cardColorClasses[props.color ?? "darkgray"].card.click + " active:scale-[99%] cursor-pointer select-none"]: props.hover == "clickable",
|
|
219
|
+
"h-full": props1.href,
|
|
219
220
|
"flex-col": !props.row,
|
|
220
221
|
"flex-row items-center": props.row,
|
|
221
222
|
...props1.class
|
|
@@ -998,7 +999,7 @@ const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl
|
|
|
998
999
|
qwik._jsxBranch();
|
|
999
1000
|
let Component = /* @__PURE__ */ qwik._jsxC(jsxRuntime.Fragment, {
|
|
1000
1001
|
children: /* @__PURE__ */ qwik._jsxQ("h2", null, {
|
|
1001
|
-
class: "flex items-center font-bold text-2xl"
|
|
1002
|
+
class: "flex flex-1 items-center font-bold text-2xl"
|
|
1002
1003
|
}, [
|
|
1003
1004
|
props.id && /* @__PURE__ */ qwik._jsxC(Anchor, {
|
|
1004
1005
|
get id() {
|
|
@@ -1019,7 +1020,7 @@ const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl
|
|
|
1019
1020
|
}, [
|
|
1020
1021
|
Component,
|
|
1021
1022
|
/* @__PURE__ */ qwik._jsxQ("h3", null, {
|
|
1022
|
-
class: "flex items-center text-gray-400"
|
|
1023
|
+
class: "flex flex-1 items-center text-gray-400 text-sm"
|
|
1023
1024
|
}, qwik._fnSignal((p0) => p0.subheader, [
|
|
1024
1025
|
props
|
|
1025
1026
|
], "p0.subheader"), 3, null)
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -214,6 +214,7 @@ const Card = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
214
214
|
[cardColorClasses[props.color ?? "darkgray"].card.bg_blobs]: props.blobs,
|
|
215
215
|
[cardColorClasses[props.color ?? "darkgray"].card.hover + " hover:shadow-lg"]: props.hover,
|
|
216
216
|
[cardColorClasses[props.color ?? "darkgray"].card.click + " active:scale-[99%] cursor-pointer select-none"]: props.hover == "clickable",
|
|
217
|
+
"h-full": props1.href,
|
|
217
218
|
"flex-col": !props.row,
|
|
218
219
|
"flex-row items-center": props.row,
|
|
219
220
|
...props1.class
|
|
@@ -996,7 +997,7 @@ const Header = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
996
997
|
_jsxBranch();
|
|
997
998
|
let Component = /* @__PURE__ */ _jsxC(Fragment, {
|
|
998
999
|
children: /* @__PURE__ */ _jsxQ("h2", null, {
|
|
999
|
-
class: "flex items-center font-bold text-2xl"
|
|
1000
|
+
class: "flex flex-1 items-center font-bold text-2xl"
|
|
1000
1001
|
}, [
|
|
1001
1002
|
props.id && /* @__PURE__ */ _jsxC(Anchor, {
|
|
1002
1003
|
get id() {
|
|
@@ -1017,7 +1018,7 @@ const Header = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
1017
1018
|
}, [
|
|
1018
1019
|
Component,
|
|
1019
1020
|
/* @__PURE__ */ _jsxQ("h3", null, {
|
|
1020
|
-
class: "flex items-center text-gray-400"
|
|
1021
|
+
class: "flex flex-1 items-center text-gray-400 text-sm"
|
|
1021
1022
|
}, _fnSignal((p0) => p0.subheader, [
|
|
1022
1023
|
props
|
|
1023
1024
|
], "p0.subheader"), 3, null)
|