@okam/stack-ui 1.25.2 → 1.25.4
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/components/Box/interface.d.ts +1 -0
- package/components/DirectusImg/interface.d.ts +4 -0
- package/components/Typography/interface.d.ts +1 -0
- package/index.js +15 -15
- package/index.mjs +3650 -3792
- package/package.json +1 -1
- package/transitions/AccordionTransition.d.ts +1 -0
- package/transitions/RenderWithOpacity.d.ts +1 -0
|
@@ -9,5 +9,9 @@ type TDirectusImageProps = Omit<TImgProps, 'src' | 'id' | 'width' | 'height' | '
|
|
|
9
9
|
height: Nullable<number>;
|
|
10
10
|
id: Nullable<string>;
|
|
11
11
|
filenameDownload: Nullable<string>;
|
|
12
|
+
/**
|
|
13
|
+
* @default NEXT_PUBLIC_IMG_DOMAIN
|
|
14
|
+
*/
|
|
15
|
+
imgDomain?: string;
|
|
12
16
|
};
|
|
13
17
|
export default TDirectusImageProps;
|