valtech-components 2.0.945 → 2.0.946
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/date-input/date-input.component.mjs +3 -3
- package/esm2022/lib/components/molecules/file-input/file-input.component.mjs +3 -3
- package/esm2022/lib/components/molecules/hint/hint.component.mjs +3 -3
- package/esm2022/lib/components/molecules/password-input/password-input.component.mjs +3 -3
- package/esm2022/lib/components/molecules/pin-input/pin-input.component.mjs +3 -3
- package/esm2022/lib/components/molecules/select-input/select-input.component.mjs +5 -5
- package/esm2022/lib/components/molecules/stats-bar/stats-bar.component.mjs +3 -3
- package/esm2022/lib/components/molecules/text-input/text-input.component.mjs +3 -3
- package/esm2022/lib/components/organisms/form/form.component.mjs +5 -5
- package/esm2022/lib/components/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +23 -23
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/types.d.ts +6 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -194,6 +194,12 @@ export type FormMetadata = {
|
|
|
194
194
|
actions: ButtonMetadata;
|
|
195
195
|
/** Global form state */
|
|
196
196
|
state: ComponentState;
|
|
197
|
+
/**
|
|
198
|
+
* Espacio vertical entre campos, en px. Si se omite, usa el default
|
|
199
|
+
* responsivo de la lib (8px mobile / 12px desktop). Útil para formularios
|
|
200
|
+
* densos o más aireados sin tocar CSS del consumer.
|
|
201
|
+
*/
|
|
202
|
+
fieldSpacing?: number;
|
|
197
203
|
};
|
|
198
204
|
/**
|
|
199
205
|
* Possible action types for a toolbar.
|
package/lib/version.d.ts
CHANGED