gridsmith-ui 0.2.6 → 0.2.7
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 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -96769,7 +96769,7 @@ function Alert({ variant, title, children, dismissible, onDismiss, action, class
|
|
|
96769
96769
|
{
|
|
96770
96770
|
role: "alert",
|
|
96771
96771
|
className: cn(
|
|
96772
|
-
"flex items-
|
|
96772
|
+
"flex items-start gap-ds-3 p-ds-4",
|
|
96773
96773
|
"border-[length:var(--ds-border-width)]",
|
|
96774
96774
|
"rounded-[var(--ds-radius-md)]",
|
|
96775
96775
|
"shadow-[var(--ds-shadow-sm)]",
|
|
@@ -96778,7 +96778,7 @@ function Alert({ variant, title, children, dismissible, onDismiss, action, class
|
|
|
96778
96778
|
className
|
|
96779
96779
|
),
|
|
96780
96780
|
children: [
|
|
96781
|
-
/* @__PURE__ */ jsx("div", { className: cn("w-3 h-3 shrink-0 rounded-[var(--ds-radius-sm)]", indicators[variant]) }),
|
|
96781
|
+
/* @__PURE__ */ jsx("div", { className: cn("mt-[0.3125em] w-3 h-3 shrink-0 rounded-[var(--ds-radius-sm)]", indicators[variant]) }),
|
|
96782
96782
|
/* @__PURE__ */ jsxs("div", { className: "flex-1 min-w-0", children: [
|
|
96783
96783
|
/* @__PURE__ */ jsx("p", { className: "text-sm font-[var(--ds-weight-heading)] text-[var(--ds-text-primary)]", children: title }),
|
|
96784
96784
|
children && /* @__PURE__ */ jsx("p", { className: "mt-ds-1 text-xs text-[var(--ds-text-secondary)]", children })
|