cr-ui-lib 1.1.69 → 1.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.js +4 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -558,14 +558,7 @@ var GraphedCard = ({
|
|
|
558
558
|
className: "text-content-2 font-semibold flex",
|
|
559
559
|
style: { fontSize: "12px" },
|
|
560
560
|
children: [
|
|
561
|
-
isCustomTitle ? customTitle : /* @__PURE__ */ jsxRuntime.jsx(
|
|
562
|
-
"span",
|
|
563
|
-
{
|
|
564
|
-
className: "font-semibold",
|
|
565
|
-
style: { letterSpacing: "0.5px" },
|
|
566
|
-
children: title
|
|
567
|
-
}
|
|
568
|
-
),
|
|
561
|
+
isCustomTitle ? customTitle : /* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-semibold antialiased tracking-normal", children: title }),
|
|
569
562
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
570
563
|
"span",
|
|
571
564
|
{
|
|
@@ -600,7 +593,7 @@ var GraphedCard = ({
|
|
|
600
593
|
}
|
|
601
594
|
) }),
|
|
602
595
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: `flex-grow items-center`, children: [
|
|
603
|
-
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-[24px] font-semibold text-gray-900", children: [
|
|
596
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-[24px] font-semibold text-gray-900 antialiased tracking-normal", children: [
|
|
604
597
|
subText == "$" ? "$" : "",
|
|
605
598
|
value.trim(),
|
|
606
599
|
subText == "$" ? "" : subText
|
|
@@ -819,14 +812,7 @@ var SimpleCard = ({
|
|
|
819
812
|
className: "text-content-2 font-semibold flex",
|
|
820
813
|
style: { fontSize: "12px" },
|
|
821
814
|
children: [
|
|
822
|
-
isCustomTitle ? customTitle : /* @__PURE__ */ jsxRuntime.jsx(
|
|
823
|
-
"span",
|
|
824
|
-
{
|
|
825
|
-
className: "font-semibold",
|
|
826
|
-
style: { letterSpacing: "0.5px" },
|
|
827
|
-
children: title
|
|
828
|
-
}
|
|
829
|
-
),
|
|
815
|
+
isCustomTitle ? customTitle : /* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-semibold antialiased tracking-normal", children: title }),
|
|
830
816
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
831
817
|
"span",
|
|
832
818
|
{
|
|
@@ -861,7 +847,7 @@ var SimpleCard = ({
|
|
|
861
847
|
}
|
|
862
848
|
) }),
|
|
863
849
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: `flex-grow items-center`, children: [
|
|
864
|
-
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-[24px] font-semibold text-gray-900", children: [
|
|
850
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-[24px] font-semibold text-gray-900 antialiased tracking-normal", children: [
|
|
865
851
|
subText == "$" ? "$" : "",
|
|
866
852
|
value.trim(),
|
|
867
853
|
subText == "$" ? "" : subText
|