fds-vue-core 2.1.35 → 2.1.37
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 +2 -1
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.es.js +2 -1
- package/dist/fds-vue-core.es.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Buttons/FdsButtonDownload/FdsButtonDownload.vue +1 -0
- package/src/components/Buttons/FdsButtonDownload/types.ts +1 -0
- package/src/components/Form/FdsSelect/FdsSelect.vue +1 -1
package/dist/fds-vue-core.cjs.js
CHANGED
|
@@ -4089,6 +4089,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
4089
4089
|
href: { default: void 0 },
|
|
4090
4090
|
downloadOptions: { default: void 0 },
|
|
4091
4091
|
text: { default: "" },
|
|
4092
|
+
disabled: { type: Boolean, default: false },
|
|
4092
4093
|
"data-testid": {},
|
|
4093
4094
|
dataTestid: {}
|
|
4094
4095
|
},
|
|
@@ -10147,7 +10148,7 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
10147
10148
|
);
|
|
10148
10149
|
const isInvalid = vue.computed(() => props.valid === false && !props.optional && !props.disabled);
|
|
10149
10150
|
const selectClasses = vue.computed(() => [
|
|
10150
|
-
"block rounded-md border border-gray-500 px-3 py-2 pr-10 h-12",
|
|
10151
|
+
"block w-full rounded-md border border-gray-500 px-3 py-2 pr-10 h-12",
|
|
10151
10152
|
"focus:outline-2 focus:outline-blue-500 focus:border-transparent",
|
|
10152
10153
|
"appearance-none",
|
|
10153
10154
|
props.disabled ? "outline-dashed text-gray-600 outline-2 -outline-offset-2 outline-gray-400 cursor-not-allowed border-transparent" : "bg-white cursor-pointer",
|