From 1a062481e2ab6cf746b4b394cccf1ff6a65cb20d Mon Sep 17 00:00:00 2001 From: Dirk Holtwick Date: Thu, 2 Jan 2025 21:09:13 +0100 Subject: [PATCH 1/2] fix: oui-textarea allow undefine --- lib/basic/oui-textarea.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/basic/oui-textarea.vue b/lib/basic/oui-textarea.vue index e9a05ba..7e8a4d6 100644 --- a/lib/basic/oui-textarea.vue +++ b/lib/basic/oui-textarea.vue @@ -18,7 +18,7 @@ const props = withDefaults(defineProps<{ autosize: false, }) -const model = defineModel({ required: true }) +const model = defineModel({ required: true }) const { textarea } = props.autosize === true ? useTextareaAutosize({ input: model }) : {} From 8623f41c8f6ac7c6e47881e39df3611249530b15 Mon Sep 17 00:00:00 2001 From: Dirk Holtwick Date: Thu, 2 Jan 2025 21:09:39 +0100 Subject: [PATCH 2/2] 0.25.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a74ef06..1da60b9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "oui-kit", "type": "module", - "version": "0.25.6", + "version": "0.25.7", "author": { "email": "dirk.holtwick@gmail.com", "name": "Dirk Holtwick",