Skip to content

Commit

Permalink
Merge branch 'release/v0.23.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Sep 30, 2024
2 parents 71176fe + 8de5424 commit c10c18d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion lib/basic/oui-date.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ const date = computed({
:description="description"
:required="required"
>
<input :id="id" v-model="date" type="date" class="oui-input oui-input-datetime">
<input
:id="id"
v-model="date"
type="date"
class="oui-input oui-input-datetime"
v-bind="$attrs"
>
</OuiFormItem>
</template>
2 changes: 1 addition & 1 deletion lib/basic/oui-input-number.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ withDefaults(defineProps<{
id?: string
}>(), {})
const model = defineModel<number>({ required: true })
const model = defineModel<number | undefined>({ required: true })
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oui-kit",
"type": "module",
"version": "0.23.9",
"version": "0.23.10",
"author": {
"email": "dirk.holtwick@gmail.com",
"name": "Dirk Holtwick",
Expand Down Expand Up @@ -90,7 +90,7 @@
"typescript": "^5.6",
"unplugin-vue-markdown": "^0.26.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.2",
"vite-plugin-dts": "^4.2.3",
"vite-plugin-qrcode": "^0.2.3",
"vitest": "^2.1.1"
}
Expand Down

0 comments on commit c10c18d

Please sign in to comment.