From b8a3fce607baa9ef3ee2d8338b92c980ba7e4f97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A6=86=E9=92=B1=E8=90=BD=E5=B0=BD=E6=A7=BF=E8=8A=B1?= =?UTF-8?q?=E7=A8=80?= <2675540038@qq.com> Date: Sun, 27 Apr 2025 15:09:45 +0800 Subject: [PATCH] 1 --- .editorconfig | 11 + .env | 56 + .env.prod | 7 + .env.test | 7 + .gitattributes | 13 + .gitignore | 35 + .npmrc | 4 + CHANGELOG.md | 2880 ++++++ CHANGELOG.zh_CN.md | 634 ++ LICENSE | 21 + README.en_US.md | 184 + README.md | 211 + build/config/index.ts | 2 + build/config/proxy.ts | 55 + build/config/time.ts | 12 + build/plugins/html.ts | 13 + build/plugins/index.ts | 24 + build/plugins/router.ts | 41 + build/plugins/unocss.ts | 32 + build/plugins/unplugin.ts | 47 + eslint.config.js | 24 + index.html | 14 + package.json | 114 + packages/alova/package.json | 20 + packages/alova/src/client.ts | 1 + packages/alova/src/constant.ts | 2 + packages/alova/src/fetch.ts | 2 + packages/alova/src/index.ts | 77 + packages/alova/src/mock.ts | 1 + packages/alova/src/type.ts | 52 + packages/alova/tsconfig.json | 20 + packages/axios/package.json | 21 + packages/axios/src/constant.ts | 5 + packages/axios/src/index.ts | 183 + packages/axios/src/options.ts | 48 + packages/axios/src/shared.ts | 28 + packages/axios/src/type.ts | 115 + packages/axios/tsconfig.json | 20 + packages/color/package.json | 16 + packages/color/src/constant/index.ts | 2 + packages/color/src/constant/name.ts | 1579 +++ packages/color/src/constant/palette.ts | 356 + packages/color/src/index.ts | 7 + packages/color/src/palette/antd.ts | 176 + packages/color/src/palette/index.ts | 45 + packages/color/src/palette/recommend.ts | 152 + packages/color/src/shared/colord.ts | 93 + packages/color/src/shared/index.ts | 2 + packages/color/src/shared/name.ts | 49 + packages/color/src/types/index.ts | 58 + packages/color/tsconfig.json | 20 + packages/hooks/package.json | 16 + packages/hooks/src/index.ts | 11 + packages/hooks/src/use-boolean.ts | 31 + packages/hooks/src/use-context.ts | 96 + packages/hooks/src/use-count-down.ts | 49 + packages/hooks/src/use-loading.ts | 16 + packages/hooks/src/use-request.ts | 79 + packages/hooks/src/use-signal.ts | 144 + packages/hooks/src/use-svg-icon-render.ts | 50 + packages/hooks/src/use-table.ts | 154 + packages/hooks/tsconfig.json | 20 + packages/materials/package.json | 19 + packages/materials/src/index.ts | 6 + .../src/libs/admin-layout/index.module.css | 63 + .../libs/admin-layout/index.module.css.d.ts | 18 + .../materials/src/libs/admin-layout/index.ts | 5 + .../materials/src/libs/admin-layout/index.vue | 237 + .../materials/src/libs/admin-layout/shared.ts | 68 + .../src/libs/page-tab/button-tab.vue | 53 + .../src/libs/page-tab/chrome-tab-bg.vue | 31 + .../src/libs/page-tab/chrome-tab.vue | 58 + .../src/libs/page-tab/index.module.css | 97 + .../src/libs/page-tab/index.module.css.d.ts | 15 + packages/materials/src/libs/page-tab/index.ts | 3 + .../materials/src/libs/page-tab/index.vue | 72 + .../materials/src/libs/page-tab/shared.ts | 31 + .../materials/src/libs/page-tab/svg-close.vue | 18 + .../src/libs/simple-scrollbar/index.ts | 3 + .../src/libs/simple-scrollbar/index.vue | 18 + packages/materials/src/types/index.ts | 294 + packages/materials/tsconfig.json | 20 + packages/ofetch/package.json | 15 + packages/ofetch/src/index.ts | 10 + packages/ofetch/tsconfig.json | 20 + packages/scripts/bin.ts | 3 + packages/scripts/package.json | 27 + packages/scripts/src/commands/changelog.ts | 10 + packages/scripts/src/commands/cleanup.ts | 5 + packages/scripts/src/commands/git-commit.ts | 84 + packages/scripts/src/commands/index.ts | 6 + packages/scripts/src/commands/release.ts | 12 + packages/scripts/src/commands/router.ts | 90 + packages/scripts/src/commands/update-pkg.ts | 5 + packages/scripts/src/config/index.ts | 39 + packages/scripts/src/index.ts | 109 + packages/scripts/src/locales/index.ts | 82 + packages/scripts/src/shared/index.ts | 7 + packages/scripts/src/types/index.ts | 31 + packages/scripts/tsconfig.json | 20 + packages/uno-preset/package.json | 12 + packages/uno-preset/src/index.ts | 55 + packages/uno-preset/tsconfig.json | 20 + packages/utils/package.json | 22 + packages/utils/src/crypto.ts | 27 + packages/utils/src/index.ts | 4 + packages/utils/src/klona.ts | 3 + packages/utils/src/nanoid.ts | 3 + packages/utils/src/storage.ts | 76 + packages/utils/tsconfig.json | 20 + pnpm-lock.yaml | 8472 +++++++++++++++++ pnpm-workspace.yaml | 2 + public/favicon.svg | 1 + src/App.vue | 58 + src/assets/imgs/soybean.jpg | Bin 0 -> 114241 bytes src/assets/svg-icon/activity.svg | 1 + src/assets/svg-icon/at-sign.svg | 1 + src/assets/svg-icon/avatar.svg | 1 + src/assets/svg-icon/banner.svg | 1 + src/assets/svg-icon/cast.svg | 1 + src/assets/svg-icon/chrome.svg | 1 + src/assets/svg-icon/copy.svg | 1 + src/assets/svg-icon/custom-icon.svg | 1 + src/assets/svg-icon/empty-data.svg | 1 + src/assets/svg-icon/expectation.svg | 1 + src/assets/svg-icon/heart.svg | 1 + src/assets/svg-icon/logo.svg | 1 + src/assets/svg-icon/network-error.svg | 1 + src/assets/svg-icon/no-icon.svg | 1 + src/assets/svg-icon/no-permission.svg | 1 + src/assets/svg-icon/not-found.svg | 1 + src/assets/svg-icon/service-error.svg | 1 + src/assets/svg-icon/wind.svg | 1 + .../advanced/table-column-setting.vue | 38 + .../advanced/table-header-operation.vue | 74 + src/components/common/app-provider.vue | 39 + src/components/common/dark-mode-container.vue | 17 + src/components/common/exception-base.vue | 43 + src/components/common/full-screen.vue | 22 + src/components/common/lang-switch.vue | 49 + src/components/common/menu-toggler.vue | 53 + src/components/common/pin-toggler.vue | 26 + src/components/common/reload-button.vue | 21 + src/components/common/system-logo.vue | 9 + src/components/common/theme-schema-switch.vue | 56 + src/components/custom/better-scroll.vue | 53 + src/components/custom/button-icon.vue | 48 + src/components/custom/count-to.vue | 88 + src/components/custom/look-forward.vue | 20 + src/components/custom/soybean-avatar.vue | 13 + src/components/custom/svg-icon.vue | 54 + src/components/custom/wave-bg.vue | 61 + src/constants/app.ts | 65 + src/constants/common.ts | 8 + src/constants/reg.ts | 25 + src/enum/index.ts | 7 + src/hooks/business/auth.ts | 21 + src/hooks/business/captcha.ts | 71 + src/hooks/common/echarts.ts | 235 + src/hooks/common/form.ts | 97 + src/hooks/common/icon.ts | 10 + src/hooks/common/router.ts | 115 + src/hooks/common/table.ts | 274 + src/layouts/base-layout/index.vue | 148 + src/layouts/blank-layout/index.vue | 13 + src/layouts/context/index.ts | 83 + .../modules/global-breadcrumb/index.vue | 47 + src/layouts/modules/global-content/index.vue | 58 + src/layouts/modules/global-footer/index.vue | 15 + .../global-header/components/theme-button.vue | 20 + .../global-header/components/user-avatar.vue | 82 + src/layouts/modules/global-header/index.vue | 60 + src/layouts/modules/global-logo/index.vue | 27 + .../components/first-level-menu.vue | 108 + src/layouts/modules/global-menu/index.vue | 37 + .../global-menu/modules/horizontal-menu.vue | 29 + .../modules/horizontal-mix-menu.vue | 52 + .../modules/reversed-horizontal-mix-menu.vue | 86 + .../global-menu/modules/vertical-menu.vue | 63 + .../global-menu/modules/vertical-mix-menu.vue | 128 + .../components/search-footer.vue | 36 + .../global-search/components/search-modal.vue | 123 + .../components/search-result.vue | 56 + src/layouts/modules/global-search/index.vue | 18 + src/layouts/modules/global-sider/index.vue | 33 + .../modules/global-tab/context-menu.vue | 123 + src/layouts/modules/global-tab/index.vue | 214 + .../components/layout-mode-card.vue | 94 + .../theme-drawer/components/setting-item.vue | 24 + src/layouts/modules/theme-drawer/index.vue | 31 + .../theme-drawer/modules/config-operation.vue | 58 + .../theme-drawer/modules/dark-mode.vue | 76 + .../theme-drawer/modules/layout-mode.vue | 81 + .../modules/theme-drawer/modules/page-fun.vue | 151 + .../theme-drawer/modules/theme-color.vue | 78 + src/locales/dayjs.ts | 20 + src/locales/index.ts | 26 + src/locales/langs/en-us.ts | 295 + src/locales/langs/zh-cn.ts | 295 + src/locales/locale.ts | 9 + src/locales/naive.ts | 12 + src/main.ts | 31 + src/plugins/app.ts | 103 + src/plugins/assets.ts | 3 + src/plugins/dayjs.ts | 9 + src/plugins/iconify.ts | 12 + src/plugins/index.ts | 5 + src/plugins/loading.ts | 51 + src/plugins/nprogress.ts | 9 + src/router/elegant/imports.ts | 25 + src/router/elegant/routes.ts | 98 + src/router/elegant/transform.ts | 194 + src/router/guard/index.ts | 15 + src/router/guard/progress.ts | 11 + src/router/guard/route.ts | 193 + src/router/guard/title.ts | 13 + src/router/index.ts | 30 + src/router/routes/builtin.ts | 31 + src/router/routes/index.ts | 42 + src/service/api/auth.ts | 48 + src/service/api/index.ts | 2 + src/service/api/route.ts | 20 + src/service/request/index.ts | 168 + src/service/request/shared.ts | 64 + src/service/request/type.ts | 6 + src/store/index.ts | 12 + src/store/modules/app/index.ts | 169 + src/store/modules/auth/index.ts | 120 + src/store/modules/auth/shared.ts | 12 + src/store/modules/route/index.ts | 373 + src/store/modules/route/shared.ts | 335 + src/store/modules/tab/index.ts | 307 + src/store/modules/tab/shared.ts | 251 + src/store/modules/theme/index.ts | 221 + src/store/modules/theme/shared.ts | 259 + src/store/plugins/index.ts | 22 + src/styles/css/global.css | 13 + src/styles/css/nprogress.css | 83 + src/styles/css/reset.css | 378 + src/styles/css/transition.css | 82 + src/styles/scss/global.scss | 1 + src/styles/scss/scrollbar.scss | 21 + src/theme/settings.ts | 89 + src/theme/vars.ts | 35 + src/typings/api.d.ts | 87 + src/typings/app.d.ts | 588 ++ src/typings/common.d.ts | 25 + src/typings/components.d.ts | 89 + src/typings/elegant-router.d.ts | 244 + src/typings/global.d.ts | 19 + src/typings/naive-ui.d.ts | 54 + src/typings/router.d.ts | 72 + src/typings/storage.d.ts | 41 + src/typings/union-key.d.ts | 157 + src/typings/vite-env.d.ts | 116 + src/utils/agent.ts | 7 + src/utils/common.ts | 58 + src/utils/icon.ts | 9 + src/utils/service.ts | 75 + src/utils/storage.ts | 9 + src/views/_builtin/403/index.vue | 7 + src/views/_builtin/404/index.vue | 7 + src/views/_builtin/500/index.vue | 7 + src/views/_builtin/iframe-page/[url].vue | 25 + src/views/_builtin/login/index.vue | 75 + .../_builtin/login/modules/pwd-login.vue | 64 + src/views/home/index.vue | 46 + src/views/home/modules/card-data.vue | 109 + src/views/home/modules/creativity-banner.vue | 17 + src/views/home/modules/header-banner.vue | 66 + src/views/home/modules/line-chart.vue | 151 + src/views/home/modules/pie-chart.vue | 109 + src/views/home/modules/project-news.vue | 40 + src/views/system/menu/index.vue | 217 + tsconfig.json | 26 + uno.config.ts | 30 + vite.config.ts | 51 + 277 files changed, 30038 insertions(+) create mode 100644 .editorconfig create mode 100644 .env create mode 100644 .env.prod create mode 100644 .env.test create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .npmrc create mode 100644 CHANGELOG.md create mode 100644 CHANGELOG.zh_CN.md create mode 100644 LICENSE create mode 100644 README.en_US.md create mode 100644 README.md create mode 100644 build/config/index.ts create mode 100644 build/config/proxy.ts create mode 100644 build/config/time.ts create mode 100644 build/plugins/html.ts create mode 100644 build/plugins/index.ts create mode 100644 build/plugins/router.ts create mode 100644 build/plugins/unocss.ts create mode 100644 build/plugins/unplugin.ts create mode 100644 eslint.config.js create mode 100644 index.html create mode 100644 package.json create mode 100644 packages/alova/package.json create mode 100644 packages/alova/src/client.ts create mode 100644 packages/alova/src/constant.ts create mode 100644 packages/alova/src/fetch.ts create mode 100644 packages/alova/src/index.ts create mode 100644 packages/alova/src/mock.ts create mode 100644 packages/alova/src/type.ts create mode 100644 packages/alova/tsconfig.json create mode 100644 packages/axios/package.json create mode 100644 packages/axios/src/constant.ts create mode 100644 packages/axios/src/index.ts create mode 100644 packages/axios/src/options.ts create mode 100644 packages/axios/src/shared.ts create mode 100644 packages/axios/src/type.ts create mode 100644 packages/axios/tsconfig.json create mode 100644 packages/color/package.json create mode 100644 packages/color/src/constant/index.ts create mode 100644 packages/color/src/constant/name.ts create mode 100644 packages/color/src/constant/palette.ts create mode 100644 packages/color/src/index.ts create mode 100644 packages/color/src/palette/antd.ts create mode 100644 packages/color/src/palette/index.ts create mode 100644 packages/color/src/palette/recommend.ts create mode 100644 packages/color/src/shared/colord.ts create mode 100644 packages/color/src/shared/index.ts create mode 100644 packages/color/src/shared/name.ts create mode 100644 packages/color/src/types/index.ts create mode 100644 packages/color/tsconfig.json create mode 100644 packages/hooks/package.json create mode 100644 packages/hooks/src/index.ts create mode 100644 packages/hooks/src/use-boolean.ts create mode 100644 packages/hooks/src/use-context.ts create mode 100644 packages/hooks/src/use-count-down.ts create mode 100644 packages/hooks/src/use-loading.ts create mode 100644 packages/hooks/src/use-request.ts create mode 100644 packages/hooks/src/use-signal.ts create mode 100644 packages/hooks/src/use-svg-icon-render.ts create mode 100644 packages/hooks/src/use-table.ts create mode 100644 packages/hooks/tsconfig.json create mode 100644 packages/materials/package.json create mode 100644 packages/materials/src/index.ts create mode 100644 packages/materials/src/libs/admin-layout/index.module.css create mode 100644 packages/materials/src/libs/admin-layout/index.module.css.d.ts create mode 100644 packages/materials/src/libs/admin-layout/index.ts create mode 100644 packages/materials/src/libs/admin-layout/index.vue create mode 100644 packages/materials/src/libs/admin-layout/shared.ts create mode 100644 packages/materials/src/libs/page-tab/button-tab.vue create mode 100644 packages/materials/src/libs/page-tab/chrome-tab-bg.vue create mode 100644 packages/materials/src/libs/page-tab/chrome-tab.vue create mode 100644 packages/materials/src/libs/page-tab/index.module.css create mode 100644 packages/materials/src/libs/page-tab/index.module.css.d.ts create mode 100644 packages/materials/src/libs/page-tab/index.ts create mode 100644 packages/materials/src/libs/page-tab/index.vue create mode 100644 packages/materials/src/libs/page-tab/shared.ts create mode 100644 packages/materials/src/libs/page-tab/svg-close.vue create mode 100644 packages/materials/src/libs/simple-scrollbar/index.ts create mode 100644 packages/materials/src/libs/simple-scrollbar/index.vue create mode 100644 packages/materials/src/types/index.ts create mode 100644 packages/materials/tsconfig.json create mode 100644 packages/ofetch/package.json create mode 100644 packages/ofetch/src/index.ts create mode 100644 packages/ofetch/tsconfig.json create mode 100644 packages/scripts/bin.ts create mode 100644 packages/scripts/package.json create mode 100644 packages/scripts/src/commands/changelog.ts create mode 100644 packages/scripts/src/commands/cleanup.ts create mode 100644 packages/scripts/src/commands/git-commit.ts create mode 100644 packages/scripts/src/commands/index.ts create mode 100644 packages/scripts/src/commands/release.ts create mode 100644 packages/scripts/src/commands/router.ts create mode 100644 packages/scripts/src/commands/update-pkg.ts create mode 100644 packages/scripts/src/config/index.ts create mode 100644 packages/scripts/src/index.ts create mode 100644 packages/scripts/src/locales/index.ts create mode 100644 packages/scripts/src/shared/index.ts create mode 100644 packages/scripts/src/types/index.ts create mode 100644 packages/scripts/tsconfig.json create mode 100644 packages/uno-preset/package.json create mode 100644 packages/uno-preset/src/index.ts create mode 100644 packages/uno-preset/tsconfig.json create mode 100644 packages/utils/package.json create mode 100644 packages/utils/src/crypto.ts create mode 100644 packages/utils/src/index.ts create mode 100644 packages/utils/src/klona.ts create mode 100644 packages/utils/src/nanoid.ts create mode 100644 packages/utils/src/storage.ts create mode 100644 packages/utils/tsconfig.json create mode 100644 pnpm-lock.yaml create mode 100644 pnpm-workspace.yaml create mode 100644 public/favicon.svg create mode 100644 src/App.vue create mode 100644 src/assets/imgs/soybean.jpg create mode 100644 src/assets/svg-icon/activity.svg create mode 100644 src/assets/svg-icon/at-sign.svg create mode 100644 src/assets/svg-icon/avatar.svg create mode 100644 src/assets/svg-icon/banner.svg create mode 100644 src/assets/svg-icon/cast.svg create mode 100644 src/assets/svg-icon/chrome.svg create mode 100644 src/assets/svg-icon/copy.svg create mode 100644 src/assets/svg-icon/custom-icon.svg create mode 100644 src/assets/svg-icon/empty-data.svg create mode 100644 src/assets/svg-icon/expectation.svg create mode 100644 src/assets/svg-icon/heart.svg create mode 100644 src/assets/svg-icon/logo.svg create mode 100644 src/assets/svg-icon/network-error.svg create mode 100644 src/assets/svg-icon/no-icon.svg create mode 100644 src/assets/svg-icon/no-permission.svg create mode 100644 src/assets/svg-icon/not-found.svg create mode 100644 src/assets/svg-icon/service-error.svg create mode 100644 src/assets/svg-icon/wind.svg create mode 100644 src/components/advanced/table-column-setting.vue create mode 100644 src/components/advanced/table-header-operation.vue create mode 100644 src/components/common/app-provider.vue create mode 100644 src/components/common/dark-mode-container.vue create mode 100644 src/components/common/exception-base.vue create mode 100644 src/components/common/full-screen.vue create mode 100644 src/components/common/lang-switch.vue create mode 100644 src/components/common/menu-toggler.vue create mode 100644 src/components/common/pin-toggler.vue create mode 100644 src/components/common/reload-button.vue create mode 100644 src/components/common/system-logo.vue create mode 100644 src/components/common/theme-schema-switch.vue create mode 100644 src/components/custom/better-scroll.vue create mode 100644 src/components/custom/button-icon.vue create mode 100644 src/components/custom/count-to.vue create mode 100644 src/components/custom/look-forward.vue create mode 100644 src/components/custom/soybean-avatar.vue create mode 100644 src/components/custom/svg-icon.vue create mode 100644 src/components/custom/wave-bg.vue create mode 100644 src/constants/app.ts create mode 100644 src/constants/common.ts create mode 100644 src/constants/reg.ts create mode 100644 src/enum/index.ts create mode 100644 src/hooks/business/auth.ts create mode 100644 src/hooks/business/captcha.ts create mode 100644 src/hooks/common/echarts.ts create mode 100644 src/hooks/common/form.ts create mode 100644 src/hooks/common/icon.ts create mode 100644 src/hooks/common/router.ts create mode 100644 src/hooks/common/table.ts create mode 100644 src/layouts/base-layout/index.vue create mode 100644 src/layouts/blank-layout/index.vue create mode 100644 src/layouts/context/index.ts create mode 100644 src/layouts/modules/global-breadcrumb/index.vue create mode 100644 src/layouts/modules/global-content/index.vue create mode 100644 src/layouts/modules/global-footer/index.vue create mode 100644 src/layouts/modules/global-header/components/theme-button.vue create mode 100644 src/layouts/modules/global-header/components/user-avatar.vue create mode 100644 src/layouts/modules/global-header/index.vue create mode 100644 src/layouts/modules/global-logo/index.vue create mode 100644 src/layouts/modules/global-menu/components/first-level-menu.vue create mode 100644 src/layouts/modules/global-menu/index.vue create mode 100644 src/layouts/modules/global-menu/modules/horizontal-menu.vue create mode 100644 src/layouts/modules/global-menu/modules/horizontal-mix-menu.vue create mode 100644 src/layouts/modules/global-menu/modules/reversed-horizontal-mix-menu.vue create mode 100644 src/layouts/modules/global-menu/modules/vertical-menu.vue create mode 100644 src/layouts/modules/global-menu/modules/vertical-mix-menu.vue create mode 100644 src/layouts/modules/global-search/components/search-footer.vue create mode 100644 src/layouts/modules/global-search/components/search-modal.vue create mode 100644 src/layouts/modules/global-search/components/search-result.vue create mode 100644 src/layouts/modules/global-search/index.vue create mode 100644 src/layouts/modules/global-sider/index.vue create mode 100644 src/layouts/modules/global-tab/context-menu.vue create mode 100644 src/layouts/modules/global-tab/index.vue create mode 100644 src/layouts/modules/theme-drawer/components/layout-mode-card.vue create mode 100644 src/layouts/modules/theme-drawer/components/setting-item.vue create mode 100644 src/layouts/modules/theme-drawer/index.vue create mode 100644 src/layouts/modules/theme-drawer/modules/config-operation.vue create mode 100644 src/layouts/modules/theme-drawer/modules/dark-mode.vue create mode 100644 src/layouts/modules/theme-drawer/modules/layout-mode.vue create mode 100644 src/layouts/modules/theme-drawer/modules/page-fun.vue create mode 100644 src/layouts/modules/theme-drawer/modules/theme-color.vue create mode 100644 src/locales/dayjs.ts create mode 100644 src/locales/index.ts create mode 100644 src/locales/langs/en-us.ts create mode 100644 src/locales/langs/zh-cn.ts create mode 100644 src/locales/locale.ts create mode 100644 src/locales/naive.ts create mode 100644 src/main.ts create mode 100644 src/plugins/app.ts create mode 100644 src/plugins/assets.ts create mode 100644 src/plugins/dayjs.ts create mode 100644 src/plugins/iconify.ts create mode 100644 src/plugins/index.ts create mode 100644 src/plugins/loading.ts create mode 100644 src/plugins/nprogress.ts create mode 100644 src/router/elegant/imports.ts create mode 100644 src/router/elegant/routes.ts create mode 100644 src/router/elegant/transform.ts create mode 100644 src/router/guard/index.ts create mode 100644 src/router/guard/progress.ts create mode 100644 src/router/guard/route.ts create mode 100644 src/router/guard/title.ts create mode 100644 src/router/index.ts create mode 100644 src/router/routes/builtin.ts create mode 100644 src/router/routes/index.ts create mode 100644 src/service/api/auth.ts create mode 100644 src/service/api/index.ts create mode 100644 src/service/api/route.ts create mode 100644 src/service/request/index.ts create mode 100644 src/service/request/shared.ts create mode 100644 src/service/request/type.ts create mode 100644 src/store/index.ts create mode 100644 src/store/modules/app/index.ts create mode 100644 src/store/modules/auth/index.ts create mode 100644 src/store/modules/auth/shared.ts create mode 100644 src/store/modules/route/index.ts create mode 100644 src/store/modules/route/shared.ts create mode 100644 src/store/modules/tab/index.ts create mode 100644 src/store/modules/tab/shared.ts create mode 100644 src/store/modules/theme/index.ts create mode 100644 src/store/modules/theme/shared.ts create mode 100644 src/store/plugins/index.ts create mode 100644 src/styles/css/global.css create mode 100644 src/styles/css/nprogress.css create mode 100644 src/styles/css/reset.css create mode 100644 src/styles/css/transition.css create mode 100644 src/styles/scss/global.scss create mode 100644 src/styles/scss/scrollbar.scss create mode 100644 src/theme/settings.ts create mode 100644 src/theme/vars.ts create mode 100644 src/typings/api.d.ts create mode 100644 src/typings/app.d.ts create mode 100644 src/typings/common.d.ts create mode 100644 src/typings/components.d.ts create mode 100644 src/typings/elegant-router.d.ts create mode 100644 src/typings/global.d.ts create mode 100644 src/typings/naive-ui.d.ts create mode 100644 src/typings/router.d.ts create mode 100644 src/typings/storage.d.ts create mode 100644 src/typings/union-key.d.ts create mode 100644 src/typings/vite-env.d.ts create mode 100644 src/utils/agent.ts create mode 100644 src/utils/common.ts create mode 100644 src/utils/icon.ts create mode 100644 src/utils/service.ts create mode 100644 src/utils/storage.ts create mode 100644 src/views/_builtin/403/index.vue create mode 100644 src/views/_builtin/404/index.vue create mode 100644 src/views/_builtin/500/index.vue create mode 100644 src/views/_builtin/iframe-page/[url].vue create mode 100644 src/views/_builtin/login/index.vue create mode 100644 src/views/_builtin/login/modules/pwd-login.vue create mode 100644 src/views/home/index.vue create mode 100644 src/views/home/modules/card-data.vue create mode 100644 src/views/home/modules/creativity-banner.vue create mode 100644 src/views/home/modules/header-banner.vue create mode 100644 src/views/home/modules/line-chart.vue create mode 100644 src/views/home/modules/pie-chart.vue create mode 100644 src/views/home/modules/project-news.vue create mode 100644 src/views/system/menu/index.vue create mode 100644 tsconfig.json create mode 100644 uno.config.ts create mode 100644 vite.config.ts diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0552777 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# Editor configuration, see http://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.env b/.env new file mode 100644 index 0000000..97a8236 --- /dev/null +++ b/.env @@ -0,0 +1,56 @@ +# the base url of the application, the default is "/" +# if use a sub directory, it must be end with "/", like "/admin/" but not "/admin" +VITE_BASE_URL=/ + +VITE_APP_TITLE=SoybeanAdmin + +VITE_APP_DESC=SoybeanAdmin is a fresh and elegant admin template + +# the prefix of the icon name +VITE_ICON_PREFIX=icon + +# the prefix of the local svg icon component, must include VITE_ICON_PREFIX +# format {VITE_ICON_PREFIX}-{local icon name} +VITE_ICON_LOCAL_PREFIX=icon-local + +# auth route mode: static ๏ฝ dynamic +VITE_AUTH_ROUTE_MODE=dynamic + +# static auth route home +VITE_ROUTE_HOME=home + +# default menu icon +VITE_MENU_ICON=mdi:menu + +# whether to enable http proxy when is dev mode +VITE_HTTP_PROXY=Y + +# vue-router mode: hash | history | memory +VITE_ROUTER_HISTORY_MODE=history + +# success code of backend service, when the code is received, the request is successful +VITE_SERVICE_SUCCESS_CODE=1 + +# logout codes of backend service, when the code is received, the user will be logged out and redirected to login page +VITE_SERVICE_LOGOUT_CODES=8888,8889 + +# modal logout codes of backend service, when the code is received, the user will be logged out by displaying a modal +VITE_SERVICE_MODAL_LOGOUT_CODES=7777,7778 + +# token expired codes of backend service, when the code is received, it will refresh the token and resend the request +VITE_SERVICE_EXPIRED_TOKEN_CODES=9999,9998,3333 + +# when the route mode is static, the defined super role +VITE_STATIC_SUPER_ROLE=R_SUPER + +# sourcemap +VITE_SOURCE_MAP=N + +# Used to differentiate storage across different domains +VITE_STORAGE_PREFIX=SOY_ + +# used to control whether the program automatically detects updates +VITE_AUTOMATICALLY_DETECT_UPDATE=Y + +# show proxy url log in terminal +VITE_PROXY_LOG=Y diff --git a/.env.prod b/.env.prod new file mode 100644 index 0000000..f567764 --- /dev/null +++ b/.env.prod @@ -0,0 +1,7 @@ +# backend service base url, prod environment +VITE_SERVICE_BASE_URL=https://mock.apifox.cn/m1/3109515-0-default + +# other backend service base url, prod environment +VITE_OTHER_SERVICE_BASE_URL= `{ + "demo": "http://localhost:9529" +}` diff --git a/.env.test b/.env.test new file mode 100644 index 0000000..899345a --- /dev/null +++ b/.env.test @@ -0,0 +1,7 @@ +# backend service base url, test environment +VITE_SERVICE_BASE_URL=http://192.168.10.137:8080/ + +# other backend service base url, test environment +VITE_OTHER_SERVICE_BASE_URL= `{ + "demo": "http://localhost:9528" +}` diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9553ccb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +"*.vue" eol=lf +"*.js" eol=lf +"*.ts" eol=lf +"*.jsx" eol=lf +"*.tsx" eol=lf +"*.mjs" eol=lf +"*.json" eol=lf +"*.html" eol=lf +"*.css" eol=lf +"*.scss" eol=lf +"*.md" eol=lf +"*.yaml" eol=lf +"*.yml" eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fdd159a --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +!.vscode/settings.json +!.vscode/launch.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +package-lock.json +yarn.lock + +.VSCodeCounter diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..dfc2d68 --- /dev/null +++ b/.npmrc @@ -0,0 +1,4 @@ +registry=https://registry.npmmirror.com/ +shamefully-hoist=true +ignore-workspace-root-check=true +link-workspace-packages=true diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8afde18 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,2880 @@ +# Changelog + + +## [v1.3.13](https://github.com/soybeanjs/soybean-admin/compare/v1.3.12...v1.3.13) (2025-03-19) + +### ๐ Bug Fixes + +- **projects**: fix active tab switch issue after removal - by @me-o in https://github.com/soybeanjs/soybean-admin/issues/723 [(a7c59)](https://github.com/soybeanjs/soybean-admin/commit/a7c59ada) + +### ๐ Documentation + +- **projects**: update README - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/718 [(3febb)](https://github.com/soybeanjs/soybean-admin/commit/3febb65d) + +### ๐ฆ Build + +- **deps**: Restrict the minimum Node.js version. - by **ไธๅฏธ็ฐ** in https://github.com/soybeanjs/soybean-admin/issues/720 [(a6ecd)](https://github.com/soybeanjs/soybean-admin/commit/a6ecd3e0) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(5d8b7)](https://github.com/soybeanjs/soybean-admin/commit/5d8b782d) + - update deps - by @soybeanjs [(2e8cb)](https://github.com/soybeanjs/soybean-admin/commit/2e8cb35c) +- **projects**: + - update vscode settings and launch - by @soybeanjs [(8b12e)](https://github.com/soybeanjs/soybean-admin/commit/8b12ef9f) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/me-o) [](https://github.com/Azir-11) +[ไธๅฏธ็ฐ](mailto:webzhangfei@163.com), + +## [v1.3.12](https://github.com/soybeanjs/soybean-admin/compare/v1.3.11...v1.3.12) (2025-03-12) + +### ๐ Features + +- **projects**: + - support loading page dark mode adaptation. - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/702 [(9b945)](https://github.com/soybeanjs/soybean-admin/commit/9b9455d9) + - tab support touch event - by @soybeanjs [(a03be)](https://github.com/soybeanjs/soybean-admin/commit/a03becda) + - support proxy log in terminal - by @soybeanjs [(4cc14)](https://github.com/soybeanjs/soybean-admin/commit/4cc1487f) +- **projects): feat(projects**: + - TableColumnCheck title support VNode - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/716 [(a1a5c)](https://github.com/soybeanjs/soybean-admin/commit/a1a5c74c) +- **utils**: + - support replaceTab. - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/713 [(be608)](https://github.com/soybeanjs/soybean-admin/commit/be6080ba) + +### ๐ Bug Fixes + +- **projects**: + - hidden multi-language button in login page. fix #694 - by **Azir** in https://github.com/soybeanjs/soybean-admin/issues/694 [(54e7d)](https://github.com/soybeanjs/soybean-admin/commit/54e7d6d0) + - fix multiple calls to the login API when clicking quickly. fixed #697 - by @zsdycs in https://github.com/soybeanjs/soybean-admin/issues/698 and https://github.com/soybeanjs/soybean-admin/issues/697 [(86da7)](https://github.com/soybeanjs/soybean-admin/commit/86da767e) + - fix multiple calls to the login API when clicking quickly. fixed #697 " - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/698 and https://github.com/soybeanjs/soybean-admin/issues/697 [(15163)](https://github.com/soybeanjs/soybean-admin/commit/15163d70) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(132e1)](https://github.com/soybeanjs/soybean-admin/commit/132e1012) + - update deps - by **Azir** [(52c33)](https://github.com/soybeanjs/soybean-admin/commit/52c336d7) + - update deps - by @soybeanjs [(b8112)](https://github.com/soybeanjs/soybean-admin/commit/b8112613) +- **projects**: + - update unocss preset - by @Wangijun in https://github.com/soybeanjs/soybean-admin/issues/712 [(3e007)](https://github.com/soybeanjs/soybean-admin/commit/3e0076d4) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) [](https://github.com/Wangijun) [](https://github.com/zsdycs) +[Azir](mailto:2075125282@qq.com), + +## [v1.3.11](https://github.com/soybeanjs/soybean-admin/compare/v1.3.10...v1.3.11) (2025-01-19) + +### ๐ Features + +- **projects**: multi language buttons support hiding. - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/683 [(d7aeb)](https://github.com/soybeanjs/soybean-admin/commit/d7aebb7) + +### ๐ Bug Fixes + +- **hooks**: + - The total number before assigning a value to the table is incorrect. - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/687 [(56760)](https://github.com/soybeanjs/soybean-admin/commit/5676024) +- **projects**: + - fix login success notification. fixed #688 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/688 [(60dd2)](https://github.com/soybeanjs/soybean-admin/commit/60dd226) + - fix update notifications. fixed #691, fixed #692 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/691 and https://github.com/soybeanjs/soybean-admin/issues/692 [(ac862)](https://github.com/soybeanjs/soybean-admin/commit/ac86247) + +### ๐ Optimizations + +- **projects**: optimize code - by @soybeanjs [(6489e)](https://github.com/soybeanjs/soybean-admin/commit/6489ec4) + +### ๐ Documentation + +- **projects**: update README - by @soybeanjs [(21434)](https://github.com/soybeanjs/soybean-admin/commit/214341e) + +### ๐ก Chore + +- **deps**: update deps - by @soybeanjs [(c9433)](https://github.com/soybeanjs/soybean-admin/commit/c9433e1) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) + +## [v1.3.10](https://github.com/honghuangdc/soybean-admin/compare/v1.3.9...v1.3.10) (2024-12-16) + +### ๐ Features + +- **projects**: support show tab when not loggedIn - by @soybeanjs [(ba381)](https://github.com/honghuangdc/soybean-admin/commit/ba38119) + +### ๐ Bug Fixes + +- **deps**: + - reduced eslint version to 9.14.0 - by @soybeanjs [(af417)](https://github.com/honghuangdc/soybean-admin/commit/af4177e) +- **projects**: + - fix route guard hook `onRouteSwitchWhenLoggedIn`. fixed #680 - by @soybeanjs in https://github.com/honghuangdc/soybean-admin/issues/680 [(ab985)](https://github.com/honghuangdc/soybean-admin/commit/ab9858c) + - check if init userInfo when initAuthRoute. fixed #680 - by @soybeanjs in https://github.com/honghuangdc/soybean-admin/issues/680 [(9f4fb)](https://github.com/honghuangdc/soybean-admin/commit/9f4fb8c) + +### ๐ Optimizations + +- **projects**: + - optimize router guard - by @soybeanjs [(0dfcf)](https://github.com/honghuangdc/soybean-admin/commit/0dfcf18) + - use `defu` to fill added theme config - by @soybeanjs [(101b6)](https://github.com/honghuangdc/soybean-admin/commit/101b6f9) + +### ๐ Documentation + +- **projects**: โ๏ธ add element-plus version link - by **ไธๅฏธ็ฐ** in https://github.com/honghuangdc/soybean-admin/issues/679 [(5c6ab)](https://github.com/honghuangdc/soybean-admin/commit/5c6ab0b) + +### ๐ก Chore + +- rename env.d.ts to vite-env.d.ts - by @wzc520pyfm in https://github.com/honghuangdc/soybean-admin/issues/675 [(b93c2)](https://github.com/honghuangdc/soybean-admin/commit/b93c203) +- **projects**: update deps & fix vite config - by @soybeanjs [(3e0eb)](https://github.com/honghuangdc/soybean-admin/commit/3e0eb72) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/wzc520pyfm) +[ไธๅฏธ็ฐ](mailto:webzhangfei@163.com), + +## [v1.3.9](https://github.com/soybeanjs/soybean-admin/compare/v1.3.8...v1.3.9) (2024-11-17) + +### ๐ Features + +- **projects**: + - support scheduled detection and update system. close #657 - by **้่็ฝ็ๆฑค** in https://github.com/soybeanjs/soybean-admin/issues/669 and https://github.com/soybeanjs/soybean-admin/issues/657 [(d088f)](https://github.com/soybeanjs/soybean-admin/commit/d088f81) + - app version notification plugin support sub deploy path. close #668 - by **Soybean** in https://github.com/soybeanjs/soybean-admin/issues/668 [(a53eb)](https://github.com/soybeanjs/soybean-admin/commit/a53eb10) + +### ๐ Optimizations + +- **projects**: optimize code - by **Soybean** [(9ad5d)](https://github.com/soybeanjs/soybean-admin/commit/9ad5d71) + +### ๐ Refactors + +- **projects**: refactor router guard. fix #655 - by **Soybean** in https://github.com/soybeanjs/soybean-admin/issues/667 and https://github.com/soybeanjs/soybean-admin/issues/655 [(09144)](https://github.com/soybeanjs/soybean-admin/commit/09144df) + +### ๐ Documentation + +- **projects**: set the Chinese version of README as default - by **Soybean** [(9d28b)](https://github.com/soybeanjs/soybean-admin/commit/9d28b31) + +### ๐ก Chore + +- **deps**: + - update deps - by **Soybean** [(91de4)](https://github.com/soybeanjs/soybean-admin/commit/91de4a8) + - update deps - by **Soybean** [(0c809)](https://github.com/soybeanjs/soybean-admin/commit/0c809de) +- **projects**: + - add desc for base url of app - by **Soybean** [(17d7e)](https://github.com/soybeanjs/soybean-admin/commit/17d7e52) + +### โค๏ธ Contributors + + +[Soybean](mailto:soybeanjs@outlook.com), [้่็ฝ็ๆฑค](mailto:79054161+Azir-11@users.noreply.github.com) + +## [v1.3.8](https://github.com/soybeanjs/soybean-admin/compare/v1.3.7...v1.3.8) (2024-10-25) + +### ๐จ Breaking Changes + +- **projects**: refactor route cache & support reset route cache strategy - by @soybeanjs [(b667e)](https://github.com/soybeanjs/soybean-admin/commit/b667eab) + +### ๐ Features + +- **packages**: + - add subpackage `@sa/alova` - by @JOU-amjs in https://github.com/soybeanjs/soybean-admin/issues/640 [(2072f)](https://github.com/soybeanjs/soybean-admin/commit/2072f58) + - optimistic subpackage `@sa/alova` - by @JOU-amjs in https://github.com/soybeanjs/soybean-admin/issues/646 [(4b3ac)](https://github.com/soybeanjs/soybean-admin/commit/4b3ac11) +- **projects**: + - login supports accessible operation. - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/637 [(cfaab)](https://github.com/soybeanjs/soybean-admin/commit/cfaab85) + +### ๐ Bug Fixes + +- **utils**: fix `isPC`. fixed #644 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/644 [(47264)](https://github.com/soybeanjs/soybean-admin/commit/4726498) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(8dcda)](https://github.com/soybeanjs/soybean-admin/commit/8dcda38) +- **projects**: + - update vscode extensions - by @soybeanjs [(24bb6)](https://github.com/soybeanjs/soybean-admin/commit/24bb6d9) + - update deps & fix sass usage - by @soybeanjs [(71e63)](https://github.com/soybeanjs/soybean-admin/commit/71e6307) +- **types**: + - remove type declaration for document.startViewTransition (TypeScript 5.6 includes it) - by @NHZEX in https://github.com/soybeanjs/soybean-admin/issues/633 [(83ba7)](https://github.com/soybeanjs/soybean-admin/commit/83ba798) + +### ๐จ Styles + +- **projects**: reduce ambiguity in theme configuration instructions. - by @Azir-11 [(75cbf)](https://github.com/soybeanjs/soybean-admin/commit/75cbfbb) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/JOU-amjs) [](https://github.com/Azir-11) [](https://github.com/NHZEX) + +## [v1.3.7](https://github.com/soybeanjs/soybean-admin/compare/v1.3.6...v1.3.7) (2024-09-21) + +### ๐จ Breaking Changes + +- **projects**: update scss config - by @soybeanjs [(24e9e)](https://github.com/soybeanjs/soybean-admin/commit/24e9e57) + +### ๐ Bug Fixes + +- **projects**: fix global-tab click conflict with contextmenu - by @soybeanjs [(3e72c)](https://github.com/soybeanjs/soybean-admin/commit/3e72c3b) + +### ๐ Refactors + +- **packages**: @sa/materials: remove tab close shortcut by mouse - by @soybeanjs [(4da58)](https://github.com/soybeanjs/soybean-admin/commit/4da588c) + +### ๐ก Chore + +- **deps**: update deps - by @soybeanjs [(baefd)](https://github.com/soybeanjs/soybean-admin/commit/baefdfd) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v1.3.6](https://github.com/soybeanjs/soybean-admin/compare/v1.3.5...v1.3.6) (2024-09-20) + +### ๐ Bug Fixes + +- **components**: + - fix VerticalMixMenu name - by @soybeanjs [(20f8e)](https://github.com/soybeanjs/soybean-admin/commit/20f8ed3) +- **projects**: + - fix click global-tab in iPad. fixed #624 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/624 [(04d05)](https://github.com/soybeanjs/soybean-admin/commit/04d0564) + - when the roles filter submenu is empty, the parent menu is not excluded. fixed #621. - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/626 and https://github.com/soybeanjs/soybean-admin/issues/621 [(0ac95)](https://github.com/soybeanjs/soybean-admin/commit/0ac95bd) + +### ๐ Optimizations + +- **projects**: + - optimize code - by @soybeanjs [(6561f)](https://github.com/soybeanjs/soybean-admin/commit/6561f0b) + - optimize code - by @soybeanjs [(38eeb)](https://github.com/soybeanjs/soybean-admin/commit/38eeb67) + - remove defineModel setting๏ผenabled by default - by @yanbowe in https://github.com/soybeanjs/soybean-admin/issues/620 [(60bbd)](https://github.com/soybeanjs/soybean-admin/commit/60bbd2d) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @soybeanjs [(5baf1)](https://github.com/soybeanjs/soybean-admin/commit/5baf19d) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(207d6)](https://github.com/soybeanjs/soybean-admin/commit/207d6eb) + - update deps - by @soybeanjs [(f3562)](https://github.com/soybeanjs/soybean-admin/commit/f35627e) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) [](https://github.com/yanbowe) + +## [v1.3.5](https://github.com/soybeanjs/soybean-admin/compare/v1.3.4...v1.3.5) (2024-09-07) + +### ๐ Features + +- **packages**: + - @sa/axios: add response to flatRequest when success - by @soybeanjs [(c4e16)](https://github.com/soybeanjs/soybean-admin/commit/c4e1610) +- **projects**: + - README.zh_CN.md ๆทปๅ ๅไฝๆจๅนฟ - by @PZ-18664918826 in https://github.com/soybeanjs/soybean-admin/issues/601 [(2fa40)](https://github.com/soybeanjs/soybean-admin/commit/2fa400b) + - Add more commit types according to Apache specifications - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/610 [(878d9)](https://github.com/soybeanjs/soybean-admin/commit/878d9c3) + - does the configuration support automatic updates. close#612 - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/617 and https://github.com/soybeanjs/soybean-admin/issues/612 [(4c9f4)](https://github.com/soybeanjs/soybean-admin/commit/4c9f4e0) + - add app error handler. close #587 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/587 [(be855)](https://github.com/soybeanjs/soybean-admin/commit/be8556c) + +### ๐ Bug Fixes + +- **deps**: + - move json5 from devDependencies to dependencies to support production usage - by @mufeng889 in https://github.com/soybeanjs/soybean-admin/issues/618 [(7cb43)](https://github.com/soybeanjs/soybean-admin/commit/7cb43fc) +- **projects**: + - avoid retrieving cached HTML - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/605 [(ef6cf)](https://github.com/soybeanjs/soybean-admin/commit/ef6cf93) + - fix login redirect - by @soybeanjs [(3830e)](https://github.com/soybeanjs/soybean-admin/commit/3830ec7) + - fix vertical-mix-menu when sider collapse. fixed #608 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/608 [(c3f1f)](https://github.com/soybeanjs/soybean-admin/commit/c3f1f69) + - fix breadcrumb when activeMenu is parent menu. fixed #589 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/589 [(79b2a)](https://github.com/soybeanjs/soybean-admin/commit/79b2a28) + - fix refresh token when meet multi requests. fixed #581 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/581 [(27b52)](https://github.com/soybeanjs/soybean-admin/commit/27b5222) +- **types**: + - fix the type of TableApiFn - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/599 [(26c93)](https://github.com/soybeanjs/soybean-admin/commit/26c93df) + +### ๐ Optimizations + +- **projects**: optimize menu selectedKey - by @soybeanjs [(531bf)](https://github.com/soybeanjs/soybean-admin/commit/531bfaf) + +### ๐ Documentation + +- **projects**: + - update README - by @mufeng889 in https://github.com/soybeanjs/soybean-admin/issues/594 [(a8f92)](https://github.com/soybeanjs/soybean-admin/commit/a8f923e) + - update README - by @soybeanjs [(e9a2e)](https://github.com/soybeanjs/soybean-admin/commit/e9a2ee4) + - update README - by @soybeanjs [(73e91)](https://github.com/soybeanjs/soybean-admin/commit/73e917a) + - update the location of important information in the document - by **Azir** [(9c012)](https://github.com/soybeanjs/soybean-admin/commit/9c012c7) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(a1c14)](https://github.com/soybeanjs/soybean-admin/commit/a1c14a1) + - update deps - by @soybeanjs [(7fa55)](https://github.com/soybeanjs/soybean-admin/commit/7fa5590) + - update deps - by @soybeanjs [(a44ea)](https://github.com/soybeanjs/soybean-admin/commit/a44ea62) +- **projects**: + - use json5 resolve env `VITE_OTHER_SERVICE_BASE_URL` & fix proxy enable - by @soybeanjs [(b16a9)](https://github.com/soybeanjs/soybean-admin/commit/b16a963) + +### ๐จ Styles + +- **projects**: rename script czh to commit:zh - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/597 [(5094f)](https://github.com/soybeanjs/soybean-admin/commit/5094f0e) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/mufeng889) [](https://github.com/Azir-11) [](https://github.com/PZ-18664918826) +[Azir](mailto:2075125282@qq.com), + +## [v1.3.4](https://github.com/honghuangdc/soybean-admin/compare/v1.3.3...v1.3.4) (2024-08-01) + +### ๐จ Breaking Changes + +- **projects**: don't reset active menu of vertical-mix layout when it is mixSiderFixed - by @honghuangdc [(939c5)](https://github.com/honghuangdc/soybean-admin/commit/939c512) + +### ๐ Optimizations + +- **projects**: optimize code - by @honghuangdc [(cb1d4)](https://github.com/honghuangdc/soybean-admin/commit/cb1d445) + +### ๐ก Chore + +- **projects**: update deps & fix vue-router type - by @honghuangdc [(96837)](https://github.com/honghuangdc/soybean-admin/commit/968370b) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.3.3](https://github.com/honghuangdc/soybean-admin/compare/v1.3.2...v1.3.3) (2024-07-30) + +### ๐ Bug Fixes + +- **projects**: fix watermark settings - by @honghuangdc [(5646a)](https://github.com/honghuangdc/soybean-admin/commit/5646a50) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @honghuangdc [(ebc83)](https://github.com/honghuangdc/soybean-admin/commit/ebc838c) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.3.2](https://github.com/honghuangdc/soybean-admin/compare/v1.3.1...v1.3.2) (2024-07-30) + +### ๐ Features + +- **projects**: + - add color fading mode.close #567 - by @Azir-11 in https://github.com/honghuangdc/soybean-admin/issues/569 and https://github.com/honghuangdc/soybean-admin/issues/567 [(4dde4)](https://github.com/honghuangdc/soybean-admin/commit/4dde4c2) + - add full screen watermark. close#571 - by @paynezhuang in https://github.com/honghuangdc/soybean-admin/issues/573 and https://github.com/honghuangdc/soybean-admin/issues/571 [(ea8aa)](https://github.com/honghuangdc/soybean-admin/commit/ea8aa6c) + +### ๐ Bug Fixes + +- **projects**: fix vertical-mix menu selected - by @honghuangdc [(59f07)](https://github.com/honghuangdc/soybean-admin/commit/59f07d8) + +### ๐ Optimizations + +- **projects**: + - add type WatermarkProps - by @honghuangdc [(f26d0)](https://github.com/honghuangdc/soybean-admin/commit/f26d0a6) + - remove home NAlert closable - by @honghuangdc [(98b75)](https://github.com/honghuangdc/soybean-admin/commit/98b75c2) + - optimize response code comparison - by @honghuangdc [(cf67d)](https://github.com/honghuangdc/soybean-admin/commit/cf67d55) +- **types**: + - remove useless types. - by **Azir** [(eed61)](https://github.com/honghuangdc/soybean-admin/commit/eed617f) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @honghuangdc [(d3759)](https://github.com/honghuangdc/soybean-admin/commit/d37591d) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(993e9)](https://github.com/honghuangdc/soybean-admin/commit/993e9ca) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/paynezhuang) [](https://github.com/Azir-11) +[Azir](mailto:2075125282@qq.com), + +## [v1.3.1](https://github.com/honghuangdc/soybean-admin/compare/v1.3.0...v1.3.1) (2024-07-22) + +### ๐ Bug Fixes + +- **projects**: + - fix the issue of abnormal width of the sidebar in the top menu mix and reverse mode - by @Azir-11 in https://github.com/honghuangdc/soybean-admin/issues/562 [(c4695)](https://github.com/honghuangdc/soybean-admin/commit/c469512) + - fix HorizontalMixMenu inverted. fixed #563 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/563 [(4e55b)](https://github.com/honghuangdc/soybean-admin/commit/4e55b0e) + - fix vertical-menu will not render when the layout is from mobile - by @honghuangdc [(84027)](https://github.com/honghuangdc/soybean-admin/commit/8402734) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @honghuangdc [(613c8)](https://github.com/honghuangdc/soybean-admin/commit/613c836) + +### ๐จ Styles + +- **other**: modify the Chinese name of the grayscale mode - by **Azir** [(53770)](https://github.com/honghuangdc/soybean-admin/commit/5377002) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/Azir-11) +[Azir](mailto:2075125282@qq.com), + +## [v1.3.0](https://github.com/soybeanjs/soybean-admin/compare/v1.2.8...v1.3.0) (2024-07-22) + +### ๐จ Breaking Changes + +- **projects**: refactor global menu & support `reversed-horizontal-mix-menu`. close #365 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/365 [(087e5)](https://github.com/soybeanjs/soybean-admin/commit/087e532) + +### ๐ Features + +- **packages**: + - `@sa/scripts`: command `gitCommit` support chinese - by @mmdapl in https://github.com/soybeanjs/soybean-admin/issues/548 [(06971)](https://github.com/soybeanjs/soybean-admin/commit/06971f3) + - @sa/axios: replace CancelTokenSource by AbortController. close #530, close #532 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/530 and https://github.com/soybeanjs/soybean-admin/issues/532 [(527fd)](https://github.com/soybeanjs/soybean-admin/commit/527fd79) + - @sa/scripts: add ignore pattern list for command `gitCommitVerify`. close #504 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/504 [(958d0)](https://github.com/soybeanjs/soybean-admin/commit/958d0ba) +- **projects**: + - make branch `main` tiny & modify request retry times to 0 - by @Azir-11 [(793b1)](https://github.com/soybeanjs/soybean-admin/commit/793b16e) + +### ๐ Bug Fixes + +- **hooks**: prevent program freezing when pagesize returns 0 - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/545 [(f4eeb)](https://github.com/soybeanjs/soybean-admin/commit/f4eeb2e) + +### ๐ Refactors + +- **projects**: + - combine `theme tokens` and `theme settings`. close #379 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/379 [(1d1b1)](https://github.com/soybeanjs/soybean-admin/commit/1d1b148) + - change css vars mount to root - by @honghuangdc [(00f41)](https://github.com/soybeanjs/soybean-admin/commit/00f41dd) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @honghuangdc [(a0b76)](https://github.com/soybeanjs/soybean-admin/commit/a0b76da) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(f6bd6)](https://github.com/soybeanjs/soybean-admin/commit/f6bd6b8) +- **projects**: add script `czh` - by @honghuangdc [(02069)](https://github.com/soybeanjs/soybean-admin/commit/0206969) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/mmdapl) [](https://github.com/Azir-11) + +## [v1.2.8](https://github.com/soybeanjs/soybean-admin/compare/v1.2.7...v1.2.8) (2024-07-20) + +### ๐ Bug Fixes + +- **packages**: + - @sa/hooks: fix searchParams of useHookTable. fixed #552 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/552 [(96c10)](https://github.com/soybeanjs/soybean-admin/commit/96c1044) +- **types**: + - Fixed the reference type error - by **dodu2014** in https://github.com/soybeanjs/soybean-admin/issues/551 [(3e2a9)](https://github.com/soybeanjs/soybean-admin/commit/3e2a993) + - fix data type of useHookTable - by @honghuangdc [(276ea)](https://github.com/soybeanjs/soybean-admin/commit/276ea7f) + +### ๐ Refactors + +- **projects**: replace `cloneDeep` of `lodash-es` with `klona` - by @honghuangdc [(a9133)](https://github.com/soybeanjs/soybean-admin/commit/a91335d) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @honghuangdc [(58fc0)](https://github.com/soybeanjs/soybean-admin/commit/58fc096) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(cf019)](https://github.com/soybeanjs/soybean-admin/commit/cf0192a) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[dodu2014](mailto:dodu@live.cn) + +## [v1.2.7](https://github.com/honghuangdc/soybean-admin/compare/v1.2.6...v1.2.7) (2024-07-12) + +### ๐ Optimizations + +- **projects**: supports custom menu icon sizes - by @wynn-w in https://github.com/honghuangdc/soybean-admin/issues/534 [(e035e)](https://github.com/honghuangdc/soybean-admin/commit/e035eab) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(72ede)](https://github.com/honghuangdc/soybean-admin/commit/72ede8b) + - update deps - by @honghuangdc [(be13c)](https://github.com/honghuangdc/soybean-admin/commit/be13ca2) + - update deps - by @honghuangdc [(752ec)](https://github.com/honghuangdc/soybean-admin/commit/752ec1e) +- **projects**: + - Fix deprecated configuration config - by @paynezhuang in https://github.com/honghuangdc/soybean-admin/issues/524 [(0d20e)](https://github.com/honghuangdc/soybean-admin/commit/0d20e4c) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/wynn-w) [](https://github.com/paynezhuang) + +## [v1.2.6](https://github.com/honghuangdc/soybean-admin/compare/v1.2.5...v1.2.6) (2024-06-21) + +### ๐ Bug Fixes + +- **projects**: + - request modal title use i18n. fixed #507 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/507 [(f7de3)](https://github.com/honghuangdc/soybean-admin/commit/f7de3fd) + - add `getDataByPage` for `useTable`. fixed #499 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/499 [(425c6)](https://github.com/honghuangdc/soybean-admin/commit/425c69a) + - fix login redirect to routeHome when routeHome of dynamic route is not same as static route. fixed #511 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/511 [(49f60)](https://github.com/honghuangdc/soybean-admin/commit/49f60b2) + +### ๐ Optimizations + +- **projects**: optimize `getRouteQueryOfLoginRoute` - by @honghuangdc [(693f7)](https://github.com/honghuangdc/soybean-admin/commit/693f704) + +### ๐ Documentation + +- **projects**: + - update CHANGELOG - by @honghuangdc [(5c67d)](https://github.com/honghuangdc/soybean-admin/commit/5c67d06) + - update README - by @honghuangdc [(1e67a)](https://github.com/honghuangdc/soybean-admin/commit/1e67ae8) + +### ๐ก Chore + +- **deps**: + - update deps. close #510 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/510 [(53143)](https://github.com/honghuangdc/soybean-admin/commit/531432d) + - update deps - by @honghuangdc [(c7f6f)](https://github.com/honghuangdc/soybean-admin/commit/c7f6f2a) + +### ๐ค CI + +- **projects**: + - add github issues template - by @honghuangdc [(b5027)](https://github.com/honghuangdc/soybean-admin/commit/b5027c8) + - update github issues template - by @honghuangdc [(ff1d5)](https://github.com/honghuangdc/soybean-admin/commit/ff1d504) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.2.5](https://github.com/soybeanjs/soybean-admin/compare/v1.2.4...v1.2.5) (2024-06-15) + +### ๐ Bug Fixes + +- **projects**: Fix the issue of abnormal tab caching after logout. fixed #495 - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/495 [(3eeac)](https://github.com/soybeanjs/soybean-admin/commit/3eeace9) + +### ๐ฅ Performance + +- **project**: Initializing the static routing function does not require asynchronization - by **CHENZL** in https://github.com/soybeanjs/soybean-admin/issues/493 [(2198b)](https://github.com/soybeanjs/soybean-admin/commit/2198b98) + +### ๐ Optimizations + +- **projects**: optimize code - by @soybeanjs [(b94ba)](https://github.com/soybeanjs/soybean-admin/commit/b94baa1) +- **types**: Enhance compatibility of global types - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/494 [(cd9d5)](https://github.com/soybeanjs/soybean-admin/commit/cd9d58d) +- **utils**: Reduce code indentation and improve readability - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/496 [(ad2f2)](https://github.com/soybeanjs/soybean-admin/commit/ad2f247) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @soybeanjs [(b3368)](https://github.com/soybeanjs/soybean-admin/commit/b336841) + +### ๐ก Chore + +- **deps**: update deps - by @soybeanjs [(b094d)](https://github.com/soybeanjs/soybean-admin/commit/b094d68) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) +[CHENZL](mailto:zlong5568863@qq.com) + +## [v1.2.4](https://github.com/soybeanjs/soybean-admin/compare/v1.2.3...v1.2.4) (2024-06-14) + +### ๐ Optimizations + +- **projects**: + - optimize `setupAppVersionNotification` - by @soybeanjs [(b5a72)](https://github.com/soybeanjs/soybean-admin/commit/b5a723c) + - get buildTime with timezone 'Asia/Shanghai' - by @soybeanjs [(069fa)](https://github.com/soybeanjs/soybean-admin/commit/069fa8a) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v1.2.3](https://github.com/soybeanjs/soybean-admin/compare/v1.2.2...v1.2.3) (2024-06-13) + +### ๐ Bug Fixes + +- **projects**: + - fix mobile browser theme issue by adding color-scheme meta tag to index.html - by @KickCashew in https://github.com/soybeanjs/soybean-admin/issues/488 [(c2125)](https://github.com/soybeanjs/soybean-admin/commit/c212565) + - Fix secondary directory components is empty - by @paynezhuang in https://github.com/soybeanjs/soybean-admin/issues/491 [(aabb2)](https://github.com/soybeanjs/soybean-admin/commit/aabb2a4) + +### ๐ Documentation + +- **projects**: + - Fixed the hyperlink pointing error - by **Azir** [(20a81)](https://github.com/soybeanjs/soybean-admin/commit/20a8127) + - update README - by @soybeanjs [(70261)](https://github.com/soybeanjs/soybean-admin/commit/7026126) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(813d8)](https://github.com/soybeanjs/soybean-admin/commit/813d8ce) + - update deps - by @soybeanjs [(bf718)](https://github.com/soybeanjs/soybean-admin/commit/bf71837) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/paynezhuang) [](https://github.com/KickCashew) +[Azir](mailto:2075125282@qq.com) + +## [v1.2.2](https://github.com/honghuangdc/soybean-admin/compare/v1.2.1...v1.2.2) (2024-06-12) + +### ๐ Features + +- **projects**: reset scroll position when tab change - by @soybeanjs [(9094b)](https://github.com/honghuangdc/soybean-admin/commit/9094b21) + +### ๐ Bug Fixes + +- **projects**: + - hide AppVersionNotification in DEV mode - by @sigma-plus in https://github.com/honghuangdc/soybean-admin/issues/482 [(62592)](https://github.com/honghuangdc/soybean-admin/commit/6259287) + - fix menu-toggler hidden in mobile layout. fixed #483 - by @soybeanjs in https://github.com/honghuangdc/soybean-admin/issues/483 [(4470c)](https://github.com/honghuangdc/soybean-admin/commit/4470cb4) + +### ๐ Documentation + +- **projects**: update README - by @soybeanjs [(8f9a7)](https://github.com/honghuangdc/soybean-admin/commit/8f9a705) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/sigma-plus) + +## [v1.2.1](https://github.com/honghuangdc/soybean-admin/compare/v1.2.0...v1.2.1) (2024-06-07) + +### ๐ Bug Fixes + +- **projects**: + - fix get user info when page reload - by @soybeanjs [(ff51b)](https://github.com/honghuangdc/soybean-admin/commit/ff51b72) + - fix setupAppVersionNotification render - by @soybeanjs [(6a6eb)](https://github.com/honghuangdc/soybean-admin/commit/6a6eb9a) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @soybeanjs [(fe06b)](https://github.com/honghuangdc/soybean-admin/commit/fe06b8c) + +### ๐ก Chore + +- **deps**: update deps - by @soybeanjs [(08827)](https://github.com/honghuangdc/soybean-admin/commit/08827a4) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v1.2.0](https://github.com/soybeanjs/soybean-admin/compare/v1.1.5...v1.2.0) (2024-06-06) + +### ๐ Features + +- **projects**: + - support system new version update notification. close #420 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/420 [(584cd)](https://github.com/soybeanjs/soybean-admin/commit/584cd54) + - get user info in router guard and remove in localStorage. close #459 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/459 [(5531a)](https://github.com/soybeanjs/soybean-admin/commit/5531a68) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @soybeanjs [(2bec8)](https://github.com/soybeanjs/soybean-admin/commit/2bec899) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v1.1.5](https://github.com/soybeanjs/soybean-admin/compare/v1.1.4...v1.1.5) (2024-06-06) + +### ๐ Bug Fixes + +- **projects**: fix register name, CodeLogin => Register - by @m-xlsea in https://github.com/soybeanjs/soybean-admin/issues/478 [(ddf38)](https://github.com/soybeanjs/soybean-admin/commit/ddf3823) + +### ๐ก Chore + +- **deps**: update deps - by @soybeanjs [(060c0)](https://github.com/soybeanjs/soybean-admin/commit/060c0a9) +- **projects**: update vscode settings: vue official - by @soybeanjs [(76649)](https://github.com/soybeanjs/soybean-admin/commit/76649e2) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/m-xlsea) + +## [v1.1.4](https://github.com/honghuangdc/soybean-admin/compare/v1.1.3...v1.1.4) (2024-06-06) + +### ๐ Bug Fixes + +- **utils**: modalLogout bug when esc is pressed - by @sigma-plus in https://github.com/honghuangdc/soybean-admin/issues/470 [(bd69c)](https://github.com/honghuangdc/soybean-admin/commit/bd69c00) + +### ๐ Optimizations + +- **projects**: optimize RouteMeta remarks - by @soybeanjs [(ffb48)](https://github.com/honghuangdc/soybean-admin/commit/ffb48b1) + +### ๐ Documentation + +- **projects**: + - update CHANGELOG - by @soybeanjs [(756f8)](https://github.com/honghuangdc/soybean-admin/commit/756f84a) + - update Node&pnpm version - by @Azir-11 in https://github.com/honghuangdc/soybean-admin/issues/472 [(9b05d)](https://github.com/honghuangdc/soybean-admin/commit/9b05d73) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(d0380)](https://github.com/honghuangdc/soybean-admin/commit/d0380ce) + - update deps - by @soybeanjs [(1f464)](https://github.com/honghuangdc/soybean-admin/commit/1f4647b) +- **projects**: + - close http proxy - by @soybeanjs [(d08a3)](https://github.com/honghuangdc/soybean-admin/commit/d08a381) + - update mock url - by @soybeanjs [(e6086)](https://github.com/honghuangdc/soybean-admin/commit/e6086f0) + - update vscode settings - by @soybeanjs [(910df)](https://github.com/honghuangdc/soybean-admin/commit/910dfca) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) [](https://github.com/sigma-plus) + +## [v1.1.3](https://github.com/soybeanjs/soybean-admin/compare/v1.1.2...v1.1.3) (2024-06-02) + +### ๐ Bug Fixes + +- **components**: + - Fix the issue of search box popping up repeatedly due to carriage return - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/468 [(5bd96)](https://github.com/soybeanjs/soybean-admin/commit/5bd96b8) +- **projects**: + - fix click menu search. fixed #466, close #467 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/466 and https://github.com/soybeanjs/soybean-admin/issues/467 [(8efdb)](https://github.com/soybeanjs/soybean-admin/commit/8efdb10) + - fix reCacheRoute. fixed #464 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/464 [(59faf)](https://github.com/soybeanjs/soybean-admin/commit/59faf15) +- **styles**: + - fix FirstLevelMenu style. fixed #450 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/450 [(db64b)](https://github.com/soybeanjs/soybean-admin/commit/db64b0e) + - fix PinToggler style. fixed #451 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/451 [(42b12)](https://github.com/soybeanjs/soybean-admin/commit/42b121a) + +### ๐ Optimizations + +- **components**: accuracy draggable area for TableColumnSetting with animation - by @orangelckc in https://github.com/soybeanjs/soybean-admin/issues/465 [(2aa85)](https://github.com/soybeanjs/soybean-admin/commit/2aa85c6) +- **projects**: unocss border shortcut - by @soybeanjs [(40d0f)](https://github.com/soybeanjs/soybean-admin/commit/40d0f8a) + +### ๐ Documentation + +- **projects**: update CHANGELOG - by @soybeanjs [(87b18)](https://github.com/soybeanjs/soybean-admin/commit/87b1838) + +### ๐ก Chore + +- **other**: + - correct spell mistake - by @orangelckc in https://github.com/soybeanjs/soybean-admin/issues/460 [(086ba)](https://github.com/soybeanjs/soybean-admin/commit/086bad4) + - correct spell mistake - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/462 [(f1850)](https://github.com/soybeanjs/soybean-admin/commit/f185041) +- **projects**: + - update vscode launch.json - by @soybeanjs [(4c1c7)](https://github.com/soybeanjs/soybean-admin/commit/4c1c7e6) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) [](https://github.com/orangelckc) + +## [v1.1.2](https://github.com/soybeanjs/soybean-admin/compare/v1.1.1...v1.1.2) (2024-05-24) + +### ๐ Bug Fixes + +- **projects**: + - fix header style & fix button highlight when click global-tab. fixed #446 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/446 [(64fc0)](https://github.com/soybeanjs/soybean-admin/commit/64fc099) + - fix multi tab page only render once. fixed #441 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/441 [(e379d)](https://github.com/soybeanjs/soybean-admin/commit/e379d6c) + +### ๐ Optimizations + +- **projects**: optimize code - by @honghuangdc [(bc8dc)](https://github.com/soybeanjs/soybean-admin/commit/bc8dc47) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.1.1](https://github.com/soybeanjs/soybean-admin/compare/v1.1.0...v1.1.1) (2024-05-20) + +### ๐ Features + +- **hooks**: add setOptions for useEcharts - by @honghuangdc [(e4d53)](https://github.com/soybeanjs/soybean-admin/commit/e4d53aa) + +### ๐ Bug Fixes + +- **projects**: + - fix useRouter. fixed #436 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/436 [(0774a)](https://github.com/soybeanjs/soybean-admin/commit/0774a51) + - add error handle when get routes in dynamic route mode. fixed 440 - by @honghuangdc [(57b4a)](https://github.com/soybeanjs/soybean-admin/commit/57b4a9d) +- **styles**: + - fix useTable type - by @honghuangdc [(07124)](https://github.com/soybeanjs/soybean-admin/commit/071241f) + +### ๐ Documentation + +- **projects**: + - update CHANGELOG - by @honghuangdc [(19783)](https://github.com/soybeanjs/soybean-admin/commit/1978397) + - update README.md - by @honghuangdc [(fa56e)](https://github.com/soybeanjs/soybean-admin/commit/fa56e9c) + - update README.md - by @honghuangdc [(419ea)](https://github.com/soybeanjs/soybean-admin/commit/419ea42) + +### ๐ก Chore + +- **projects**: + - update deps & fix TS error - by @honghuangdc [(4ea9c)](https://github.com/soybeanjs/soybean-admin/commit/4ea9c85) + - update eslint-config & fix code - by @honghuangdc [(68ea9)](https://github.com/soybeanjs/soybean-admin/commit/68ea974) + - update @elegant-router/vue & add error handle for resolve route. fixed #442 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/442 [(24ff8)](https://github.com/soybeanjs/soybean-admin/commit/24ff852) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.1.0](https://github.com/honghuangdc/soybean-admin/compare/v1.0.9...v1.1.0) (2024-05-07) + +### ๐ Features + +- **projects**: + - support grayscale. fixed #385 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/385 [(d335d)](https://github.com/honghuangdc/soybean-admin/commit/d335df6) + - Add prefix to local storage - by **Azir** [(1fc34)](https://github.com/honghuangdc/soybean-admin/commit/1fc34cc) + - add table showTotal options - by **paynezhuang** [(3e61e)](https://github.com/honghuangdc/soybean-admin/commit/3e61eab) + - add recommend color switch. closed #388 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/388 [(a1920)](https://github.com/honghuangdc/soybean-admin/commit/a1920fc) + - add menu route field - by **paynezhuang** [(dbe31)](https://github.com/honghuangdc/soybean-admin/commit/dbe31eb) + - support repeated request errors occur once in a short time. close #368, close #369 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/368 and https://github.com/honghuangdc/soybean-admin/issues/369 [(e3bd3)](https://github.com/honghuangdc/soybean-admin/commit/e3bd397) + - close tab by mouse wheel button click - by **JianJroh** [(d3849)](https://github.com/honghuangdc/soybean-admin/commit/d3849ba) + - page: support manage_menu more options. close #366 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/366 [(c4b5c)](https://github.com/honghuangdc/soybean-admin/commit/c4b5c65) + - useTable adds expand to display - by **paynezhuang** [(0a90d)](https://github.com/honghuangdc/soybean-admin/commit/0a90dd3) + +### ๐ Bug Fixes + +- **projects**: + - menu fixedIndexInTab default null - by **paynezhuang** [(3d10e)](https://github.com/honghuangdc/soybean-admin/commit/3d10ef1) + - fix menu-toggler zIndex - by @honghuangdc [(7bd43)](https://github.com/honghuangdc/soybean-admin/commit/7bd43df) + - fix manage_menu modal style - by @honghuangdc [(60f3b)](https://github.com/honghuangdc/soybean-admin/commit/60f3b14) + - fix menu data when role is changed. fixed #391 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/391 [(3b47b)](https://github.com/honghuangdc/soybean-admin/commit/3b47b5a) + +### ๐ Optimizations + +- **projects**: remove deprecated code - by @honghuangdc [(72ccb)](https://github.com/honghuangdc/soybean-admin/commit/72ccb6b) + +### ๐ Refactors + +- **projects**: + - refactor @sa/color-palette => @sa/color & perf @sa/utils - by @honghuangdc [(34999)](https://github.com/honghuangdc/soybean-admin/commit/3499997) + - menu-operate-drawer => menu-operate-modal - by @honghuangdc [(003e1)](https://github.com/honghuangdc/soybean-admin/commit/003e145) + +### ๐ Documentation + +- **projects**: + - add CHANGELOG.zh_CN.md - by @honghuangdc [(18b3f)](https://github.com/honghuangdc/soybean-admin/commit/18b3f05) + - update CHANGELOG - by @honghuangdc [(4d17c)](https://github.com/honghuangdc/soybean-admin/commit/4d17cfd) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(1cb38)](https://github.com/honghuangdc/soybean-admin/commit/1cb3816) + - update deps - by @honghuangdc [(599b4)](https://github.com/honghuangdc/soybean-admin/commit/599b4e1) +- **projects**: + - merge main to v1.1.0 - by @honghuangdc [(ebe55)](https://github.com/honghuangdc/soybean-admin/commit/ebe55af) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com), [JianJroh](mailto:rhjian@foxmail.com), [Azir](mailto:2075125282@qq.com) + +## [v1.1.0-beta.2](https://github.com/honghuangdc/soybean-admin/compare/v1.1.0-beta.1...v1.1.0-beta.2) (2024-05-07) + +### ๐ Features + +- **projects**: useTable adds expand to display - by **paynezhuang** [(0a90d)](https://github.com/honghuangdc/soybean-admin/commit/0a90dd3) + +### ๐ Bug Fixes + +- **projects**: + - fix manage_menu modal style - by @honghuangdc [(60f3b)](https://github.com/honghuangdc/soybean-admin/commit/60f3b14) + - fix menu data when role is changed. fixed #391 - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/391 [(3b47b)](https://github.com/honghuangdc/soybean-admin/commit/3b47b5a) + +### ๐ Optimizations + +- **projects**: remove deprecated code - by @honghuangdc [(72ccb)](https://github.com/honghuangdc/soybean-admin/commit/72ccb6b) + +### ๐ Documentation + +- **projects**: add CHANGELOG.zh_CN.md - by @honghuangdc [(18b3f)](https://github.com/honghuangdc/soybean-admin/commit/18b3f05) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com) + +## [v1.1.0-beta.1](https://github.com/soybeanjs/soybean-admin/compare/v1.0.9...v1.1.0-beta.1) (2024-05-07) + +### ๐ Features + +- **projects**: + - support grayscale. fixed #385 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/385 [(d335d)](https://github.com/soybeanjs/soybean-admin/commit/d335df6) + - Add prefix to local storage - by **Azir** [(1fc34)](https://github.com/soybeanjs/soybean-admin/commit/1fc34cc) + - add table showTotal options - by **paynezhuang** [(3e61e)](https://github.com/soybeanjs/soybean-admin/commit/3e61eab) + - add recommend color switch. closed #388 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/388 [(a1920)](https://github.com/soybeanjs/soybean-admin/commit/a1920fc) + - add menu route field - by **paynezhuang** [(dbe31)](https://github.com/soybeanjs/soybean-admin/commit/dbe31eb) + - support repeated request errors occur once in a short time. close #368, close #369 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/368 and https://github.com/soybeanjs/soybean-admin/issues/369 [(e3bd3)](https://github.com/soybeanjs/soybean-admin/commit/e3bd397) + - close tab by mouse wheel button click - by **JianJroh** [(d3849)](https://github.com/soybeanjs/soybean-admin/commit/d3849ba) + - page: support manage_menu more options. close #366 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/366 [(c4b5c)](https://github.com/soybeanjs/soybean-admin/commit/c4b5c65) + +### ๐ Bug Fixes + +- **projects**: + - menu fixedIndexInTab default null - by **paynezhuang** [(3d10e)](https://github.com/soybeanjs/soybean-admin/commit/3d10ef1) + - fix menu-toggler zIndex - by @honghuangdc [(7bd43)](https://github.com/soybeanjs/soybean-admin/commit/7bd43df) + +### ๐ Refactors + +- **projects**: + - refactor @sa/color-palette => @sa/color & perf @sa/utils - by @honghuangdc [(34999)](https://github.com/soybeanjs/soybean-admin/commit/3499997) + - menu-operate-drawer => menu-operate-modal - by @honghuangdc [(003e1)](https://github.com/soybeanjs/soybean-admin/commit/003e145) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(1cb38)](https://github.com/soybeanjs/soybean-admin/commit/1cb3816) + - update deps - by @honghuangdc [(599b4)](https://github.com/soybeanjs/soybean-admin/commit/599b4e1) +- **projects**: + - merge main to v1.1.0 - by @honghuangdc [(ebe55)](https://github.com/soybeanjs/soybean-admin/commit/ebe55af) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[JianJroh](mailto:rhjian@foxmail.com), [paynezhuang](mailto:paynezhuang@gmail.com), [Azir](mailto:2075125282@qq.com) + +## [v1.0.9](https://github.com/soybeanjs/soybean-admin/compare/v1.0.8...v1.0.9) (2024-05-05) + +### ๐ Features + +- **packages**: @sa/scripts: add new commit type `optimize` and commit scope `packages` - by @honghuangdc [(fbc2e)](https://github.com/soybeanjs/soybean-admin/commit/fbc2e61) + +### ๐ Bug Fixes + +- **projects**: fix manage page drawer operate about data reset. fixed #415, fixed #417 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/415 and https://github.com/soybeanjs/soybean-admin/issues/417 [(f4513)](https://github.com/soybeanjs/soybean-admin/commit/f4513e1) + +### ๐ Documentation + +- **projects**: + - add ecosystem to README.md - by @honghuangdc [(d0f17)](https://github.com/soybeanjs/soybean-admin/commit/d0f17a4) + - add PanisAdmin to README - by **paynezhuang** [(ce2a7)](https://github.com/soybeanjs/soybean-admin/commit/ce2a75b) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(413a8)](https://github.com/soybeanjs/soybean-admin/commit/413a8b2) + - update deps - by @honghuangdc [(734ef)](https://github.com/soybeanjs/soybean-admin/commit/734ef98) +- **projects**: + - update .npmrc - by @honghuangdc [(52188)](https://github.com/soybeanjs/soybean-admin/commit/52188d8) + - update vscode settings - by @honghuangdc [(c137b)](https://github.com/soybeanjs/soybean-admin/commit/c137b97) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com) + +## [v1.0.8](https://github.com/soybeanjs/soybean-admin/compare/v1.0.7...v1.0.8) (2024-04-27) + +### ๐ Bug Fixes + +- **components**: + - fix PinToggler label. fixed #407 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/407 [(c0ed1)](https://github.com/soybeanjs/soybean-admin/commit/c0ed1f2) +- **projects**: + - text level low. #409 - by **alleycharming** in https://github.com/soybeanjs/soybean-admin/issues/409 [(3ddb1)](https://github.com/soybeanjs/soybean-admin/commit/3ddb17a) + - fix tab fixedIndex as null case - by **paynezhuang** [(4708e)](https://github.com/soybeanjs/soybean-admin/commit/4708ede) + - recovery the layout config before is mobile. fixed #408, fixed #361 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/408 and https://github.com/soybeanjs/soybean-admin/issues/361 [(dae2a)](https://github.com/soybeanjs/soybean-admin/commit/dae2aa5) + +### ๐ฅ Performance + +- **projects**: perf judgement the fixed tab - by @honghuangdc [(b3e9b)](https://github.com/soybeanjs/soybean-admin/commit/b3e9bba) + +### ๐ Refactors + +- **projects**: `Soybean Admin` to `SoybeanAdmin` - by @honghuangdc [(a8dbc)](https://github.com/soybeanjs/soybean-admin/commit/a8dbc03) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com), [alleycharming](mailto:alleycharming@gmail.com) + +## [v1.0.7](https://github.com/soybeanjs/soybean-admin/compare/v1.0.6...v1.0.7) (2024-04-25) + +### ๐ Features + +- **projects**: support iframe page with diffrent url of custom route - by @honghuangdc [(da12d)](https://github.com/soybeanjs/soybean-admin/commit/da12d4a) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(fbd80)](https://github.com/soybeanjs/soybean-admin/commit/fbd80c2) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.0.6](https://github.com/soybeanjs/soybean-admin/compare/v1.0.5...v1.0.6) (2024-04-25) + +### ๐ Features + +- **hooks**: add state hooks: useRef, useState, useSignal - by @honghuangdc [(09f64)](https://github.com/soybeanjs/soybean-admin/commit/09f6464) + +### ๐ Bug Fixes + +- **projects**: + - added responseType judgment. #396 - by **alleycharming** in https://github.com/soybeanjs/soybean-admin/issues/396 [(82eab)](https://github.com/soybeanjs/soybean-admin/commit/82eabab) + - supply $t import statement - by @honghuangdc [(b2660)](https://github.com/soybeanjs/soybean-admin/commit/b266035) + - fix mix-menu blank. fixed #389 & cache mixMenuFixed - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/389 [(93c7f)](https://github.com/soybeanjs/soybean-admin/commit/93c7ff7) + +### ๐ฅ Performance + +- **hooks**: + - perf useSignal - by @honghuangdc [(5d45c)](https://github.com/soybeanjs/soybean-admin/commit/5d45cef) +- **projects**: + - remove useless prop `title` of `NDrawer` - by @honghuangdc [(fdde6)](https://github.com/soybeanjs/soybean-admin/commit/fdde679) + - add tsconfig.json for @sa/color-palette - by @honghuangdc [(d460e)](https://github.com/soybeanjs/soybean-admin/commit/d460e5c) + +### ๐ Refactors + +- **hooks**: refactor useSignal, useComputed - by @honghuangdc [(3b5e4)](https://github.com/soybeanjs/soybean-admin/commit/3b5e4b3) +- **projects**: useMixMenuContext replace useMixMenu - by @honghuangdc [(1e142)](https://github.com/soybeanjs/soybean-admin/commit/1e14293) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(e57bf)](https://github.com/soybeanjs/soybean-admin/commit/e57bf0b) +- **projects**: + - use `engines` replace `packageManager` - by @honghuangdc [(dcd51)](https://github.com/soybeanjs/soybean-admin/commit/dcd51f4) + - update pnpm version requirement - by @honghuangdc [(19e65)](https://github.com/soybeanjs/soybean-admin/commit/19e65c1) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[alleycharming](mailto:alleycharming@gmail.com) + +## [v1.0.5](https://github.com/honghuangdc/soybean-admin/compare/v1.0.4...v1.0.5) (2024-04-24) + +### ๐ Documentation + +- **projects**: update CHANGELOG.md - by @honghuangdc [(cf5bc)](https://github.com/honghuangdc/soybean-admin/commit/cf5bc88) + +### ๐ก Chore + +- **projects**: + - lower vue version to 3.4.23 - by @honghuangdc [(b5243)](https://github.com/honghuangdc/soybean-admin/commit/b52432a) + - update pnpm-lock.yaml - by @honghuangdc [(516f4)](https://github.com/honghuangdc/soybean-admin/commit/516f46a) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.0.4](https://github.com/soybeanjs/soybean-admin/compare/v1.0.3...v1.0.4) (2024-04-24) + +### ๐ Bug Fixes + +- **projects**: + - fix CHANGELOG versions - by @honghuangdc [(d9af5)](https://github.com/soybeanjs/soybean-admin/commit/d9af5aa) + - fix disabled page animate - by @honghuangdc [(23f28)](https://github.com/soybeanjs/soybean-admin/commit/23f283a) + - fix routes data when role is change. fixed #391 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/391 [(cb83d)](https://github.com/soybeanjs/soybean-admin/commit/cb83d6d) + - fix tabs data when role is change. fixed #392 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/392 [(04aa0)](https://github.com/soybeanjs/soybean-admin/commit/04aa097) + - recovery pnpm-lock.yaml - by @honghuangdc [(c6952)](https://github.com/soybeanjs/soybean-admin/commit/c695208) + +### ๐ Refactors + +- **hooks**: refactor @sa/color - by @honghuangdc [(93191)](https://github.com/soybeanjs/soybean-admin/commit/9319173) + +### ๐ Documentation + +- **projects**: + - update README.md - by @honghuangdc [(5a523)](https://github.com/soybeanjs/soybean-admin/commit/5a5232b) + - update README.md - by @honghuangdc [(79d9c)](https://github.com/soybeanjs/soybean-admin/commit/79d9c51) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(ac928)](https://github.com/soybeanjs/soybean-admin/commit/ac92817) + - update deps - by @honghuangdc [(3ceeb)](https://github.com/soybeanjs/soybean-admin/commit/3ceeb6f) + - update deps - by @honghuangdc [(9a669)](https://github.com/soybeanjs/soybean-admin/commit/9a66979) +- **projects**: + - update pnpm version - by @honghuangdc [(42e16)](https://github.com/soybeanjs/soybean-admin/commit/42e16a0) + - update deps & update pnpm version & update eslint config - by @honghuangdc [(7392b)](https://github.com/soybeanjs/soybean-admin/commit/7392beb) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.0.3](https://github.com/soybeanjs/soybean-admin/compare/v1.0.2...v1.0.3) (2024-04-16) + +### ๐ Features + +- **hooks**: deleting the route export of useRoutePush, use vue-router - by **paynezhuang** [(c6648)](https://github.com/soybeanjs/soybean-admin/commit/c6648b6) + +### ๐ Bug Fixes + +- **projects**: + - fix menu edit rules - by **paynezhuang** [(00105)](https://github.com/soybeanjs/soybean-admin/commit/001059c) + - fix SvgIcon inheritAttrs warning - by @honghuangdc [(efc0e)](https://github.com/soybeanjs/soybean-admin/commit/efc0e25) + - fix axios createRequest: add default state - by @honghuangdc [(d6eda)](https://github.com/soybeanjs/soybean-admin/commit/d6eda8f) + - update union-key.d.ts - by @honghuangdc [(60bef)](https://github.com/soybeanjs/soybean-admin/commit/60beff7) + - fix update theme color - by @honghuangdc [(27c53)](https://github.com/soybeanjs/soybean-admin/commit/27c53cd) + +### ๐ฅ Performance + +- **projects**: perf code - by @honghuangdc [(b7f07)](https://github.com/soybeanjs/soybean-admin/commit/b7f0749) + +### ๐ Refactors + +- **projects**: update naive-ui.d.ts - by @honghuangdc [(bb74d)](https://github.com/soybeanjs/soybean-admin/commit/bb74d99) + +### ๐ Documentation + +- **projects**: update README.md - by @honghuangdc [(f4a9c)](https://github.com/soybeanjs/soybean-admin/commit/f4a9cf8) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com) + +## [v1.0.2](https://github.com/soybeanjs/soybean-admin/compare/v1.0.1...v1.0.2) (2024-04-08) + +### ๐ Bug Fixes + +- **projects**: unify border-radius of Tag. fixed #378 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/378 [(2f15a)](https://github.com/soybeanjs/soybean-admin/commit/2f15a2a) +- **styles**: fix css var is inserted repeatedly - by **็ๅๆ** [(769d8)](https://github.com/soybeanjs/soybean-admin/commit/769d84a) + +### ๐ Refactors + +- **projects**: refactor addThemeVarsToHtml - by @honghuangdc [(41e47)](https://github.com/soybeanjs/soybean-admin/commit/41e470e) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(a1b48)](https://github.com/soybeanjs/soybean-admin/commit/a1b484a) +- **projects**: disabled unocss eslint rule: order-attributify - by @honghuangdc [(1c72d)](https://github.com/soybeanjs/soybean-admin/commit/1c72dc7) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) +[็ๅๆ](mailto:349952469@qq.com) + +## [v1.0.1](https://github.com/soybeanjs/soybean-admin/compare/v1.0.0...v1.0.1) (2024-04-03) + +### ๐ Bug Fixes + +- **projects**: + - fix flatRequest error type. fixed #376 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/376 [(1ec5e)](https://github.com/soybeanjs/soybean-admin/commit/1ec5ea0) + - add maxWidth for GlobalTab to fix bg with gap. fixed #350 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/350 [(cc539)](https://github.com/soybeanjs/soybean-admin/commit/cc53997) + +### ๐ Documentation + +- **projects**: update README.md - by @honghuangdc [(76011)](https://github.com/soybeanjs/soybean-admin/commit/76011af) + +### ๐ก Chore + +- **projects**: + - update deps - by @honghuangdc [(4babb)](https://github.com/soybeanjs/soybean-admin/commit/4babbe1) + - update pnpm version - by @honghuangdc [(9125c)](https://github.com/soybeanjs/soybean-admin/commit/9125cc9) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.0.0](https://github.com/soybeanjs/soybean-admin/compare/v0.10.4...v1.0.0) (2024-03-31) + +### ๐ Features + +- internationalized menu search - by **Kori** [(9e115)](https://github.com/soybeanjs/soybean-admin/commit/9e115da) +- **components**: + - enhance the custom strength of the 'TableHeaderOperation' component - by **tnt group** [(fdf64)](https://github.com/soybeanjs/soybean-admin/commit/fdf64f7) + - add GlobalSearch components - by **็ๅๆ** [(9ea87)](https://github.com/soybeanjs/soybean-admin/commit/9ea8789) +- **hooks**: + - add use-echarts - by @honghuangdc [(726ab)](https://github.com/soybeanjs/soybean-admin/commit/726abe4) +- **projects**: + - 1.0 beta - by @honghuangdc [(e918a)](https://github.com/soybeanjs/soybean-admin/commit/e918a2c) + - support Vite5 - by @honghuangdc [(96e4a)](https://github.com/soybeanjs/soybean-admin/commit/96e4aff) + - @sa/axios: createRequest, createFlatRequest, createHookRequest - by @honghuangdc [(bac16)](https://github.com/soybeanjs/soybean-admin/commit/bac1632) + - add app loading - by @honghuangdc [(c6545)](https://github.com/soybeanjs/soybean-admin/commit/c65451b) + - add copyright, unocss shortcut: card-wrapper, update package.json - by @honghuangdc [(affcc)](https://github.com/soybeanjs/soybean-admin/commit/affcc26) + - add page: about - by @honghuangdc [(4955f)](https://github.com/soybeanjs/soybean-admin/commit/4955f1a) + - add custom route exception - by @honghuangdc [(b43c9)](https://github.com/soybeanjs/soybean-admin/commit/b43c925) + - filter tabs which are not in routes - by @honghuangdc [(f59f3)](https://github.com/soybeanjs/soybean-admin/commit/f59f348) + - packages/scripts: add command changelog,release - by @honghuangdc [(dafb6)](https://github.com/soybeanjs/soybean-admin/commit/dafb6fa) + - add script: gen-route - by @honghuangdc [(697c1)](https://github.com/soybeanjs/soybean-admin/commit/697c1b6) + - @sa/axios: add qs stringify for params - by @honghuangdc [(2400c)](https://github.com/soybeanjs/soybean-admin/commit/2400c02) + - page home & perf useEcharts - by @honghuangdc [(62e4d)](https://github.com/soybeanjs/soybean-admin/commit/62e4da0) + - finish page home - by @honghuangdc [(7bd1e)](https://github.com/soybeanjs/soybean-admin/commit/7bd1e47) + - add page function_tab - by @honghuangdc [(6ff86)](https://github.com/soybeanjs/soybean-admin/commit/6ff86e7) + - page manage_role - by @honghuangdc [(237c6)](https://github.com/soybeanjs/soybean-admin/commit/237c6d2) + - page manage_user - by @honghuangdc [(8a170)](https://github.com/soybeanjs/soybean-admin/commit/8a170ee) + - page manage_menu - by @honghuangdc [(87d65)](https://github.com/soybeanjs/soybean-admin/commit/87d65d3) + - page manage_menu operateDrawer - by @honghuangdc [(db17c)](https://github.com/soybeanjs/soybean-admin/commit/db17c91) + - Add type to TabRoute: matched - by @Azir-11 [(2d102)](https://github.com/soybeanjs/soybean-admin/commit/2d102a0) + - support directory menu hide all child menus. fixed #325 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/325 [(7256a)](https://github.com/soybeanjs/soybean-admin/commit/7256ad4) + - mock manage list data with pagination - by @honghuangdc [(1a6be)](https://github.com/soybeanjs/soybean-admin/commit/1a6be00) + - globalSearch add i18n - by **็ๅๆ** [(0126d)](https://github.com/soybeanjs/soybean-admin/commit/0126da4) + - Add route meta parameter:fixedQuery - by @Azir-11 [(874aa)](https://github.com/soybeanjs/soybean-admin/commit/874aaca) + - update - by @honghuangdc [(4158a)](https://github.com/soybeanjs/soybean-admin/commit/4158a72) + - change borderRadius to 6px of naiveUI - by @honghuangdc [(49558)](https://github.com/soybeanjs/soybean-admin/commit/49558ca) + - pef manage role - by @honghuangdc [(18709)](https://github.com/soybeanjs/soybean-admin/commit/1870981) + - login page: code-login - by @honghuangdc [(c91dd)](https://github.com/soybeanjs/soybean-admin/commit/c91dd28) + - login page: register - by @honghuangdc [(1ed33)](https://github.com/soybeanjs/soybean-admin/commit/1ed33dc) + - add request refresh token & logout - by @honghuangdc [(11a6a)](https://github.com/soybeanjs/soybean-admin/commit/11a6a3b) + - add request exception example page - by @honghuangdc [(41e8b)](https://github.com/soybeanjs/soybean-admin/commit/41e8bc4) + - add auth example - by @honghuangdc [(c11d5)](https://github.com/soybeanjs/soybean-admin/commit/c11d56d) +- **router**: + - add sortRoutesByOrder function - by @Azir-11 [(0cf09)](https://github.com/soybeanjs/soybean-admin/commit/0cf09ba) + +### ๐ Bug Fixes + +- **components**: + - fix tooltip zIndex of ButtonIcon - by @honghuangdc [(99097)](https://github.com/soybeanjs/soybean-admin/commit/99097b4) + - supplement the `NaiveUI` type - by **tnt group** [(ccc2b)](https://github.com/soybeanjs/soybean-admin/commit/ccc2b67) + - fix homeTab closeRight and disable colseLeft - by **~li** [(d28bf)](https://github.com/soybeanjs/soybean-admin/commit/d28bf52) +- **hooks**: + - Fix Naive Pagination's outdated API - by **tnt group** [(37436)](https://github.com/soybeanjs/soybean-admin/commit/3743612) +- **projects**: + - ไฟฎๅค่ทฏ็ฑๅฝๅไธบๅ ๅซๅ ณ็ณปๆถๅฏผ่ดๅฏผ่ชๆฐๆฎๅบ้็้ฎ้ข - by @Particaly [(76636)](https://github.com/soybeanjs/soybean-admin/commit/766369f) + - rename zh-ch - by @honghuangdc [(a8a77)](https://github.com/soybeanjs/soybean-admin/commit/a8a77ea) + - Fix welcome notification not closing - by @Azir-11 [(748cf)](https://github.com/soybeanjs/soybean-admin/commit/748cfa2) + - fix i18n vscode settings - by @honghuangdc [(fbf4c)](https://github.com/soybeanjs/soybean-admin/commit/fbf4cc4) + - add duration of login success notification - by @honghuangdc [(1335d)](https://github.com/soybeanjs/soybean-admin/commit/1335d47) + - fix menu indent - by @honghuangdc [(87143)](https://github.com/soybeanjs/soybean-admin/commit/8714317) + - fix theme mode segment - by @honghuangdc [(2372d)](https://github.com/soybeanjs/soybean-admin/commit/2372dc9) + - fix app loading theme color - by @honghuangdc [(0ba19)](https://github.com/soybeanjs/soybean-admin/commit/0ba19d5) + - fix page about style in mobile - by @honghuangdc [(8b6de)](https://github.com/soybeanjs/soybean-admin/commit/8b6de48) + - fix themeDrawer darkMode segement - by @honghuangdc [(1b5ca)](https://github.com/soybeanjs/soybean-admin/commit/1b5caa0) + - fix themeDrawer copy - by @honghuangdc [(b3779)](https://github.com/soybeanjs/soybean-admin/commit/b3779a6) + - remove space in tab content - by @honghuangdc [(4aae6)](https://github.com/soybeanjs/soybean-admin/commit/4aae6a5) + - fix horizontal menu - by @honghuangdc [(d886e)](https://github.com/soybeanjs/soybean-admin/commit/d886e50) + - perf card style - by @honghuangdc [(c1afb)](https://github.com/soybeanjs/soybean-admin/commit/c1afb9d) + - fix manage_user title - by @honghuangdc [(7770b)](https://github.com/soybeanjs/soybean-admin/commit/7770b37) + - default proxy prefix - by @smileluck [(da246)](https://github.com/soybeanjs/soybean-admin/commit/da24642) + - fix request msg - by @honghuangdc [(ae6b6)](https://github.com/soybeanjs/soybean-admin/commit/ae6b613) + - Fix the issue of tab error displaying parent localIcon - by @Azir-11 [(a9c98)](https://github.com/soybeanjs/soybean-admin/commit/a9c98d9) + - The matched value of TabRoute should be optional - by @Azir-11 [(e6fed)](https://github.com/soybeanjs/soybean-admin/commit/e6fed1f) + - fix build [unocss]: build failed to load icon "close", fixed #319 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/319 [(c18d8)](https://github.com/soybeanjs/soybean-admin/commit/c18d82f) + - fix resolve alias - by @honghuangdc [(3bdcb)](https://github.com/soybeanjs/soybean-admin/commit/3bdcbc7) + - Missing default value for tab icon - by @Azir-11 [(72a46)](https://github.com/soybeanjs/soybean-admin/commit/72a4679) + - add route icon: fucntion_hide-child - by @honghuangdc [(0a3ef)](https://github.com/soybeanjs/soybean-admin/commit/0a3efe3) + - fix table x-scroll. fixed #324 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/324 [(c7e2c)](https://github.com/soybeanjs/soybean-admin/commit/c7e2c55) + - Fix the logic of root route redirection to home - by **ๆ็็็็ๅธ** [(0123c)](https://github.com/soybeanjs/soybean-admin/commit/0123c37) + - Fix homepage mount error under dynamic routing - by **ๆ็็็็ๅธ** [(9cf2a)](https://github.com/soybeanjs/soybean-admin/commit/9cf2a51) + - fix repeat home tab - by @honghuangdc [(bccd6)](https://github.com/soybeanjs/soybean-admin/commit/bccd6cb) + - fix proxy config - by @honghuangdc [(c8019)](https://github.com/soybeanjs/soybean-admin/commit/c8019c4) + - fix proxy config - by @honghuangdc [(ffc95)](https://github.com/soybeanjs/soybean-admin/commit/ffc95d2) + - fix table row-key ts type - by @honghuangdc [(0cc8f)](https://github.com/soybeanjs/soybean-admin/commit/0cc8f05) + - fix class name conflict with unocss icon - by @honghuangdc [(455e4)](https://github.com/soybeanjs/soybean-admin/commit/455e48f) + - fix repeat routes - by @honghuangdc [(2c543)](https://github.com/soybeanjs/soybean-admin/commit/2c543f1) + - fix route init - by @honghuangdc [(23a40)](https://github.com/soybeanjs/soybean-admin/commit/23a4098) + - fix pin-toggler toolTip zIndex - by @honghuangdc [(f89e6)](https://github.com/soybeanjs/soybean-admin/commit/f89e6c0) + +### ๐ฅ Performance + +- **components**: + - Optimize internationalized menu search code - by **็ๅๆ** [(8c1ef)](https://github.com/soybeanjs/soybean-admin/commit/8c1ef4b) + - Optimize menu search code - by **็ๅๆ** [(296a2)](https://github.com/soybeanjs/soybean-admin/commit/296a2d2) + - perf count-to - by @honghuangdc [(b2c61)](https://github.com/soybeanjs/soybean-admin/commit/b2c61f0) + - components name is converted to uppercase - by **็ๅๆ** [(04aa1)](https://github.com/soybeanjs/soybean-admin/commit/04aa10b) + - perf global-search - by @honghuangdc [(72745)](https://github.com/soybeanjs/soybean-admin/commit/7274522) +- **projects**: + - perf code - by @honghuangdc [(8081e)](https://github.com/soybeanjs/soybean-admin/commit/8081e19) + - env config - by @honghuangdc [(1bac3)](https://github.com/soybeanjs/soybean-admin/commit/1bac3b7) + - add detailed annotations for route role - by @honghuangdc [(f6bab)](https://github.com/soybeanjs/soybean-admin/commit/f6bab0c) + - perf code - by @honghuangdc [(5c49d)](https://github.com/soybeanjs/soybean-admin/commit/5c49d24) + - remove useless file - by @honghuangdc [(c624f)](https://github.com/soybeanjs/soybean-admin/commit/c624f32) + - remove @soybeanjs/cli - by @honghuangdc [(41349)](https://github.com/soybeanjs/soybean-admin/commit/4134955) + - echarts loading style - by @honghuangdc [(456c3)](https://github.com/soybeanjs/soybean-admin/commit/456c318) + - perf page manage_role, useTable - by @honghuangdc [(39aa7)](https://github.com/soybeanjs/soybean-admin/commit/39aa7aa) + - perf table columns style - by @honghuangdc [(babdb)](https://github.com/soybeanjs/soybean-admin/commit/babdb5d) + - perf page manage_menu style - by @honghuangdc [(0aa75)](https://github.com/soybeanjs/soybean-admin/commit/0aa75c0) + - perf code - by @honghuangdc [(7fa87)](https://github.com/soybeanjs/soybean-admin/commit/7fa87f5) + - perf code - by @honghuangdc [(05db8)](https://github.com/soybeanjs/soybean-admin/commit/05db8c0) + - perf code - by @honghuangdc [(dc24a)](https://github.com/soybeanjs/soybean-admin/commit/dc24a36) + - perf manage page style - by @honghuangdc [(779ba)](https://github.com/soybeanjs/soybean-admin/commit/779ba4e) + - perf manage menu - by @honghuangdc [(71f2c)](https://github.com/soybeanjs/soybean-admin/commit/71f2c55) + - manage menu: add transform to component - by @honghuangdc [(0abbf)](https://github.com/soybeanjs/soybean-admin/commit/0abbfa5) + - perf code - by @honghuangdc [(a0bad)](https://github.com/soybeanjs/soybean-admin/commit/a0bad57) + +### ๐ Refactors + +- **projects**: + - remove plugin-web-update-notification - by @honghuangdc [(f6c6d)](https://github.com/soybeanjs/soybean-admin/commit/f6c6dbd) + - fix conflict with locale file - by @honghuangdc [(3346b)](https://github.com/soybeanjs/soybean-admin/commit/3346bcd) + - refactor app-loading - by @honghuangdc [(b4f3d)](https://github.com/soybeanjs/soybean-admin/commit/b4f3dd2) + - use naive-ui color-picker - by @honghuangdc [(b5551)](https://github.com/soybeanjs/soybean-admin/commit/b5551d6) + - perf page home - by @honghuangdc [(4c61c)](https://github.com/soybeanjs/soybean-admin/commit/4c61c6f) + - login components => modules - by @honghuangdc [(59bec)](https://github.com/soybeanjs/soybean-admin/commit/59bec2d) + - perf page function_tab - by @honghuangdc [(b5477)](https://github.com/soybeanjs/soybean-admin/commit/b5477e8) + - update mock api - by @honghuangdc [(27241)](https://github.com/soybeanjs/soybean-admin/commit/2724169) + - page manage_role: extract module - by @honghuangdc [(0e9e2)](https://github.com/soybeanjs/soybean-admin/commit/0e9e2e1) + - perf page manage_role - by @honghuangdc [(a19f8)](https://github.com/soybeanjs/soybean-admin/commit/a19f895) + - manage_route => manage_menu - by @honghuangdc [(f8467)](https://github.com/soybeanjs/soybean-admin/commit/f8467ce) + - refactor service env config - by @honghuangdc [(43193)](https://github.com/soybeanjs/soybean-admin/commit/43193e2) + - refactor unocss shortcuts: wh-full => size-full - by @honghuangdc [(b4c00)](https://github.com/soybeanjs/soybean-admin/commit/b4c00ce) + - use enquirer replace prompts - by @honghuangdc [(b546f)](https://github.com/soybeanjs/soybean-admin/commit/b546ff8) + - refactor useTable - by @honghuangdc [(c3efa)](https://github.com/soybeanjs/soybean-admin/commit/c3efa1b) + - finish refactor useTable - by @honghuangdc [(86301)](https://github.com/soybeanjs/soybean-admin/commit/8630175) + - finish refactor useTable and apply - by @honghuangdc [(3fd15)](https://github.com/soybeanjs/soybean-admin/commit/3fd15e5) + - perf code - by @honghuangdc [(f91ef)](https://github.com/soybeanjs/soybean-admin/commit/f91ef30) + - new route guard - by @honghuangdc [(37d20)](https://github.com/soybeanjs/soybean-admin/commit/37d20b8) + +### ๐ Documentation + +- **projects**: + - update README.md - by @honghuangdc [(78364)](https://github.com/soybeanjs/soybean-admin/commit/783648f) + - update README.md - by @honghuangdc [(1ea48)](https://github.com/soybeanjs/soybean-admin/commit/1ea4817) + - add README - by @honghuangdc [(2371b)](https://github.com/soybeanjs/soybean-admin/commit/2371ba8) + - update README - by @honghuangdc [(d16a9)](https://github.com/soybeanjs/soybean-admin/commit/d16a9d5) + - update README.md - by @honghuangdc [(6a771)](https://github.com/soybeanjs/soybean-admin/commit/6a771ea) + - update README.md - by @honghuangdc [(57b6d)](https://github.com/soybeanjs/soybean-admin/commit/57b6d8a) + - update README.md - by @honghuangdc [(b30c0)](https://github.com/soybeanjs/soybean-admin/commit/b30c035) + - update README.md - by @honghuangdc [(c260f)](https://github.com/soybeanjs/soybean-admin/commit/c260fe2) + - update README.md - by @honghuangdc [(03c42)](https://github.com/soybeanjs/soybean-admin/commit/03c42aa) + - update README.md - by @honghuangdc [(0fae9)](https://github.com/soybeanjs/soybean-admin/commit/0fae993) + - update README.md - by @honghuangdc [(4e4d2)](https://github.com/soybeanjs/soybean-admin/commit/4e4d2de) + - update README.md - by @honghuangdc [(86b44)](https://github.com/soybeanjs/soybean-admin/commit/86b445c) + - update README.md - by @honghuangdc [(e2085)](https://github.com/soybeanjs/soybean-admin/commit/e2085e0) + - update README.md - by @honghuangdc [(6ea9b)](https://github.com/soybeanjs/soybean-admin/commit/6ea9b85) + - update README.md - by @honghuangdc [(ef4af)](https://github.com/soybeanjs/soybean-admin/commit/ef4af79) + - update README.md - by @honghuangdc [(41830)](https://github.com/soybeanjs/soybean-admin/commit/418302a) + - add CHANGELOG.md - by @honghuangdc [(46b61)](https://github.com/soybeanjs/soybean-admin/commit/46b6156) + - add communication - by @honghuangdc [(8c7ea)](https://github.com/soybeanjs/soybean-admin/commit/8c7ea23) + - update README.md - by @honghuangdc [(07d8d)](https://github.com/soybeanjs/soybean-admin/commit/07d8d25) + - update README.md - by @honghuangdc [(1a707)](https://github.com/soybeanjs/soybean-admin/commit/1a7070f) + - update README.md - by @honghuangdc [(f69e1)](https://github.com/soybeanjs/soybean-admin/commit/f69e152) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(3eaf0)](https://github.com/soybeanjs/soybean-admin/commit/3eaf05b) + - update deps - by @honghuangdc [(36fe1)](https://github.com/soybeanjs/soybean-admin/commit/36fe1da) + - update deps - by @honghuangdc [(55342)](https://github.com/soybeanjs/soybean-admin/commit/5534294) + - update deps - by @honghuangdc [(f1b86)](https://github.com/soybeanjs/soybean-admin/commit/f1b86cc) + - update deps - by @honghuangdc [(840e7)](https://github.com/soybeanjs/soybean-admin/commit/840e7f9) + - update deps - by @honghuangdc [(6114b)](https://github.com/soybeanjs/soybean-admin/commit/6114b9f) + - update deps - by @honghuangdc [(9cc7e)](https://github.com/soybeanjs/soybean-admin/commit/9cc7ee5) + - update deps - by @honghuangdc [(9c4ba)](https://github.com/soybeanjs/soybean-admin/commit/9c4ba66) + - update deps - by @honghuangdc [(fb3b9)](https://github.com/soybeanjs/soybean-admin/commit/fb3b94b) + - update deps - by @honghuangdc [(14aa8)](https://github.com/soybeanjs/soybean-admin/commit/14aa856) + - update deps - by @honghuangdc [(02d4b)](https://github.com/soybeanjs/soybean-admin/commit/02d4b0a) + - update deps - by @honghuangdc [(b2ee9)](https://github.com/soybeanjs/soybean-admin/commit/b2ee9ee) + - update deps - by @honghuangdc [(0fee1)](https://github.com/soybeanjs/soybean-admin/commit/0fee104) + - update deps - by @honghuangdc [(c0a65)](https://github.com/soybeanjs/soybean-admin/commit/c0a65a1) + - update deps - by @honghuangdc [(6b513)](https://github.com/soybeanjs/soybean-admin/commit/6b5132c) + - update deps - by @honghuangdc [(82b53)](https://github.com/soybeanjs/soybean-admin/commit/82b53d7) +- **project**: + - delete src/locales/lang/zh-CN.ts - by @honghuangdc [(377db)](https://github.com/soybeanjs/soybean-admin/commit/377db82) +- **projects**: + - use eslint flat config & update config - by @honghuangdc [(a176d)](https://github.com/soybeanjs/soybean-admin/commit/a176dc4) + - update @sa/scripts - by @honghuangdc [(d7785)](https://github.com/soybeanjs/soybean-admin/commit/d778560) + - update pnpm version - by @honghuangdc [(55f76)](https://github.com/soybeanjs/soybean-admin/commit/55f7638) + - update eslint config - by @honghuangdc [(5023f)](https://github.com/soybeanjs/soybean-admin/commit/5023f37) + - lock deps versions - by @honghuangdc [(a24f9)](https://github.com/soybeanjs/soybean-admin/commit/a24f963) + - update pnpm version - by @honghuangdc [(ea02b)](https://github.com/soybeanjs/soybean-admin/commit/ea02b23) + - remove @simonwep/pickr - by @honghuangdc [(502a4)](https://github.com/soybeanjs/soybean-admin/commit/502a4d2) + - remove soybean.svg - by @honghuangdc [(4031f)](https://github.com/soybeanjs/soybean-admin/commit/4031faf) + - update pnpm version - by @honghuangdc [(adec0)](https://github.com/soybeanjs/soybean-admin/commit/adec0d7) + - update deps & fix keep-alive - by @honghuangdc [(13001)](https://github.com/soybeanjs/soybean-admin/commit/13001bc) + - update @elegant-router/vue, fix inject name in windows - by @honghuangdc [(0b56e)](https://github.com/soybeanjs/soybean-admin/commit/0b56e44) + - add dev and build command with service env - by @honghuangdc [(ebb15)](https://github.com/soybeanjs/soybean-admin/commit/ebb1548) + - update deps & remove packages docs - by @honghuangdc [(57963)](https://github.com/soybeanjs/soybean-admin/commit/579636b) + - update pnpm-lock.yaml - by @honghuangdc [(147f6)](https://github.com/soybeanjs/soybean-admin/commit/147f60d) + - update repository url - by @honghuangdc [(806a1)](https://github.com/soybeanjs/soybean-admin/commit/806a1cb) + - update deps & update pnpm version - by @honghuangdc [(9772a)](https://github.com/soybeanjs/soybean-admin/commit/9772aec) + - add unocss eslint config - by @honghuangdc [(40635)](https://github.com/soybeanjs/soybean-admin/commit/4063529) + - update launch.json - by @honghuangdc [(3db82)](https://github.com/soybeanjs/soybean-admin/commit/3db82ac) + - update vscode extensions.json - by @honghuangdc [(4e29a)](https://github.com/soybeanjs/soybean-admin/commit/4e29aca) + - update pnpm version - by @honghuangdc [(7065f)](https://github.com/soybeanjs/soybean-admin/commit/7065f6f) + - update deps & fix eslint vue rule - by @honghuangdc [(8143b)](https://github.com/soybeanjs/soybean-admin/commit/8143b00) + - update pnpm version - by @honghuangdc [(6ad51)](https://github.com/soybeanjs/soybean-admin/commit/6ad51e9) + - add .gitattributes - by @honghuangdc [(c0009)](https://github.com/soybeanjs/soybean-admin/commit/c000920) + +### ๐จ Styles + +- **components**: + - Uniform icon size for header - by @Azir-11 [(b37c1)](https://github.com/soybeanjs/soybean-admin/commit/b37c1e9) +- **projects**: + - format code - by @honghuangdc [(a7481)](https://github.com/soybeanjs/soybean-admin/commit/a748166) + - update theme mode segment height - by @honghuangdc [(4d846)](https://github.com/soybeanjs/soybean-admin/commit/4d8469e) + - fix tooltip zIndex of ButtonIcon - by @honghuangdc [(db747)](https://github.com/soybeanjs/soybean-admin/commit/db747c4) + - sort defineProps, defineEmits with TS type - by @honghuangdc [(123fd)](https://github.com/soybeanjs/soybean-admin/commit/123fd4f) + +### ๐ค CI + +- **projects**: + - add github actions config - by @honghuangdc [(4cb17)](https://github.com/soybeanjs/soybean-admin/commit/4cb17c7) + - update release.yml - by @honghuangdc [(7b298)](https://github.com/soybeanjs/soybean-admin/commit/7b298c6) + - add issue template - by @honghuangdc [(06e20)](https://github.com/soybeanjs/soybean-admin/commit/06e204a) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/Azir-11) [](https://github.com/smileluck) [](https://github.com/Particaly) +[~li](mailto:miciili-02@outlook.com), [Azir-11](mailto:2075125282@qq.com), [็ๅๆ](mailto:349952469@qq.com), [tnt group](mailto:dodu@live.cn), [Kori](mailto:kexin@korix.top), + +## [v1.0.0-beta.3](https://github.com/soybeanjs/soybean-admin/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2024-03-31) + +### ๐ Documentation + +- **projects**: update README.md - by @honghuangdc [(f69e1)](https://github.com/soybeanjs/soybean-admin/commit/f69e152) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(82b53)](https://github.com/soybeanjs/soybean-admin/commit/82b53d7) +- **projects**: add .gitattributes - by @honghuangdc [(c0009)](https://github.com/soybeanjs/soybean-admin/commit/c000920) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.0.0-beta.2](https://github.com/soybeanjs/soybean-admin/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2024-03-27) + +### ๐ Bug Fixes + +- **projects**: fix pin-toggler toolTip zIndex - by @honghuangdc [(f89e6)](https://github.com/soybeanjs/soybean-admin/commit/f89e6c0) + +### ๐ฅ Performance + +- **projects**: perf code - by @honghuangdc [(a0bad)](https://github.com/soybeanjs/soybean-admin/commit/a0bad57) + +### ๐ Documentation + +- **projects**: + - add communication - by @honghuangdc [(8c7ea)](https://github.com/soybeanjs/soybean-admin/commit/8c7ea23) + - update README.md - by @honghuangdc [(07d8d)](https://github.com/soybeanjs/soybean-admin/commit/07d8d25) + - update README.md - by @honghuangdc [(1a707)](https://github.com/soybeanjs/soybean-admin/commit/1a7070f) + +### ๐ก Chore + +- **deps**: update deps - by @honghuangdc [(6b513)](https://github.com/soybeanjs/soybean-admin/commit/6b5132c) + +### ๐ค CI + +- **projects**: + - update release.yml - by @honghuangdc [(7b298)](https://github.com/soybeanjs/soybean-admin/commit/7b298c6) + - add issue template - by @honghuangdc [(06e20)](https://github.com/soybeanjs/soybean-admin/commit/06e204a) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) + +## [v1.0.0-beta.1](https://github.com/soybeanjs/soybean-admin/compare/v0.10.4...v1.0.0-beta.1) (2024-03-25) + +### ๐ Features + +- internationalized menu search - by **Kori** [(9e115)](https://github.com/soybeanjs/soybean-admin/commit/9e115da) +- **components**: + - enhance the custom strength of the 'TableHeaderOperation' component - by **tnt group** [(fdf64)](https://github.com/soybeanjs/soybean-admin/commit/fdf64f7) + - add GlobalSearch components - by **็ๅๆ** [(9ea87)](https://github.com/soybeanjs/soybean-admin/commit/9ea8789) +- **hooks**: + - add use-echarts - by @honghuangdc [(726ab)](https://github.com/soybeanjs/soybean-admin/commit/726abe4) +- **projects**: + - 1.0 beta - by @honghuangdc [(e918a)](https://github.com/soybeanjs/soybean-admin/commit/e918a2c) + - support Vite5 - by @honghuangdc [(96e4a)](https://github.com/soybeanjs/soybean-admin/commit/96e4aff) + - @sa/axios: createRequest, createFlatRequest, createHookRequest - by @honghuangdc [(bac16)](https://github.com/soybeanjs/soybean-admin/commit/bac1632) + - add app loading - by @honghuangdc [(c6545)](https://github.com/soybeanjs/soybean-admin/commit/c65451b) + - add copyright, unocss shortcut: card-wrapper, update package.json - by @honghuangdc [(affcc)](https://github.com/soybeanjs/soybean-admin/commit/affcc26) + - add page: about - by @honghuangdc [(4955f)](https://github.com/soybeanjs/soybean-admin/commit/4955f1a) + - add custom route exception - by @honghuangdc [(b43c9)](https://github.com/soybeanjs/soybean-admin/commit/b43c925) + - filter tabs which are not in routes - by @honghuangdc [(f59f3)](https://github.com/soybeanjs/soybean-admin/commit/f59f348) + - packages/scripts: add command changelog,release - by @honghuangdc [(dafb6)](https://github.com/soybeanjs/soybean-admin/commit/dafb6fa) + - add script: gen-route - by @honghuangdc [(697c1)](https://github.com/soybeanjs/soybean-admin/commit/697c1b6) + - @sa/axios: add qs stringify for params - by @honghuangdc [(2400c)](https://github.com/soybeanjs/soybean-admin/commit/2400c02) + - page home & perf useEcharts - by @honghuangdc [(62e4d)](https://github.com/soybeanjs/soybean-admin/commit/62e4da0) + - finish page home - by @honghuangdc [(7bd1e)](https://github.com/soybeanjs/soybean-admin/commit/7bd1e47) + - add page function_tab - by @honghuangdc [(6ff86)](https://github.com/soybeanjs/soybean-admin/commit/6ff86e7) + - page manage_role - by @honghuangdc [(237c6)](https://github.com/soybeanjs/soybean-admin/commit/237c6d2) + - page manage_user - by @honghuangdc [(8a170)](https://github.com/soybeanjs/soybean-admin/commit/8a170ee) + - page manage_menu - by @honghuangdc [(87d65)](https://github.com/soybeanjs/soybean-admin/commit/87d65d3) + - page manage_menu operateDrawer - by @honghuangdc [(db17c)](https://github.com/soybeanjs/soybean-admin/commit/db17c91) + - Add type to TabRoute: matched - by @Azir-11 [(2d102)](https://github.com/soybeanjs/soybean-admin/commit/2d102a0) + - support directory menu hide all child menus. fixed #325 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/325 [(7256a)](https://github.com/soybeanjs/soybean-admin/commit/7256ad4) + - mock manage list data with pagination - by @honghuangdc [(1a6be)](https://github.com/soybeanjs/soybean-admin/commit/1a6be00) + - globalSearch add i18n - by **็ๅๆ** [(0126d)](https://github.com/soybeanjs/soybean-admin/commit/0126da4) + - Add route meta parameter:fixedQuery - by @Azir-11 [(874aa)](https://github.com/soybeanjs/soybean-admin/commit/874aaca) + - update - by @honghuangdc [(4158a)](https://github.com/soybeanjs/soybean-admin/commit/4158a72) + - change borderRadius to 6px of naiveUI - by @honghuangdc [(49558)](https://github.com/soybeanjs/soybean-admin/commit/49558ca) + - pef manage role - by @honghuangdc [(18709)](https://github.com/soybeanjs/soybean-admin/commit/1870981) + - login page: code-login - by @honghuangdc [(c91dd)](https://github.com/soybeanjs/soybean-admin/commit/c91dd28) + - login page: register - by @honghuangdc [(1ed33)](https://github.com/soybeanjs/soybean-admin/commit/1ed33dc) + - add request refresh token & logout - by @honghuangdc [(11a6a)](https://github.com/soybeanjs/soybean-admin/commit/11a6a3b) + - add request exception example page - by @honghuangdc [(41e8b)](https://github.com/soybeanjs/soybean-admin/commit/41e8bc4) + - add auth example - by @honghuangdc [(c11d5)](https://github.com/soybeanjs/soybean-admin/commit/c11d56d) +- **router**: + - add sortRoutesByOrder function - by @Azir-11 [(0cf09)](https://github.com/soybeanjs/soybean-admin/commit/0cf09ba) + +### ๐ Bug Fixes + +- **components**: + - fix tooltip zIndex of ButtonIcon - by @honghuangdc [(99097)](https://github.com/soybeanjs/soybean-admin/commit/99097b4) + - supplement the `NaiveUI` type - by **tnt group** [(ccc2b)](https://github.com/soybeanjs/soybean-admin/commit/ccc2b67) + - fix homeTab closeRight and disable colseLeft - by **~li** [(d28bf)](https://github.com/soybeanjs/soybean-admin/commit/d28bf52) +- **hooks**: + - Fix Naive Pagination's outdated API - by **tnt group** [(37436)](https://github.com/soybeanjs/soybean-admin/commit/3743612) +- **projects**: + - ไฟฎๅค่ทฏ็ฑๅฝๅไธบๅ ๅซๅ ณ็ณปๆถๅฏผ่ดๅฏผ่ชๆฐๆฎๅบ้็้ฎ้ข - by **pantao** [(76636)](https://github.com/soybeanjs/soybean-admin/commit/766369f) + - rename zh-ch - by @honghuangdc [(a8a77)](https://github.com/soybeanjs/soybean-admin/commit/a8a77ea) + - Fix welcome notification not closing - by @Azir-11 [(748cf)](https://github.com/soybeanjs/soybean-admin/commit/748cfa2) + - fix i18n vscode settings - by @honghuangdc [(fbf4c)](https://github.com/soybeanjs/soybean-admin/commit/fbf4cc4) + - add duration of login success notification - by @honghuangdc [(1335d)](https://github.com/soybeanjs/soybean-admin/commit/1335d47) + - fix menu indent - by @honghuangdc [(87143)](https://github.com/soybeanjs/soybean-admin/commit/8714317) + - fix theme mode segment - by @honghuangdc [(2372d)](https://github.com/soybeanjs/soybean-admin/commit/2372dc9) + - fix app loading theme color - by @honghuangdc [(0ba19)](https://github.com/soybeanjs/soybean-admin/commit/0ba19d5) + - fix page about style in mobile - by @honghuangdc [(8b6de)](https://github.com/soybeanjs/soybean-admin/commit/8b6de48) + - fix themeDrawer darkMode segement - by @honghuangdc [(1b5ca)](https://github.com/soybeanjs/soybean-admin/commit/1b5caa0) + - fix themeDrawer copy - by @honghuangdc [(b3779)](https://github.com/soybeanjs/soybean-admin/commit/b3779a6) + - remove space in tab content - by @honghuangdc [(4aae6)](https://github.com/soybeanjs/soybean-admin/commit/4aae6a5) + - fix horizontal menu - by @honghuangdc [(d886e)](https://github.com/soybeanjs/soybean-admin/commit/d886e50) + - perf card style - by @honghuangdc [(c1afb)](https://github.com/soybeanjs/soybean-admin/commit/c1afb9d) + - fix manage_user title - by @honghuangdc [(7770b)](https://github.com/soybeanjs/soybean-admin/commit/7770b37) + - default proxy prefix - by @smileluck [(da246)](https://github.com/soybeanjs/soybean-admin/commit/da24642) + - fix request msg - by @honghuangdc [(ae6b6)](https://github.com/soybeanjs/soybean-admin/commit/ae6b613) + - Fix the issue of tab error displaying parent localIcon - by @Azir-11 [(a9c98)](https://github.com/soybeanjs/soybean-admin/commit/a9c98d9) + - The matched value of TabRoute should be optional - by @Azir-11 [(e6fed)](https://github.com/soybeanjs/soybean-admin/commit/e6fed1f) + - fix build [unocss]: build failed to load icon "close", fixed #319 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/319 [(c18d8)](https://github.com/soybeanjs/soybean-admin/commit/c18d82f) + - fix resolve alias - by @honghuangdc [(3bdcb)](https://github.com/soybeanjs/soybean-admin/commit/3bdcbc7) + - Missing default value for tab icon - by @Azir-11 [(72a46)](https://github.com/soybeanjs/soybean-admin/commit/72a4679) + - add route icon: fucntion_hide-child - by @honghuangdc [(0a3ef)](https://github.com/soybeanjs/soybean-admin/commit/0a3efe3) + - fix table x-scroll. fixed #324 - by @honghuangdc in https://github.com/soybeanjs/soybean-admin/issues/324 [(c7e2c)](https://github.com/soybeanjs/soybean-admin/commit/c7e2c55) + - Fix the logic of root route redirection to home - by **ๆ็็็็ๅธ** [(0123c)](https://github.com/soybeanjs/soybean-admin/commit/0123c37) + - Fix homepage mount error under dynamic routing - by **ๆ็็็็ๅธ** [(9cf2a)](https://github.com/soybeanjs/soybean-admin/commit/9cf2a51) + - fix repeat home tab - by @honghuangdc [(bccd6)](https://github.com/soybeanjs/soybean-admin/commit/bccd6cb) + - fix proxy config - by @honghuangdc [(c8019)](https://github.com/soybeanjs/soybean-admin/commit/c8019c4) + - fix proxy config - by @honghuangdc [(ffc95)](https://github.com/soybeanjs/soybean-admin/commit/ffc95d2) + - fix table row-key ts type - by @honghuangdc [(0cc8f)](https://github.com/soybeanjs/soybean-admin/commit/0cc8f05) + - fix class name conflict with unocss icon - by @honghuangdc [(455e4)](https://github.com/soybeanjs/soybean-admin/commit/455e48f) + - fix repeat routes - by @honghuangdc [(2c543)](https://github.com/soybeanjs/soybean-admin/commit/2c543f1) + - fix route init - by @honghuangdc [(23a40)](https://github.com/soybeanjs/soybean-admin/commit/23a4098) + +### ๐ฅ Performance + +- **components**: + - Optimize internationalized menu search code - by **็ๅๆ** [(8c1ef)](https://github.com/soybeanjs/soybean-admin/commit/8c1ef4b) + - Optimize menu search code - by **็ๅๆ** [(296a2)](https://github.com/soybeanjs/soybean-admin/commit/296a2d2) + - perf count-to - by @honghuangdc [(b2c61)](https://github.com/soybeanjs/soybean-admin/commit/b2c61f0) + - components name is converted to uppercase - by **็ๅๆ** [(04aa1)](https://github.com/soybeanjs/soybean-admin/commit/04aa10b) + - perf global-search - by @honghuangdc [(72745)](https://github.com/soybeanjs/soybean-admin/commit/7274522) +- **projects**: + - perf code - by @honghuangdc [(8081e)](https://github.com/soybeanjs/soybean-admin/commit/8081e19) + - env config - by @honghuangdc [(1bac3)](https://github.com/soybeanjs/soybean-admin/commit/1bac3b7) + - add detailed annotations for route role - by @honghuangdc [(f6bab)](https://github.com/soybeanjs/soybean-admin/commit/f6bab0c) + - perf code - by @honghuangdc [(5c49d)](https://github.com/soybeanjs/soybean-admin/commit/5c49d24) + - remove useless file - by @honghuangdc [(c624f)](https://github.com/soybeanjs/soybean-admin/commit/c624f32) + - remove @soybeanjs/cli - by @honghuangdc [(41349)](https://github.com/soybeanjs/soybean-admin/commit/4134955) + - echarts loading style - by @honghuangdc [(456c3)](https://github.com/soybeanjs/soybean-admin/commit/456c318) + - perf page manage_role, useTable - by @honghuangdc [(39aa7)](https://github.com/soybeanjs/soybean-admin/commit/39aa7aa) + - perf table columns style - by @honghuangdc [(babdb)](https://github.com/soybeanjs/soybean-admin/commit/babdb5d) + - perf page manage_menu style - by @honghuangdc [(0aa75)](https://github.com/soybeanjs/soybean-admin/commit/0aa75c0) + - perf code - by @honghuangdc [(7fa87)](https://github.com/soybeanjs/soybean-admin/commit/7fa87f5) + - perf code - by @honghuangdc [(05db8)](https://github.com/soybeanjs/soybean-admin/commit/05db8c0) + - perf code - by @honghuangdc [(dc24a)](https://github.com/soybeanjs/soybean-admin/commit/dc24a36) + - perf manage page style - by @honghuangdc [(779ba)](https://github.com/soybeanjs/soybean-admin/commit/779ba4e) + - perf manage menu - by @honghuangdc [(71f2c)](https://github.com/soybeanjs/soybean-admin/commit/71f2c55) + - manage menu: add transform to component - by @honghuangdc [(0abbf)](https://github.com/soybeanjs/soybean-admin/commit/0abbfa5) + +### ๐ Refactors + +- **projects**: + - remove plugin-web-update-notification - by @honghuangdc [(f6c6d)](https://github.com/soybeanjs/soybean-admin/commit/f6c6dbd) + - fix conflict with locale file - by @honghuangdc [(3346b)](https://github.com/soybeanjs/soybean-admin/commit/3346bcd) + - refactor app-loading - by @honghuangdc [(b4f3d)](https://github.com/soybeanjs/soybean-admin/commit/b4f3dd2) + - use naive-ui color-picker - by @honghuangdc [(b5551)](https://github.com/soybeanjs/soybean-admin/commit/b5551d6) + - perf page home - by @honghuangdc [(4c61c)](https://github.com/soybeanjs/soybean-admin/commit/4c61c6f) + - login components => modules - by @honghuangdc [(59bec)](https://github.com/soybeanjs/soybean-admin/commit/59bec2d) + - perf page function_tab - by @honghuangdc [(b5477)](https://github.com/soybeanjs/soybean-admin/commit/b5477e8) + - update mock api - by @honghuangdc [(27241)](https://github.com/soybeanjs/soybean-admin/commit/2724169) + - page manage_role: extract module - by @honghuangdc [(0e9e2)](https://github.com/soybeanjs/soybean-admin/commit/0e9e2e1) + - perf page manage_role - by @honghuangdc [(a19f8)](https://github.com/soybeanjs/soybean-admin/commit/a19f895) + - manage_route => manage_menu - by @honghuangdc [(f8467)](https://github.com/soybeanjs/soybean-admin/commit/f8467ce) + - refactor service env config - by @honghuangdc [(43193)](https://github.com/soybeanjs/soybean-admin/commit/43193e2) + - refactor unocss shortcuts: wh-full => size-full - by @honghuangdc [(b4c00)](https://github.com/soybeanjs/soybean-admin/commit/b4c00ce) + - use enquirer replace prompts - by @honghuangdc [(b546f)](https://github.com/soybeanjs/soybean-admin/commit/b546ff8) + - refactor useTable - by @honghuangdc [(c3efa)](https://github.com/soybeanjs/soybean-admin/commit/c3efa1b) + - finish refactor useTable - by @honghuangdc [(86301)](https://github.com/soybeanjs/soybean-admin/commit/8630175) + - finish refactor useTable and apply - by @honghuangdc [(3fd15)](https://github.com/soybeanjs/soybean-admin/commit/3fd15e5) + - perf code - by @honghuangdc [(f91ef)](https://github.com/soybeanjs/soybean-admin/commit/f91ef30) + - new route guard - by @honghuangdc [(37d20)](https://github.com/soybeanjs/soybean-admin/commit/37d20b8) + +### ๐ Documentation + +- **projects**: + - update README.md - by @honghuangdc [(78364)](https://github.com/soybeanjs/soybean-admin/commit/783648f) + - update README.md - by @honghuangdc [(1ea48)](https://github.com/soybeanjs/soybean-admin/commit/1ea4817) + - add README - by @honghuangdc [(2371b)](https://github.com/soybeanjs/soybean-admin/commit/2371ba8) + - update README - by @honghuangdc [(d16a9)](https://github.com/soybeanjs/soybean-admin/commit/d16a9d5) + - update README.md - by @honghuangdc [(6a771)](https://github.com/soybeanjs/soybean-admin/commit/6a771ea) + - update README.md - by @honghuangdc [(57b6d)](https://github.com/soybeanjs/soybean-admin/commit/57b6d8a) + - update README.md - by @honghuangdc [(b30c0)](https://github.com/soybeanjs/soybean-admin/commit/b30c035) + - update README.md - by @honghuangdc [(c260f)](https://github.com/soybeanjs/soybean-admin/commit/c260fe2) + - update README.md - by @honghuangdc [(03c42)](https://github.com/soybeanjs/soybean-admin/commit/03c42aa) + - update README.md - by @honghuangdc [(0fae9)](https://github.com/soybeanjs/soybean-admin/commit/0fae993) + - update README.md - by @honghuangdc [(4e4d2)](https://github.com/soybeanjs/soybean-admin/commit/4e4d2de) + - update README.md - by @honghuangdc [(86b44)](https://github.com/soybeanjs/soybean-admin/commit/86b445c) + - update README.md - by @honghuangdc [(e2085)](https://github.com/soybeanjs/soybean-admin/commit/e2085e0) + - update README.md - by @honghuangdc [(6ea9b)](https://github.com/soybeanjs/soybean-admin/commit/6ea9b85) + - update README.md - by @honghuangdc [(ef4af)](https://github.com/soybeanjs/soybean-admin/commit/ef4af79) + - update README.md - by @honghuangdc [(41830)](https://github.com/soybeanjs/soybean-admin/commit/418302a) + - add CHANGELOG.md - by @honghuangdc [(46b61)](https://github.com/soybeanjs/soybean-admin/commit/46b6156) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(3eaf0)](https://github.com/soybeanjs/soybean-admin/commit/3eaf05b) + - update deps - by @honghuangdc [(36fe1)](https://github.com/soybeanjs/soybean-admin/commit/36fe1da) + - update deps - by @honghuangdc [(55342)](https://github.com/soybeanjs/soybean-admin/commit/5534294) + - update deps - by @honghuangdc [(f1b86)](https://github.com/soybeanjs/soybean-admin/commit/f1b86cc) + - update deps - by @honghuangdc [(840e7)](https://github.com/soybeanjs/soybean-admin/commit/840e7f9) + - update deps - by @honghuangdc [(6114b)](https://github.com/soybeanjs/soybean-admin/commit/6114b9f) + - update deps - by @honghuangdc [(9cc7e)](https://github.com/soybeanjs/soybean-admin/commit/9cc7ee5) + - update deps - by @honghuangdc [(9c4ba)](https://github.com/soybeanjs/soybean-admin/commit/9c4ba66) + - update deps - by @honghuangdc [(fb3b9)](https://github.com/soybeanjs/soybean-admin/commit/fb3b94b) + - update deps - by @honghuangdc [(14aa8)](https://github.com/soybeanjs/soybean-admin/commit/14aa856) + - update deps - by @honghuangdc [(02d4b)](https://github.com/soybeanjs/soybean-admin/commit/02d4b0a) + - update deps - by @honghuangdc [(b2ee9)](https://github.com/soybeanjs/soybean-admin/commit/b2ee9ee) + - update deps - by @honghuangdc [(0fee1)](https://github.com/soybeanjs/soybean-admin/commit/0fee104) + - update deps - by @honghuangdc [(c0a65)](https://github.com/soybeanjs/soybean-admin/commit/c0a65a1) +- **project**: + - delete src/locales/lang/zh-CN.ts - by @honghuangdc [(377db)](https://github.com/soybeanjs/soybean-admin/commit/377db82) +- **projects**: + - use eslint flat config & update config - by @honghuangdc [(a176d)](https://github.com/soybeanjs/soybean-admin/commit/a176dc4) + - update @sa/scripts - by @honghuangdc [(d7785)](https://github.com/soybeanjs/soybean-admin/commit/d778560) + - update pnpm version - by @honghuangdc [(55f76)](https://github.com/soybeanjs/soybean-admin/commit/55f7638) + - update eslint config - by @honghuangdc [(5023f)](https://github.com/soybeanjs/soybean-admin/commit/5023f37) + - lock deps versions - by @honghuangdc [(a24f9)](https://github.com/soybeanjs/soybean-admin/commit/a24f963) + - update pnpm version - by @honghuangdc [(ea02b)](https://github.com/soybeanjs/soybean-admin/commit/ea02b23) + - remove @simonwep/pickr - by @honghuangdc [(502a4)](https://github.com/soybeanjs/soybean-admin/commit/502a4d2) + - remove soybean.svg - by @honghuangdc [(4031f)](https://github.com/soybeanjs/soybean-admin/commit/4031faf) + - update pnpm version - by @honghuangdc [(adec0)](https://github.com/soybeanjs/soybean-admin/commit/adec0d7) + - update deps & fix keep-alive - by @honghuangdc [(13001)](https://github.com/soybeanjs/soybean-admin/commit/13001bc) + - update @elegant-router/vue, fix inject name in windows - by @honghuangdc [(0b56e)](https://github.com/soybeanjs/soybean-admin/commit/0b56e44) + - add dev and build command with service env - by @honghuangdc [(ebb15)](https://github.com/soybeanjs/soybean-admin/commit/ebb1548) + - update deps & remove packages docs - by @honghuangdc [(57963)](https://github.com/soybeanjs/soybean-admin/commit/579636b) + - update pnpm-lock.yaml - by @honghuangdc [(147f6)](https://github.com/soybeanjs/soybean-admin/commit/147f60d) + - update repository url - by @honghuangdc [(806a1)](https://github.com/soybeanjs/soybean-admin/commit/806a1cb) + - update deps & update pnpm version - by @honghuangdc [(9772a)](https://github.com/soybeanjs/soybean-admin/commit/9772aec) + - add unocss eslint config - by @honghuangdc [(40635)](https://github.com/soybeanjs/soybean-admin/commit/4063529) + - update launch.json - by @honghuangdc [(3db82)](https://github.com/soybeanjs/soybean-admin/commit/3db82ac) + - update vscode extensions.json - by @honghuangdc [(4e29a)](https://github.com/soybeanjs/soybean-admin/commit/4e29aca) + - update pnpm version - by @honghuangdc [(7065f)](https://github.com/soybeanjs/soybean-admin/commit/7065f6f) + - update deps & fix eslint vue rule - by @honghuangdc [(8143b)](https://github.com/soybeanjs/soybean-admin/commit/8143b00) + - update pnpm version - by @honghuangdc [(6ad51)](https://github.com/soybeanjs/soybean-admin/commit/6ad51e9) + +### ๐จ Styles + +- **components**: + - Uniform icon size for header - by @Azir-11 [(b37c1)](https://github.com/soybeanjs/soybean-admin/commit/b37c1e9) +- **projects**: + - format code - by @honghuangdc [(a7481)](https://github.com/soybeanjs/soybean-admin/commit/a748166) + - update theme mode segment height - by @honghuangdc [(4d846)](https://github.com/soybeanjs/soybean-admin/commit/4d8469e) + - fix tooltip zIndex of ButtonIcon - by @honghuangdc [(db747)](https://github.com/soybeanjs/soybean-admin/commit/db747c4) + - sort defineProps, defineEmits with TS type - by @honghuangdc [(123fd)](https://github.com/soybeanjs/soybean-admin/commit/123fd4f) + +### ๐ค CI + +- **projects**: add github actions config - by @honghuangdc [(4cb17)](https://github.com/soybeanjs/soybean-admin/commit/4cb17c7) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/Azir-11) [](https://github.com/smileluck) [](https://github.com/Particaly) +[~li](mailto:miciili-02@outlook.com), [Azir-11](mailto:2075125282@qq.com), [็ๅๆ](mailto:349952469@qq.com), [tnt group](mailto:dodu@live.cn), [Kori](mailto:kexin@korix.top), + +## [v0.10.4](https://github.com/honghuangdc/soybean-admin/compare/v0.10.3...v0.10.4) (23-09-20) + +### ๐ Features + +- **auth**: + - ้ฒๆญขๅคๆฌกๅทๆฐtoken - by @eAliwei [(0eaa3)](https://github.com/honghuangdc/soybean-admin/commit/0eaa327) +- **hooks**: + - add useHookTable - by @honghuangdc [(b3ae7)](https://github.com/honghuangdc/soybean-admin/commit/b3ae760) +- **projects**: + - add websocket demo - by @honghuangdc [(af53e)](https://github.com/honghuangdc/soybean-admin/commit/af53ec7) + - add switch for customize darkmode transition - by @honghuangdc [(6e0cc)](https://github.com/honghuangdc/soybean-admin/commit/6e0cce4) + - new i18n function $t & login page and setting drawer config i18n - by @honghuangdc [(854d0)](https://github.com/honghuangdc/soybean-admin/commit/854d0bc) + - add plugin-web-update-notification - by @honghuangdc [(c9164)](https://github.com/honghuangdc/soybean-admin/commit/c91644b) + +### ๐ Bug Fixes + +- **components**: + - ไฟฎๅคๅจๆ่ทฏ็ฑไธป้กต404 - by @lapislazulisch [(3ae19)](https://github.com/honghuangdc/soybean-admin/commit/3ae1952) + - ไฟฎๅคๅจๆ่ทฏ็ฑhome้กต404 - by @lapislazulisch [(ad6ac)](https://github.com/honghuangdc/soybean-admin/commit/ad6ac72) +- **projects**: + - fix set tab title (fixed #256) - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/256 [(13f6c)](https://github.com/honghuangdc/soybean-admin/commit/13f6cd8) + - correct the lang file name & add recommend vscode plugin i18n-ally - by @honghuangdc [(864ec)](https://github.com/honghuangdc/soybean-admin/commit/864ec47) + - fix reload button animate - by @honghuangdc [(41f23)](https://github.com/honghuangdc/soybean-admin/commit/41f2338) +- **styles**: + - ็จๆท็ฎก็้กต้ขๅธๅฑ่ช้ๅบๅฑๅน้ซๅบฆ (fixed #253) - by @honghuangdc in https://github.com/honghuangdc/soybean-admin/issues/253 [(0f7b9)](https://github.com/honghuangdc/soybean-admin/commit/0f7b9d5) + +### ๐ฅ Performance + +- **hooks**: + - perf use-table - by @honghuangdc [(33180)](https://github.com/honghuangdc/soybean-admin/commit/3318041) + - perf useHookTable - by @honghuangdc [(809fa)](https://github.com/honghuangdc/soybean-admin/commit/809fa85) +- **projects**: + - add type declaration for document startViewTransition - by @honghuangdc [(d3ebe)](https://github.com/honghuangdc/soybean-admin/commit/d3ebe95) + +### ๐ Refactors + +- **projects**: + - ็ไบง็ฏๅข็ผๅญไธป้ขๅๆดไธบsessionStorage - by @honghuangdc [(c46a5)](https://github.com/honghuangdc/soybean-admin/commit/c46a592) + - add reCacheRoute method - by @honghuangdc [(f92ee)](https://github.com/honghuangdc/soybean-admin/commit/f92ee77) + - update soybean domain - by @honghuangdc [(073fd)](https://github.com/honghuangdc/soybean-admin/commit/073fd16) + +### ๐ Documentation + +- **projects**: + - update README.md logo - by @honghuangdc [(19141)](https://github.com/honghuangdc/soybean-admin/commit/19141a7) + - update Docker deployment method - by @snowords [(00da0)](https://github.com/honghuangdc/soybean-admin/commit/00da000) + - update git hooks init command - by @snowords [(7f35e)](https://github.com/honghuangdc/soybean-admin/commit/7f35e87) + - update README.md - by @eltociear [(93ed5)](https://github.com/honghuangdc/soybean-admin/commit/93ed5ad) + +### ๐ก Chore + +- **deps**: + - update deps - by @honghuangdc [(bba68)](https://github.com/honghuangdc/soybean-admin/commit/bba68bf) + - update deps - by @honghuangdc [(0e6d2)](https://github.com/honghuangdc/soybean-admin/commit/0e6d289) + - update deps - by @honghuangdc [(135ce)](https://github.com/honghuangdc/soybean-admin/commit/135ce77) + - update deps - by @honghuangdc [(44ba3)](https://github.com/honghuangdc/soybean-admin/commit/44ba327) + - update deps - by @honghuangdc [(9296e)](https://github.com/honghuangdc/soybean-admin/commit/9296e69) + - update deps - by @honghuangdc [(751de)](https://github.com/honghuangdc/soybean-admin/commit/751ded4) + - update deps - by @honghuangdc [(305d9)](https://github.com/honghuangdc/soybean-admin/commit/305d956) +- **projects**: + - update deps and fix swiper - by @honghuangdc [(9d105)](https://github.com/honghuangdc/soybean-admin/commit/9d1051b) + - update package.json - by @honghuangdc [(d7aea)](https://github.com/honghuangdc/soybean-admin/commit/d7aea9d) + - update deps & fix eslint code - by @honghuangdc [(08e0c)](https://github.com/honghuangdc/soybean-admin/commit/08e0cf5) + - update pnpm-lock.yaml - by @honghuangdc [(94644)](https://github.com/honghuangdc/soybean-admin/commit/9464473) + - update VSCode setting - by @honghuangdc [(56c77)](https://github.com/honghuangdc/soybean-admin/commit/56c770c) + - correct the word spell - by @honghuangdc [(458e3)](https://github.com/honghuangdc/soybean-admin/commit/458e387) + - correct word spell & eslint fix code - by @honghuangdc [(cffc3)](https://github.com/honghuangdc/soybean-admin/commit/cffc30a) + - When tab is switched, keep the page without refreshing - by @linjiangl [(83f25)](https://github.com/honghuangdc/soybean-admin/commit/83f2514) + +### ๐จ Styles + +- **projects**: + - unify card border radius, 16px to 8px - by @honghuangdc [(cbda4)](https://github.com/honghuangdc/soybean-admin/commit/cbda4a3) + - update default theme color - by @honghuangdc [(43ac2)](https://github.com/honghuangdc/soybean-admin/commit/43ac23f) + - prettier format code - by @honghuangdc [(24cf1)](https://github.com/honghuangdc/soybean-admin/commit/24cf1d9) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/eltociear) [](https://github.com/linjiangl) [](https://github.com/lapislazulisch) [](https://github.com/snowords) [](https://github.com/eAliwei) [](https://github.com/honghuangdc) + +## [v0.10.3](https://github.com/honghuangdc/soybean-admin/compare/v0.10.2...v0.10.3) (23-06-15) + +### ๐ Bug Fixes + +- **projects**: fix userRoleOptions - by @soybeanjs [(2ca2b)](https://github.com/honghuangdc/soybean-admin/commit/2ca2b76) +- **styles**: fix toggle-lang bg - by @soybeanjs [(47309)](https://github.com/honghuangdc/soybean-admin/commit/473095b) + +### ๐ฅ Performance + +- **projects**: + - remove useless code - by @soybeanjs [(eb8e4)](https://github.com/honghuangdc/soybean-admin/commit/eb8e49e) + - use transformObjectToOption to generate option of object labels - by @soybeanjs [(da611)](https://github.com/honghuangdc/soybean-admin/commit/da611fb) + +### ๐ Documentation + +- **projects**: + - CHANGELOG.md - by @soybeanjs [(ff5bf)](https://github.com/honghuangdc/soybean-admin/commit/ff5bf62) + - generate full CHANGELOG.md - by @soybeanjs [(055d4)](https://github.com/honghuangdc/soybean-admin/commit/055d4cc) + - update README.md - by @soybeanjs [(3c7e1)](https://github.com/honghuangdc/soybean-admin/commit/3c7e1cf) + - update README.md - by @soybeanjs [(1681c)](https://github.com/honghuangdc/soybean-admin/commit/1681c34) + - update README.md picture url - by @soybeanjs [(4eefc)](https://github.com/honghuangdc/soybean-admin/commit/4eefc95) + - update README.md - by @soybeanjs [(8f24a)](https://github.com/honghuangdc/soybean-admin/commit/8f24a94) + - update CHANGELOG.md by regenerate changelog - by @soybeanjs [(2a9b7)](https://github.com/honghuangdc/soybean-admin/commit/2a9b725) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(f9d47)](https://github.com/honghuangdc/soybean-admin/commit/f9d47c0) + - update deps - by @soybeanjs [(47ab0)](https://github.com/honghuangdc/soybean-admin/commit/47ab018) + - decrease vite-plugin-page-route - by @soybeanjs [(882f2)](https://github.com/honghuangdc/soybean-admin/commit/882f281) + - update deps - by @soybeanjs [(e6abf)](https://github.com/honghuangdc/soybean-admin/commit/e6abf93) +- **projects**: + - remove bumpp & add release script - by @soybeanjs [(a3dfe)](https://github.com/honghuangdc/soybean-admin/commit/a3dfe61) + - update @soybeanjs/cli and generate total changelog - by @soybeanjs [(58591)](https://github.com/honghuangdc/soybean-admin/commit/58591f6) + - update deps & update unocss deprecated api exclude - by @soybeanjs [(0907d)](https://github.com/honghuangdc/soybean-admin/commit/0907d38) + - update deps & update package.json - by @soybeanjs [(0b2f6)](https://github.com/honghuangdc/soybean-admin/commit/0b2f68a) + - add vite-plugin-vue-devtools - by @soybeanjs [(c1bee)](https://github.com/honghuangdc/soybean-admin/commit/c1bee40) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.10.2](https://github.com/honghuangdc/soybean-admin/compare/v0.10.1...v0.10.2) (2023-06-01) + +### ๐ Bug Fixes + +- **components**: fix mix-menu layout when the locale is English (fixed 241) - by @soybeanjs [(5c085)](https://github.com/honghuangdc/soybean-admin/commit/5c085a1) + +### ๐ Documentation + +- **projects**: + - CHANGELOG.md - by @soybeanjs [(bb2ea)](https://github.com/honghuangdc/soybean-admin/commit/bb2eab6) + - update README.md: update example image url [ๆดๆฐ็คบไพๅพ็็้พๆฅ] - by @soybeanjs [(4f512)](https://github.com/honghuangdc/soybean-admin/commit/4f51263) + - fix README.md: example image link - by @soybeanjs [(56ea8)](https://github.com/honghuangdc/soybean-admin/commit/56ea893) + +### ๐ก Chore + +- release v0.10.2 - by @soybeanjs [(1f6d0)](https://github.com/honghuangdc/soybean-admin/commit/1f6d079) +- **projects**: update deps and use soy lint-staged replace lint-staged - by @soybeanjs [(9a238)](https://github.com/honghuangdc/soybean-admin/commit/9a23817) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.10.1](https://github.com/honghuangdc/soybean-admin/compare/v0.10.0...v0.10.1) (2023-05-31) + +### ๐ Documentation + +- **projects**: + - CHANGELOG.md - by @soybeanjs [(a2521)](https://github.com/honghuangdc/soybean-admin/commit/a252138) + - update README.md - by @soybeanjs [(b5839)](https://github.com/honghuangdc/soybean-admin/commit/b5839ea) + +### ๐ก Chore + +- release v0.10.1 - by @soybeanjs [(44e4c)](https://github.com/honghuangdc/soybean-admin/commit/44e4c04) +- **projects**: add switch for pageRoute plugin [ๆทปๅ ่ชๅจ็ๆ่ทฏ็ฑ็ๆไปถ็ๅผๅ ณ] - by @soybeanjs [(780ac)](https://github.com/honghuangdc/soybean-admin/commit/780ac75) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.10.0](https://github.com/honghuangdc/soybean-admin/compare/v0.9.9...v0.10.0) (2023-05-31) + +### ๐ Features + +- **components**: + - Add tree related component instances - by **small_happy** [(d203a)](https://github.com/honghuangdc/soybean-admin/commit/d203a35) + - Add routing data related to tree components and page display optimization - by **small_happy** [(a0f55)](https://github.com/honghuangdc/soybean-admin/commit/a0f55ac) +- **projects**: + - ่ฟๅ้กถ้จๅ่ฝ้้ ๆฐๅธๅฑ - by @yanbowe [(54e2c)](https://github.com/honghuangdc/soybean-admin/commit/54e2cb5) + - ๅขๅ i18nๆฏๆ็ฟป่ฏ่ๅ,tab,title - by **cc** [(3d48a)](https://github.com/honghuangdc/soybean-admin/commit/3d48aa8) + - add menu translate [็ฟป่ฏ่ๅ] - by @soybeanjs [(f6828)](https://github.com/honghuangdc/soybean-admin/commit/f68285f) + - ๅขๅ ไธป้ขๅๆข่ฟๆธกๆๆ - by **cc** [(8da88)](https://github.com/honghuangdc/soybean-admin/commit/8da8843) + - support mobile layout [ๆฏๆ็งปๅจ็ซฏๅธๅฑ] - by @soybeanjs [(f2b51)](https://github.com/honghuangdc/soybean-admin/commit/f2b518e) + +### ๐ Bug Fixes + +- **projects**: + - fix router guide [ไฟฎๅค่ทฏ็ฑ่ทณ่ฝฌๅผๅธธ] fixed #216 - by @soybeanjs in https://github.com/honghuangdc/soybean-admin/issues/216 [(59578)](https://github.com/honghuangdc/soybean-admin/commit/5957833) + - fix better-mock usage [ไฟฎๅคbetter-mock็จๆณ] - by @soybeanjs [(c5764)](https://github.com/honghuangdc/soybean-admin/commit/c57640a) + - tsconfig missing isolatedModules - by @kirklin [(ab49a)](https://github.com/honghuangdc/soybean-admin/commit/ab49afd) + - fix mockjs [ไฟฎๅคmockjs] - by @soybeanjs [(9b19f)](https://github.com/honghuangdc/soybean-admin/commit/9b19f96) + - add prod mockjs switch [ๆทปๅ ็ไบงๆจกๅผ็mockjs็ๅผๅ ณ] - by @soybeanjs [(9f563)](https://github.com/honghuangdc/soybean-admin/commit/9f5638f) + - ไฟฎๅค้ขๅ ๅฑๅฏผ่ชไธๆ่ๅ่ฏญ่จๆพ็คบ้ฎ้ข - by **cc** [(ee8fa)](https://github.com/honghuangdc/soybean-admin/commit/ee8fa04) + - hide the drawer when it is initial mobile mode [ๅๅงๅๆถไธบ็งปๅจ็ซฏๅธๅฑๅ้่ไพง่พนๆ ] fixed #238 - by @soybeanjs in https://github.com/honghuangdc/soybean-admin/issues/238 [(0abde)](https://github.com/honghuangdc/soybean-admin/commit/0abde46) + +### ๐ฅ Performance + +- **projects**: + - complete dynamic route translate [่กฅๅ ๅจๆ่ทฏ็ฑ็็ฟป่ฏ] - by @soybeanjs [(7b746)](https://github.com/honghuangdc/soybean-admin/commit/7b746fa) + - move changing document title by locale to global event of composables & add appLoading unmount - by @soybeanjs [(08e19)](https://github.com/honghuangdc/soybean-admin/commit/08e194e) + +### ๐ Refactors + +- **projects**: + - update useTable - by @soybeanjs [(211ae)](https://github.com/honghuangdc/soybean-admin/commit/211ae1f) + - remove page examples: tree [ๅป้คtree็ธๅ ณ็คบไพ้กต้ข] - by @soybeanjs [(f3090)](https://github.com/honghuangdc/soybean-admin/commit/f309003) + - use better-mock replace mockjs [็จbetter-mockๆฟๆขmockjs] - by @soybeanjs [(9d3c7)](https://github.com/honghuangdc/soybean-admin/commit/9d3c732) + - upgrade vue3.3, official support defineOptions - by @kirklin [(86a37)](https://github.com/honghuangdc/soybean-admin/commit/86a370f) + +### ๐ Documentation + +- **projects**: + - add qq to README.md [ๆๆกฃๆทปๅ QQ็พค] - by @soybeanjs [(f74a6)](https://github.com/honghuangdc/soybean-admin/commit/f74a642) + - update README.md [ๆดๆฐREADME.md] - by @soybeanjs [(39709)](https://github.com/honghuangdc/soybean-admin/commit/397092c) + - update README.md [ๆดๆฐREADME.md] - by @soybeanjs [(5a4f8)](https://github.com/honghuangdc/soybean-admin/commit/5a4f842) + - update README.md [ๆดๆฐREADME.md] - by @soybeanjs [(a765d)](https://github.com/honghuangdc/soybean-admin/commit/a765da6) + - update README.md [ๆดๆฐREADME.md] - by @soybeanjs [(a989b)](https://github.com/honghuangdc/soybean-admin/commit/a989b44) + - ไผๅREADME.md - by @greper [(6ea75)](https://github.com/honghuangdc/soybean-admin/commit/6ea755f) + - readme.md ไบๆฌกๅผๅ็้กน็ฎๅ ๅฎนๆข่ก - by @greper [(f3a17)](https://github.com/honghuangdc/soybean-admin/commit/f3a1707) + - update CHANGELOG.md - by @soybeanjs [(5f6ca)](https://github.com/honghuangdc/soybean-admin/commit/5f6caab) + +### ๐ฆ Build + +- **deps**: + - update deps - by @soybeanjs [(db629)](https://github.com/honghuangdc/soybean-admin/commit/db62959) + - update deps [ๅ็บงไพ่ต] - by @soybeanjs [(f2e82)](https://github.com/honghuangdc/soybean-admin/commit/f2e82da) + - update deps and remove vite-plugin-html [ๅ็บงไพ่ต๏ผๅป้คvite-plugin-html] - by @soybeanjs [(eaf36)](https://github.com/honghuangdc/soybean-admin/commit/eaf3678) + - update deps [ๅ็บงไพ่ต] - by @soybeanjs [(bae17)](https://github.com/honghuangdc/soybean-admin/commit/bae1767) + - update deps [ๅ็บงไพ่ต] - by @soybeanjs [(c2642)](https://github.com/honghuangdc/soybean-admin/commit/c264216) + - update deps [ๅ็บงไพ่ต] - by @soybeanjs [(40f85)](https://github.com/honghuangdc/soybean-admin/commit/40f8587) +- **projects**: + - remove old layout,tab package [ๅป้คๆง็ๅธๅฑๅ้กต็ญพไพ่ต] - by @soybeanjs [(42e6d)](https://github.com/honghuangdc/soybean-admin/commit/42e6de3) + - update deps and fix type error [ๅ็บงไพ่ตๅนถไฟฎๅค็ฑปๅ้ฎ้ข] - by @soybeanjs [(34f02)](https://github.com/honghuangdc/soybean-admin/commit/34f023c) + - update deps and fix style [ๅ็บงไพ่ต&ไฟฎๅคไปฃ็ ๆ ผๅผ] - by @soybeanjs [(c1c43)](https://github.com/honghuangdc/soybean-admin/commit/c1c4335) + +### ๐ก Chore + +- release v0.10.0 - by @soybeanjs [(270a0)](https://github.com/honghuangdc/soybean-admin/commit/270a055) +- **deps**: update deps - by @soybeanjs [(cebbe)](https://github.com/honghuangdc/soybean-admin/commit/cebbef6) +- **projects**: remove useless packages, update lint-staged config, add githublogen - by @soybeanjs [(5aaa3)](https://github.com/honghuangdc/soybean-admin/commit/5aaa318) + +### ๐จ Styles + +- **projects**: per style [ๅฎๅๆ ทๅผ] - by @soybeanjs [(209ef)](https://github.com/honghuangdc/soybean-admin/commit/209ef3d) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/greper) [](https://github.com/kirklin) [](https://github.com/yanbowe) +[cc](mailto:cc@qq.com), [small_happy](mailto:5304122+small_happy@user.noreply.gitee.com), + +## [v0.9.9](https://github.com/honghuangdc/soybean-admin/compare/v0.9.8...v0.9.9) (2023-03-13) + +### ๐ Features + +- **hooks**: + - add useNaiveTable - by @soybeanjs [(cc13f)](https://github.com/honghuangdc/soybean-admin/commit/cc13fcc) +- **projects**: + - custom unocss colors support opacity - by @soybeanjs [(488e6)](https://github.com/honghuangdc/soybean-admin/commit/488e6e3) + - new layout,tab and add update theme settings - by @soybeanjs [(912c3)](https://github.com/honghuangdc/soybean-admin/commit/912c353) + +### ๐ Bug Fixes + +- **components**: + - ้กต้ข่ทณ่ฝฌ่ขซๆฆๆช, ๅไผๅบ็ฐ tab ้กต็ญพไธ้กต้ขไธไธ่ด็้ฎ้ข - by @taisha [(bd5dd)](https://github.com/honghuangdc/soybean-admin/commit/bd5dd2c) + - ไฟฎๅคiconSelect้ๆฉๅจ็นๅปไบไปถๅคฑๆ - by @yanbowe [(7e505)](https://github.com/honghuangdc/soybean-admin/commit/7e505f9) + - refresh cached routes - by @taisha [(b0f98)](https://github.com/honghuangdc/soybean-admin/commit/b0f98e4) +- **projects**: + - fix eslint svg cause incorrect icon render - by @soybeanjs [(0b5af)](https://github.com/honghuangdc/soybean-admin/commit/0b5afda) + - sortRoutes recursively - by @sunhao1256 [(91889)](https://github.com/honghuangdc/soybean-admin/commit/9188941) + - not only `/login` claim dynamic path scenario , but also others , eg:/user/1 - by @sunhao1256 [(60598)](https://github.com/honghuangdc/soybean-admin/commit/6059891) + - the length of routes children list should greater than 0 - by @Shadowsight9 [(e1afc)](https://github.com/honghuangdc/soybean-admin/commit/e1afc10) + - fix pwa logo - by @soybeanjs [(bf2f6)](https://github.com/honghuangdc/soybean-admin/commit/bf2f617) + - fix github bug-report - by @soybeanjs [(f73e3)](https://github.com/honghuangdc/soybean-admin/commit/f73e3f6) +- **utils**: + - make AxiosRequestConfig optional for request.handleDelete() - by @guuuuo [(4a6fe)](https://github.com/honghuangdc/soybean-admin/commit/4a6fec8) + +### ๐ Refactors + +- **projects**: + - all file and folder use kebab-case - by @soybeanjs [(cea60)](https://github.com/honghuangdc/soybean-admin/commit/cea600f) + - update service and proxy config - by @soybeanjs [(8debf)](https://github.com/honghuangdc/soybean-admin/commit/8debfe7) + - remove enum - by @soybeanjs [(21d52)](https://github.com/honghuangdc/soybean-admin/commit/21d5214) + - rename union key - by @soybeanjs [(e2b32)](https://github.com/honghuangdc/soybean-admin/commit/e2b320a) + +### ๐ Documentation + +- **projects**: + - update README.md - by @soybeanjs [(cf8c7)](https://github.com/honghuangdc/soybean-admin/commit/cf8c7cb) + - update README.md - by @soybeanjs [(1ef1b)](https://github.com/honghuangdc/soybean-admin/commit/1ef1b6b) + - update README.md - by @soybeanjs [(aaef0)](https://github.com/honghuangdc/soybean-admin/commit/aaef0be) + +### ๐ฆ Build + +- **deps**: + - update deps - by @soybeanjs [(61998)](https://github.com/honghuangdc/soybean-admin/commit/6199888) +- **projects**: + - update deps and fix project config - by @soybeanjs [(da521)](https://github.com/honghuangdc/soybean-admin/commit/da521b3) + - perf logo - by @soybeanjs [(a8a6e)](https://github.com/honghuangdc/soybean-admin/commit/a8a6ed9) + - update vscode config - by @soybeanjs [(608d7)](https://github.com/honghuangdc/soybean-admin/commit/608d7fb) + - update unocss config - by @soybeanjs [(3503d)](https://github.com/honghuangdc/soybean-admin/commit/3503dff) + - update deps, add prettier format command - by @soybeanjs [(36e5f)](https://github.com/honghuangdc/soybean-admin/commit/36e5fea) + +### ๐ก Chore + +- **projects**: + - add github action - by @lixin59 [(f355a)](https://github.com/honghuangdc/soybean-admin/commit/f355a69) + - ไฟฎๅคissueๆจกๆฟๆ ผๅผ้ฎ้ข - by @lixin59 [(d8bab)](https://github.com/honghuangdc/soybean-admin/commit/d8baba5) +- **release**: + - 0.9.9 - by @soybeanjs [(c0066)](https://github.com/honghuangdc/soybean-admin/commit/c0066b2) + +### ๐จ Styles + +- **projects**: format yaml - by @soybeanjs [(fb46d)](https://github.com/honghuangdc/soybean-admin/commit/fb46d7e) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/guuuuo) [](https://github.com/lixin59) [](https://github.com/taisha) [](https://github.com/Shadowsight9) [](https://github.com/sunhao1256) [](https://github.com/yanbowe) + +## [v0.9.8](https://github.com/honghuangdc/soybean-admin/compare/v0.9.7...v0.9.8) (2023-01-15) + +### ๐ Features + +- setting ้กต้ขๆฐๅข ๆฏๅฆๆพ็คบfooter็ๅผๅ ณ - by @zuihou [(d064f)](https://github.com/honghuangdc/soybean-admin/commit/d064f62) +- ๆฐๅข affix ๅฑๆง๏ผ็จไบๅฐๅ ถๅบๅฎๅจtabๅก - by @zuihou [(e772f)](https://github.com/honghuangdc/soybean-admin/commit/e772ff0) +- **projects**: + - add compress script [ๆทปๅ ๅ็ผฉๅฝไปค] - by @soybeanjs [(be6d4)](https://github.com/honghuangdc/soybean-admin/commit/be6d431) + - add script about generating png logo from [ๆทปๅ ๆ นๆฎsvg็ๆpngๅพๆ ็ๅฝไปค] - by @soybeanjs [(70aee)](https://github.com/honghuangdc/soybean-admin/commit/70aeefe) + - add generate logo script - by @soybeanjs [(25daa)](https://github.com/honghuangdc/soybean-admin/commit/25daa23) + - add new route plugin @soybeanjs/vite-plugin-vue-page-route [้ๆๆฐ็่ทฏ็ฑๆไปถ] - by @soybeanjs [(3131e)](https://github.com/honghuangdc/soybean-admin/commit/3131e00) + +### ๐ Bug Fixes + +- remove height limit h-360px - by @codearhat [(b5c57)](https://github.com/honghuangdc/soybean-admin/commit/b5c570a) +- set password attributes - by @codearhat [(a9a37)](https://github.com/honghuangdc/soybean-admin/commit/a9a3703) +- **components**: + - ไฟฎๅค่ทฏ็ฑๅจpathไธญๅ ๅซ้ๅค่ทฏๅ่ฏๅพ่ๅๆถ๏ผ่ขซๆฟๆดปไผ้่ฏฏๅฑๅผ - by @shabby2333 [(264da)](https://github.com/honghuangdc/soybean-admin/commit/264da00) +- **projects**: + - fix vite-pwa plugin config - by @soybeanjs [(94098)](https://github.com/honghuangdc/soybean-admin/commit/94098d0) + - add router-page.d.ts to git [ๅฐrouter-page.d.tsๆทปๅ gitๆไบค] - by @soybeanjs [(7a580)](https://github.com/honghuangdc/soybean-admin/commit/7a58035) + - fix router when the dynamic routes api was failed [ไฟฎๅคๅฝๅจๆ่ทฏ็ฑๆฅๅฃๅคฑ่ดฅๅ่ทฏ็ฑๅผๅธธ้ฎ้ข] - by @soybeanjs [(f2b58)](https://github.com/honghuangdc/soybean-admin/commit/f2b580f) + - fix login success message [ไฟฎๅค็ปๅฝๆๅ็ๆถๆฏๆ็คบ] - by @soybeanjs [(81039)](https://github.com/honghuangdc/soybean-admin/commit/810398a) + - ไฟฎๅคtabsๅจstatic่ทฏ็ฑๆจกๅผไธๅฏไปฅๅ ณ้ญ้ฆ้กต - by @yanbowe [(7211a)](https://github.com/honghuangdc/soybean-admin/commit/7211a17) + - ไฟฎๅคๅจๆ่ทฏ็ฑๆจกๅผไธ่ทฏ็ฑไธๆๅบ็้ฎ้ข - by @HnyLi [(58b27)](https://github.com/honghuangdc/soybean-admin/commit/58b27c9) + +### ๐ Refactors + +- **czg**: + - update cz-git,czg breaking changes - by @yanbowe [(fcb7a)](https://github.com/honghuangdc/soybean-admin/commit/fcb7ad9) +- **hooks**: + - ้ๆhookๅฝๆฐๅๆถ็ๅฌๆนๅผ - by @yanbowe [(fd948)](https://github.com/honghuangdc/soybean-admin/commit/fd94886) +- **projects**: + - format code style [่ฐๆดไปฃ็ ๆ ผๅผ] - by @soybeanjs [(a9d58)](https://github.com/honghuangdc/soybean-admin/commit/a9d58f8) + - import cz-git, czg replace @soybeanjs/cli [ๅผๅ ฅcz-gitใczgๆฟๆข@soybeanjs/cli] - by @soybeanjs [(1bdd8)](https://github.com/honghuangdc/soybean-admin/commit/1bdd81a) + - perfect scrollbar style [ๅฎๅๆปๅจๆก] - by @soybeanjs [(1a02c)](https://github.com/honghuangdc/soybean-admin/commit/1a02cab) + - refactor app init loading [้ๆ็ณป็ปๅๅงๅ็ๅ ่ฝฝ] - by @soybeanjs [(57bfe)](https://github.com/honghuangdc/soybean-admin/commit/57bfe27) + - new storage system [ๆฐ็ๆฌๅฐๆฐๆฎๅญๅจ็ณป็ป] - by @soybeanjs [(97191)](https://github.com/honghuangdc/soybean-admin/commit/9719159) + - add simple-git-hooks replace husky - by @soybeanjs [(9110d)](https://github.com/honghuangdc/soybean-admin/commit/9110d87) + +### ๐ Documentation + +- **projects**: + - update README - by @soybeanjs [(828a2)](https://github.com/honghuangdc/soybean-admin/commit/828a2f5) + - update README - by @soybeanjs [(a3562)](https://github.com/honghuangdc/soybean-admin/commit/a3562d9) + +### ๐ฆ Build + +- **deps**: + - update deps - by @soybeanjs [(84567)](https://github.com/honghuangdc/soybean-admin/commit/8456750) + - update deps - by @soybeanjs [(fcc65)](https://github.com/honghuangdc/soybean-admin/commit/fcc65c3) + - update deps - by @soybeanjs [(c097b)](https://github.com/honghuangdc/soybean-admin/commit/c097b56) +- **projects**: + - update plugin config - by @soybeanjs [(6a344)](https://github.com/honghuangdc/soybean-admin/commit/6a344ff) + - update deps and perfect the details [ๅ็บงไพ่ต๏ผๅฎๅ็ป่] - by @soybeanjs [(61a43)](https://github.com/honghuangdc/soybean-admin/commit/61a43b8) + - update deps and update config - by @soybeanjs [(b08c3)](https://github.com/honghuangdc/soybean-admin/commit/b08c389) + - update lint-staged config - by @soybeanjs [(0882c)](https://github.com/honghuangdc/soybean-admin/commit/0882c25) + - add VSCode debug config file - by @soybeanjs [(0c126)](https://github.com/honghuangdc/soybean-admin/commit/0c12665) + - update deps - by @soybeanjs [(f7181)](https://github.com/honghuangdc/soybean-admin/commit/f71812d) + +### ๐ก Chore + +- **release**: 0.9.8 - by @soybeanjs [(34ffd)](https://github.com/honghuangdc/soybean-admin/commit/34ffd9c) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/shabby2333) [](https://github.com/HnyLi) [](https://github.com/yanbowe) [](https://github.com/zuihou) [](https://github.com/codearhat) [](https://github.com/RockerHX) + +## [v0.9.7](https://github.com/honghuangdc/soybean-admin/compare/v0.9.6...v0.9.7) (2022-11-08) + +### ๐ Features + +- **projects**: + - ๅขๅ ็ณป็ปๆถๆฏ็ปไปถ - by @yanbowe [(afa01)](https://github.com/honghuangdc/soybean-admin/commit/afa0134) + - ็ณป็ปๆถๆฏ็ปไปถไปฃ็ ไผๅ - by @yanbowe [(95183)](https://github.com/honghuangdc/soybean-admin/commit/9518372) + - ๅขๅ ่ฟๅ้กถ้จๅ่ฝ - by @yanbowe [(894b0)](https://github.com/honghuangdc/soybean-admin/commit/894b0f1) + - ๆทปๅ ็ไบง็ไธป้ข้ ็ฝฎ็ผๅญ - by @soybeanjs [(718c3)](https://github.com/honghuangdc/soybean-admin/commit/718c362) + - ๆทปๅ provideใinjectไธไธๆ็คบไพ - by @soybeanjs [(a4447)](https://github.com/honghuangdc/soybean-admin/commit/a444731) + - ๆทปๅ ็ปไปถๅ็งฐ๏ผ่ฐๆดvueๆไปถ้้ข็็ฑปๅๅฃฐๆไฝ็ฝฎ - by @soybeanjs [(f64bc)](https://github.com/honghuangdc/soybean-admin/commit/f64bc91) + - ้้ ็งปๅจ็ซฏ๏ผไฟฎๅคTabๅ ณ้ญๅพๆ ็bug - by @soybeanjs [(296b1)](https://github.com/honghuangdc/soybean-admin/commit/296b154) + - ๆทปๅ ็ณป็ป็ฎก็็้กต้ข - by @soybeanjs [(c33b5)](https://github.com/honghuangdc/soybean-admin/commit/c33b5eb) + - useNaiveTableๅฝๆฐ๏ผ็ฑปๅ้จๅ - by @soybeanjs [(02992)](https://github.com/honghuangdc/soybean-admin/commit/02992dc) + - ๆทปๅ ่ฏทๆฑ้้ adapterๅฑๅบ็จ็็คบไพ้กต้ข - by @soybeanjs [(8d11a)](https://github.com/honghuangdc/soybean-admin/commit/8d11a6a) + - ๅฎ็ฐ็จๆท็ฎก็้กต้ข - by @soybeanjs [(472f9)](https://github.com/honghuangdc/soybean-admin/commit/472f93b) + - ๅ จๅฑๆ็ดข่ๅๅๆถๆฏ้็ฅ้้ ็งปๅจ็ซฏ - by @yanbowe [(97e2f)](https://github.com/honghuangdc/soybean-admin/commit/97e2ffd) + - support constant route without login status[ๆฏๆๆช็ปๅฝ็ถๆไธ่ฎฟ้ฎ่ชๅฎไน็ๅบๅฎ่ทฏ็ฑ] - by @soybeanjs [(a5391)](https://github.com/honghuangdc/soybean-admin/commit/a539112) + - add pinia setup syntax example: setup-store[ๆทปๅ setup syntax็pinia็คบไพsetup-store] - by @soybeanjs [(82c4b)](https://github.com/honghuangdc/soybean-admin/commit/82c4b09) + - add constant route page without login status[ๆทปๅ ๆช็ปๅฝๅฏ่ฎฟ้ฎ็ๅบๅฎ่ทฏ็ฑ็คบไพ้กต้ข] - by @soybeanjs [(78efd)](https://github.com/honghuangdc/soybean-admin/commit/78efd77) + - refactor icon system, unify icon usage [้ๆๅพๆ ็ณป็ป๏ผ็ปไธๅพๆ ็จๆณ] - by @soybeanjs [(811f8)](https://github.com/honghuangdc/soybean-admin/commit/811f820) + - import i18n [ๅผๅ ฅi18n] - by @soybeanjs [(b632b)](https://github.com/honghuangdc/soybean-admin/commit/b632b7f) + - new router system [ๆฐ็่ทฏ็ฑ็ณป็ป] - by @soybeanjs [(c7b6a)](https://github.com/honghuangdc/soybean-admin/commit/c7b6a3f) +- **tabs**: + - ๅค้กต็ญพๅขๅ ๅ ณ้ญๆๆ - by @yanbowe [(8237a)](https://github.com/honghuangdc/soybean-admin/commit/8237adb) + +### ๐ Bug Fixes + +- **deps**: + - decrease @types/node version to fix TS type error [้ไฝ@types/node็ๆฌไฟฎๅคTS็็ฑปๅ้่ฏฏ] - by @soybeanjs [(149d2)](https://github.com/honghuangdc/soybean-admin/commit/149d22a) +- **projects**: + - ไฟฎๅคtabไธๆพ็คบ่ทฏ็ฑ้ฆ้กต็้ฎ้ข - by @soybeanjs [(a792b)](https://github.com/honghuangdc/soybean-admin/commit/a792bb5) + - ไฟฎๅคๅคไธชๅ็ซฏๆๅกๆถ็ๆฌๅฐไปฃ็ - by @soybeanjs [(2aba5)](https://github.com/honghuangdc/soybean-admin/commit/2aba58c) + - ไฟฎๅคๅพๆ ็TS็ฑปๅ - by @soybeanjs [(dbd67)](https://github.com/honghuangdc/soybean-admin/commit/dbd6760) + - ไฟฎๅคimport.meta.env็TS็ฑปๅ - by @soybeanjs [(19942)](https://github.com/honghuangdc/soybean-admin/commit/1994262) + - ไฟฎๅคๆๅปบๅmockjsๅฏนxhr็ๅฝฑๅ้ฎ้ข - by @soybeanjs [(77572)](https://github.com/honghuangdc/soybean-admin/commit/7757285) + - ไฟฎๅคTS็ฑปๅ้ฎ้ข - by @soybeanjs [(16dce)](https://github.com/honghuangdc/soybean-admin/commit/16dce9a) + - ไฟฎๅคeslint่งๅ - by @soybeanjs [(d7f5b)](https://github.com/honghuangdc/soybean-admin/commit/d7f5bf3) + - add iconify json - by @soybeanjs [(8a1ec)](https://github.com/honghuangdc/soybean-admin/commit/8a1ec93) +- **svg-icon**: + - ่ชๅฎไนๅพๆ ๅจDropdown็ปไปถไธhover็ถๆๆ ๆณๆพ็คบๅพๆ - by @yanbowe [(0523f)](https://github.com/honghuangdc/soybean-admin/commit/0523f08) +- **utils**: + - ไฟฎๅคiconifyRender - by @soybeanjs [(c37d0)](https://github.com/honghuangdc/soybean-admin/commit/c37d0ac) + +### ๐ฅ Performance + +- **components**: + - ๆทปๅ ๆดๅคไธป้ข้ข่ฒ่ฎพ็ฝฎๆจกๆ็ช็ๅฑ็บง - by @xiaotao2018 [(ee7eb)](https://github.com/honghuangdc/soybean-admin/commit/ee7eb3a) + - ๆทปๅ ๆดๅคไธป้ข้ข่ฒ่ฎพ็ฝฎๆจกๆ็ช็ๅฑ็บง๏ผz-indexไธบint - by @xiaotao2018 [(e2d65)](https://github.com/honghuangdc/soybean-admin/commit/e2d6554) + +### ๐ Refactors + +- **projects**: + - ไปฃ็ ไผๅ - by @yanbowe [(41147)](https://github.com/honghuangdc/soybean-admin/commit/41147b3) + - ๆทปๅ subscribeAppStore - by @soybeanjs [(aa2f7)](https://github.com/honghuangdc/soybean-admin/commit/aa2f78a) + - ไปฃ็ ไผๅ - by @soybeanjs [(b60db)](https://github.com/honghuangdc/soybean-admin/commit/b60db89) + - ไปฃ็ ไผๅ - by @soybeanjs [(61436)](https://github.com/honghuangdc/soybean-admin/commit/6143605) + - ่ฏทๆฑ้้ ๅจๅฝๆฐ่ๅ้ๆใไผๅ่ฏทๆฑ็ธๅ ณ็ๅฝๅ - by @soybeanjs [(7f9c9)](https://github.com/honghuangdc/soybean-admin/commit/7f9c98a) + - ๆดๆฐๆ็ดขๅผน็ช็ๅพๆ - by @soybeanjs [(ed9cd)](https://github.com/honghuangdc/soybean-admin/commit/ed9cd6c) + - ๆฝ็ฆปๆ ผๅผๅ็ธๅ ณไพ่ต้ ็ฝฎ - by @soybeanjs [(f4d37)](https://github.com/honghuangdc/soybean-admin/commit/f4d37cf) + - ไปฃ็ ไผๅ - by @soybeanjs [(49f95)](https://github.com/honghuangdc/soybean-admin/commit/49f95c4) + - cancel autoinstall @iconify-json [ๅๆถ@iconify-json่ชๅจๅฎ่ฃ ] - by @soybeanjs [(c29b8)](https://github.com/honghuangdc/soybean-admin/commit/c29b887) + - refactor page: user-management [้ๆ็จๆท็ฎก็้กต้ข] - by @soybeanjs [(468b4)](https://github.com/honghuangdc/soybean-admin/commit/468b4bb) + +### ๐ Documentation + +- **projects**: + - update README.md - by @soybeanjs [(e2727)](https://github.com/honghuangdc/soybean-admin/commit/e2727e6) + - revert docs - by @soybeanjs [(2c562)](https://github.com/honghuangdc/soybean-admin/commit/2c56233) + +### ๐ฆ Build + +- **deps**: + - update deps - by @soybeanjs [(69e39)](https://github.com/honghuangdc/soybean-admin/commit/69e39c1) + - update deps - by @soybeanjs [(ea1a3)](https://github.com/honghuangdc/soybean-admin/commit/ea1a336) + - update deps - by @soybeanjs [(73fa3)](https://github.com/honghuangdc/soybean-admin/commit/73fa3d1) + - update deps - by @soybeanjs [(973ab)](https://github.com/honghuangdc/soybean-admin/commit/973ab14) + - update deps - by @soybeanjs [(75000)](https://github.com/honghuangdc/soybean-admin/commit/750000e) + - update deps - by @soybeanjs [(8dcfb)](https://github.com/honghuangdc/soybean-admin/commit/8dcfbb2) + - update deps - by @soybeanjs [(1523c)](https://github.com/honghuangdc/soybean-admin/commit/1523c7b) + - update deps - by @soybeanjs [(da407)](https://github.com/honghuangdc/soybean-admin/commit/da407b6) + - update deps - by @soybeanjs [(cec0f)](https://github.com/honghuangdc/soybean-admin/commit/cec0f25) + - update deps - by @soybeanjs [(d9cfe)](https://github.com/honghuangdc/soybean-admin/commit/d9cfeab) + - update deps - by @soybeanjs [(dd113)](https://github.com/honghuangdc/soybean-admin/commit/dd11324) + - update deps - by @soybeanjs [(d0823)](https://github.com/honghuangdc/soybean-admin/commit/d0823b0) + - update deps - by @soybeanjs [(94ff7)](https://github.com/honghuangdc/soybean-admin/commit/94ff787) + - update deps - by @soybeanjs [(b32bc)](https://github.com/honghuangdc/soybean-admin/commit/b32bca4) + - update deps - by @soybeanjs [(f6b61)](https://github.com/honghuangdc/soybean-admin/commit/f6b6141) + - update deps - by @soybeanjs [(0f0cd)](https://github.com/honghuangdc/soybean-admin/commit/0f0cd0b) + - ๆดๆฐ@soybeanjs/eslint-config - by @soybeanjs [(36f06)](https://github.com/honghuangdc/soybean-admin/commit/36f06bc) + - update deps - by @soybeanjs [(d9324)](https://github.com/honghuangdc/soybean-admin/commit/d9324f0) + - update deps - by @soybeanjs [(1ad92)](https://github.com/honghuangdc/soybean-admin/commit/1ad92a2) + - ๅ็บงไพ่ต - by @soybeanjs [(7240b)](https://github.com/honghuangdc/soybean-admin/commit/7240be8) + - update deps - by @soybeanjs [(c5ba6)](https://github.com/honghuangdc/soybean-admin/commit/c5ba631) + - update deps - by @soybeanjs [(3e0cc)](https://github.com/honghuangdc/soybean-admin/commit/3e0cc8c) + - update deps - by @soybeanjs [(21b6f)](https://github.com/honghuangdc/soybean-admin/commit/21b6fb6) + - update deps - by @soybeanjs [(d823e)](https://github.com/honghuangdc/soybean-admin/commit/d823ee5) + - unplugin-vue-define-optionsๆฟๆขไธบunplugin-vue-macros - by @soybeanjs [(22c90)](https://github.com/honghuangdc/soybean-admin/commit/22c9025) + - update deps - by @soybeanjs [(7dd7c)](https://github.com/honghuangdc/soybean-admin/commit/7dd7c71) + - update deps - by @soybeanjs [(fe8ca)](https://github.com/honghuangdc/soybean-admin/commit/fe8cab3) + - unplugin-icon autoinstall @iconify-json [unplugin-icon่ชๅจๅฎ่ฃ @iconify-json] - by @soybeanjs [(c045e)](https://github.com/honghuangdc/soybean-admin/commit/c045e3f) + - update deps [ๅ็บงไพ่ต] - by @soybeanjs [(331b1)](https://github.com/honghuangdc/soybean-admin/commit/331b14e) + - update deps - by @soybeanjs [(88e53)](https://github.com/honghuangdc/soybean-admin/commit/88e535f) + - update deps - by @soybeanjs [(89985)](https://github.com/honghuangdc/soybean-admin/commit/8998581) + - update deps - by @soybeanjs [(65ac6)](https://github.com/honghuangdc/soybean-admin/commit/65ac69e) + - update deps - by @soybeanjs [(abd02)](https://github.com/honghuangdc/soybean-admin/commit/abd02d1) + - update deps - by @soybeanjs [(d6b15)](https://github.com/honghuangdc/soybean-admin/commit/d6b1530) + - update deps - by @soybeanjs [(8e801)](https://github.com/honghuangdc/soybean-admin/commit/8e801dd) + - update deps - by @soybeanjs [(41b3b)](https://github.com/honghuangdc/soybean-admin/commit/41b3bcb) + - update deps - by @soybeanjs [(1f3e6)](https://github.com/honghuangdc/soybean-admin/commit/1f3e6e4) + - update deps - by @soybeanjs [(74772)](https://github.com/honghuangdc/soybean-admin/commit/74772a1) +- **projects**: + - ไปฃ็ ไผๅ - by @soybeanjs [(5c1b0)](https://github.com/honghuangdc/soybean-admin/commit/5c1b086) + - update tsconfig - by @soybeanjs [(9ce58)](https://github.com/honghuangdc/soybean-admin/commit/9ce5807) + - update vscode settings - by @soybeanjs [(3fe4e)](https://github.com/honghuangdc/soybean-admin/commit/3fe4e92) + - ๆทปๅ .gitattributes - by @soybeanjs [(896e6)](https://github.com/honghuangdc/soybean-admin/commit/896e6f2) + - ไปฃ็ ไผๅ - by @soybeanjs [(6a9a3)](https://github.com/honghuangdc/soybean-admin/commit/6a9a362) + - ๅ็บงไพ่ต๏ผๆทปๅ ๅฏนjson็eslintๆฃๆตๅๆ ผๅผๅ - by @soybeanjs [(711a4)](https://github.com/honghuangdc/soybean-admin/commit/711a4ae) + - update deps and README.md - by @soybeanjs [(35aee)](https://github.com/honghuangdc/soybean-admin/commit/35aeedf) + - ๅ็บงไพ่ตใvite้ ็ฝฎoptimizeDeps - by @soybeanjs [(ee434)](https://github.com/honghuangdc/soybean-admin/commit/ee434b4) + - ๅป้คprettier๏ผๅทฒ้ๆ่ฟ@soybeanjs/eslint-config - by @soybeanjs [(182da)](https://github.com/honghuangdc/soybean-admin/commit/182dac0) + - update eslint - by @soybeanjs [(907cf)](https://github.com/honghuangdc/soybean-admin/commit/907cf44) + - ๅผๅ ฅpwaๆไปถ๏ผๆดๆฐ้ ็ฝฎ - by @soybeanjs [(695ec)](https://github.com/honghuangdc/soybean-admin/commit/695ec7e) + - ๆดๆฐไพ่ตใ่ฐๆด้กต้ข - by @soybeanjs [(40ecc)](https://github.com/honghuangdc/soybean-admin/commit/40ecc32) + - ๅผๅ ฅvite-plugin-progress - by @soybeanjs [(44ab0)](https://github.com/honghuangdc/soybean-admin/commit/44ab077) + - ๅ็บงไพ่ตใไฟฎๅคTๆ ็ญพๅณ้ฎ่ๅ่ฟ็ปญๆพ็คบ้ฎ้ข - by @soybeanjs [(639c4)](https://github.com/honghuangdc/soybean-admin/commit/639c445) + - ๅผๅ ฅTS้ซ็บง็ฑปๅๅบ - by @soybeanjs [(71a75)](https://github.com/honghuangdc/soybean-admin/commit/71a753f) + - ๆดๆขeslintไพ่ตไธบeslint-config-soybeanjs-vue - by @soybeanjs [(07325)](https://github.com/honghuangdc/soybean-admin/commit/07325a4) + - ๅ็บงไพ่ต๏ผ้ไฝnaive-ui็ๆฌไฟฎๅคๆๅ ้ฎ้ข - by @soybeanjs [(f408e)](https://github.com/honghuangdc/soybean-admin/commit/f408ea0) + - ๅ็บงไพ่ต๏ผไฟฎๅคTS็ฑปๅ - by @soybeanjs [(73ce5)](https://github.com/honghuangdc/soybean-admin/commit/73ce53a) + - ๅผๅ ฅ@unocss/viteๆฟๆขunocss๏ผ็ฒพ็ฎไฝ็งฏ - by @soybeanjs [(3540b)](https://github.com/honghuangdc/soybean-admin/commit/3540b75) + - update deps, update logos - by @soybeanjs [(22c05)](https://github.com/honghuangdc/soybean-admin/commit/22c0567) + - add constant page content - by @soybeanjs [(13d0c)](https://github.com/honghuangdc/soybean-admin/commit/13d0c41) + - add tauri scripts, change tauri icon, fix mockjs [ๆทปๅ tauri็ธๅ ณ็ๅฝไปค๏ผๅๆดtauriๅพๆ ๏ผไฟฎๅคmockjs] - by @soybeanjs [(1b45b)](https://github.com/honghuangdc/soybean-admin/commit/1b45b71) + - use @soybeanjs/cli replace commitizen - by @soybeanjs [(428d4)](https://github.com/honghuangdc/soybean-admin/commit/428d41b) + - use pnpm patch replace @milahu/patch-package - by @soybeanjs [(9455a)](https://github.com/honghuangdc/soybean-admin/commit/9455ad9) + - remove useless file: commitlint.config.js - by @soybeanjs [(67736)](https://github.com/honghuangdc/soybean-admin/commit/6773659) + - move tauri to branch tauri - by @soybeanjs [(6c14b)](https://github.com/honghuangdc/soybean-admin/commit/6c14bfe) + - update deps and update config - by @soybeanjs [(7d699)](https://github.com/honghuangdc/soybean-admin/commit/7d69992) + - new router branch - by @soybeanjs [(288d5)](https://github.com/honghuangdc/soybean-admin/commit/288d586) + - add vite plugin @soybeanjs/router-page - by @soybeanjs [(40c1e)](https://github.com/honghuangdc/soybean-admin/commit/40c1e13) + +### ๐ก Chore + +- **other**: + - release v0.9.7 - by @soybeanjs [(cc00c)](https://github.com/honghuangdc/soybean-admin/commit/cc00c8f) +- **projects**: + - ๆดๆฐ.cz-config - by @soybeanjs [(b18c4)](https://github.com/honghuangdc/soybean-admin/commit/b18c49e) + - ๆดๆฐeslint้ ็ฝฎ - by @soybeanjs [(872bb)](https://github.com/honghuangdc/soybean-admin/commit/872bb84) + +### ๐ค CI + +- add docker build - by @zq-xu [(af740)](https://github.com/honghuangdc/soybean-admin/commit/af74046) +- change docker image name - by @zq-xu [(6fbde)](https://github.com/honghuangdc/soybean-admin/commit/6fbde1e) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/hhstore) [](https://github.com/zq-xu) [](https://github.com/yanbowe) [](https://github.com/xiaotao2018) + +## [v0.9.6](https://github.com/honghuangdc/soybean-admin/compare/v0.9.5...v0.9.6) (2022-06-16) + +### ๐ Features + +- **projects**: + - ๆฐๅขAntv G2ๅพ่กจ็คบไพ - by @soybeanjs [(2d64a)](https://github.com/honghuangdc/soybean-admin/commit/2d64a2e) + - ไธไธ็ปๆ๏ผ่ๅๆฏๆๆจชๅๆปๅจ - by @suiyingsky [(80805)](https://github.com/honghuangdc/soybean-admin/commit/808051b) + - ๅขๅ ่ฎพ็ฝฎๅฝๅTab้กต็ญพๅ็งฐๅ่ฝ - by @yanbowe [(48721)](https://github.com/honghuangdc/soybean-admin/commit/487213b) + - ๆฌๅฐsvgๅจๆๆธฒๆๅพๆ - by @soybeanjs [(c3c97)](https://github.com/honghuangdc/soybean-admin/commit/c3c975e) + +### ๐ Bug Fixes + +- **projects**: + - ไฟฎๅค้กถ้จ่ๅ็ไฝ็ฝฎๅคฑๆ้ฎ้ข - by @honghuangdc [(4ee0d)](https://github.com/honghuangdc/soybean-admin/commit/4ee0d94) + - ่ฎพ็ฝฎtabๆ ้ขๅฏผ่ดmetaๅฑๆงไธขๅคฑ - by @yanbowe [(efcfa)](https://github.com/honghuangdc/soybean-admin/commit/efcfa57) + +### ๐ Refactors + +- **projects**: + - ไผๅ่ๅๆฏๆๆจชๅๆปๅจ - by @soybeanjs [(8f3e8)](https://github.com/honghuangdc/soybean-admin/commit/8f3e855) + - ไปฃ็ ไผๅ - by @honghuangdc [(5fa82)](https://github.com/honghuangdc/soybean-admin/commit/5fa822f) + +### ๐ Documentation + +- **projects**: update README.md - by @soybeanjs [(0c70a)](https://github.com/honghuangdc/soybean-admin/commit/0c70a9e) + +### ๐ฆ Build + +- **deps**: + - update deps - by @soybeanjs [(906ae)](https://github.com/honghuangdc/soybean-admin/commit/906aed5) + - update deps - by @soybeanjs [(9917b)](https://github.com/honghuangdc/soybean-admin/commit/9917b5e) + - update deps - by @soybeanjs [(83301)](https://github.com/honghuangdc/soybean-admin/commit/833018a) +- **projects**: + - update deps, update config - by @honghuangdc [(8e6e7)](https://github.com/honghuangdc/soybean-admin/commit/8e6e787) + +### ๐ก Chore + +- **release**: 0.9.6 - by @soybeanjs [(65c21)](https://github.com/honghuangdc/soybean-admin/commit/65c2181) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/yanbowe) [](https://github.com/honghuangdc) [](https://github.com/suiyingsky) + +## [v0.9.5](https://github.com/honghuangdc/soybean-admin/compare/v0.9.4...v0.9.5) (2022-06-07) + +### ๐ Features + +- **projects**: + - ๆทปๅ ่ชๅจ่ท้็ณป็ปไธป้ข่ฎพ็ฝฎ - by @toolvcn [(ba07b)](https://github.com/honghuangdc/soybean-admin/commit/ba07b69) + - ๅผๅ ฅechartsๆฟๆขantvG2plot - by @soybeanjs [(e7ad0)](https://github.com/honghuangdc/soybean-admin/commit/e7ad086) + - ๆทปๅ ็พๅบฆๅฐๅพใๅ็บงไพ่ต - by @soybeanjs [(39854)](https://github.com/honghuangdc/soybean-admin/commit/39854a4) + - ๆทปๅ ๆไปถ้กต้ข๏ผๅพ่กจ - by @soybeanjs [(0a46e)](https://github.com/honghuangdc/soybean-admin/commit/0a46ea0) + - ๆทปๅ antv g2ๅพ่กจ็คบไพ - by @soybeanjs [(44b02)](https://github.com/honghuangdc/soybean-admin/commit/44b022a) + - ่กฅๅ ๆดๅค็ECharts็คบไพ - by @soybeanjs [(c7762)](https://github.com/honghuangdc/soybean-admin/commit/c776249) + - ๅจๆ่ทฏ็ฑๆ น่ทฏ็ฑ้ๅฎๅๅช้ๅๅณไบๅ็ซฏ่ฟๅ็่ทฏ็ฑ้ฆ้กต - by @soybeanjs [(434ab)](https://github.com/honghuangdc/soybean-admin/commit/434ab1c) + - ๆฏๆๅไธ่ทฏ็ฑๆ นๆฎไธๅqueryๅhashๅๆถๆพ็คบไธๅTab - by @soybeanjs [(41226)](https://github.com/honghuangdc/soybean-admin/commit/4122685) +- **route**: + - ่ทฏ็ฑmetaๆฐๅขactiveMenuๅฑๆง - by @yanbowe [(ebd16)](https://github.com/honghuangdc/soybean-admin/commit/ebd16a4) + +### ๐ Bug Fixes + +- **projects**: + - ไฟฎๅคๆไปถไธๅญๅจ็้่ฏฏๆ็คบ - by @ThinkDevelop [(71652)](https://github.com/honghuangdc/soybean-admin/commit/7165282) + - ไฟฎๅคๆ้ๅๆข่ทฏ็ฑๆฐๆฎๆชๆดๆฐ็้ฎ้ข - by @soybeanjs [(60f91)](https://github.com/honghuangdc/soybean-admin/commit/60f9125) + - ไฟฎๅค้กต้ขๅๆขๆถๅฏผ่ด็ๆบขๅบๆปๅจๆก - by @soybeanjs [(e0233)](https://github.com/honghuangdc/soybean-admin/commit/e023306) + - ไฟฎๅค@antv/g2็ไบง็ฏๅขๆฅ้ - by @soybeanjs [(4558c)](https://github.com/honghuangdc/soybean-admin/commit/4558c24) +- **route**: + - ๅฝไธบๅทฆไพงๆททๅ่ๅๆถactiveMenuๆ ๆๆ ๅต - by @yanbowe [(3e4f9)](https://github.com/honghuangdc/soybean-admin/commit/3e4f9e2) + +### ๐ Refactors + +- **layouts**: + - layout/header ๅ่ฝฌ่ฒๆ ทๅผ่กฅๅ - by **ๅ ๅฎถๆฟ** [(01d0b)](https://github.com/honghuangdc/soybean-admin/commit/01d0bcb) +- **projects**: + - ไปฃ็ ไผๅ - by @honghuangdc [(14c14)](https://github.com/honghuangdc/soybean-admin/commit/14c145e) + - ไปฃ็ ไผๅ - by @soybeanjs [(3590b)](https://github.com/honghuangdc/soybean-admin/commit/3590b65) + - ไปฃ็ ไผๅ - by @soybeanjs [(a1c7e)](https://github.com/honghuangdc/soybean-admin/commit/a1c7e10) + - ไปฃ็ ไผๅ - by @soybeanjs [(44ab5)](https://github.com/honghuangdc/soybean-admin/commit/44ab55d) + - ไปฃ็ ไผๅ - by @soybeanjs [(095c4)](https://github.com/honghuangdc/soybean-admin/commit/095c432) + - ไปฃ็ ไผๅ - by @soybeanjs [(d28b9)](https://github.com/honghuangdc/soybean-admin/commit/d28b903) + - ไปฃ็ ไผๅ - by @soybeanjs [(4c2f5)](https://github.com/honghuangdc/soybean-admin/commit/4c2f535) + - ไปฃ็ ไผๅ - by @soybeanjs [(d9ac7)](https://github.com/honghuangdc/soybean-admin/commit/d9ac7e4) +- **styles**: + - ไปฃ็ ๆ ผๅผ - by @soybeanjs [(8f6d6)](https://github.com/honghuangdc/soybean-admin/commit/8f6d6ce) + +### ๐ Documentation + +- **projects**: + - update README.md - by @soybeanjs [(3d8be)](https://github.com/honghuangdc/soybean-admin/commit/3d8befa) + - update README.md - by @honghuangdc [(21e63)](https://github.com/honghuangdc/soybean-admin/commit/21e6399) + - update README.md - by @honghuangdc [(0811f)](https://github.com/honghuangdc/soybean-admin/commit/0811ffa) + - update README.md - by @soybeanjs [(84cb0)](https://github.com/honghuangdc/soybean-admin/commit/84cb07b) + - update README.md - by @soybeanjs [(4b80a)](https://github.com/honghuangdc/soybean-admin/commit/4b80a66) + - update docs - by @honghuangdc [(e9656)](https://github.com/honghuangdc/soybean-admin/commit/e9656c6) + - update README.md - by @honghuangdc [(ae99e)](https://github.com/honghuangdc/soybean-admin/commit/ae99e57) + +### ๐ฆ Build + +- **deps**: + - update deps - by @honghuangdc [(518f7)](https://github.com/honghuangdc/soybean-admin/commit/518f7ee) + - update deps - by @soybeanjs [(92b84)](https://github.com/honghuangdc/soybean-admin/commit/92b8406) + - update deps - by @soybeanjs [(50d7c)](https://github.com/honghuangdc/soybean-admin/commit/50d7ccd) + - update deps - by @soybeanjs [(3f822)](https://github.com/honghuangdc/soybean-admin/commit/3f822a7) + - update deps - by @soybeanjs [(02809)](https://github.com/honghuangdc/soybean-admin/commit/028096e) + - update deps - by @soybeanjs [(be45d)](https://github.com/honghuangdc/soybean-admin/commit/be45d83) + - update deps - by @soybeanjs [(6a5a3)](https://github.com/honghuangdc/soybean-admin/commit/6a5a357) + - ไพ่ตๅ็บง - by @honghuangdc [(e3c4a)](https://github.com/honghuangdc/soybean-admin/commit/e3c4a6e) +- **other**: + - update cz config - by @honghuangdc [(07baa)](https://github.com/honghuangdc/soybean-admin/commit/07baac7) +- **projects**: + - update config - by @soybeanjs [(a0c40)](https://github.com/honghuangdc/soybean-admin/commit/a0c405d) + - ไปฃ็ ไผๅ - by @soybeanjs [(de09f)](https://github.com/honghuangdc/soybean-admin/commit/de09f82) + - ้ ็ฝฎไผๅ - by @honghuangdc [(fd787)](https://github.com/honghuangdc/soybean-admin/commit/fd78791) + - ้ ็ฝฎๆดๆน - by @honghuangdc [(c8717)](https://github.com/honghuangdc/soybean-admin/commit/c8717c2) + +### ๐ก Chore + +- **deps**: + - update deps - by @soybeanjs [(a70e4)](https://github.com/honghuangdc/soybean-admin/commit/a70e416) + - update deps - by @soybeanjs [(7487a)](https://github.com/honghuangdc/soybean-admin/commit/7487ab7) +- **release**: + - 0.9.5 - by @soybeanjs [(08d83)](https://github.com/honghuangdc/soybean-admin/commit/08d83ec) + +### ๐จ Styles + +- **GlobalBreadcrumb**: ไปฃ็ ๆ ผๅผfix - by @tclyjy [(0243b)](https://github.com/honghuangdc/soybean-admin/commit/0243b27) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/honghuangdc) [](https://github.com/yanbowe) [](https://github.com/ThinkDevelop) [](https://github.com/tclyjy) [](https://github.com/toolvcn) +[ๅ ๅฎถๆฟ](mailto:jiayi.yuan@lkcoffee.com), + +## [v0.9.4](https://github.com/honghuangdc/soybean-admin/compare/main-0428...v0.9.4) (2022-04-29) + +### ๐ Features + +- **layouts**: + - ๆทปๅ ไพง่พนๆ /ๅคด้จ็ๅ่ฝฌๆจกๅผๆฅๅขๅ ๅฏนๆฏๅบฆ - by **ๅ ๅฎถๆฟ** [(861c8)](https://github.com/honghuangdc/soybean-admin/commit/861c8b9) +- **projects**: + - ๅผๅ ฅunocssๆฟๆขwindicss - by @honghuangdc [(c9d3e)](https://github.com/honghuangdc/soybean-admin/commit/c9d3e5a) + - HTML lang ไฟฎๆนไธบ zh-cmn-Hans - by @toolvcn [(b9c5c)](https://github.com/honghuangdc/soybean-admin/commit/b9c5c34) + - ๆ้ๅฎๅๅๆ้็คบไพ้กต้ข - by @soybeanjs [(80744)](https://github.com/honghuangdc/soybean-admin/commit/807448a) + - mockๆทปๅ ๆ้่ฟๆปค - by @soybeanjs [(7f435)](https://github.com/honghuangdc/soybean-admin/commit/7f4350a) + +### ๐ Bug Fixes + +- **projects**: + - ๆทปๅ .npmrcไฟฎๅคๆ ๆณ่ทๅ่ชๅจๅผๅ ฅ็ๅ จๅฑ็ปไปถๅฃฐๆ็ฑปๅ - by @honghuangdc [(e8488)](https://github.com/honghuangdc/soybean-admin/commit/e8488e4) + - ไฟฎๅคๆ ทๅผ - by @honghuangdc [(e8999)](https://github.com/honghuangdc/soybean-admin/commit/e899914) + +### ๐ Refactors + +- **projects**: + - mockๆ้็ธๅ ณๆฐๆฎไผๅ - by @soybeanjs [(41e46)](https://github.com/honghuangdc/soybean-admin/commit/41e46a5) + - ไปฃ็ ไผๅ - by @soybeanjs [(251b5)](https://github.com/honghuangdc/soybean-admin/commit/251b5b9) + - ไปฃ็ ไผๅ - by @honghuangdc [(a7824)](https://github.com/honghuangdc/soybean-admin/commit/a782461) + - ็ป่ไผๅ - by @soybeanjs [(c275f)](https://github.com/honghuangdc/soybean-admin/commit/c275f26) + - layoutๅtab็ปไปถไพ่ตๅ็งฐๅๆดใๆ ทๅผไฟฎๅค - by @soybeanjs [(de5fb)](https://github.com/honghuangdc/soybean-admin/commit/de5fb84) + - merge branch unocss to main - by @soybeanjs [(69d51)](https://github.com/honghuangdc/soybean-admin/commit/69d5131) + - ๅจๆ่ทฏ็ฑๆ้ๅฎๅ - by @soybeanjs [(55ddc)](https://github.com/honghuangdc/soybean-admin/commit/55ddc9c) + +### ๐ Documentation + +- **projects**: update README.md - by @soybeanjs [(d5c75)](https://github.com/honghuangdc/soybean-admin/commit/d5c7511) + +### ๐ฆ Build + +- **deps**: update deps - by @honghuangdc [(5c75e)](https://github.com/honghuangdc/soybean-admin/commit/5c75e9d) +- **projects**: ็ป่่ฐๆด - by @soybeanjs [(401f0)](https://github.com/honghuangdc/soybean-admin/commit/401f0c7) + +### ๐ก Chore + +- **release**: 0.9.4 - by @soybeanjs [(97c92)](https://github.com/honghuangdc/soybean-admin/commit/97c9262) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/honghuangdc) [](https://github.com/toolvcn) +[ๅ ๅฎถๆฟ](mailto:jiayi.yuan@luckincoffee.com), + +## [v0.10.2](https://github.com/honghuangdc/soybean-admin/compare/v0.9.3...main-0428) (23-06-07) + +### ๐ Features + +- **layouts**: + - ๆทปๅ ไพง่พนๆ /ๅคด้จ็ๅ่ฝฌๆจกๅผๆฅๅขๅ ๅฏนๆฏๅบฆ - by **ๅ ๅฎถๆฟ** [(3c8dd)](https://github.com/honghuangdc/soybean-admin/commit/3c8dd77) +- **projects**: + - ๆฐๅข้ๆ่ทฏ็ฑ - by @soybeanjs [(ca2df)](https://github.com/honghuangdc/soybean-admin/commit/ca2dfa6) + - ๆไปถๆนๅผๆ้ๅผๅ ฅnaiveUI - by @soybeanjs [(6bed9)](https://github.com/honghuangdc/soybean-admin/commit/6bed9ea) + - ๆทปๅ ่ฏทๆฑ้้ ๅจ็่ฏทๆฑ็คบไพ - by @soybeanjs [(bed42)](https://github.com/honghuangdc/soybean-admin/commit/bed4292) + - ็ปๅฝ้กต้ข้้ ็งปๅจ็ซฏ - by @soybeanjs [(ec077)](https://github.com/honghuangdc/soybean-admin/commit/ec0776e) + - ็ปๅฝ้กต่ๆฏๅพ็ไฝ็ฝฎ้้ ็งปๅจ็ซฏ - by @soybeanjs [(24010)](https://github.com/honghuangdc/soybean-admin/commit/24010d0) + - HTML lang ไฟฎๆนไธบ zh-cmn-Hans - by @toolvcn [(dbeb5)](https://github.com/honghuangdc/soybean-admin/commit/dbeb595) + +### ๐ Bug Fixes + +- **projects**: + - ไฟฎๅคvite alias - by @soybeanjs [(cd7ca)](https://github.com/honghuangdc/soybean-admin/commit/cd7ca8f) + - ไฟฎๅค่ทฏ็ฑๅฎๅซ็ๅจๆ่ทฏ็ฑ้ป่พ - by @soybeanjs [(e6c26)](https://github.com/honghuangdc/soybean-admin/commit/e6c26fc) + - ๅ จๅฑๆ็ดขๅผน็ชๅผนๅบๆถๅจ็ป้ชๅฑ้ฎ้ข - by @yanbowe [(bb1bb)](https://github.com/honghuangdc/soybean-admin/commit/bb1bbf2) + - ๅป้คไป็ฏๅขๆไปถๅผๅ ฅ็ซฏๅฃๅทๅฏผ่ด็้่ฏฏ - by @soybeanjs [(2d6d1)](https://github.com/honghuangdc/soybean-admin/commit/2d6d179) + - ไฟฎๅคๅจๆฐ็viteไธ็ฏๅขๅ้่ทๅไธๅฐ็้ฎ้ข - by @soybeanjs [(3fb13)](https://github.com/honghuangdc/soybean-admin/commit/3fb13ca) + - ไฟฎๅค่ทๅvite็ฏๅขๅ้็ๆนๅผ - by @soybeanjs [(46e1a)](https://github.com/honghuangdc/soybean-admin/commit/46e1ae7) + - ๆทปๅ ่ทๅ่ทฏ็ฑ็ปไปถๆไปถๆชๆพๅฐๆถ็้่ฏฏๆ็คบ - by @honghuangdc [(219f8)](https://github.com/honghuangdc/soybean-admin/commit/219f87f) + +### ๐ฅ Performance + +- refresh-kokenๅฝๅ - by @southliu [(17155)](https://github.com/honghuangdc/soybean-admin/commit/1715504) + +### ๐ Refactors + +- **projects**: + - lintๅฝไปคไฟฎๆน - by @soybeanjs [(20911)](https://github.com/honghuangdc/soybean-admin/commit/20911dd) + - ไปฃ็ ไผๅ - by @soybeanjs [(e8b53)](https://github.com/honghuangdc/soybean-admin/commit/e8b534b) + - ๅป้คๅจpinia็getters็ๅฝๆฐ่ฐ็จๅฏไฝ็จ๏ผ็จwatchไปฃๆฟ - by @soybeanjs [(b35ed)](https://github.com/honghuangdc/soybean-admin/commit/b35ed89) + - ไปฃ็ ไผๅ - by @honghuangdc [(5e276)](https://github.com/honghuangdc/soybean-admin/commit/5e27642) + +### ๐ Documentation + +- **projects**: + - update README.md - by @honghuangdc [(21645)](https://github.com/honghuangdc/soybean-admin/commit/2164553) + - update README.md - by @honghuangdc [(9a90f)](https://github.com/honghuangdc/soybean-admin/commit/9a90f18) + - update README.md - by @honghuangdc [(60a55)](https://github.com/honghuangdc/soybean-admin/commit/60a55a7) + +### ๐ฆ Build + +- **deps**: update deps - by @soybeanjs [(cecce)](https://github.com/honghuangdc/soybean-admin/commit/cecce83) +- **projects**: vite.configไปฃ็ ไผๅ - by @soybeanjs [(ca707)](https://github.com/honghuangdc/soybean-admin/commit/ca707a4) + +### ๐ก Chore + +- **deps**: update deps - by @soybeanjs [(4eb46)](https://github.com/honghuangdc/soybean-admin/commit/4eb46ea) + +### ๐จ Styles + +- **projects**: update prettier config - by @honghuangdc [(df56a)](https://github.com/honghuangdc/soybean-admin/commit/df56abe) + +### โค๏ธ Contributors + +[](https://github.com/toolvcn) [](https://github.com/honghuangdc) [](https://github.com/soybeanjs) [](https://github.com/yanbowe) [](https://github.com/southliu) [](https://github.com/honghuangdc) +[ๅ ๅฎถๆฟ](mailto:jiayi.yuan@luckincoffee.com), + +## [v0.9.3](https://github.com/honghuangdc/soybean-admin/compare/old-version...v0.9.3) (2022-03-12) + +### ๐ Features + +- **components**: + - svgIcon,ๆทปๅ type,่ฐๆดsizeๆนๆก - by @Lsq128 [(ce4e0)](https://github.com/honghuangdc/soybean-admin/commit/ce4e039) +- **projects**: + - ่ทฏ็ฑ้กต้ข่ทณ่ฝฌๆ้ๅฎๆ - by @soybeanjs [(0d2a5)](https://github.com/honghuangdc/soybean-admin/commit/0d2a562) + - ้ๆnaiveUIไธป้ข้ ็ฝฎ๏ผๅฐcss varsๆทปๅ ่ณhtml - by @soybeanjs [(2c196)](https://github.com/honghuangdc/soybean-admin/commit/2c19684) + - ๅๅงๅๅ ่ฝฝๆๆ๏ผๅบ็จไธป้ข้ข่ฒ - by @honghuangdc [(035fa)](https://github.com/honghuangdc/soybean-admin/commit/035fa11) + - ็ปๅฝ้กต้ขๅผๅง่ฟ็งป - by @honghuangdc [(f5a36)](https://github.com/honghuangdc/soybean-admin/commit/f5a36a0) + - ่ฟ็งป็ปๅฝๅฎๆ - by @soybeanjs [(b93b8)](https://github.com/honghuangdc/soybean-admin/commit/b93b80c) + - ๆทปๅ NaiveProvider็ปไปถ - by @honghuangdc [(c804b)](https://github.com/honghuangdc/soybean-admin/commit/c804b21) + - ๅค็บง่ทฏ็ฑ็ๆๆๅญ่ทฏ็ฑ่ฝฌๆขๆไบ็บง่ทฏ็ฑ - by @honghuangdc [(85b55)](https://github.com/honghuangdc/soybean-admin/commit/85b55bb) + - ๆฐๅขBasicLayoutๅธๅฑ - by @soybeanjs [(00646)](https://github.com/honghuangdc/soybean-admin/commit/006467a) + - ๅๅปบ่ชๅฎไนๅธๅฑ็ปไปถSoybeanLayout - by @honghuangdc [(0653f)](https://github.com/honghuangdc/soybean-admin/commit/0653fb1) + - ๆทปๅ ๆฝๅฑ - by @honghuangdc [(10e4d)](https://github.com/honghuangdc/soybean-admin/commit/10e4d81) + - theme storeๅฎๆ - by @soybeanjs [(bf020)](https://github.com/honghuangdc/soybean-admin/commit/bf020a8) + - ไธป้ข้ ็ฝฎๆฝๅฑ๏ผ่ฟ็งปๆ้ปๆจกๅผใๅธๅฑๆจกๅผใๆทปๅ ้ข่ฒ้ๆฉ้ขๆฟ - by @soybeanjs [(912bf)](https://github.com/honghuangdc/soybean-admin/commit/912bfdf) + - ไธป้ข้ ็ฝฎๆฝๅฑ: ่ฟ็งปๅ ถไปๅ่ฝ - by @soybeanjs [(6d132)](https://github.com/honghuangdc/soybean-admin/commit/6d132c5) + - ๆทปๅ ๅคด้จๆๅ ๆ้ฎ - by @honghuangdc [(a090d)](https://github.com/honghuangdc/soybean-admin/commit/a090d39) + - ๆทปๅ ไพง่พน่ๅ - by @soybeanjs [(e25af)](https://github.com/honghuangdc/soybean-admin/commit/e25afe2) + - ้ขๅ ๅฑ - by @honghuangdc [(09c76)](https://github.com/honghuangdc/soybean-admin/commit/09c7658) + - ่ฏทๆฑๆฆๆชๅจๆทปๅ ๅทๆฐtoken - by @honghuangdc [(839b8)](https://github.com/honghuangdc/soybean-admin/commit/839b82b) + - ็ป่ๅฎๅ - by @soybeanjs [(cc290)](https://github.com/honghuangdc/soybean-admin/commit/cc290ac) + - ่ฟ็งปๅค้กต็ญพ - by @soybeanjs [(28efb)](https://github.com/honghuangdc/soybean-admin/commit/28efbdb) + - ็ป่ๅฎๅใ่ฟ็งป้กต้ข - by @soybeanjs [(ce531)](https://github.com/honghuangdc/soybean-admin/commit/ce531ce) + - ๆทปๅ ้กต้ข็ผๅญใ่ฎฐๅฝๅจtabไธญ็็ผๅญ้กต้ข็ๆปๅจๆกไฝ็ฝฎ - by @soybeanjs [(1d63a)](https://github.com/honghuangdc/soybean-admin/commit/1d63a83) + - ๆทปๅ ็ผๅญไธป้ข่ฒ - by @soybeanjs [(37092)](https://github.com/honghuangdc/soybean-admin/commit/3709297) + - ๆฐ็้ๆๅฎๆ - by @soybeanjs [(68b42)](https://github.com/honghuangdc/soybean-admin/commit/68b4230) + - ่ฟ็งปๅ จๅฑๆ็ดข่ๅๅ่ฝ - by @yanbowe [(554d7)](https://github.com/honghuangdc/soybean-admin/commit/554d7fd) + - ๆทปๅ naiveUIๆ้ๅผๅ ฅ - by @soybeanjs [(a810e)](https://github.com/honghuangdc/soybean-admin/commit/a810ef8) + - ๆทปๅ SvgIcon,้ ็ฝฎvite plugin - by **Liushengqun** [(378d5)](https://github.com/honghuangdc/soybean-admin/commit/378d55a) + - ๅผๅ ฅsoybean-admin-tabใๅป้คvite-plugin-svg-icons๏ผ็จunplugin-iconsๅฎ็ฐ่ชๅฎไนsvg็iconifyๅๆณใไปฃ็ ไผๅ - by @soybeanjs [(a1a57)](https://github.com/honghuangdc/soybean-admin/commit/a1a57a1) + - ๆฐๅขๅญ่ๅๅพๆ ๅๅค้กต็ญพๅพๆ - by @soybeanjs [(f5c56)](https://github.com/honghuangdc/soybean-admin/commit/f5c56c3) + - ้ๆ้กน็ฎ็TS็ฑปๅๆถๆ๏ผๅป้คinterfaceๆไปถๅคน - by @soybeanjs [(81914)](https://github.com/honghuangdc/soybean-admin/commit/8191490) + - ๆทปๅ ็ฝ็ปไปฃ็ - by @soybeanjs [(094dc)](https://github.com/honghuangdc/soybean-admin/commit/094dca9) + - ๆทปๅ ๅ จๅฑ็ปไปถ่ชๅจๅผๅ ฅๆณจๅ - by @soybeanjs [(f5a04)](https://github.com/honghuangdc/soybean-admin/commit/f5a043b) + - ๆฐๅข่ชๅฎไนsvgๅพๆ ๅจๆๆธฒๆ - by @soybeanjs [(f83c7)](https://github.com/honghuangdc/soybean-admin/commit/f83c7b5) + +### ๐ Bug Fixes + +- **components**: + - ไฟฎๅคTabๅจ็งปๅจ็ซฏ่ฎพๅคๆ ๆณ็นๅป็้ฎ้ข - by @honghuangdc [(2c966)](https://github.com/honghuangdc/soybean-admin/commit/2c9660f) + - ไฟฎๅค็ปไปถLoadingEmptyWrapper้ๅบๆ้ปๆจกๅผ - by @soybeanjs [(811b1)](https://github.com/honghuangdc/soybean-admin/commit/811b15e) + - ็ปไปถLoadingEmptyWrapperๆทปๅ ่ๆฏ้ข่ฒๅจ็ป่ฟๆธก - by @soybeanjs [(7add5)](https://github.com/honghuangdc/soybean-admin/commit/7add5c2) +- **projects**: + - ไฟฎๅคredirect-not-foundๅญ่ทฏ็ฑ - by @honghuangdc [(5bfb8)](https://github.com/honghuangdc/soybean-admin/commit/5bfb819) + - ๅป้คLayout็ปไปถๅไฝไปฃ็ - by @honghuangdc [(0e783)](https://github.com/honghuangdc/soybean-admin/commit/0e783bc) + - ไฟฎๅค้ขๅ ๅฑๆฐๆฎ - by @honghuangdc [(28b5d)](https://github.com/honghuangdc/soybean-admin/commit/28b5d22) + - ไฟฎๅคvertical-mixๅธๅฑใ้ๆๅๅงๅ็loading - by @soybeanjs [(579e0)](https://github.com/honghuangdc/soybean-admin/commit/579e074) + - ไฟฎๅคๆช็ปๅฝๆถไผ่ฐ็จ่ทๅ็จๆท่ทฏ็ฑ็ๆฅๅฃ - by @soybeanjs [(21bab)](https://github.com/honghuangdc/soybean-admin/commit/21bab1f) + - ไฟฎๅค่ทฏ็ฑๅฎๅซ็ๅจๆ่ทฏ็ฑ้ป่พ - by @soybeanjs [(b61b0)](https://github.com/honghuangdc/soybean-admin/commit/b61b0ce) + - vite้ ็ฝฎไฟฎๅค - by @soybeanjs [(facc0)](https://github.com/honghuangdc/soybean-admin/commit/facc00e) + - ไฟฎๅคๅๆ้กตๅๅทฅไฝๅฐ็ๅธๅฑ้ฎ้ข - by @honghuangdc [(e93b9)](https://github.com/honghuangdc/soybean-admin/commit/e93b94c) + - ไฟฎๅค้กน็ฎ้ ็ฝฎๆท่ดๅ่ฝ - by @soybeanjs [(a7a26)](https://github.com/honghuangdc/soybean-admin/commit/a7a269d) + - ไฟฎๅค้กต้ขๅๆขๅจ็ปๆ ๅๅ - by @soybeanjs [(c4546)](https://github.com/honghuangdc/soybean-admin/commit/c4546bd) + - ไฟฎๅค้กต้ขๅๆขๅจ็ปๅผๅ ณไธ็ๆ - by @bundlejs [(9d4ed)](https://github.com/honghuangdc/soybean-admin/commit/9d4ed61) + - ไฟฎๅค BASE_URL ๆฒกๆ็ๆ็้ฎ้ข - by @pany-ang [(72d7d)](https://github.com/honghuangdc/soybean-admin/commit/72d7dcf) + +### ๐ Refactors + +- **components**: + - ๅป้คpackages็soybean-layout๏ผ้่ฟnpm็ๆนๅผๅผๅ ฅ - by @soybeanjs [(c1182)](https://github.com/honghuangdc/soybean-admin/commit/c1182fe) +- **projects**: + - ็ฒพ็ฎ็+ๅจๆ่ทฏ็ฑๆ้ๅๆญฅ - by @soybeanjs [(de205)](https://github.com/honghuangdc/soybean-admin/commit/de2057f) + - ๅ็ฌไธ็บง่ทฏ็ฑ็ธๅ ณ้ป่พ้ๆ - by @honghuangdc [(ab9a6)](https://github.com/honghuangdc/soybean-admin/commit/ab9a6a2) + - ๅ็ฌ่ทฏ็ฑ้ป่พ้ๆใ่ทฏ็ฑ่ฝฌๆขๅฝๆฐไผๅ - by @soybeanjs [(b36a6)](https://github.com/honghuangdc/soybean-admin/commit/b36a62b) + - ๆขๅคpinia้ป่ฎคๅๆณ - by @soybeanjs [(b2a4d)](https://github.com/honghuangdc/soybean-admin/commit/b2a4ddf) + - ่ฏทๆฑๆ้ ๅฝๆฐ้้ ไธๅๅ็ซฏๆฅๅฃ็ๆฐๆฎ็ปๆ - by @soybeanjs [(4f9d5)](https://github.com/honghuangdc/soybean-admin/commit/4f9d544) + - ็ป่ๅฎๅ - by @soybeanjs [(651e5)](https://github.com/honghuangdc/soybean-admin/commit/651e58d) + - ้ๆ่ทฏ็ฑ้กต้ข็ปไปถ็ๅฏผๅ ฅ - by @honghuangdc [(e6503)](https://github.com/honghuangdc/soybean-admin/commit/e65034d) + - ไปฃ็ ไผๅ - by @soybeanjs [(4e31a)](https://github.com/honghuangdc/soybean-admin/commit/4e31abd) + +### ๐ Documentation + +- **other**: + - ๆณจ้ๆๆกไฟฎๆน - by **ๆฏๅๆ** [(d0064)](https://github.com/honghuangdc/soybean-admin/commit/d00643c) +- **projects**: + - update README.md - by @soybeanjs [(5eddb)](https://github.com/honghuangdc/soybean-admin/commit/5eddb49) + - update README.md - by @soybeanjs [(02c51)](https://github.com/honghuangdc/soybean-admin/commit/02c51e6) + - update README.md - by @honghuangdc [(47f28)](https://github.com/honghuangdc/soybean-admin/commit/47f2871) + - update README.md - by @honghuangdc [(7ed5d)](https://github.com/honghuangdc/soybean-admin/commit/7ed5d0d) + - update README.md - by @honghuangdc [(3befb)](https://github.com/honghuangdc/soybean-admin/commit/3befb22) + - update README.md - by @honghuangdc [(e856c)](https://github.com/honghuangdc/soybean-admin/commit/e856cdb) + - update README.md - by @soybeanjs [(3aded)](https://github.com/honghuangdc/soybean-admin/commit/3aded40) + - update README.md - by @soybeanjs [(225e7)](https://github.com/honghuangdc/soybean-admin/commit/225e712) + - update README.md - by @honghuangdc [(5b401)](https://github.com/honghuangdc/soybean-admin/commit/5b401a7) + - update README.md - by @honghuangdc [(8cdad)](https://github.com/honghuangdc/soybean-admin/commit/8cdad54) + - update README.md - by @soybeanjs [(a0dfa)](https://github.com/honghuangdc/soybean-admin/commit/a0dfa3d) + - update README.md - by @soybeanjs [(b8db2)](https://github.com/honghuangdc/soybean-admin/commit/b8db211) + +### ๐ฆ Build + +- **deps**: + - ๅ็บงไพ่ต - by @soybeanjs [(284af)](https://github.com/honghuangdc/soybean-admin/commit/284af63) + - ๅ็บงไพ่ต - by @soybeanjs [(57c69)](https://github.com/honghuangdc/soybean-admin/commit/57c692b) + - ๅ็บงไพ่ต - by @soybeanjs [(7ba33)](https://github.com/honghuangdc/soybean-admin/commit/7ba332c) + - upgrade deps - by @soybeanjs [(50c8b)](https://github.com/honghuangdc/soybean-admin/commit/50c8b9d) + - upgrade deps - by @soybeanjs [(8d00b)](https://github.com/honghuangdc/soybean-admin/commit/8d00b23) + - upgrade deps - by @soybeanjs [(b298a)](https://github.com/honghuangdc/soybean-admin/commit/b298af1) +- **projects**: + - ไฟฎๆนvscode้ ็ฝฎ - by @honghuangdc [(0c577)](https://github.com/honghuangdc/soybean-admin/commit/0c5770d) + - ๆทปๅ vercelๆๅ ็็ฏๅข - by @honghuangdc [(371fa)](https://github.com/honghuangdc/soybean-admin/commit/371fad4) + - add license - by @soybeanjs [(b1672)](https://github.com/honghuangdc/soybean-admin/commit/b16721b) + - ๆดๆฐtsconfig.json - by @soybeanjs [(f42ee)](https://github.com/honghuangdc/soybean-admin/commit/f42ee9d) + - update tsconfigใeslintrc - by @soybeanjs [(75de2)](https://github.com/honghuangdc/soybean-admin/commit/75de2b0) + +### ๐ก Chore + +- **release**: + - 0.1.1 ็ฒพ็ฎ็ๅๅธ - by @soybeanjs [(db3c2)](https://github.com/honghuangdc/soybean-admin/commit/db3c25e) + - 0.1.2 - by @soybeanjs [(db75c)](https://github.com/honghuangdc/soybean-admin/commit/db75c91) + - 0.1.3 - by @soybeanjs [(32a7c)](https://github.com/honghuangdc/soybean-admin/commit/32a7cc4) + - 0.9.1 - by @soybeanjs [(be374)](https://github.com/honghuangdc/soybean-admin/commit/be37408) + - 0.9.2 - by @honghuangdc [(11407)](https://github.com/honghuangdc/soybean-admin/commit/1140722) + - 0.9.3 - by @soybeanjs [(d0522)](https://github.com/honghuangdc/soybean-admin/commit/d0522ce) + +### ๐จ Styles + +- **components**: ไปฃ็ ไผๅ - by @soybeanjs [(1e2fd)](https://github.com/honghuangdc/soybean-admin/commit/1e2fdda) +- **projects**: ่ทฏ็ฑ็ธๅ ณๆไปถๅคน็ฎๅ - by @honghuangdc [(e5793)](https://github.com/honghuangdc/soybean-admin/commit/e5793e1) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/pany-ang) [](https://github.com/honghuangdc) [](https://github.com/bundlejs) [](https://github.com/Lsq128) [](https://github.com/honghuangdc) [](https://github.com/yanbowe) +[ๆฏๅๆ](mailto:maobowen@bonc.com.cn), [Liushengqun](mailto:18232366809@163.com), + +## [v0.10.2](https://github.com/honghuangdc/soybean-admin/compare/v0.9.2...old-version) (23-06-07) + +### ๐ Features + +- **projects**: + - ่ทฏ็ฑ้กต้ข่ทณ่ฝฌๆ้ๅฎๆ - by @soybeanjs [(0d2a5)](https://github.com/honghuangdc/soybean-admin/commit/0d2a562) + - ้ๆnaiveUIไธป้ข้ ็ฝฎ๏ผๅฐcss varsๆทปๅ ่ณhtml - by @soybeanjs [(2c196)](https://github.com/honghuangdc/soybean-admin/commit/2c19684) + - ๅๅงๅๅ ่ฝฝๆๆ๏ผๅบ็จไธป้ข้ข่ฒ - by @honghuangdc [(035fa)](https://github.com/honghuangdc/soybean-admin/commit/035fa11) + - ็ปๅฝ้กต้ขๅผๅง่ฟ็งป - by @honghuangdc [(f5a36)](https://github.com/honghuangdc/soybean-admin/commit/f5a36a0) + - ่ฟ็งป็ปๅฝๅฎๆ - by @soybeanjs [(b93b8)](https://github.com/honghuangdc/soybean-admin/commit/b93b80c) + - ๆทปๅ NaiveProvider็ปไปถ - by @honghuangdc [(c804b)](https://github.com/honghuangdc/soybean-admin/commit/c804b21) + - ๅค็บง่ทฏ็ฑ็ๆๆๅญ่ทฏ็ฑ่ฝฌๆขๆไบ็บง่ทฏ็ฑ - by @honghuangdc [(85b55)](https://github.com/honghuangdc/soybean-admin/commit/85b55bb) + - ๆฐๅขBasicLayoutๅธๅฑ - by @soybeanjs [(00646)](https://github.com/honghuangdc/soybean-admin/commit/006467a) + - ๅๅปบ่ชๅฎไนๅธๅฑ็ปไปถSoybeanLayout - by @honghuangdc [(0653f)](https://github.com/honghuangdc/soybean-admin/commit/0653fb1) + - ๆทปๅ ๆฝๅฑ - by @honghuangdc [(10e4d)](https://github.com/honghuangdc/soybean-admin/commit/10e4d81) + - theme storeๅฎๆ - by @soybeanjs [(bf020)](https://github.com/honghuangdc/soybean-admin/commit/bf020a8) + - ไธป้ข้ ็ฝฎๆฝๅฑ๏ผ่ฟ็งปๆ้ปๆจกๅผใๅธๅฑๆจกๅผใๆทปๅ ้ข่ฒ้ๆฉ้ขๆฟ - by @soybeanjs [(912bf)](https://github.com/honghuangdc/soybean-admin/commit/912bfdf) + - ไธป้ข้ ็ฝฎๆฝๅฑ: ่ฟ็งปๅ ถไปๅ่ฝ - by @soybeanjs [(6d132)](https://github.com/honghuangdc/soybean-admin/commit/6d132c5) + - ๆทปๅ ๅคด้จๆๅ ๆ้ฎ - by @honghuangdc [(a090d)](https://github.com/honghuangdc/soybean-admin/commit/a090d39) + - ๆทปๅ ไพง่พน่ๅ - by @soybeanjs [(e25af)](https://github.com/honghuangdc/soybean-admin/commit/e25afe2) + - ้ขๅ ๅฑ - by @honghuangdc [(09c76)](https://github.com/honghuangdc/soybean-admin/commit/09c7658) + - ่ฏทๆฑๆฆๆชๅจๆทปๅ ๅทๆฐtoken - by @honghuangdc [(839b8)](https://github.com/honghuangdc/soybean-admin/commit/839b82b) + - ็ป่ๅฎๅ - by @soybeanjs [(cc290)](https://github.com/honghuangdc/soybean-admin/commit/cc290ac) + - ่ฟ็งปๅค้กต็ญพ - by @soybeanjs [(28efb)](https://github.com/honghuangdc/soybean-admin/commit/28efbdb) + - ็ป่ๅฎๅใ่ฟ็งป้กต้ข - by @soybeanjs [(ce531)](https://github.com/honghuangdc/soybean-admin/commit/ce531ce) + - ๆทปๅ ้กต้ข็ผๅญใ่ฎฐๅฝๅจtabไธญ็็ผๅญ้กต้ข็ๆปๅจๆกไฝ็ฝฎ - by @soybeanjs [(1d63a)](https://github.com/honghuangdc/soybean-admin/commit/1d63a83) + - ๆทปๅ ็ผๅญไธป้ข่ฒ - by @soybeanjs [(37092)](https://github.com/honghuangdc/soybean-admin/commit/3709297) + - ๆฐ็้ๆๅฎๆ - by @soybeanjs [(68b42)](https://github.com/honghuangdc/soybean-admin/commit/68b4230) + - ่ฟ็งปๅ จๅฑๆ็ดข่ๅๅ่ฝ - by @yanbowe [(554d7)](https://github.com/honghuangdc/soybean-admin/commit/554d7fd) + +### ๐ Bug Fixes + +- **components**: + - ไฟฎๅคTabๅจ็งปๅจ็ซฏ่ฎพๅคๆ ๆณ็นๅป็้ฎ้ข - by @honghuangdc [(2c966)](https://github.com/honghuangdc/soybean-admin/commit/2c9660f) +- **projects**: + - ไฟฎๅคredirect-not-foundๅญ่ทฏ็ฑ - by @honghuangdc [(5bfb8)](https://github.com/honghuangdc/soybean-admin/commit/5bfb819) + - ๅป้คLayout็ปไปถๅไฝไปฃ็ - by @honghuangdc [(0e783)](https://github.com/honghuangdc/soybean-admin/commit/0e783bc) + - ไฟฎๅค้ขๅ ๅฑๆฐๆฎ - by @honghuangdc [(28b5d)](https://github.com/honghuangdc/soybean-admin/commit/28b5d22) + - ไฟฎๅคvertical-mixๅธๅฑใ้ๆๅๅงๅ็loading - by @soybeanjs [(579e0)](https://github.com/honghuangdc/soybean-admin/commit/579e074) + - ไฟฎๅคๆช็ปๅฝๆถไผ่ฐ็จ่ทๅ็จๆท่ทฏ็ฑ็ๆฅๅฃ - by @soybeanjs [(21bab)](https://github.com/honghuangdc/soybean-admin/commit/21bab1f) + - ไฟฎๅค่ทฏ็ฑๅฎๅซ็ๅจๆ่ทฏ็ฑ้ป่พ - by @soybeanjs [(b61b0)](https://github.com/honghuangdc/soybean-admin/commit/b61b0ce) + - vite้ ็ฝฎไฟฎๅค - by @soybeanjs [(facc0)](https://github.com/honghuangdc/soybean-admin/commit/facc00e) + - ไฟฎๅคๅๆ้กตๅๅทฅไฝๅฐ็ๅธๅฑ้ฎ้ข - by @honghuangdc [(e93b9)](https://github.com/honghuangdc/soybean-admin/commit/e93b94c) + - ไฟฎๅค้กน็ฎ้ ็ฝฎๆท่ดๅ่ฝ - by @soybeanjs [(a7a26)](https://github.com/honghuangdc/soybean-admin/commit/a7a269d) + +### ๐ Refactors + +- **projects**: + - ็ฒพ็ฎ็+ๅจๆ่ทฏ็ฑๆ้ๅๆญฅ - by @soybeanjs [(de205)](https://github.com/honghuangdc/soybean-admin/commit/de2057f) + - ๅ็ฌไธ็บง่ทฏ็ฑ็ธๅ ณ้ป่พ้ๆ - by @honghuangdc [(ab9a6)](https://github.com/honghuangdc/soybean-admin/commit/ab9a6a2) + - ๅ็ฌ่ทฏ็ฑ้ป่พ้ๆใ่ทฏ็ฑ่ฝฌๆขๅฝๆฐไผๅ - by @soybeanjs [(b36a6)](https://github.com/honghuangdc/soybean-admin/commit/b36a62b) + - ๆขๅคpinia้ป่ฎคๅๆณ - by @soybeanjs [(b2a4d)](https://github.com/honghuangdc/soybean-admin/commit/b2a4ddf) + - ่ฏทๆฑๆ้ ๅฝๆฐ้้ ไธๅๅ็ซฏๆฅๅฃ็ๆฐๆฎ็ปๆ - by @soybeanjs [(4f9d5)](https://github.com/honghuangdc/soybean-admin/commit/4f9d544) + - ็ป่ๅฎๅ - by @soybeanjs [(651e5)](https://github.com/honghuangdc/soybean-admin/commit/651e58d) + - ้ๆ่ทฏ็ฑ้กต้ข็ปไปถ็ๅฏผๅ ฅ - by @honghuangdc [(e6503)](https://github.com/honghuangdc/soybean-admin/commit/e65034d) + +### ๐ Documentation + +- **projects**: + - update README.md - by @soybeanjs [(5eddb)](https://github.com/honghuangdc/soybean-admin/commit/5eddb49) + - update README.md - by @soybeanjs [(02c51)](https://github.com/honghuangdc/soybean-admin/commit/02c51e6) + - update README.md - by @honghuangdc [(47f28)](https://github.com/honghuangdc/soybean-admin/commit/47f2871) + - update README.md - by @honghuangdc [(7ed5d)](https://github.com/honghuangdc/soybean-admin/commit/7ed5d0d) + - update README.md - by @honghuangdc [(3befb)](https://github.com/honghuangdc/soybean-admin/commit/3befb22) + +### ๐ฆ Build + +- **projects**: + - ไฟฎๆนvscode้ ็ฝฎ - by @honghuangdc [(0c577)](https://github.com/honghuangdc/soybean-admin/commit/0c5770d) + - ๆทปๅ vercelๆๅ ็็ฏๅข - by @honghuangdc [(371fa)](https://github.com/honghuangdc/soybean-admin/commit/371fad4) + - add license - by @soybeanjs [(b1672)](https://github.com/honghuangdc/soybean-admin/commit/b16721b) + +### ๐ก Chore + +- **release**: + - 0.1.1 ็ฒพ็ฎ็ๅๅธ - by @soybeanjs [(db3c2)](https://github.com/honghuangdc/soybean-admin/commit/db3c25e) + - 0.1.2 - by @soybeanjs [(db75c)](https://github.com/honghuangdc/soybean-admin/commit/db75c91) + - 0.1.3 - by @soybeanjs [(32a7c)](https://github.com/honghuangdc/soybean-admin/commit/32a7cc4) + - 0.9.1 - by @soybeanjs [(be374)](https://github.com/honghuangdc/soybean-admin/commit/be37408) + - 0.9.2 - by @honghuangdc [(11407)](https://github.com/honghuangdc/soybean-admin/commit/1140722) + +### ๐จ Styles + +- **projects**: ่ทฏ็ฑ็ธๅ ณๆไปถๅคน็ฎๅ - by @honghuangdc [(e5793)](https://github.com/honghuangdc/soybean-admin/commit/e5793e1) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/soybeanjs) [](https://github.com/honghuangdc) [](https://github.com/yanbowe) + +## [v0.9.2](https://github.com/honghuangdc/soybean-admin/compare/v0.9.1...v0.9.2) (2022-02-11) + +### ๐ Features + +- **projects**: ่ฟ็งปๅ จๅฑๆ็ดข่ๅๅ่ฝ - by @yanbowe [(554d7)](https://github.com/honghuangdc/soybean-admin/commit/554d7fd) + +### ๐ Bug Fixes + +- **components**: + - ไฟฎๅคTabๅจ็งปๅจ็ซฏ่ฎพๅคๆ ๆณ็นๅป็้ฎ้ข - by @honghuangdc [(2c966)](https://github.com/honghuangdc/soybean-admin/commit/2c9660f) +- **projects**: + - vite้ ็ฝฎไฟฎๅค - by @soybeanjs [(facc0)](https://github.com/honghuangdc/soybean-admin/commit/facc00e) + - ไฟฎๅคๅๆ้กตๅๅทฅไฝๅฐ็ๅธๅฑ้ฎ้ข - by @honghuangdc [(e93b9)](https://github.com/honghuangdc/soybean-admin/commit/e93b94c) + - ไฟฎๅค้กน็ฎ้ ็ฝฎๆท่ดๅ่ฝ - by @soybeanjs [(a7a26)](https://github.com/honghuangdc/soybean-admin/commit/a7a269d) + +### ๐ Refactors + +- **projects**: ้ๆ่ทฏ็ฑ้กต้ข็ปไปถ็ๅฏผๅ ฅ - by @honghuangdc [(e6503)](https://github.com/honghuangdc/soybean-admin/commit/e65034d) + +### ๐ Documentation + +- **projects**: + - update README.md - by @soybeanjs [(02c51)](https://github.com/honghuangdc/soybean-admin/commit/02c51e6) + - update README.md - by @honghuangdc [(47f28)](https://github.com/honghuangdc/soybean-admin/commit/47f2871) + - update README.md - by @honghuangdc [(7ed5d)](https://github.com/honghuangdc/soybean-admin/commit/7ed5d0d) + - update README.md - by @honghuangdc [(3befb)](https://github.com/honghuangdc/soybean-admin/commit/3befb22) + +### ๐ฆ Build + +- **projects**: add license - by @soybeanjs [(b1672)](https://github.com/honghuangdc/soybean-admin/commit/b16721b) + +### ๐ก Chore + +- **release**: 0.9.2 - by @honghuangdc [(11407)](https://github.com/honghuangdc/soybean-admin/commit/1140722) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/soybeanjs) [](https://github.com/honghuangdc) [](https://github.com/yanbowe) + +## [v0.9.1](https://github.com/honghuangdc/soybean-admin/compare/v0.1.3...v0.9.1) (2022-01-24) + +### ๐ Features + +- **projects**: ๆฐ็้ๆๅฎๆ - by @soybeanjs [(68b42)](https://github.com/honghuangdc/soybean-admin/commit/68b4230) + +### ๐ก Chore + +- **release**: 0.9.1 - by @soybeanjs [(be374)](https://github.com/honghuangdc/soybean-admin/commit/be37408) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.1.3](https://github.com/honghuangdc/soybean-admin/compare/v0.1.2...v0.1.3) (2022-01-24) + +### ๐ Bug Fixes + +- **projects**: + - ไฟฎๅคๆช็ปๅฝๆถไผ่ฐ็จ่ทๅ็จๆท่ทฏ็ฑ็ๆฅๅฃ - by @soybeanjs [(21bab)](https://github.com/honghuangdc/soybean-admin/commit/21bab1f) + - ไฟฎๅค่ทฏ็ฑๅฎๅซ็ๅจๆ่ทฏ็ฑ้ป่พ - by @soybeanjs [(b61b0)](https://github.com/honghuangdc/soybean-admin/commit/b61b0ce) + +### ๐ Refactors + +- **projects**: + - ่ฏทๆฑๆ้ ๅฝๆฐ้้ ไธๅๅ็ซฏๆฅๅฃ็ๆฐๆฎ็ปๆ - by @soybeanjs [(4f9d5)](https://github.com/honghuangdc/soybean-admin/commit/4f9d544) + - ็ป่ๅฎๅ - by @soybeanjs [(651e5)](https://github.com/honghuangdc/soybean-admin/commit/651e58d) + +### ๐ก Chore + +- **release**: 0.1.3 - by @soybeanjs [(32a7c)](https://github.com/honghuangdc/soybean-admin/commit/32a7cc4) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.1.2](https://github.com/honghuangdc/soybean-admin/compare/v0.1.1...v0.1.2) (2022-01-22) + +### ๐ Features + +- **projects**: + - ๆทปๅ ้กต้ข็ผๅญใ่ฎฐๅฝๅจtabไธญ็็ผๅญ้กต้ข็ๆปๅจๆกไฝ็ฝฎ - by @soybeanjs [(1d63a)](https://github.com/honghuangdc/soybean-admin/commit/1d63a83) + - ๆทปๅ ็ผๅญไธป้ข่ฒ - by @soybeanjs [(37092)](https://github.com/honghuangdc/soybean-admin/commit/3709297) + +### ๐ก Chore + +- **release**: 0.1.2 - by @soybeanjs [(db75c)](https://github.com/honghuangdc/soybean-admin/commit/db75c91) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.1.1](https://github.com/honghuangdc/soybean-admin/compare/v0.0.5...v0.1.1) (2022-01-20) + +### ๐ Features + +- **projects**: + - ๆทปๅ ่ทฏ็ฑ่ทณ่ฝฌๆต่งๅจๆฐๆ ็ญพ - by @honghuangdc [(987ce)](https://github.com/honghuangdc/soybean-admin/commit/987cef3) + - ๆทปๅ ๅธธ็จ็ปไปถใcomposablesๅฝๆฐ - by @soybeanjs [(230a5)](https://github.com/honghuangdc/soybean-admin/commit/230a50a) + - ๆทปๅ ่กจๆ ผ้กต้ข็คบไพ - by @soybeanjs [(51c74)](https://github.com/honghuangdc/soybean-admin/commit/51c744c) + - ๅขๅ Icon้ๆฉๅจ็ปไปถ - by @yanbowe [(9472b)](https://github.com/honghuangdc/soybean-admin/commit/9472b51) + - ๅพๆ ้ๆฉๅจๅขๅ ๆฉๅฑๆ ๅฝข - by @yanbowe [(04101)](https://github.com/honghuangdc/soybean-admin/commit/041012b) + - ๅขๅ ้กน็ฎๆๆกฃๅค้พ - by @yanbowe [(1901a)](https://github.com/honghuangdc/soybean-admin/commit/1901a0b) + - ๅผๅ ฅmockjs - by @soybeanjs [(9bc68)](https://github.com/honghuangdc/soybean-admin/commit/9bc682d) + - ๅขๅ ๅ จๅฑๆ็ดข่ๅๅ่ฝ - by @yanbowe [(b9ce6)](https://github.com/honghuangdc/soybean-admin/commit/b9ce691) + - ่ๅๆ็ดขๅขๅ ๅคงๅฐๅ่ฝฌๆข - by @yanbowe [(29078)](https://github.com/honghuangdc/soybean-admin/commit/2907868) + - ๆทปๅ cryptojs๏ผๅฏนๆฌๅฐ็ผๅญๆฐๆฎ่ฟ่กๅ ๅฏ - by @soybeanjs [(7a064)](https://github.com/honghuangdc/soybean-admin/commit/7a0648d) + - ่ทฏ็ฑ้กต้ข่ทณ่ฝฌๆ้ๅฎๆ - by @soybeanjs [(0d2a5)](https://github.com/honghuangdc/soybean-admin/commit/0d2a562) + - ้ๆnaiveUIไธป้ข้ ็ฝฎ๏ผๅฐcss varsๆทปๅ ่ณhtml - by @soybeanjs [(2c196)](https://github.com/honghuangdc/soybean-admin/commit/2c19684) + - ๅๅงๅๅ ่ฝฝๆๆ๏ผๅบ็จไธป้ข้ข่ฒ - by @honghuangdc [(035fa)](https://github.com/honghuangdc/soybean-admin/commit/035fa11) + - ็ปๅฝ้กต้ขๅผๅง่ฟ็งป - by @honghuangdc [(f5a36)](https://github.com/honghuangdc/soybean-admin/commit/f5a36a0) + - ่ฟ็งป็ปๅฝๅฎๆ - by @soybeanjs [(b93b8)](https://github.com/honghuangdc/soybean-admin/commit/b93b80c) + - ๆทปๅ NaiveProvider็ปไปถ - by @honghuangdc [(c804b)](https://github.com/honghuangdc/soybean-admin/commit/c804b21) + - ๅค็บง่ทฏ็ฑ็ๆๆๅญ่ทฏ็ฑ่ฝฌๆขๆไบ็บง่ทฏ็ฑ - by @honghuangdc [(85b55)](https://github.com/honghuangdc/soybean-admin/commit/85b55bb) + - ๆฐๅขBasicLayoutๅธๅฑ - by @soybeanjs [(00646)](https://github.com/honghuangdc/soybean-admin/commit/006467a) + - ๅๅปบ่ชๅฎไนๅธๅฑ็ปไปถSoybeanLayout - by @honghuangdc [(0653f)](https://github.com/honghuangdc/soybean-admin/commit/0653fb1) + - ๆทปๅ ๆฝๅฑ - by @honghuangdc [(10e4d)](https://github.com/honghuangdc/soybean-admin/commit/10e4d81) + - theme storeๅฎๆ - by @soybeanjs [(bf020)](https://github.com/honghuangdc/soybean-admin/commit/bf020a8) + - ไธป้ข้ ็ฝฎๆฝๅฑ๏ผ่ฟ็งปๆ้ปๆจกๅผใๅธๅฑๆจกๅผใๆทปๅ ้ข่ฒ้ๆฉ้ขๆฟ - by @soybeanjs [(912bf)](https://github.com/honghuangdc/soybean-admin/commit/912bfdf) + - ไธป้ข้ ็ฝฎๆฝๅฑ: ่ฟ็งปๅ ถไปๅ่ฝ - by @soybeanjs [(6d132)](https://github.com/honghuangdc/soybean-admin/commit/6d132c5) + - ๆทปๅ ๅคด้จๆๅ ๆ้ฎ - by @honghuangdc [(a090d)](https://github.com/honghuangdc/soybean-admin/commit/a090d39) + - ๆทปๅ ไพง่พน่ๅ - by @soybeanjs [(e25af)](https://github.com/honghuangdc/soybean-admin/commit/e25afe2) + - ้ขๅ ๅฑ - by @honghuangdc [(09c76)](https://github.com/honghuangdc/soybean-admin/commit/09c7658) + - ่ฏทๆฑๆฆๆชๅจๆทปๅ ๅทๆฐtoken - by @honghuangdc [(839b8)](https://github.com/honghuangdc/soybean-admin/commit/839b82b) + - ็ป่ๅฎๅ - by @soybeanjs [(cc290)](https://github.com/honghuangdc/soybean-admin/commit/cc290ac) + - ่ฟ็งปๅค้กต็ญพ - by @soybeanjs [(28efb)](https://github.com/honghuangdc/soybean-admin/commit/28efbdb) + - ็ป่ๅฎๅใ่ฟ็งป้กต้ข - by @soybeanjs [(ce531)](https://github.com/honghuangdc/soybean-admin/commit/ce531ce) + +### ๐ Bug Fixes + +- **deps**: + - ้ไฝvite็ๆฌ - by @honghuangdc [(c9c5c)](https://github.com/honghuangdc/soybean-admin/commit/c9c5ca9) +- **projects**: + - ไฟฎๅค็ฝ็ป่ฏทๆฑ้่ฏฏ็ฉบไฟกๆฏ็ๆ็คบ - by @honghuangdc [(ff921)](https://github.com/honghuangdc/soybean-admin/commit/ff9216b) + - ่ฏทๆฑ็ธๅ ณ็ป่ไฟฎๅค - by @honghuangdc [(2ad1a)](https://github.com/honghuangdc/soybean-admin/commit/2ad1ad3) + - ไฟฎๅคredirect-not-foundๅญ่ทฏ็ฑ - by @honghuangdc [(5bfb8)](https://github.com/honghuangdc/soybean-admin/commit/5bfb819) + - ๅป้คLayout็ปไปถๅไฝไปฃ็ - by @honghuangdc [(0e783)](https://github.com/honghuangdc/soybean-admin/commit/0e783bc) + - ไฟฎๅค้ขๅ ๅฑๆฐๆฎ - by @honghuangdc [(28b5d)](https://github.com/honghuangdc/soybean-admin/commit/28b5d22) + - ไฟฎๅคvertical-mixๅธๅฑใ้ๆๅๅงๅ็loading - by @soybeanjs [(579e0)](https://github.com/honghuangdc/soybean-admin/commit/579e074) + +### ๐ Refactors + +- **projects**: + - ็ปๅฝๆจกๅ็ฑqueryๅๆดไธบๅจๆ่ทฏ็ฑparams - by @honghuangdc [(225c4)](https://github.com/honghuangdc/soybean-admin/commit/225c4fe) + - ็ฒพ็ฎ็+ๅจๆ่ทฏ็ฑๆ้ๅๆญฅ - by @soybeanjs [(de205)](https://github.com/honghuangdc/soybean-admin/commit/de2057f) + - ๅ็ฌไธ็บง่ทฏ็ฑ็ธๅ ณ้ป่พ้ๆ - by @honghuangdc [(ab9a6)](https://github.com/honghuangdc/soybean-admin/commit/ab9a6a2) + - ๅ็ฌ่ทฏ็ฑ้ป่พ้ๆใ่ทฏ็ฑ่ฝฌๆขๅฝๆฐไผๅ - by @soybeanjs [(b36a6)](https://github.com/honghuangdc/soybean-admin/commit/b36a62b) + - ๆขๅคpinia้ป่ฎคๅๆณ - by @soybeanjs [(b2a4d)](https://github.com/honghuangdc/soybean-admin/commit/b2a4ddf) +- **styles**: + - ๆ ทๅผ่ฐๆด - by @honghuangdc [(f2910)](https://github.com/honghuangdc/soybean-admin/commit/f29106e) + +### ๐ Documentation + +- **projects**: + - update README.md - by @honghuangdc [(659e4)](https://github.com/honghuangdc/soybean-admin/commit/659e460) + - update README.md - by @honghuangdc [(90ddf)](https://github.com/honghuangdc/soybean-admin/commit/90ddf98) + - update README.md - by @soybeanjs [(5eddb)](https://github.com/honghuangdc/soybean-admin/commit/5eddb49) + +### ๐ฆ Build + +- **deps**: + - ๅ็บงไพ่ต - by @soybeanjs [(ae7ec)](https://github.com/honghuangdc/soybean-admin/commit/ae7ec99) + - ๅ็บงไพ่ต - by @soybeanjs [(e755c)](https://github.com/honghuangdc/soybean-admin/commit/e755caa) + - ๅ็บงไพ่ต - by @honghuangdc [(f3c86)](https://github.com/honghuangdc/soybean-admin/commit/f3c86ef) + - ๅ็บงไพ่ต - by @honghuangdc [(e776d)](https://github.com/honghuangdc/soybean-admin/commit/e776df4) + - ๅ็บงไพ่ต - by @soybeanjs [(777cf)](https://github.com/honghuangdc/soybean-admin/commit/777cf8e) +- **projects**: + - ็ฏๅขๅ้่ทๅๆนๅผๅๆด - by @honghuangdc [(21c2f)](https://github.com/honghuangdc/soybean-admin/commit/21c2f5a) + - ไฟฎๆนvscode้ ็ฝฎ - by @honghuangdc [(0c577)](https://github.com/honghuangdc/soybean-admin/commit/0c5770d) + - ๆทปๅ vercelๆๅ ็็ฏๅข - by @honghuangdc [(371fa)](https://github.com/honghuangdc/soybean-admin/commit/371fad4) + +### ๐ก Chore + +- **release**: 0.1.1 ็ฒพ็ฎ็ๅๅธ - by @soybeanjs [(db3c2)](https://github.com/honghuangdc/soybean-admin/commit/db3c25e) + +### ๐จ Styles + +- **projects**: ่ทฏ็ฑ็ธๅ ณๆไปถๅคน็ฎๅ - by @honghuangdc [(e5793)](https://github.com/honghuangdc/soybean-admin/commit/e5793e1) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/honghuangdc) [](https://github.com/yanbowe) [](https://github.com/honghuangdc) + +## [v0.0.5](https://github.com/honghuangdc/soybean-admin/compare/v0.0.4...v0.0.5) (2021-11-28) + +### ๐ Features + +- **projects**: ๆฐๅข็ปไปถ้กต้ข๏ผๆ้ฎใๅก็็คบไพ - by @soybeanjs [(bdc39)](https://github.com/honghuangdc/soybean-admin/commit/bdc39af) + +### ๐ Bug Fixes + +- **components**: ไฟฎๅคHorizontalLayoutๅธๅฑ - by @soybeanjs [(9fb64)](https://github.com/honghuangdc/soybean-admin/commit/9fb641f) + +### ๐ Refactors + +- **projects**: + - ้ๆ่ทฏ็ฑ็ฑปๅๅ่ทฏ็ฑๅ ๆฐๆฎ็ฑปๅ๏ผ้ๆๅค็บง่ๅ่ทฏ็ฑๅๆณ - by @soybeanjs [(d6838)](https://github.com/honghuangdc/soybean-admin/commit/d683894) + - ไผๅ่ทฏ็ฑๅฏผๅ ฅ้กต้ขๅๆณ๏ผ้กต้ข่ทฏ็ฑ่ฐๆด - by @soybeanjs [(0b10b)](https://github.com/honghuangdc/soybean-admin/commit/0b10b50) + +### ๐ฆ Build + +- **deps**: ๅ็บงไพ่ต - by @soybeanjs [(a6bdc)](https://github.com/honghuangdc/soybean-admin/commit/a6bdc38) + +### ๐ก Chore + +- **release**: 0.0.5 - by @soybeanjs [(e53e7)](https://github.com/honghuangdc/soybean-admin/commit/e53e793) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) + +## [v0.0.4](https://github.com/honghuangdc/soybean-admin/compare/v0.0.3...v0.0.4) (2021-11-25) + +### ๐ Features + +- **components**: ๆทปๅ ๅค้กต็ญพTab็นๅปๅ่ชๅจๅพไธญ้ดๆปๅจ - by @soybeanjs [(8ce62)](https://github.com/honghuangdc/soybean-admin/commit/8ce627a) +- **projects**: ๆฐๅข็ฝๅๅฏผ่ช้กต้ข - by @honghuangdc [(32aa5)](https://github.com/honghuangdc/soybean-admin/commit/32aa5ee) +- **storage**: localๅญๅจๅขๅ ๆๆๆ - by @yanbowe [(e6c9b)](https://github.com/honghuangdc/soybean-admin/commit/e6c9b35) + +### ๐ Bug Fixes + +- **components**: + - ไฟฎๅคๅค้กต็ญพTab่ชๅจๆปๅจ้ฎ้ข - by @soybeanjs [(20aa3)](https://github.com/honghuangdc/soybean-admin/commit/20aa39f) + - ไฟฎๅคๅค้กต็ญพๆ้ฎ้ฃๆ ผ็tabๆปๅจ้ฎ้ข - by @soybeanjs [(c429c)](https://github.com/honghuangdc/soybean-admin/commit/c429cd0) +- **projects**: + - ไฟฎๅคๆๅ ๆๅปบๆถๅพๆ ้่ฏฏ - by @soybeanjs [(93f9a)](https://github.com/honghuangdc/soybean-admin/commit/93f9aa9) + - ๆทปๅ ่ฅฟ็่ง้ขๅฎไพๅจonUnMounted็้ๆฏ๏ผๅค้กต็ญพๅฑ ไธญ่ท็ฆป็ฒพ็กฎ - by @soybeanjs [(73896)](https://github.com/honghuangdc/soybean-admin/commit/738964a) +- **types**: + - ๆทปๅ dotEnv็ฑปๅ็้็ฉบๅคๆญ - by @soybeanjs [(cff11)](https://github.com/honghuangdc/soybean-admin/commit/cff11d9) + +### ๐ Refactors + +- **components**: + - blankLayoutๅผๅ ฅGlobalContent - by @soybeanjs [(1ffb7)](https://github.com/honghuangdc/soybean-admin/commit/1ffb75a) +- **projects**: + - axiosๅค็็่ฏทๆฑ็ปๆๅป้ค็ฝ่ทฏ็ถๆ - by @honghuangdc [(05696)](https://github.com/honghuangdc/soybean-admin/commit/0569666) + - ๆไปถๅคนไฝ็ฝฎ่ง่ - by @honghuangdc [(f5a5f)](https://github.com/honghuangdc/soybean-admin/commit/f5a5f44) + - ็ป่ๅฎๅ - by @honghuangdc [(62611)](https://github.com/honghuangdc/soybean-admin/commit/6261156) + +### ๐ Documentation + +- **projects**: + - update README.md - by @soybeanjs [(54577)](https://github.com/honghuangdc/soybean-admin/commit/54577f1) + - update README.md - by @honghuangdc [(1b346)](https://github.com/honghuangdc/soybean-admin/commit/1b3463d) + - update README.md - by @honghuangdc [(98a7d)](https://github.com/honghuangdc/soybean-admin/commit/98a7d25) + +### ๐ก Chore + +- **release**: 0.0.4 - by @soybeanjs [(8b27f)](https://github.com/honghuangdc/soybean-admin/commit/8b27fc8) + +### โค๏ธ Contributors + +[](https://github.com/soybeanjs) [](https://github.com/honghuangdc) [](https://github.com/yanbowe) + +## [v0.0.3](https://github.com/honghuangdc/soybean-admin/compare/v0.0.2...v0.0.3) (2021-11-23) + +### ๐ Refactors + +- **projects**: + - ่ฏทๆฑๅฝๆฐ้ๆๅๆญฅ - by @soybeanjs [(9f643)](https://github.com/honghuangdc/soybean-admin/commit/9f64321) + - axiosๅฐ่ฃ ๏ผๆไปถๅคน่ง่๏ผ้่ฏฏๅค็ๅฎๅ - by @honghuangdc [(451c7)](https://github.com/honghuangdc/soybean-admin/commit/451c754) + - axiosๅฐ่ฃ ๅฎๆ - by @soybeanjs [(03b39)](https://github.com/honghuangdc/soybean-admin/commit/03b398a) + +### ๐ฆ Build + +- **deps**: + - ๅ็บงไพ่ต - by @soybeanjs [(4e04a)](https://github.com/honghuangdc/soybean-admin/commit/4e04a8f) + - ๅ็บงไพ่ต - by @soybeanjs [(c8122)](https://github.com/honghuangdc/soybean-admin/commit/c81221e) + +### ๐ก Chore + +- **release**: 0.0.3 - by @honghuangdc [(e1dac)](https://github.com/honghuangdc/soybean-admin/commit/e1dacdb) + +### โค๏ธ Contributors + +[](https://github.com/honghuangdc) [](https://github.com/soybeanjs) + + + diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md new file mode 100644 index 0000000..79587cd --- /dev/null +++ b/CHANGELOG.zh_CN.md @@ -0,0 +1,634 @@ +# ๆดๆฐๆฅๅฟ + +## [v1.3.5](https://github.com/soybeanjs/soybean-admin/compare/v1.3.4...v1.3.5) (2024-09-07) + +### ๐ ๆฐๅ่ฝ + +- **packages**: + - @sa/axios: ๆๅๆถๅฐๅๅบๆทปๅ ๅฐ flatRequest - by @soybeanjs [(c4e16)](https://github.com/soybeanjs/soybean-admin/commit/c4e1610) +- **projects**: + - README.zh_CN.md ๆทปๅ ๅไฝๆจๅนฟ - by @PZ-18664918826 in https://github.com/soybeanjs/soybean-admin/issues/601 [(2fa40)](https://github.com/soybeanjs/soybean-admin/commit/2fa400b) + - ๆ นๆฎ Apache ่ง่ๆทปๅ ๆดๅคๆไบค็ฑปๅ - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/610 [(878d9)](https://github.com/soybeanjs/soybean-admin/commit/878d9c3) + - ้ ็ฝฎๆฏๅฆๆฏๆ่ชๅจๆดๆฐใๅ ณ้ญ#612 - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/617 ๅ https://github.com/soybeanjs/soybean-admin/issues/612 [(4c9f4)](https://github.com/soybeanjs/soybean-admin/commit/4c9f4e0) + - ๆทปๅ ๅบ็จ้่ฏฏๅค็็จๅบใๅ ณ้ญ #587 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/587 [(be855)](https://github.com/soybeanjs/soybean-admin/commit/be8556c) + +### ๐ Bug ไฟฎๅค + +- **deps**: + - ๅฐ json5 ไป devDependencies ็งปๅฐ dependencies ไปฅๆฏๆ็ไบง็ฏๅขไฝฟ็จ - by @mufeng889 in https://github.com/soybeanjs/soybean-admin/issues/618 [(7cb43)](https://github.com/soybeanjs/soybean-admin/commit/7cb43fc) +- **projects**: + - ้ฟๅ ๆฃ็ดข็ผๅญ็ HTML - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/605 [(ef6cf)](https://github.com/soybeanjs/soybean-admin/commit/ef6cf93) + - ไฟฎๅค็ปๅฝ้ๅฎๅ - by @soybeanjs [(3830e)](https://github.com/soybeanjs/soybean-admin/commit/3830ec7) + - ไฟฎๅคไพง่พนๆ ๆๅ ๆถ็ vertical-mix-menuใไฟฎๅค #608 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/608 [(c3f1f)](https://github.com/soybeanjs/soybean-admin/commit/c3f1f69) + - ไฟฎๅค activeMenu ไธบ็ถ่ๅๆถ็้ขๅ ๅฑใไฟฎๅค #589 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/589 [(79b2a)](https://github.com/soybeanjs/soybean-admin/commit/79b2a28) + - ไฟฎๅค้ๅฐๅค่ฏทๆฑๆถ็ๅทๆฐไปค็ใไฟฎๅค #581 - by @soybeanjs in https://github.com/soybeanjs/soybean-admin/issues/581 [(27b52)](https://github.com/soybeanjs/soybean-admin/commit/27b5222) +- **types**: + - ไฟฎๅค TableApiFn ็็ฑปๅ - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/599 [(26c93)](https://github.com/soybeanjs/soybean-admin/commit/26c93df) + +### ๐ ไผๅ + +- **projects**: ไผๅ่ๅ selectedKey - by @soybeanjs [(531bf)](https://github.com/soybeanjs/soybean-admin/commit/531bfaf) + +### ๐ ๆๆกฃ + +- **projects**: + - ๆดๆฐ README - by @mufeng889 in https://github.com/soybeanjs/soybean-admin/issues/594 [(a8f92)](https://github.com/soybeanjs/soybean-admin/commit/a8f923e) + - ๆดๆฐ README - by @soybeanjs [(e9a2e)](https://github.com/soybeanjs/soybean-admin/commit/e9a2ee4) + - ๆดๆฐ README - by @soybeanjs [(73e91)](https://github.com/soybeanjs/soybean-admin/commit/73e917a) + - ๆดๆฐๆๆกฃไธญ้่ฆไฟกๆฏ็ไฝ็ฝฎ - by **Azir** [(9c012)](https://github.com/soybeanjs/soybean-admin/commit/9c012c7) + +### ๐ก ๆ้กน + +- **deps**: + - ๆดๆฐไพ่ต - by @soybeanjs [(a1c14)](https://github.com/soybeanjs/soybean-admin/commit/a1c14a1) + - ๆดๆฐไพ่ต - by @soybeanjs [(7fa55)](https://github.com/soybeanjs/soybean-admin/commit/7fa5590) + - ๆดๆฐไพ่ต - by @soybeanjs [(a44ea)](https://github.com/soybeanjs/soybean-admin/commit/a44ea62) +- **projects**: + - ไฝฟ็จ json5 ่งฃๆ็ฏๅขๅ้ `VITE_OTHER_SERVICE_BASE_URL` ๅนถไฟฎๅคไปฃ็ๅฏ็จ - by @soybeanjs [(b16a9)](https://github.com/soybeanjs/soybean-admin/commit/b16a963) + +### ๐จ ๆ ทๅผ + +- **projects**: ๅฐ่ๆฌ czh ้ๅฝๅไธบ commit:zh - by @Azir-11 in https://github.com/soybeanjs/soybean-admin/issues/597 [(5094f)](https://github.com/soybeanjs/soybean-admin/commit/5094f0e) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/mufeng889) [](https://github.com/Azir-11) [](https://github.com/PZ-18664918826) +[Azir](mailto:2075125282@qq.com), + +## [v1.3.4](https://github.com/honghuangdc/soybean-admin/compare/v1.3.3...v1.3.4) (2024-08-01) + +### ๐จ ้ๅคงๅๆด + +- **projects**: ๅฝ vertical-mix ๅธๅฑไธบ mixSiderFixed ๆถ๏ผไธ้็ฝฎๆดปๅจ่ๅ - by @honghuangdc [(939c5)](https://github.com/honghuangdc/soybean-admin/commit/939c512) + +### ๐ ไผๅ + +- **projects**: ไผๅไปฃ็ - by @honghuangdc [(cb1d4)](https://github.com/honghuangdc/soybean-admin/commit/cb1d445) + +### ๐ก ๆ้กน + +- **projects**: ๆดๆฐไพ่ตๅนถไฟฎๅค vue-router ็ฑปๅ - by @honghuangdc [(96837)](https://github.com/honghuangdc/soybean-admin/commit/968370b) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) + +## [v1.3.3](https://github.com/honghuangdc/soybean-admin/compare/v1.3.2...v1.3.3) (2024-07-30) + +### ๐ Bug ไฟฎๅค + +- **projects**: ไฟฎๅคๆฐดๅฐ่ฎพ็ฝฎ - by @honghuangdc [(5646a)](https://github.com/honghuangdc/soybean-admin/commit/5646a50) + +### ๐ ๆๆกฃ + +- **projects**: ๆดๆฐ CHANGELOG - by @honghuangdc [(ebc83)](https://github.com/honghuangdc/soybean-admin/commit/ebc838c) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) + +## [v1.3.2](https://github.com/honghuangdc/soybean-admin/compare/v1.3.1...v1.3.2) (2024-07-30) + +### ๐ ๆฐๅ่ฝ + +- **้กน็ฎ**: + - ๆทปๅ ้ข่ฒๆธๅๆจกๅผใๅ ณ้ญ #567 - ็ฑ @Azir-11 ๅจ https://github.com/honghuangdc/soybean-admin/issues/569 ๅ https://github.com/honghuangdc/soybean-admin/issues/567 [(4dde4)](https://github.com/honghuangdc/soybean-admin/commit/4dde4c2) + - ๆทปๅ ๅ จๅฑๆฐดๅฐใๅ ณ้ญ #571 - ็ฑ @paynezhuang ๅจ https://github.com/honghuangdc/soybean-admin/issues/573 ๅ https://github.com/honghuangdc/soybean-admin/issues/571 [(ea8aa)](https://github.com/honghuangdc/soybean-admin/commit/ea8aa6c) + +### ๐ Bug ไฟฎๅค + +- **้กน็ฎ**: ไฟฎๅค vertical-mix ่ๅ้ไธญ้ฎ้ข - ็ฑ @honghuangdc [(59f07)](https://github.com/honghuangdc/soybean-admin/commit/59f07d8) + +### ๐ ไผๅ + +- **้กน็ฎ**: + - ๆทปๅ ็ฑปๅ WatermarkProps - ็ฑ @honghuangdc [(f26d0)](https://github.com/honghuangdc/soybean-admin/commit/f26d0a6) + - ็งป้ค home NAlert ๅฏๅ ณ้ญ - ็ฑ @honghuangdc [(98b75)](https://github.com/honghuangdc/soybean-admin/commit/98b75c2) + - ไผๅๅๅบไปฃ็ ๆฏ่พ - ็ฑ @honghuangdc [(cf67d)](https://github.com/honghuangdc/soybean-admin/commit/cf67d55) +- **็ฑปๅ**: + - ็งป้คๆ ็จ็ฑปๅใ - ็ฑ **Azir** [(eed61)](https://github.com/honghuangdc/soybean-admin/commit/eed617f) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐๆดๆฐๆฅๅฟ - ็ฑ @honghuangdc [(d3759)](https://github.com/honghuangdc/soybean-admin/commit/d37591d) + +### ๐ก ๆ้กน + +- **ไพ่ต**: ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(993e9)](https://github.com/honghuangdc/soybean-admin/commit/993e9ca) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) [](https://github.com/paynezhuang) [](https://github.com/Azir-11) +[Azir](mailto:2075125282@qq.com), + +## [v1.3.1](https://github.com/honghuangdc/soybean-admin/compare/v1.3.0...v1.3.1) (2024-07-22) + +### ๐ Bug ไฟฎๅค + +- **้กน็ฎ**: + - ไฟฎๅค้กถ้จ่ๅๆททๅๅๅๅๆจกๅผไธไพง่พนๆ ๅฎฝๅบฆๅผๅธธ็้ฎ้ข - ็ฑ @Azir-11 ๅจ https://github.com/honghuangdc/soybean-admin/issues/562 ไฟฎๅค [(c4695)](https://github.com/honghuangdc/soybean-admin/commit/c469512) + - ไฟฎๅคๆฐดๅนณๆททๅ่ๅๅ่ฝฌ้ฎ้ขใไฟฎๅค #563 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/563 ไฟฎๅค [(4e55b)](https://github.com/honghuangdc/soybean-admin/commit/4e55b0e) + - ไฟฎๅคๅฝๅธๅฑๆฅ่ช็งปๅจ็ซฏๆถๅ็ด่ๅไธๆธฒๆ็้ฎ้ข - ็ฑ @honghuangdc ไฟฎๅค [(84027)](https://github.com/honghuangdc/soybean-admin/commit/8402734) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐๆดๆฐๆฅๅฟ - ็ฑ @honghuangdc ๆดๆฐ [(613c8)](https://github.com/honghuangdc/soybean-admin/commit/613c836) + +### ๐จ ๆ ทๅผ + +- **ๅ ถไป**: ไฟฎๆน็ฐๅบฆๆจกๅผ็ไธญๆๅ็งฐ - ็ฑ **Azir** ไฟฎๆน [(53770)](https://github.com/honghuangdc/soybean-admin/commit/5377002) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) [](https://github.com/Azir-11) +[Azir](mailto:2075125282@qq.com), + + +## [v1.3.0](https://github.com/soybeanjs/soybean-admin/compare/v1.2.8...v1.3.0) (2024-07-22) + +### ๐จ ็ ดๅๆงๅๆด + +- **้กน็ฎ**: ้ๆๅ จๅฑ่ๅ & ๆฏๆ `reversed-horizontal-mix-menu`ใๅ ณ้ญ #365 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/365 ๆๅบ [(087e5)](https://github.com/soybeanjs/soybean-admin/commit/087e532) + +### ๐ ๅ่ฝ + +- **ๅ **: + - `@sa/scripts`: ๅฝไปค `gitCommit` ๆฏๆไธญๆ - ็ฑ @mmdapl ๅจ https://github.com/soybeanjs/soybean-admin/issues/548 ๆๅบ [(06971)](https://github.com/soybeanjs/soybean-admin/commit/06971f3) + - @sa/axios: ็จ AbortController ๆฟๆข CancelTokenSourceใๅ ณ้ญ #530, ๅ ณ้ญ #532 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/530 ๅ https://github.com/soybeanjs/soybean-admin/issues/532 ๆๅบ [(527fd)](https://github.com/soybeanjs/soybean-admin/commit/527fd79) + - @sa/scripts: ไธบๅฝไปค `gitCommitVerify` ๆทปๅ ๅฟฝ็ฅๆจกๅผๅ่กจใๅ ณ้ญ #504 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/504 ๆๅบ [(958d0)](https://github.com/soybeanjs/soybean-admin/commit/958d0ba) +- **้กน็ฎ**: + - ไฝฟๅๆฏ `main` ๆด็ฒพ็ฎ & ไฟฎๆน่ฏทๆฑ้่ฏๆฌกๆฐไธบ 0 - ็ฑ @Azir-11 ๆๅบ [(793b1)](https://github.com/soybeanjs/soybean-admin/commit/793b16e) + +### ๐ ไฟฎๅค + +- **้ฉๅญ**: ๅฝ pagesize ่ฟๅ 0 ๆถ้ฒๆญข็จๅบๅป็ป - ็ฑ @Azir-11 ๅจ https://github.com/soybeanjs/soybean-admin/issues/545 ๆๅบ [(f4eeb)](https://github.com/soybeanjs/soybean-admin/commit/f4eeb2e) + +### ๐ ้ๆ + +- **้กน็ฎ**: + - ๅๅนถ `theme tokens` ๅ `theme settings`ใๅ ณ้ญ #379 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/379 ๆๅบ [(1d1b1)](https://github.com/soybeanjs/soybean-admin/commit/1d1b148) + - ๅฐ css ๅ้ๆ่ฝฝๅฐ root - ็ฑ @honghuangdc ๆๅบ [(00f41)](https://github.com/soybeanjs/soybean-admin/commit/00f41dd) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐๆดๆฐๆฅๅฟ - ็ฑ @honghuangdc ๆๅบ [(a0b76)](https://github.com/soybeanjs/soybean-admin/commit/a0b76da) + +### ๐ก ๆๅก + +- **ไพ่ต**: ๆดๆฐไพ่ต - ็ฑ @honghuangdc ๆๅบ [(f6bd6)](https://github.com/soybeanjs/soybean-admin/commit/f6bd6b8) +- **้กน็ฎ**: ๆทปๅ ่ๆฌ `czh` - ็ฑ @honghuangdc ๆๅบ [(02069)](https://github.com/soybeanjs/soybean-admin/commit/0206969) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) [](https://github.com/mmdapl) [](https://github.com/Azir-11) + + +## [v1.2.8](https://github.com/soybeanjs/soybean-admin/compare/v1.2.7...v1.2.8) (2024-07-20) + +### ๐ ไฟฎๅค + +- **ๅ **: + - @sa/hooks: ไฟฎๅค useHookTable ็ searchParamsใไฟฎๅคไบ #552 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/552 ๆๅบ [(96c10)](https://github.com/soybeanjs/soybean-admin/commit/96c1044) +- **็ฑปๅ**: + - ไฟฎๅคไบๅผ็จ็ฑปๅ้่ฏฏ - ็ฑ **dodu2014** ๅจ https://github.com/soybeanjs/soybean-admin/issues/551 ๆๅบ [(3e2a9)](https://github.com/soybeanjs/soybean-admin/commit/3e2a993) + - ไฟฎๅค useHookTable ็ๆฐๆฎ็ฑปๅ - ็ฑ @honghuangdc ๆๅบ [(276ea)](https://github.com/soybeanjs/soybean-admin/commit/276ea7f) + +### ๐ ้ๆ + +- **้กน็ฎ**: ็จ `klona` ๆฟๆข `lodash-es` ็ `cloneDeep` - ็ฑ @honghuangdc ๆๅบ [(a9133)](https://github.com/soybeanjs/soybean-admin/commit/a91335d) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐๆดๆฐๆฅๅฟ - ็ฑ @honghuangdc ๆๅบ [(58fc0)](https://github.com/soybeanjs/soybean-admin/commit/58fc096) + +### ๐ก ๆๅก + +- **ไพ่ต**: ๆดๆฐไพ่ต - ็ฑ @honghuangdc ๆๅบ [(cf019)](https://github.com/soybeanjs/soybean-admin/commit/cf0192a) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) +[dodu2014](mailto:dodu@live.cn) + + +## [v1.2.7](https://github.com/honghuangdc/soybean-admin/compare/v1.2.6...v1.2.7) (2024-07-12) + +### ๐ ไผๅ + +- **้กน็ฎ**: ๆฏๆ่ชๅฎไน่ๅๅพๆ ๅคงๅฐ - ็ฑ @wynn-w ๅจ https://github.com/honghuangdc/soybean-admin/issues/534 ๆๅบ [(e035e)](https://github.com/honghuangdc/soybean-admin/commit/e035eab) + +### ๐ก ๆๅก + +- **ไพ่ต**: + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(72ede)](https://github.com/honghuangdc/soybean-admin/commit/72ede8b) + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(be13c)](https://github.com/honghuangdc/soybean-admin/commit/be13ca2) + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(752ec)](https://github.com/honghuangdc/soybean-admin/commit/752ec1e) +- **้กน็ฎ**: + - ไฟฎๅคๅทฒๅผ็จ็้ ็ฝฎ้ ็ฝฎ - ็ฑ @paynezhuang ๅจ https://github.com/honghuangdc/soybean-admin/issues/524 ๆๅบ [(0d20e)](https://github.com/honghuangdc/soybean-admin/commit/0d20e4c) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) [](https://github.com/wynn-w) [](https://github.com/paynezhuang) + +## [v1.2.6](https://github.com/honghuangdc/soybean-admin/compare/v1.2.5...v1.2.6) (2024-06-21) + +### ๐ ไฟฎๅค + +- **้กน็ฎ**: + - ่ฏทๆฑๆจกๆๆ ้ขไฝฟ็จ i18nใไฟฎๅค #507 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/507 ๆๅบ [(f7de3)](https://github.com/honghuangdc/soybean-admin/commit/f7de3fd) + - ไธบ `useTable` ๆทปๅ `getDataByPage`ใไฟฎๅค #499 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/499 ๆๅบ [(425c6)](https://github.com/honghuangdc/soybean-admin/commit/425c69a) + - ไฟฎๅค็ปๅฝ้ๅฎๅๅฐ routeHome ๆถ๏ผๅจๆ่ทฏ็ฑ็ routeHome ไธ้ๆ่ทฏ็ฑไธๅ็้ฎ้ขใไฟฎๅค #511 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/511 ๆๅบ [(49f60)](https://github.com/honghuangdc/soybean-admin/commit/49f60b2) + +### ๐ ไผๅ + +- **้กน็ฎ**: ไผๅ `getRouteQueryOfLoginRoute` - ็ฑ @honghuangdc [(693f7)](https://github.com/honghuangdc/soybean-admin/commit/693f704) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: + - ๆดๆฐๆดๆฐๆฅๅฟ - ็ฑ @honghuangdc [(5c67d)](https://github.com/honghuangdc/soybean-admin/commit/5c67d06) + - ๆดๆฐ่ช่ฟฐๆไปถ - ็ฑ @honghuangdc [(1e67a)](https://github.com/honghuangdc/soybean-admin/commit/1e67ae8) + +### ๐ก ๆๅก + +- **ไพ่ต**: + - ๆดๆฐไพ่ตใๅ ณ้ญ #510 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/510 ๆๅบ [(53143)](https://github.com/honghuangdc/soybean-admin/commit/531432d) + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(c7f6f)](https://github.com/honghuangdc/soybean-admin/commit/c7f6f2a) + +### ๐ค CI + +- **้กน็ฎ**: + - ๆทปๅ github ้ฎ้ขๆจกๆฟ - ็ฑ @honghuangdc [(b5027)](https://github.com/honghuangdc/soybean-admin/commit/b5027c8) + - ๆดๆฐ github ้ฎ้ขๆจกๆฟ - ็ฑ @honghuangdc [(ff1d5)](https://github.com/honghuangdc/soybean-admin/commit/ff1d504) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) + +## [v1.2.5](https://github.com/soybeanjs/soybean-admin/compare/v1.2.4...v1.2.5) (2024-06-15) + +### ๐ ้่ฏฏไฟฎๅค + +- **้กน็ฎ**: ไฟฎๅค็ปๅบๅๆ ็ญพ้กตๅผๅธธ็ผๅญ็้ฎ้ขใๅทฒไฟฎๅค #495 - ็ฑ @Azir-11 ๅจ https://github.com/soybeanjs/soybean-admin/issues/495 [(3eeac)](https://github.com/soybeanjs/soybean-admin/commit/3eeace9) + +### ๐ฅ ๆง่ฝ + +- **้กน็ฎ**: ๅๅงๅ้ๆ่ทฏ็ฑๅ่ฝไธ้่ฆๅผๆญฅ - ็ฑ **CHENZL** ๅจ https://github.com/soybeanjs/soybean-admin/issues/493 [(2198b)](https://github.com/soybeanjs/soybean-admin/commit/2198b98) + +### ๐ ไผๅ + +- **้กน็ฎ**: ไผๅไปฃ็ - ็ฑ @soybeanjs [(b94ba)](https://github.com/soybeanjs/soybean-admin/commit/b94baa1) +- **็ฑปๅ**: ๆ้ซๅ จๅฑ็ฑปๅ็ๅ ผๅฎนๆง - ็ฑ @Azir-11 ๅจ https://github.com/soybeanjs/soybean-admin/issues/494 [(cd9d5)](https://github.com/soybeanjs/soybean-admin/commit/cd9d58d) +- **ๅทฅๅ ท**: ๅๅฐไปฃ็ ็ผฉ่ฟ๏ผๆ้ซๅฏ่ฏปๆง - ็ฑ @Azir-11 ๅจ https://github.com/soybeanjs/soybean-admin/issues/496 [(ad2f2)](https://github.com/soybeanjs/soybean-admin/commit/ad2f247) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐCHANGELOG - ็ฑ @soybeanjs [(f70d2)](https://github.com/soybeanjs/soybean-admin/commit/f70d29b) + +### ๐ก ๆ้กน + +- **ไพ่ต**: ๆดๆฐไพ่ต - ็ฑ @soybeanjs [(b094d)](https://github.com/soybeanjs/soybean-admin/commit/b094d68) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) +[CHENZL](mailto:zlong5568863@qq.com) + + +## [v1.2.4](https://github.com/soybeanjs/soybean-admin/compare/v1.2.3...v1.2.4) (2024-06-14) + +### ๐ ไผๅ + +- **้กน็ฎ**: + - ไผๅ `setupAppVersionNotification` - ็ฑ @soybeanjs ๆไบค [(b5a72)](https://github.com/soybeanjs/soybean-admin/commit/b5a723c) + - ่ทๅ 'Asia/Shanghai' ๆถๅบ็ๆๅปบๆถ้ด - ็ฑ @soybeanjs ๆไบค [(069fa)](https://github.com/soybeanjs/soybean-admin/commit/069fa8a) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) + +## [v1.2.3](https://github.com/soybeanjs/soybean-admin/compare/v1.2.2...v1.2.3) (2024-06-13) + +### ๐ ไฟฎๅค้่ฏฏ + +- **้กน็ฎ**: + - ้่ฟๅจindex.htmlไธญๆทปๅ color-schemeๅ ๆ ็ญพไฟฎๅค็งปๅจๆต่งๅจไธป้ข้ฎ้ข - ็ฑ @KickCashew ๅจ https://github.com/soybeanjs/soybean-admin/issues/488 ไธญๆไบค [(c2125)](https://github.com/soybeanjs/soybean-admin/commit/c212565) + - ไฟฎๅคไบ็บง็ฎๅฝ็ปไปถไธบ็ฉบ - ็ฑ @paynezhuang ๅจ https://github.com/soybeanjs/soybean-admin/issues/491 ไธญๆไบค [(aabb2)](https://github.com/soybeanjs/soybean-admin/commit/aabb2a4) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: + - ไฟฎๅค่ถ ้พๆฅๆๅ้่ฏฏ - ็ฑ **Azir** ๆไบค [(20a81)](https://github.com/soybeanjs/soybean-admin/commit/20a8127) + - ๆดๆฐ README - ็ฑ @soybeanjs ๆไบค [(70261)](https://github.com/soybeanjs/soybean-admin/commit/7026126) + +### ๐ก ๆ้กน + +- **ไพ่ต**: + - ๆดๆฐไพ่ต - ็ฑ @soybeanjs ๆไบค [(813d8)](https://github.com/soybeanjs/soybean-admin/commit/813d8ce) + - ๆดๆฐไพ่ต - ็ฑ @soybeanjs ๆไบค [(bf718)](https://github.com/soybeanjs/soybean-admin/commit/bf71837) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/paynezhuang) [](https://github.com/KickCashew) +[Azir](mailto:2075125282@qq.com) + +## [v1.2.2](https://github.com/honghuangdc/soybean-admin/compare/v1.2.1...v1.2.2) (2024-06-12) + +### ๐ ็นๆง + +- **้กน็ฎ**: ๅๆขๆ ็ญพๆถ้็ฝฎๆปๅจไฝ็ฝฎ - ็ฑ @soybeanjs ๆไบค [(9094b)](https://github.com/honghuangdc/soybean-admin/commit/9094b21) + +### ๐ ไฟฎๅค้่ฏฏ + +- **้กน็ฎ**: + - ๅจDEVๆจกๅผไธ้่AppVersionNotification - ็ฑ @sigma-plus ๅจ https://github.com/honghuangdc/soybean-admin/issues/482 ไธญๆไบค [(62592)](https://github.com/honghuangdc/soybean-admin/commit/6259287) + - ไฟฎๅคๅจ็งปๅจๅธๅฑไธญ้่menu-togglerใfixed #483 - ็ฑ @soybeanjs ๅจ https://github.com/honghuangdc/soybean-admin/issues/483 ไธญๆไบค [(4470c)](https://github.com/honghuangdc/soybean-admin/commit/4470cb4) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐ README - ็ฑ @soybeanjs ๆไบค [(8f9a7)](https://github.com/honghuangdc/soybean-admin/commit/8f9a705) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/sigma-plus) + +## [v1.2.1](https://github.com/honghuangdc/soybean-admin/compare/v1.2.0...v1.2.1) (2024-06-07) + +### ๐ ไฟฎๅค้่ฏฏ + +- **้กน็ฎ**: + - ไฟฎๅค้กต้ข้ๆฐๅ ่ฝฝๆถ่ทๅ็จๆทไฟกๆฏ - ็ฑ @soybeanjs ๆไบค [(ff51b)](https://github.com/honghuangdc/soybean-admin/commit/ff51b72) + - ไฟฎๅคsetupAppVersionNotificationๆธฒๆ - ็ฑ @soybeanjs ๆไบค [(6a6eb)](https://github.com/honghuangdc/soybean-admin/commit/6a6eb9a) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐCHANGELOG - ็ฑ @soybeanjs [(fe06b)](https://github.com/honghuangdc/soybean-admin/commit/fe06b8c)ๅฎๆ + +### ๐ก ๆฅๅธธไปปๅก + +- **ไพ่ต**: ๆดๆฐไพ่ต - ็ฑ @soybeanjs [(08827)](https://github.com/honghuangdc/soybean-admin/commit/08827a4)ๅฎๆ + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) + + +## [v1.2.0](https://github.com/soybeanjs/soybean-admin/compare/v1.1.5...v1.2.0) (2024-06-06) + +### ๐ ๅ่ฝ + +- **้กน็ฎ**: + - ๆฏๆ็ณป็ปๆฐ็ๆฌๆดๆฐ้็ฅใๅ ณ้ญ #420 - ็ฑ @soybeanjs ๅจ https://github.com/soybeanjs/soybean-admin/issues/420 [(584cd)](https://github.com/soybeanjs/soybean-admin/commit/584cd54) + - ๅจ่ทฏ็ฑๅฎๅซไธญ่ทๅ็จๆทไฟกๆฏๅนถไปlocalStorageไธญ็งป้คใๅ ณ้ญ #459 - ็ฑ @soybeanjs ๅจ https://github.com/soybeanjs/soybean-admin/issues/459 [(5531a)](https://github.com/soybeanjs/soybean-admin/commit/5531a68) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐCHANGELOG - ็ฑ @soybeanjs [(2bec8)](https://github.com/soybeanjs/soybean-admin/commit/2bec899) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) + +## [v1.1.5](https://github.com/soybeanjs/soybean-admin/compare/v1.1.4...v1.1.5) (2024-06-06) + +### ๐ ้่ฏฏไฟฎๅค + +- **้กน็ฎ**: ไฟฎๅคๆณจๅ็ปไปถๅ๏ผCodeLogin => Register - ็ฑ @m-xlsea ๅจ https://github.com/soybeanjs/soybean-admin/issues/478 [(ddf38)](https://github.com/soybeanjs/soybean-admin/commit/ddf3823) + +### ๐ก ๆๅก + +- **ไพ่ต**: ๆดๆฐไพ่ต - ็ฑ @soybeanjs [(060c0)](https://github.com/soybeanjs/soybean-admin/commit/060c0a9) +- **้กน็ฎ**: ๆดๆฐ vscode ่ฎพ็ฝฎ: vue ๅฎๆน - ็ฑ @soybeanjs [(76649)](https://github.com/soybeanjs/soybean-admin/commit/76649e2) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/m-xlsea) + +## [v1.1.4](https://github.com/honghuangdc/soybean-admin/compare/v1.1.3...v1.1.4) (2024-06-06) + +### ๐ ้่ฏฏไฟฎๅค + +- **utils**: ไฟฎๅคไบๆesc้ฎๆถmodalLogout็้่ฏฏ - ็ฑ @sigma-plus ๅจ https://github.com/honghuangdc/soybean-admin/issues/470 ไธญๆๅบ [(bd69c)](https://github.com/honghuangdc/soybean-admin/commit/bd69c00) + +### ๐ ไผๅ + +- **projects**: ไผๅไบRouteMeta็ๅคๆณจ - ็ฑ @soybeanjs ๆๅบ [(ffb48)](https://github.com/honghuangdc/soybean-admin/commit/ffb48b1) + +### ๐ ๆๆกฃ + +- **projects**: + - ๆดๆฐไบCHANGELOG - ็ฑ @soybeanjs ๆๅบ [(756f8)](https://github.com/honghuangdc/soybean-admin/commit/756f84a) + - ๆดๆฐไบNode&pnpm็ๆฌ - ็ฑ @Azir-11 ๅจ https://github.com/honghuangdc/soybean-admin/issues/472 ไธญๆๅบ [(9b05d)](https://github.com/honghuangdc/soybean-admin/commit/9b05d73) + +### ๐ก ๆ้กน + +- **deps**: + - ๆดๆฐไบไพ่ต - ็ฑ @soybeanjs ๆๅบ [(d0380)](https://github.com/honghuangdc/soybean-admin/commit/d0380ce) + - ๆดๆฐไบไพ่ต - ็ฑ @soybeanjs ๆๅบ [(1f464)](https://github.com/honghuangdc/soybean-admin/commit/1f4647b) +- **projects**: + - ๅ ณ้ญไบhttpไปฃ็ - ็ฑ @soybeanjs ๆๅบ [(d08a3)](https://github.com/honghuangdc/soybean-admin/commit/d08a381) + - ๆดๆฐไบmock url - ็ฑ @soybeanjs ๆๅบ [(e6086)](https://github.com/honghuangdc/soybean-admin/commit/e6086f0) + - ๆดๆฐไบvscode่ฎพ็ฝฎ - ็ฑ @soybeanjs ๆๅบ [(910df)](https://github.com/honghuangdc/soybean-admin/commit/910dfca) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) [](https://github.com/sigma-plus) + +## [v1.1.3](https://github.com/soybeanjs/soybean-admin/compare/v1.1.2...v1.1.3) (2024-06-02) + +### ๐ ้่ฏฏไฟฎๅค + +- **็ปไปถ**: + - ไฟฎๅคไบ็ฑไบๅ่ฝฆๅฏผ่ดๆ็ดขๆกๅๅคๅผนๅบ็้ฎ้ข - ็ฑ @Azir-11 ๅจ https://github.com/soybeanjs/soybean-admin/issues/468 ไธญไฟฎๅค [(5bd96)](https://github.com/soybeanjs/soybean-admin/commit/5bd96b8) +- **้กน็ฎ**: + - ไฟฎๅค็นๅป่ๅๆ็ดขใไฟฎๅคไบ #466๏ผๅ ณ้ญ #467 - ็ฑ @soybeanjs ๅจ https://github.com/soybeanjs/soybean-admin/issues/466 ๅ https://github.com/soybeanjs/soybean-admin/issues/467 ไธญไฟฎๅค [(8efdb)](https://github.com/soybeanjs/soybean-admin/commit/8efdb10) + - ไฟฎๅค reCacheRouteใไฟฎๅคไบ #464 - ็ฑ @soybeanjs ๅจ https://github.com/soybeanjs/soybean-admin/issues/464 ไธญไฟฎๅค [(59faf)](https://github.com/soybeanjs/soybean-admin/commit/59faf15) +- **ๆ ทๅผ**: + - ไฟฎๅค FirstLevelMenu ๆ ทๅผใไฟฎๅคไบ #450 - ็ฑ @soybeanjs ๅจ https://github.com/soybeanjs/soybean-admin/issues/450 ไธญไฟฎๅค [(db64b)](https://github.com/soybeanjs/soybean-admin/commit/db64b0e) + - ไฟฎๅค PinToggler ๆ ทๅผใไฟฎๅคไบ #451 - ็ฑ @soybeanjs ๅจ https://github.com/soybeanjs/soybean-admin/issues/451 ไธญไฟฎๅค [(42b12)](https://github.com/soybeanjs/soybean-admin/commit/42b121a) + +### ๐ ไผๅ + +- **็ปไปถ**: ๆ้ซ TableColumnSetting ็ๆๅจๅบๅ็ฒพๅบฆ๏ผๅธฆๆๅจ็ป - ็ฑ @orangelckc ๅจ https://github.com/soybeanjs/soybean-admin/issues/465 ไธญไผๅ [(2aa85)](https://github.com/soybeanjs/soybean-admin/commit/2aa85c6) +- **้กน็ฎ**: unocss ่พนๆกๅฟซๆทๆนๅผ - ็ฑ @soybeanjs ไผๅ [(40d0f)](https://github.com/soybeanjs/soybean-admin/commit/40d0f8a) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆดๆฐ CHANGELOG - ็ฑ @soybeanjs ๆดๆฐ [(87b18)](https://github.com/soybeanjs/soybean-admin/commit/87b1838) + +### ๐ก ๆ้กน + +- **ๅ ถไป**: + - ็บ ๆญฃๆผๅ้่ฏฏ - ็ฑ @orangelckc ๅจ https://github.com/soybeanjs/soybean-admin/issues/460 ไธญ็บ ๆญฃ [(086ba)](https://github.com/soybeanjs/soybean-admin/commit/086bad4) + - ็บ ๆญฃๆผๅ้่ฏฏ - ็ฑ @Azir-11 ๅจ https://github.com/soybeanjs/soybean-admin/issues/462 ไธญ็บ ๆญฃ [(f1850)](https://github.com/soybeanjs/soybean-admin/commit/f185041) +- **้กน็ฎ**: + - ๆดๆฐ vscode launch.json - ็ฑ @soybeanjs ๆดๆฐ [(4c1c7)](https://github.com/soybeanjs/soybean-admin/commit/4c1c7e6) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/soybeanjs) [](https://github.com/Azir-11) [](https://github.com/orangelckc) + +## [v1.1.2](https://github.com/soybeanjs/soybean-admin/compare/v1.1.1...v1.1.2) (2024-05-24) + +### ๐ ้่ฏฏไฟฎๅค + +- **้กน็ฎ**: + - ไฟฎๅคๅคด้จๆ ทๅผ & ไฟฎๅค็นๅปๅ จๅฑๆ ็ญพๆถๆ้ฎ้ซไบฎใไฟฎๅคไบ #446 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/446 [(64fc0)](https://github.com/soybeanjs/soybean-admin/commit/64fc099) + - ไฟฎๅคๅคๆ ็ญพ้กตๅชๆธฒๆไธๆฌกใไฟฎๅคไบ #441 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/441 [(e379d)](https://github.com/soybeanjs/soybean-admin/commit/e379d6c) + +### ๐ ไผๅ + +- **้กน็ฎ**: ไผๅไปฃ็ - ็ฑ @honghuangdc [(bc8dc)](https://github.com/soybeanjs/soybean-admin/commit/bc8dc47) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) + +## [v1.1.1](https://github.com/soybeanjs/soybean-admin/compare/v1.1.0...v1.1.1) (2024-05-20) + +### ๐ ๅ่ฝ + +- **hooks**: ไธบ useEcharts ๆทปๅ setOptions - ็ฑ @honghuangdc ๆไบค [(e4d53)](https://github.com/soybeanjs/soybean-admin/commit/e4d53aa) + +### ๐ ไฟฎๅค้่ฏฏ + +- **projects**: + - ไฟฎๅค useRouterใไฟฎๅคไบ #436 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/436 ๆไบค [(0774a)](https://github.com/soybeanjs/soybean-admin/commit/0774a51) + - ๅจๅจๆ่ทฏ็ฑๆจกๅผไธ่ทๅ่ทฏ็ฑๆถๆทปๅ ้่ฏฏๅค็ใไฟฎๅคไบ 440 - ็ฑ @honghuangdc ๆไบค [(57b4a)](https://github.com/soybeanjs/soybean-admin/commit/57b4a9d) +- **styles**: + - ไฟฎๅค useTable ็ฑปๅ - ็ฑ @honghuangdc ๆไบค [(07124)](https://github.com/soybeanjs/soybean-admin/commit/071241f) + +### ๐ ๆๆกฃ + +- **projects**: + - ๆดๆฐ CHANGELOG - ็ฑ @honghuangdc ๆไบค [(19783)](https://github.com/soybeanjs/soybean-admin/commit/1978397) + - ๆดๆฐ README.md - ็ฑ @honghuangdc ๆไบค [(fa56e)](https://github.com/soybeanjs/soybean-admin/commit/fa56e9c) + - ๆดๆฐ README.md - ็ฑ @honghuangdc ๆไบค [(419ea)](https://github.com/soybeanjs/soybean-admin/commit/419ea42) + +### ๐ก ๆ้กน + +- **projects**: + - ๆดๆฐไพ่ตๅนถไฟฎๅค TS ้่ฏฏ - ็ฑ @honghuangdc ๆไบค [(4ea9c)](https://github.com/soybeanjs/soybean-admin/commit/4ea9c85) + - ๆดๆฐ eslint-config ๅนถไฟฎๅคไปฃ็ - ็ฑ @honghuangdc ๆไบค [(68ea9)](https://github.com/soybeanjs/soybean-admin/commit/68ea974) + - ๆดๆฐ @elegant-router/vue ๅนถไธบ resolve route ๆทปๅ ้่ฏฏๅค็ใไฟฎๅคไบ #442 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/442 ๆไบค [(24ff8)](https://github.com/soybeanjs/soybean-admin/commit/24ff852) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) + +## [v1.1.0](https://github.com/honghuangdc/soybean-admin/compare/v1.0.9...v1.1.0) (2024-05-07) + +### ๐ ๅ่ฝ + +- **้กน็ฎ**: + - ๆฏๆ็ฐๅบฆใไฟฎๅคไบ #385 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/385 [(d335d)](https://github.com/honghuangdc/soybean-admin/commit/d335df6) + - ๆทปๅ ๅ็ผๅฐๆฌๅฐๅญๅจ - ็ฑ **Azir** [(1fc34)](https://github.com/honghuangdc/soybean-admin/commit/1fc34cc) + - ๆทปๅ ่กจๆ ผๆพ็คบๆปๆฐ้้กน - ็ฑ **paynezhuang** [(3e61e)](https://github.com/honghuangdc/soybean-admin/commit/3e61eab) + - ๆทปๅ ๆจ่้ข่ฒๅๆขใๅ ณ้ญไบ #388 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/388 [(a1920)](https://github.com/honghuangdc/soybean-admin/commit/a1920fc) + - ๆทปๅ ่ๅ่ทฏ็ฑๅญๆฎต - ็ฑ **paynezhuang** [(dbe31)](https://github.com/honghuangdc/soybean-admin/commit/dbe31eb) + - ๆฏๆ็ญๆถ้ดๅ ้ๅค่ฏทๆฑ้่ฏฏๅชๅบ็ฐไธๆฌกใๅ ณ้ญไบ #368, ๅ ณ้ญไบ #369 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/368 ๅ https://github.com/honghuangdc/soybean-admin/issues/369 [(e3bd3)](https://github.com/honghuangdc/soybean-admin/commit/e3bd397) + - ้่ฟ้ผ ๆ ๆป่ฝฎๆ้ฎ็นๅปๅ ณ้ญๆ ็ญพ - ็ฑ **JianJroh** [(d3849)](https://github.com/honghuangdc/soybean-admin/commit/d3849ba) + - ้กต้ข๏ผๆฏๆ็ฎก็่ๅๆดๅค้้กนใๅ ณ้ญไบ #366 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/366 [(c4b5c)](https://github.com/honghuangdc/soybean-admin/commit/c4b5c65) + - useTable ๆทปๅ ๅฑๅผๆพ็คบ - ็ฑ **paynezhuang** [(0a90d)](https://github.com/honghuangdc/soybean-admin/commit/0a90dd3) + +### ๐ ้่ฏฏไฟฎๅค + +- **้กน็ฎ**: + - ่ๅ fixedIndexInTab ้ป่ฎคไธบ null - ็ฑ **paynezhuang** [(3d10e)](https://github.com/honghuangdc/soybean-admin/commit/3d10ef1) + - ไฟฎๅค่ๅๅๆขๅจ zIndex - ็ฑ @honghuangdc [(7bd43)](https://github.com/honghuangdc/soybean-admin/commit/7bd43df) + - ไฟฎๅค็ฎก็่ๅๆจกๆๆ ทๅผ - ็ฑ @honghuangdc [(60f3b)](https://github.com/honghuangdc/soybean-admin/commit/60f3b14) + - ๅฝ่ง่ฒๆนๅๆถไฟฎๅค่ๅๆฐๆฎใไฟฎๅคไบ #391 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/391 [(3b47b)](https://github.com/honghuangdc/soybean-admin/commit/3b47b5a) + +### ๐ ไผๅ + +- **้กน็ฎ**: ็งป้คๅบๅผ็ไปฃ็ - ็ฑ @honghuangdc [(72ccb)](https://github.com/honghuangdc/soybean-admin/commit/72ccb6b) + +### ๐ ้ๆ + +- **้กน็ฎ**: + - ้ๆ @sa/color-palette => @sa/color & ไผๅ @sa/utils ไปฃ็ - ็ฑ @honghuangdc [(34999)](https://github.com/honghuangdc/soybean-admin/commit/3499997) + - menu-operate-drawer => menu-operate-modal - ็ฑ @honghuangdc [(003e1)](https://github.com/honghuangdc/soybean-admin/commit/003e145) + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: + - ๆทปๅ CHANGELOG.zh_CN.md - ็ฑ @honghuangdc [(18b3f)](https://github.com/honghuangdc/soybean-admin/commit/18b3f05) + - ๆดๆฐ CHANGELOG - ็ฑ @honghuangdc [(4d17c)](https://github.com/honghuangdc/soybean-admin/commit/4d17cfd) + +### ๐ก ๆ้กน + +- **ไพ่ต**: + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(1cb38)](https://github.com/honghuangdc/soybean-admin/commit/1cb3816) + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(599b4)](https://github.com/honghuangdc/soybean-admin/commit/599b4e1) +- **้กน็ฎ**: + - ๅๅนถ main ๅฐ v1.1.0 - ็ฑ @honghuangdc [(ebe55)](https://github.com/honghuangdc/soybean-admin/commit/ebe55af) + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com), [JianJroh](mailto:rhjian@foxmail.com), [Azir](mailto:2075125282@qq.com) + +## [v1.1.0-beta.2](https://github.com/honghuangdc/soybean-admin/compare/v1.1.0-beta.1...v1.1.0-beta.2) (2024-05-07) + +### ๐ ็นๆง + +- **้กน็ฎ**: useTableๆทปๅ ๅฑๅผไปฅๆพ็คบ - ็ฑ **paynezhuang** [(0a90d)](https://github.com/honghuangdc/soybean-admin/commit/0a90dd3) ๆไพ + +### ๐ ไฟฎๅค็้่ฏฏ + +- **้กน็ฎ**: + - ไฟฎๅค manage_menu ๆจกๆๆ ทๅผ - ็ฑ @honghuangdc [(60f3b)](https://github.com/honghuangdc/soybean-admin/commit/60f3b14) ๆไพ + - ๅฝ่ง่ฒๆนๅๆถไฟฎๅค่ๅๆฐๆฎใไฟฎๅคไบ #391 - ็ฑ @honghuangdc ๅจ https://github.com/honghuangdc/soybean-admin/issues/391 [(3b47b)](https://github.com/honghuangdc/soybean-admin/commit/3b47b5a) ๆไพ + +### ๐ ไผๅ + +- **้กน็ฎ**: ๅ ้คๅบๅผ็ไปฃ็ - ็ฑ @honghuangdc [(72ccb)](https://github.com/honghuangdc/soybean-admin/commit/72ccb6b) ๆไพ + +### ๐ ๆๆกฃ + +- **้กน็ฎ**: ๆทปๅ CHANGELOG.zh_CN.md - ็ฑ @honghuangdc [(18b3f)](https://github.com/honghuangdc/soybean-admin/commit/18b3f05) ๆไพ + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) +[paynezhuang](mailto:paynezhuang@gmail.com) + + +## [v1.1.0-beta.1](https://github.com/soybeanjs/soybean-admin/compare/v1.0.9...v1.1.0-beta.1) (2024-05-07) + +### ๐ ๅ่ฝ + +- **้กน็ฎ**: + - ๆฏๆ็ฐๅบฆใไฟฎๅคไบ #385 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/385 [(d335d)](https://github.com/soybeanjs/soybean-admin/commit/d335df6) + - ๆทปๅ ๅ็ผๅฐๆฌๅฐๅญๅจ - ็ฑ **Azir** [(1fc34)](https://github.com/soybeanjs/soybean-admin/commit/1fc34cc) + - ๆทปๅ ่กจๆ ผ showTotal ้้กน - ็ฑ **paynezhuang** [(3e61e)](https://github.com/soybeanjs/soybean-admin/commit/3e61eab) + - ๆทปๅ ๆจ่้ข่ฒๅๆขใๅ ณ้ญไบ #388 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/388 [(a1920)](https://github.com/soybeanjs/soybean-admin/commit/a1920fc) + - ๆทปๅ ่ๅ่ทฏ็ฑๅญๆฎต - ็ฑ **paynezhuang** [(dbe31)](https://github.com/soybeanjs/soybean-admin/commit/dbe31eb) + - ๆฏๆ็ญๆถ้ดๅ ้ๅค่ฏทๆฑ้่ฏฏๅชๅ็ไธๆฌกใๅ ณ้ญไบ #368, ๅ ณ้ญไบ #369 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/368 ๅ https://github.com/soybeanjs/soybean-admin/issues/369 [(e3bd3)](https://github.com/soybeanjs/soybean-admin/commit/e3bd397) + - ้่ฟ้ผ ๆ ๆป่ฝฎๆ้ฎ็นๅปๅ ณ้ญๆ ็ญพ - ็ฑ **JianJroh** [(d3849)](https://github.com/soybeanjs/soybean-admin/commit/d3849ba) + - ้กต้ข๏ผๆฏๆๆดๅค็ manage_menu ้้กนใๅ ณ้ญไบ #366 - ็ฑ @honghuangdc ๅจ https://github.com/soybeanjs/soybean-admin/issues/366 [(c4b5c)](https://github.com/soybeanjs/soybean-admin/commit/c4b5c65) + +### ๐ ้่ฏฏไฟฎๅค + +- **้กน็ฎ**: + - ไฟฎๅค่ๅ fixedIndexInTab ้ป่ฎคไธบ null - ็ฑ **paynezhuang** [(3d10e)](https://github.com/soybeanjs/soybean-admin/commit/3d10ef1)ๅฎๆ + - ไฟฎๅค่ๅๅๆขๅจ zIndex - ็ฑ @honghuangdc [(7bd43)](https://github.com/soybeanjs/soybean-admin/commit/7bd43df)ๅฎๆ + +### ๐ ้ๆ + +- **้กน็ฎ**: + - ้ๆ @sa/color-palette => @sa/color & ๆง่ฝไผๅ @sa/utils - ็ฑ @honghuangdc [(34999)](https://github.com/soybeanjs/soybean-admin/commit/3499997)ๅฎๆ + - menu-operate-drawer => menu-operate-modal - ็ฑ @honghuangdc [(003e1)](https://github.com/soybeanjs/soybean-admin/commit/003e145)ๅฎๆ + +### ๐ก ๆๅก + +- **ไพ่ต**: + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(1cb38)](https://github.com/soybeanjs/soybean-admin/commit/1cb3816)ๅฎๆ + - ๆดๆฐไพ่ต - ็ฑ @honghuangdc [(599b4)](https://github.com/soybeanjs/soybean-admin/commit/599b4e1)ๅฎๆ +- **้กน็ฎ**: + - ๅๅนถไธปๅๆฏๅฐ v1.1.0 - ็ฑ @honghuangdc [(ebe55)](https://github.com/soybeanjs/soybean-admin/commit/ebe55af)ๅฎๆ + +### โค๏ธ ่ดก็ฎ่ + +[](https://github.com/honghuangdc) +[JianJroh](mailto:rhjian@foxmail.com), [paynezhuang](mailto:paynezhuang@gmail.com), [Azir](mailto:2075125282@qq.com) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..20547de --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Soybean + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.en_US.md b/README.en_US.md new file mode 100644 index 0000000..2306bd9 --- /dev/null +++ b/README.en_US.md @@ -0,0 +1,184 @@ +
+ +--- + +[](./LICENSE) +[](https://github.com/soybeanjs/soybean-admin) +[](https://github.com/soybeanjs/soybean-admin) +[](https://gitee.com/honghuangdc/soybean-admin) + +QQ Group
+Add the following WeChat to invite to the WeChat group
+QQไบคๆต็พค
+ๆทปๅ ไธ้ขๅพฎไฟก้่ฏท่ฟๅพฎไฟก็พค
+