mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-19 09:50:33 +03:00
Merge branch 'beta' into beta--nuxt
This commit is contained in:
+26
-21
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-select",
|
"name": "vue-select",
|
||||||
"version": "4.0.0-beta.3",
|
"version": "4.0.0-beta.6",
|
||||||
"description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.",
|
"description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.",
|
||||||
"author": "Jeff Sagal <sagalbot@gmail.com>",
|
"author": "Jeff Sagal <sagalbot@gmail.com>",
|
||||||
"homepage": "https://vue-select.org",
|
"homepage": "https://vue-select.org",
|
||||||
@@ -17,6 +17,11 @@
|
|||||||
".": {
|
".": {
|
||||||
"import": "./dist/vue-select.es.js",
|
"import": "./dist/vue-select.es.js",
|
||||||
"require": "./dist/vue-select.umd.js"
|
"require": "./dist/vue-select.umd.js"
|
||||||
|
},
|
||||||
|
"./dist/vue-select.css": {
|
||||||
|
"import": "./dist/vue-select.css",
|
||||||
|
"require": "./dist/vue-select.css",
|
||||||
|
"style": "./dist/vue-select.css"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"private": false,
|
"private": false,
|
||||||
@@ -43,34 +48,34 @@
|
|||||||
"vue": "3.x"
|
"vue": "3.x"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rushstack/eslint-patch": "^1.1.4",
|
"@rushstack/eslint-patch": "^1.2.0",
|
||||||
"@semantic-release/git": "^10.0.1",
|
"@semantic-release/git": "^10.0.1",
|
||||||
"@semantic-release/github": "^8.0.5",
|
"@semantic-release/github": "^8.0.7",
|
||||||
"@types/jsdom": "^16.2.14",
|
"@types/jsdom": "^20.0.1",
|
||||||
"@types/node": "^18.0.5",
|
"@types/node": "^18.11.10",
|
||||||
"@vitejs/plugin-vue": "^3.0.0",
|
"@vitejs/plugin-vue": "^3.2.0",
|
||||||
|
"@vitest/coverage-c8": "^0.25.3",
|
||||||
"@vue/eslint-config-prettier": "^7.0.0",
|
"@vue/eslint-config-prettier": "^7.0.0",
|
||||||
"@vue/eslint-config-typescript": "^11.0.0",
|
"@vue/eslint-config-typescript": "^11.0.2",
|
||||||
"@vue/test-utils": "^2.0.2",
|
"@vue/test-utils": "^2.2.4",
|
||||||
"@vue/tsconfig": "^0.1.3",
|
"@vue/tsconfig": "^0.1.3",
|
||||||
"autoprefixer": "^10.4.7",
|
"autoprefixer": "^10.4.13",
|
||||||
"bundlewatch": "^0.3.3",
|
"bundlewatch": "^0.3.3",
|
||||||
"c8": "^7.11.3",
|
|
||||||
"commitizen": "^4.2.5",
|
"commitizen": "^4.2.5",
|
||||||
"coveralls": "^3.1.1",
|
"coveralls": "^3.1.1",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"cz-conventional-changelog": "3.3.0",
|
"cz-conventional-changelog": "3.3.0",
|
||||||
"eslint": "^8.20.0",
|
"eslint": "^8.28.0",
|
||||||
"eslint-plugin-vue": "^9.2.0",
|
"eslint-plugin-vue": "^9.8.0",
|
||||||
"jsdom": "^20.0.0",
|
"jsdom": "^20.0.3",
|
||||||
"postcss-nested": "^5.0.6",
|
"postcss-nested": "^6.0.0",
|
||||||
"prettier": "^2.7.1",
|
"prettier": "^2.8.0",
|
||||||
"semantic-release": "^19.0.3",
|
"semantic-release": "^19.0.5",
|
||||||
"typescript": "^4.7.4",
|
"typescript": "^4.9.3",
|
||||||
"vite": "^3.0.0",
|
"vite": "^3.2.4",
|
||||||
"vitest": "^0.18.1",
|
"vitest": "^0.25.3",
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.2.45",
|
||||||
"vue-tsc": "^0.38.8"
|
"vue-tsc": "^1.0.10"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"commitizen": {
|
"commitizen": {
|
||||||
|
|||||||
@@ -153,6 +153,10 @@ export default {
|
|||||||
directives: { appendToBody },
|
directives: { appendToBody },
|
||||||
|
|
||||||
mixins: [pointerScroll, typeAheadPointer, ajax],
|
mixins: [pointerScroll, typeAheadPointer, ajax],
|
||||||
|
|
||||||
|
compatConfig: {
|
||||||
|
MODE: 3,
|
||||||
|
},
|
||||||
|
|
||||||
emits: [
|
emits: [
|
||||||
'open',
|
'open',
|
||||||
|
|||||||
Reference in New Issue
Block a user