eai-frontend-components 2.0.65 → 2.0.66

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.d.ts CHANGED
@@ -268,7 +268,7 @@ declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
268
268
  ref?: React$1.Ref<HTMLDivElement>;
269
269
  } & {
270
270
  asChild?: boolean;
271
- }, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "onSelect" | "value" | "disabled"> & {
271
+ }, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "onSelect" | "disabled" | "value"> & {
272
272
  disabled?: boolean;
273
273
  onSelect?: (value: string) => void;
274
274
  value?: string;
package/dist/index.esm.js CHANGED
@@ -542,7 +542,7 @@ const DrawerOverlay = React$1.forwardRef(({ className, ...props }, ref) => jsx(D
542
542
  DrawerOverlay.displayName = Drawer$1.Overlay.displayName;
543
543
  const DrawerContent = React$1.forwardRef(({ className, children, ...props }, ref) => (jsxs(DrawerPortal, { children: [jsx(DrawerOverlay, {}), jsxs(Drawer$1.Content, { ref: ref, className: cn('fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background', className), ...props, children: [jsx("div", { className: 'mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted' }), children] })] })));
544
544
  DrawerContent.displayName = 'DrawerContent';
545
- const DrawerHeader = ({ className, ...props }) => jsx("div", { className: cn('grid gap-1.5', className), ...props });
545
+ const DrawerHeader = ({ className, ...props }) => (jsx("div", { className: cn('grid gap-1.5 py-4', className), ...props }));
546
546
  DrawerHeader.displayName = 'DrawerHeader';
547
547
  const DrawerFooter = ({ className, ...props }) => (jsx("div", { className: cn('mt-auto flex flex-col gap-2 p-4', className), ...props }));
548
548
  DrawerFooter.displayName = 'DrawerFooter';