@fattureincloud/fic-design-system 0.7.15 → 0.7.17
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { DropdownProps } from './types';
|
3
|
-
declare const DropdownImpl: ({ className, content, fullWidth, maxWidth, maxHeight, minWidthAsTrigger, placement, renderContent, renderTrigger, triggerStyles, title, forceOpen, disableArrowNavigation, isDisabled, emptyState, onOpen, withPadding, offsetY, }: DropdownProps) => JSX.Element;
|
3
|
+
declare const DropdownImpl: ({ className, content, fullWidth, maxWidth, maxHeight, minWidthAsTrigger, placement, renderContent, renderTrigger, triggerStyles, title, forceOpen, disableArrowNavigation, isDisabled, emptyState, onOpen, withPadding, offsetY, forceClose, }: DropdownProps) => JSX.Element;
|
4
4
|
export default DropdownImpl;
|
@@ -25,6 +25,7 @@ export declare type DropdownProps = {
|
|
25
25
|
onOpen?: (isOpen: boolean) => void;
|
26
26
|
withPadding?: boolean;
|
27
27
|
offsetY?: number;
|
28
|
+
forceClose?: boolean;
|
28
29
|
};
|
29
30
|
export declare type DropdownItemType = 'default' | 'danger' | 'success' | 'warning' | 'link';
|
30
31
|
export interface DropdownItemProps {
|