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/dist/fds-vue-core.cjs.js
CHANGED
|
@@ -9932,7 +9932,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
9932
9932
|
onKeydown: {},
|
|
9933
9933
|
onKeyup: {}
|
|
9934
9934
|
}, {
|
|
9935
|
-
"modelValue": {
|
|
9935
|
+
"modelValue": {},
|
|
9936
9936
|
"modelModifiers": {}
|
|
9937
9937
|
}),
|
|
9938
9938
|
emits: /* @__PURE__ */ vue.mergeModels(["input", "autocomplete", "clearInput", "update:value", "keyup", "keyup.enter", "blur"], ["update:modelValue"]),
|
|
@@ -19300,8 +19300,8 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
19300
19300
|
onNoCountryResults
|
|
19301
19301
|
}, null, 8, ["modelValue", "items", "valid", "disabled", "ariaLabel", "data-testid", "class"]),
|
|
19302
19302
|
vue.createVNode(_sfc_main$s, vue.mergeProps({
|
|
19303
|
-
|
|
19304
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) =>
|
|
19303
|
+
"model-value": vue.unref(nationalNumber),
|
|
19304
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => nationalNumber.value = $event ?? ""),
|
|
19305
19305
|
mask: phoneMask.value,
|
|
19306
19306
|
"mask-options": phoneMaskOptions.value,
|
|
19307
19307
|
valid: displayValid.value,
|
|
@@ -19310,7 +19310,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
19310
19310
|
ariaLabel: vue.unref(t)("FdsPhonenumber.phoneNumber"),
|
|
19311
19311
|
"data-testid": __props.dataTestid ? `${__props.dataTestid}-number` : void 0,
|
|
19312
19312
|
class: ["mb-0! min-w-0 flex-1", __props.inputClass ?? ""]
|
|
19313
|
-
}, forwardedInputProps.value, { onBlur: handleBlur }), null, 16, ["
|
|
19313
|
+
}, forwardedInputProps.value, { onBlur: handleBlur }), null, 16, ["model-value", "mask", "mask-options", "valid", "disabled", "optional", "ariaLabel", "data-testid", "class"])
|
|
19314
19314
|
]),
|
|
19315
19315
|
noCountryResults.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$3, vue.toDisplayString(vue.unref(t)("FdsPhonenumber.noCountryResults")), 1)) : vue.createCommentVNode("", true),
|
|
19316
19316
|
showInvalidMessage.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$3, vue.toDisplayString(resolvedInvalidMessage.value), 1)) : vue.createCommentVNode("", true)
|
|
@@ -19768,8 +19768,8 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
19768
19768
|
return (_ctx, _cache) => {
|
|
19769
19769
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$4, [
|
|
19770
19770
|
vue.createVNode(_sfc_main$s, vue.mergeProps({
|
|
19771
|
-
|
|
19772
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modelValue.value = $event),
|
|
19771
|
+
"model-value": modelValue.value,
|
|
19772
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modelValue.value = $event ?? ""),
|
|
19773
19773
|
mask: ssnMask.value,
|
|
19774
19774
|
"mask-options": ssnMaskOptions.value,
|
|
19775
19775
|
label: resolvedLabel.value,
|
|
@@ -19781,7 +19781,7 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
19781
19781
|
ariaLabel: resolvedLabel.value,
|
|
19782
19782
|
"data-testid": __props.dataTestid,
|
|
19783
19783
|
class: __props.inputClass
|
|
19784
|
-
}, forwardedInputProps.value, { onBlur: handleBlur }), null, 16, ["
|
|
19784
|
+
}, forwardedInputProps.value, { onBlur: handleBlur }), null, 16, ["model-value", "mask", "mask-options", "label", "meta", "valid", "disabled", "optional", "invalid-message", "ariaLabel", "data-testid", "class"])
|
|
19785
19785
|
]);
|
|
19786
19786
|
};
|
|
19787
19787
|
}
|