diff --git a/.eslintrc.json b/.eslintrc.json index 5c45f9fb3f0c2cb1a63ddc48800679cf70472594..984513eef212a8b2f87fe3e2c3a0573d611689ad 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,16 +1,16 @@ -{ - "extends": "@antfu", - "rules": { - "array-bracket-spacing": 0, - "no-console": 0, - "vue/component-tags-order": [ - "error", - { - "order": [["template", "script"], "style"] - } - ] - }, - "parserOptions": { - "ecmaVersion": 6 - } -} +{ + "extends": "@antfu/eslint-config-vue", + "rules": { + "array-bracket-spacing": 0, + "no-console": 0, + "vue/component-tags-order": [ + "error", + { + "order": [["template", "script"], "style"] + } + ] + }, + "parserOptions": { + "ecmaVersion": 6 + } +} diff --git a/.npmrc b/.npmrc index bf2e7648b0769ef6c6ed71925485d24530571bc7..54da594205be9c1a8010360a69e53506dc7c6489 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,2 @@ -shamefully-hoist=true +shamefully-hoist=true +strict-peer-dependencies=false diff --git a/build/base.config.ts b/build/base.config.ts index 924bef6d97054403d58e2cd6d5e45258fb02063e..201c37d583e24d69a018524c3450d270090741bc 100644 --- a/build/base.config.ts +++ b/build/base.config.ts @@ -3,6 +3,7 @@ import path from 'path' import { defineConfig } from 'vite' import Vue from '@vitejs/plugin-vue' +import VueJsx from '@vitejs/plugin-vue-jsx' import AutoImport from 'unplugin-auto-import/vite' export default defineConfig({ @@ -14,16 +15,19 @@ export default defineConfig({ }, plugins: [ Vue({ - reactivityTransform: true, include: [/\.vue$/, /\.md$/], }), - + VueJsx(), AutoImport({ imports: [ 'vue', - 'vue/macros', ], dts: true, }), ], + esbuild: { + jsxFactory: 'h', + jsxFragment: 'Fragment', + jsxInject: 'import { h } from "vue"', + }, }) diff --git a/package.json b/package.json index 02b8dc941696196f2c72b7748f18e435d54cdb2b..8d1efd06df25873912dbe894c871b767b0ef30a5 100644 --- a/package.json +++ b/package.json @@ -1,53 +1,54 @@ -{ - "name": "datav-vue3-monorepo", - "version": "0.1.7", - "description": "Datav for vue3+vite", - "packageManager": "pnpm@6.32.3", - "license": "MIT", - "private": "true", - "homepage": "https://github.com/vaemusic/datav-vue3", - "scripts": { - "dev": "pnpm run --filter @kjgl77/docs docs:dev", - "dev:docs": "pnpm run --filter @kjgl77/docs dev", - "build:docs": "pnpm run build:lib && pnpm run build", - "build": "pnpm run --filter @kjgl77/docs build", - "build:lib": "pnpm run --filter @kjgl77/datav-vue3 build:lib", - "gen": "node ./script/genNewComp/index.js", - "lint": "eslint .", - "typecheck": "vue-tsc --noEmit", - "test": "vitest" - }, - "dependencies": { - "vue": "^3.2.37" - }, - "devDependencies": { - "@antfu/eslint-config": "^0.20.7", - "@types/node": "^17.0.45", - "@vitejs/plugin-vue": "^2.3.3", - "eslint": "^8.18.0", - "fs-extra": "^10.1.0", - "handlebars": "^4.7.7", - "inquirer": "^8.2.4", - "jsdom": "^19.0.0", - "pnpm": "^6.32.24", - "typescript": "^4.7.4", - "unplugin-auto-import": "^0.7.2", - "vite": "^3.0.8", - "vitest": "^0.9.4", - "vue-tsc": "^0.34.17" - }, - "eslintConfig": { - "extends": "@antfu" - }, - "directories": { - "doc": "docs", - "test": "test" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/vaemusic/datav-vue3.git" - }, - "bugs": { - "url": "https://github.com/vaemusic/datav-vue3/issues" - } -} +{ + "name": "datav-vue3-monorepo", + "version": "0.1.7", + "description": "Datav for vue3+vite", + "packageManager": "pnpm@6.32.3", + "license": "MIT", + "private": "true", + "homepage": "https://github.com/vaemusic/datav-vue3", + "scripts": { + "dev": "pnpm run --filter @kjgl77/docs docs:dev", + "dev:docs": "pnpm run --filter @kjgl77/docs dev", + "build:docs": "pnpm run build:lib && pnpm run build", + "build": "pnpm run --filter @kjgl77/docs build", + "build:lib": "pnpm run --filter @kjgl77/datav-vue3 build:lib", + "gen": "node ./script/genNewComp/index.js", + "lint": "eslint .", + "typecheck": "vue-tsc --noEmit", + "test": "vitest" + }, + "dependencies": { + "vue": "^3.2.39" + }, + "devDependencies": { + "@antfu/eslint-config-vue": "^0.26.2", + "@vitejs/plugin-vue-jsx": "^2.0.0", + "@types/node": "^17.0.45", + "@vitejs/plugin-vue": "^2.3.3", + "eslint": "^8.18.0", + "fs-extra": "^10.1.0", + "handlebars": "^4.7.7", + "inquirer": "^8.2.4", + "jsdom": "^19.0.0", + "pnpm": "^6.32.24", + "typescript": "^4.7.4", + "unplugin-auto-import": "^0.7.2", + "vite": "^3.0.8", + "vitest": "^0.9.4", + "vue-tsc": "^0.34.17" + }, + "eslintConfig": { + "extends": "@antfu" + }, + "directories": { + "doc": "docs", + "test": "test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/vaemusic/datav-vue3.git" + }, + "bugs": { + "url": "https://github.com/vaemusic/datav-vue3/issues" + } +} diff --git a/packages/datav-vue3/auto-imports.d.ts b/packages/datav-vue3/auto-imports.d.ts index 3dc0c3bcbc22c86e8ee4048a6c6fe58272fbcaeb..753c27527a3a5acbcba762db79e710d60e9ccee3 100644 --- a/packages/datav-vue3/auto-imports.d.ts +++ b/packages/datav-vue3/auto-imports.d.ts @@ -1,13 +1,6 @@ // Generated by 'unplugin-auto-import' // We suggest you to commit this file into source control declare global { - const $: typeof import('vue/macros')['$'] - const $$: typeof import('vue/macros')['$$'] - const $computed: typeof import('vue/macros')['$computed'] - const $customRef: typeof import('vue/macros')['$customRef'] - const $ref: typeof import('vue/macros')['$ref'] - const $shallowRef: typeof import('vue/macros')['$shallowRef'] - const $toRef: typeof import('vue/macros')['$toRef'] const computed: typeof import('vue')['computed'] const createApp: typeof import('vue')['createApp'] const customRef: typeof import('vue')['customRef'] diff --git a/packages/datav-vue3/components/BorderBox1/index.ts b/packages/datav-vue3/components/BorderBox1/index.ts index c888ed2694214943b68907225fa60dc7df7e55b3..84ffc1ee43dc3a29c46852e0d9de332b75349235 100644 --- a/packages/datav-vue3/components/BorderBox1/index.ts +++ b/packages/datav-vue3/components/BorderBox1/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox1 from './src/index.vue' - -export const BorderBox1Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox1', BorderBox1) - }, -} - -export { - BorderBox1, -} +import type { App, Plugin } from 'vue' +import BorderBox1 from './src/BorderBox1' + +export const BorderBox1Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox1', BorderBox1) + }, +} + +export { + BorderBox1, +} diff --git a/packages/datav-vue3/components/BorderBox1/src/BorderBox1.tsx b/packages/datav-vue3/components/BorderBox1/src/BorderBox1.tsx new file mode 100644 index 0000000000000000000000000000000000000000..091b08b9094627c49274118d0be8234491b2c90f --- /dev/null +++ b/packages/datav-vue3/components/BorderBox1/src/BorderBox1.tsx @@ -0,0 +1,85 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const border = ['left-top', 'right-top', 'left-bottom', 'right-bottom'] as const +const defaultColor = ['#4fd2dd', '#235fa7'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox1 = ref(null) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + const { width, height, initWH } = autoResize(borderBox1) + + return { + width, + height, + initWH, + mergedColor, + borderBox1, + } + }, + render() { + const { backgroundColor, width, height, mergedColor, $slots } = this + return ( +
+ + + + + { + border.map((item) => { + return ( + + + + + + + + + + + + ) + }) + } + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox1/src/index.less b/packages/datav-vue3/components/BorderBox1/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..aceb6244b6f700452ed42de714937118bed95744 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox1/src/index.less @@ -0,0 +1,33 @@ +.dv-border-box-1 { + position: relative; + width: 100%; + height: 100%; + + .dv-border { + position: absolute; + display: block; + } + + .right-top { + right: 0px; + transform: rotateY(180deg); + } + + .left-bottom { + bottom: 0px; + transform: rotateX(180deg); + } + + .right-bottom { + right: 0px; + bottom: 0px; + transform: rotateX(180deg) rotateY(180deg); + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + text-align: center; + } +} \ No newline at end of file diff --git a/packages/datav-vue3/components/BorderBox1/src/index.vue b/packages/datav-vue3/components/BorderBox1/src/index.vue deleted file mode 100644 index 1a68e9cb867c6a02919477e856176f0642f8abef..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox1/src/index.vue +++ /dev/null @@ -1,126 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox10/index.ts b/packages/datav-vue3/components/BorderBox10/index.ts index bf794641afdf83cf3c1946c9740c20d1d0e9d746..15f7eb8ae596cdd6ee7e0abf44163bc7cbcd107c 100644 --- a/packages/datav-vue3/components/BorderBox10/index.ts +++ b/packages/datav-vue3/components/BorderBox10/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox10 from './src/index.vue' - -export const BorderBox10Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox10', BorderBox10) - }, -} - -export { - BorderBox10, -} +import type { App, Plugin } from 'vue' +import BorderBox10 from './src/BorderBox10' + +export const BorderBox10Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox10', BorderBox10) + }, +} + +export { + BorderBox10, +} diff --git a/packages/datav-vue3/components/BorderBox10/src/BorderBox10.tsx b/packages/datav-vue3/components/BorderBox10/src/BorderBox10.tsx new file mode 100644 index 0000000000000000000000000000000000000000..21552c94b5492bd9140bbc1b3bc78462681e17aa --- /dev/null +++ b/packages/datav-vue3/components/BorderBox10/src/BorderBox10.tsx @@ -0,0 +1,63 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const border = ['left-top', 'right-top', 'left-bottom', 'right-bottom'] as const +const defaultColor = ['#1d48c4', '#d3e1f8'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox10 = ref(null) + + const { width, height, initWH } = autoResize(borderBox10) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + mergedColor, + borderBox10, + } + }, + render() { + const { $slots, width, height, mergedColor, backgroundColor } = this + return ( +
+ + + + { + border.map((item) => { + return ( + + + + ) + }) + } + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox10/src/index.less b/packages/datav-vue3/components/BorderBox10/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..cb33cf27953108254065d28cd7bdf47e9b860941 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox10/src/index.less @@ -0,0 +1,33 @@ +.dv-border-box-10 { + position: relative; + width: 100%; + height: 100%; + border-radius: 6px; + + .dv-border-svg-container { + position: absolute; + display: block; + } + + .right-top { + right: 0px; + transform: rotateY(180deg); + } + + .left-bottom { + bottom: 0px; + transform: rotateX(180deg); + } + + .right-bottom { + right: 0px; + bottom: 0px; + transform: rotateX(180deg) rotateY(180deg); + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox10/src/index.vue b/packages/datav-vue3/components/BorderBox10/src/index.vue deleted file mode 100644 index a6ebe372478fdd248266c52dddad8cbe8d231796..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox10/src/index.vue +++ /dev/null @@ -1,109 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox11/index.ts b/packages/datav-vue3/components/BorderBox11/index.ts index 9793472e83663e38aacca7fc1129068ce2fc9945..3edc2df716216c9951eb7de3f1f5a416df78b9f8 100644 --- a/packages/datav-vue3/components/BorderBox11/index.ts +++ b/packages/datav-vue3/components/BorderBox11/index.ts @@ -1,5 +1,5 @@ import type { App, Plugin } from 'vue' -import BorderBox11 from './src/index.vue' +import BorderBox11 from './src/BorderBox11' export const BorderBox11Plugin: Plugin = { install(app: App) { diff --git a/packages/datav-vue3/components/BorderBox11/src/index.vue b/packages/datav-vue3/components/BorderBox11/src/BorderBox11.tsx similarity index 37% rename from packages/datav-vue3/components/BorderBox11/src/index.vue rename to packages/datav-vue3/components/BorderBox11/src/BorderBox11.tsx index 643572d5a85dd14ea335ac119487061c9b8a0f02..e0aa2cfae9c4280b5bcec1efdbccba7379a4206c 100644 --- a/packages/datav-vue3/components/BorderBox11/src/index.vue +++ b/packages/datav-vue3/components/BorderBox11/src/BorderBox11.tsx @@ -1,32 +1,81 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox11/src/index.less b/packages/datav-vue3/components/BorderBox11/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..96f26b2c7f6ead785556400af45f6612a56ab491 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox11/src/index.less @@ -0,0 +1,24 @@ +.dv-border-box-11 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + + & > polyline { + fill: none; + stroke-width: 1; + } + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox12/index.ts b/packages/datav-vue3/components/BorderBox12/index.ts index 8c60e9d74f7f32da7def9057aa277efd9a844297..d8755039991570c47fda8d70af7dc8fd407de8ac 100644 --- a/packages/datav-vue3/components/BorderBox12/index.ts +++ b/packages/datav-vue3/components/BorderBox12/index.ts @@ -1,5 +1,5 @@ import type { App, Plugin } from 'vue' -import BorderBox12 from './src/index.vue' +import BorderBox12 from './src/BorderBox12' export const BorderBox12Plugin: Plugin = { install(app: App) { diff --git a/packages/datav-vue3/components/BorderBox12/src/BorderBox12.tsx b/packages/datav-vue3/components/BorderBox12/src/BorderBox12.tsx new file mode 100644 index 0000000000000000000000000000000000000000..032ed101694a7fc900e4f21116156c6bc6c03672 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox12/src/BorderBox12.tsx @@ -0,0 +1,129 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { uuid } from 'packages/datav-vue3/utils' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +// @ts-expect-error: not ts version lib +import { fade } from '@jiaminghi/color' +import './index.less' + +const defaultColor = ['#2e6099', '#7ce7fd'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const id = uuid() + const borderBox12 = ref(null) + + const { width, height, initWH } = autoResize(borderBox12) + + const filterId = ref(`borderr-box-12-filterId-${id}`) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + filterId, + mergedColor, + initWH, + borderBox12, + } + }, + render() { + const { $slots, width, height, filterId, mergedColor, backgroundColor } = this + return ( +
+ + + + + + + + + + + + + + + + { + width && height + && + } + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox12/src/index.less b/packages/datav-vue3/components/BorderBox12/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..e80ca1d14c629ce8956156d4c856963e45c61d26 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox12/src/index.less @@ -0,0 +1,19 @@ +.dv-border-box-12 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox12/src/index.vue b/packages/datav-vue3/components/BorderBox12/src/index.vue deleted file mode 100644 index 466421e09cf5289cf65a33d444832b28a5b99b2c..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox12/src/index.vue +++ /dev/null @@ -1,158 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox13/index.ts b/packages/datav-vue3/components/BorderBox13/index.ts index 9f5905d435c176c718df7a70c1ed14d0365abfce..61016b5d8741aea3f673cd71248c1a9b6d7b4e74 100644 --- a/packages/datav-vue3/components/BorderBox13/index.ts +++ b/packages/datav-vue3/components/BorderBox13/index.ts @@ -1,5 +1,5 @@ import type { App, Plugin } from 'vue' -import BorderBox13 from './src/index.vue' +import BorderBox13 from './src/BorderBox13' export const BorderBox13Plugin: Plugin = { install(app: App) { diff --git a/packages/datav-vue3/components/BorderBox13/src/BorderBox13.tsx b/packages/datav-vue3/components/BorderBox13/src/BorderBox13.tsx new file mode 100644 index 0000000000000000000000000000000000000000..e0963c357c6f672a7e36953ee8ece134a08df420 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox13/src/BorderBox13.tsx @@ -0,0 +1,70 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const defaultColor = ['#6586ec', '#2cf7fe'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox13 = ref(null) + const { width, height, initWH } = autoResize(borderBox13) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + mergedColor, + initWH, + borderBox13, + } + }, + render() { + const { $slots, width, height, mergedColor, backgroundColor } = this + return ( +
+ + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox13/src/index.less b/packages/datav-vue3/components/BorderBox13/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..b957bfd175ebd409fa5cbb36ec4d013087356e0f --- /dev/null +++ b/packages/datav-vue3/components/BorderBox13/src/index.less @@ -0,0 +1,19 @@ +.dv-border-box-13 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox13/src/index.vue b/packages/datav-vue3/components/BorderBox13/src/index.vue deleted file mode 100644 index a82c4ea8db7e4f7f21d766091e51004d61e77555..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox13/src/index.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox2/index.ts b/packages/datav-vue3/components/BorderBox2/index.ts index e25569e06f5d7b1a25d78a4e6c620105e359b67c..44b13fe3af8f7e63b6b652d9c3ce635738ebd5fb 100644 --- a/packages/datav-vue3/components/BorderBox2/index.ts +++ b/packages/datav-vue3/components/BorderBox2/index.ts @@ -1,5 +1,5 @@ import type { App, Plugin } from 'vue' -import BorderBox2 from './src/index.vue' +import BorderBox2 from './src/BorderBox2' export const BorderBox2Plugin: Plugin = { install(app: App) { diff --git a/packages/datav-vue3/components/BorderBox2/src/BorderBox2.tsx b/packages/datav-vue3/components/BorderBox2/src/BorderBox2.tsx new file mode 100644 index 0000000000000000000000000000000000000000..9d048907a128e3ea561b23018637e240bd8df637 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox2/src/BorderBox2.tsx @@ -0,0 +1,58 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const defaultColor = ['#fff', 'rgba(255, 255, 255, 0.6)'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox2 = ref(null) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + const { width, height, initWH } = autoResize(borderBox2) + + return { + width, + height, + initWH, + mergedColor, + borderBox2, + } + }, + render() { + const { $slots, backgroundColor, width, height, mergedColor } = this + return ( +
+ + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox2/src/index.less b/packages/datav-vue3/components/BorderBox2/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..c22df7173b5fc8f463844b8a07aee6314b699cec --- /dev/null +++ b/packages/datav-vue3/components/BorderBox2/src/index.less @@ -0,0 +1,24 @@ +.dv-border-box-2 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + + &>polyline { + fill: none; + stroke-width: 1; + } + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} \ No newline at end of file diff --git a/packages/datav-vue3/components/BorderBox2/src/index.vue b/packages/datav-vue3/components/BorderBox2/src/index.vue deleted file mode 100644 index df7b0c034f1109ed875796f5c5721b7218c4a848..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox2/src/index.vue +++ /dev/null @@ -1,96 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox3/index.ts b/packages/datav-vue3/components/BorderBox3/index.ts index 3242c7b0dffcc1a6e05fc2347cae30f791d00373..1fbbb77adbab9ea89bf26e997fd83f847cedd004 100644 --- a/packages/datav-vue3/components/BorderBox3/index.ts +++ b/packages/datav-vue3/components/BorderBox3/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox3 from './src/index.vue' - -export const BorderBox3Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox3', BorderBox3) - }, -} - -export { - BorderBox3, -} +import type { App, Plugin } from 'vue' +import BorderBox3 from './src/BorderBox3' + +export const BorderBox3Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox3', BorderBox3) + }, +} + +export { + BorderBox3, +} diff --git a/packages/datav-vue3/components/BorderBox3/src/BorderBox3.tsx b/packages/datav-vue3/components/BorderBox3/src/BorderBox3.tsx new file mode 100644 index 0000000000000000000000000000000000000000..00105688423e9cec48c8504503fc1ee3d12b4152 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox3/src/BorderBox3.tsx @@ -0,0 +1,66 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const defaultColor = ['#2862b7', '#2862b7'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox3 = ref(null) + + const { width, height, initWH } = autoResize(borderBox3) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + mergedColor, + initWH, + borderBox3, + } + }, + render() { + const { $slots, width, height, backgroundColor, mergedColor } = this + return ( +
+ + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox3/src/index.less b/packages/datav-vue3/components/BorderBox3/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..b75b4a40fed6fcd97a557028c425a9b25506685a --- /dev/null +++ b/packages/datav-vue3/components/BorderBox3/src/index.less @@ -0,0 +1,31 @@ +.dv-border-box-3 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + + & > polyline { + fill: none; + } + } + + .dv-bb3-line1 { + stroke-width: 3; + } + + .dv-bb3-line2 { + stroke-width: 1; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} \ No newline at end of file diff --git a/packages/datav-vue3/components/BorderBox3/src/index.vue b/packages/datav-vue3/components/BorderBox3/src/index.vue deleted file mode 100644 index e8ac34d98f51a94d42da5b5f2a28ba0a4c06e930..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox3/src/index.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox4/index.ts b/packages/datav-vue3/components/BorderBox4/index.ts index 9ed86339f5973150dc9f1276ececaa6b85fb1a4f..e86ab1ef37c598197f9f5a5d2823c189eea76c24 100644 --- a/packages/datav-vue3/components/BorderBox4/index.ts +++ b/packages/datav-vue3/components/BorderBox4/index.ts @@ -1,5 +1,5 @@ import type { App, Plugin } from 'vue' -import BorderBox4 from './src/index.vue' +import BorderBox4 from './src/BorderBox4' export const BorderBox4Plugin: Plugin = { install(app: App) { diff --git a/packages/datav-vue3/components/BorderBox4/src/BorderBox4.tsx b/packages/datav-vue3/components/BorderBox4/src/BorderBox4.tsx new file mode 100644 index 0000000000000000000000000000000000000000..7f829988c320c70802c0fd9a84fe38720544e542 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox4/src/BorderBox4.tsx @@ -0,0 +1,78 @@ +import type { ExtractPropTypes } from 'vue' +import { defineComponent, renderSlot } from 'vue' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const borderBox4Props = { + ...borderBoxProps, + reverse: { + type: Boolean, + default: false, + }, +} + +export type BorderBox4Props = ExtractPropTypes + +const defaultColor = ['red', 'rgba(0,0,255,0.8)'] + +export default defineComponent({ + props: borderBox4Props, + setup(props: BorderBox4Props) { + const borderBox4 = ref(null) + + const { width, height, initWH } = autoResize(borderBox4) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + mergedColor, + borderBox4, + } + }, + render() { + const { $slots, backgroundColor, reverse, width, height, mergedColor } = this + return ( +
+ + + + + + + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) + diff --git a/packages/datav-vue3/components/BorderBox4/src/index.less b/packages/datav-vue3/components/BorderBox4/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..3550c595ec3846207e42c0add32cdb7f283f9ed7 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox4/src/index.less @@ -0,0 +1,78 @@ +.dv-border-box-4 { + position: relative; + width: 100%; + height: 100%; + + .dv-reverse { + transform: rotate(180deg); + } + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + + & > polyline { + fill: none; + } + } + + .sw1 { + stroke-width: 1; + } + + .sw3 { + stroke-width: 3px; + stroke-linecap: round; + } + + .dv-bb4-line-1 { + .sw1; + } + + .dv-bb4-line-2 { + .sw1; + } + + .dv-bb4-line-3 { + .sw3; + } + + .dv-bb4-line-4 { + .sw3; + } + + .dv-bb4-line-5 { + .sw1; + } + + .dv-bb4-line-6 { + .sw1; + } + + .dv-bb4-line-7 { + .sw1; + } + + .dv-bb4-line-8 { + .sw3; + } + + .dv-bb4-line-9 { + .sw3; + stroke-dasharray: 100 250; + } + + .dv-bb4-line-10 { + .sw1; + stroke-dasharray: 80 270; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox4/src/index.vue b/packages/datav-vue3/components/BorderBox4/src/index.vue deleted file mode 100644 index 92d5a198161028febdd77aed37e7cf486ece852f..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox4/src/index.vue +++ /dev/null @@ -1,163 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox5/index.ts b/packages/datav-vue3/components/BorderBox5/index.ts index dff1c58c5537f1a4c666ff7c67be29c2542e75ad..aa47ef76a08e787bb39aa0265857b6e42aa8d888 100644 --- a/packages/datav-vue3/components/BorderBox5/index.ts +++ b/packages/datav-vue3/components/BorderBox5/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox5 from './src/index.vue' - -export const BorderBox5Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox5', BorderBox5) - }, -} - -export { - BorderBox5, -} +import type { App, Plugin } from 'vue' +import BorderBox5 from './src/BorderBox5' + +export const BorderBox5Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox5', BorderBox5) + }, +} + +export { + BorderBox5, +} diff --git a/packages/datav-vue3/components/BorderBox5/src/BorderBox5.tsx b/packages/datav-vue3/components/BorderBox5/src/BorderBox5.tsx new file mode 100644 index 0000000000000000000000000000000000000000..c3bc5e4b9ed098297df84919d4e10ece871a20d8 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox5/src/BorderBox5.tsx @@ -0,0 +1,72 @@ +import type { ExtractPropTypes } from 'vue' +import { defineComponent, renderSlot } from 'vue' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const borderBox5Props = { + ...borderBoxProps, + reverse: { + type: Boolean, + default: false, + }, +} + +export type BorderBox5Props = ExtractPropTypes + +const defaultColor = ['rgba(255, 255, 255, 0.35)', 'rgba(255, 255, 255, 0.20)'] + +export default defineComponent({ + props: borderBox5Props, + setup(props: BorderBox5Props) { + const borderBox5 = ref(null) + + const { width, height, initWH } = autoResize(borderBox5) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + mergedColor, + borderBox5, + } + }, + render() { + const { $slots, width, height, mergedColor, backgroundColor, reverse } = this + return ( +
+ + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox5/src/index.less b/packages/datav-vue3/components/BorderBox5/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..b0f3d3cc3f1035a377a3384fd918eb2b1ffb3276 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox5/src/index.less @@ -0,0 +1,39 @@ +.dv-border-box-5 { + position: relative; + width: 100%; + height: 100%; + + .dv-reverse { + transform: rotate(180deg); + } + + .dv-border-svg-container { + position: absolute; + top: 0px; + left: 0px; + width: 100%; + height: 100%; + + & > polyline { + fill: none; + } + } + + .dv-bb5-line-1, .dv-bb5-line-2 { + stroke-width: 1; + } + + .dv-bb5-line-3, .dv-bb5-line-6 { + stroke-width: 5; + } + + .dv-bb5-line-4, .dv-bb5-line-5 { + stroke-width: 2; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox5/src/index.vue b/packages/datav-vue3/components/BorderBox5/src/index.vue deleted file mode 100644 index 895ba8f575151705cbb2990f8214e21d5d13e1b5..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox5/src/index.vue +++ /dev/null @@ -1,119 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox6/index.ts b/packages/datav-vue3/components/BorderBox6/index.ts index 5e74e9b9b41043dedd9b106330738c5f1422e273..4cf1b98a269b1ab66b6e0fef217d14cc0ad5c108 100644 --- a/packages/datav-vue3/components/BorderBox6/index.ts +++ b/packages/datav-vue3/components/BorderBox6/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox6 from './src/index.vue' - -export const BorderBox6Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox6', BorderBox6) - }, -} - -export { - BorderBox6, -} +import type { App, Plugin } from 'vue' +import BorderBox6 from './src/BorderBox6' + +export const BorderBox6Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox6', BorderBox6) + }, +} + +export { + BorderBox6, +} diff --git a/packages/datav-vue3/components/BorderBox6/src/BorderBox6.tsx b/packages/datav-vue3/components/BorderBox6/src/BorderBox6.tsx new file mode 100644 index 0000000000000000000000000000000000000000..07e30779b2808fc356ae2ccc2ecf69fc11dd2d6d --- /dev/null +++ b/packages/datav-vue3/components/BorderBox6/src/BorderBox6.tsx @@ -0,0 +1,62 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const defaultColor = ['rgba(255, 255, 255, 0.35)', 'gray'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox6 = ref(null) + + const { width, height, initWH } = autoResize(borderBox6) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + mergedColor, + borderBox6, + } + }, + render() { + const { $slots, width, height, mergedColor, backgroundColor } = this + return ( +
+ + + + + + + + + + + + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox6/src/index.less b/packages/datav-vue3/components/BorderBox6/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..657bea48cb0dda8fc73521cae2dc97f14a78c90b --- /dev/null +++ b/packages/datav-vue3/components/BorderBox6/src/index.less @@ -0,0 +1,24 @@ +.dv-border-box-6 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + top: 0px; + left: 0px; + width: 100%; + height: 100%; + + & > polyline { + fill: none; + stroke-width: 1; + } + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox6/src/index.vue b/packages/datav-vue3/components/BorderBox6/src/index.vue deleted file mode 100644 index d08f8e67d1677f38b30694e5e19d7949e2af9e3f..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox6/src/index.vue +++ /dev/null @@ -1,100 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox7/index.ts b/packages/datav-vue3/components/BorderBox7/index.ts index 6e3b2c0afea2801aba13f6ca84280e5200cff2b5..8c07f52bd633e9e2e9d7d3e5fa37241b45216ba4 100644 --- a/packages/datav-vue3/components/BorderBox7/index.ts +++ b/packages/datav-vue3/components/BorderBox7/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox7 from './src/index.vue' - -export const BorderBox7Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox7', BorderBox7) - }, -} - -export { - BorderBox7, -} +import type { App, Plugin } from 'vue' +import BorderBox7 from './src/BorderBox7' + +export const BorderBox7Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox7', BorderBox7) + }, +} + +export { + BorderBox7, +} diff --git a/packages/datav-vue3/components/BorderBox7/src/BorderBox7.tsx b/packages/datav-vue3/components/BorderBox7/src/BorderBox7.tsx new file mode 100644 index 0000000000000000000000000000000000000000..43d86803ee7d146aeb8f5326526c9ec108d3f6c9 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox7/src/BorderBox7.tsx @@ -0,0 +1,53 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const defaultColor = ['rgba(128,128,128,0.3)', 'rgba(128,128,128,0.5)'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const borderBox7 = ref(null) + + const { width, height, initWH } = autoResize(borderBox7) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + mergedColor, + borderBox7, + } + }, + render() { + const { $slots, width, height, mergedColor, backgroundColor } = this + return ( +
+ + + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox7/src/index.less b/packages/datav-vue3/components/BorderBox7/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..020e1e52f5e342cd6a44e96b1ae4a7fc39092527 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox7/src/index.less @@ -0,0 +1,32 @@ +.dv-border-box-7 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + top: 0px; + left: 0px; + width: 100%; + height: 100%; + + & > polyline { + fill: none; + stroke-linecap: round; + } + } + + .dv-bb7-line-width-2 { + stroke-width: 2; + } + + .dv-bb7-line-width-5 { + stroke-width: 5; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox7/src/index.vue b/packages/datav-vue3/components/BorderBox7/src/index.vue deleted file mode 100644 index ae50479ada75a0c2b467a9e9e2ada66d155a4b09..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox7/src/index.vue +++ /dev/null @@ -1,100 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox8/index.ts b/packages/datav-vue3/components/BorderBox8/index.ts index f0402ac6646eff86506f0964e9db79ce3ec3f705..ec47bb0be2752d445abff8edabc817ca0f16e292 100644 --- a/packages/datav-vue3/components/BorderBox8/index.ts +++ b/packages/datav-vue3/components/BorderBox8/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox8 from './src/index.vue' - -export const BorderBox8Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox8', BorderBox8) - }, -} - -export { - BorderBox8, -} +import type { App, Plugin } from 'vue' +import BorderBox8 from './src/BorderBox8' + +export const BorderBox8Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox8', BorderBox8) + }, +} + +export { + BorderBox8, +} diff --git a/packages/datav-vue3/components/BorderBox8/src/BorderBox8.tsx b/packages/datav-vue3/components/BorderBox8/src/BorderBox8.tsx new file mode 100644 index 0000000000000000000000000000000000000000..c3408bcd4329bdee876166d902dd7be067bb389e --- /dev/null +++ b/packages/datav-vue3/components/BorderBox8/src/BorderBox8.tsx @@ -0,0 +1,138 @@ +import type { ExtractPropTypes } from 'vue' +import { defineComponent, h, renderSlot } from 'vue' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { uuid } from 'packages/datav-vue3/utils' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const borderBox8Props = { + ...borderBoxProps, + reverse: { + type: Boolean, + default: false, + }, + dur: { + type: Number, + default: 3, + }, +} + +export type BorderBox8Props = ExtractPropTypes + +const defaultColor = ['#235fa7', '#4fd2dd'] + +export default defineComponent({ + props: borderBox8Props, + setup(props: BorderBox8Props) { + const id = uuid() + const borderBox8 = ref(null) + + const state = reactive({ + path: `border-box-8-path-${id}`, + gradient: `border-box-8-gradient-${id}`, + mask: `border-box-8-mask-${id}`, + }) + + const { width, height, initWH } = autoResize(borderBox8) + + const length = computed(() => { + return (width.value + height.value - 5) * 2 + }) + + const pathD = computed(() => { + if (props.reverse) + return `M 2.5, 2.5 L 2.5, ${height.value - 2.5} L ${width.value - 2.5}, ${height.value - 2.5} L ${width.value - 2.5}, 2.5 L 2.5, 2.5` + + return `M2.5, 2.5 L${width.value - 2.5}, 2.5 L${width.value - 2.5}, ${height.value - 2.5} L2.5, ${height.value - 2.5} L2.5, 2.5` + }) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + state, + mergedColor, + pathD, + length, + borderBox8, + } + }, + render() { + const { $slots, width, height, state, mergedColor, pathD, length, backgroundColor, dur } = this + return ( +
+ + + + + + + + + + + { + /* 报错:类型“ElementAttrs”上不存在属性“path” */ + /* */} + {h('animateMotion', { + dur: `${dur}s`, + path: pathD, + rotate: 'auto', + repeatCount: 'indefinite', + })} + + + + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox8/src/index.less b/packages/datav-vue3/components/BorderBox8/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..ecb218a0a931c691679b785d20ef153de279ecdd --- /dev/null +++ b/packages/datav-vue3/components/BorderBox8/src/index.less @@ -0,0 +1,19 @@ +.dv-border-box-8 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + left: 0px; + top: 0px; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox8/src/index.vue b/packages/datav-vue3/components/BorderBox8/src/index.vue deleted file mode 100644 index 60c221739ec4eaa472bcf84fad46450bccbe3fed..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox8/src/index.vue +++ /dev/null @@ -1,153 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/BorderBox9/index.ts b/packages/datav-vue3/components/BorderBox9/index.ts index 0ee5bc6170d91b8e5f3619dfbdd12ef4a15e99a1..15a97d16593b19ea132bbe870e7f247421a01ad3 100644 --- a/packages/datav-vue3/components/BorderBox9/index.ts +++ b/packages/datav-vue3/components/BorderBox9/index.ts @@ -1,12 +1,12 @@ -import type { App, Plugin } from 'vue' -import BorderBox9 from './src/index.vue' - -export const BorderBox9Plugin: Plugin = { - install(app: App) { - app.component('DvBorderBox9', BorderBox9) - }, -} - -export { - BorderBox9, -} +import type { App, Plugin } from 'vue' +import BorderBox9 from './src/BorderBox9' + +export const BorderBox9Plugin: Plugin = { + install(app: App) { + app.component('DvBorderBox9', BorderBox9) + }, +} + +export { + BorderBox9, +} diff --git a/packages/datav-vue3/components/BorderBox9/src/BorderBox9.tsx b/packages/datav-vue3/components/BorderBox9/src/BorderBox9.tsx new file mode 100644 index 0000000000000000000000000000000000000000..7136e92aa002c94eca63f8906e5e065b67d90647 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox9/src/BorderBox9.tsx @@ -0,0 +1,164 @@ +import { defineComponent, renderSlot } from 'vue' +import type { BorderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import { borderBoxProps } from 'packages/datav-vue3/types/BorderProps' +import autoResize from 'packages/datav-vue3/utils/autoResize' +import { uuid } from 'packages/datav-vue3/utils' +import { useMergedColor } from 'packages/datav-vue3/composables/useMergedColor' +import './index.less' + +const defaultColor = ['#11eefd', '#0078d2'] + +export default defineComponent({ + props: borderBoxProps, + setup(props: BorderBoxProps) { + const id = uuid() + const borderBox9 = ref(null) + + const { width, height, initWH } = autoResize(borderBox9) + + const state = reactive({ + gradientId: `border-box-9-gradient-${id}`, + maskId: `border-box-9-mask-${id}`, + }) + + const mergedColor = useMergedColor(defaultColor, toRef(props, 'color')) + + return { + width, + height, + initWH, + state, + mergedColor, + borderBox9, + } + }, + render() { + const { $slots, width, height, state, mergedColor, backgroundColor } = this + return ( +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ {renderSlot($slots, 'default')} +
+
+ ) + }, +}) diff --git a/packages/datav-vue3/components/BorderBox9/src/index.less b/packages/datav-vue3/components/BorderBox9/src/index.less new file mode 100644 index 0000000000000000000000000000000000000000..8601443ede2022682e47c2a3e18b68991b153fc9 --- /dev/null +++ b/packages/datav-vue3/components/BorderBox9/src/index.less @@ -0,0 +1,19 @@ +.dv-border-box-9 { + position: relative; + width: 100%; + height: 100%; + + .dv-border-svg-container { + position: absolute; + width: 100%; + height: 100%; + left: 0px; + top: 0px; + } + + .border-box-content { + position: relative; + width: 100%; + height: 100%; + } +} diff --git a/packages/datav-vue3/components/BorderBox9/src/index.vue b/packages/datav-vue3/components/BorderBox9/src/index.vue deleted file mode 100644 index 588bdeb94df6630214056a2b6d13e9fa7415fd19..0000000000000000000000000000000000000000 --- a/packages/datav-vue3/components/BorderBox9/src/index.vue +++ /dev/null @@ -1,193 +0,0 @@ - - - - - diff --git a/packages/datav-vue3/components/Decoration11/src/index.vue b/packages/datav-vue3/components/Decoration11/src/index.vue index ed8414924b598f32be51d8bd55e20fdd010d3991..96d6c9da444db03700959e4f0dcdb5fa70e30e3c 100644 --- a/packages/datav-vue3/components/Decoration11/src/index.vue +++ b/packages/datav-vue3/components/Decoration11/src/index.vue @@ -4,7 +4,7 @@ import autoResize from 'packages/datav-vue3/utils/autoResize' import { deepClone, deepMerge, uuid } from 'packages/datav-vue3/utils' - import { fade } from '@jiaminghi/color' const props = defineProps({ @@ -101,7 +100,9 @@ const props = defineProps({ }) const id = uuid() + const decoration9 = ref(null) + const state = reactive({ polygonId: `decoration-9-polygon-${id}`, @@ -138,7 +139,6 @@ function onResize() { function mergeColor() { state.mergedColor = deepMerge(deepClone(state.defaultColor, true), props.color || []) } - diff --git a/packages/example/src/assets/vue.svg b/packages/example/src/assets/vue.svg new file mode 100644 index 0000000000000000000000000000000000000000..770e9d333ee70e75fe7c0bad7fb13e4f6ed4627a --- /dev/null +++ b/packages/example/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/example/src/main.ts b/packages/example/src/main.ts new file mode 100644 index 0000000000000000000000000000000000000000..2425c0f745bef4d009cb6661b62fd9dfd62960b0 --- /dev/null +++ b/packages/example/src/main.ts @@ -0,0 +1,5 @@ +import { createApp } from 'vue' +import './style.css' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/packages/example/src/style.css b/packages/example/src/style.css new file mode 100644 index 0000000000000000000000000000000000000000..7b6a10a1afb241156e49b8f4b8faa64c98bcaea6 --- /dev/null +++ b/packages/example/src/style.css @@ -0,0 +1,82 @@ +:root { + font-family: Inter, Avenir, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; + background: #121212 +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +.card { + padding: 2em; +} + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/packages/example/src/vite-env.d.ts b/packages/example/src/vite-env.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..323c78a6cd85072d57bebe0e267e6c840a7d7a65 --- /dev/null +++ b/packages/example/src/vite-env.d.ts @@ -0,0 +1,7 @@ +/// + +declare module '*.vue' { + import type { DefineComponent } from 'vue' + const component: DefineComponent<{}, {}, any> + export default component +} diff --git a/packages/example/vite.config.ts b/packages/example/vite.config.ts new file mode 100644 index 0000000000000000000000000000000000000000..5d85b28626d862d996b8e506c63c834d4041e2dc --- /dev/null +++ b/packages/example/vite.config.ts @@ -0,0 +1,13 @@ +import path from 'path' +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue({ + // reactivityTransform: path.resolve(__dirname, 'src'), + reactivityTransform: true, + }), + ], +}) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 523bd85977155b990d4bab2ae5e5134fa8440cf8..654814cdd3aa28d00b6c814f81e688884ea99184 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,9 +4,10 @@ importers: .: specifiers: - '@antfu/eslint-config': ^0.20.7 + '@antfu/eslint-config-vue': ^0.26.2 '@types/node': ^17.0.45 '@vitejs/plugin-vue': ^2.3.3 + '@vitejs/plugin-vue-jsx': ^2.0.0 eslint: ^8.18.0 fs-extra: ^10.1.0 handlebars: ^4.7.7 @@ -17,14 +18,15 @@ importers: unplugin-auto-import: ^0.7.2 vite: ^3.0.8 vitest: ^0.9.4 - vue: ^3.2.37 + vue: ^3.2.39 vue-tsc: ^0.34.17 dependencies: - vue: 3.2.37 + vue: 3.2.39 devDependencies: - '@antfu/eslint-config': 0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e + '@antfu/eslint-config-vue': 0.26.2_b5e7v2qnwxfo6hmiq56u52mz3e '@types/node': 17.0.45 - '@vitejs/plugin-vue': 2.3.3_vite@3.0.8+vue@3.2.37 + '@vitejs/plugin-vue': 2.3.3_vite@3.0.8+vue@3.2.39 + '@vitejs/plugin-vue-jsx': 2.0.0_vite@3.0.8+vue@3.2.39 eslint: 8.18.0 fs-extra: 10.1.0 handlebars: 4.7.7 @@ -42,16 +44,20 @@ importers: '@jiaminghi/c-render': ^0.4.3 '@jiaminghi/charts': ^0.2.18 '@jiaminghi/fs': ^0.1.1 + '@types/lodash-es': ^4.17.6 '@vueuse/core': ^9.1.0 less: ^4.1.3 + lodash-es: ^4.17.21 vite-plugin-dts: ^1.2.0 vite-plugin-libcss: ^1.0.5 dependencies: '@jiaminghi/c-render': 0.4.3 '@jiaminghi/charts': 0.2.18 '@vueuse/core': 9.1.0 + lodash-es: 4.17.21 devDependencies: '@jiaminghi/fs': 0.1.1 + '@types/lodash-es': 4.17.6 less: 4.1.3 vite-plugin-dts: 1.2.0 vite-plugin-libcss: 1.0.5 @@ -61,13 +67,19 @@ importers: '@kjgl77/datav-vue3': workspace:* unocss: ^0.45.8 unplugin-auto-import: ^0.11.2 - vitepress: 1.0.0-alpha.8 + vitepress: 1.0.0-alpha.13 dependencies: '@kjgl77/datav-vue3': link:../datav-vue3 devDependencies: unocss: 0.45.8 unplugin-auto-import: 0.11.2 - vitepress: 1.0.0-alpha.8 + vitepress: 1.0.0-alpha.13 + + packages/example: + specifiers: + '@kjgl77/datav-vue3': workspace:* + dependencies: + '@kjgl77/datav-vue3': link:../datav-vue3 packages: @@ -189,24 +201,24 @@ packages: '@jridgewell/trace-mapping': 0.3.15 dev: true - /@antfu/eslint-config-basic/0.20.7_5mtqsiui4sk53pmkx7i7ue45wm: - resolution: {integrity: sha512-Lhty32km7/dtCtoGBWB9OQnC9aG1mYdFiF4JrbhPPr4nj7fd/KY+p91zIyOtEnlSNp4uKRGXD4DnYjp0cJdGBA==} + /@antfu/eslint-config-basic/0.26.2_4hy23acn2jedqpx23gzjiof2ta: + resolution: {integrity: sha512-wPaKvRhymhaWhaJq4b/CiYnsZ/jONr7wVHy801p6kwUzUvekyY8ZAhU60YoDpb2J8Mh06268b0nHUlULgvMJAw==} peerDependencies: eslint: '>=7.4.0' dependencies: eslint: 8.18.0 - eslint-plugin-antfu: 0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e + eslint-plugin-antfu: 0.26.2_b5e7v2qnwxfo6hmiq56u52mz3e eslint-plugin-eslint-comments: 3.2.0_eslint@8.18.0 - eslint-plugin-html: 6.2.0 - eslint-plugin-import: 2.26.0_wno36sjfnklvt2ocf7qbhb2izy - eslint-plugin-jsonc: 2.2.1_eslint@8.18.0 - eslint-plugin-markdown: 2.2.1_eslint@8.18.0 - eslint-plugin-n: 15.1.0_eslint@8.18.0 - eslint-plugin-promise: 6.0.0_eslint@8.18.0 - eslint-plugin-unicorn: 42.0.0_eslint@8.18.0 - eslint-plugin-yml: 0.14.0_eslint@8.18.0 + eslint-plugin-html: 7.1.0 + eslint-plugin-import: 2.26.0_eqbaxt3uvmuzuzhad7lp74szvm + eslint-plugin-jsonc: 2.4.0_eslint@8.18.0 + eslint-plugin-markdown: 3.0.0_eslint@8.18.0 + eslint-plugin-n: 15.2.5_eslint@8.18.0 + eslint-plugin-promise: 6.0.1_eslint@8.18.0 + eslint-plugin-unicorn: 43.0.2_eslint@8.18.0 + eslint-plugin-yml: 1.1.0_eslint@8.18.0 jsonc-eslint-parser: 2.1.0 - yaml-eslint-parser: 0.5.0 + yaml-eslint-parser: 1.1.0 transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-typescript @@ -215,105 +227,246 @@ packages: - typescript dev: true - /@antfu/eslint-config-react/0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-CfqtjfrhnDffDImfwWbGWCHjaY/7Un7kkEOVqIh46oU9B6XW6wCFWh3VWJn7SsIYKVJbYlOypneqziYRUB0H3Q==} + /@antfu/eslint-config-ts/0.26.2_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-larpzAjXo565HGxUL8jg3ZDUwQ7kWnt5rdottCuW3grnkVL5PAE3wVvBktnYaPYyLxW/GdrTS6yGSrocCan7Iw==} peerDependencies: eslint: '>=7.4.0' + typescript: '>=3.9' dependencies: - '@antfu/eslint-config-ts': 0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e + '@antfu/eslint-config-basic': 0.26.2_4hy23acn2jedqpx23gzjiof2ta + '@typescript-eslint/eslint-plugin': 5.36.1_4hy23acn2jedqpx23gzjiof2ta + '@typescript-eslint/parser': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 - eslint-plugin-react: 7.29.4_eslint@8.18.0 + typescript: 4.7.4 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - - typescript dev: true - /@antfu/eslint-config-ts/0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-wPLhwQ8Jt7rrJj4MQUY2F7pbiV4ITx8RbuOTpkVmuUQeGe3mHCGvJostTcz5JYgWyd3JOx2dqFBY10t3YXEMYw==} + /@antfu/eslint-config-vue/0.26.2_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-LcSo+V86f+BSc9eB4YNeAvw3GPQjcWE3wrK6VaOmKSlt4tOewj2usJa5jfhHpSsmdrBOw2ORMKd4+3iyx7bMtQ==} peerDependencies: eslint: '>=7.4.0' - typescript: '>=3.9' dependencies: - '@antfu/eslint-config-basic': 0.20.7_5mtqsiui4sk53pmkx7i7ue45wm - '@typescript-eslint/eslint-plugin': 5.30.0_5mtqsiui4sk53pmkx7i7ue45wm - '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@antfu/eslint-config-ts': 0.26.2_b5e7v2qnwxfo6hmiq56u52mz3e eslint: 8.18.0 - typescript: 4.7.4 + eslint-plugin-vue: 9.4.0_eslint@8.18.0 transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color + - typescript dev: true - /@antfu/eslint-config-vue/0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-jpWi0FaeDLbAoTawJYExHnZ8EC6+1wiL8OD2Iu1A400b0PGyP85vpfcFAAKGij2KgJVc0ZoHeFJQX1TTMeiI/g==} - peerDependencies: - eslint: '>=7.4.0' + /@antfu/install-pkg/0.1.0: + resolution: {integrity: sha512-VaIJd3d1o7irZfK1U0nvBsHMyjkuyMP3HKYVV53z8DKyulkHKmjhhtccXO51WSPeeSHIeoJEoNOKavYpS7jkZw==} dependencies: - '@antfu/eslint-config-ts': 0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e - eslint: 8.18.0 - eslint-plugin-vue: 8.7.1_eslint@8.18.0 + execa: 5.1.1 + find-up: 5.0.0 + dev: true + + /@antfu/utils/0.5.2: + resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} + dev: true + + /@babel/code-frame/7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + + /@babel/compat-data/7.18.13: + resolution: {integrity: sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/core/7.18.13: + resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.18.13 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helpers': 7.18.9 + '@babel/parser': 7.18.13 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.13 + '@babel/types': 7.18.13 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - supports-color - - typescript dev: true - /@antfu/eslint-config/0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-HXWvjUGsQKA6xro0FnP7hfLcRVU3Ly8zMrxOSkBCJkagSm9osbWeXtPXVessa2i1IzjiU2FBWCf602rFNtpLGA==} + /@babel/generator/7.18.13: + resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure/7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + dev: true + + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.13: + resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + engines: {node: '>=6.9.0'} peerDependencies: - eslint: '>=7.4.0' + '@babel/core': ^7.0.0 dependencies: - '@antfu/eslint-config-react': 0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e - '@antfu/eslint-config-vue': 0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e - '@typescript-eslint/eslint-plugin': 5.30.0_5mtqsiui4sk53pmkx7i7ue45wm - '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e - eslint: 8.18.0 - eslint-plugin-eslint-comments: 3.2.0_eslint@8.18.0 - eslint-plugin-html: 6.2.0 - eslint-plugin-import: 2.26.0_wno36sjfnklvt2ocf7qbhb2izy - eslint-plugin-jsonc: 2.2.1_eslint@8.18.0 - eslint-plugin-n: 15.1.0_eslint@8.18.0 - eslint-plugin-promise: 6.0.0_eslint@8.18.0 - eslint-plugin-unicorn: 42.0.0_eslint@8.18.0 - eslint-plugin-vue: 8.7.1_eslint@8.18.0 - eslint-plugin-yml: 0.14.0_eslint@8.18.0 - jsonc-eslint-parser: 2.1.0 - yaml-eslint-parser: 0.5.0 + '@babel/compat-data': 7.18.13 + '@babel/core': 7.18.13 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + semver: 6.3.0 + dev: true + + /@babel/helper-create-class-features-plugin/7.18.13_@babel+core@7.18.13: + resolution: {integrity: sha512-hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.13 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - supports-color - - typescript dev: true - /@antfu/install-pkg/0.1.0: - resolution: {integrity: sha512-VaIJd3d1o7irZfK1U0nvBsHMyjkuyMP3HKYVV53z8DKyulkHKmjhhtccXO51WSPeeSHIeoJEoNOKavYpS7jkZw==} + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-function-name/7.18.9: + resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + engines: {node: '>=6.9.0'} dependencies: - execa: 5.1.1 - find-up: 5.0.0 + '@babel/template': 7.18.10 + '@babel/types': 7.18.13 dev: true - /@antfu/utils/0.5.2: - resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} + /@babel/helper-hoist-variables/7.18.6: + resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + dev: true + + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + dev: true + + /@babel/helper-module-imports/7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + dev: true + + /@babel/helper-module-transforms/7.18.9: + resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.18.6 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.13 + '@babel/types': 7.18.13 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression/7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + dev: true + + /@babel/helper-plugin-utils/7.18.9: + resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-replace-supers/7.18.9: + resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.18.13 + '@babel/types': 7.18.13 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access/7.18.6: + resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 dev: true - /@babel/code-frame/7.14.5: - resolution: {integrity: sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==} + /@babel/helper-split-export-declaration/7.18.6: + resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.14.5 + '@babel/types': 7.18.13 dev: true + /@babel/helper-string-parser/7.18.10: + resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier/7.18.6: resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} engines: {node: '>=6.9.0'} - /@babel/highlight/7.14.5: - resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==} + /@babel/helper-validator-option/7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helpers/7.18.9: + resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.13 + '@babel/types': 7.18.13 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight/7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.18.6 @@ -321,12 +474,55 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.16.6: - resolution: {integrity: sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==} + /@babel/parser/7.18.13: + resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.13 + + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.13: + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.13 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.13: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.13 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.13: + resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.13 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.18.13: + resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.13 + '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.13 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.13 + transitivePeerDependencies: + - supports-color + dev: true /@babel/runtime/7.17.9: resolution: {integrity: sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npm.taobao.org/@babel/runtime/-/runtime-7.17.9.tgz} @@ -335,10 +531,38 @@ packages: regenerator-runtime: 0.13.9 dev: false - /@babel/types/7.18.7: - resolution: {integrity: sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==} + /@babel/template/7.18.10: + resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.18.13 + '@babel/types': 7.18.13 + dev: true + + /@babel/traverse/7.18.13: + resolution: {integrity: sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.18.13 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.18.13 + '@babel/types': 7.18.13 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types/7.18.13: + resolution: {integrity: sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.18.10 '@babel/helper-validator-identifier': 7.18.6 to-fast-properties: 2.0.0 @@ -484,6 +708,15 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 dev: true + /@jridgewell/gen-mapping/0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.15 + dev: true + /@jridgewell/resolve-uri/3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} @@ -643,6 +876,16 @@ packages: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true + /@types/lodash-es/4.17.6: + resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==} + dependencies: + '@types/lodash': 4.14.185 + dev: true + + /@types/lodash/4.14.185: + resolution: {integrity: sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==} + dev: true + /@types/mdast/3.0.10: resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==} dependencies: @@ -668,8 +911,8 @@ packages: /@types/web-bluetooth/0.0.15: resolution: {integrity: sha512-w7hEHXnPMEZ+4nGKl/KDRVpxkwYxYExuHOYXyzIzCDzEZ9ZCGMAewulr9IqJu2LR4N37fcnb1XVeuZ09qgOxhA==} - /@typescript-eslint/eslint-plugin/5.30.0_5mtqsiui4sk53pmkx7i7ue45wm: - resolution: {integrity: sha512-lvhRJ2pGe2V9MEU46ELTdiHgiAFZPKtLhiU5wlnaYpMc2+c1R8fh8i80ZAa665drvjHKUJyRRGg3gEm1If54ow==} + /@typescript-eslint/eslint-plugin/5.36.1_4hy23acn2jedqpx23gzjiof2ta: + resolution: {integrity: sha512-iC40UK8q1tMepSDwiLbTbMXKDxzNy+4TfPWgIL661Ym0sD42vRcQU93IsZIrmi+x292DBr60UI/gSwfdVYexCA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -679,10 +922,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e - '@typescript-eslint/scope-manager': 5.30.0 - '@typescript-eslint/type-utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e - '@typescript-eslint/utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/parser': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/scope-manager': 5.36.1 + '@typescript-eslint/type-utils': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 eslint: 8.18.0 functional-red-black-tree: 1.0.1 @@ -695,8 +938,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA==} + /@typescript-eslint/parser/5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -705,9 +948,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.30.0 - '@typescript-eslint/types': 5.30.0 - '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.36.1 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.7.4 debug: 4.3.4 eslint: 8.18.0 typescript: 4.7.4 @@ -715,16 +958,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.30.0: - resolution: {integrity: sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ==} + /@typescript-eslint/scope-manager/5.36.1: + resolution: {integrity: sha512-pGC2SH3/tXdu9IH3ItoqciD3f3RRGCh7hb9zPdN2Drsr341zgd6VbhP5OHQO/reUqihNltfPpMpTNihFMarP2w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.30.0 - '@typescript-eslint/visitor-keys': 5.30.0 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/visitor-keys': 5.36.1 dev: true - /@typescript-eslint/type-utils/5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-GF8JZbZqSS+azehzlv/lmQQ3EU3VfWYzCczdZjJRxSEeXDQkqFhCBgFhallLDbPwQOEQ4MHpiPfkjKk7zlmeNg==} + /@typescript-eslint/type-utils/5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-xfZhfmoQT6m3lmlqDvDzv9TiCYdw22cdj06xY0obSznBsT///GK5IEZQdGliXpAOaRL34o8phEvXzEo/VJx13Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -733,7 +976,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.7.4 + '@typescript-eslint/utils': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 eslint: 8.18.0 tsutils: 3.21.0_typescript@4.7.4 @@ -742,13 +986,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.30.0: - resolution: {integrity: sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag==} + /@typescript-eslint/types/5.36.1: + resolution: {integrity: sha512-jd93ShpsIk1KgBTx9E+hCSEuLCUFwi9V/urhjOWnOaksGZFbTOxAT47OH2d4NLJnLhkVD+wDbB48BuaycZPLBg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.30.0_typescript@4.7.4: - resolution: {integrity: sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw==} + /@typescript-eslint/typescript-estree/5.36.1_typescript@4.7.4: + resolution: {integrity: sha512-ih7V52zvHdiX6WcPjsOdmADhYMDN15SylWRZrT2OMy80wzKbc79n8wFW0xpWpU0x3VpBz/oDgTm2xwDAnFTl+g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -756,8 +1000,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.30.0 - '@typescript-eslint/visitor-keys': 5.30.0 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/visitor-keys': 5.36.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -768,16 +1012,16 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw==} + /@typescript-eslint/utils/5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-lNj4FtTiXm5c+u0pUehozaUWhh7UYKnwryku0nxJlYUEWetyG92uw2pr+2Iy4M/u0ONMKzfrx7AsGBTCzORmIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.9 - '@typescript-eslint/scope-manager': 5.30.0 - '@typescript-eslint/types': 5.30.0 - '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.36.1 + '@typescript-eslint/types': 5.36.1 + '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.7.4 eslint: 8.18.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.18.0 @@ -786,11 +1030,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.30.0: - resolution: {integrity: sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw==} + /@typescript-eslint/visitor-keys/5.36.1: + resolution: {integrity: sha512-ojB9aRyRFzVMN3b5joSYni6FAS10BBSCAfKJhjJAV08t/a95aM6tAhz+O1jF+EtgxktuSO3wJysp2R+Def/IWQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/types': 5.36.1 eslint-visitor-keys: 3.3.0 dev: true @@ -934,7 +1178,24 @@ packages: magic-string: 0.26.2 dev: true - /@vitejs/plugin-vue/2.3.3_vite@3.0.8+vue@3.2.37: + /@vitejs/plugin-vue-jsx/2.0.0_vite@3.0.8+vue@3.2.39: + resolution: {integrity: sha512-WF9ApZ/ivyyW3volQfu0Td0KNPhcccYEaRNzNY1NxRLVJQLSX0nFqquv3e2g7MF74p1XZK4bGtDL2y5i5O5+1A==} + engines: {node: '>=14.18.0'} + peerDependencies: + vite: ^3.0.0 + vue: ^3.0.0 + dependencies: + '@babel/core': 7.18.13 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.13 + '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.18.13 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.13 + vite: 3.0.8 + vue: 3.2.39 + transitivePeerDependencies: + - supports-color + dev: true + + /@vitejs/plugin-vue/2.3.3_vite@3.0.8+vue@3.2.39: resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -942,10 +1203,10 @@ packages: vue: ^3.2.25 dependencies: vite: 3.0.8 - vue: 3.2.37 + vue: 3.2.39 dev: true - /@vitejs/plugin-vue/3.0.3_vite@3.0.8+vue@3.2.37: + /@vitejs/plugin-vue/3.0.3_vite@3.0.8+vue@3.2.39: resolution: {integrity: sha512-U4zNBlz9mg+TA+i+5QPc3N5lQvdUXENZLO2h0Wdzp56gI1MWhqJOv+6R+d4kOzoaSSq6TnGPBdZAXKOe4lXy6g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -953,7 +1214,7 @@ packages: vue: ^3.2.25 dependencies: vite: 3.0.8 - vue: 3.2.37 + vue: 3.2.39 dev: true /@volar/code-gen/0.34.17: @@ -971,9 +1232,9 @@ packages: dependencies: '@volar/code-gen': 0.34.17 '@volar/source-map': 0.34.17 - '@vue/compiler-core': 3.2.37 - '@vue/compiler-dom': 3.2.37 - '@vue/shared': 3.2.37 + '@vue/compiler-core': 3.2.39 + '@vue/compiler-dom': 3.2.39 + '@vue/shared': 3.2.39 dev: true /@volar/vue-typescript/0.34.17: @@ -982,86 +1243,107 @@ packages: '@volar/code-gen': 0.34.17 '@volar/source-map': 0.34.17 '@volar/vue-code-gen': 0.34.17 - '@vue/compiler-sfc': 3.2.37 - '@vue/reactivity': 3.2.37 + '@vue/compiler-sfc': 3.2.39 + '@vue/reactivity': 3.2.39 + dev: true + + /@vue/babel-helper-vue-transform-on/1.0.2: + resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: true - /@vue/compiler-core/3.2.37: - resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==} + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.13: + resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: - '@babel/parser': 7.16.6 - '@vue/shared': 3.2.37 + '@babel/helper-module-imports': 7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.13 + '@babel/types': 7.18.13 + '@vue/babel-helper-vue-transform-on': 1.0.2 + camelcase: 6.3.0 + html-tags: 3.2.0 + svg-tags: 1.0.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + + /@vue/compiler-core/3.2.39: + resolution: {integrity: sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==} + dependencies: + '@babel/parser': 7.18.13 + '@vue/shared': 3.2.39 estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom/3.2.37: - resolution: {integrity: sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==} + /@vue/compiler-dom/3.2.39: + resolution: {integrity: sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==} dependencies: - '@vue/compiler-core': 3.2.37 - '@vue/shared': 3.2.37 + '@vue/compiler-core': 3.2.39 + '@vue/shared': 3.2.39 - /@vue/compiler-sfc/3.2.37: - resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} + /@vue/compiler-sfc/3.2.39: + resolution: {integrity: sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==} dependencies: - '@babel/parser': 7.16.6 - '@vue/compiler-core': 3.2.37 - '@vue/compiler-dom': 3.2.37 - '@vue/compiler-ssr': 3.2.37 - '@vue/reactivity-transform': 3.2.37 - '@vue/shared': 3.2.37 + '@babel/parser': 7.18.13 + '@vue/compiler-core': 3.2.39 + '@vue/compiler-dom': 3.2.39 + '@vue/compiler-ssr': 3.2.39 + '@vue/reactivity-transform': 3.2.39 + '@vue/shared': 3.2.39 estree-walker: 2.0.2 magic-string: 0.25.7 postcss: 8.4.16 source-map: 0.6.1 - /@vue/compiler-ssr/3.2.37: - resolution: {integrity: sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==} + /@vue/compiler-ssr/3.2.39: + resolution: {integrity: sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==} dependencies: - '@vue/compiler-dom': 3.2.37 - '@vue/shared': 3.2.37 + '@vue/compiler-dom': 3.2.39 + '@vue/shared': 3.2.39 /@vue/devtools-api/6.2.1: resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==} dev: true - /@vue/reactivity-transform/3.2.37: - resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==} + /@vue/reactivity-transform/3.2.39: + resolution: {integrity: sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==} dependencies: - '@babel/parser': 7.16.6 - '@vue/compiler-core': 3.2.37 - '@vue/shared': 3.2.37 + '@babel/parser': 7.18.13 + '@vue/compiler-core': 3.2.39 + '@vue/shared': 3.2.39 estree-walker: 2.0.2 magic-string: 0.25.7 - /@vue/reactivity/3.2.37: - resolution: {integrity: sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A==} + /@vue/reactivity/3.2.39: + resolution: {integrity: sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==} dependencies: - '@vue/shared': 3.2.37 + '@vue/shared': 3.2.39 - /@vue/runtime-core/3.2.37: - resolution: {integrity: sha512-JPcd9kFyEdXLl/i0ClS7lwgcs0QpUAWj+SKX2ZC3ANKi1U4DOtiEr6cRqFXsPwY5u1L9fAjkinIdB8Rz3FoYNQ==} + /@vue/runtime-core/3.2.39: + resolution: {integrity: sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==} dependencies: - '@vue/reactivity': 3.2.37 - '@vue/shared': 3.2.37 + '@vue/reactivity': 3.2.39 + '@vue/shared': 3.2.39 - /@vue/runtime-dom/3.2.37: - resolution: {integrity: sha512-HimKdh9BepShW6YozwRKAYjYQWg9mQn63RGEiSswMbW+ssIht1MILYlVGkAGGQbkhSh31PCdoUcfiu4apXJoPw==} + /@vue/runtime-dom/3.2.39: + resolution: {integrity: sha512-4G9AEJP+sLhsqf5wXcyKVWQKUhI+iWfy0hWQgea+CpaTD7BR0KdQzvoQdZhwCY6B3oleSyNLkLAQwm0ya/wNoA==} dependencies: - '@vue/runtime-core': 3.2.37 - '@vue/shared': 3.2.37 + '@vue/runtime-core': 3.2.39 + '@vue/shared': 3.2.39 csstype: 2.6.17 - /@vue/server-renderer/3.2.37_vue@3.2.37: - resolution: {integrity: sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==} + /@vue/server-renderer/3.2.39_vue@3.2.39: + resolution: {integrity: sha512-1yn9u2YBQWIgytFMjz4f/t0j43awKytTGVptfd3FtBk76t1pd8mxbek0G/DrnjJhd2V7mSTb5qgnxMYt8Z5iSQ==} peerDependencies: - vue: 3.2.37 + vue: 3.2.39 dependencies: - '@vue/compiler-ssr': 3.2.37 - '@vue/shared': 3.2.37 - vue: 3.2.37 + '@vue/compiler-ssr': 3.2.39 + '@vue/shared': 3.2.39 + vue: 3.2.39 - /@vue/shared/3.2.37: - resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==} + /@vue/shared/3.2.39: + resolution: {integrity: sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==} /@vueuse/core/9.1.0: resolution: {integrity: sha512-BIroqvXEqt826aE9r3K5cox1zobuPuAzdYJ36kouC2TVhlXvFKIILgFVWrpp9HZPwB3aLzasmG3K87q7TSyXZg==} @@ -1075,13 +1357,13 @@ packages: - vue dev: false - /@vueuse/core/9.1.0_vue@3.2.37: + /@vueuse/core/9.1.0_vue@3.2.39: resolution: {integrity: sha512-BIroqvXEqt826aE9r3K5cox1zobuPuAzdYJ36kouC2TVhlXvFKIILgFVWrpp9HZPwB3aLzasmG3K87q7TSyXZg==} dependencies: '@types/web-bluetooth': 0.0.15 '@vueuse/metadata': 9.1.0 - '@vueuse/shared': 9.1.0_vue@3.2.37 - vue-demi: 0.12.1_vue@3.2.37 + '@vueuse/shared': 9.1.0_vue@3.2.39 + vue-demi: 0.12.1_vue@3.2.39 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -1099,10 +1381,10 @@ packages: - vue dev: false - /@vueuse/shared/9.1.0_vue@3.2.37: + /@vueuse/shared/9.1.0_vue@3.2.39: resolution: {integrity: sha512-pB/3njQu4tfJJ78ajELNda0yMG6lKfpToQW7Soe09CprF1k3QuyoNi1tBNvo75wBDJWD+LOnr+c4B5HZ39jY/Q==} dependencies: - vue-demi: 0.12.1_vue@3.2.37 + vue-demi: 0.12.1_vue@3.2.39 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -1262,15 +1544,6 @@ packages: es-abstract: 1.19.1 dev: true - /array.prototype.flatmap/1.2.5: - resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 - dev: true - /assertion-error/1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true @@ -1332,6 +1605,17 @@ packages: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npm.taobao.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz} dev: true + /browserslist/4.21.3: + resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001387 + electron-to-chromium: 1.4.240 + node-releases: 2.0.6 + update-browserslist-db: 1.0.6_browserslist@4.21.3 + dev: true + /buffer/5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} dependencies: @@ -1344,10 +1628,10 @@ packages: engines: {node: '>=6'} dev: true - /builtins/4.0.0: - resolution: {integrity: sha512-qC0E2Dxgou1IHhvJSLwGDSTvokbRovU5zZFuDY6oY8Y2lF3nGt5Ad8YZK7GMtqzY84Wu7pXTPeHQeHcXSXsRhw==} + /builtins/5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: - semver: 7.3.5 + semver: 7.3.7 dev: true /cac/6.7.12: @@ -1367,6 +1651,15 @@ packages: engines: {node: '>=6'} dev: true + /camelcase/6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /caniuse-lite/1.0.30001387: + resolution: {integrity: sha512-fKDH0F1KOJvR+mWSOvhj8lVRr/Q/mc5u5nabU2vi1/sgvlSqEsE8dOq0Hy/BqVbDkCYQPRRHB1WRjW6PGB/7PA==} + dev: true + /chai/4.3.6: resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==} engines: {node: '>=4'} @@ -1432,8 +1725,8 @@ packages: fsevents: 2.3.2 dev: true - /ci-info/3.3.0: - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} + /ci-info/3.3.2: + resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} dev: true /clean-regexp/1.0.0: @@ -1522,6 +1815,12 @@ packages: resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} dev: true + /convert-source-map/1.8.0: + resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + dependencies: + safe-buffer: 5.1.2 + dev: true + /copy-anything/2.0.6: resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} dependencies: @@ -1674,16 +1973,16 @@ packages: esutils: 2.0.3 dev: true - /dom-serializer/1.3.2: - resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==} + /dom-serializer/2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: - domelementtype: 2.2.0 - domhandler: 4.3.0 - entities: 2.2.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.4.0 dev: true - /domelementtype/2.2.0: - resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==} + /domelementtype/2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} dev: true /domexception/4.0.0: @@ -1693,35 +1992,35 @@ packages: webidl-conversions: 7.0.0 dev: true - /domhandler/4.3.0: - resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==} + /domhandler/5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} dependencies: - domelementtype: 2.2.0 + domelementtype: 2.3.0 dev: true - /domutils/2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + /domutils/3.0.1: + resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} dependencies: - dom-serializer: 1.3.2 - domelementtype: 2.2.0 - domhandler: 4.3.0 + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 dev: true /duplexer/0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: true - /emoji-regex/8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + /electron-to-chromium/1.4.240: + resolution: {integrity: sha512-r20dUOtZ4vUPTqAajDGonIM1uas5tf85Up+wPdtNBNvBSqGCfkpvMVvQ1T8YJzPV9/Y9g3FbUDcXb94Rafycow==} dev: true - /entities/2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true - /entities/3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + /entities/4.4.0: + resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} engines: {node: '>=0.12'} dev: true @@ -1984,6 +2283,11 @@ packages: esbuild-windows-arm64: 0.14.54 dev: true + /escalade/3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + /escape-string-regexp/1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} @@ -2021,7 +2325,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_s24jsywy72ks6h3c4f2dacxdsa: + /eslint-module-utils/2.7.3_632zrvmnhpkgiajg2zqauquf6u: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -2039,7 +2343,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/parser': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -2047,10 +2351,10 @@ packages: - supports-color dev: true - /eslint-plugin-antfu/0.20.7_b5e7v2qnwxfo6hmiq56u52mz3e: - resolution: {integrity: sha512-9kwFMn0RyXJx4jg9Y22J6gETSYqssnLIqDYqS0Od0oQsAENZv2rGW7SBGbtkSApmf+1n9/d4q+zdwBG9UImXcw==} + /eslint-plugin-antfu/0.26.2_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-WlrMC8DVTehsb6ha3xnALLtWVVSJvIpzdAgS0ZEUS9wQzsU+VoR71aShzbUZPgSK3iiB+mP8aKHDtwcYnV6wsA==} dependencies: - '@typescript-eslint/utils': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e transitivePeerDependencies: - eslint - supports-color @@ -2079,13 +2383,13 @@ packages: ignore: 5.2.0 dev: true - /eslint-plugin-html/6.2.0: - resolution: {integrity: sha512-vi3NW0E8AJombTvt8beMwkL1R/fdRWl4QSNRNMhVQKWm36/X0KF0unGNAY4mqUF06mnwVWZcIcerrCnfn9025g==} + /eslint-plugin-html/7.1.0: + resolution: {integrity: sha512-fNLRraV/e6j8e3XYOC9xgND4j+U7b1Rq+OygMlLcMg+wI/IpVbF+ubQa3R78EjKB9njT6TQOlcK5rFKBVVtdfg==} dependencies: - htmlparser2: 7.2.0 + htmlparser2: 8.0.1 dev: true - /eslint-plugin-import/2.26.0_wno36sjfnklvt2ocf7qbhb2izy: + /eslint-plugin-import/2.26.0_eqbaxt3uvmuzuzhad7lp74szvm: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -2095,14 +2399,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.30.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/parser': 5.36.1_b5e7v2qnwxfo6hmiq56u52mz3e array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.18.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_s24jsywy72ks6h3c4f2dacxdsa + eslint-module-utils: 2.7.3_632zrvmnhpkgiajg2zqauquf6u has: 1.0.3 is-core-module: 2.10.0 is-glob: 4.0.3 @@ -2116,8 +2420,8 @@ packages: - supports-color dev: true - /eslint-plugin-jsonc/2.2.1_eslint@8.18.0: - resolution: {integrity: sha512-ozGjWXhxF3ZfITHmRLuUL6zORh5Dzo0ymwVdxhfFaa4LEtU2S88JIwDYCWAifQLG92x7chqcnZlGUggaPSlfIQ==} + /eslint-plugin-jsonc/2.4.0_eslint@8.18.0: + resolution: {integrity: sha512-YXy5PjyUL9gFYal6pYijd8P6EmpeWskv7PVhB9Py/AwKPn+hwnQHcIzQILiLfxztfhtWiRIUSzoLe/JThZgSUw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -2128,11 +2432,11 @@ packages: natural-compare: 1.4.0 dev: true - /eslint-plugin-markdown/2.2.1_eslint@8.18.0: - resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} - engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0} + /eslint-plugin-markdown/3.0.0_eslint@8.18.0: + resolution: {integrity: sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: '>=6.0.0' + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: eslint: 8.18.0 mdast-util-from-markdown: 0.8.5 @@ -2140,13 +2444,13 @@ packages: - supports-color dev: true - /eslint-plugin-n/15.1.0_eslint@8.18.0: - resolution: {integrity: sha512-Tgx4Z58QXv2Ha7Qzp0u4wavnZNZ3AOievZMxrAxi7nvDbzD5B/JqOD80LHYcGHFZc2HD9jDmM/+KWMPov46a4A==} + /eslint-plugin-n/15.2.5_eslint@8.18.0: + resolution: {integrity: sha512-8+BYsqiyZfpu6NXmdLOXVUfk8IocpCjpd8nMRRH0A9ulrcemhb2VI9RSJMEy5udx++A/YcVPD11zT8hpFq368g==} engines: {node: '>=12.22.0'} peerDependencies: eslint: '>=7.0.0' dependencies: - builtins: 4.0.0 + builtins: 5.0.1 eslint: 8.18.0 eslint-plugin-es: 4.1.0_eslint@8.18.0 eslint-utils: 3.0.0_eslint@8.18.0 @@ -2154,11 +2458,11 @@ packages: is-core-module: 2.10.0 minimatch: 3.1.2 resolve: 1.22.1 - semver: 6.3.0 + semver: 7.3.7 dev: true - /eslint-plugin-promise/6.0.0_eslint@8.18.0: - resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} + /eslint-plugin-promise/6.0.1_eslint@8.18.0: + resolution: {integrity: sha512-uM4Tgo5u3UWQiroOyDEsYcVMOo7re3zmno0IZmB5auxoaQNIceAbXEkSt8RNrKtaYehARHG06pYK6K1JhtP0Zw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -2166,37 +2470,14 @@ packages: eslint: 8.18.0 dev: true - /eslint-plugin-react/7.29.4_eslint@8.18.0: - resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==} - engines: {node: '>=4'} + /eslint-plugin-unicorn/43.0.2_eslint@8.18.0: + resolution: {integrity: sha512-DtqZ5mf/GMlfWoz1abIjq5jZfaFuHzGBZYIeuJfEoKKGWRHr2JiJR+ea+BF7Wx2N1PPRoT/2fwgiK1NnmNE3Hg==} + engines: {node: '>=14.18'} peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.4 - array.prototype.flatmap: 1.2.5 - doctrine: 2.1.0 - eslint: 8.18.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.2.0 - minimatch: 3.1.2 - object.entries: 1.1.5 - object.fromentries: 2.0.5 - object.hasown: 1.1.0 - object.values: 1.1.5 - prop-types: 15.8.1 - resolve: 2.0.0-next.3 - semver: 6.3.0 - string.prototype.matchall: 4.0.6 - dev: true - - /eslint-plugin-unicorn/42.0.0_eslint@8.18.0: - resolution: {integrity: sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=8.8.0' + eslint: '>=8.18.0' dependencies: '@babel/helper-validator-identifier': 7.18.6 - ci-info: 3.3.0 + ci-info: 3.3.2 clean-regexp: 1.0.0 eslint: 8.18.0 eslint-utils: 3.0.0_eslint@8.18.0 @@ -2208,13 +2489,13 @@ packages: read-pkg-up: 7.0.1 regexp-tree: 0.1.24 safe-regex: 2.1.1 - semver: 7.3.5 + semver: 7.3.7 strip-indent: 3.0.0 dev: true - /eslint-plugin-vue/8.7.1_eslint@8.18.0: - resolution: {integrity: sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-plugin-vue/9.4.0_eslint@8.18.0: + resolution: {integrity: sha512-Nzz2QIJ8FG+rtJaqT/7/ru5ie2XgT9KCudkbN0y3uFYhQ41nuHEaboLAiqwMcK006hZPQv/rVMRhUIwEGhIvfQ==} + engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -2223,15 +2504,16 @@ packages: natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.10 - semver: 7.3.5 - vue-eslint-parser: 8.0.1_eslint@8.18.0 + semver: 7.3.7 + vue-eslint-parser: 9.0.3_eslint@8.18.0 + xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-yml/0.14.0_eslint@8.18.0: - resolution: {integrity: sha512-+0+bBV/07txENbxfrHF9olGoLCHez64vmnOmjWOoLwmXOwfdaSRleBSPIi4nWQs7WwX8lm/fSLadOjbVEcsXQQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-plugin-yml/1.1.0_eslint@8.18.0: + resolution: {integrity: sha512-64g3vWwolk9d+FykuqxXGLn3oGEK2ZecIAyfIEsyuSHBQkR8utp5h8e75R6tGph1IRggoGl27QQ2oi2M1IF1Vw==} + engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: @@ -2239,7 +2521,7 @@ packages: eslint: 8.18.0 lodash: 4.17.21 natural-compare: 1.4.0 - yaml-eslint-parser: 0.5.0 + yaml-eslint-parser: 1.1.0 transitivePeerDependencies: - supports-color dev: true @@ -2252,14 +2534,6 @@ packages: estraverse: 4.3.0 dev: true - /eslint-scope/6.0.0: - resolution: {integrity: sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - dev: true - /eslint-scope/7.1.1: resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -2556,6 +2830,11 @@ packages: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} dev: true + /gensync/1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: true + /get-func-name/2.0.0: resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} dev: true @@ -2606,6 +2885,11 @@ packages: path-is-absolute: 1.0.1 dev: true + /globals/11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: true + /globals/13.15.0: resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} engines: {node: '>=8'} @@ -2693,13 +2977,18 @@ packages: whatwg-encoding: 2.0.0 dev: true - /htmlparser2/7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + /html-tags/3.2.0: + resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==} + engines: {node: '>=8'} + dev: true + + /htmlparser2/8.0.1: + resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==} dependencies: - domelementtype: 2.2.0 - domhandler: 4.3.0 - domutils: 2.8.0 - entities: 3.0.1 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.0.1 + entities: 4.4.0 dev: true /http-proxy-agent/5.0.0: @@ -3053,6 +3342,12 @@ packages: - utf-8-validate dev: true + /jsesc/2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: true + /json-parse-even-better-errors/2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true @@ -3072,6 +3367,12 @@ packages: minimist: 1.2.6 dev: true + /json5/2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + dev: true + /jsonc-eslint-parser/2.1.0: resolution: {integrity: sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3079,7 +3380,7 @@ packages: acorn: 8.7.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 - semver: 7.3.5 + semver: 7.3.7 dev: true /jsonc-parser/3.1.0: @@ -3100,14 +3401,6 @@ packages: graceful-fs: 4.2.10 dev: true - /jsx-ast-utils/3.2.0: - resolution: {integrity: sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==} - engines: {node: '>=4.0'} - dependencies: - array-includes: 3.1.4 - object.assign: 4.1.2 - dev: true - /kolorist/1.5.1: resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==} dev: true @@ -3184,6 +3477,10 @@ packages: p-locate: 5.0.0 dev: true + /lodash-es/4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + dev: false + /lodash.get/4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} dev: true @@ -3208,13 +3505,6 @@ packages: is-unicode-supported: 0.1.0 dev: true - /loose-envify/1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - dependencies: - js-tokens: 4.0.0 - dev: true - /loupe/2.3.1: resolution: {integrity: sha512-EN1D3jyVmaX4tnajVlfbREU4axL647hLec1h/PXAb8CPDMJiYitcWF2UeLVNttRqaIqQs4x+mRvXf+d+TlDrCA==} dependencies: @@ -3414,6 +3704,10 @@ packages: resolution: {integrity: sha512-10EKpOCQPXwZVFh3U1ptOMWBgKTbsN7Vvo6WVKt5pw4hp8zbv6ZVBZPlXw+5M6Tyi1oc1iD4/sNPd71KYA16tQ==} dev: true + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + dev: true + /normalize-package-data/2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: @@ -3445,11 +3739,6 @@ packages: resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npm.taobao.org/nwsapi/-/nwsapi-2.2.0.tgz} dev: true - /object-assign/4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - dev: true - /object-inspect/1.11.0: resolution: {integrity: sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==} dev: true @@ -3469,31 +3758,6 @@ packages: object-keys: 1.1.1 dev: true - /object.entries/1.1.5: - resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 - dev: true - - /object.fromentries/2.0.5: - resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 - dev: true - - /object.hasown/1.1.0: - resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==} - dependencies: - define-properties: 1.1.3 - es-abstract: 1.19.1 - dev: true - /object.values/1.1.5: resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} engines: {node: '>= 0.4'} @@ -3643,7 +3907,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.14.5 + '@babel/code-frame': 7.18.6 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.1.6 @@ -3766,14 +4030,6 @@ packages: engines: {node: '>= 0.8.0'} dev: true - /prop-types/15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 - dev: true - /prr/1.0.1: resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} dev: true @@ -3792,10 +4048,6 @@ packages: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true - /react-is/16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - dev: true - /read-pkg-up/7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} @@ -3840,14 +4092,6 @@ packages: hasBin: true dev: true - /regexp.prototype.flags/1.3.1: - resolution: {integrity: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - dev: true - /regexpp/3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} @@ -3889,13 +4133,6 @@ packages: supports-preserve-symlinks-flag: 1.0.0 dev: true - /resolve/2.0.0-next.3: - resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} - dependencies: - is-core-module: 2.10.0 - path-parse: 1.0.7 - dev: true - /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -3941,6 +4178,10 @@ packages: tslib: 2.3.1 dev: true + /safe-buffer/5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: true + /safe-buffer/5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true @@ -4095,19 +4336,6 @@ packages: strip-ansi: 6.0.1 dev: true - /string.prototype.matchall/4.0.6: - resolution: {integrity: sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.3 - es-abstract: 1.19.1 - get-intrinsic: 1.1.1 - has-symbols: 1.0.2 - internal-slot: 1.0.3 - regexp.prototype.flags: 1.3.1 - side-channel: 1.0.4 - dev: true - /string.prototype.trimend/1.0.4: resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} dependencies: @@ -4182,6 +4410,10 @@ packages: engines: {node: '>= 0.4'} dev: true + /svg-tags/1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + dev: true + /symbol-tree/3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npm.taobao.org/symbol-tree/-/symbol-tree-3.2.4.tgz} dev: true @@ -4522,6 +4754,17 @@ packages: webpack-virtual-modules: 0.4.4 dev: true + /update-browserslist-db/1.0.6_browserslist@4.21.3: + resolution: {integrity: sha512-We7BqM9XFlcW94Op93uW8+2LXvGezs7QA0WY+f1H7RR1q46B06W6hZF6LbmOlpCS1HU22q/6NOGTGW5sCm7NJQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.3 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: @@ -4622,19 +4865,19 @@ packages: fsevents: 2.3.2 dev: true - /vitepress/1.0.0-alpha.8: - resolution: {integrity: sha512-kTRN5DCagvMqr9OjylSV9/waGg0IHrxL0hBVuJoz7ykleZq2qR02n5CaiFq5QrSB/VRBGqiVsFQzet9vJsXS8g==} + /vitepress/1.0.0-alpha.13: + resolution: {integrity: sha512-gCbKb+6o0g5wHt2yyqBPk7FcvrB+MfwGtg1JMS5p99GTQR87l3b7symCl8o1ecv7MDXwJ2mPB8ZrYNLnQAJxLQ==} hasBin: true dependencies: '@docsearch/css': 3.2.1 '@docsearch/js': 3.2.1 - '@vitejs/plugin-vue': 3.0.3_vite@3.0.8+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.3_vite@3.0.8+vue@3.2.39 '@vue/devtools-api': 6.2.1 - '@vueuse/core': 9.1.0_vue@3.2.37 + '@vueuse/core': 9.1.0_vue@3.2.39 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 vite: 3.0.8 - vue: 3.2.37 + vue: 3.2.39 transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -4701,7 +4944,7 @@ packages: optional: true dev: false - /vue-demi/0.12.1_vue@3.2.37: + /vue-demi/0.12.1_vue@3.2.39: resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} engines: {node: '>=12'} hasBin: true @@ -4713,23 +4956,23 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.37 + vue: 3.2.39 dev: true - /vue-eslint-parser/8.0.1_eslint@8.18.0: - resolution: {integrity: sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /vue-eslint-parser/9.0.3_eslint@8.18.0: + resolution: {integrity: sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==} + engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 eslint: 8.18.0 - eslint-scope: 6.0.0 + eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 lodash: 4.17.21 - semver: 7.3.5 + semver: 7.3.7 transitivePeerDependencies: - supports-color dev: true @@ -4744,14 +4987,14 @@ packages: typescript: 4.7.4 dev: true - /vue/3.2.37: - resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==} + /vue/3.2.39: + resolution: {integrity: sha512-tRkguhRTw9NmIPXhzk21YFBqXHT2t+6C6wPOgQ50fcFVWnPdetmRqbmySRHznrYjX2E47u0cGlKGcxKZJ38R/g==} dependencies: - '@vue/compiler-dom': 3.2.37 - '@vue/compiler-sfc': 3.2.37 - '@vue/runtime-dom': 3.2.37 - '@vue/server-renderer': 3.2.37_vue@3.2.37 - '@vue/shared': 3.2.37 + '@vue/compiler-dom': 3.2.39 + '@vue/compiler-sfc': 3.2.39 + '@vue/runtime-dom': 3.2.39 + '@vue/server-renderer': 3.2.39_vue@3.2.39 + '@vue/shared': 3.2.39 /w3c-hr-time/1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npm.taobao.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz} @@ -4864,7 +5107,7 @@ packages: dev: true /xml-name-validator/4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npm.taobao.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz} + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} engines: {node: '>=12'} dev: true @@ -4876,18 +5119,18 @@ packages: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - /yaml-eslint-parser/0.5.0: - resolution: {integrity: sha512-nJeyLA3YHAzhBTZbRAbu3W6xrSCucyxExmA+ZDtEdUFpGllxAZpto2Zxo2IG0r0eiuEiBM4e+wiAdxTziTq94g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /yaml-eslint-parser/1.1.0: + resolution: {integrity: sha512-b464Q1fYiX1oYx2kE8k4mEp6S9Prk+tfDsY/IPxQ0FCjEuj3AKko5Skf3/yQJeYTTDyjDE+aWIJemnv29HvEWQ==} + engines: {node: ^14.17.0 || >=16.0.0} dependencies: eslint-visitor-keys: 3.3.0 lodash: 4.17.21 - yaml: 1.10.2 + yaml: 2.1.1 dev: true - /yaml/1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + /yaml/2.1.1: + resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} + engines: {node: '>= 14'} dev: true /yocto-queue/0.1.0: