@indfnd/common 1.1.60 → 1.1.62
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/CHANGELOG.md +15 -0
- package/dist/ind-common.es.js +12826 -1036
- package/dist/ind-common.umd.cjs +170 -170
- package/dist/styles/index.css +1 -1
- package/package.json +3 -2
- package/src/styles/components/layout/audit-view.less +147 -0
- package/src/styles/components/layout/index.less +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indfnd/common",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.62",
|
|
4
4
|
"author": "huxuetong",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -61,7 +61,8 @@
|
|
|
61
61
|
"xlsx-populate": "^1.11.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"
|
|
64
|
+
"jsplumb": "^2.15.6",
|
|
65
|
+
"@indfnd/utils": "^0.1.40",
|
|
65
66
|
"ag-grid-community": "^30.1.0",
|
|
66
67
|
"ag-grid-enterprise": "^30.1.0",
|
|
67
68
|
"ag-grid-vue": "^30.1.0",
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
.ind-audit-view {
|
|
2
|
+
background: white;
|
|
3
|
+
|
|
4
|
+
.ivu-tabs {
|
|
5
|
+
.ivu-tabs-content {
|
|
6
|
+
min-height: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.ivu-tabs-tabpane {
|
|
10
|
+
display: flex;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&-bar {
|
|
14
|
+
margin-bottom: 0;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.content-row {
|
|
19
|
+
overflow: auto;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.arrow-left,
|
|
23
|
+
.arrow-right {
|
|
24
|
+
position: absolute;
|
|
25
|
+
top: 50%;
|
|
26
|
+
transform: translateY(-50%);
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
color: rgba(0, 0, 0, 0.1);
|
|
29
|
+
z-index: 10;
|
|
30
|
+
font-size: 66px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.arrow-left {
|
|
34
|
+
left: 30px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.arrow-right {
|
|
38
|
+
right: 30px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.arrow-left:hover,
|
|
42
|
+
.arrow-right:hover {
|
|
43
|
+
color: rgba(0, 0, 0, 0.5);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.audit-box {
|
|
48
|
+
border-top: #f7f8f8 3px solid;
|
|
49
|
+
width: 100%;
|
|
50
|
+
padding: 5px 0 0px;
|
|
51
|
+
background-color: #ffffff;
|
|
52
|
+
z-index: 9;
|
|
53
|
+
.ivu-tabs {
|
|
54
|
+
background-color: #ffffff;
|
|
55
|
+
}
|
|
56
|
+
.form-box {
|
|
57
|
+
padding: 10px 200px;
|
|
58
|
+
.text-area {
|
|
59
|
+
font-size: 20px;
|
|
60
|
+
display: flex;
|
|
61
|
+
align-items: center;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
white-space: nowrap;
|
|
64
|
+
.input-box {
|
|
65
|
+
position: relative;
|
|
66
|
+
width: 70%;
|
|
67
|
+
}
|
|
68
|
+
.option-box {
|
|
69
|
+
margin-left: 20px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
.btn-box {
|
|
74
|
+
display: flex;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
}
|
|
77
|
+
.ivu-input {
|
|
78
|
+
height: 50px;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.ind-audit-flow-view {
|
|
83
|
+
.steps-container {
|
|
84
|
+
width: 100%;
|
|
85
|
+
height: 250px;
|
|
86
|
+
margin-bottom: 50px;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
#diagramContainer {
|
|
91
|
+
width: 100%;
|
|
92
|
+
height: 100%;
|
|
93
|
+
position: relative;
|
|
94
|
+
|
|
95
|
+
.node {
|
|
96
|
+
width: 35px;
|
|
97
|
+
height: 35px;
|
|
98
|
+
background: transparent;
|
|
99
|
+
border: 1px solid #ccc;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
position: absolute;
|
|
102
|
+
text-align: center;
|
|
103
|
+
border-radius: 50%;
|
|
104
|
+
transition: 0.3s;
|
|
105
|
+
font-size: 10px;
|
|
106
|
+
color: #999999;
|
|
107
|
+
}
|
|
108
|
+
.node-content {
|
|
109
|
+
position: absolute;
|
|
110
|
+
text-align: center;
|
|
111
|
+
font-size: 10px;
|
|
112
|
+
}
|
|
113
|
+
.active-flow {
|
|
114
|
+
background: #4a8ae9;
|
|
115
|
+
color: #4a8ae9;
|
|
116
|
+
}
|
|
117
|
+
.completed {
|
|
118
|
+
border: 1px solid green;
|
|
119
|
+
color: green;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.ind-detail-view .process-tracking-btn-wrapper {
|
|
124
|
+
position: fixed;
|
|
125
|
+
right: 0;
|
|
126
|
+
top: 50%;
|
|
127
|
+
transform: translateY(-50%);
|
|
128
|
+
z-index: 10000;
|
|
129
|
+
transition: right 0.3s ease;
|
|
130
|
+
|
|
131
|
+
.process-tracking-btn {
|
|
132
|
+
opacity: 0.5;
|
|
133
|
+
transition: opacity 0.3s ease;
|
|
134
|
+
writing-mode: vertical-lr;
|
|
135
|
+
text-orientation: mixed;
|
|
136
|
+
height: 120px;
|
|
137
|
+
border-radius: 15px 0 0 15px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.process-tracking-btn:hover {
|
|
141
|
+
opacity: 1;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
&.drawer-open {
|
|
145
|
+
right: calc(90%);
|
|
146
|
+
}
|
|
147
|
+
}
|