cr-ui-lib 1.1.73 → 1.1.74
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 +2 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -862,17 +862,16 @@ var SimpleCard = ({
|
|
|
862
862
|
!hasDaysOption && /* @__PURE__ */ jsxRuntime.jsx(
|
|
863
863
|
"span",
|
|
864
864
|
{
|
|
865
|
-
className: "text-[12px] font-normal",
|
|
865
|
+
className: "text-[12px] font-normal antialiased tracking-normal",
|
|
866
866
|
style: {
|
|
867
867
|
color: "#757575",
|
|
868
|
-
letterSpacing: "0.5px",
|
|
869
868
|
lineHeight: 1
|
|
870
869
|
},
|
|
871
870
|
children: footerText
|
|
872
871
|
}
|
|
873
872
|
)
|
|
874
873
|
] }),
|
|
875
|
-
hasDaysOption && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex gap-[4px] text-[12px] font-normal text-center items-center", children: options.map((label, index, array) => /* @__PURE__ */ jsxRuntime.jsxs(React__default.default.Fragment, { children: [
|
|
874
|
+
hasDaysOption && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex gap-[4px] text-[12px] font-normal text-center items-center antialiased tracking-normal", children: options.map((label, index, array) => /* @__PURE__ */ jsxRuntime.jsxs(React__default.default.Fragment, { children: [
|
|
876
875
|
renderDayOption(label),
|
|
877
876
|
index < array.length - 1 && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-[#757575]", children: "|" })
|
|
878
877
|
] }, label)) })
|