@fattureincloud/fic-design-system 0.19.9 → 0.19.10
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ReactText } from 'react';
|
2
|
-
import { paletteColor } from '../..';
|
2
|
+
import { paletteColor, TooltipProps } from '../..';
|
3
3
|
import { IconProps } from '../icon';
|
4
4
|
export interface BadgeProps {
|
5
5
|
text?: ReactText;
|
@@ -9,6 +9,7 @@ export interface BadgeProps {
|
|
9
9
|
leftIcon?: IconProps;
|
10
10
|
rightIcon?: IconProps;
|
11
11
|
handleRightIconClick?: () => void;
|
12
|
+
tooltip?: TooltipProps;
|
12
13
|
}
|
13
14
|
export declare enum BadgeType {
|
14
15
|
STANDARD = "standard",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { DropdownProps } from './types';
|
3
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<DropdownProps, "content" | "onClose" | "
|
3
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<DropdownProps, "content" | "onClose" | "onOpen" | "fullWidth" | "maxWidth" | "emptyState" | "renderContent"> & {
|
4
4
|
attributes: {
|
5
5
|
[key: string]: {
|
6
6
|
[key: string]: string;
|