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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ helpdesk/public/frontend
helpdesk/public/node_modules
helpdesk/www/helpdesk/index.html
desk/components.d.ts
desk/stats.html
3 changes: 2 additions & 1 deletion desk/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
// biome-ignore lint: disable
export {}
declare global {
const LucideAlignJustify: typeof import('~icons/lucide/align-justify')['default']
const LucideFileSearch: typeof import('~icons/lucide/file-search')['default']
const LucideKeyboard: typeof import('~icons/lucide/keyboard')['default']
const LucideSearch: typeof import('~icons/lucide/search')['default']
const LucideSearch: typeof import("~icons/lucide/search")["default"]
}
37 changes: 0 additions & 37 deletions desk/lucide.ts

This file was deleted.

31 changes: 9 additions & 22 deletions desk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
},
"dependencies": {
"@headlessui/vue": "^1.7.22",
"@iconify-json/lucide": "^1.1.99",
"@iconify-json/ph": "^1.1.5",
"@iconify/tools": "^2.2.6",
"@iconify/vue": "^4.1.1",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@tiptap/core": "^2.2.4",
"@twilio/voice-sdk": "^2.15.0",
Expand All @@ -23,37 +18,29 @@
"@vueuse/core": "^13.8.0",
"@vueuse/integrations": "^13.8.0",
"dayjs": "^1.11.7",
"echarts": "^5.4.1",
"frappe-ui": "0.1.192",
"frappe-ui": "0.1.224",
"gemoji": "^8.1.0",
"lodash": "^4.17.21",
"lucide-static": "^0.276.0",
"mime": "^3.0.0",
"pinia": "^2.0.33",
"pluralize": "^8.0.0",
"sanitize-html": "^2.10.0",
"socket.io-client": "^4.7.2",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.25.2",
"vee-validate": "^4.8.2",
"vue": "^3.5.14",
"vue-echarts": "^6.5.4",
"vue-router": "^4.2.2",
"vuedraggable": "^4.1.0",
"zod": "^3.21.4"
},
"resolutions": {
"cheerio": "1.0.0-rc.12",
"prosemirror-model": "1.25.1"
},
"devDependencies": {
"@vitejs/plugin-vue-jsx": "^3.0.1",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.5",
"prettier": "2.8.4",
"tailwindcss": "^3.4.15",
"typescript": "^5.0.2",
"vite": "^4.4.9",
"vite-plugin-pwa": "^0.20.5",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.5",
"tailwindcss": "^3.4.15"
"vite-plugin-pwa": "0.15.0"
},
"resolutions": {
"cheerio": "1.0.0-rc.12",
"prosemirror-model": "1.25.1"
}
}
2 changes: 1 addition & 1 deletion desk/src/components/CommunicationArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ import { CommentTextEditor, EmailEditor, TypingIndicator } from "@/components";
import { CommentIcon, EmailIcon } from "@/components/icons/";
import { useDevice } from "@/composables";
import { useScreenSize } from "@/composables/screen";
import { useShortcut } from "@/composables/shortcuts";
import { showCommentBox, showEmailBox } from "@/pages/ticket/modalStates";
import { ref, watch } from "vue";
import { useShortcut } from "@/composables/shortcuts";

const emit = defineEmits(["update"]);
const content = defineModel("content");
Expand Down
Loading
Loading