@fattureincloud/fic-design-system 0.7.12 → 0.7.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { SingleValueProps } from 'react-select';
3
+ import { OptionType } from './Option';
4
+ declare const SingleValue: <O extends OptionType = OptionType>({ data: { icon, label }, }: SingleValueProps<O, import("react-select").GroupTypeBase<O>>) => JSX.Element;
5
+ export default SingleValue;
@@ -27,6 +27,7 @@ export interface ModalPropsInterface {
27
27
  overlayEl: Element;
28
28
  contentEl: HTMLDivElement;
29
29
  }) => void;
30
+ isConfirmModal?: boolean;
30
31
  }
31
32
  export interface StyledModalBoxProps {
32
33
  isFullscreen?: boolean;