@vacano/ui 1.7.0 → 1.8.0

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
@@ -244,7 +244,7 @@ export declare type DrawerProps = VacanoComponentProps<HTMLDivElement> & Omit<HT
244
244
  size?: string;
245
245
  };
246
246
 
247
- export declare const Dropdown: ({ align, children, className, classnames, onClose, onOpen, open: controlledOpen, portalRenderNode, ref, trigger, ...rest }: DropdownProps) => JSX.Element;
247
+ export declare const Dropdown: ({ align, autoClose, children, className, classnames, onClose, onOpen, open: controlledOpen, portalRenderNode, ref, trigger, ...rest }: DropdownProps) => JSX.Element;
248
248
 
249
249
  export declare type DropdownAlign = 'left' | 'right';
250
250
 
@@ -257,6 +257,7 @@ export declare type DropdownPosition = 'top' | 'bottom';
257
257
 
258
258
  export declare type DropdownProps = VacanoComponentProps<HTMLDivElement, DropdownClassNames> & {
259
259
  align?: DropdownAlign;
260
+ autoClose?: boolean;
260
261
  children?: ReactNode;
261
262
  onClose?: () => void;
262
263
  onOpen?: () => void;