Compare commits

...

2 Commits

Author SHA1 Message Date
Benjamin Canac
7f9d69183c chore(release): 0.1.5 2022-11-08 16:44:13 +01:00
Benjamin Canac
23e5f4c501 chore(CommandPalette): add autoclear prop 2022-11-08 16:43:18 +01:00
3 changed files with 8 additions and 2 deletions

View File

@@ -2,6 +2,8 @@
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. 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.
### [0.1.5](https://github.com/nuxtlabs/ui/compare/v0.1.4...v0.1.5) (2022-11-08)
### [0.1.4](https://github.com/nuxtlabs/ui/compare/v0.1.3...v0.1.4) (2022-11-08) ### [0.1.4](https://github.com/nuxtlabs/ui/compare/v0.1.3...v0.1.4) (2022-11-08)

View File

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

View File

@@ -110,6 +110,10 @@ const props = defineProps({
type: Boolean, type: Boolean,
default: true default: true
}, },
autoclear: {
type: Boolean,
default: true
},
placeholder: { placeholder: {
type: Boolean, type: Boolean,
default: true default: true
@@ -183,7 +187,7 @@ function onSelect (option: Command | Command[]) {
emit('update:modelValue', option, { query: query.value }) emit('update:modelValue', option, { query: query.value })
// Clear input after selection // Clear input after selection
if (!props.multiple) { if (props.autoclear) {
setTimeout(() => { setTimeout(() => {
query.value = '' query.value = ''
}, 0) }, 0)