fds-vue-core 8.3.1 → 8.3.2
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/fds-vue-core.cjs.js +7 -7
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.es.js +8 -8
- package/dist/fds-vue-core.es.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/Form/FdsInput/FdsInput.vue +1 -1
- package/src/components/Form/FdsPhonenumber/FdsPhonenumber.vue +2 -1
- package/src/components/Form/FdsSsn/FdsSsn.vue +2 -1
package/package.json
CHANGED
|
@@ -172,7 +172,8 @@ function onNoCountryResults(value: boolean) {
|
|
|
172
172
|
@no-country-results="onNoCountryResults"
|
|
173
173
|
/>
|
|
174
174
|
<FdsInput
|
|
175
|
-
|
|
175
|
+
:model-value="nationalNumber"
|
|
176
|
+
@update:model-value="nationalNumber = $event ?? ''"
|
|
176
177
|
:mask="phoneMask"
|
|
177
178
|
:mask-options="phoneMaskOptions"
|
|
178
179
|
:valid="displayValid"
|
|
@@ -114,7 +114,8 @@ function handleBlur(ev: FocusEvent) {
|
|
|
114
114
|
<template>
|
|
115
115
|
<div class="w-full">
|
|
116
116
|
<FdsInput
|
|
117
|
-
|
|
117
|
+
:model-value="modelValue"
|
|
118
|
+
@update:model-value="modelValue = $event ?? ''"
|
|
118
119
|
:mask="ssnMask"
|
|
119
120
|
:mask-options="ssnMaskOptions"
|
|
120
121
|
:label="resolvedLabel"
|