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.
- 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;
|
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
|
|