dfh-ui-library 1.12.408 → 1.12.410

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,5 +3,5 @@ import { ITyphographyProps } from "../../shared/models/components/base.model";
3
3
  /**
4
4
  * Primary UI component
5
5
  */
6
- declare const Typhography: ({ type, component, color, additionalClasses, children, onClick, ...rest }: ITyphographyProps) => React.JSX.Element;
6
+ declare const Typhography: ({ type, component, color, additionalClasses, children, onClick, disabled, ...rest }: ITyphographyProps) => React.JSX.Element;
7
7
  export default Typhography;
@@ -52,6 +52,7 @@ export interface ITyphographyProps extends IChildrenProp, IAdditionalClassesProp
52
52
  */
53
53
  color?: string;
54
54
  onClick?: () => void;
55
+ disabled?: boolean;
55
56
  }
56
57
  export interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
57
58
  /**