cr-ui-lib 1.1.76 → 1.1.78
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 +11 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -881,7 +881,16 @@ var SimpleCard = ({
|
|
|
881
881
|
};
|
|
882
882
|
var SimpleCard_default = SimpleCard;
|
|
883
883
|
var Label = ({ title, classNames }) => {
|
|
884
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
884
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
885
|
+
"p",
|
|
886
|
+
{
|
|
887
|
+
className: tailwindMerge.twMerge(
|
|
888
|
+
"text-[14px] font-semibold tracking-normal antialiased",
|
|
889
|
+
classNames
|
|
890
|
+
),
|
|
891
|
+
children: title
|
|
892
|
+
}
|
|
893
|
+
);
|
|
885
894
|
};
|
|
886
895
|
var Label_default = Label;
|
|
887
896
|
chart_js.Chart.register(
|
|
@@ -3208,7 +3217,7 @@ var MultipleAutoSuggestionInput = ({
|
|
|
3208
3217
|
"ml-1 text-gray-500 hover:text-gray-700 bg-white",
|
|
3209
3218
|
removeIconClass
|
|
3210
3219
|
),
|
|
3211
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3220
|
+
children: removeIcon ? removeIcon : /* @__PURE__ */ jsxRuntime.jsx(
|
|
3212
3221
|
"svg",
|
|
3213
3222
|
{
|
|
3214
3223
|
xmlns: "http://www.w3.org/2000/svg",
|