Compare commits

..

3 Commits

Author SHA1 Message Date
Benjamin Canac
0af5184c70 chore(release): 2.2.1 2023-05-27 12:27:53 +02:00
Benjamin Canac
44c3e2c46a chore(forms): remove required on Input, Select and Textarea name
Resolves #236
2023-05-27 12:03:29 +02:00
Benjamin Canac
a96dc19215 fix(FormGroup): missing h import from vue
Resolves #236
2023-05-27 12:02:51 +02:00
6 changed files with 12 additions and 5 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [2.2.1](https://github.com/nuxtlabs/ui/compare/v2.2.0...v2.2.1) (2023-05-27)
### Bug Fixes
* **FormGroup:** missing `h` import from `vue` ([a96dc19](https://github.com/nuxtlabs/ui/commit/a96dc192157725143503b1a5e4b404cb48dc9d3f)), closes [#236](https://github.com/nuxtlabs/ui/issues/236)
## [2.2.0](https://github.com/nuxtlabs/ui/compare/v2.1.0...v2.2.0) (2023-05-26)

View File

@@ -1,6 +1,6 @@
{
"name": "@nuxthq/ui",
"version": "2.2.0",
"version": "2.2.1",
"repository": "https://github.com/nuxtlabs/ui",
"license": "MIT",
"exports": {

View File

@@ -1,4 +1,4 @@
import { computed, defineComponent } from 'vue'
import { h, computed, defineComponent } from 'vue'
import type { PropType } from 'vue'
import { defu } from 'defu'
import { getSlotsChildren } from '../../utils'

View File

@@ -55,7 +55,7 @@ export default defineComponent({
},
name: {
type: String,
required: true
default: null
},
placeholder: {
type: String,

View File

@@ -71,7 +71,7 @@ export default defineComponent({
},
name: {
type: String,
required: true
default: null
},
placeholder: {
type: String,

View File

@@ -38,7 +38,7 @@ export default defineComponent({
},
name: {
type: String,
required: true
default: null
},
placeholder: {
type: String,