react-datocms 3.1.3 → 3.1.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.
|
@@ -24,7 +24,7 @@ export declare type ResponsiveImageType = {
|
|
|
24
24
|
/** Title attribute (`title`) for the image */
|
|
25
25
|
title?: Maybe<string>;
|
|
26
26
|
};
|
|
27
|
-
declare type ImagePropTypes = {
|
|
27
|
+
export declare type ImagePropTypes = {
|
|
28
28
|
/** The actual response you get from a DatoCMS `responsiveImage` GraphQL query */
|
|
29
29
|
data: ResponsiveImageType;
|
|
30
30
|
/** Additional CSS className for root node */
|
|
@@ -24,7 +24,7 @@ export declare type ResponsiveImageType = {
|
|
|
24
24
|
/** Title attribute (`title`) for the image */
|
|
25
25
|
title?: Maybe<string>;
|
|
26
26
|
};
|
|
27
|
-
declare type ImagePropTypes = {
|
|
27
|
+
export declare type ImagePropTypes = {
|
|
28
28
|
/** The actual response you get from a DatoCMS `responsiveImage` GraphQL query */
|
|
29
29
|
data: ResponsiveImageType;
|
|
30
30
|
/** Additional CSS className for root node */
|
package/package.json
CHANGED
package/src/Image/index.tsx
CHANGED
|
@@ -35,7 +35,7 @@ export type ResponsiveImageType = {
|
|
|
35
35
|
title?: Maybe<string>;
|
|
36
36
|
};
|
|
37
37
|
|
|
38
|
-
type ImagePropTypes = {
|
|
38
|
+
export type ImagePropTypes = {
|
|
39
39
|
/** The actual response you get from a DatoCMS `responsiveImage` GraphQL query */
|
|
40
40
|
data: ResponsiveImageType;
|
|
41
41
|
/** Additional CSS className for root node */
|