@finema/core 2.5.4 → 2.5.5
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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
:class="option.class"
|
|
12
12
|
:form="form"
|
|
13
13
|
v-bind="getFieldBinding(option)"
|
|
14
|
+
:type="option.type === INPUT_TYPES.PASSWORD ? 'password' : void 0"
|
|
14
15
|
v-on="option.on ?? {}"
|
|
15
16
|
/>
|
|
16
17
|
</div>
|
|
@@ -48,7 +49,7 @@ const componentMap = {
|
|
|
48
49
|
// Add other INPUT_TYPES here if they have dedicated components not covered by option.component
|
|
49
50
|
[INPUT_TYPES.NUMBER]: FormInputNumber,
|
|
50
51
|
// Example: Map to FormInputText or a specific Number input if exists
|
|
51
|
-
[INPUT_TYPES.PASSWORD]:
|
|
52
|
+
[INPUT_TYPES.PASSWORD]: FormInputText,
|
|
52
53
|
// Example: Map to FormInputText or a specific Password input if exists
|
|
53
54
|
[INPUT_TYPES.EMAIL]: void 0,
|
|
54
55
|
// Example: Map to FormInputText or a specific Email input if exists
|