cfel-base-components 0.0.17 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ {
2
+ "typescript.tsdk": "node_modules/typescript/lib"
3
+ }
@@ -60,7 +60,7 @@ const App = () => {
60
60
  ></Role> */}
61
61
 
62
62
  {/* <RoleInfo
63
- accountInfo={accountInfo} //角色详情
63
+ roleInfo={roleInfo} //角色详情
64
64
  timeFormatter={timeFormatter} //时间戳转换
65
65
  dataList={dataList} //表格数据
66
66
  columns={columns} //列
@@ -69,7 +69,7 @@ const App = () => {
69
69
  pagination={pagination} //分页配置
70
70
  handleOnFinish={handleOnFinish} //搜索
71
71
  handleOnReset={handleOnReset} //重置
72
- queryByKeywordFunc={queryByKeywordFunc}
72
+ queryByKeywordFunc={queryByKeywordFunc}//搜索
73
73
  getQueryBoundRolesFunc={getQueryBoundRolesFunc} //绑定打开弹框
74
74
  editAccountOpen={editAccountOpen}// 弹框状态
75
75
  setEditAccountOpen={setEditAccountOpen}// 关闭弹框
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfel-base-components",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "description": "cfel-base-components",
5
5
  "main": "/src/index.tsx",
6
6
  "types": "src/index.d.ts",
package/src/index.tsx CHANGED
@@ -1,11 +1,12 @@
1
1
  import LiosLayout, { LiosLayoutlProps } from './components/layout'
2
- import PageContainer from './components/Pagecontainer'
2
+ import PageContainer from './components/PageContainer'
3
3
  import QueryFilter from './components/QueryFilter'
4
4
  import ProTable from './components/ProTable'
5
5
  import Pagination from './components/Pagination'
6
6
  import Account from './components/account'
7
7
  import AccountInfo from './components/accountInfo'
8
8
  import Role from './components/role'
9
+ import RoleInfo from './components/roleInfo'
9
10
 
10
11
 
11
12
  export {
@@ -17,5 +18,6 @@ export {
17
18
  Pagination,
18
19
  Account,
19
20
  AccountInfo,
20
- Role
21
+ Role,
22
+ RoleInfo
21
23
  }