@bynder/compact-view 3.1.3 → 3.2.2
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.d.ts +7 -0
- package/components.js +4 -4
- package/index.d.ts +6 -6
- package/index.js +4 -4
- package/package.json +1 -1
package/components.d.ts
CHANGED
|
@@ -29,6 +29,12 @@ interface MetapropertyProps {
|
|
|
29
29
|
onRemoveOption: (metapropertyOption: MetapropertyOptionType) => void;
|
|
30
30
|
}
|
|
31
31
|
declare function MetaPropertyFilterContent(props: MetapropertyProps): JSX.Element;
|
|
32
|
+
interface File {
|
|
33
|
+
url: string;
|
|
34
|
+
width?: number;
|
|
35
|
+
height?: number;
|
|
36
|
+
fileSize?: number;
|
|
37
|
+
}
|
|
32
38
|
interface Derivatives {
|
|
33
39
|
thumbnail?: string;
|
|
34
40
|
}
|
|
@@ -44,6 +50,7 @@ interface Asset {
|
|
|
44
50
|
metaproperties?: {
|
|
45
51
|
nodes: MetapropertyType[];
|
|
46
52
|
};
|
|
53
|
+
files: Record<string, File>;
|
|
47
54
|
}
|
|
48
55
|
interface Props {
|
|
49
56
|
className?: string;
|