🐛(component): table
默认加载时有横向滚动条,header 的滚动条占位无法显示 ISSUES CLOSED: https://gitee.com/layui/layui-vue/issues/I5F8R1
This commit is contained in:
parent
6953c530ca
commit
8e45ff5a0d
@ -217,13 +217,17 @@ let tableHeader = ref<HTMLElement | null>(null);
|
||||
let tableBody = ref<HTMLElement | null>(null);
|
||||
let scrollWidthCell = ref(0);
|
||||
|
||||
onMounted(() => {
|
||||
const scrollWidth: number = tableBody.value?.scrollWidth || 0;
|
||||
const getScrollWidth = () => {
|
||||
const clientWidth: number = tableBody.value?.clientWidth || 0;
|
||||
const offsetWidth: number = tableBody.value?.offsetWidth || 0;
|
||||
|
||||
if (scrollWidth < offsetWidth) {
|
||||
scrollWidthCell.value = offsetWidth - scrollWidth;
|
||||
if (clientWidth < offsetWidth) {
|
||||
scrollWidthCell.value = offsetWidth - clientWidth;
|
||||
}
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
getScrollWidth();
|
||||
tableBody.value?.addEventListener("scroll", () => {
|
||||
tableHeader.value!.scrollLeft = tableBody.value?.scrollLeft || 0;
|
||||
});
|
||||
|
@ -435,19 +435,20 @@ export default {
|
||||
const columns8 = [
|
||||
{
|
||||
title:"账户",
|
||||
width:"200px",
|
||||
minWidth:"200px",
|
||||
key:"username"
|
||||
},{
|
||||
title:"密码",
|
||||
width: "180px",
|
||||
minWidth: "180px",
|
||||
key:"password"
|
||||
},{
|
||||
title:"年龄",
|
||||
width: "180px",
|
||||
minWidth: "180px",
|
||||
key:"age"
|
||||
},{
|
||||
title:"备注",
|
||||
key:"remark",
|
||||
minWidth: "180px",
|
||||
ellipsisTooltip: true,
|
||||
}
|
||||
]
|
||||
|
191
pnpm-lock.yaml
191
pnpm-lock.yaml
@ -1,4 +1,4 @@
|
||||
lockfileVersion: 5.3
|
||||
lockfileVersion: 5.4
|
||||
|
||||
importers:
|
||||
|
||||
@ -46,10 +46,10 @@ importers:
|
||||
'@babel/preset-typescript': 7.16.7_@babel+core@7.17.9
|
||||
'@commitlint/cli': 16.2.3
|
||||
'@commitlint/config-conventional': 16.2.1
|
||||
'@rollup/plugin-babel': 5.3.1_@babel+core@7.17.9+rollup@2.75.5
|
||||
'@rollup/plugin-babel': 5.3.1_hgifciwidddhnedalyprixjsri
|
||||
'@types/node': 16.11.26
|
||||
'@typescript-eslint/eslint-plugin': 5.17.0_ec46de5930d083862c6e4af5d970d096
|
||||
'@typescript-eslint/parser': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/eslint-plugin': 5.17.0_5rdn4wjq2cbymldojl25s4gqsy
|
||||
'@typescript-eslint/parser': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@vitejs/plugin-vue': 2.3.3_vite@2.9.12+vue@3.2.37
|
||||
'@vue/compiler-sfc': 3.2.37
|
||||
'@vue/server-renderer': 3.2.37_vue@3.2.37
|
||||
@ -59,7 +59,7 @@ importers:
|
||||
cz-customizable: 6.3.0
|
||||
eslint: 8.12.0
|
||||
eslint-config-prettier: 8.5.0_eslint@8.12.0
|
||||
eslint-plugin-prettier: 4.0.0_f2c91d0f54113167d2bd9214a5ab5a36
|
||||
eslint-plugin-prettier: 4.0.0_6ler2d2uceywpuv5sikklk22gy
|
||||
eslint-plugin-vue: 8.5.0_eslint@8.12.0
|
||||
husky: 8.0.1
|
||||
less: 4.1.2
|
||||
@ -85,13 +85,13 @@ importers:
|
||||
'@layui/icons-vue': link:../icons
|
||||
'@layui/layer-vue': link:../layer
|
||||
'@umijs/ssr-darkreader': 4.9.45
|
||||
'@vueuse/core': 8.7.3_vue@3.2.37
|
||||
'@vueuse/core': 8.7.3
|
||||
async-validator: 4.1.1
|
||||
cropperjs: 1.5.12
|
||||
dayjs: 1.11.0
|
||||
evtd: 0.2.3
|
||||
uuid: 8.3.2
|
||||
vue-i18n: 9.1.10_vue@3.2.37
|
||||
vue-i18n: 9.1.10
|
||||
|
||||
package/document-component:
|
||||
specifiers:
|
||||
@ -114,12 +114,12 @@ importers:
|
||||
vue-i18n: ^9.1.10
|
||||
vue-router: ^4.0.15
|
||||
dependencies:
|
||||
'@vueuse/core': 8.7.3_vue@3.2.37
|
||||
'@vueuse/core': 8.7.3
|
||||
axios: 0.27.2
|
||||
pinia: 2.0.14_typescript@4.7.3+vue@3.2.37
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14+vue@3.2.37
|
||||
vue-i18n: 9.1.10_vue@3.2.37
|
||||
vue-router: 4.0.16_vue@3.2.37
|
||||
pinia: 2.0.14_typescript@4.7.3
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14
|
||||
vue-i18n: 9.1.10
|
||||
vue-router: 4.0.16
|
||||
devDependencies:
|
||||
'@types/markdown-it': 12.2.3
|
||||
'@types/markdown-it-container': 2.0.5
|
||||
@ -131,7 +131,7 @@ importers:
|
||||
rimraf: 3.0.2
|
||||
rollup: 2.75.5
|
||||
typescript: 4.7.3
|
||||
vite: 2.9.8_less@4.1.2
|
||||
vite: 2.9.8
|
||||
vite-plugin-md: 0.13.1_vite@2.9.8
|
||||
|
||||
package/document-layer:
|
||||
@ -154,12 +154,12 @@ importers:
|
||||
vue-i18n: ^9.1.10
|
||||
vue-router: ^4.0.15
|
||||
dependencies:
|
||||
'@vueuse/core': 8.7.3_vue@3.2.37
|
||||
'@vueuse/core': 8.7.3
|
||||
axios: 0.27.2
|
||||
pinia: 2.0.14_typescript@4.7.3+vue@3.2.37
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14+vue@3.2.37
|
||||
vue-i18n: 9.1.10_vue@3.2.37
|
||||
vue-router: 4.0.16_vue@3.2.37
|
||||
pinia: 2.0.14_typescript@4.7.3
|
||||
pinia-plugin-persist: 1.0.0_pinia@2.0.14
|
||||
vue-i18n: 9.1.10
|
||||
vue-router: 4.0.16
|
||||
devDependencies:
|
||||
'@types/markdown-it': 12.2.3
|
||||
'@types/markdown-it-container': 2.0.5
|
||||
@ -170,7 +170,7 @@ importers:
|
||||
rimraf: 3.0.2
|
||||
rollup: 2.75.5
|
||||
typescript: 4.7.3
|
||||
vite: 2.9.8_less@4.1.2
|
||||
vite: 2.9.8
|
||||
vite-plugin-md: 0.13.1_vite@2.9.8
|
||||
|
||||
package/icons:
|
||||
@ -180,7 +180,7 @@ importers:
|
||||
specifiers:
|
||||
'@babel/plugin-transform-runtime': ^7.18.5
|
||||
devDependencies:
|
||||
'@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.17.9
|
||||
'@babel/plugin-transform-runtime': 7.18.5
|
||||
|
||||
packages:
|
||||
|
||||
@ -254,6 +254,18 @@ packages:
|
||||
'@babel/types': 7.17.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets/7.17.7:
|
||||
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.17.7
|
||||
'@babel/helper-validator-option': 7.16.7
|
||||
browserslist: 4.20.2
|
||||
semver: 6.3.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@ -296,6 +308,23 @@ packages:
|
||||
regexpu-core: 5.0.1
|
||||
dev: true
|
||||
|
||||
/@babel/helper-define-polyfill-provider/0.3.1:
|
||||
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.4.0-0
|
||||
dependencies:
|
||||
'@babel/helper-compilation-targets': 7.17.7
|
||||
'@babel/helper-module-imports': 7.16.7
|
||||
'@babel/helper-plugin-utils': 7.16.7
|
||||
'@babel/traverse': 7.17.9
|
||||
debug: 4.3.4
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.22.0
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
|
||||
peerDependencies:
|
||||
@ -1115,18 +1144,17 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.16.7
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-runtime/7.18.5_@babel+core@7.17.9:
|
||||
/@babel/plugin-transform-runtime/7.18.5:
|
||||
resolution: {integrity: sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.17.9
|
||||
'@babel/helper-module-imports': 7.16.7
|
||||
'@babel/helper-plugin-utils': 7.17.12
|
||||
babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.9
|
||||
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.9
|
||||
babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.9
|
||||
babel-plugin-polyfill-corejs2: 0.3.1
|
||||
babel-plugin-polyfill-corejs3: 0.5.2
|
||||
babel-plugin-polyfill-regenerator: 0.3.1
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@ -1455,7 +1483,7 @@ packages:
|
||||
'@types/node': 16.11.26
|
||||
chalk: 4.1.2
|
||||
cosmiconfig: 7.0.1
|
||||
cosmiconfig-typescript-loader: 1.0.7_98be30d9db897f1a45c73c3b6eb340e2
|
||||
cosmiconfig-typescript-loader: 1.0.7_tc7dbwo3rf7rurohhq5w5m2a4i
|
||||
lodash: 4.17.21
|
||||
resolve-from: 5.0.0
|
||||
typescript: 4.7.3
|
||||
@ -1667,7 +1695,7 @@ packages:
|
||||
fastq: 1.13.0
|
||||
dev: true
|
||||
|
||||
/@rollup/plugin-babel/5.3.1_@babel+core@7.17.9+rollup@2.75.5:
|
||||
/@rollup/plugin-babel/5.3.1_hgifciwidddhnedalyprixjsri:
|
||||
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
|
||||
engines: {node: '>= 10.0.0'}
|
||||
peerDependencies:
|
||||
@ -1769,7 +1797,7 @@ packages:
|
||||
resolution: {integrity: sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==}
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/eslint-plugin/5.17.0_ec46de5930d083862c6e4af5d970d096:
|
||||
/@typescript-eslint/eslint-plugin/5.17.0_5rdn4wjq2cbymldojl25s4gqsy:
|
||||
resolution: {integrity: sha512-qVstvQilEd89HJk3qcbKt/zZrfBZ+9h2ynpAGlWjWiizA7m/MtLT9RoX6gjtpE500vfIg8jogAkDzdCxbsFASQ==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1780,10 +1808,10 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/parser': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/scope-manager': 5.17.0
|
||||
'@typescript-eslint/type-utils': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/utils': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/type-utils': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
'@typescript-eslint/utils': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
debug: 4.3.4
|
||||
eslint: 8.12.0
|
||||
functional-red-black-tree: 1.0.1
|
||||
@ -1796,7 +1824,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/parser/5.17.0_eslint@8.12.0+typescript@4.7.3:
|
||||
/@typescript-eslint/parser/5.17.0_x66lnsojg54lmfpjeg6pogs53i:
|
||||
resolution: {integrity: sha512-aRzW9Jg5Rlj2t2/crzhA2f23SIYFlF9mchGudyP0uiD6SenIxzKoLjwzHbafgHn39dNV/TV7xwQkLfFTZlJ4ig==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1824,7 +1852,7 @@ packages:
|
||||
'@typescript-eslint/visitor-keys': 5.17.0
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/type-utils/5.17.0_eslint@8.12.0+typescript@4.7.3:
|
||||
/@typescript-eslint/type-utils/5.17.0_x66lnsojg54lmfpjeg6pogs53i:
|
||||
resolution: {integrity: sha512-3hU0RynUIlEuqMJA7dragb0/75gZmwNwFf/QJokWzPehTZousP/MNifVSgjxNcDCkM5HI2K22TjQWUmmHUINSg==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1834,7 +1862,7 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 5.17.0_eslint@8.12.0+typescript@4.7.3
|
||||
'@typescript-eslint/utils': 5.17.0_x66lnsojg54lmfpjeg6pogs53i
|
||||
debug: 4.3.4
|
||||
eslint: 8.12.0
|
||||
tsutils: 3.21.0_typescript@4.7.3
|
||||
@ -1869,7 +1897,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/utils/5.17.0_eslint@8.12.0+typescript@4.7.3:
|
||||
/@typescript-eslint/utils/5.17.0_x66lnsojg54lmfpjeg6pogs53i:
|
||||
resolution: {integrity: sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -1974,7 +2002,6 @@ packages:
|
||||
'@vue/runtime-core': 3.2.37
|
||||
'@vue/shared': 3.2.37
|
||||
csstype: 2.6.20
|
||||
dev: false
|
||||
|
||||
/@vue/server-renderer/3.2.37_vue@3.2.37:
|
||||
resolution: {integrity: sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==}
|
||||
@ -1988,7 +2015,7 @@ packages:
|
||||
/@vue/shared/3.2.37:
|
||||
resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==}
|
||||
|
||||
/@vueuse/core/8.7.3_vue@3.2.37:
|
||||
/@vueuse/core/8.7.3:
|
||||
resolution: {integrity: sha512-jpBnyG9b4wXgk0Dz3I71lfhD0o53t1tZR+NoAQ+17zJy7MP/VDfGIkq8GcqpDwmptLCmGiGVipkPbWmDGMic8Q==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
@ -2000,16 +2027,15 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@vueuse/metadata': 8.7.3
|
||||
'@vueuse/shared': 8.7.3_vue@3.2.37
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
'@vueuse/shared': 8.7.3
|
||||
vue-demi: 0.12.5
|
||||
dev: false
|
||||
|
||||
/@vueuse/metadata/8.7.3:
|
||||
resolution: {integrity: sha512-spf9kgCsBEFbQb90I6SIqAWh1yP5T1JoJGj+/04+VTMIHXKzn3iecmHUalg8QEOCPNtnFQGNEw5OLg0L39eizg==}
|
||||
dev: false
|
||||
|
||||
/@vueuse/shared/8.7.3_vue@3.2.37:
|
||||
/@vueuse/shared/8.7.3:
|
||||
resolution: {integrity: sha512-PMc/h6cEakJ4+5VuNUGi7RnbA6CkLvtG2230x8w3zYJpW1P6Qphh9+dFFvHn7TX+RlaicF5ND0RX1NxWmAoW7w==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
@ -2020,8 +2046,7 @@ packages:
|
||||
vue:
|
||||
optional: true
|
||||
dependencies:
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
vue-demi: 0.12.5
|
||||
dev: false
|
||||
|
||||
/JSONStream/1.3.5:
|
||||
@ -2150,6 +2175,18 @@ packages:
|
||||
object.assign: 4.1.2
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs2/0.3.1:
|
||||
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.17.7
|
||||
'@babel/helper-define-polyfill-provider': 0.3.1
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
|
||||
peerDependencies:
|
||||
@ -2163,6 +2200,17 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs3/0.5.2:
|
||||
resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-define-polyfill-provider': 0.3.1
|
||||
core-js-compat: 3.21.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
|
||||
peerDependencies:
|
||||
@ -2175,6 +2223,16 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-regenerator/0.3.1:
|
||||
resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-define-polyfill-provider': 0.3.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.9:
|
||||
resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
|
||||
peerDependencies:
|
||||
@ -2414,7 +2472,7 @@ packages:
|
||||
semver: 7.0.0
|
||||
dev: true
|
||||
|
||||
/cosmiconfig-typescript-loader/1.0.7_98be30d9db897f1a45c73c3b6eb340e2:
|
||||
/cosmiconfig-typescript-loader/1.0.7_tc7dbwo3rf7rurohhq5w5m2a4i:
|
||||
resolution: {integrity: sha512-PxBM//vKuwRmo7xqamKDL+q/FvGig+wKS5pOzaXO/DJbtNzbIYi1bDk251pftEdPRRetEN8RSIyF35n8zLtibA==}
|
||||
engines: {node: '>=12', npm: '>=6'}
|
||||
peerDependencies:
|
||||
@ -2423,7 +2481,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/node': 16.11.26
|
||||
cosmiconfig: 7.0.1
|
||||
ts-node: 10.7.0_98be30d9db897f1a45c73c3b6eb340e2
|
||||
ts-node: 10.7.0_tc7dbwo3rf7rurohhq5w5m2a4i
|
||||
typescript: 4.7.3
|
||||
transitivePeerDependencies:
|
||||
- '@swc/core'
|
||||
@ -2460,7 +2518,6 @@ packages:
|
||||
|
||||
/csstype/2.6.20:
|
||||
resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
|
||||
dev: false
|
||||
|
||||
/cz-conventional-changelog/3.2.0:
|
||||
resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==}
|
||||
@ -2519,6 +2576,11 @@ packages:
|
||||
|
||||
/debug/3.2.7:
|
||||
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
||||
peerDependencies:
|
||||
supports-color: '*'
|
||||
peerDependenciesMeta:
|
||||
supports-color:
|
||||
optional: true
|
||||
dependencies:
|
||||
ms: 2.1.2
|
||||
dev: true
|
||||
@ -2873,7 +2935,7 @@ packages:
|
||||
eslint: 8.12.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-prettier/4.0.0_f2c91d0f54113167d2bd9214a5ab5a36:
|
||||
/eslint-plugin-prettier/4.0.0_6ler2d2uceywpuv5sikklk22gy:
|
||||
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
peerDependencies:
|
||||
@ -3683,6 +3745,8 @@ packages:
|
||||
mime: 1.6.0
|
||||
needle: 2.9.1
|
||||
source-map: 0.6.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/levn/0.4.1:
|
||||
@ -3926,6 +3990,8 @@ packages:
|
||||
debug: 3.2.7
|
||||
iconv-lite: 0.4.24
|
||||
sax: 1.2.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
@ -4114,7 +4180,7 @@ packages:
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/pinia-plugin-persist/1.0.0_pinia@2.0.14+vue@3.2.37:
|
||||
/pinia-plugin-persist/1.0.0_pinia@2.0.14:
|
||||
resolution: {integrity: sha512-M4hBBd8fz/GgNmUPaaUsC29y1M09lqbXrMAHcusVoU8xlQi1TqgkWnnhvMikZwr7Le/hVyMx8KUcumGGrR6GVw==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.0.0
|
||||
@ -4124,12 +4190,11 @@ packages:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
dependencies:
|
||||
pinia: 2.0.14_typescript@4.7.3+vue@3.2.37
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
pinia: 2.0.14_typescript@4.7.3
|
||||
vue-demi: 0.12.5
|
||||
dev: false
|
||||
|
||||
/pinia/2.0.14_typescript@4.7.3+vue@3.2.37:
|
||||
/pinia/2.0.14_typescript@4.7.3:
|
||||
resolution: {integrity: sha512-0nPuZR4TetT/WcLN+feMSjWJku3SQU7dBbXC6uw+R6FLQJCsg+/0pzXyD82T1FmAYe0lsx+jnEDQ1BLgkRKlxA==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.4.0
|
||||
@ -4143,8 +4208,7 @@ packages:
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.1.4
|
||||
typescript: 4.7.3
|
||||
vue: 3.2.37
|
||||
vue-demi: 0.12.5_vue@3.2.37
|
||||
vue-demi: 0.12.5
|
||||
dev: false
|
||||
|
||||
/postcss/8.4.13:
|
||||
@ -4641,7 +4705,7 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/ts-node/10.7.0_98be30d9db897f1a45c73c3b6eb340e2:
|
||||
/ts-node/10.7.0_tc7dbwo3rf7rurohhq5w5m2a4i:
|
||||
resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
@ -4721,7 +4785,6 @@ packages:
|
||||
resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
|
||||
engines: {node: '>=4.2.0'}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/uc.micro/1.0.6:
|
||||
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
|
||||
@ -4808,7 +4871,7 @@ packages:
|
||||
'@vue/runtime-core': 3.2.37
|
||||
gray-matter: 4.0.3
|
||||
markdown-it: 13.0.1
|
||||
vite: 2.9.8_less@4.1.2
|
||||
vite: 2.9.8
|
||||
dev: true
|
||||
|
||||
/vite/2.9.12_less@4.1.2:
|
||||
@ -4836,7 +4899,7 @@ packages:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/vite/2.9.8_less@4.1.2:
|
||||
/vite/2.9.8:
|
||||
resolution: {integrity: sha512-zsBGwn5UT3YS0NLSJ7hnR54+vUKfgzMUh/Z9CxF1YKEBVIe213+63jrFLmZphgGI5zXwQCSmqIdbPuE8NJywPw==}
|
||||
engines: {node: '>=12.2.0'}
|
||||
hasBin: true
|
||||
@ -4853,7 +4916,6 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
esbuild: 0.14.31
|
||||
less: 4.1.2
|
||||
postcss: 8.4.13
|
||||
resolve: 1.22.0
|
||||
rollup: 2.75.5
|
||||
@ -4861,7 +4923,7 @@ packages:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/vue-demi/0.12.5_vue@3.2.37:
|
||||
/vue-demi/0.12.5:
|
||||
resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
@ -4872,8 +4934,6 @@ packages:
|
||||
peerDependenciesMeta:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
dependencies:
|
||||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue-eslint-parser/8.3.0_eslint@8.12.0:
|
||||
@ -4894,7 +4954,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/vue-i18n/9.1.10_vue@3.2.37:
|
||||
/vue-i18n/9.1.10:
|
||||
resolution: {integrity: sha512-jpr7gV5KPk4n+sSPdpZT8Qx3XzTcNDWffRlHV/cT2NUyEf+sEgTTmLvnBAibjOFJ0zsUyZlVTAWH5DDnYep+1g==}
|
||||
engines: {node: '>= 10'}
|
||||
peerDependencies:
|
||||
@ -4904,16 +4964,14 @@ packages:
|
||||
'@intlify/shared': 9.1.10
|
||||
'@intlify/vue-devtools': 9.1.10
|
||||
'@vue/devtools-api': 6.1.4
|
||||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue-router/4.0.16_vue@3.2.37:
|
||||
/vue-router/4.0.16:
|
||||
resolution: {integrity: sha512-JcO7cb8QJLBWE+DfxGUL3xUDOae/8nhM1KVdnudadTAORbuxIC/xAydC5Zr/VLHUDQi1ppuTF5/rjBGzgzrJNA==}
|
||||
peerDependencies:
|
||||
vue: ^3.2.0
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.1.4
|
||||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue/3.2.37:
|
||||
@ -4924,7 +4982,6 @@ packages:
|
||||
'@vue/runtime-dom': 3.2.37
|
||||
'@vue/server-renderer': 3.2.37_vue@3.2.37
|
||||
'@vue/shared': 3.2.37
|
||||
dev: false
|
||||
|
||||
/which/1.3.1:
|
||||
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
|
||||
|
Loading…
Reference in New Issue
Block a user