dfh-ui-library 1.12.409 → 1.12.411
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Typhography/Typhography.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/base.model.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Typhography/Typhography.d.ts +1 -1
- package/dist/esm/types/shared/models/components/base.model.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -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;
|