Commit 3a16f2b80aff4e3896cb9d528c893db336f63bce
1 parent
83c9cd77
chore: adjust component file name
Showing
38 changed files
with
168 additions
and
173 deletions
package.json
... | ... | @@ -53,7 +53,7 @@ |
53 | 53 | "sortablejs": "^1.13.0", |
54 | 54 | "tinymce": "^5.8.1", |
55 | 55 | "vditor": "^3.8.5", |
56 | - "vue": "3.1.0-beta.4", | |
56 | + "vue": "3.1.0-beta.5", | |
57 | 57 | "vue-i18n": "9.1.6", |
58 | 58 | "vue-json-pretty": "^2.0.2", |
59 | 59 | "vue-router": "^4.0.8", |
... | ... | @@ -80,7 +80,7 @@ |
80 | 80 | "@vitejs/plugin-legacy": "^1.4.0", |
81 | 81 | "@vitejs/plugin-vue": "^1.2.2", |
82 | 82 | "@vitejs/plugin-vue-jsx": "^1.1.4", |
83 | - "@vue/compiler-sfc": "3.1.0-beta.4", | |
83 | + "@vue/compiler-sfc": "3.1.0-beta.5", | |
84 | 84 | "autoprefixer": "^10.2.6", |
85 | 85 | "commitizen": "^4.2.4", |
86 | 86 | "conventional-changelog-cli": "^2.1.1", |
... | ... | @@ -109,7 +109,7 @@ |
109 | 109 | "stylelint-config-standard": "^22.0.0", |
110 | 110 | "stylelint-order": "^4.1.0", |
111 | 111 | "ts-node": "^10.0.0", |
112 | - "typescript": "4.2.4", | |
112 | + "typescript": "4.3.2", | |
113 | 113 | "vite": "2.3.3", |
114 | 114 | "vite-plugin-compression": "^0.2.5", |
115 | 115 | "vite-plugin-html": "^2.0.7", | ... | ... |
src/components/Authority/index.ts
src/components/Authority/src/index.vue renamed to src/components/Authority/src/Authority.vue
src/components/ClickOutSide/index.ts
src/components/ClickOutSide/src/index.vue renamed to src/components/ClickOutSide/src/ClickOutSide.vue
src/components/ContextMenu/src/index.tsx renamed to src/components/ContextMenu/src/ContextMenu.tsx
... | ... | @@ -33,24 +33,22 @@ export default defineComponent({ |
33 | 33 | const wrapRef = ref<ElRef>(null); |
34 | 34 | const showRef = ref(false); |
35 | 35 | |
36 | - const getStyle = computed( | |
37 | - (): CSSProperties => { | |
38 | - const { axis, items, styles, width } = props; | |
39 | - const { x, y } = axis || { x: 0, y: 0 }; | |
40 | - const menuHeight = (items || []).length * 40; | |
41 | - const menuWidth = width; | |
42 | - const body = document.body; | |
43 | - | |
44 | - const left = body.clientWidth < x + menuWidth ? x - menuWidth : x; | |
45 | - const top = body.clientHeight < y + menuHeight ? y - menuHeight : y; | |
46 | - return { | |
47 | - ...styles, | |
48 | - width: `${width}px`, | |
49 | - left: `${left + 1}px`, | |
50 | - top: `${top + 1}px`, | |
51 | - }; | |
52 | - } | |
53 | - ); | |
36 | + const getStyle = computed((): CSSProperties => { | |
37 | + const { axis, items, styles, width } = props; | |
38 | + const { x, y } = axis || { x: 0, y: 0 }; | |
39 | + const menuHeight = (items || []).length * 40; | |
40 | + const menuWidth = width; | |
41 | + const body = document.body; | |
42 | + | |
43 | + const left = body.clientWidth < x + menuWidth ? x - menuWidth : x; | |
44 | + const top = body.clientHeight < y + menuHeight ? y - menuHeight : y; | |
45 | + return { | |
46 | + ...styles, | |
47 | + width: `${width}px`, | |
48 | + left: `${left + 1}px`, | |
49 | + top: `${top + 1}px`, | |
50 | + }; | |
51 | + }); | |
54 | 52 | |
55 | 53 | onMounted(() => { |
56 | 54 | nextTick(() => (showRef.value = true)); | ... | ... |
src/components/ContextMenu/src/createContextMenu.ts
src/components/CountTo/index.ts
1 | 1 | // Transform vue-count-to to support vue3 version |
2 | 2 | |
3 | 3 | import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent'; |
4 | -export const CountTo = createAsyncComponent(() => import('./src/index.vue')); | |
4 | +export const CountTo = createAsyncComponent(() => import('./src/CountTo.vue')); | ... | ... |
src/components/CountTo/src/index.vue renamed to src/components/CountTo/src/CountTo.vue
src/components/Cropper/index.ts
src/components/Cropper/src/index.vue renamed to src/components/Cropper/src/Cropper.vue
... | ... | @@ -76,22 +76,18 @@ |
76 | 76 | |
77 | 77 | const isReady = ref(false); |
78 | 78 | |
79 | - const getImageStyle = computed( | |
80 | - (): CSSProperties => { | |
81 | - return { | |
82 | - height: props.height, | |
83 | - maxWidth: '100%', | |
84 | - ...props.imageStyle, | |
85 | - }; | |
86 | - } | |
87 | - ); | |
79 | + const getImageStyle = computed((): CSSProperties => { | |
80 | + return { | |
81 | + height: props.height, | |
82 | + maxWidth: '100%', | |
83 | + ...props.imageStyle, | |
84 | + }; | |
85 | + }); | |
88 | 86 | |
89 | - const getWrapperStyle = computed( | |
90 | - (): CSSProperties => { | |
91 | - const { height } = props; | |
92 | - return { height: `${height}`.replace(/px/, '') + 'px' }; | |
93 | - } | |
94 | - ); | |
87 | + const getWrapperStyle = computed((): CSSProperties => { | |
88 | + const { height } = props; | |
89 | + return { height: `${height}`.replace(/px/, '') + 'px' }; | |
90 | + }); | |
95 | 91 | |
96 | 92 | async function init() { |
97 | 93 | const imgEl = unref(imgElRef); | ... | ... |
src/components/Description/index.ts
src/components/Description/src/index.vue renamed to src/components/Description/src/Description.vue
... | ... | @@ -51,15 +51,13 @@ |
51 | 51 | /** |
52 | 52 | * @description: Get configuration Collapse |
53 | 53 | */ |
54 | - const getCollapseOptions = computed( | |
55 | - (): CollapseContainerOptions => { | |
56 | - return { | |
57 | - // Cannot be expanded by default | |
58 | - canExpand: false, | |
59 | - ...unref(getProps).collapseOptions, | |
60 | - }; | |
61 | - } | |
62 | - ); | |
54 | + const getCollapseOptions = computed((): CollapseContainerOptions => { | |
55 | + return { | |
56 | + // Cannot be expanded by default | |
57 | + canExpand: false, | |
58 | + ...unref(getProps).collapseOptions, | |
59 | + }; | |
60 | + }); | |
63 | 61 | |
64 | 62 | const getDescriptionsProps = computed(() => { |
65 | 63 | return { ...unref(attrs), ...unref(getProps) } as DescriptionsProps; | ... | ... |
src/components/FlowChart/index.ts
src/components/FlowChart/src/index.vue renamed to src/components/FlowChart/src/FlowChart.vue
... | ... | @@ -55,7 +55,7 @@ |
55 | 55 | const appStore = useAppStore(); |
56 | 56 | const [register, { openModal }] = useModal(); |
57 | 57 | createFlowChartContext({ |
58 | - logicFlow: (lfInstance as unknown) as LogicFlow, | |
58 | + logicFlow: lfInstance as unknown as LogicFlow, | |
59 | 59 | }); |
60 | 60 | |
61 | 61 | const getFlowOptions = computed(() => { | ... | ... |
src/components/Icon/index.ts
src/components/Icon/src/index.vue renamed to src/components/Icon/src/Icon.vue
... | ... | @@ -72,21 +72,19 @@ |
72 | 72 | } |
73 | 73 | }; |
74 | 74 | |
75 | - const getWrapStyle = computed( | |
76 | - (): CSSProperties => { | |
77 | - const { size, color } = props; | |
78 | - let fs = size; | |
79 | - if (isString(size)) { | |
80 | - fs = parseInt(size, 10); | |
81 | - } | |
82 | - | |
83 | - return { | |
84 | - fontSize: `${fs}px`, | |
85 | - color: color, | |
86 | - display: 'inline-flex', | |
87 | - }; | |
75 | + const getWrapStyle = computed((): CSSProperties => { | |
76 | + const { size, color } = props; | |
77 | + let fs = size; | |
78 | + if (isString(size)) { | |
79 | + fs = parseInt(size, 10); | |
88 | 80 | } |
89 | - ); | |
81 | + | |
82 | + return { | |
83 | + fontSize: `${fs}px`, | |
84 | + color: color, | |
85 | + display: 'inline-flex', | |
86 | + }; | |
87 | + }); | |
90 | 88 | |
91 | 89 | watch(() => props.icon, update, { flush: 'post' }); |
92 | 90 | ... | ... |
src/components/Icon/src/IconPicker.vue
... | ... | @@ -31,7 +31,18 @@ |
31 | 31 | v-for="icon in getPaginationList" |
32 | 32 | :key="icon" |
33 | 33 | :class="currentSelect === icon ? 'border border-primary' : ''" |
34 | - class="p-2 w-1/8 cursor-pointer mr-1 mt-1 flex justify-center items-center border border-solid hover:border-primary" | |
34 | + class=" | |
35 | + p-2 | |
36 | + w-1/8 | |
37 | + cursor-pointer | |
38 | + mr-1 | |
39 | + mt-1 | |
40 | + flex | |
41 | + justify-center | |
42 | + items-center | |
43 | + border border-solid | |
44 | + hover:border-primary | |
45 | + " | |
35 | 46 | @click="handleClick(icon)" |
36 | 47 | :title="icon" |
37 | 48 | > |
... | ... | @@ -71,7 +82,7 @@ |
71 | 82 | import { ScrollContainer } from '/@/components/Container'; |
72 | 83 | |
73 | 84 | import { Input, Popover, Pagination, Empty } from 'ant-design-vue'; |
74 | - import Icon from './index.vue'; | |
85 | + import Icon from './Icon.vue'; | |
75 | 86 | import SvgIcon from './SvgIcon.vue'; |
76 | 87 | |
77 | 88 | import iconsData from '../data/icons.data'; |
... | ... | @@ -108,9 +119,7 @@ |
108 | 119 | width: propTypes.string.def('100%'), |
109 | 120 | pageSize: propTypes.number.def(140), |
110 | 121 | copy: propTypes.bool.def(false), |
111 | - mode: propTypes | |
112 | - .oneOf<('svg' | 'iconify')[]>(['svg', 'iconify']) | |
113 | - .def('iconify'), | |
122 | + mode: propTypes.oneOf<('svg' | 'iconify')[]>(['svg', 'iconify']).def('iconify'), | |
114 | 123 | }, |
115 | 124 | emits: ['change'], |
116 | 125 | setup(props, { emit }) { | ... | ... |
src/components/Loading/index.ts
src/components/Loading/src/index.vue renamed to src/components/Loading/src/Loading.vue
src/components/Loading/src/createLoading.ts
... | ... | @@ -2,7 +2,7 @@ import { VNode, defineComponent } from 'vue'; |
2 | 2 | import type { LoadingProps } from './types'; |
3 | 3 | |
4 | 4 | import { createVNode, render, reactive, h } from 'vue'; |
5 | -import Loading from './index.vue'; | |
5 | +import Loading from './Loading.vue'; | |
6 | 6 | |
7 | 7 | export function createLoading(props?: Partial<LoadingProps>, target?: HTMLElement, wait = false) { |
8 | 8 | let vm: Nullable<VNode> = null; | ... | ... |
src/components/Markdown/index.ts
src/components/Markdown/src/index.vue renamed to src/components/Markdown/src/Markdown.vue
src/components/Preview/index.ts
src/components/Preview/src/index.vue renamed to src/components/Preview/src/Preview.vue
src/components/Qrcode/index.ts
src/components/Qrcode/src/index.vue renamed to src/components/Qrcode/src/Qrcode.vue
src/components/Scrollbar/index.ts
src/components/Scrollbar/src/index.vue renamed to src/components/Scrollbar/src/Scrollbar.vue
src/components/StrengthMeter/index.ts
src/components/StrengthMeter/src/index.vue renamed to src/components/StrengthMeter/src/StrengthMeter.vue
src/components/Time/index.ts
src/components/Time/src/index.vue renamed to src/components/Time/src/Time.vue
src/components/Tree/index.ts
src/components/Tree/src/index.vue renamed to src/components/Tree/src/Tree.vue
src/components/VirtualScroll/index.ts
src/components/VirtualScroll/src/index.tsx renamed to src/components/VirtualScroll/src/VirtualScroll.tsx
... | ... | @@ -54,33 +54,29 @@ export default defineComponent({ |
54 | 54 | return Math.min((props.items || []).length, state.last + unref(getBenchRef)); |
55 | 55 | }); |
56 | 56 | |
57 | - const getContainerStyleRef = computed( | |
58 | - (): CSSProperties => { | |
59 | - return { | |
60 | - height: convertToUnit((props.items || []).length * unref(getItemHeightRef)), | |
61 | - }; | |
62 | - } | |
63 | - ); | |
57 | + const getContainerStyleRef = computed((): CSSProperties => { | |
58 | + return { | |
59 | + height: convertToUnit((props.items || []).length * unref(getItemHeightRef)), | |
60 | + }; | |
61 | + }); | |
64 | 62 | |
65 | - const getWrapStyleRef = computed( | |
66 | - (): CSSProperties => { | |
67 | - const styles: Recordable<string> = {}; | |
68 | - const height = convertToUnit(props.height); | |
69 | - const minHeight = convertToUnit(props.minHeight); | |
70 | - const minWidth = convertToUnit(props.minWidth); | |
71 | - const maxHeight = convertToUnit(props.maxHeight); | |
72 | - const maxWidth = convertToUnit(props.maxWidth); | |
73 | - const width = convertToUnit(props.width); | |
74 | - | |
75 | - if (height) styles.height = height; | |
76 | - if (minHeight) styles.minHeight = minHeight; | |
77 | - if (minWidth) styles.minWidth = minWidth; | |
78 | - if (maxHeight) styles.maxHeight = maxHeight; | |
79 | - if (maxWidth) styles.maxWidth = maxWidth; | |
80 | - if (width) styles.width = width; | |
81 | - return styles; | |
82 | - } | |
83 | - ); | |
63 | + const getWrapStyleRef = computed((): CSSProperties => { | |
64 | + const styles: Recordable<string> = {}; | |
65 | + const height = convertToUnit(props.height); | |
66 | + const minHeight = convertToUnit(props.minHeight); | |
67 | + const minWidth = convertToUnit(props.minWidth); | |
68 | + const maxHeight = convertToUnit(props.maxHeight); | |
69 | + const maxWidth = convertToUnit(props.maxWidth); | |
70 | + const width = convertToUnit(props.width); | |
71 | + | |
72 | + if (height) styles.height = height; | |
73 | + if (minHeight) styles.minHeight = minHeight; | |
74 | + if (minWidth) styles.minWidth = minWidth; | |
75 | + if (maxHeight) styles.maxHeight = maxHeight; | |
76 | + if (maxWidth) styles.maxWidth = maxWidth; | |
77 | + if (width) styles.width = width; | |
78 | + return styles; | |
79 | + }); | |
84 | 80 | |
85 | 81 | watch([() => props.itemHeight, () => props.height], () => { |
86 | 82 | onScroll(); | ... | ... |
yarn.lock
... | ... | @@ -36,7 +36,7 @@ |
36 | 36 | |
37 | 37 | "@antfu/utils@^0.1.6": |
38 | 38 | version "0.1.6" |
39 | - resolved "https://registry.npmjs.com/@antfu/utils/-/utils-0.1.6.tgz#a9e801f103fd14a59785dd0485fec06b6dc34d94" | |
39 | + resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.1.6.tgz#a9e801f103fd14a59785dd0485fec06b6dc34d94" | |
40 | 40 | integrity sha512-1lcCCEOv4gYlYa/OCjM2JA5nbNll04mNMhSXYu4QetbG14m3LdCvkyDAPlc2AmqRQEqkKpJldRL++9sPpOIydw== |
41 | 41 | |
42 | 42 | "@babel/code-frame@7.12.11": |
... | ... | @@ -1951,14 +1951,14 @@ |
1951 | 1951 | estree-walker "^2.0.1" |
1952 | 1952 | source-map "^0.6.1" |
1953 | 1953 | |
1954 | -"@vue/compiler-core@3.1.0-beta.4": | |
1955 | - version "3.1.0-beta.4" | |
1956 | - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.1.0-beta.4.tgz#ed8b7dd3d2a42688283875de13c500099fe5d612" | |
1957 | - integrity sha512-ukGe7aVKkzD3lDAGeiCPJutY0+FH0JEVglVRY9pm3oAYkX3gdOfrfUCZKx2Vm0IGHci7oyfnIigT3yVTEvcBRg== | |
1954 | +"@vue/compiler-core@3.1.0-beta.5": | |
1955 | + version "3.1.0-beta.5" | |
1956 | + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.1.0-beta.5.tgz#e99427a810d1f1603d58ba5e213f83e2c54688c6" | |
1957 | + integrity sha512-pL6XvPUvZLsGd6wHxZ+KXBEc8oOiKZKCuQ+DGBU2HWSvSP0YrIVA2y1fc/8NP7dFvBq3Eqr79oIPDIQHbmVDIw== | |
1958 | 1958 | dependencies: |
1959 | 1959 | "@babel/parser" "^7.12.0" |
1960 | 1960 | "@babel/types" "^7.12.0" |
1961 | - "@vue/shared" "3.1.0-beta.4" | |
1961 | + "@vue/shared" "3.1.0-beta.5" | |
1962 | 1962 | estree-walker "^2.0.1" |
1963 | 1963 | source-map "^0.6.1" |
1964 | 1964 | |
... | ... | @@ -1970,25 +1970,25 @@ |
1970 | 1970 | "@vue/compiler-core" "3.0.11" |
1971 | 1971 | "@vue/shared" "3.0.11" |
1972 | 1972 | |
1973 | -"@vue/compiler-dom@3.1.0-beta.4": | |
1974 | - version "3.1.0-beta.4" | |
1975 | - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.1.0-beta.4.tgz#2d56d21bf39bc8e57278ecc3abb4c36f971c94d1" | |
1976 | - integrity sha512-D6s1WkunFOANb8gu3F9MhTsF0R0PwxrQAgswY9v0yTKur44vyv0mwaEgQCw0FIwnPNmL15wh5ahtItDvmfkbzQ== | |
1973 | +"@vue/compiler-dom@3.1.0-beta.5": | |
1974 | + version "3.1.0-beta.5" | |
1975 | + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.1.0-beta.5.tgz#c0cccdda578845351c9876f28cc4d68e2e021a61" | |
1976 | + integrity sha512-DZTx4UViFxALOEsCNNb44hClDJEV02JW46G3cdCJwakcLE0o6vppgrazF+7zIOV5qjrN00sAQeCf9EbaLrgY2Q== | |
1977 | 1977 | dependencies: |
1978 | - "@vue/compiler-core" "3.1.0-beta.4" | |
1979 | - "@vue/shared" "3.1.0-beta.4" | |
1978 | + "@vue/compiler-core" "3.1.0-beta.5" | |
1979 | + "@vue/shared" "3.1.0-beta.5" | |
1980 | 1980 | |
1981 | -"@vue/compiler-sfc@3.1.0-beta.4": | |
1982 | - version "3.1.0-beta.4" | |
1983 | - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.1.0-beta.4.tgz#fb4e1b3cee19a34428c9e52c64df3b81ffda6687" | |
1984 | - integrity sha512-G89oMfxPN33d2g1LXxpLIWi7e3wLCh0/w3dV1HWswq3+5YWCW4ITVc/nArPKKT+B9h0CTJ8WSRkBDsbe4AHDTQ== | |
1981 | +"@vue/compiler-sfc@3.1.0-beta.5": | |
1982 | + version "3.1.0-beta.5" | |
1983 | + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.1.0-beta.5.tgz#2c3c8aa4148ca17d2b46eb6fa36363b84b99ce46" | |
1984 | + integrity sha512-mjozHyFFbMOPRFYD1YqpHGvcncnGkPidud9Q+93E0db4crfXJ8dK7jQhc8HYXcoXaQ7WCz9oeF7AaRrAv9CmBw== | |
1985 | 1985 | dependencies: |
1986 | 1986 | "@babel/parser" "^7.13.9" |
1987 | 1987 | "@babel/types" "^7.13.0" |
1988 | - "@vue/compiler-core" "3.1.0-beta.4" | |
1989 | - "@vue/compiler-dom" "3.1.0-beta.4" | |
1990 | - "@vue/compiler-ssr" "3.1.0-beta.4" | |
1991 | - "@vue/shared" "3.1.0-beta.4" | |
1988 | + "@vue/compiler-core" "3.1.0-beta.5" | |
1989 | + "@vue/compiler-dom" "3.1.0-beta.5" | |
1990 | + "@vue/compiler-ssr" "3.1.0-beta.5" | |
1991 | + "@vue/shared" "3.1.0-beta.5" | |
1992 | 1992 | consolidate "^0.16.0" |
1993 | 1993 | estree-walker "^2.0.1" |
1994 | 1994 | hash-sum "^2.0.0" |
... | ... | @@ -2030,13 +2030,13 @@ |
2030 | 2030 | "@vue/compiler-dom" "3.0.11" |
2031 | 2031 | "@vue/shared" "3.0.11" |
2032 | 2032 | |
2033 | -"@vue/compiler-ssr@3.1.0-beta.4": | |
2034 | - version "3.1.0-beta.4" | |
2035 | - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.1.0-beta.4.tgz#9d49a8c7bd047ac446db899b80b3345c5f1e154d" | |
2036 | - integrity sha512-yvE0tee9AjElRKOLS2U4wmYHoxYRfsI+XK/QPEv1gg56M7+CGCK2+Bjwt4nNsCy4Wd0QuD75frCVLIaeOzzn9w== | |
2033 | +"@vue/compiler-ssr@3.1.0-beta.5": | |
2034 | + version "3.1.0-beta.5" | |
2035 | + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.1.0-beta.5.tgz#2ec33b389c86329c5ebeb873e4228c28c26a1bf5" | |
2036 | + integrity sha512-MLuBIj1Sd8yfL44HK5Cm36PFFiQIOHj5I32e/DftbKLaxisrHrUulBniMeQa3aQufIqUUXBfFNC09ejIiojEfg== | |
2037 | 2037 | dependencies: |
2038 | - "@vue/compiler-dom" "3.1.0-beta.4" | |
2039 | - "@vue/shared" "3.1.0-beta.4" | |
2038 | + "@vue/compiler-dom" "3.1.0-beta.5" | |
2039 | + "@vue/shared" "3.1.0-beta.5" | |
2040 | 2040 | |
2041 | 2041 | "@vue/devtools-api@^6.0.0-beta.10": |
2042 | 2042 | version "6.0.0-beta.10" |
... | ... | @@ -2055,12 +2055,12 @@ |
2055 | 2055 | dependencies: |
2056 | 2056 | "@vue/shared" "3.0.11" |
2057 | 2057 | |
2058 | -"@vue/reactivity@3.1.0-beta.4": | |
2059 | - version "3.1.0-beta.4" | |
2060 | - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.1.0-beta.4.tgz#7ef9eb60a05da9662fbdb004ed47c8aaf657e8d3" | |
2061 | - integrity sha512-TfvJ897j4KfTX4g0nKntYTPTijD2eJqVbWIQIQCV6xqTAhqTl+4tsu6RRzPA7Ynh8mv9td7OJoaQYZ3zxM4siA== | |
2058 | +"@vue/reactivity@3.1.0-beta.5": | |
2059 | + version "3.1.0-beta.5" | |
2060 | + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.1.0-beta.5.tgz#c5b279a3d95ab35fa92489f2abc94f613bc6734c" | |
2061 | + integrity sha512-lf+DVxUWZZMgOgt8QN4N91JmpxjkuDu/A3pk3jwwrb6yB4Q759IfmbD2PTKcTqgmQWaSw5CJPjRjyTe1wkWAeg== | |
2062 | 2062 | dependencies: |
2063 | - "@vue/shared" "3.1.0-beta.4" | |
2063 | + "@vue/shared" "3.1.0-beta.5" | |
2064 | 2064 | |
2065 | 2065 | "@vue/runtime-core@3.0.11": |
2066 | 2066 | version "3.0.11" |
... | ... | @@ -2070,13 +2070,13 @@ |
2070 | 2070 | "@vue/reactivity" "3.0.11" |
2071 | 2071 | "@vue/shared" "3.0.11" |
2072 | 2072 | |
2073 | -"@vue/runtime-core@3.1.0-beta.4": | |
2074 | - version "3.1.0-beta.4" | |
2075 | - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.1.0-beta.4.tgz#3c41b38d8518a6778d93541c3760d4264c971fca" | |
2076 | - integrity sha512-hsB+s5/JyFxYB56MHHq/XowB8jj8n5cYB9wqon2cMylC/HSxgvSMdehNbky6X5s8vAQ8HYCSjqzn94MlOP5USA== | |
2073 | +"@vue/runtime-core@3.1.0-beta.5": | |
2074 | + version "3.1.0-beta.5" | |
2075 | + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.1.0-beta.5.tgz#9da74fb070e7152a4486fb7e477ba9fdfbc8f8c6" | |
2076 | + integrity sha512-YNKmKr0xI5KMplju7XfTPRsK1ePewaiEyKvvsLROQ3609HGkJWeKZlWAPdYb5j2i1ub8v4hM4iZXxQtZmrQGhg== | |
2077 | 2077 | dependencies: |
2078 | - "@vue/reactivity" "3.1.0-beta.4" | |
2079 | - "@vue/shared" "3.1.0-beta.4" | |
2078 | + "@vue/reactivity" "3.1.0-beta.5" | |
2079 | + "@vue/shared" "3.1.0-beta.5" | |
2080 | 2080 | |
2081 | 2081 | "@vue/runtime-dom@3.0.11": |
2082 | 2082 | version "3.0.11" |
... | ... | @@ -2087,13 +2087,13 @@ |
2087 | 2087 | "@vue/shared" "3.0.11" |
2088 | 2088 | csstype "^2.6.8" |
2089 | 2089 | |
2090 | -"@vue/runtime-dom@3.1.0-beta.4": | |
2091 | - version "3.1.0-beta.4" | |
2092 | - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.1.0-beta.4.tgz#72f63309defa7b7b19af5c2118c8e9fdf4b44adb" | |
2093 | - integrity sha512-jg7Bn6aLoUZ5ACobEQYZovexgXKKhh95vudsyTSIZoq5m/tKRTCQg/UbzkWlE1P9UrRigQsF2sbhoxa0COktSg== | |
2090 | +"@vue/runtime-dom@3.1.0-beta.5": | |
2091 | + version "3.1.0-beta.5" | |
2092 | + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.1.0-beta.5.tgz#e5ebf4f13103198b0bb43b0d2eba699a5a022d1f" | |
2093 | + integrity sha512-eLML5RNn9q/QJo802GRBvNC9W1BABJ8xyvexrruZCZAlKocTq9J0j2vS2IwAl/WbG1X8cY6yPgdQEQ/8eUy0Og== | |
2094 | 2094 | dependencies: |
2095 | - "@vue/runtime-core" "3.1.0-beta.4" | |
2096 | - "@vue/shared" "3.1.0-beta.4" | |
2095 | + "@vue/runtime-core" "3.1.0-beta.5" | |
2096 | + "@vue/shared" "3.1.0-beta.5" | |
2097 | 2097 | csstype "^2.6.8" |
2098 | 2098 | |
2099 | 2099 | "@vue/shared@3.0.11", "@vue/shared@^3.0.11": |
... | ... | @@ -2101,10 +2101,10 @@ |
2101 | 2101 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.0.11.tgz#20d22dd0da7d358bb21c17f9bde8628152642c77" |
2102 | 2102 | integrity sha512-b+zB8A2so8eCE0JsxjL24J7vdGl8rzPQ09hZNhystm+KqSbKcAej1A+Hbva1rCMmTTqA+hFnUSDc5kouEo0JzA== |
2103 | 2103 | |
2104 | -"@vue/shared@3.1.0-beta.4": | |
2105 | - version "3.1.0-beta.4" | |
2106 | - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.0-beta.4.tgz#eb7038506cfc0a0a89fa2a46b40186df17adf58c" | |
2107 | - integrity sha512-W2vWLh8XEK1xOkzBQdqDNng324hbWe3LEebHaHBM2o3vIPp5zCO/P8LCfTGpLaFU2ISy2NhAUk44VZBswFAKEQ== | |
2104 | +"@vue/shared@3.1.0-beta.5": | |
2105 | + version "3.1.0-beta.5" | |
2106 | + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.0-beta.5.tgz#ef971d6f1c64f89c5918529dcbee67de9de15cfa" | |
2107 | + integrity sha512-jtQGnIERLNZWbj4Uy6uddALlzemqH5YpCQtwIT1e0DbDpEQ+OUMP6j5TCuFWARblv63lT9t/e+nOZcC1iTr6zg== | |
2108 | 2108 | |
2109 | 2109 | "@vueuse/core@^4.11.1": |
2110 | 2110 | version "4.11.1" |
... | ... | @@ -2123,7 +2123,7 @@ |
2123 | 2123 | |
2124 | 2124 | "@windicss/plugin-utils@0.16.0": |
2125 | 2125 | version "0.16.0" |
2126 | - resolved "https://registry.npmjs.com/@windicss/plugin-utils/-/plugin-utils-0.16.0.tgz#660586b95ed3394b07f9970b2be77f681ea1ecd4" | |
2126 | + resolved "https://registry.yarnpkg.com/@windicss/plugin-utils/-/plugin-utils-0.16.0.tgz#660586b95ed3394b07f9970b2be77f681ea1ecd4" | |
2127 | 2127 | integrity sha512-Gu6iHqFnqfxE0J8Oa74+2W5L2052ptqEHBtPaOuXOFgIMTJAT2KoXb6v+/Z0ldHsxVC1q+MSsom877SJ0cL2iA== |
2128 | 2128 | dependencies: |
2129 | 2129 | "@antfu/utils" "^0.1.6" |
... | ... | @@ -6374,7 +6374,7 @@ jest-worker@^26.2.1: |
6374 | 6374 | |
6375 | 6375 | jiti@^1.9.2: |
6376 | 6376 | version "1.9.2" |
6377 | - resolved "https://registry.npmjs.com/jiti/-/jiti-1.9.2.tgz#2ee44830883dbb1b2e222adc053c3052d0bf3b61" | |
6377 | + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.9.2.tgz#2ee44830883dbb1b2e222adc053c3052d0bf3b61" | |
6378 | 6378 | integrity sha512-wymUBR/YGGVNVRAxX52yvFoZdUAYKEGjk0sYrz6gXLCvMblnRvJAmDUnMvQiH4tUHDBtbKHnZ4GT3R+m3Hc39A== |
6379 | 6379 | |
6380 | 6380 | js-base64@^2.1.9: |
... | ... | @@ -10119,10 +10119,10 @@ typescript-vscode-sh-plugin@^0.6.14: |
10119 | 10119 | resolved "https://registry.npmjs.org/typescript-vscode-sh-plugin/-/typescript-vscode-sh-plugin-0.6.14.tgz#a81031b502f6346a26ea49ce082438c3e353bb38" |
10120 | 10120 | integrity sha512-AkNlRBbI6K7gk29O92qthNSvc6jjmNQ6isVXoYxkFwPa8D04tIv2SOPd+sd+mNpso4tNdL2gy7nVtrd5yFqvlA== |
10121 | 10121 | |
10122 | -typescript@4.2.4: | |
10123 | - version "4.2.4" | |
10124 | - resolved "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961" | |
10125 | - integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg== | |
10122 | +typescript@4.3.2: | |
10123 | + version "4.3.2" | |
10124 | + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.2.tgz#399ab18aac45802d6f2498de5054fcbbe716a805" | |
10125 | + integrity sha512-zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw== | |
10126 | 10126 | |
10127 | 10127 | uglify-js@^3.1.4: |
10128 | 10128 | version "3.13.3" |
... | ... | @@ -10696,7 +10696,7 @@ vite-plugin-theme@^0.8.0: |
10696 | 10696 | |
10697 | 10697 | vite-plugin-windicss@0.16.0: |
10698 | 10698 | version "0.16.0" |
10699 | - resolved "https://registry.npmjs.com/vite-plugin-windicss/-/vite-plugin-windicss-0.16.0.tgz#d3ef9da930cc33aec162b9b760f4d42835eb353c" | |
10699 | + resolved "https://registry.yarnpkg.com/vite-plugin-windicss/-/vite-plugin-windicss-0.16.0.tgz#d3ef9da930cc33aec162b9b760f4d42835eb353c" | |
10700 | 10700 | integrity sha512-XaYnPNKsq2yZ5Ph39ZmPvtsTheyVsGSXibTOq/kWCKcXyLxIinTL6xQvLsagjF8QzHpHPF4NbsFvvGtO81gxgA== |
10701 | 10701 | dependencies: |
10702 | 10702 | "@windicss/plugin-utils" "0.16.0" |
... | ... | @@ -10920,14 +10920,14 @@ vue-types@^3.0.0, vue-types@^3.0.2: |
10920 | 10920 | dependencies: |
10921 | 10921 | is-plain-object "3.0.1" |
10922 | 10922 | |
10923 | -vue@3.1.0-beta.4: | |
10924 | - version "3.1.0-beta.4" | |
10925 | - resolved "https://registry.yarnpkg.com/vue/-/vue-3.1.0-beta.4.tgz#c17c14f60a9267c5f33d9fa4dbc9bc54605d5ae2" | |
10926 | - integrity sha512-HzJnk1iaWGcExAaAIO2yVMMhxHX6wSLcKF3/PwF2NZMlMpUf7ZQSFHVfzIyJqaQ96K1KJOlDPbpqKYLpRq947w== | |
10923 | +vue@3.1.0-beta.5: | |
10924 | + version "3.1.0-beta.5" | |
10925 | + resolved "https://registry.yarnpkg.com/vue/-/vue-3.1.0-beta.5.tgz#6fe228f0b4e20203b4755cb18a958af79a8ac63f" | |
10926 | + integrity sha512-g2tHxOLkXq6OUk5hCEJDgwvmeG00v1301SBsyn9ATCyhvHm8NBl4IOWLoUAmucHXexTVwFokrIXZVDTZlLou0g== | |
10927 | 10927 | dependencies: |
10928 | - "@vue/compiler-dom" "3.1.0-beta.4" | |
10929 | - "@vue/runtime-dom" "3.1.0-beta.4" | |
10930 | - "@vue/shared" "3.1.0-beta.4" | |
10928 | + "@vue/compiler-dom" "3.1.0-beta.5" | |
10929 | + "@vue/runtime-dom" "3.1.0-beta.5" | |
10930 | + "@vue/shared" "3.1.0-beta.5" | |
10931 | 10931 | |
10932 | 10932 | vue@^3.0.0: |
10933 | 10933 | version "3.0.11" |
... | ... | @@ -11004,9 +11004,9 @@ widest-line@^2.0.0: |
11004 | 11004 | string-width "^2.1.1" |
11005 | 11005 | |
11006 | 11006 | windicss@^3.0.9: |
11007 | - version "3.0.9" | |
11008 | - resolved "https://registry.npmjs.com/windicss/-/windicss-3.0.9.tgz#bc71e6fac60f779f9f3c4b4680565156623911d3" | |
11009 | - integrity sha512-pv/SnYPfqYwz25672irDzNZpcEK/QlN9Dlhe2KUQXDjqd46wl/zLAi51BNB0pdfDZDbNjyvI1XgDXHk1oFF51A== | |
11007 | + version "3.0.12" | |
11008 | + resolved "https://registry.yarnpkg.com/windicss/-/windicss-3.0.12.tgz#4354aaa48faaac6fd02f3119a62587da2c46b018" | |
11009 | + integrity sha512-pDxtFLN0xmL7bnGtnEfu9z7B5279UM2EP8wWlPH+FYb5gjHyONxRtyWtR5QIn1FRx6h1UXpm+I19GgTx5Y4TyA== | |
11010 | 11010 | |
11011 | 11011 | with@^7.0.0: |
11012 | 11012 | version "7.0.2" | ... | ... |