mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-24 17:00:36 +01:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
543b4e025f | ||
|
|
7f18c6bdc7 | ||
|
|
0ea924ca0d | ||
|
|
22f3d42470 | ||
|
|
1ad96065fd | ||
|
|
952786ed79 |
15
CHANGELOG.md
15
CHANGELOG.md
@@ -2,6 +2,21 @@
|
|||||||
|
|
||||||
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.11](https://github.com/nuxtlabs/ui/compare/v0.1.10...v0.1.11) (2022-11-29)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **Checkbox:** revert type fix as it breaks checkboxes ([7f18c6b](https://github.com/nuxtlabs/ui/commit/7f18c6bdc7c0054b2e5d4f9bf4e362847a3ba3a3))
|
||||||
|
|
||||||
|
### [0.1.10](https://github.com/nuxtlabs/ui/compare/v0.1.9...v0.1.10) (2022-11-26)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* default popper options ([1ad9606](https://github.com/nuxtlabs/ui/commit/1ad96065fd706d828b906db3a5d578226ff08c36))
|
||||||
|
* default props for command palette ([#116](https://github.com/nuxtlabs/ui/issues/116)) ([952786e](https://github.com/nuxtlabs/ui/commit/952786ed79cd9cdf523f6eac5958f68790bacbea))
|
||||||
|
|
||||||
### [0.1.9](https://github.com/nuxtlabs/ui/compare/v0.1.8...v0.1.9) (2022-11-25)
|
### [0.1.9](https://github.com/nuxtlabs/ui/compare/v0.1.8...v0.1.9) (2022-11-25)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nuxthq/ui",
|
"name": "@nuxthq/ui",
|
||||||
"version": "0.1.9",
|
"version": "0.1.11",
|
||||||
"repository": "https://github.com/nuxtlabs/ui",
|
"repository": "https://github.com/nuxtlabs/ui",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"exports": {
|
"exports": {
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
"@headlessui/vue": "^1.7.4",
|
"@headlessui/vue": "^1.7.4",
|
||||||
"@iconify/vue": "^4.0.0",
|
"@iconify/vue": "^4.0.0",
|
||||||
"@nuxt/kit": "^3.0.0",
|
"@nuxt/kit": "^3.0.0",
|
||||||
"@nuxtjs/color-mode": "^3.1.8",
|
"@nuxtjs/color-mode": "^3.2.0",
|
||||||
"@nuxtjs/tailwindcss": "^6.1.3",
|
"@nuxtjs/tailwindcss": "^6.1.3",
|
||||||
"@popperjs/core": "^2.11.6",
|
"@popperjs/core": "^2.11.6",
|
||||||
"@tailwindcss/aspect-ratio": "^0.4.2",
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
popperOptions: {
|
popperOptions: {
|
||||||
type: Object as PropType<PopperOptions>,
|
type: Object as PropType<PopperOptions>,
|
||||||
default: () => {}
|
default: () => ({})
|
||||||
},
|
},
|
||||||
openDelay: {
|
openDelay: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ const emit = defineEmits(['update:modelValue', 'focus', 'blur'])
|
|||||||
|
|
||||||
const isChecked = computed({
|
const isChecked = computed({
|
||||||
get () {
|
get () {
|
||||||
return !!props.modelValue
|
return props.modelValue
|
||||||
},
|
},
|
||||||
set (value) {
|
set (value) {
|
||||||
emit('update:modelValue', value)
|
emit('update:modelValue', value)
|
||||||
|
|||||||
@@ -257,7 +257,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
popperOptions: {
|
popperOptions: {
|
||||||
type: Object as PropType<PopperOptions>,
|
type: Object as PropType<PopperOptions>,
|
||||||
default: () => {}
|
default: () => ({})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
type: Object as PropType<Partial<UseFuseOptions<Command>>>,
|
type: Object as PropType<Partial<UseFuseOptions<Command>>>,
|
||||||
default: () => {}
|
default: () => ({})
|
||||||
},
|
},
|
||||||
autoselect: {
|
autoselect: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
popperOptions: {
|
popperOptions: {
|
||||||
type: Object as PropType<PopperOptions>,
|
type: Object as PropType<PopperOptions>,
|
||||||
default: () => {}
|
default: () => ({})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
popperOptions: {
|
popperOptions: {
|
||||||
type: Object as PropType<PopperOptions>,
|
type: Object as PropType<PopperOptions>,
|
||||||
default: () => {}
|
default: () => ({})
|
||||||
},
|
},
|
||||||
openDelay: {
|
openDelay: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
popperOptions: {
|
popperOptions: {
|
||||||
type: Object as PropType<PopperOptions>,
|
type: Object as PropType<PopperOptions>,
|
||||||
default: () => {}
|
default: () => ({})
|
||||||
},
|
},
|
||||||
openDelay: {
|
openDelay: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
|||||||
19
yarn.lock
19
yarn.lock
@@ -481,7 +481,7 @@
|
|||||||
unimport "^1.0.1"
|
unimport "^1.0.1"
|
||||||
untyped "^1.0.0"
|
untyped "^1.0.0"
|
||||||
|
|
||||||
"@nuxt/kit@^3.0.0-rc.12", "@nuxt/kit@^3.0.0-rc.14", "@nuxt/kit@^3.0.0-rc.9":
|
"@nuxt/kit@^3.0.0-rc.12", "@nuxt/kit@^3.0.0-rc.14":
|
||||||
version "3.0.0-rc.14"
|
version "3.0.0-rc.14"
|
||||||
resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.0.0-rc.14.tgz#8eb0ffb4940fc874708b1cbb30f834c22d29da85"
|
resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.0.0-rc.14.tgz#8eb0ffb4940fc874708b1cbb30f834c22d29da85"
|
||||||
integrity sha512-CNIRkUAEWmvedA4MJqj4kVE1QNHYYu4V0Uj7bcOsOStWvbEzhRqh5AL56eaQGHcHnvNt/QEKvXDgcr6woFH4EQ==
|
integrity sha512-CNIRkUAEWmvedA4MJqj4kVE1QNHYYu4V0Uj7bcOsOStWvbEzhRqh5AL56eaQGHcHnvNt/QEKvXDgcr6woFH4EQ==
|
||||||
@@ -636,14 +636,14 @@
|
|||||||
vite-plugin-checker "^0.5.1"
|
vite-plugin-checker "^0.5.1"
|
||||||
vue-bundle-renderer "^1.0.0"
|
vue-bundle-renderer "^1.0.0"
|
||||||
|
|
||||||
"@nuxtjs/color-mode@^3.1.8":
|
"@nuxtjs/color-mode@^3.2.0":
|
||||||
version "3.1.8"
|
version "3.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@nuxtjs/color-mode/-/color-mode-3.1.8.tgz#58f3e5401028fe0c75088e9d2fdc5c7778d2b720"
|
resolved "https://registry.yarnpkg.com/@nuxtjs/color-mode/-/color-mode-3.2.0.tgz#b5b6a3931a6ddd9646c3aad121d357c635792eb7"
|
||||||
integrity sha512-ahgjmSzpjTpaxvyyGA/1wD2rNcSFXiqs3/A/GEllB1s4BboJVnBIqkwIQpAguq7IDVZG2tMAvqmnZHSfwrI3IA==
|
integrity sha512-isDR01yfadopiHQ/VEVUpyNSPrk5PCjUHS4t1qYRZwuRGefU4s9Iaxf6H9nmr1QFzoMgTm+3T0r/54jLwtpZbA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nuxt/kit" "^3.0.0-rc.9"
|
"@nuxt/kit" "^3.0.0"
|
||||||
lodash.template "^4.5.0"
|
lodash.template "^4.5.0"
|
||||||
pathe "^0.3.5"
|
pathe "^1.0.0"
|
||||||
|
|
||||||
"@nuxtjs/eslint-config-typescript@^12.0.0":
|
"@nuxtjs/eslint-config-typescript@^12.0.0":
|
||||||
version "12.0.0"
|
version "12.0.0"
|
||||||
@@ -5313,11 +5313,6 @@ pathe@^0.2.0:
|
|||||||
resolved "https://registry.yarnpkg.com/pathe/-/pathe-0.2.0.tgz#30fd7bbe0a0d91f0e60bae621f5d19e9e225c339"
|
resolved "https://registry.yarnpkg.com/pathe/-/pathe-0.2.0.tgz#30fd7bbe0a0d91f0e60bae621f5d19e9e225c339"
|
||||||
integrity sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==
|
integrity sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==
|
||||||
|
|
||||||
pathe@^0.3.5:
|
|
||||||
version "0.3.9"
|
|
||||||
resolved "https://registry.yarnpkg.com/pathe/-/pathe-0.3.9.tgz#4baff768f37f03e3d9341502865fb93116f65191"
|
|
||||||
integrity sha512-6Y6s0vT112P3jD8dGfuS6r+lpa0qqNrLyHPOwvXMnyNTQaYiwgau2DP3aNDsR13xqtGj7rrPo+jFUATpU6/s+g==
|
|
||||||
|
|
||||||
pathe@^1.0.0:
|
pathe@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.0.0.tgz#135fc11464fc57c84ef93d5c5ed21247e24571df"
|
resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.0.0.tgz#135fc11464fc57c84ef93d5c5ed21247e24571df"
|
||||||
|
|||||||
Reference in New Issue
Block a user