beeple-toolkit 1.0.49 → 1.0.51
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.
|
@@ -15,7 +15,7 @@ declare const __VLS_base: import("vue").DefineComponent<TextareaProps, {}, {}, {
|
|
|
15
15
|
}>, {
|
|
16
16
|
isError: boolean;
|
|
17
17
|
minRows: number;
|
|
18
|
-
maxRows: number;
|
|
18
|
+
maxRows: number | null;
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
21
|
declare const _default: typeof __VLS_export;
|
|
@@ -271,7 +271,8 @@ export interface TextareaProps {
|
|
|
271
271
|
isError?: boolean;
|
|
272
272
|
errorMessage?: string;
|
|
273
273
|
minRows?: number;
|
|
274
|
-
|
|
274
|
+
/** Max rows before the field caps and scrolls. `null` or `0` = unlimited (grows to fit, no scrollbar). */
|
|
275
|
+
maxRows?: number | null;
|
|
275
276
|
}
|
|
276
277
|
export interface TimeInputProps {
|
|
277
278
|
id?: string;
|
|
@@ -331,6 +332,8 @@ export interface UploadDocumentProps {
|
|
|
331
332
|
label?: string;
|
|
332
333
|
urlLabel?: string;
|
|
333
334
|
modelValue?: string;
|
|
335
|
+
/** Seed the "file selected" display from just a filename (e.g. a file chosen on a previous step, kept as base64). Display-only: no File is fabricated and no files/update:modelValue is emitted. */
|
|
336
|
+
fileName?: string;
|
|
334
337
|
accept?: string;
|
|
335
338
|
multiple?: boolean;
|
|
336
339
|
disabled?: boolean;
|