@luminescent/ui 0.16.4 → 0.16.6
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
CHANGED
|
@@ -1467,7 +1467,7 @@ const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl
|
|
|
1467
1467
|
let Component = /* @__PURE__ */ qwik._jsxC(jsxRuntime.Fragment, {
|
|
1468
1468
|
children: /* @__PURE__ */ qwik._jsxQ("h2", {
|
|
1469
1469
|
class: {
|
|
1470
|
-
"flex gap-2
|
|
1470
|
+
"flex gap-2 group items-center font-bold text-xl sm:text-2xl whitespace-nowrap text-white": true,
|
|
1471
1471
|
...props1.class
|
|
1472
1472
|
}
|
|
1473
1473
|
}, null, [
|
|
@@ -1501,7 +1501,7 @@ const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl
|
|
|
1501
1501
|
}, 1, "dL_4");
|
|
1502
1502
|
if (props.subheader)
|
|
1503
1503
|
Component = /* @__PURE__ */ qwik._jsxQ("div", null, {
|
|
1504
|
-
class: "flex flex-
|
|
1504
|
+
class: "flex flex-col gap-1"
|
|
1505
1505
|
}, [
|
|
1506
1506
|
Component,
|
|
1507
1507
|
/* @__PURE__ */ qwik._jsxQ("h3", null, {
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1465,7 +1465,7 @@ const Header = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
1465
1465
|
let Component = /* @__PURE__ */ _jsxC(Fragment, {
|
|
1466
1466
|
children: /* @__PURE__ */ _jsxQ("h2", {
|
|
1467
1467
|
class: {
|
|
1468
|
-
"flex gap-2
|
|
1468
|
+
"flex gap-2 group items-center font-bold text-xl sm:text-2xl whitespace-nowrap text-white": true,
|
|
1469
1469
|
...props1.class
|
|
1470
1470
|
}
|
|
1471
1471
|
}, null, [
|
|
@@ -1499,7 +1499,7 @@ const Header = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
1499
1499
|
}, 1, "dL_4");
|
|
1500
1500
|
if (props.subheader)
|
|
1501
1501
|
Component = /* @__PURE__ */ _jsxQ("div", null, {
|
|
1502
|
-
class: "flex flex-
|
|
1502
|
+
class: "flex flex-col gap-1"
|
|
1503
1503
|
}, [
|
|
1504
1504
|
Component,
|
|
1505
1505
|
/* @__PURE__ */ _jsxQ("h3", null, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PropsOf } from '@builder.io/qwik';
|
|
2
2
|
import { InputColorClasses } from './TextInput';
|
|
3
|
-
export interface TextAreaRawProps extends Omit<PropsOf<'textarea'>, 'class' | '
|
|
3
|
+
export interface TextAreaRawProps extends Omit<PropsOf<'textarea'>, 'class' | 'onClick$'> {
|
|
4
4
|
class?: {
|
|
5
5
|
[key: string]: boolean;
|
|
6
6
|
};
|