efront 4.5.15 → 4.5.16
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/#/345/233/275/351/231/205/345/214/226.yml +22 -1
- package/apps/pivot/log/count.html +4 -2
- package/apps/pivot/log/count.js +35 -7
- package/coms/basic/Table.js +59 -10
- package/coms/basic/filterTime.js +17 -4
- package/coms/basic/filterTime_test.js +4 -0
- package/coms/compile/wraphtml.js +1 -1
- package/coms/zimoli/active.js +18 -8
- package/coms/zimoli/checker.less +1 -1
- package/coms/zimoli/confirm.js +1 -1
- package/coms/zimoli/lazySwap.js +55 -0
- package/coms/zimoli/mask.xht +21 -0
- package/coms/zimoli/model.js +9 -1
- package/coms/zimoli/on.js +8 -8
- package/coms/zimoli/table.html +5 -4
- package/coms/zimoli/table.js +31 -4
- package/coms/zimoli/table.less +26 -8
- package/docs//345/267/245/345/205/267//345/233/275/351/231/205/345/214/226.xht +0 -5
- package/package.json +1 -1
- package/public/efront.js +1 -1
- package/coms/zimoli/mask.js +0 -18
package/coms/zimoli/table.less
CHANGED
|
@@ -43,12 +43,15 @@ td {
|
|
|
43
43
|
white-space: normal;
|
|
44
44
|
height: 100%;
|
|
45
45
|
padding: 2px 10px;
|
|
46
|
+
|
|
47
|
+
>* {
|
|
48
|
+
position: relative;
|
|
49
|
+
}
|
|
46
50
|
}
|
|
47
51
|
|
|
48
52
|
.y-ing,
|
|
49
53
|
.x-ing {
|
|
50
|
-
|
|
51
|
-
content: "";
|
|
54
|
+
>mask {
|
|
52
55
|
position: absolute;
|
|
53
56
|
left: 0;
|
|
54
57
|
top: 0;
|
|
@@ -57,13 +60,9 @@ td {
|
|
|
57
60
|
pointer-events: none;
|
|
58
61
|
background-color: rgba(0, 60, 69, .06);
|
|
59
62
|
}
|
|
60
|
-
|
|
61
|
-
>* {
|
|
62
|
-
position: relative;
|
|
63
|
-
}
|
|
64
63
|
}
|
|
65
64
|
|
|
66
|
-
[draggable="false"]
|
|
65
|
+
[draggable="false"]>mask {
|
|
67
66
|
display: none;
|
|
68
67
|
}
|
|
69
68
|
|
|
@@ -71,7 +70,7 @@ thead {
|
|
|
71
70
|
|
|
72
71
|
.y-ing,
|
|
73
72
|
.x-ing {
|
|
74
|
-
|
|
73
|
+
>mask {
|
|
75
74
|
background-color: rgba(0, 60, 69, .3);
|
|
76
75
|
}
|
|
77
76
|
}
|
|
@@ -144,8 +143,27 @@ thead {
|
|
|
144
143
|
color: #fff;
|
|
145
144
|
background-color: #395268;
|
|
146
145
|
clear: both;
|
|
146
|
+
|
|
147
|
+
&:before {
|
|
148
|
+
content: '';
|
|
149
|
+
display: block;
|
|
150
|
+
position: absolute;
|
|
151
|
+
left: 0;
|
|
152
|
+
height: 0;
|
|
153
|
+
bottom: 0;
|
|
154
|
+
right: 0;
|
|
155
|
+
background: #426;
|
|
156
|
+
transition: height .3s ease-in;
|
|
157
|
+
transition-delay: .7s;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
&[swapped]:before {
|
|
161
|
+
height: 100%;
|
|
162
|
+
}
|
|
147
163
|
}
|
|
148
164
|
}
|
|
165
|
+
|
|
166
|
+
|
|
149
167
|
}
|
|
150
168
|
|
|
151
169
|
>tbody {
|
|
@@ -61,11 +61,6 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
}
|
|
64
|
-
|
|
65
|
-
p span,
|
|
66
|
-
p a {
|
|
67
|
-
vertical-align: middle;
|
|
68
|
-
}
|
|
69
64
|
</style>
|
|
70
65
|
<p><span>${i18n`翻译结果仅做为参考,未必完美替换,语法参考:`}<a @click="zimoli.go('/组件/basic/i18n.js',{mark:true})">i18n.js</a></span></p>
|
|
71
66
|
<p -if="!window.showDirectoryPicker" error>${i18n`国际化工具仅在浏览器支持 showDirectoryPicker 时可用`}</p>
|