Skip to content

Commit

Permalink
1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jekip committed Aug 10, 2023
1 parent 9b2effb commit 347cd91
Show file tree
Hide file tree
Showing 35 changed files with 3,448 additions and 9,973 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## 1.9.0

- 新增 `BasicForm` 组件,支持 `setLoading`, `setSchema` 方法
- 新增 `countField` 总数字段名配置
- 优化 `yarn` 切换至 `pnpm`
- 优化 `BasicForm` 组件,验证返回值
- 优化 `BasicTable` 组件
- 修复 `TableAction组件,左右间隔不生效` 关闭[253](https://github.com/jekip/naive-ui-admin/issues/253)
- 修复 `BasicTable组件没有数据会一直请求接口` 关闭[#251](https://github.com/jekip/naive-ui-admin/issues/251)
- 修复 `useModal+useForm组件的bug` 关闭[#250](https://github.com/jekip/naive-ui-admin/issues/250)
- 修复 `手机端侧边导航风格不一致bug` 关闭[#247](https://github.com/jekip/naive-ui-admin/issues/247
- 移除 `yarn.lock` 文件
- 依赖升级
## 1.8.2

- ### ✨ Features
Expand Down
7 changes: 5 additions & 2 deletions mock/table/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@ export default [
timeout: 1000,
method: 'get',
response: ({ query }) => {
const { page = 1, pageSize = 10 } = query;
const { page = 1, pageSize = 10, name } = query;
const list = tableList(Number(pageSize));
//并非真实,只是为了模拟搜索结果
const count = name ? 30 : 60;
return resultSuccess({
page: Number(page),
pageSize: Number(pageSize),
pageCount: 60,
pageCount: count,
itemCount: count * Number(pageSize),
list,
});
},
Expand Down
100 changes: 50 additions & 50 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "naive-ui-admin",
"version": "1.8.2",
"version": "1.9.0",
"author": {
"name": "Ahjung",
"email": "[email protected]",
"url": "https://github.com/jekip/naive-ui-admin"
},
"private": true,
"scripts": {
"bootstrap": "yarn install",
"serve": "npm run dev",
"bootstrap": "pnpm install",
"serve": "pnpm run dev",
"dev": "vite",
"build": "vite build && esno ./build/script/postBuild.ts",
"build:no-cache": "yarn clean:cache && npm run build",
"build:no-cache": "pnpm clean:cache && npm run build",
"report": "cross-env REPORT=true npm run build",
"preview": "npm run build && vite preview",
"preview:dist": "vite preview",
Expand All @@ -30,73 +30,73 @@
"dependencies": {
"@vicons/antd": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vueup/vue-quill": "^1.0.0",
"@vueuse/core": "^9.5.0",
"axios": "^1.1.3",
"@vueup/vue-quill": "^1.2.0",
"@vueuse/core": "^9.13.0",
"axios": "^1.4.0",
"blueimp-md5": "^2.19.0",
"date-fns": "^2.29.3",
"echarts": "^5.4.0",
"date-fns": "^2.30.0",
"echarts": "^5.4.3",
"element-resize-detector": "^1.2.4",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"mitt": "^3.0.1",
"mockjs": "^1.1.0",
"naive-ui": "^2.34.2",
"pinia": "^2.0.23",
"qs": "^6.11.0",
"naive-ui": "^2.34.4",
"pinia": "^2.1.6",
"qs": "^6.11.2",
"vfonts": "^0.0.3",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vue-types": "^4.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@commitlint/cli": "^17.7.0",
"@commitlint/config-conventional": "^17.7.0",
"@types/lodash": "^4.14.197",
"@types/node": "^18.17.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/compiler-sfc": "^3.2.45",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.5",
"core-js": "^3.26.0",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-typescript": "^11.0.3",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"core-js": "^3.32.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-define-config": "1.12.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"eslint-plugin-vue": "^9.17.0",
"esno": "^0.16.3",
"gh-pages": "^4.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"stylelint": "^14.14.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"tailwindcss": "^3.2.3",
"typescript": "^4.8.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.2.3",
"stylelint-scss": "^4.7.0",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5",
"unplugin-vue-components": "^0.22.12",
"vite": "^3.2.7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-mock": "^2.9.8",
"vite-plugin-style-import": "^2.0.0",
"vue-demi": "^0.13.11",
"vue-draggable-next": "^2.1.1",
"vue-eslint-parser": "^9.1.0",
"vue-draggable-next": "^2.2.1",
"vue-eslint-parser": "^9.3.1",
"vuedraggable": "^4.1.0"
},
"lint-staged": {
Expand Down Expand Up @@ -127,6 +127,6 @@
},
"homepage": "https://github.com/jekip/naive-ui-admin",
"engines": {
"node": "^12 || >=14"
"node": ">=16"
}
}

1 comment on commit 347cd91

@vercel
Copy link

@vercel vercel bot commented on 347cd91 Aug 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

naive-ui-admin – ./

naive-ui-admin.vercel.app
naive-ui-admin-git-main-jekip.vercel.app
naive-ui-admin-jekip.vercel.app

Please sign in to comment.