updated external packages
This commit is contained in:
parent
ae1b6dd470
commit
a39a009395
4 changed files with 133 additions and 644 deletions
|
|
@ -56,7 +56,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="navbar-end">
|
<div class="navbar-end">
|
||||||
<div class="navbar-item has-dropdown" v-if="!config.app.basic_mode">
|
<div class="navbar-item has-dropdown" v-if="!config.app.basic_mode">
|
||||||
<a class="navbar-link" @click="e => openMenu(e)">
|
<a class="navbar-link" @click="(e: MouseEvent) => openMenu(e)">
|
||||||
<span class="icon"><i class="fas fa-tools" /></span>
|
<span class="icon"><i class="fas fa-tools" /></span>
|
||||||
<span>Other</span>
|
<span>Other</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
import { useStorage } from '@vueuse/core'
|
import { useStorage } from '@vueuse/core'
|
||||||
import type { convert_args_response } from "~/types/responses";
|
import type { convert_args_response } from '~/types/responses'
|
||||||
import type { StoreItem } from "~/types/store";
|
import type { StoreItem } from '~/types/store'
|
||||||
|
|
||||||
const runtimeConfig = useRuntimeConfig()
|
|
||||||
const toast = useNotification()
|
|
||||||
|
|
||||||
const AG_SEPARATOR = '.'
|
const AG_SEPARATOR = '.'
|
||||||
|
|
||||||
|
|
@ -303,6 +300,8 @@ const dirname = (filePath: string): string => {
|
||||||
* @param store - Whether to persist the notification (optional).
|
* @param store - Whether to persist the notification (optional).
|
||||||
*/
|
*/
|
||||||
const copyText = (str: string, notify: boolean = true, store: boolean = false): void => {
|
const copyText = (str: string, notify: boolean = true, store: boolean = false): void => {
|
||||||
|
const toast = useNotification()
|
||||||
|
|
||||||
if (navigator.clipboard) {
|
if (navigator.clipboard) {
|
||||||
navigator.clipboard.writeText(str).then(() => {
|
navigator.clipboard.writeText(str).then(() => {
|
||||||
if (notify) toast.success('Text copied to clipboard.')
|
if (notify) toast.success('Text copied to clipboard.')
|
||||||
|
|
@ -321,6 +320,7 @@ const copyText = (str: string, notify: boolean = true, store: boolean = false):
|
||||||
document.body.removeChild(el)
|
document.body.removeChild(el)
|
||||||
|
|
||||||
if (notify) {
|
if (notify) {
|
||||||
|
const toast = useNotification()
|
||||||
toast.success('Text copied to clipboard.', { store })
|
toast.success('Text copied to clipboard.', { store })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -548,6 +548,8 @@ const cleanObject = <T extends Record<string, any>>(item: T, fields: string[] =
|
||||||
* @returns The fully prefixed URI.
|
* @returns The fully prefixed URI.
|
||||||
*/
|
*/
|
||||||
const uri = (u: string): string => {
|
const uri = (u: string): string => {
|
||||||
|
const runtimeConfig = useRuntimeConfig()
|
||||||
|
|
||||||
if (!u || '/' === runtimeConfig.app.baseURL || !u.startsWith('/')) {
|
if (!u || '/' === runtimeConfig.app.baseURL || !u.startsWith('/')) {
|
||||||
return u
|
return u
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,5 +33,11 @@
|
||||||
"esbuild",
|
"esbuild",
|
||||||
"@parcel/watcher"
|
"@parcel/watcher"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"supports-color": "10.2.0",
|
||||||
|
"strip-ansi": "7.1.0",
|
||||||
|
"ansi-styles": "6.2.0",
|
||||||
|
"ansi-regex": "6.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue