@ostack.tech/ui 0.8.0 → 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 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 });
@@ -5823,7 +5823,7 @@ const Input = forwardRef(
5823
5823
  onClick: combineEventHandlers(onClick, handleClick),
5824
5824
  style: { ...cssVars, ...style },
5825
5825
  ...dataAttrs,
5826
- "data-loading": loading,
5826
+ "data-loading": boolDataAttr(loading),
5827
5827
  "data-status": status,
5828
5828
  "data-accent": controlStatusToAccent(status),
5829
5829
  "data-variant": variant,