dtable-statistic 5.3.51 → 5.3.52
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/es/assets/css/dashboard.css +1 -3
- package/es/setting.local.js +39 -43
- package/package.json +4 -4
|
@@ -494,11 +494,9 @@
|
|
|
494
494
|
height: 40px;
|
|
495
495
|
font-size: 14px;
|
|
496
496
|
font-weight: 500;
|
|
497
|
-
border-top: 1px solid
|
|
497
|
+
border-top: 1px solid var(--bs-border-secondary-color);
|
|
498
498
|
background: #fff;
|
|
499
499
|
padding: 0 1rem;
|
|
500
|
-
border-bottom-left-radius: 3px;
|
|
501
|
-
border-bottom-right-radius: 3px;
|
|
502
500
|
position: relative;
|
|
503
501
|
}
|
|
504
502
|
|
package/es/setting.local.js
CHANGED
|
@@ -4,48 +4,44 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
/**
|
|
8
|
+
* local development settings
|
|
9
|
+
*/
|
|
10
|
+
var _default = exports.default = {
|
|
11
|
+
username: '7355da59470c4402884fa1b21a10cd06@auth.local',
|
|
9
12
|
password: '123456',
|
|
10
|
-
|
|
11
|
-
// required
|
|
12
|
-
APIToken: '
|
|
13
|
-
// required
|
|
13
|
+
token: "2a06aeb633ffb5bb1937aed421e8043210959652",
|
|
14
|
+
// dtable api token (required)
|
|
15
|
+
APIToken: 'b48e52714601c464ca4bf2fa3d10daea095ef070',
|
|
16
|
+
// server URL of the dtable of the plugin (required)
|
|
14
17
|
server: 'https://dev.seatable.cn',
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
//
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
// optional
|
|
46
|
-
fileName: '实验动物笼位统计表',
|
|
47
|
-
// optional
|
|
48
|
-
lang: 'en' // optional
|
|
49
|
-
// lang:'en'
|
|
50
|
-
};
|
|
51
|
-
var _default = exports.default = config2;
|
|
18
|
+
// id of the workspace with the dtable of the plugin (required, workspace must exist)
|
|
19
|
+
workspaceID: '169',
|
|
20
|
+
// name of the dtable to add the plugin to (required, dtable must exist under this name)
|
|
21
|
+
fileName: 'Coll',
|
|
22
|
+
// default language ('en' or 'zh-cn' are common, see "src/locale/index.js" for all lang keys)
|
|
23
|
+
lang: 'zh-cn',
|
|
24
|
+
permission: 'rw',
|
|
25
|
+
dtableUuid: '8e905209-b306-4aa8-a082-8046801ba94c',
|
|
26
|
+
// media URL of the dtable of the plugin (required)
|
|
27
|
+
mediaUrl: 'https://dev.seatable.cn/media/',
|
|
28
|
+
isAdmin: true
|
|
29
|
+
}; // export default {
|
|
30
|
+
// username: '8e6fd68ab7764dd2b01c2f2a17b7d991@auth.local',
|
|
31
|
+
// password: '1',
|
|
32
|
+
// token: "2a06aeb633ffb5bb1937aed421e8043210959652",
|
|
33
|
+
// // dtable api token (required)
|
|
34
|
+
// APIToken: '89d80ccbba8c1033264ba02df4441de2e5f2c394',
|
|
35
|
+
// // server URL of the dtable of the plugin (required)
|
|
36
|
+
// server: 'http://127.0.0.1:80',
|
|
37
|
+
// // id of the workspace with the dtable of the plugin (required, workspace must exist)
|
|
38
|
+
// workspaceID: '1',
|
|
39
|
+
// // name of the dtable to add the plugin to (required, dtable must exist under this name)
|
|
40
|
+
// fileName: '页面设计测试',
|
|
41
|
+
// // default language ('en' or 'zh-cn' are common, see "src/locale/index.js" for all lang keys)
|
|
42
|
+
// lang: 'en',
|
|
43
|
+
// permission: 'rw',
|
|
44
|
+
// // media URL of the dtable of the plugin (required)
|
|
45
|
+
// mediaUrl: '/media/',
|
|
46
|
+
// isAdmin: false,
|
|
47
|
+
// };
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.3.
|
|
2
|
+
"version": "5.3.52",
|
|
3
3
|
"name": "dtable-statistic",
|
|
4
4
|
"description": "statistics",
|
|
5
5
|
"main": "dist/dtable-statistic.js",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"react-grid-layout": "^1.2.5",
|
|
17
17
|
"react-intl-universal": "^2.4.8",
|
|
18
18
|
"reactstrap": "9.2.3",
|
|
19
|
-
"sea-chart": "^1.1.
|
|
19
|
+
"sea-chart": "^1.1.135"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"dtable-ui-component": "~
|
|
22
|
+
"dtable-ui-component": "~7.0.*",
|
|
23
23
|
"dtable-utils": "~5.0.*"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"dotenv": "^10.0.0",
|
|
51
51
|
"dotenv-expand": "^5.1.0",
|
|
52
52
|
"dtable-store": "^6.2.7",
|
|
53
|
-
"dtable-ui-component": "^
|
|
53
|
+
"dtable-ui-component": "^7.0.0",
|
|
54
54
|
"dtable-utils": "^5.0.23",
|
|
55
55
|
"eslint": "^8.3.0",
|
|
56
56
|
"eslint-config-react-app": "^7.0.1",
|