@masterkeymaterial/ui 0.2.7 → 0.2.10
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/package.json
CHANGED
|
@@ -22,13 +22,13 @@ interface IDropOutput {
|
|
|
22
22
|
data?: any;
|
|
23
23
|
}
|
|
24
24
|
interface IFileMetadata {
|
|
25
|
-
url
|
|
26
|
-
base64
|
|
27
|
-
name
|
|
28
|
-
size
|
|
29
|
-
extension
|
|
30
|
-
type
|
|
31
|
-
lastModifiedIso
|
|
25
|
+
url: string | null;
|
|
26
|
+
base64: string | null;
|
|
27
|
+
name: string;
|
|
28
|
+
size: number;
|
|
29
|
+
extension: string;
|
|
30
|
+
type: string;
|
|
31
|
+
lastModifiedIso: string;
|
|
32
32
|
}
|
|
33
33
|
type IUiProgressMode = 'determinate' | 'indeterminate' | 'buffer' | 'query';
|
|
34
34
|
|
|
@@ -790,7 +790,10 @@ declare class FormFilter<T> extends BaseFieldsValues<T> {
|
|
|
790
790
|
interface ISaveTasks {
|
|
791
791
|
title: string;
|
|
792
792
|
icone: string;
|
|
793
|
-
task: () => Promise<
|
|
793
|
+
task: () => Promise<{
|
|
794
|
+
s: boolean;
|
|
795
|
+
m: string;
|
|
796
|
+
}>;
|
|
794
797
|
done?: boolean;
|
|
795
798
|
success?: boolean;
|
|
796
799
|
}
|