Releases: uiwjs/uiw-admin
Releases · uiwjs/uiw-admin
v5.2.13
- 🌟 feat:新增生成项目入口文件插件
99353c0
@SunLxy - 🌟 feate:(useForm):新增getFormValues获取表单值
1c90585
@ChenlingasMx - 🌟 feat:(layout-tabs)加删除tabs
192e6e9
@SunLxy - 🌟 feat(useForm):增加resetForm 和 formRef返回值
33e510e
@ChenlingasMx - 🌟 feat(ProForm):新增Rate组件 & 更新文档
60d4b9d
@ChenlingasMx - 🐞 fix(Pull):pull branch master
7b31ab0
@ChenlingasMx - 🐞 fix: protable组件选择框固定列
274c31f
@xingyuefeng - 🐞 fix(Pull):pull branch master
a41ce07
@ChenlingasMx - 🐞 fix:修复
request
中body
参数问题7f684cf
@SunLxy - 🐞 fix:修改中参数问题
0006d40
@SunLxy - 🐞 fix(request):修复登陆有swr_Rest_Time参数
97ac816
@ChenlingasMx - 🐞 fix(pull):pull branch master & 解决冲突
1ef353d
@ChenlingasMx - 📖 doc:更新文档
b71f561
@SunLxy - 📖 docs(ProForm):更新文档
7f161e0
@ChenlingasMx - 📖 docs:CHANGELOG 更新文档
fad4c6f
@ChenlingasMx - 📖 docs:CHANGELOG文档更新
85a0c48
@ChenlingasMx
v5.2.12
- 🌟 feat:request中headers 加token
1a9c88a
@SunLxy - 🐞 fix(Pull):pull branch master
f2aa80c
@ChenlingasMx - 🐞 fix(pull):pull branch master
7ccb5f8
@ChenlingasMx - 🐞 fix(ProTable):defaultColumns优化
fbb8092
@ChenlingasMx - 🐞 fix: 完善的分页判断
1c607ad
@xingyuefeng - 🐞 fix: 修复protable布传rowSelection问题
a7c115b
@xingyuefeng - 🐞 fix(ProForm):Upload组件点击无效
2cb595f
@ChenlingasMx - 🐞 fix: 修复分页不显示
b344a77
@xingyuefeng - 📄 update changelog
a9118e1
@xingyuefeng - 📖 doc:更新文档
4a07d9a
@SunLxy
v5.2.11
v5.2.10
- 🌟 feat(ProForm):增加cardProps;collapseProps;collapsePanelProps api
9b0c29b
@ChenlingasMx - 🌟 feat(config): Add overrideWebpack options.
42eb339
- 🐞 fix: 修复protable查询
1384851
@xingyuefeng - 🆎 type(config): export kkt types.
25fdc81
- 📖 doc(config): Update README.md
d2a9917
- 📖 doc(config): Update README.md
9a11856
- 📖 doc(config): Update README.md
11d285b
- 📖 doc(config): Update README.md
a673c9c
- 📖 doc: Update README.md
ed0c64f
- 📖 doc: Update README.md
7b55905
- 📖 docs:更新CHANGELOG文档
8e3857b
@ChenlingasMx - 📖 doc:修改文档
b228abf
@SunLxy - 📖 doc:更新文档,fix:修改文件大小写
1d84eae
@SunLxy - 📄 ci:update
7acb241
@SunLxy - 📄 Delete packages/Exceptions directory
fcfe94a
@SunLxy - 📄 ci:update
f6d5dfe
@SunLxy - 📄 update changelog
06e5303
@xingyuefeng
v5.2.9
- 🌟 feat(ProTable):增加align列局中api
832c6e6
@ChenlingasMx - 🌟 feat(ProTable):增加scroll api增加横向滚动
9898a14
@ChenlingasMx - 🐞 fix(pull):pull branch master
63b26a8
@ChenlingasMx - 🐞 fix(pull):pull branch master
1a9b708
@ChenlingasMx - 🐞 fix:修复
@uiw-admin/utils
中request
请求参数19cefcf
@SunLxy - 📖 doc:更新文档
5f06fff
@SunLxy - 📄 Merge branch 'master' of github.com:uiwjs/uiw-admin
b35c4ff
@SunLxy - 📄 Merge branch 'master' of github.com:uiwjs/uiw-admin
2365373
@SunLxy
v5.2.8
- 📄 update tsbb latest
bb4d38f
@xingyuefeng - 📖 doc:更新文档说明
3d59b34
@SunLxy - 🌟 feat(ProDrawer):
ProDrawer
:buttons新增path
和disabled
api,按钮增加权限功能7b5e5ba
@ChenlingasMx - 🐞 fix(pull):pull branch master
69295eb
@ChenlingasMx - 🐞 fix: 修复protable查询错误
f3d939c
@xingyuefeng - 📄 Merge branch 'master' of github.com:uiwjs/uiw-admin
1ff3b52
@xingyuefeng - 📄 release 5.2.8
2078d61
@xingyuefeng
v5.2.7
- 🐞 fix(ProForm):form参数改为非必传
890032d
@ChenlingasMx - 🐞 fix(pull):pull branch master
b5c2179
@ChenlingasMx - 💄 chore: Update sandbox.config.json
2dbcdb1
- 📖 docs:CHANGELOG文档更新
2cc498e
@ChenlingasMx - 📖 doc: Update README.md
ffe27e2
新增一种 mock 代理 方式
import path from 'path'
import { MockerAPIOptions } from 'kkt'
import defaultConfig from '@uiw-admin/config'
import express from 'express'
export default defaultConfig({
define: {
AUTH: false,
STORAGE: 'local',
},
// 第一种
+ proxySetup: (app: express.Application): MockerAPIOptions => {
+ return {
+ path: path.resolve('./mocker/index.js'),
+ }
+ },
})
// 第二种
// export const proxySetup = (): MockerAPIOptions => {
// /**
// * mocker-api that creates mocks for REST APIs.
// * It will be helpful when you try to test your application without the actual REST API server.
// * https://github.com/jaywcjlove/mocker-api
// */
// return {
// path: path.resolve('./mocker/index.js'),
// /**
// * https://github.com/jaywcjlove/mocker-api/tree/96c2eb94694571e0e3003e6ad9ce1c809499f577#options
// */
// option: {},
// }
// }
v5.2.6
v5.2.5
- 🐞 fix:basejs修复
@@
报错0ace0ea
@SunLxy - 🐞 fix(deps):update uiw to v4.10.3 & ProForm新增upload组件
a8a43d7
@ChenlingasMx - 🐞 fix(pull):pull branch master
b79a86c
@ChenlingasMx - 📄 dos(CHANGELOG):更新文档
c7cc712
@ChenlingasMx - 🐞 fix:暂时处理 swr重新请求问题
e592bc4
@SunLxy - 📄 Merge branch 'master' of github.com:uiwjs/uiw-admin
aea4fd8
@SunLxy - 🐞 fix:
@uiw-admin/basic-layouts
中layout
参数不必填61c25ef
@SunLxy - 🐞 fix:ts提示
096a389
@SunLxy - 🐞 fix(utils):request 解构body中的swr_Rest_Time
9e0526f
@ChenlingasMx - 🐞 fix(pull):pull branch master
8448141
@ChenlingasMx - 🐞 fix:修改
ProTable
表格事件70e3398
@SunLxy - 📄 Merge branch 'master' of github.com:uiwjs/uiw-admin
90a6c09
@SunLxy
v5.2.4
- 📖 docs(CHANGELOG):更新发版文档
a867922
@ChenlingasMx - 📄 update:ci
bebe759
@SunLxy - 📄 Merge branch 'master' of github.com:uiwjs/uiw-admin
66c2b1a
@SunLxy - 📖 docs(website):components ProForm 文档报错
927c23e
@ChenlingasMx - 🐞 fix:注释
e7019c7
@SunLxy