-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Theme func detail to look v1.8.1 update log
- Loading branch information
Showing
68 changed files
with
2,350 additions
and
776 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"npm.packageManager": "yarn" | ||
"npm.packageManager": "pnpm" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// generated by unplugin-vue-components | ||
// We suggest you to commit this file into source control | ||
// Read more: https://github.com/vuejs/core/pull/3399 | ||
import '@vue/runtime-core' | ||
|
||
declare module '@vue/runtime-core' { | ||
export interface GlobalComponents { | ||
ElSvgIcon: typeof import('./src/components/ElSvgIcon.vue')['default'] | ||
ImportExportComp: typeof import('./src/components/ImportExportComp.vue')['default'] | ||
LangSelect: typeof import('./src/components/LangSelect/index.vue')['default'] | ||
Pagination: typeof import('./src/components/Pagination/index.vue')['default'] | ||
RouterLink: typeof import('vue-router')['RouterLink'] | ||
RouterView: typeof import('vue-router')['RouterView'] | ||
ScreenFull: typeof import('./src/components/ScreenFull/index.vue')['default'] | ||
SizeSelect: typeof import('./src/components/SizeSelect/index.vue')['default'] | ||
TestUnit: typeof import('./src/components/TestUnit.vue')['default'] | ||
ThemeSelect: typeof import('./src/components/ThemeSelect/index.vue')['default'] | ||
Tinymce: typeof import('./src/components/Tinymce/Tinymce.vue')['default'] | ||
} | ||
} | ||
|
||
export {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
// const fs = require('fs') | ||
// const files = fs.readdirSync( | ||
// 'D:\\github\\vue3-admin-ts\\node_modules\\.pnpm\\[email protected][email protected]\\node_modules\\element-plus\\es\\components\\' | ||
// ) | ||
// console.log(111, JSON.stringify(files)) | ||
// console.log(console.dir(files)) | ||
// console.log(console.dir(files.slice(20))) | ||
|
||
const elementPlusComponentNameArr = [ | ||
'affix', | ||
'alert', | ||
'aside', | ||
'autocomplete', | ||
'avatar', | ||
'backtop', | ||
'badge', | ||
'base', | ||
'breadcrumb', | ||
'breadcrumb-item', | ||
'button', | ||
'button-group', | ||
'calendar', | ||
'card', | ||
'carousel', | ||
'carousel-item', | ||
'cascader', | ||
'cascader-panel', | ||
'check-tag', | ||
'checkbox', | ||
'checkbox-button', | ||
'checkbox-group', | ||
'col', | ||
'collapse', | ||
'collapse-item', | ||
'collapse-transition', | ||
'color-picker', | ||
'config-provider', | ||
'container', | ||
'date-picker', | ||
'descriptions', | ||
'descriptions-item', | ||
'dialog', | ||
'divider', | ||
'drawer', | ||
'dropdown', | ||
'dropdown-item', | ||
'dropdown-menu', | ||
'empty', | ||
'footer', | ||
'form', | ||
'form-item', | ||
'header', | ||
'icon', | ||
'image', | ||
'image-viewer', | ||
'infinite-scroll', | ||
'input', | ||
'input-number', | ||
'link', | ||
'loading', | ||
'main', | ||
'menu', | ||
'menu-item', | ||
'menu-item-group', | ||
'message', | ||
'message-box', | ||
'notification', | ||
'option', | ||
'option-group', | ||
'overlay', | ||
'page-header', | ||
'pagination', | ||
'popconfirm', | ||
'popover', | ||
'popper', | ||
'progress', | ||
'radio', | ||
'radio-button', | ||
'radio-group', | ||
'rate', | ||
'result', | ||
'row', | ||
'scrollbar', | ||
'select', | ||
'select-v2', | ||
'skeleton', | ||
'skeleton-item', | ||
'slider', | ||
'space', | ||
'step', | ||
'steps', | ||
'sub-menu', | ||
'switch', | ||
'tab-pane', | ||
'table', | ||
'table-column', | ||
'table-v2', | ||
'tabs', | ||
'tag', | ||
'teleport', | ||
'time-picker', | ||
'time-select', | ||
'timeline', | ||
'timeline-item', | ||
'tooltip', | ||
'transfer', | ||
'tree', | ||
'tree-select', | ||
'tree-v2', | ||
'upload', | ||
'virtual-list' | ||
] | ||
export const optimizeDepsArr = () => { | ||
const depsArr = [] as string[] | ||
elementPlusComponentNameArr.forEach((feItem) => { | ||
depsArr.push(`element-plus/es/components/${feItem}/style/index`) | ||
}) | ||
|
||
return depsArr | ||
} | ||
|
||
export default [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "vue3-admin-plus", | ||
"version": "1.6.2", | ||
"version": "1.8.1", | ||
"license": "ISC", | ||
"author": "kuanghua([email protected])", | ||
"packageManager": "[email protected]", | ||
|
@@ -22,39 +22,38 @@ | |
"vue": "^3.2.26" | ||
}, | ||
"dependencies": { | ||
"@element-plus/icons-vue": "2.0.4", | ||
"@vueuse/core": "^8.7.5", | ||
"@element-plus/icons-vue": "^2.0.4", | ||
"js-error-collection": "^1.0.7", | ||
"axios": "0.21.3", | ||
"d3": "7.2.1", | ||
"driver.js": "^0.9.8", | ||
"echarts": "4.2.1", | ||
"element-china-area-data": "5.0.2", | ||
"element-plus": "2.2.5", | ||
"element-plus": "^2.2.9", | ||
"mitt": "3.0.0", | ||
"moment-mini": "2.24.0", | ||
"moment-mini": "2.22.1", | ||
"nprogress": "0.2.0", | ||
"path": "0.12.7", | ||
"path-to-regexp": "^6.2.0", | ||
"pinia": "2.0.14", | ||
"screenfull": "4.2.0", | ||
"path-to-regexp": "6.2.0", | ||
"pinia": "^2.0.16", | ||
"tinymce": "4.9.11", | ||
"vue": "3.2.37", | ||
"vue-router": "4.0.14", | ||
"@vueuse/core": "^8.7.5", | ||
"d3": "7.2.1", | ||
"driver.js": "^0.9.8", | ||
"element-china-area-data": "5.0.2", | ||
"screenfull": "4.2.0", | ||
"vue-i18n": "9.1.6", | ||
"vue-router": "4.0.12", | ||
"xlsx": "^0.18.5", | ||
"sortablejs": "1.15.0", | ||
"splitpanes": "^3.1.1" | ||
}, | ||
"devDependencies": { | ||
"scss": "0.2.4", | ||
"@babel/eslint-parser": "7.16.3", | ||
"@types/echarts": "4.9.7", | ||
"@types/mockjs": "1.0.3", | ||
"@types/node": "15.0.1", | ||
"@types/mockjs": "1.0.6", | ||
"@typescript-eslint/eslint-plugin": "5.5.0", | ||
"@typescript-eslint/parser": "5.5.0", | ||
"@vitejs/plugin-legacy": "1.6.4", | ||
"@vitejs/plugin-vue": "1.10.2", | ||
"@vitejs/plugin-vue-jsx": "1.3.1", | ||
"eslint": "7.32.0", | ||
"eslint-config-prettier": "8.3.0", | ||
|
@@ -65,19 +64,12 @@ | |
"husky": "7.0.2", | ||
"mockjs": "1.1.0", | ||
"prettier": "2.2.1", | ||
"sass": "1.32.12", | ||
"scss": "0.2.4", | ||
"svg-sprite-loader": "6.0.11", | ||
"typescript": "4.3.2", | ||
"unplugin-auto-import": "^0.5.11", | ||
"unplugin-vue-components": "^0.17.14", | ||
"vite": "2.9.12", | ||
"vite-plugin-html": "^3.2.0", | ||
"vite-plugin-mock": "^2.9.6", | ||
"vite-plugin-style-import": "1.2.1", | ||
"vite-plugin-svg-icons": "1.0.5", | ||
"vite-plugin-vue-setup-extend-plus": "0.0.2", | ||
"vue-tsc": "0.28.1", | ||
"jest": "<27", | ||
"ts-jest": "<27", | ||
"tslib": "^2.4.0", | ||
|
@@ -92,7 +84,16 @@ | |
"ts-node": "10.7.0", | ||
"majestic": "1.8.1", | ||
"@vue/cli-plugin-unit-jest": "4.5.17", | ||
"@vue/cli-service": "4.5.17" | ||
"@vue/cli-service": "4.5.17", | ||
"@types/node": "^17.0.35", | ||
"@vitejs/plugin-vue": "^2.3.3", | ||
"sass": "^1.52.1", | ||
"typescript": "^4.7.2", | ||
"unplugin-auto-import": "^0.5.11", | ||
"unplugin-vue-components": "^0.19.5", | ||
"vite": "^3.0.0", | ||
"@vueuse/core": "^8.7.5", | ||
"vue-tsc": "^0.34.16" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.