@bigbinary/neetoui 4.0.12 → 4.0.14

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/index.d.ts CHANGED
@@ -564,7 +564,26 @@ export const Button: React.FC<ButtonProps>;
564
564
  export const Callout: React.FC<CalloutProps>;
565
565
  export const Checkbox: React.FC<CheckboxProps>;
566
566
  export const DatePicker: React.FC<DatePickerProps>;
567
- export const Dropdown: React.FC<DropdownProps>;
567
+ export const Dropdown: React.FC<DropdownProps> & {
568
+ Menu: React.FC<
569
+ React.DetailedHTMLProps<
570
+ React.HTMLAttributes<HTMLUListElement>,
571
+ HTMLUListElement
572
+ >
573
+ >;
574
+ MenuItem: React.FC<
575
+ React.DetailedHTMLProps<
576
+ React.LiHTMLAttributes<HTMLLIElement>,
577
+ HTMLLIElement
578
+ >
579
+ > & { Button: ButtonProps };
580
+ Divider: React.FC<
581
+ React.DetailedHTMLProps<
582
+ React.LiHTMLAttributes<HTMLLIElement>,
583
+ HTMLLIElement
584
+ >
585
+ >;
586
+ };
568
587
  export const EmailInput: React.FC<EmailInputProps>;
569
588
  export const Input: React.ForwardRefExoticComponent<InputProps>;
570
589
  export const Label: React.FC<LabelProps>;