@bigbinary/neetoui 4.0.11 → 4.0.13
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/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/formik.js +1 -1
- package/index.css +1 -1
- package/index.d.ts +22 -1
- package/index.js +1 -1
- package/layouts.d.ts +49 -2
- package/layouts.js +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -123,6 +123,8 @@ export type AvatarProps = {
|
|
|
123
123
|
isSquare?: boolean;
|
|
124
124
|
status?: "online" | "idle" | "offline";
|
|
125
125
|
onClick?: React.MouseEventHandler<HTMLSpanElement>;
|
|
126
|
+
showTooltip?: boolean;
|
|
127
|
+
tooltipProps?: TooltipProps;
|
|
126
128
|
className?: string;
|
|
127
129
|
} & React.DetailedHTMLProps<
|
|
128
130
|
React.HTMLAttributes<HTMLSpanElement>,
|
|
@@ -562,7 +564,26 @@ export const Button: React.FC<ButtonProps>;
|
|
|
562
564
|
export const Callout: React.FC<CalloutProps>;
|
|
563
565
|
export const Checkbox: React.FC<CheckboxProps>;
|
|
564
566
|
export const DatePicker: React.FC<DatePickerProps>;
|
|
565
|
-
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
|
+
};
|
|
566
587
|
export const EmailInput: React.FC<EmailInputProps>;
|
|
567
588
|
export const Input: React.ForwardRefExoticComponent<InputProps>;
|
|
568
589
|
export const Label: React.FC<LabelProps>;
|