Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
najiu-admin-template
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
najiu-frontend
najiu-admin-template
Commits
d67bd496
Commit
d67bd496
authored
Mar 02, 2021
by
Vben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: improve icon-picker logic
parent
e5b2cc1e
Changes
14
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
892 additions
and
2523 deletions
+892
-2523
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+1
-1
generateIconJson.ts
build/gen/generateIconJson.ts
+23
-7
package.json
package.json
+6
-7
icons.data.ts
src/components/Icon/data/icons.data.ts
+793
-0
index.ts
src/components/Icon/index.ts
+4
-1
ion-info.json
src/components/Icon/json/ion-info.json
+0
-2338
IconPicker.vue
src/components/Icon/src/IconPicker.vue
+16
-1
index.vue
src/components/Icon/src/index.vue
+0
-1
en.ts
src/locales/lang/en.ts
+1
-1
zh_CN.ts
src/locales/lang/zh_CN.ts
+1
-1
setupI18n.ts
src/locales/setupI18n.ts
+1
-1
routeHelper.ts
src/router/helper/routeHelper.ts
+0
-1
vite.config.ts
vite.config.ts
+1
-0
yarn.lock
yarn.lock
+45
-163
No files found.
CHANGELOG.zh_CN.md
View file @
d67bd496
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
### ✨ Features
### ✨ Features
-
axios 支持 form-data 格式请求
-
axios 支持 form-data 格式请求
-
新增图标选择器组件
-
新增图标选择器组件
(支持本地和在线方式)
-
新增修改密码界面
-
新增修改密码界面
-
新增部门管理示例界面
-
新增部门管理示例界面
-
新增 WebSocket 示例和服务脚本
-
新增 WebSocket 示例和服务脚本
...
...
build/gen/generateIconJson.ts
View file @
d67bd496
...
@@ -19,34 +19,50 @@ async function generateIcon() {
...
@@ -19,34 +19,50 @@ async function generateIcon() {
inquirer
inquirer
.
prompt
([
.
prompt
([
{
{
type
:
'
checkbox
'
,
type
:
'
list
'
,
name
:
'
useType
'
,
choices
:
[
{
key
:
'
local
'
,
value
:
'
local
'
,
name
:
'
Local
'
},
{
key
:
'
onLine
'
,
value
:
'
onLine
'
,
name
:
'
OnLine
'
},
],
message
:
'
How to use icons?
'
,
},
{
type
:
'
list
'
,
name
:
'
iconSet
'
,
name
:
'
iconSet
'
,
choices
:
choices
,
choices
:
choices
,
message
:
'
Select the icon set that needs to be generated?
'
,
message
:
'
Select the icon set that needs to be generated?
'
,
default
:
true
,
},
},
{
{
type
:
'
input
'
,
type
:
'
input
'
,
name
:
'
output
'
,
name
:
'
output
'
,
message
:
'
Select the icon set that needs to be generated?
'
,
message
:
'
Select the icon set that needs to be generated?
'
,
default
:
'
src/components/Icon/
json
'
,
default
:
'
src/components/Icon/
data
'
,
},
},
])
])
.
then
(
async
(
answers
)
=>
{
.
then
(
async
(
answers
)
=>
{
const
{
iconSet
,
output
}
=
answers
;
const
{
iconSet
,
output
,
useType
}
=
answers
;
const
outputDir
=
path
.
resolve
(
process
.
cwd
(),
output
);
const
outputDir
=
path
.
resolve
(
process
.
cwd
(),
output
);
fs
.
ensureDir
(
outputDir
);
fs
.
ensureDir
(
outputDir
);
const
genCollections
=
collections
.
filter
((
item
)
=>
iconSet
.
includes
(
item
.
id
));
const
genCollections
=
collections
.
filter
((
item
)
=>
[
iconSet
]
.
includes
(
item
.
id
));
const
prefixSet
:
string
[]
=
[];
const
prefixSet
:
string
[]
=
[];
for
(
const
info
of
genCollections
)
{
for
(
const
info
of
genCollections
)
{
const
data
=
await
fs
.
readJSON
(
path
.
join
(
dir
,
'
json
'
,
`
${
info
.
id
}
.json`
));
const
data
=
await
fs
.
readJSON
(
path
.
join
(
dir
,
'
json
'
,
`
${
info
.
id
}
.json`
));
if
(
data
)
{
if
(
data
)
{
const
{
prefix
}
=
data
;
const
{
prefix
}
=
data
;
const
icons
=
Object
.
keys
(
data
.
icons
).
map
((
item
)
=>
`
${
prefix
}
:
${
item
}
`
);
const
isLocal
=
useType
===
'
local
'
;
await
fs
.
writeJSON
(
path
.
join
(
output
,
`
${
prefix
}
-info.json`
),
icons
);
const
icons
=
Object
.
keys
(
data
.
icons
).
map
(
(
item
)
=>
`
${
isLocal
?
prefix
+
'
:
'
:
''
}${
item
}
`
);
await
fs
.
writeFileSync
(
path
.
join
(
output
,
`icons.data.ts`
),
`export default
${
isLocal
?
JSON
.
stringify
(
icons
)
:
JSON
.
stringify
({
prefix
,
icons
})}
`
);
prefixSet
.
push
(
prefix
);
prefixSet
.
push
(
prefix
);
}
}
}
}
fs
.
emptyDir
(
path
.
join
(
process
.
cwd
(),
'
node_modules/.vite
'
));
console
.
log
(
console
.
log
(
`✨
${
chalk
.
cyan
(
`[
${
pkg
.
name
}
]`
)}
`
+
'
- Icon generated successfully:
'
+
`[
${
prefixSet
}
]`
`✨
${
chalk
.
cyan
(
`[
${
pkg
.
name
}
]`
)}
`
+
'
- Icon generated successfully:
'
+
`[
${
prefixSet
}
]`
);
);
...
...
package.json
View file @
d67bd496
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
"
path-to-regexp
"
:
"
^6.2.0
"
,
"
path-to-regexp
"
:
"
^6.2.0
"
,
"
qrcode
"
:
"
^1.4.4
"
,
"
qrcode
"
:
"
^1.4.4
"
,
"
sortablejs
"
:
"
^1.13.0
"
,
"
sortablejs
"
:
"
^1.13.0
"
,
"
vditor
"
:
"
^3.8.
1
"
,
"
vditor
"
:
"
^3.8.
2
"
,
"
vue
"
:
"
^3.0.7
"
,
"
vue
"
:
"
^3.0.7
"
,
"
vue-i18n
"
:
"
^9.0.0
"
,
"
vue-i18n
"
:
"
^9.0.0
"
,
"
vue-router
"
:
"
^4.0.4
"
,
"
vue-router
"
:
"
^4.0.4
"
,
...
@@ -82,11 +82,11 @@
...
@@ -82,11 +82,11 @@
"
eslint
"
:
"
^7.21.0
"
,
"
eslint
"
:
"
^7.21.0
"
,
"
eslint-config-prettier
"
:
"
^8.1.0
"
,
"
eslint-config-prettier
"
:
"
^8.1.0
"
,
"
eslint-plugin-prettier
"
:
"
^3.3.1
"
,
"
eslint-plugin-prettier
"
:
"
^3.3.1
"
,
"
eslint-plugin-vue
"
:
"
^7.
6
.0
"
,
"
eslint-plugin-vue
"
:
"
^7.
7
.0
"
,
"
esno
"
:
"
^0.4.5
"
,
"
esno
"
:
"
^0.4.5
"
,
"
fs-extra
"
:
"
^9.1.0
"
,
"
fs-extra
"
:
"
^9.1.0
"
,
"
http-server
"
:
"
^0.12.3
"
,
"
http-server
"
:
"
^0.12.3
"
,
"
husky
"
:
"
^5.1.
2
"
,
"
husky
"
:
"
^5.1.
3
"
,
"
inquirer
"
:
"
^8.0.0
"
,
"
inquirer
"
:
"
^8.0.0
"
,
"
is-ci
"
:
"
^3.0.0
"
,
"
is-ci
"
:
"
^3.0.0
"
,
"
less
"
:
"
^4.1.1
"
,
"
less
"
:
"
^4.1.1
"
,
...
@@ -105,19 +105,18 @@
...
@@ -105,19 +105,18 @@
"
vite-plugin-compression
"
:
"
^0.2.3
"
,
"
vite-plugin-compression
"
:
"
^0.2.3
"
,
"
vite-plugin-html
"
:
"
^2.0.3
"
,
"
vite-plugin-html
"
:
"
^2.0.3
"
,
"
vite-plugin-imagemin
"
:
"
^0.2.9
"
,
"
vite-plugin-imagemin
"
:
"
^0.2.9
"
,
"
vite-plugin-mock
"
:
"
^2.
1.5
"
,
"
vite-plugin-mock
"
:
"
^2.
2.0
"
,
"
vite-plugin-purge-icons
"
:
"
^0.7.0
"
,
"
vite-plugin-purge-icons
"
:
"
^0.7.0
"
,
"
vite-plugin-pwa
"
:
"
^0.5.6
"
,
"
vite-plugin-pwa
"
:
"
^0.5.6
"
,
"
vite-plugin-style-import
"
:
"
^0.7.6
"
,
"
vite-plugin-style-import
"
:
"
^0.7.6
"
,
"
vite-plugin-theme
"
:
"
^0.4.8
"
,
"
vite-plugin-theme
"
:
"
^0.4.8
"
,
"
vite-plugin-windicss
"
:
"
0.6.2
"
,
"
vite-plugin-windicss
"
:
"
0.6.2
"
,
"
vue-eslint-parser
"
:
"
^7.
5
.0
"
,
"
vue-eslint-parser
"
:
"
^7.
6
.0
"
,
"
yargs
"
:
"
^16.2.0
"
"
yargs
"
:
"
^16.2.0
"
},
},
"resolutions"
:
{
"resolutions"
:
{
"//"
:
"Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it"
,
"//"
:
"Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it"
,
"bin-wrapper"
:
"npm:bin-wrapper-china"
,
"bin-wrapper"
:
"npm:bin-wrapper-china"
"ecstatic"
:
"4.1.4"
},
},
"repository"
:
{
"repository"
:
{
"type"
:
"git"
,
"type"
:
"git"
,
...
...
src/components/Icon/data/icons.data.ts
0 → 100644
View file @
d67bd496
export
default
{
prefix
:
'
ant-design
'
,
icons
:
[
'
account-book-filled
'
,
'
account-book-outlined
'
,
'
account-book-twotone
'
,
'
aim-outlined
'
,
'
alert-filled
'
,
'
alert-outlined
'
,
'
alert-twotone
'
,
'
alibaba-outlined
'
,
'
align-center-outlined
'
,
'
align-left-outlined
'
,
'
align-right-outlined
'
,
'
alipay-circle-filled
'
,
'
alipay-circle-outlined
'
,
'
alipay-outlined
'
,
'
alipay-square-filled
'
,
'
aliwangwang-filled
'
,
'
aliwangwang-outlined
'
,
'
aliyun-outlined
'
,
'
amazon-circle-filled
'
,
'
amazon-outlined
'
,
'
amazon-square-filled
'
,
'
android-filled
'
,
'
android-outlined
'
,
'
ant-cloud-outlined
'
,
'
ant-design-outlined
'
,
'
apartment-outlined
'
,
'
api-filled
'
,
'
api-outlined
'
,
'
api-twotone
'
,
'
apple-filled
'
,
'
apple-outlined
'
,
'
appstore-add-outlined
'
,
'
appstore-filled
'
,
'
appstore-outlined
'
,
'
appstore-twotone
'
,
'
area-chart-outlined
'
,
'
arrow-down-outlined
'
,
'
arrow-left-outlined
'
,
'
arrow-right-outlined
'
,
'
arrow-up-outlined
'
,
'
arrows-alt-outlined
'
,
'
audio-filled
'
,
'
audio-muted-outlined
'
,
'
audio-outlined
'
,
'
audio-twotone
'
,
'
audit-outlined
'
,
'
backward-filled
'
,
'
backward-outlined
'
,
'
bank-filled
'
,
'
bank-outlined
'
,
'
bank-twotone
'
,
'
bar-chart-outlined
'
,
'
barcode-outlined
'
,
'
bars-outlined
'
,
'
behance-circle-filled
'
,
'
behance-outlined
'
,
'
behance-square-filled
'
,
'
behance-square-outlined
'
,
'
bell-filled
'
,
'
bell-outlined
'
,
'
bell-twotone
'
,
'
bg-colors-outlined
'
,
'
block-outlined
'
,
'
bold-outlined
'
,
'
book-filled
'
,
'
book-outlined
'
,
'
book-twotone
'
,
'
border-bottom-outlined
'
,
'
border-horizontal-outlined
'
,
'
border-inner-outlined
'
,
'
border-left-outlined
'
,
'
border-outer-outlined
'
,
'
border-outlined
'
,
'
border-right-outlined
'
,
'
border-top-outlined
'
,
'
border-verticle-outlined
'
,
'
borderless-table-outlined
'
,
'
box-plot-filled
'
,
'
box-plot-outlined
'
,
'
box-plot-twotone
'
,
'
branches-outlined
'
,
'
bug-filled
'
,
'
bug-outlined
'
,
'
bug-twotone
'
,
'
build-filled
'
,
'
build-outlined
'
,
'
build-twotone
'
,
'
bulb-filled
'
,
'
bulb-outlined
'
,
'
bulb-twotone
'
,
'
calculator-filled
'
,
'
calculator-outlined
'
,
'
calculator-twotone
'
,
'
calendar-filled
'
,
'
calendar-outlined
'
,
'
calendar-twotone
'
,
'
camera-filled
'
,
'
camera-outlined
'
,
'
camera-twotone
'
,
'
car-filled
'
,
'
car-outlined
'
,
'
car-twotone
'
,
'
caret-down-filled
'
,
'
caret-down-outlined
'
,
'
caret-left-filled
'
,
'
caret-left-outlined
'
,
'
caret-right-filled
'
,
'
caret-right-outlined
'
,
'
caret-up-filled
'
,
'
caret-up-outlined
'
,
'
carry-out-filled
'
,
'
carry-out-outlined
'
,
'
carry-out-twotone
'
,
'
check-circle-filled
'
,
'
check-circle-outlined
'
,
'
check-circle-twotone
'
,
'
check-outlined
'
,
'
check-square-filled
'
,
'
check-square-outlined
'
,
'
check-square-twotone
'
,
'
chrome-filled
'
,
'
chrome-outlined
'
,
'
ci-circle-filled
'
,
'
ci-circle-outlined
'
,
'
ci-circle-twotone
'
,
'
ci-outlined
'
,
'
ci-twotone
'
,
'
clear-outlined
'
,
'
clock-circle-filled
'
,
'
clock-circle-outlined
'
,
'
clock-circle-twotone
'
,
'
close-circle-filled
'
,
'
close-circle-outlined
'
,
'
close-circle-twotone
'
,
'
close-outlined
'
,
'
close-square-filled
'
,
'
close-square-outlined
'
,
'
close-square-twotone
'
,
'
cloud-download-outlined
'
,
'
cloud-filled
'
,
'
cloud-outlined
'
,
'
cloud-server-outlined
'
,
'
cloud-sync-outlined
'
,
'
cloud-twotone
'
,
'
cloud-upload-outlined
'
,
'
cluster-outlined
'
,
'
code-filled
'
,
'
code-outlined
'
,
'
code-sandbox-circle-filled
'
,
'
code-sandbox-outlined
'
,
'
code-sandbox-square-filled
'
,
'
code-twotone
'
,
'
codepen-circle-filled
'
,
'
codepen-circle-outlined
'
,
'
codepen-outlined
'
,
'
codepen-square-filled
'
,
'
coffee-outlined
'
,
'
column-height-outlined
'
,
'
column-width-outlined
'
,
'
comment-outlined
'
,
'
compass-filled
'
,
'
compass-outlined
'
,
'
compass-twotone
'
,
'
compress-outlined
'
,
'
console-sql-outlined
'
,
'
contacts-filled
'
,
'
contacts-outlined
'
,
'
contacts-twotone
'
,
'
container-filled
'
,
'
container-outlined
'
,
'
container-twotone
'
,
'
control-filled
'
,
'
control-outlined
'
,
'
control-twotone
'
,
'
copy-filled
'
,
'
copy-outlined
'
,
'
copy-twotone
'
,
'
copyright-circle-filled
'
,
'
copyright-circle-outlined
'
,
'
copyright-circle-twotone
'
,
'
copyright-outlined
'
,
'
copyright-twotone
'
,
'
credit-card-filled
'
,
'
credit-card-outlined
'
,
'
credit-card-twotone
'
,
'
crown-filled
'
,
'
crown-outlined
'
,
'
crown-twotone
'
,
'
customer-service-filled
'
,
'
customer-service-outlined
'
,
'
customer-service-twotone
'
,
'
dash-outlined
'
,
'
dashboard-filled
'
,
'
dashboard-outlined
'
,
'
dashboard-twotone
'
,
'
database-filled
'
,
'
database-outlined
'
,
'
database-twotone
'
,
'
delete-column-outlined
'
,
'
delete-filled
'
,
'
delete-outlined
'
,
'
delete-row-outlined
'
,
'
delete-twotone
'
,
'
delivered-procedure-outlined
'
,
'
deployment-unit-outlined
'
,
'
desktop-outlined
'
,
'
diff-filled
'
,
'
diff-outlined
'
,
'
diff-twotone
'
,
'
dingding-outlined
'
,
'
dingtalk-circle-filled
'
,
'
dingtalk-outlined
'
,
'
dingtalk-square-filled
'
,
'
disconnect-outlined
'
,
'
dislike-filled
'
,
'
dislike-outlined
'
,
'
dislike-twotone
'
,
'
dollar-circle-filled
'
,
'
dollar-circle-outlined
'
,
'
dollar-circle-twotone
'
,
'
dollar-outlined
'
,
'
dollar-twotone
'
,
'
dot-chart-outlined
'
,
'
double-left-outlined
'
,
'
double-right-outlined
'
,
'
down-circle-filled
'
,
'
down-circle-outlined
'
,
'
down-circle-twotone
'
,
'
down-outlined
'
,
'
down-square-filled
'
,
'
down-square-outlined
'
,
'
down-square-twotone
'
,
'
download-outlined
'
,
'
drag-outlined
'
,
'
dribbble-circle-filled
'
,
'
dribbble-outlined
'
,
'
dribbble-square-filled
'
,
'
dribbble-square-outlined
'
,
'
dropbox-circle-filled
'
,
'
dropbox-outlined
'
,
'
dropbox-square-filled
'
,
'
edit-filled
'
,
'
edit-outlined
'
,
'
edit-twotone
'
,
'
ellipsis-outlined
'
,
'
enter-outlined
'
,
'
environment-filled
'
,
'
environment-outlined
'
,
'
environment-twotone
'
,
'
euro-circle-filled
'
,
'
euro-circle-outlined
'
,
'
euro-circle-twotone
'
,
'
euro-outlined
'
,
'
euro-twotone
'
,
'
exception-outlined
'
,
'
exclamation-circle-filled
'
,
'
exclamation-circle-outlined
'
,
'
exclamation-circle-twotone
'
,
'
exclamation-outlined
'
,
'
expand-alt-outlined
'
,
'
expand-outlined
'
,
'
experiment-filled
'
,
'
experiment-outlined
'
,
'
experiment-twotone
'
,
'
export-outlined
'
,
'
eye-filled
'
,
'
eye-invisible-filled
'
,
'
eye-invisible-outlined
'
,
'
eye-invisible-twotone
'
,
'
eye-outlined
'
,
'
eye-twotone
'
,
'
facebook-filled
'
,
'
facebook-outlined
'
,
'
fall-outlined
'
,
'
fast-backward-filled
'
,
'
fast-backward-outlined
'
,
'
fast-forward-filled
'
,
'
fast-forward-outlined
'
,
'
field-binary-outlined
'
,
'
field-number-outlined
'
,
'
field-string-outlined
'
,
'
field-time-outlined
'
,
'
file-add-filled
'
,
'
file-add-outlined
'
,
'
file-add-twotone
'
,
'
file-done-outlined
'
,
'
file-excel-filled
'
,
'
file-excel-outlined
'
,
'
file-excel-twotone
'
,
'
file-exclamation-filled
'
,
'
file-exclamation-outlined
'
,
'
file-exclamation-twotone
'
,
'
file-filled
'
,
'
file-gif-outlined
'
,
'
file-image-filled
'
,
'
file-image-outlined
'
,
'
file-image-twotone
'
,
'
file-jpg-outlined
'
,
'
file-markdown-filled
'
,
'
file-markdown-outlined
'
,
'
file-markdown-twotone
'
,
'
file-outlined
'
,
'
file-pdf-filled
'
,
'
file-pdf-outlined
'
,
'
file-pdf-twotone
'
,
'
file-ppt-filled
'
,
'
file-ppt-outlined
'
,
'
file-ppt-twotone
'
,
'
file-protect-outlined
'
,
'
file-search-outlined
'
,
'
file-sync-outlined
'
,
'
file-text-filled
'
,
'
file-text-outlined
'
,
'
file-text-twotone
'
,
'
file-twotone
'
,
'
file-unknown-filled
'
,
'
file-unknown-outlined
'
,
'
file-unknown-twotone
'
,
'
file-word-filled
'
,
'
file-word-outlined
'
,
'
file-word-twotone
'
,
'
file-zip-filled
'
,
'
file-zip-outlined
'
,
'
file-zip-twotone
'
,
'
filter-filled
'
,
'
filter-outlined
'
,
'
filter-twotone
'
,
'
fire-filled
'
,
'
fire-outlined
'
,
'
fire-twotone
'
,
'
flag-filled
'
,
'
flag-outlined
'
,
'
flag-twotone
'
,
'
folder-add-filled
'
,
'
folder-add-outlined
'
,
'
folder-add-twotone
'
,
'
folder-filled
'
,
'
folder-open-filled
'
,
'
folder-open-outlined
'
,
'
folder-open-twotone
'
,
'
folder-outlined
'
,
'
folder-twotone
'
,
'
folder-view-outlined
'
,
'
font-colors-outlined
'
,
'
font-size-outlined
'
,
'
fork-outlined
'
,
'
form-outlined
'
,
'
format-painter-filled
'
,
'
format-painter-outlined
'
,
'
forward-filled
'
,
'
forward-outlined
'
,
'
frown-filled
'
,
'
frown-outlined
'
,
'
frown-twotone
'
,
'
fullscreen-exit-outlined
'
,
'
fullscreen-outlined
'
,
'
function-outlined
'
,
'
fund-filled
'
,
'
fund-outlined
'
,
'
fund-projection-screen-outlined
'
,
'
fund-twotone
'
,
'
fund-view-outlined
'
,
'
funnel-plot-filled
'
,
'
funnel-plot-outlined
'
,
'
funnel-plot-twotone
'
,
'
gateway-outlined
'
,
'
gif-outlined
'
,
'
gift-filled
'
,
'
gift-outlined
'
,
'
gift-twotone
'
,
'
github-filled
'
,
'
github-outlined
'
,
'
gitlab-filled
'
,
'
gitlab-outlined
'
,
'
global-outlined
'
,
'
gold-filled
'
,
'
gold-outlined
'
,
'
gold-twotone
'
,
'
golden-filled
'
,
'
google-circle-filled
'
,
'
google-outlined
'
,
'
google-plus-circle-filled
'
,
'
google-plus-outlined
'
,
'
google-plus-square-filled
'
,
'
google-square-filled
'
,
'
group-outlined
'
,
'
hdd-filled
'
,
'
hdd-outlined
'
,
'
hdd-twotone
'
,
'
heart-filled
'
,
'
heart-outlined
'
,
'
heart-twotone
'
,
'
heat-map-outlined
'
,
'
highlight-filled
'
,
'
highlight-outlined
'
,
'
highlight-twotone
'
,
'
history-outlined
'
,
'
home-filled
'
,
'
home-outlined
'
,
'
home-twotone
'
,
'
hourglass-filled
'
,
'
hourglass-outlined
'
,
'
hourglass-twotone
'
,
'
html5-filled
'
,
'
html5-outlined
'
,
'
html5-twotone
'
,
'
idcard-filled
'
,
'
idcard-outlined
'
,
'
idcard-twotone
'
,
'
ie-circle-filled
'
,
'
ie-outlined
'
,
'
ie-square-filled
'
,
'
import-outlined
'
,
'
inbox-outlined
'
,
'
info-circle-filled
'
,
'
info-circle-outlined
'
,
'
info-circle-twotone
'
,
'
info-outlined
'
,
'
insert-row-above-outlined
'
,
'
insert-row-below-outlined
'
,
'
insert-row-left-outlined
'
,
'
insert-row-right-outlined
'
,
'
instagram-filled
'
,
'
instagram-outlined
'
,
'
insurance-filled
'
,
'
insurance-outlined
'
,
'
insurance-twotone
'
,
'
interaction-filled
'
,
'
interaction-outlined
'
,
'
interaction-twotone
'
,
'
issues-close-outlined
'
,
'
italic-outlined
'
,
'
key-outlined
'
,
'
laptop-outlined
'
,
'
layout-filled
'
,
'
layout-outlined
'
,
'
layout-twotone
'
,
'
left-circle-filled
'
,
'
left-circle-outlined
'
,
'
left-circle-twotone
'
,
'
left-outlined
'
,
'
left-square-filled
'
,
'
left-square-outlined
'
,
'
left-square-twotone
'
,
'
like-filled
'
,
'
like-outlined
'
,
'
like-twotone
'
,
'
line-chart-outlined
'
,
'
line-height-outlined
'
,
'
line-outlined
'
,
'
link-outlined
'
,
'
linkedin-filled
'
,
'
linkedin-outlined
'
,
'
loading-3-quarters-outlined
'
,
'
loading-outlined
'
,
'
lock-filled
'
,
'
lock-outlined
'
,
'
lock-twotone
'
,
'
login-outlined
'
,
'
logout-outlined
'
,
'
mac-command-filled
'
,
'
mac-command-outlined
'
,
'
mail-filled
'
,
'
mail-outlined
'
,
'
mail-twotone
'
,
'
man-outlined
'
,
'
medicine-box-filled
'
,
'
medicine-box-outlined
'
,
'
medicine-box-twotone
'
,
'
medium-circle-filled
'
,
'
medium-outlined
'
,
'
medium-square-filled
'
,
'
medium-workmark-outlined
'
,
'
meh-filled
'
,
'
meh-outlined
'
,
'
meh-twotone
'
,
'
menu-fold-outlined
'
,
'
menu-outlined
'
,
'
menu-unfold-outlined
'
,
'
merge-cells-outlined
'
,
'
message-filled
'
,
'
message-outlined
'
,
'
message-twotone
'
,
'
minus-circle-filled
'
,
'
minus-circle-outlined
'
,
'
minus-circle-twotone
'
,
'
minus-outlined
'
,
'
minus-square-filled
'
,
'
minus-square-outlined
'
,
'
minus-square-twotone
'
,
'
mobile-filled
'
,
'
mobile-outlined
'
,
'
mobile-twotone
'
,
'
money-collect-filled
'
,
'
money-collect-outlined
'
,
'
money-collect-twotone
'
,
'
monitor-outlined
'
,
'
more-outlined
'
,
'
node-collapse-outlined
'
,
'
node-expand-outlined
'
,
'
node-index-outlined
'
,
'
notification-filled
'
,
'
notification-outlined
'
,
'
notification-twotone
'
,
'
number-outlined
'
,
'
one-to-one-outlined
'
,
'
ordered-list-outlined
'
,
'
paper-clip-outlined
'
,
'
partition-outlined
'
,
'
pause-circle-filled
'
,
'
pause-circle-outlined
'
,
'
pause-circle-twotone
'
,
'
pause-outlined
'
,
'
pay-circle-filled
'
,
'
pay-circle-outlined
'
,
'
percentage-outlined
'
,
'
phone-filled
'
,
'
phone-outlined
'
,
'
phone-twotone
'
,
'
pic-center-outlined
'
,
'
pic-left-outlined
'
,
'
pic-right-outlined
'
,
'
picture-filled
'
,
'
picture-outlined
'
,
'
picture-twotone
'
,
'
pie-chart-filled
'
,
'
pie-chart-outlined
'
,
'
pie-chart-twotone
'
,
'
play-circle-filled
'
,
'
play-circle-outlined
'
,
'
play-circle-twotone
'
,
'
play-square-filled
'
,
'
play-square-outlined
'
,
'
play-square-twotone
'
,
'
plus-circle-filled
'
,
'
plus-circle-outlined
'
,
'
plus-circle-twotone
'
,
'
plus-outlined
'
,
'
plus-square-filled
'
,
'
plus-square-outlined
'
,
'
plus-square-twotone
'
,
'
pound-circle-filled
'
,
'
pound-circle-outlined
'
,
'
pound-circle-twotone
'
,
'
pound-outlined
'
,
'
poweroff-outlined
'
,
'
printer-filled
'
,
'
printer-outlined
'
,
'
printer-twotone
'
,
'
profile-filled
'
,
'
profile-outlined
'
,
'
profile-twotone
'
,
'
project-filled
'
,
'
project-outlined
'
,
'
project-twotone
'
,
'
property-safety-filled
'
,
'
property-safety-outlined
'
,
'
property-safety-twotone
'
,
'
pull-request-outlined
'
,
'
pushpin-filled
'
,
'
pushpin-outlined
'
,
'
pushpin-twotone
'
,
'
qq-circle-filled
'
,
'
qq-outlined
'
,
'
qq-square-filled
'
,
'
qrcode-outlined
'
,
'
question-circle-filled
'
,
'
question-circle-outlined
'
,
'
question-circle-twotone
'
,
'
question-outlined
'
,
'
radar-chart-outlined
'
,
'
radius-bottomleft-outlined
'
,
'
radius-bottomright-outlined
'
,
'
radius-setting-outlined
'
,
'
radius-upleft-outlined
'
,
'
radius-upright-outlined
'
,
'
read-filled
'
,
'
read-outlined
'
,
'
reconciliation-filled
'
,
'
reconciliation-outlined
'
,
'
reconciliation-twotone
'
,
'
red-envelope-filled
'
,
'
red-envelope-outlined
'
,
'
red-envelope-twotone
'
,
'
reddit-circle-filled
'
,
'
reddit-outlined
'
,
'
reddit-square-filled
'
,
'
redo-outlined
'
,
'
reload-outlined
'
,
'
rest-filled
'
,
'
rest-outlined
'
,
'
rest-twotone
'
,
'
retweet-outlined
'
,
'
right-circle-filled
'
,
'
right-circle-outlined
'
,
'
right-circle-twotone
'
,
'
right-outlined
'
,
'
right-square-filled
'
,
'
right-square-outlined
'
,
'
right-square-twotone
'
,
'
rise-outlined
'
,
'
robot-filled
'
,
'
robot-outlined
'
,
'
rocket-filled
'
,
'
rocket-outlined
'
,
'
rocket-twotone
'
,
'
rollback-outlined
'
,
'
rotate-left-outlined
'
,
'
rotate-right-outlined
'
,
'
safety-certificate-filled
'
,
'
safety-certificate-outlined
'
,
'
safety-certificate-twotone
'
,
'
safety-outlined
'
,
'
save-filled
'
,
'
save-outlined
'
,
'
save-twotone
'
,
'
scan-outlined
'
,
'
schedule-filled
'
,
'
schedule-outlined
'
,
'
schedule-twotone
'
,
'
scissor-outlined
'
,
'
search-outlined
'
,
'
security-scan-filled
'
,
'
security-scan-outlined
'
,
'
security-scan-twotone
'
,
'
select-outlined
'
,
'
send-outlined
'
,
'
setting-filled
'
,
'
setting-outlined
'
,
'
setting-twotone
'
,
'
shake-outlined
'
,
'
share-alt-outlined
'
,
'
shop-filled
'
,
'
shop-outlined
'
,
'
shop-twotone
'
,
'
shopping-cart-outlined
'
,
'
shopping-filled
'
,
'
shopping-outlined
'
,
'
shopping-twotone
'
,
'
shrink-outlined
'
,
'
signal-filled
'
,
'
sisternode-outlined
'
,
'
sketch-circle-filled
'
,
'
sketch-outlined
'
,
'
sketch-square-filled
'
,
'
skin-filled
'
,
'
skin-outlined
'
,
'
skin-twotone
'
,
'
skype-filled
'
,
'
skype-outlined
'
,
'
slack-circle-filled
'
,
'
slack-outlined
'
,
'
slack-square-filled
'
,
'
slack-square-outlined
'
,
'
sliders-filled
'
,
'
sliders-outlined
'
,
'
sliders-twotone
'
,
'
small-dash-outlined
'
,
'
smile-filled
'
,
'
smile-outlined
'
,
'
smile-twotone
'
,
'
snippets-filled
'
,
'
snippets-outlined
'
,
'
snippets-twotone
'
,
'
solution-outlined
'
,
'
sort-ascending-outlined
'
,
'
sort-descending-outlined
'
,
'
sound-filled
'
,
'
sound-outlined
'
,
'
sound-twotone
'
,
'
split-cells-outlined
'
,
'
star-filled
'
,
'
star-outlined
'
,
'
star-twotone
'
,
'
step-backward-filled
'
,
'
step-backward-outlined
'
,
'
step-forward-filled
'
,
'
step-forward-outlined
'
,
'
stock-outlined
'
,
'
stop-filled
'
,
'
stop-outlined
'
,
'
stop-twotone
'
,
'
strikethrough-outlined
'
,
'
subnode-outlined
'
,
'
swap-left-outlined
'
,
'
swap-outlined
'
,
'
swap-right-outlined
'
,
'
switcher-filled
'
,
'
switcher-outlined
'
,
'
switcher-twotone
'
,
'
sync-outlined
'
,
'
table-outlined
'
,
'
tablet-filled
'
,
'
tablet-outlined
'
,
'
tablet-twotone
'
,
'
tag-filled
'
,
'
tag-outlined
'
,
'
tag-twotone
'
,
'
tags-filled
'
,
'
tags-outlined
'
,
'
tags-twotone
'
,
'
taobao-circle-filled
'
,
'
taobao-circle-outlined
'
,
'
taobao-outlined
'
,
'
taobao-square-filled
'
,
'
team-outlined
'
,
'
thunderbolt-filled
'
,
'
thunderbolt-outlined
'
,
'
thunderbolt-twotone
'
,
'
to-top-outlined
'
,
'
tool-filled
'
,
'
tool-outlined
'
,
'
tool-twotone
'
,
'
trademark-circle-filled
'
,
'
trademark-circle-outlined
'
,
'
trademark-circle-twotone
'
,
'
trademark-outlined
'
,
'
transaction-outlined
'
,
'
translation-outlined
'
,
'
trophy-filled
'
,
'
trophy-outlined
'
,
'
trophy-twotone
'
,
'
twitter-circle-filled
'
,
'
twitter-outlined
'
,
'
twitter-square-filled
'
,
'
underline-outlined
'
,
'
undo-outlined
'
,
'
ungroup-outlined
'
,
'
unlock-filled
'
,
'
unlock-outlined
'
,
'
unlock-twotone
'
,
'
unordered-list-outlined
'
,
'
up-circle-filled
'
,
'
up-circle-outlined
'
,
'
up-circle-twotone
'
,
'
up-outlined
'
,
'
up-square-filled
'
,
'
up-square-outlined
'
,
'
up-square-twotone
'
,
'
upload-outlined
'
,
'
usb-filled
'
,
'
usb-outlined
'
,
'
usb-twotone
'
,
'
user-add-outlined
'
,
'
user-delete-outlined
'
,
'
user-outlined
'
,
'
user-switch-outlined
'
,
'
usergroup-add-outlined
'
,
'
usergroup-delete-outlined
'
,
'
verified-outlined
'
,
'
vertical-align-bottom-outlined
'
,
'
vertical-align-middle-outlined
'
,
'
vertical-align-top-outlined
'
,
'
vertical-left-outlined
'
,
'
vertical-right-outlined
'
,
'
video-camera-add-outlined
'
,
'
video-camera-filled
'
,
'
video-camera-outlined
'
,
'
video-camera-twotone
'
,
'
wallet-filled
'
,
'
wallet-outlined
'
,
'
wallet-twotone
'
,
'
warning-filled
'
,
'
warning-outlined
'
,
'
warning-twotone
'
,
'
wechat-filled
'
,
'
wechat-outlined
'
,
'
weibo-circle-filled
'
,
'
weibo-circle-outlined
'
,
'
weibo-outlined
'
,
'
weibo-square-filled
'
,
'
weibo-square-outlined
'
,
'
whats-app-outlined
'
,
'
wifi-outlined
'
,
'
windows-filled
'
,
'
windows-outlined
'
,
'
woman-outlined
'
,
'
yahoo-filled
'
,
'
yahoo-outlined
'
,
'
youtube-filled
'
,
'
youtube-outlined
'
,
'
yuque-filled
'
,
'
yuque-outlined
'
,
'
zhihu-circle-filled
'
,
'
zhihu-outlined
'
,
'
zhihu-square-filled
'
,
'
zoom-in-outlined
'
,
'
zoom-out-outlined
'
,
],
};
src/components/Icon/index.ts
View file @
d67bd496
import
Icon
from
'
./src/index.vue
'
;
import
Icon
from
'
./src/index.vue
'
;
import
IconPicker
from
'
./src/IconPicker.vue
'
;
// import IconPicker from './src/IconPicker.vue';
import
{
createAsyncComponent
}
from
'
/@/utils/factory/createAsyncComponent
'
;
const
IconPicker
=
createAsyncComponent
(()
=>
import
(
'
./src/IconPicker.vue
'
));
export
{
Icon
,
IconPicker
};
export
{
Icon
,
IconPicker
};
...
...
src/components/Icon/json/ion-info.json
deleted
100644 → 0
View file @
e5b2cc1e
This diff is collapsed.
Click to expand it.
src/components/Icon/src/IconPicker.vue
View file @
d67bd496
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
class=
"p-2 w-1/8 cursor-pointer mr-1 mt-1 flex justify-center items-center border border-solid hover:bg-primary hover:text-white"
class=
"p-2 w-1/8 cursor-pointer mr-1 mt-1 flex justify-center items-center border border-solid hover:bg-primary hover:text-white"
@
click=
"handleClick(icon)"
@
click=
"handleClick(icon)"
>
>
<!--
<Icon
:icon=
"icon"
:prefix=
"prefix"
/>
-->
<Icon
:icon=
"icon"
/>
<Icon
:icon=
"icon"
/>
</li>
</li>
</ul>
</ul>
...
@@ -66,14 +67,28 @@
...
@@ -66,14 +67,28 @@
import
{
Input
,
Popover
,
Pagination
,
Empty
}
from
'
ant-design-vue
'
;
import
{
Input
,
Popover
,
Pagination
,
Empty
}
from
'
ant-design-vue
'
;
import
Icon
from
'
./index.vue
'
;
import
Icon
from
'
./index.vue
'
;
import
icons
from
'
../json/ion-info.json
'
;
import
icons
Data
from
'
../data/icons.data
'
;
import
{
propTypes
}
from
'
/@/utils/propTypes
'
;
import
{
propTypes
}
from
'
/@/utils/propTypes
'
;
import
{
usePagination
}
from
'
/@/hooks/web/usePagination
'
;
import
{
usePagination
}
from
'
/@/hooks/web/usePagination
'
;
import
{
useDebounce
}
from
'
/@/hooks/core/useDebounce
'
;
import
{
useDebounce
}
from
'
/@/hooks/core/useDebounce
'
;
import
{
useI18n
}
from
'
/@/hooks/web/useI18n
'
;
import
{
useI18n
}
from
'
/@/hooks/web/useI18n
'
;
import
{
useCopyToClipboard
}
from
'
/@/hooks/web/useCopyToClipboard
'
;
import
{
useCopyToClipboard
}
from
'
/@/hooks/web/useCopyToClipboard
'
;
import
{
useMessage
}
from
'
/@/hooks/web/useMessage
'
;
import
{
useMessage
}
from
'
/@/hooks/web/useMessage
'
;
// import '@iconify/iconify';
function
getIcons
()
{
const
data
=
iconsData
as
any
;
const
prefix
:
string
=
data
?.
prefix
??
''
;
let
result
:
string
[]
=
[];
if
(
prefix
)
{
result
=
(
data
?.
icons
??
[]).
map
((
item
)
=>
`
${
prefix
}
:
${
item
}
`
);
}
else
if
(
Array
.
isArray
(
iconsData
))
{
result
=
iconsData
as
string
[];
}
return
result
;
}
const
icons
=
getIcons
();
export
default
defineComponent
({
export
default
defineComponent
({
name
:
'
IconPicker
'
,
name
:
'
IconPicker
'
,
components
:
{
[
Input
.
name
]:
Input
,
Icon
,
Popover
,
ScrollContainer
,
Pagination
,
Empty
},
components
:
{
[
Input
.
name
]:
Input
,
Icon
,
Popover
,
ScrollContainer
,
Pagination
,
Empty
},
...
...
src/components/Icon/src/index.vue
View file @
d67bd496
...
@@ -46,7 +46,6 @@
...
@@ -46,7 +46,6 @@
const
icon
=
unref
(
getIconRef
);
const
icon
=
unref
(
getIconRef
);
if
(
!
icon
)
return
;
if
(
!
icon
)
return
;
const
svg
=
Iconify
.
renderSVG
(
icon
,
{});
const
svg
=
Iconify
.
renderSVG
(
icon
,
{});
if
(
svg
)
{
if
(
svg
)
{
el
.
textContent
=
''
;
el
.
textContent
=
''
;
el
.
appendChild
(
svg
);
el
.
appendChild
(
svg
);
...
...
src/locales/lang/en.ts
View file @
d67bd496
import
{
genMessage
}
from
'
../helper
'
;
import
{
genMessage
}
from
'
../helper
'
;
const
modules
=
import
.
meta
.
globEager
(
'
./en/**/*.ts
'
);
import
antdLocale
from
'
ant-design-vue/es/locale/en_US
'
;
import
antdLocale
from
'
ant-design-vue/es/locale/en_US
'
;
import
momentLocale
from
'
moment/dist/locale/eu
'
;
import
momentLocale
from
'
moment/dist/locale/eu
'
;
const
modules
=
import
.
meta
.
globEager
(
'
./en/**/*.ts
'
);
export
default
{
export
default
{
message
:
{
message
:
{
...
genMessage
(
modules
,
'
en
'
),
...
genMessage
(
modules
,
'
en
'
),
...
...
src/locales/lang/zh_CN.ts
View file @
d67bd496
import
{
genMessage
}
from
'
../helper
'
;
import
{
genMessage
}
from
'
../helper
'
;
const
modules
=
import
.
meta
.
globEager
(
'
./zh_CN/**/*.ts
'
);
import
antdLocale
from
'
ant-design-vue/es/locale/zh_CN
'
;
import
antdLocale
from
'
ant-design-vue/es/locale/zh_CN
'
;
import
momentLocale
from
'
moment/dist/locale/zh-cn
'
;
import
momentLocale
from
'
moment/dist/locale/zh-cn
'
;
const
modules
=
import
.
meta
.
globEager
(
'
./zh_CN/**/*.ts
'
);
export
default
{
export
default
{
message
:
{
message
:
{
...
genMessage
(
modules
,
'
zh_CN
'
),
...
genMessage
(
modules
,
'
zh_CN
'
),
...
...
src/locales/setupI18n.ts
View file @
d67bd496
...
@@ -13,7 +13,7 @@ export let i18n: ReturnType<typeof createI18n>;
...
@@ -13,7 +13,7 @@ export let i18n: ReturnType<typeof createI18n>;
async
function
createI18nOptions
():
Promise
<
I18nOptions
>
{
async
function
createI18nOptions
():
Promise
<
I18nOptions
>
{
const
locale
=
localeStore
.
getLocale
;
const
locale
=
localeStore
.
getLocale
;
const
defaultLocal
=
await
import
(
`./lang/
${
locale
}
.ts`
);
const
defaultLocal
=
await
import
(
`./lang/
${
locale
}
.ts`
);
const
message
=
defaultLocal
.
default
?.
message
;
const
message
=
defaultLocal
.
default
?.
message
??
{}
;
return
{
return
{
legacy
:
false
,
legacy
:
false
,
...
...
src/router/helper/routeHelper.ts
View file @
d67bd496
...
@@ -19,7 +19,6 @@ let dynamicViewsModules: Record<
...
@@ -19,7 +19,6 @@ let dynamicViewsModules: Record<
// 动态引入
// 动态引入
function
asyncImportRoute
(
routes
:
AppRouteRecordRaw
[]
|
undefined
)
{
function
asyncImportRoute
(
routes
:
AppRouteRecordRaw
[]
|
undefined
)
{
dynamicViewsModules
=
dynamicViewsModules
||
import
.
meta
.
glob
(
'
../../views/**/*.{vue,tsx}
'
);
dynamicViewsModules
=
dynamicViewsModules
||
import
.
meta
.
glob
(
'
../../views/**/*.{vue,tsx}
'
);
if
(
!
routes
)
return
;
if
(
!
routes
)
return
;
routes
.
forEach
((
item
)
=>
{
routes
.
forEach
((
item
)
=>
{
const
{
component
,
name
}
=
item
;
const
{
component
,
name
}
=
item
;
...
...
vite.config.ts
View file @
d67bd496
...
@@ -52,6 +52,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
...
@@ -52,6 +52,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
},
},
build
:
{
build
:
{
// minify: 'esbuild',
outDir
:
OUTPUT_DIR
,
outDir
:
OUTPUT_DIR
,
polyfillDynamicImport
:
VITE_LEGACY
,
polyfillDynamicImport
:
VITE_LEGACY
,
terserOptions
:
{
terserOptions
:
{
...
...
yarn.lock
View file @
d67bd496
...
@@ -2219,22 +2219,6 @@ bluebird@^3.7.2:
...
@@ -2219,22 +2219,6 @@ bluebird@^3.7.2:
resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
body-parser@^1.19.0:
version "1.19.0"
resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
dependencies:
bytes "3.1.0"
content-type "~1.0.4"
debug "2.6.9"
depd "~1.1.2"
http-errors "1.7.2"
iconv-lite "0.4.24"
on-finished "~2.3.0"
qs "6.7.0"
raw-body "2.4.0"
type-is "~1.6.17"
boolbase@^1.0.0, boolbase@~1.0.0:
boolbase@^1.0.0, boolbase@~1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
...
@@ -2323,11 +2307,6 @@ builtin-modules@^3.1.0:
...
@@ -2323,11 +2307,6 @@ builtin-modules@^3.1.0:
resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887"
resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887"
integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==
integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==
bytes@3.1.0:
version "3.1.0"
resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
cache-base@^1.0.1:
cache-base@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
...
@@ -2526,11 +2505,6 @@ chardet@^0.7.0:
...
@@ -2526,11 +2505,6 @@ chardet@^0.7.0:
resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
charset@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz#8d59546c355be61049a8fa9164747793319852bd"
integrity sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==
chokidar@^3.5.1:
chokidar@^3.5.1:
version "3.5.1"
version "3.5.1"
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
...
@@ -2820,11 +2794,6 @@ content-disposition@^0.5.2:
...
@@ -2820,11 +2794,6 @@ content-disposition@^0.5.2:
dependencies:
dependencies:
safe-buffer "5.1.2"
safe-buffer "5.1.2"
content-type@~1.0.4:
version "1.0.4"
resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
conventional-changelog-angular@^5.0.11, conventional-changelog-angular@^5.0.12:
conventional-changelog-angular@^5.0.11, conventional-changelog-angular@^5.0.12:
version "5.0.12"
version "5.0.12"
resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9"
resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.12.tgz#c979b8b921cbfe26402eb3da5bbfda02d865a2b9"
...
@@ -3200,11 +3169,6 @@ dateformat@^3.0.0:
...
@@ -3200,11 +3169,6 @@ dateformat@^3.0.0:
resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
dayjs@^1.10.4:
version "1.10.4"
resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.10.4.tgz#8e544a9b8683f61783f570980a8a80eaf54ab1e2"
integrity sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw==
debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
version "2.6.9"
version "2.6.9"
resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
...
@@ -3355,11 +3319,6 @@ define-property@^2.0.2:
...
@@ -3355,11 +3319,6 @@ define-property@^2.0.2:
is-descriptor "^1.0.2"
is-descriptor "^1.0.2"
isobject "^3.0.1"
isobject "^3.0.1"
depd@~1.1.2:
version "1.1.2"
resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
detect-file@^1.0.0:
detect-file@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
...
@@ -3510,17 +3469,15 @@ echarts@^5.0.2:
...
@@ -3510,17 +3469,15 @@ echarts@^5.0.2:
tslib "2.0.3"
tslib "2.0.3"
zrender "5.0.4"
zrender "5.0.4"
ecstatic@
4.1.4, ecstatic@
^3.3.2:
ecstatic@^3.3.2:
version "
4.1.4
"
version "
3.3.2
"
resolved "https://registry.npmjs.org/ecstatic/-/ecstatic-
4.1.4.tgz#86bf340dabe56c4d0c93d406ac36c040f68e1d79
"
resolved "https://registry.npmjs.org/ecstatic/-/ecstatic-
3.3.2.tgz#6d1dd49814d00594682c652adb66076a69d46c48
"
integrity sha512-
8E4ZLK4uRuB9pwywGpy/B9vcz4gCp6IY7u4cMbeCINr/fjb1v+0wf0Ae2XlfSnG8xZYnE4uaJBjFkYI0bqcIdw
==
integrity sha512-
fLf9l1hnwrHI2xn9mEDT7KIi22UDqA2jaCwyCbSUJh9a1V+LEUSL/JO/6TIz/QyuBURWUHrFL5Kg2TtO1bkkog
==
dependencies:
dependencies:
charset "^1.0.1"
he "^1.1.1"
he "^1.1.1"
mime "^
2.4.1
"
mime "^
1.6.0
"
minimist "^1.1.0"
minimist "^1.1.0"
on-finished "^2.3.0"
url-join "^2.0.5"
url-join "^4.0.0"
ee-first@1.1.1:
ee-first@1.1.1:
version "1.1.1"
version "1.1.1"
...
@@ -3668,11 +3625,6 @@ esbuild-register@^2.0.0:
...
@@ -3668,11 +3625,6 @@ esbuild-register@^2.0.0:
source-map-support "^0.5.19"
source-map-support "^0.5.19"
strip-json-comments "^3.1.1"
strip-json-comments "^3.1.1"
esbuild@^0.8.50:
version "0.8.50"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.50.tgz#ebf24fde0cdad1a369789dd6fd7a820b0a01e46c"
integrity sha512-oidFLXssA7IccYzkqLVZSqNJDwDq8Mh/vqvrW+3fPWM7iUiC5O2bCllhnO8+K9LlyL/2Z6n+WwRJAz9fqSIVRg==
esbuild@^0.8.52:
esbuild@^0.8.52:
version "0.8.52"
version "0.8.52"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.52.tgz#6dabf11c517af449a96d66da20dfc204ee7b5294"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.52.tgz#6dabf11c517af449a96d66da20dfc204ee7b5294"
...
@@ -3683,6 +3635,11 @@ esbuild@^0.8.53:
...
@@ -3683,6 +3635,11 @@ esbuild@^0.8.53:
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.53.tgz#b408bb0ca1b29dab13d8bbf7d59f59afe6776e86"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.53.tgz#b408bb0ca1b29dab13d8bbf7d59f59afe6776e86"
integrity sha512-GIaYGdMukH58hu+lf07XWAeESBYFAsz8fXnrylHDCbBXKOSNtFmoYA8PhSeSF+3/qzeJ0VjzV9AkLURo5yfu3g==
integrity sha512-GIaYGdMukH58hu+lf07XWAeESBYFAsz8fXnrylHDCbBXKOSNtFmoYA8PhSeSF+3/qzeJ0VjzV9AkLURo5yfu3g==
esbuild@^0.8.54:
version "0.8.54"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.54.tgz#2f32ff80e95c69a0f25b799d76a27c05e2857cdf"
integrity sha512-DJH38OiTgXJxFb/EhHrCrY8eGmtdkTtWymHpN9IYN9AF+4jykT0dQArr7wzFejpVbaB0TMIq2+vfNRWr3LXpvw==
escalade@^3.1.1:
escalade@^3.1.1:
version "3.1.1"
version "3.1.1"
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
...
@@ -3710,15 +3667,15 @@ eslint-plugin-prettier@^3.3.1:
...
@@ -3710,15 +3667,15 @@ eslint-plugin-prettier@^3.3.1:
dependencies:
dependencies:
prettier-linter-helpers "^1.0.0"
prettier-linter-helpers "^1.0.0"
eslint-plugin-vue@^7.
6
.0:
eslint-plugin-vue@^7.
7
.0:
version "7.
6
.0"
version "7.
7
.0"
resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.
6.0.tgz#ea616e6dfd45d545adb16cba628c5a992cc31f0b
"
resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.
7.0.tgz#a90df4595e670821bf243bd2750ededdb74948b8
"
integrity sha512-
qYpKwAvpcQXyUXVcG8Zd+fxHDx9iSgTQuO7dql7Ug/2BCvNNDr6s3I9p8MoUo23JJdO7ZAjW3vSwY/EBf4uBcw
==
integrity sha512-
mYz4bpLGv5jx6YG/GvKkqbGSfV7uma2u1P3mLA41Q5vQl8W1MeuTneB8tfsLq6xxxesFubcrOC0BZBJ5R+eaCQ
==
dependencies:
dependencies:
eslint-utils "^2.1.0"
eslint-utils "^2.1.0"
natural-compare "^1.4.0"
natural-compare "^1.4.0"
semver "^7.3.2"
semver "^7.3.2"
vue-eslint-parser "^7.
5
.0"
vue-eslint-parser "^7.
6
.0"
eslint-scope@^5.0.0, eslint-scope@^5.1.1:
eslint-scope@^5.0.0, eslint-scope@^5.1.1:
version "5.1.1"
version "5.1.1"
...
@@ -4838,17 +4795,6 @@ http-cache-semantics@3.8.1:
...
@@ -4838,17 +4795,6 @@ http-cache-semantics@3.8.1:
resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
http-errors@1.7.2:
version "1.7.2"
resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
dependencies:
depd "~1.1.2"
inherits "2.0.3"
setprototypeof "1.1.1"
statuses ">= 1.5.0 < 2"
toidentifier "1.0.0"
http-proxy@^1.18.0:
http-proxy@^1.18.0:
version "1.18.1"
version "1.18.1"
resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
...
@@ -4879,12 +4825,12 @@ human-signals@^1.1.1:
...
@@ -4879,12 +4825,12 @@ human-signals@^1.1.1:
resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
husky@^5.1.
2
:
husky@^5.1.
3
:
version "5.1.
2
"
version "5.1.
3
"
resolved "https://registry.npmjs.org/husky/-/husky-5.1.
2.tgz#dc6a1f68640455d8d98c28875e073087f86c5081
"
resolved "https://registry.npmjs.org/husky/-/husky-5.1.
3.tgz#1a0645a4fe3ffc006c4d0d8bd0bcb4c98787cc9d
"
integrity sha512-
lilaRYeDXcAOj8DuRnN9IxUyEMVbYg9rK7yVNkPB5V4hCvxIUxpMeiv9K2h77CE0HzjCnk1Br0oWe1IghXngDQ
==
integrity sha512-
fbNJ+Gz5wx2LIBtMweJNY1D7Uc8p1XERi5KNRMccwfQA+rXlxWNSdUxswo0gT8XqxywTIw7Ywm/F4v/O35RdMg
==
iconv-lite@
0.4.24, iconv-lite@
^0.4.24, iconv-lite@^0.4.4:
iconv-lite@^0.4.24, iconv-lite@^0.4.4:
version "0.4.24"
version "0.4.24"
resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
...
@@ -5037,11 +4983,6 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
...
@@ -5037,11 +4983,6 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
inherits@2.0.3:
version "2.0.3"
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
ini@^1.3.2, ini@^1.3.4, ini@^1.3.5:
ini@^1.3.2, ini@^1.3.4, ini@^1.3.5:
version "1.3.8"
version "1.3.8"
resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
...
@@ -6013,11 +5954,6 @@ mdn-data@2.0.4:
...
@@ -6013,11 +5954,6 @@ mdn-data@2.0.4:
resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
media-typer@0.3.0:
version "0.3.0"
resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
meow@^3.3.0:
meow@^3.3.0:
version "3.7.0"
version "3.7.0"
resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
...
@@ -6126,28 +6062,16 @@ micromatch@^4.0.2:
...
@@ -6126,28 +6062,16 @@ micromatch@^4.0.2:
braces "^3.0.1"
braces "^3.0.1"
picomatch "^2.0.5"
picomatch "^2.0.5"
mime-db@
1.45.0, mime-db@
^1.28.0:
mime-db@^1.28.0:
version "1.45.0"
version "1.45.0"
resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea"
resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea"
integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==
integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==
mime-types@~2.1.24:
mime@^1.4.1, mime@^1.6.0:
version "2.1.28"
resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd"
integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==
dependencies:
mime-db "1.45.0"
mime@^1.4.1:
version "1.6.0"
version "1.6.0"
resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
mime@^2.4.1:
version "2.5.0"
resolved "https://registry.npmjs.org/mime/-/mime-2.5.0.tgz#2b4af934401779806ee98026bb42e8c1ae1876b1"
integrity sha512-ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag==
mimic-fn@^1.0.0:
mimic-fn@^1.0.0:
version "1.2.0"
version "1.2.0"
resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
...
@@ -6500,7 +6424,7 @@ omit.js@^2.0.0:
...
@@ -6500,7 +6424,7 @@ omit.js@^2.0.0:
resolved "https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f"
resolved "https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f"
integrity sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==
integrity sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==
on-finished@
^2.3.0, on-finished@
~2.3.0:
on-finished@~2.3.0:
version "2.3.0"
version "2.3.0"
resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
...
@@ -7192,11 +7116,6 @@ qrcode@^1.4.4:
...
@@ -7192,11 +7116,6 @@ qrcode@^1.4.4:
pngjs "^3.3.0"
pngjs "^3.3.0"
yargs "^13.2.4"
yargs "^13.2.4"
qs@6.7.0:
version "6.7.0"
resolved "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
qs@^6.4.0:
qs@^6.4.0:
version "6.9.6"
version "6.9.6"
resolved "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee"
resolved "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee"
...
@@ -7223,16 +7142,6 @@ randombytes@^2.1.0:
...
@@ -7223,16 +7142,6 @@ randombytes@^2.1.0:
dependencies:
dependencies:
safe-buffer "^5.1.0"
safe-buffer "^5.1.0"
raw-body@2.4.0:
version "2.4.0"
resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
dependencies:
bytes "3.1.0"
http-errors "1.7.2"
iconv-lite "0.4.24"
unpipe "1.0.0"
read-pkg-up@^1.0.1:
read-pkg-up@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
...
@@ -7611,20 +7520,13 @@ rollup@^2.25.0:
...
@@ -7611,20 +7520,13 @@ rollup@^2.25.0:
optionalDependencies:
optionalDependencies:
fsevents "~2.1.2"
fsevents "~2.1.2"
rollup@^2.38.5:
rollup@^2.38.5
, rollup@^2.40.0
:
version "2.40.0"
version "2.40.0"
resolved "https://registry.npmjs.org/rollup/-/rollup-2.40.0.tgz#efc218eaede7ab590954df50f96195188999c304"
resolved "https://registry.npmjs.org/rollup/-/rollup-2.40.0.tgz#efc218eaede7ab590954df50f96195188999c304"
integrity sha512-WiOGAPbXoHu+TOz6hyYUxIksOwsY/21TRWoO593jgYt8mvYafYqQl+axaA8y1z2HFazNUUrsMSjahV2A6/2R9A==
integrity sha512-WiOGAPbXoHu+TOz6hyYUxIksOwsY/21TRWoO593jgYt8mvYafYqQl+axaA8y1z2HFazNUUrsMSjahV2A6/2R9A==
optionalDependencies:
optionalDependencies:
fsevents "~2.3.1"
fsevents "~2.3.1"
rollup@^2.39.0:
version "2.39.1"
resolved "https://registry.npmjs.org/rollup/-/rollup-2.39.1.tgz#7afd4cefd8a332c5102a8063d301fde1f31a9173"
integrity sha512-9rfr0Z6j+vE+eayfNVFr1KZ+k+jiUl2+0e4quZafy1x6SFCjzFspfRSO2ZZQeWeX9noeDTUDgg6eCENiEPFvQg==
optionalDependencies:
fsevents "~2.3.1"
run-async@^2.2.0, run-async@^2.4.0:
run-async@^2.2.0, run-async@^2.4.0:
version "2.4.1"
version "2.4.1"
resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
...
@@ -7765,11 +7667,6 @@ set-value@^2.0.0, set-value@^2.0.1:
...
@@ -7765,11 +7667,6 @@ set-value@^2.0.0, set-value@^2.0.1:
is-plain-object "^2.0.3"
is-plain-object "^2.0.3"
split-string "^3.0.1"
split-string "^3.0.1"
setprototypeof@1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
shallow-equal@^1.0.0:
shallow-equal@^1.0.0:
version "1.2.1"
version "1.2.1"
resolved "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
resolved "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
...
@@ -8044,7 +7941,7 @@ static-extend@^0.1.1:
...
@@ -8044,7 +7941,7 @@ static-extend@^0.1.1:
define-property "^0.2.5"
define-property "^0.2.5"
object-copy "^0.1.0"
object-copy "^0.1.0"
"statuses@>= 1.5.0 < 2",
statuses@~1.5.0:
statuses@~1.5.0:
version "1.5.0"
version "1.5.0"
resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
...
@@ -8595,11 +8492,6 @@ to-regex@^3.0.1, to-regex@^3.0.2:
...
@@ -8595,11 +8492,6 @@ to-regex@^3.0.1, to-regex@^3.0.2:
regex-not "^1.0.2"
regex-not "^1.0.2"
safe-regex "^1.1.0"
safe-regex "^1.1.0"
toidentifier@1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
tr46@^1.0.1:
tr46@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
...
@@ -8707,14 +8599,6 @@ type-fest@^0.8.1:
...
@@ -8707,14 +8599,6 @@ type-fest@^0.8.1:
resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
type-is@~1.6.17:
version "1.6.18"
resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
dependencies:
media-typer "0.3.0"
mime-types "~2.1.24"
typedarray-to-buffer@^3.1.5:
typedarray-to-buffer@^3.1.5:
version "3.1.5"
version "3.1.5"
resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
...
@@ -8833,7 +8717,7 @@ universalify@^2.0.0:
...
@@ -8833,7 +8717,7 @@ universalify@^2.0.0:
resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
unpipe@
1.0.0, unpipe@
~1.0.0:
unpipe@~1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
...
@@ -8882,10 +8766,10 @@ urix@^0.1.0:
...
@@ -8882,10 +8766,10 @@ urix@^0.1.0:
resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
url-join@^
4.0.0
:
url-join@^
2.0.5
:
version "
4.0.1
"
version "
2.0.5
"
resolved "https://registry.npmjs.org/url-join/-/url-join-
4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7
"
resolved "https://registry.npmjs.org/url-join/-/url-join-
2.0.5.tgz#5af22f18c052a000a48d7b82c5e9c2e2feeda728
"
integrity sha
512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=
=
integrity sha
1-WvIvGMBSoACkjXuCxenC4v7tpyg
=
url-parse-lax@^1.0.0:
url-parse-lax@^1.0.0:
version "1.0.0"
version "1.0.0"
...
@@ -8949,10 +8833,10 @@ validate-npm-package-license@^3.0.1:
...
@@ -8949,10 +8833,10 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
spdx-expression-parse "^3.0.0"
vditor@^3.8.
1
:
vditor@^3.8.
2
:
version "3.8.
1
"
version "3.8.
2
"
resolved "https://registry.npmjs.org/vditor/-/vditor-3.8.
1.tgz#93567193d481ff1772b56ca28691ccf67094e7cb
"
resolved "https://registry.npmjs.org/vditor/-/vditor-3.8.
2.tgz#0e7f1631736854b2a7621a96e9ef2fa25291921d
"
integrity sha512-
aVqkaF81sTA58038RZzNPOz/iW3ZjRgU2A78kcBX/oWecfhh1w679OuFf2owYGMZlFJmO4Bme1L0y52XNajb/A
==
integrity sha512-
A74dg1EZWCvZPowasaYFybdgZYYpTOJibqOVsrcdyo5yMaQ43/5oMcUCcmE9cdbchZCEBTE+20jSJjhk4Whurw
==
dependencies:
dependencies:
diff-match-patch "^1.0.5"
diff-match-patch "^1.0.5"
...
@@ -9015,22 +8899,20 @@ vite-plugin-imagemin@^0.2.9:
...
@@ -9015,22 +8899,20 @@ vite-plugin-imagemin@^0.2.9:
imagemin-svgo "^8.0.0"
imagemin-svgo "^8.0.0"
imagemin-webp "^6.0.0"
imagemin-webp "^6.0.0"
vite-plugin-mock@^2.
1.5
:
vite-plugin-mock@^2.
2.0
:
version "2.
1.5
"
version "2.
2.0
"
resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.
1.5.tgz#ab0868cdba49d1357ba61e098b2e6d82ab872a60
"
resolved "https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.
2.0.tgz#ecdfed8b46b9d9113bf036757721b24c6c45817b
"
integrity sha512-
/hFifHvf7I4bTkD2PyVw8pu/nUKDdnXcPxZQMZq0bId/5Z8l2iTPwVkFyyuJb38h0eGTPojqeHK8JALWfS9sCQ
==
integrity sha512-
CukTLrbVPFJIdE6gLaVGF6f66CF4ur0EOOo2kc7Ae+l/3p7vDMdqaJgaH+8pEVYMH6Q04SIJQeEsotSuhiN1Eg
==
dependencies:
dependencies:
"@rollup/plugin-node-resolve" "^11.2.0"
"@rollup/plugin-node-resolve" "^11.2.0"
"@types/mockjs" "^1.0.3"
"@types/mockjs" "^1.0.3"
body-parser "^1.19.0"
chalk "^4.1.0"
chalk "^4.1.0"
chokidar "^3.5.1"
chokidar "^3.5.1"
connect "^3.7.0"
connect "^3.7.0"
dayjs "^1.10.4"
debug "^4.3.2"
debug "^4.3.2"
esbuild "^0.8.5
0
"
esbuild "^0.8.5
4
"
fast-glob "^3.2.5"
fast-glob "^3.2.5"
rollup "^2.
39
.0"
rollup "^2.
40
.0"
rollup-plugin-esbuild "^2.6.1"
rollup-plugin-esbuild "^2.6.1"
vite-plugin-purge-icons@^0.7.0:
vite-plugin-purge-icons@^0.7.0:
...
@@ -9100,10 +8982,10 @@ vue-demi@latest:
...
@@ -9100,10 +8982,10 @@ vue-demi@latest:
resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.6.0.tgz#e314282f704cb449119b9fd002cbbc0e39f591fe"
resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.6.0.tgz#e314282f704cb449119b9fd002cbbc0e39f591fe"
integrity sha512-8GEJa0mHJpYJeGeq5fD1pJct2kfdl30PHfmL1NaJ97mgKPyKojlIRt/3inGBK4Y0ylCI6T5vOo3chwpqDOq/Hw==
integrity sha512-8GEJa0mHJpYJeGeq5fD1pJct2kfdl30PHfmL1NaJ97mgKPyKojlIRt/3inGBK4Y0ylCI6T5vOo3chwpqDOq/Hw==
vue-eslint-parser@^7.
5
.0:
vue-eslint-parser@^7.
6
.0:
version "7.
5
.0"
version "7.
6
.0"
resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.
5.0.tgz#b68221c55fee061899afcfb4441ec74c1495285e
"
resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.
6.0.tgz#01ea1a2932f581ff244336565d712801f8f72561
"
integrity sha512-
6EHzl00hIpy4yWZo3qSbtvtVw1A1cTKOv1w95QSuAqGgk4113XtRjvNIiEGo49r0YWOPYsrmI4Dl64axL5Agrw
==
integrity sha512-
QXxqH8ZevBrtiZMZK0LpwaMfevQi9UL7lY6Kcp+ogWHC88AuwUPwwCIzkOUc1LR4XsYAt/F9yHXAB/QoD17QXA
==
dependencies:
dependencies:
debug "^4.1.1"
debug "^4.1.1"
eslint-scope "^5.0.0"
eslint-scope "^5.0.0"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment