@steedos/service-core-objects 3.0.12 → 3.0.13-beta.10

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.
@@ -26,7 +26,7 @@ module.exports = {
26
26
  type: 'post', async: false, data: JSON.stringify({
27
27
  space_user_id: record_id,
28
28
  space_id: userSession.spaceId,
29
- password: CryptoJS.SHA256(inputValue).toString()
29
+ password: window.sha256(inputValue).toString()
30
30
  })
31
31
  });
32
32
  if (!result) {
@@ -70,6 +70,29 @@ module.exports = {
70
70
  autoComplete: "new-password",
71
71
  className: "ant-input",
72
72
  ref: inputRef,
73
+ style: {
74
+ WebkitBoxSizing: 'border-box',
75
+ boxSizing: 'border-box',
76
+ margin: 0,
77
+ padding: '4px 11px',
78
+ fontVariant: 'tabular-nums',
79
+ listStyle: 'none',
80
+ WebkitFontFeatureSettings: "'tnum'",
81
+ fontFeatureSettings: "'tnum'",
82
+ position: 'relative',
83
+ display: 'inline-block',
84
+ width: '100%',
85
+ height: '32px',
86
+ color: 'rgba(0, 0, 0, 0.65)',
87
+ fontSize: '14px',
88
+ lineHeight: 1.5,
89
+ backgroundColor: '#fff',
90
+ backgroundImage: 'none',
91
+ border: '1px solid #d9d9d9',
92
+ borderRadius: '4px',
93
+ WebkitTransition: 'all 0.3s',
94
+ transition: 'all 0.3s',
95
+ }
73
96
  // onKeyDown: (event) => {
74
97
  // // 禁用ctrlKey/metaKey+c/v/a,复制、剪切、粘贴、全选,其中metaKey是mac系统中相关操作的辅助键
75
98
  // if ((event.ctrlKey || event.metaKey) && [67, 88, 86, 65].indexOf(event.keyCode) > -1) {
@@ -4,6 +4,7 @@ allowDelete: false
4
4
  allowEdit: true
5
5
  allowRead: true
6
6
  modifyAllRecords: false
7
+ viewAllRecords: true
7
8
  viewCompanyRecords: true
8
9
  uneditable_fields:
9
10
  - profile
@@ -13,7 +13,7 @@
13
13
  {
14
14
  "type": "wrapper",
15
15
  "size": "none",
16
- "className": "space-users-list-sidebar-wrapper flex-shrink-0 min-w-[260px] overflow-y-auto bg-white border-r lg:order-first lg:flex lg:flex-col ",
16
+ "className": "space-users-list-sidebar-wrapper flex-shrink-0 min-w-[260px] bg-white border-r lg:order-first lg:flex lg:flex-col ",
17
17
  "body": [
18
18
  {
19
19
  "type": "input-tree",
@@ -277,8 +277,18 @@
277
277
  ".space-users-list-custom-page.space-users-list-pc.space-users-list-sidebar-open .space-users-list-sidebar-wrapper": {
278
278
  "min-width": "260px"
279
279
  },
280
- ".space-users-list-custom-page.space-users-list-pc .space-users-list-sidebar-wrapper .antd-Form-item .antd-Tree": {
281
- "max-height": "none"
280
+ ".space-users-list-custom-page.space-users-list-pc .space-users-list-sidebar-wrapper .antd-Form-item": {
281
+ "height": "100%"
282
+ },
283
+ ".space-users-list-custom-page.space-users-list-pc .space-users-list-sidebar-wrapper .antd-TreeControl": {
284
+ "display": "flex",
285
+ "flex-direction": "column",
286
+ "height": "100%"
287
+ },
288
+ ".space-users-list-custom-page.space-users-list-pc .space-users-list-sidebar-wrapper .antd-Tree": {
289
+ "flex": "1",
290
+ "overflow-y": "auto",
291
+ "max-height": "none !important"
282
292
  }
283
293
  }
284
294
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/service-core-objects",
3
- "version": "3.0.12",
3
+ "version": "3.0.13-beta.10",
4
4
  "main": "package.service.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -9,7 +9,7 @@
9
9
  "steedos"
10
10
  ],
11
11
  "dependencies": {
12
- "@steedos/service-package-loader": "3.0.12",
12
+ "@steedos/service-package-loader": "3.0.13-beta.10",
13
13
  "bcryptjs": "^3.0.3",
14
14
  "json2xls": "^0.1.2",
15
15
  "lodash": "^4.17.21"
@@ -17,5 +17,5 @@
17
17
  "description": "steedos package",
18
18
  "repository": {},
19
19
  "license": "MIT",
20
- "gitHead": "c82b544cc7c959be234e74ff16006b4a92abc67b"
20
+ "gitHead": "b6f8a743ef0d070a7218413e301c427479e64284"
21
21
  }