dfh-ui-library 1.12.409 → 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
  /**
package/dist/index.d.ts CHANGED
@@ -792,6 +792,7 @@ interface ITyphographyProps extends IChildrenProp, IAdditionalClassesProp {
792
792
  */
793
793
  color?: string;
794
794
  onClick?: () => void;
795
+ disabled?: boolean;
795
796
  }
796
797
  interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
797
798
  /**
@@ -1206,7 +1207,7 @@ declare const Button: ({ type, isDisabled, buttonLabel, iconType, iconColor, ico
1206
1207
  /**
1207
1208
  * Primary UI component
1208
1209
  */
1209
- declare const Typhography: ({ type, component, color, additionalClasses, children, onClick, ...rest }: ITyphographyProps) => React__default.JSX.Element;
1210
+ declare const Typhography: ({ type, component, color, additionalClasses, children, onClick, disabled, ...rest }: ITyphographyProps) => React__default.JSX.Element;
1210
1211
 
1211
1212
  declare const Checkbox: React__default.FC<ICheckboxProps>;
1212
1213
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.409",
3
+ "version": "1.12.410",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",