valtech-components 4.0.76 → 4.0.79
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/feedback-form/feedback-form.component.mjs +19 -6
- package/esm2022/lib/components/molecules/feedback-form/types.mjs +1 -1
- package/esm2022/lib/services/i18n/default-content.mjs +7 -3
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +25 -8
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/feedback-form/types.d.ts +6 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -35,6 +35,12 @@ export interface FeedbackFormMetadata {
|
|
|
35
35
|
cssClass?: string;
|
|
36
36
|
/** Modo compacto (menos espaciado) */
|
|
37
37
|
compact?: boolean;
|
|
38
|
+
/** Mostrar encabezado de título y subtítulo encima del formulario */
|
|
39
|
+
showTitle?: boolean;
|
|
40
|
+
/** Título personalizado (usa i18n 'formTitle' como fallback) */
|
|
41
|
+
pageTitle?: string;
|
|
42
|
+
/** Subtítulo personalizado (usa i18n 'formSubtitle' como fallback) */
|
|
43
|
+
pageSubtitle?: string;
|
|
38
44
|
}
|
|
39
45
|
/**
|
|
40
46
|
* Evento emitido cuando el feedback se envía exitosamente.
|
package/lib/version.d.ts
CHANGED