@julseb-lib/react 0.1.69 → 0.1.71
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/dist/index.cjs +5 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -12
- package/dist/index.d.ts +15 -12
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +3 -1
- package/dist/types/components-props.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -66648,9 +66648,6 @@ var Fieldset = ({
|
|
|
66648
66648
|
className,
|
|
66649
66649
|
ref,
|
|
66650
66650
|
children,
|
|
66651
|
-
label,
|
|
66652
|
-
labelComment,
|
|
66653
|
-
helper,
|
|
66654
66651
|
helperBottom,
|
|
66655
66652
|
id,
|
|
66656
66653
|
validation,
|
|
@@ -66662,9 +66659,6 @@ var Fieldset = ({
|
|
|
66662
66659
|
return /* @__PURE__ */ (0, import_jsx_runtime321.jsx)(
|
|
66663
66660
|
InputContainer,
|
|
66664
66661
|
{
|
|
66665
|
-
label,
|
|
66666
|
-
labelComment,
|
|
66667
|
-
helper,
|
|
66668
66662
|
helperBottom,
|
|
66669
66663
|
id,
|
|
66670
66664
|
validation,
|
|
@@ -66817,7 +66811,7 @@ var ListGroupItem = ({
|
|
|
66817
66811
|
{
|
|
66818
66812
|
ref,
|
|
66819
66813
|
className: clsx(
|
|
66820
|
-
"flex justify-between gap-2 p-2 w-full",
|
|
66814
|
+
"flex justify-between gap-2 bg-background p-2 w-full",
|
|
66821
66815
|
!noSeparator && "[&:not(:last-child)]:border-b [&:not(:last-child)]:border-b-gray-200",
|
|
66822
66816
|
"disabled:bg-gray-200 disabled:text-gray-500",
|
|
66823
66817
|
"list-group-item",
|
|
@@ -66905,6 +66899,8 @@ var Breadcrumbs = ({
|
|
|
66905
66899
|
ref,
|
|
66906
66900
|
children,
|
|
66907
66901
|
separator = "/",
|
|
66902
|
+
accentColor = "primary",
|
|
66903
|
+
textColor = "font",
|
|
66908
66904
|
...rest
|
|
66909
66905
|
}) => {
|
|
66910
66906
|
const Element = element;
|
|
@@ -66915,6 +66911,8 @@ var Breadcrumbs = ({
|
|
|
66915
66911
|
ref,
|
|
66916
66912
|
className: clsx(
|
|
66917
66913
|
"flex flex-wrap items-center gap-2",
|
|
66914
|
+
genLinkColor[accentColor],
|
|
66915
|
+
genTextAllColor[textColor],
|
|
66918
66916
|
"breadcrumbs",
|
|
66919
66917
|
className
|
|
66920
66918
|
),
|