Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions demo/nuxt3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"postinstall": "nuxt prepare"
},
"dependencies": {
"@productdevbook/chatwoot": "^1.7.0"
"@productdevbook/chatwoot": "^2.0.0"
},
"devDependencies": {
"nuxt": "^3.15.4"
"nuxt": "^4.0.0"
}
}
5,210 changes: 3,143 additions & 2,067 deletions demo/pnpm-lock.yaml

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions demo/vue3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"preview": "vite preview"
},
"dependencies": {
"@productdevbook/chatwoot": "^1.7.0",
"@productdevbook/chatwoot": "^2.0.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^6.0.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vue-tsc": "^2.2.0"
"vite": "^7.0.0",
"vue-tsc": "^3.0.0"
}
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,21 @@
"vue": ">=3.3.0"
},
"dependencies": {
"@nuxt/kit": "^3.15.4",
"@nuxt/kit": "^4.0.0",
"defu": "^6.1.4"
},
"devDependencies": {
"@antfu/eslint-config": "4.3.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.4",
"@antfu/eslint-config": "5.0.0",
"@nuxt/module-builder": "^1.0.0",
"@nuxt/schema": "^4.0.0",
"@nuxt/test-utils": "^3.15.4",
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.6",
"@vue/test-utils": "^2.4.6",
"bumpp": "^10.0.3",
"eslint": "^9.20.1",
"happy-dom": "^17.1.1",
"nuxt": "^3.15.4",
"happy-dom": "^18.0.0",
"nuxt": "^4.0.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
Expand Down
2 changes: 1 addition & 1 deletion playground-nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"dependencies": {
"@productdevbook/chatwoot": "link:..",
"nuxt": "^3.15.4"
"nuxt": "^4.0.0"
},
"devDependencies": {
"@nuxtjs/partytown": "^1.6.0"
Expand Down
6 changes: 3 additions & 3 deletions playground-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
},
"devDependencies": {
"@productdevbook/chatwoot": "link:..",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^6.0.0",
"typescript": "^5.7.3",
"vite": "^6.1.1",
"vue-tsc": "^2.2.2"
"vite": "^7.0.0",
"vue-tsc": "^3.0.0"
}
}
7,122 changes: 4,275 additions & 2,847 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

70 changes: 35 additions & 35 deletions src/runtime/vue/vue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,41 +129,41 @@ export interface Chatwoot {
popoutChatWindow: () => void
}

type Locale =
| 'ar'
| 'ca'
| 'cs'
| 'da'
| 'de'
| 'el'
| 'en'
| 'es'
| 'fa'
| 'fi'
| 'fr'
| 'hi'
| 'hu'
| 'id'
| 'it'
| 'ja'
| 'ko'
| 'ml'
| 'nl'
| 'no'
| 'pl'
| 'pt_BR'
| 'pt'
| 'ro'
| 'ru'
| 'sk'
| 'sv'
| 'ta'
| 'th'
| 'tr'
| 'uk'
| 'vi'
| 'zh_CN'
| 'zh_TW'
type Locale
= | 'ar'
| 'ca'
| 'cs'
| 'da'
| 'de'
| 'el'
| 'en'
| 'es'
| 'fa'
| 'fi'
| 'fr'
| 'hi'
| 'hu'
| 'id'
| 'it'
| 'ja'
| 'ko'
| 'ml'
| 'nl'
| 'no'
| 'pl'
| 'pt_BR'
| 'pt'
| 'ro'
| 'ru'
| 'sk'
| 'sv'
| 'ta'
| 'th'
| 'tr'
| 'uk'
| 'vi'
| 'zh_CN'
| 'zh_TW'

export interface OptionPlugin {
/**
Expand Down
Loading