valtech-components 2.0.951 → 2.0.953
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/esm2022/lib/components/molecules/select-input/select-input.component.mjs +3 -3
- package/esm2022/lib/components/organisms/attachment-uploader/attachment-uploader.component.mjs +4 -3
- package/esm2022/lib/components/organisms/attachment-uploader/types.mjs +1 -1
- package/esm2022/lib/components/organisms/form/form.component.mjs +13 -4
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +17 -8
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/attachment-uploader/types.d.ts +4 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,10 @@ export interface AttachmentItem {
|
|
|
6
6
|
error?: string;
|
|
7
7
|
}
|
|
8
8
|
export interface AttachmentUploaderMetadata {
|
|
9
|
+
/** Título del campo (se renderiza arriba, estilo label de val-form). */
|
|
10
|
+
title?: string;
|
|
11
|
+
/** Texto de ayuda (se renderiza abajo a la derecha, en tono dark). */
|
|
12
|
+
hint?: string;
|
|
9
13
|
maxFiles?: number;
|
|
10
14
|
accept?: string;
|
|
11
15
|
disabled?: boolean;
|
package/lib/version.d.ts
CHANGED