@club-employes/utopia 4.287.0 → 4.288.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.
|
@@ -39,6 +39,16 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
39
39
|
type: StringConstructor;
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
42
|
+
/** Taille maximale autorisée pour les images, en Mo. Ex : 5. null = pas de limite. */
|
|
43
|
+
maxImageSize: {
|
|
44
|
+
type: PropType<number | null>;
|
|
45
|
+
default: null;
|
|
46
|
+
};
|
|
47
|
+
/** Taille maximale autorisée pour les vidéos, en Mo. Ex : 50. null = pas de limite. */
|
|
48
|
+
maxVideoSize: {
|
|
49
|
+
type: PropType<number | null>;
|
|
50
|
+
default: null;
|
|
51
|
+
};
|
|
42
52
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
43
53
|
"update:modelValue": (...args: any[]) => void;
|
|
44
54
|
"update:state": (...args: any[]) => void;
|
|
@@ -81,6 +91,16 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
81
91
|
type: StringConstructor;
|
|
82
92
|
default: string;
|
|
83
93
|
};
|
|
94
|
+
/** Taille maximale autorisée pour les images, en Mo. Ex : 5. null = pas de limite. */
|
|
95
|
+
maxImageSize: {
|
|
96
|
+
type: PropType<number | null>;
|
|
97
|
+
default: null;
|
|
98
|
+
};
|
|
99
|
+
/** Taille maximale autorisée pour les vidéos, en Mo. Ex : 50. null = pas de limite. */
|
|
100
|
+
maxVideoSize: {
|
|
101
|
+
type: PropType<number | null>;
|
|
102
|
+
default: null;
|
|
103
|
+
};
|
|
84
104
|
}>> & Readonly<{
|
|
85
105
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
86
106
|
"onUpdate:state"?: ((...args: any[]) => any) | undefined;
|
|
@@ -94,5 +114,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
94
114
|
state: "error" | "default" | "valid";
|
|
95
115
|
toolbarConfig: Record<string, any>;
|
|
96
116
|
labels: Partial<EditorLabels>;
|
|
117
|
+
maxImageSize: number | null;
|
|
118
|
+
maxVideoSize: number | null;
|
|
97
119
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
98
120
|
export default _default;
|