@inntechcorp/it-design 2.0.233 → 2.0.235
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/button/styled.d.ts +3 -3
- package/dist/image/index.d.ts +11 -0
- package/dist/index.cjs.js +69 -69
- package/dist/index.d.ts +9 -1
- package/dist/index.esm.js +69 -69
- package/dist/types/ButtonProps.d.ts +4 -0
- package/package.json +29 -30
package/dist/index.d.ts
CHANGED
|
@@ -671,7 +671,15 @@ declare namespace InlineSelect {
|
|
|
671
671
|
export { _default$1 as Option };
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
-
|
|
674
|
+
interface ImageProps extends react__default.ImgHTMLAttributes<HTMLImageElement> {
|
|
675
|
+
src: string;
|
|
676
|
+
fallback?: string;
|
|
677
|
+
brokenWidth?: number | string;
|
|
678
|
+
brokenHeight?: number | string;
|
|
679
|
+
onLoad?: () => void;
|
|
680
|
+
onError?: () => void;
|
|
681
|
+
}
|
|
682
|
+
declare const _default: react__default.NamedExoticComponent<ImageProps>;
|
|
675
683
|
|
|
676
684
|
declare namespace ConsoleLog {
|
|
677
685
|
export { single };
|