fds-vue-core 7.2.4 → 7.2.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/components/Form/FdsPhonenumber/FdsPhonenumber.vue.d.ts +2 -2
- package/dist/components/Form/FdsPhonenumber/types.d.ts +2 -0
- package/dist/fds-vue-core.cjs.js +3 -3
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.es.js +3 -3
- 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/FdsPhonenumber/FdsPhonenumberCountryPicker.vue +1 -2
- package/src/components/Form/FdsPhonenumber/types.ts +12 -1
package/dist/fds-vue-core.es.js
CHANGED
|
@@ -18351,8 +18351,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
18351
18351
|
"pointer-events-none transition-transform duration-200 ease-in-out",
|
|
18352
18352
|
{
|
|
18353
18353
|
"fill-gray-500": props.disabled,
|
|
18354
|
-
"fill-
|
|
18355
|
-
"fill-blue-500": !props.disabled && !isInvalid.value,
|
|
18354
|
+
"fill-blue-500": !props.disabled && !isInvalid.value || isInvalid.value,
|
|
18356
18355
|
"rotate-180": dropdownOpen.value && !props.disabled
|
|
18357
18356
|
}
|
|
18358
18357
|
]);
|
|
@@ -18744,6 +18743,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
18744
18743
|
onValid: {},
|
|
18745
18744
|
onNoCountryResults: {},
|
|
18746
18745
|
onBlur: {},
|
|
18746
|
+
"onUpdate:modelValue": {},
|
|
18747
18747
|
"onUpdate:e164": {},
|
|
18748
18748
|
"onUpdate:country": {},
|
|
18749
18749
|
id: { default: void 0 },
|
|
@@ -18762,7 +18762,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
18762
18762
|
"country": { default: "SE" },
|
|
18763
18763
|
"countryModifiers": {}
|
|
18764
18764
|
}),
|
|
18765
|
-
emits: /* @__PURE__ */ mergeModels(["update:country", "update:e164", "valid", "noCountryResults", "blur"], ["update:modelValue", "update:country"]),
|
|
18765
|
+
emits: /* @__PURE__ */ mergeModels(["update:modelValue", "update:country", "update:e164", "valid", "noCountryResults", "blur"], ["update:modelValue", "update:country"]),
|
|
18766
18766
|
setup(__props, { emit: __emit }) {
|
|
18767
18767
|
const [nationalNumber, modelModifiers] = useModel(__props, "modelValue");
|
|
18768
18768
|
const country = useModel(__props, "country");
|