@club-employes/utopia 4.71.0 → 4.72.0
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/components/organisms/DropFile/DropFile.d.ts +18 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.js +2519 -2477
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -124,6 +124,24 @@ declare function __VLS_template(): {
|
|
|
124
124
|
url?: string | undefined;
|
|
125
125
|
};
|
|
126
126
|
}): any;
|
|
127
|
+
'file-item'?(_: {
|
|
128
|
+
file: {
|
|
129
|
+
file: {
|
|
130
|
+
readonly lastModified: number;
|
|
131
|
+
readonly name: string;
|
|
132
|
+
readonly webkitRelativePath: string;
|
|
133
|
+
readonly size: number;
|
|
134
|
+
readonly type: string;
|
|
135
|
+
arrayBuffer: () => Promise<ArrayBuffer>;
|
|
136
|
+
bytes: () => Promise<Uint8Array>;
|
|
137
|
+
slice: (start?: number, end?: number, contentType?: string) => Blob;
|
|
138
|
+
stream: () => ReadableStream<Uint8Array>;
|
|
139
|
+
text: () => Promise<string>;
|
|
140
|
+
};
|
|
141
|
+
id: string;
|
|
142
|
+
url?: string | undefined;
|
|
143
|
+
};
|
|
144
|
+
}): any;
|
|
127
145
|
};
|
|
128
146
|
refs: {
|
|
129
147
|
fileNameInputRef: CreateComponentPublicInstanceWithMixins<Readonly< InputTextProps> & Readonly<{
|
package/dist/icons-list.json
CHANGED