@yeeyoon/library 2.2.8 → 2.3.2

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.
@@ -252,7 +252,7 @@ const Header = (props) => {
252
252
  <Notification
253
253
  customStyles={{
254
254
  icon: { height: '62px', display: 'flex' },
255
- list: { top: '44px' },
255
+ list: { top: '40px' },
256
256
  }}
257
257
  userInfo={systemUserInfo}
258
258
  />
@@ -49,9 +49,9 @@ body {
49
49
  .ant-layout {
50
50
  background: transparent !important;
51
51
  }
52
- .ant-pro-basicLayout-content {
53
- margin: 0 !important;
54
- }
52
+ // .ant-pro-basicLayout-content {
53
+ // margin: 0 !important;
54
+ // }
55
55
  .ant-pro-table-list-toolbar-container {
56
56
  padding: 0 !important;
57
57
  }
package/lib/config/env.js CHANGED
@@ -5,7 +5,7 @@ const envApi = {
5
5
  iam: {
6
6
  testing: 'testing-iam',
7
7
  demo: 'login',
8
- staging: 'iam',
8
+ staging: 'staging-iam',
9
9
  prod: 'iam',
10
10
  },
11
11
 
@@ -750,7 +750,7 @@ body {
750
750
  }
751
751
  .ant-menu-item-selected {
752
752
  color: @white;
753
- background: linear-gradient(46.62deg, #7367f0 0%, #9e95f5 93.64%);
753
+ background: linear-gradient(46.62deg, @primary-color 0%, @primary-color-gradient 93.64%);
754
754
  &:hover {
755
755
  color: @white !important;
756
756
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeeyoon/library",
3
- "version": "2.2.8",
3
+ "version": "2.3.2",
4
4
  "description": "宜云前端组件库和通用服务",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -8,19 +8,19 @@ import PageLoading from '../../lib/components/PageLoading/';
8
8
  export default function () {
9
9
  return (
10
10
  <>
11
- {/* <Header
11
+ <Header
12
12
  productName="profile"
13
13
  tenantId="053a033a063711ecb0c00c42a1ff8370"
14
14
  token="ZmI1YzU4NzEyOTdlNDM2MTg2YjI0N2IyZGQzOGI3NDg1NDE2MzI2MjU4NjMzNzY="
15
15
  avatar="https://demo-yeeyoon-fm.oss-cn-zhangjiakou.aliyuncs.com/userCenter/userAvatar/user_avatar2.png"
16
16
  userName="王甍"
17
- /> */}
17
+ />
18
18
  {/* <TenantSelector
19
19
  tenantId="14bfb5d71d1011eca9820c42a1f6bf88"
20
20
  tenantIdChangeCb={(id) => console.log(id)}
21
21
  /> */}
22
22
  {/* <CustomDefaultFooter /> */}
23
- <PageLoading />
23
+ {/* <PageLoading /> */}
24
24
  </>
25
25
  );
26
26
  }