dfh-ui-library 1.12.409 → 1.12.410

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.
@@ -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
  /**