cfel-base-components 2.2.2 → 2.2.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfel-base-components",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "description": "cfel-base-components",
5
5
  "main": "/src/index.tsx",
6
6
  "types": "src/index.d.ts",
@@ -5,7 +5,7 @@
5
5
  font-size: 12px;
6
6
  line-height: 20px;
7
7
  padding: 4px 0 8px;
8
- letter-spacing: .8px;
8
+ letter-spacing: .6px;
9
9
 
10
10
  .company-name {
11
11
  margin-right: 12px;
@@ -11,7 +11,7 @@ export default function CopyRight({
11
11
  return (
12
12
  <div className={cx("copy-right")}>
13
13
  <span className={cx("company-name")}>
14
- © {new Date().getFullYear() || ''} 骋风而来
14
+ © {new Date().getFullYear() || ''} 杭州骋风而来数字科技有限公司
15
15
  </span>
16
16
  <span className={cx("icp")}>
17
17
  <a href="https://beian.miit.gov.cn/" target="_blank">浙ICP备2023015664号-1</a>
package/src/index.tsx CHANGED
@@ -1,6 +1,7 @@
1
1
  import LiosLayout, { LiosLayoutlProps } from './components/layout'
2
2
 
3
3
  import PageContainer from './components/base-component/PageContainer'
4
+ import CopyRight from './components/base-component/CopyRight'
4
5
  import QueryFilter from './components/base-component/QueryFilter'
5
6
  import ProTable from './components/base-component/ProTable'
6
7
  import Pagination from './components/base-component/Pagination'
@@ -18,6 +19,8 @@ import { getUrlParams, downloadFile, timeFormatter } from './utils/index'
18
19
  export {
19
20
  LiosLayout,
20
21
  LiosLayoutlProps,
22
+
23
+ CopyRight,
21
24
  PageContainer,
22
25
  QueryFilter,
23
26
  ProTable,
@@ -36,7 +39,7 @@ export {
36
39
  getUrlParams,
37
40
  downloadFile,
38
41
  timeFormatter,
39
-
42
+
40
43
  CpcRole,
41
44
  CpcRoleInfo
42
45
  }