cfel-base-components 0.0.17 → 0.0.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.tsx +3 -1
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.18",
4
4
  "description": "cfel-base-components",
5
5
  "main": "/src/index.tsx",
6
6
  "types": "src/index.d.ts",
package/src/index.tsx CHANGED
@@ -6,6 +6,7 @@ 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
  }