@fattureincloud/fic-design-system 0.7.12 → 0.7.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.
@@ -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;