valtech-components 2.0.781 → 2.0.782
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/phone-input/phone-input.component.mjs +3 -3
- package/esm2022/lib/components/molecules/username-input/types.mjs +1 -1
- package/esm2022/lib/components/molecules/username-input/username-input.component.mjs +13 -3
- package/esm2022/lib/components/organisms/form/form.component.mjs +2 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +16 -5
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/username-input/types.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ export interface UsernameInputMetadata {
|
|
|
9
9
|
control: FormControl<string>;
|
|
10
10
|
/** Label del campo */
|
|
11
11
|
label?: string;
|
|
12
|
+
/** Texto explicativo debajo del input (estilo consistente con phone-input). */
|
|
13
|
+
hint?: string;
|
|
12
14
|
/** Placeholder del input */
|
|
13
15
|
placeholder?: string;
|
|
14
16
|
/** Prefijo visual (default: '@') */
|
package/lib/version.d.ts
CHANGED