@gobolt/genesis 0.9.0 → 0.9.1
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 +10 -2
- package/dist/index.js +10 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -82204,7 +82204,7 @@ const ScrollableContent$1 = styled.div`
|
|
|
82204
82204
|
`;
|
|
82205
82205
|
const MODAL_WIDTHS = {
|
|
82206
82206
|
sm: 400,
|
|
82207
|
-
md:
|
|
82207
|
+
md: 540,
|
|
82208
82208
|
lg: 720
|
|
82209
82209
|
};
|
|
82210
82210
|
const Modal = ({
|
|
@@ -82260,7 +82260,15 @@ const Modal = ({
|
|
|
82260
82260
|
),
|
|
82261
82261
|
description && /* @__PURE__ */ jsxRuntime.jsx(Typography, { fontSize: "16px", fontWeight: 400, color: textColor, children: description })
|
|
82262
82262
|
] }),
|
|
82263
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
82263
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
82264
|
+
Button$1,
|
|
82265
|
+
{
|
|
82266
|
+
icon: /* @__PURE__ */ jsxRuntime.jsx(HiX, { size: 24 }),
|
|
82267
|
+
themeType: "utility",
|
|
82268
|
+
onClick: onClose,
|
|
82269
|
+
style: { padding: "4px", height: "fit-content" }
|
|
82270
|
+
}
|
|
82271
|
+
)
|
|
82264
82272
|
]
|
|
82265
82273
|
}
|
|
82266
82274
|
)
|
package/dist/index.js
CHANGED
|
@@ -82186,7 +82186,7 @@ const ScrollableContent$1 = styled.div`
|
|
|
82186
82186
|
`;
|
|
82187
82187
|
const MODAL_WIDTHS = {
|
|
82188
82188
|
sm: 400,
|
|
82189
|
-
md:
|
|
82189
|
+
md: 540,
|
|
82190
82190
|
lg: 720
|
|
82191
82191
|
};
|
|
82192
82192
|
const Modal = ({
|
|
@@ -82242,7 +82242,15 @@ const Modal = ({
|
|
|
82242
82242
|
),
|
|
82243
82243
|
description && /* @__PURE__ */ jsx(Typography, { fontSize: "16px", fontWeight: 400, color: textColor, children: description })
|
|
82244
82244
|
] }),
|
|
82245
|
-
/* @__PURE__ */ jsx(
|
|
82245
|
+
/* @__PURE__ */ jsx(
|
|
82246
|
+
Button$1,
|
|
82247
|
+
{
|
|
82248
|
+
icon: /* @__PURE__ */ jsx(HiX, { size: 24 }),
|
|
82249
|
+
themeType: "utility",
|
|
82250
|
+
onClick: onClose,
|
|
82251
|
+
style: { padding: "4px", height: "fit-content" }
|
|
82252
|
+
}
|
|
82253
|
+
)
|
|
82246
82254
|
]
|
|
82247
82255
|
}
|
|
82248
82256
|
)
|