@steedos/webapp 2.2.33 → 3.0.0-beta.6
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/LICENSE.txt +661 -0
- package/README.md +15 -17
- package/dist/README.md +4 -0
- package/dist/assets/icons/License-for-icons.txt +267 -0
- package/dist/assets/icons/README-dist.md +18 -0
- package/dist/assets/icons/action-sprite/svg/symbols.svg +1 -0
- package/dist/assets/icons/custom-sprite/svg/symbols.svg +1 -0
- package/dist/assets/icons/doctype-sprite/svg/symbols.svg +1 -0
- package/dist/assets/icons/standard-sprite/svg/symbols.svg +1 -0
- package/dist/assets/icons/utility-sprite/svg/symbols-rtl.svg +1 -0
- package/dist/assets/icons/utility-sprite/svg/symbols.svg +1 -0
- package/dist/assets/index-D4PMTHQ6.js +60674 -0
- package/dist/browsers.html +76 -0
- package/dist/css/main.css +15 -0
- package/dist/customize.css +104 -0
- package/dist/favicon.ico +0 -0
- package/dist/fonts/FontAwesome.otf +0 -0
- package/dist/fonts/Material-Design-Iconic-Font/Material-Design-Iconic-Font.eot +0 -0
- package/dist/fonts/Material-Design-Iconic-Font/Material-Design-Iconic-Font.svg +787 -0
- package/dist/fonts/Material-Design-Iconic-Font/Material-Design-Iconic-Font.ttf +0 -0
- package/dist/fonts/Material-Design-Iconic-Font/Material-Design-Iconic-Font.woff +0 -0
- package/dist/fonts/Material-Design-Iconic-Font/Material-Design-Iconic-Font.woff2 +0 -0
- package/dist/fonts/fontawesome-webfont.eot +0 -0
- package/dist/fonts/fontawesome-webfont.svg +2671 -0
- package/dist/fonts/fontawesome-webfont.ttf +0 -0
- package/dist/fonts/fontawesome-webfont.woff +0 -0
- package/dist/fonts/fontawesome-webfont.woff2 +0 -0
- package/dist/geetest/gt3.js +353 -0
- package/dist/images/background.svg +1 -0
- package/dist/images/bg.jpg +0 -0
- package/dist/images/default-avatar.png +0 -0
- package/dist/images/defaultBackground.svg +1 -0
- package/dist/images/logo.png +0 -0
- package/dist/images/logo_platform.en-us.png +0 -0
- package/dist/images/logo_platform.png +0 -0
- package/dist/images/logo_platform_white.png +0 -0
- package/dist/images/unsupported.png +0 -0
- package/dist/index.html +68 -0
- package/dist/js/infinitescroll.js +115 -0
- package/dist/js/jquery.fitvids.js +89 -0
- package/dist/js/nw_core.js +163 -0
- package/dist/js/selectize/selectize.bootstrap2.css +494 -0
- package/dist/js/selectize/selectize.bootstrap3.css +408 -0
- package/dist/js/selectize/selectize.css +324 -0
- package/dist/js/selectize/selectize.default.css +394 -0
- package/dist/js/selectize/selectize.js +3829 -0
- package/dist/js/workflow_client.css +55 -0
- package/dist/js/workflow_client.js +174 -0
- package/dist/lib/jquery/jquery-1.11.2.min.js +4 -0
- package/dist/lib/select2/select2-spinner.gif +0 -0
- package/dist/lib/select2/select2.png +0 -0
- package/dist/lib/select2/select2x2.png +0 -0
- package/dist/lib/swipebox/img/icons.png +0 -0
- package/dist/lib/swipebox/img/icons.svg +1 -0
- package/dist/lib/swipebox/img/loader.gif +0 -0
- package/dist/locales/en/translation.json +3 -0
- package/dist/locales/zh-CN/translation.json +3 -0
- package/dist/manifest.json +15 -0
- package/dist/plugins/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css +9 -0
- package/dist/plugins/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js +1 -0
- package/dist/plugins/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js +16 -0
- package/dist/plugins/toastr/toastr.min.css +1 -0
- package/dist/plugins/toastr/toastr.min.js +2 -0
- package/dist/sound/notification.mp3 +0 -0
- package/dist/steedos-init.js +165 -0
- package/dist/ui.icons.json +5064 -0
- package/dist/word/demo.doc +0 -0
- package/dist/workflow.html +36 -0
- package/package.json +32 -49
- package/.env +0 -3
- package/.eslintignore +0 -1
- package/.md +0 -8
- package/LICENSE +0 -21
- package/tsconfig.json +0 -28
- package/tsconfig.lib.json +0 -34
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
6
|
+
<meta name="renderer" content="webkit">
|
|
7
|
+
<meta name="viewport"
|
|
8
|
+
content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no,shrink-to-fit=no">
|
|
9
|
+
<title>华炎云</title>
|
|
10
|
+
<style>
|
|
11
|
+
html,
|
|
12
|
+
body {
|
|
13
|
+
position: relative;
|
|
14
|
+
height: 100%;
|
|
15
|
+
width: 100%;
|
|
16
|
+
margin: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.app-shell-not-support {
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 50%;
|
|
22
|
+
left: 50%;
|
|
23
|
+
width: 470px;
|
|
24
|
+
height: auto;
|
|
25
|
+
background: none;
|
|
26
|
+
transform: translate(-50%, -50%);
|
|
27
|
+
text-align: center;
|
|
28
|
+
font-family: "PingFangSC", sans-serif;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.not-support-bg {
|
|
32
|
+
width: 100%;
|
|
33
|
+
margin-bottom: 3px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.button {
|
|
37
|
+
display: block;
|
|
38
|
+
width: 120px;
|
|
39
|
+
height: 32px;
|
|
40
|
+
border-radius: 4px;
|
|
41
|
+
margin-left: 50%;
|
|
42
|
+
margin-top: 16px;
|
|
43
|
+
transform: translateX(-50%);
|
|
44
|
+
line-height: 32px;
|
|
45
|
+
background-color: #3377ff;
|
|
46
|
+
font-size: 14px;
|
|
47
|
+
color: #fff;
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
user-select: none;
|
|
50
|
+
text-decoration: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@media (max-width: 600px) {
|
|
54
|
+
.app-shell-not-support {
|
|
55
|
+
width: 78%;
|
|
56
|
+
min-width: 250px;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@media (max-width: 400px) {
|
|
61
|
+
.app-shell-not-support {
|
|
62
|
+
font-size: 12px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
</style>
|
|
66
|
+
</head>
|
|
67
|
+
|
|
68
|
+
<body id="root">
|
|
69
|
+
<div class="app-shell-not-support">
|
|
70
|
+
<img class="not-support-bg" src="images/unsupported.png">
|
|
71
|
+
<div><span>我们暂不支持该浏览器,推荐使用华炎客户端访问</span></div>
|
|
72
|
+
<a class="button" target="_blank" href="https://www.steedos.com/help/download">下载客户端</a>
|
|
73
|
+
</div>
|
|
74
|
+
</body>
|
|
75
|
+
|
|
76
|
+
</html>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background-color: #f8f8f8;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@media (max-width: 767px) {
|
|
6
|
+
/*fix ios 14.x iphone11+手机上登录界面input控件得到焦点后会弹出选择文件控件并乱跳*/
|
|
7
|
+
:not(input) {
|
|
8
|
+
-webkit-touch-callout:none;
|
|
9
|
+
-webkit-user-select:none;
|
|
10
|
+
-khtml-user-select:none;
|
|
11
|
+
-moz-user-select:none;
|
|
12
|
+
-ms-user-select:none;
|
|
13
|
+
user-select:none;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/* 由用户自定义 */
|
|
2
|
+
html {
|
|
3
|
+
background: unset;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.slds-page-header {
|
|
7
|
+
background: rgb(248, 250, 252);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.slds-button__icon {
|
|
11
|
+
display: inline;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.slds-global-header_container{
|
|
15
|
+
box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.slds-tabs_card, .slds-tabs_card.slds-tabs_card {
|
|
19
|
+
box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
|
|
20
|
+
border-width: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.slds-illustration__svg {
|
|
24
|
+
display: inline !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* 隐藏左侧 ‘关于’ 菜单 */
|
|
28
|
+
.creator-content-wrapper .split-left .dx-treeview-node-container li[data-item-id=about]{
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/* :root {
|
|
33
|
+
--body-bg: rgb(225, 239, 254);
|
|
34
|
+
} */
|
|
35
|
+
|
|
36
|
+
@media only screen and (max-width: 768px) {
|
|
37
|
+
:root {
|
|
38
|
+
--body-bg: white;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
body {
|
|
43
|
+
background: var(--body-bg);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.creator-content-wrapper {
|
|
47
|
+
overflow: auto !important;
|
|
48
|
+
position: absolute;
|
|
49
|
+
top: 0;
|
|
50
|
+
right: 0;
|
|
51
|
+
bottom: 0;
|
|
52
|
+
left: 0;
|
|
53
|
+
margin-top: 90px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@media only screen and (max-width: 768px) {
|
|
57
|
+
.creator-content-wrapper {
|
|
58
|
+
margin-top: 50px;
|
|
59
|
+
margin-bottom: 4rem;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.antd-Form-item.form-control {
|
|
64
|
+
height: auto;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.zoom-large {
|
|
68
|
+
-ms-text-size-adjust: auto;
|
|
69
|
+
-webkit-text-size-adjust: auto;
|
|
70
|
+
zoom: 117% !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.zoom-extra-large {
|
|
74
|
+
-ms-text-size-adjust: auto;
|
|
75
|
+
-webkit-text-size-adjust: auto;
|
|
76
|
+
zoom: 135% !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
body.steedos {
|
|
80
|
+
/*此样式可能造成ios17系统的iphone svg显示不出来,移除就好了*/
|
|
81
|
+
-webkit-overflow-scrolling: unset;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
/* fix A标签在ios safari上点击后字体会变小再变大,包括列表页面名称字段,审批王详细页面顶部操作按钮等 */
|
|
86
|
+
@media (max-width: 768px) {
|
|
87
|
+
a {
|
|
88
|
+
-webkit-tap-highlight-color: transparent;
|
|
89
|
+
touch-action: manipulation;
|
|
90
|
+
font-size: inherit;
|
|
91
|
+
line-height: inherit;
|
|
92
|
+
padding: inherit;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
a:active,
|
|
96
|
+
a:hover,
|
|
97
|
+
a:focus {
|
|
98
|
+
font-size: inherit;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.slds-button a {
|
|
102
|
+
font-size: inherit;
|
|
103
|
+
}
|
|
104
|
+
}
|
package/dist/favicon.ico
ADDED
|
Binary file
|
|
Binary file
|