@zgfe/modules-event 1.0.29-zhongyuan.9 → 1.0.29-zhongyuan1.0
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/README.md +35 -35
- package/es/components/eventFilter/index.js +3 -2
- package/es/components/eventFilter/styles/index.less +148 -148
- package/es/components/eventFilter/types.d.ts +1 -0
- package/es/components/renderContent/styles/index.less +19 -19
- package/es/components/searchPanel/index.js +2 -0
- package/es/components/searchPanel/styles/index.less +22 -22
- package/es/components/table/index.js +27 -7
- package/es/components/table/styles/index.css +236 -0
- package/es/components/table/styles/index.less +249 -241
- package/es/components/topBar/styles/index.less +58 -58
- package/es/index.d.ts +2 -1
- package/es/index.js +2 -1
- package/es/modules/chart/index.js +8 -2
- package/es/modules/content/styles/index.less +19 -19
- package/es/modules/home/demo/index.js +4 -1
- package/es/modules/home/demo/styles/index.less +33 -33
- package/es/modules/home/styles/index.less +49 -49
- package/es/modules/topPanel/styles/index.less +50 -50
- package/es/style/image/ring.svg +8 -8
- package/es/style/index.less +62 -62
- package/es/types.d.ts +2 -0
- package/es/utils/formData.js +22 -3
- package/package.json +3 -3
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
.event-mi-table {
|
|
2
|
+
margin-top: 16px;
|
|
3
|
+
}
|
|
4
|
+
.event-mi-table-loading {
|
|
5
|
+
min-height: 300px;
|
|
6
|
+
}
|
|
7
|
+
.event-mi-table-table-header {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: space-between;
|
|
11
|
+
height: 50px;
|
|
12
|
+
margin-bottom: -1px;
|
|
13
|
+
padding: 0 12px;
|
|
14
|
+
line-height: 50px;
|
|
15
|
+
background: #fafafb;
|
|
16
|
+
border: 1px solid #e6e7ea;
|
|
17
|
+
border-radius: 8px 8px 0 0;
|
|
18
|
+
}
|
|
19
|
+
.event-mi-table-table-header > :nth-child(2) {
|
|
20
|
+
display: flex;
|
|
21
|
+
}
|
|
22
|
+
.event-mi-table-table-header > :nth-child(2) > :nth-child(1) {
|
|
23
|
+
margin-right: 16px;
|
|
24
|
+
}
|
|
25
|
+
.event-mi-table-table-header > :nth-child(2) div {
|
|
26
|
+
height: 32px;
|
|
27
|
+
padding: 0 16px;
|
|
28
|
+
line-height: 32px;
|
|
29
|
+
background: #fff;
|
|
30
|
+
border: 1px solid #f2f3f4;
|
|
31
|
+
border-radius: 4px;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
}
|
|
34
|
+
.event-mi-table-table-header > :nth-child(2) div .xiazai1 {
|
|
35
|
+
margin-right: 4px;
|
|
36
|
+
font-size: 18px !important;
|
|
37
|
+
vertical-align: -2px;
|
|
38
|
+
}
|
|
39
|
+
.event-mi-table-table-header > :nth-child(2) div:hover {
|
|
40
|
+
color: #165dff;
|
|
41
|
+
background: #e8efff;
|
|
42
|
+
border: 1px solid #165dff;
|
|
43
|
+
}
|
|
44
|
+
.event-mi-table-table-header > :nth-child(2) div:active {
|
|
45
|
+
color: #1454e5;
|
|
46
|
+
background: #e8efff;
|
|
47
|
+
border: 1px solid #1454e5;
|
|
48
|
+
}
|
|
49
|
+
.event-mi-table-table-header-left {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex: 1;
|
|
52
|
+
flex-direction: row;
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
}
|
|
55
|
+
.event-mi-table-table-header-left-box {
|
|
56
|
+
display: flex;
|
|
57
|
+
flex: 1;
|
|
58
|
+
flex-direction: row;
|
|
59
|
+
overflow: hidden;
|
|
60
|
+
color: #67727f;
|
|
61
|
+
}
|
|
62
|
+
.event-mi-table-table-header-left-content {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex: 1;
|
|
65
|
+
flex-direction: row;
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
color: #67727f;
|
|
68
|
+
}
|
|
69
|
+
.event-mi-table-table-header-left-content > span {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: row;
|
|
72
|
+
max-width: 33.33%;
|
|
73
|
+
overflow: hidden;
|
|
74
|
+
}
|
|
75
|
+
.event-mi-table-table-header-left-content > span :first-child {
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
white-space: nowrap;
|
|
78
|
+
text-overflow: ellipsis;
|
|
79
|
+
}
|
|
80
|
+
.event-mi-table-table-header-left-content > span :nth-child(2) {
|
|
81
|
+
flex: 1;
|
|
82
|
+
white-space: nowrap;
|
|
83
|
+
}
|
|
84
|
+
.event-mi-table .ant-table {
|
|
85
|
+
border-radius: 0 0 8px 8px;
|
|
86
|
+
}
|
|
87
|
+
.event-mi-table .sourcepanel-table-header {
|
|
88
|
+
overflow: hidden;
|
|
89
|
+
border-radius: 8px 8px 0 0;
|
|
90
|
+
}
|
|
91
|
+
.event-mi-table .sourcepanel-table-header .ant-table {
|
|
92
|
+
max-height: none;
|
|
93
|
+
}
|
|
94
|
+
.event-mi-table .ant-pagination {
|
|
95
|
+
margin-top: 24px !important;
|
|
96
|
+
}
|
|
97
|
+
.event-mi-table .ant-table .ant-table-thead .ant-table-cell.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
98
|
+
justify-content: flex-end !important;
|
|
99
|
+
}
|
|
100
|
+
.event-mi-table .ant-table-cell-with-append {
|
|
101
|
+
padding-left: 20px;
|
|
102
|
+
}
|
|
103
|
+
.event-mi-table .ant-table-cell-with-append .ant-table-row-expand-icon {
|
|
104
|
+
position: absolute;
|
|
105
|
+
left: 0;
|
|
106
|
+
margin-top: 0;
|
|
107
|
+
}
|
|
108
|
+
.event-mi-table .tooltip-userGroup-box {
|
|
109
|
+
display: flex;
|
|
110
|
+
max-width: 330px;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
white-space: nowrap;
|
|
113
|
+
text-overflow: ellipsis;
|
|
114
|
+
}
|
|
115
|
+
.event-mi-table .tooltip-userGroup-box div {
|
|
116
|
+
max-width: 330px;
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
white-space: nowrap;
|
|
119
|
+
text-overflow: ellipsis;
|
|
120
|
+
}
|
|
121
|
+
.event-mi-table .tooltip-name-box {
|
|
122
|
+
display: flex;
|
|
123
|
+
}
|
|
124
|
+
.event-mi-table .tooltip-name-box-market {
|
|
125
|
+
width: 180px;
|
|
126
|
+
margin-right: 8px;
|
|
127
|
+
overflow: hidden;
|
|
128
|
+
white-space: nowrap;
|
|
129
|
+
text-overflow: ellipsis;
|
|
130
|
+
cursor: pointer;
|
|
131
|
+
-webkit-line-clamp: 1;
|
|
132
|
+
-webkit-box-orient: vertical;
|
|
133
|
+
}
|
|
134
|
+
.event-mi-table .tooltip-name-box-market .shoucang {
|
|
135
|
+
color: #fd9f41;
|
|
136
|
+
font-size: 16px !important;
|
|
137
|
+
}
|
|
138
|
+
.event-mi-table .tooltip-name-box-market .notshoucang {
|
|
139
|
+
opacity: 0;
|
|
140
|
+
}
|
|
141
|
+
.event-mi-table .tooltip-name-box .fuzhi1 {
|
|
142
|
+
display: none;
|
|
143
|
+
font-size: 16px !important;
|
|
144
|
+
}
|
|
145
|
+
.event-mi-table .tooltip-name-box .fuzhi1:hover {
|
|
146
|
+
color: #165dff;
|
|
147
|
+
}
|
|
148
|
+
.event-mi-table .tooltip-name-box:hover .fuzhi1 {
|
|
149
|
+
display: block;
|
|
150
|
+
}
|
|
151
|
+
.event-mi-table-table-empty img {
|
|
152
|
+
width: 50px !important;
|
|
153
|
+
height: auto;
|
|
154
|
+
margin-top: 30px;
|
|
155
|
+
margin-bottom: 10px;
|
|
156
|
+
}
|
|
157
|
+
.event-mi-table-table-empty p {
|
|
158
|
+
color: rgba(0, 0, 0, 0.25);
|
|
159
|
+
}
|
|
160
|
+
.event-mi-table-chart-box {
|
|
161
|
+
display: flex;
|
|
162
|
+
flex-direction: column;
|
|
163
|
+
width: 100%;
|
|
164
|
+
}
|
|
165
|
+
.event-mi-table-chart-box-tooltip {
|
|
166
|
+
width: 200px;
|
|
167
|
+
margin-bottom: 24px;
|
|
168
|
+
color: #67727f;
|
|
169
|
+
font-size: 12px;
|
|
170
|
+
}
|
|
171
|
+
.event-table-sql-modal .ant-modal {
|
|
172
|
+
width: 720px !important;
|
|
173
|
+
}
|
|
174
|
+
.event-table-sql-modal .ant-modal-header {
|
|
175
|
+
position: relative;
|
|
176
|
+
z-index: 1;
|
|
177
|
+
height: 82px;
|
|
178
|
+
background: transparent;
|
|
179
|
+
}
|
|
180
|
+
.event-table-sql-modal .ant-modal-body {
|
|
181
|
+
padding: 0 24px 24px 24px;
|
|
182
|
+
}
|
|
183
|
+
.event-table-sql-modal .ant-modal-close-x {
|
|
184
|
+
margin-top: 13px;
|
|
185
|
+
margin-right: 8px;
|
|
186
|
+
}
|
|
187
|
+
.event-table-sql-modal img {
|
|
188
|
+
width: 100%;
|
|
189
|
+
}
|
|
190
|
+
.event-table-sql-modal .qingchu {
|
|
191
|
+
font-weight: 500;
|
|
192
|
+
font-size: 22px !important;
|
|
193
|
+
}
|
|
194
|
+
.event-table-sql-modal .modal-bg {
|
|
195
|
+
position: absolute;
|
|
196
|
+
top: 0;
|
|
197
|
+
left: 0;
|
|
198
|
+
width: 100%;
|
|
199
|
+
height: auto;
|
|
200
|
+
}
|
|
201
|
+
.event-table-sql-modal pre {
|
|
202
|
+
margin-bottom: 0;
|
|
203
|
+
}
|
|
204
|
+
.event-table-sql-modal .hljs {
|
|
205
|
+
height: 400px;
|
|
206
|
+
padding: 16px;
|
|
207
|
+
padding-bottom: 0;
|
|
208
|
+
background: #fafafb;
|
|
209
|
+
border-radius: 8px;
|
|
210
|
+
}
|
|
211
|
+
.event-table-sql-modal .copy-box {
|
|
212
|
+
position: absolute;
|
|
213
|
+
top: 98px;
|
|
214
|
+
right: 40px;
|
|
215
|
+
padding: 0 8px;
|
|
216
|
+
background: #f2f3f4;
|
|
217
|
+
border-radius: 4px;
|
|
218
|
+
}
|
|
219
|
+
.event-table-sql-modal .copy-box .fuzhi1 {
|
|
220
|
+
margin-right: 8px;
|
|
221
|
+
}
|
|
222
|
+
.event-table-sql-modal .copy-box:hover {
|
|
223
|
+
color: #165dff;
|
|
224
|
+
background: #e8efff;
|
|
225
|
+
}
|
|
226
|
+
.event-table-sql-modal .copy-box:active {
|
|
227
|
+
color: #1454e5;
|
|
228
|
+
background: #e8efff;
|
|
229
|
+
}
|
|
230
|
+
.ant-modal-content {
|
|
231
|
+
position: relative;
|
|
232
|
+
}
|
|
233
|
+
.ant-modal-content .sql-tip {
|
|
234
|
+
position: absolute;
|
|
235
|
+
bottom: 30px;
|
|
236
|
+
}
|