catchup-library-web 2.5.4 → 2.5.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/dist/index.js
CHANGED
|
@@ -980,7 +980,7 @@ var CancelButton = ({
|
|
|
980
980
|
primaryColor: "#55777f",
|
|
981
981
|
secondaryColor: "#55777f"
|
|
982
982
|
}
|
|
983
|
-
) : /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-row justify-center items-center gap-x-2", children: [
|
|
983
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "flex flex-row justify-center items-center gap-x-2 px-4", children: [
|
|
984
984
|
iconPosition === "left" ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
985
985
|
BaseImage_default,
|
|
986
986
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -747,7 +747,7 @@ var CancelButton = ({
|
|
|
747
747
|
primaryColor: "#55777f",
|
|
748
748
|
secondaryColor: "#55777f"
|
|
749
749
|
}
|
|
750
|
-
) : /* @__PURE__ */ jsxs7("div", { className: "flex flex-row justify-center items-center gap-x-2", children: [
|
|
750
|
+
) : /* @__PURE__ */ jsxs7("div", { className: "flex flex-row justify-center items-center gap-x-2 px-4", children: [
|
|
751
751
|
iconPosition === "left" ? /* @__PURE__ */ jsx10(
|
|
752
752
|
BaseImage_default,
|
|
753
753
|
{
|
package/package.json
CHANGED
|
@@ -50,8 +50,8 @@ const CancelButton = ({
|
|
|
50
50
|
loading
|
|
51
51
|
? ""
|
|
52
52
|
: disabled
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
? "opacity-50"
|
|
54
|
+
: "hover:bg-catchup-gray-400 hover:text-catchup-white hover:border-catchup-gray-400 active:bg-catchup-gray-500 active:border-catchup-gray-500 active:text-catchup-white"
|
|
55
55
|
} transition duration-300 ${currentWidthClassName} ${currentHeightClassName}`}
|
|
56
56
|
onClick={internalOnClick}
|
|
57
57
|
onMouseEnter={() => {
|
|
@@ -69,7 +69,7 @@ const CancelButton = ({
|
|
|
69
69
|
secondaryColor="#55777f"
|
|
70
70
|
/>
|
|
71
71
|
) : (
|
|
72
|
-
<div className="flex flex-row justify-center items-center gap-x-2">
|
|
72
|
+
<div className="flex flex-row justify-center items-center gap-x-2 px-4">
|
|
73
73
|
{iconPosition === "left" ? (
|
|
74
74
|
<BaseImage
|
|
75
75
|
src={`${
|