@ostack.tech/ui 0.8.1 → 0.8.2
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/ostack-ui.js +4 -4
- package/dist/ostack-ui.js.map +1 -1
- package/package.json +1 -1
package/dist/ostack-ui.js
CHANGED
|
@@ -1561,14 +1561,14 @@ const DialogTitle = forwardRef(function DialogTitle2({
|
|
|
1561
1561
|
}, forwardedRef) {
|
|
1562
1562
|
const prefix = usePrefix();
|
|
1563
1563
|
const As = asChild ? Slot : as;
|
|
1564
|
-
return /* @__PURE__ */ jsx(Dialog$1.Title, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
1564
|
+
return /* @__PURE__ */ jsx(CardTitle, { asChild: true, children: /* @__PURE__ */ jsx(Dialog$1.Title, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
1565
1565
|
As,
|
|
1566
1566
|
{
|
|
1567
1567
|
className: cx(prefix("dialog__title"), className),
|
|
1568
1568
|
...otherProps,
|
|
1569
1569
|
ref: forwardedRef
|
|
1570
1570
|
}
|
|
1571
|
-
) });
|
|
1571
|
+
) }) });
|
|
1572
1572
|
});
|
|
1573
1573
|
const DialogTrigger = forwardRef(function DialogTrigger2(props, forwardedRef) {
|
|
1574
1574
|
return /* @__PURE__ */ jsx(Dialog$1.Trigger, { ...props, asChild: true, ref: forwardedRef });
|
|
@@ -1664,14 +1664,14 @@ const AlertDialogTitle = forwardRef(function AlertDialogTitle2({
|
|
|
1664
1664
|
}, forwardedRef) {
|
|
1665
1665
|
const prefix = usePrefix();
|
|
1666
1666
|
const As = asChild ? Slot : as;
|
|
1667
|
-
return /* @__PURE__ */ jsx(AlertDialog$1.Title, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
1667
|
+
return /* @__PURE__ */ jsx(CardTitle, { asChild: true, children: /* @__PURE__ */ jsx(AlertDialog$1.Title, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
1668
1668
|
As,
|
|
1669
1669
|
{
|
|
1670
1670
|
className: cx(prefix("dialog__title"), className),
|
|
1671
1671
|
...otherProps,
|
|
1672
1672
|
ref: forwardedRef
|
|
1673
1673
|
}
|
|
1674
|
-
) });
|
|
1674
|
+
) }) });
|
|
1675
1675
|
});
|
|
1676
1676
|
const AlertDialogTrigger = forwardRef(function AlertDialogTrigger2(props, forwardedRef) {
|
|
1677
1677
|
return /* @__PURE__ */ jsx(AlertDialog$1.Trigger, { ...props, asChild: true, ref: forwardedRef });
|