@airpower/web 1.3.2 → 1.3.3
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/dist/main.js +2 -2
- package/dist/web.css +4 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -18542,8 +18542,8 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
18542
18542
|
}, null, 8, ["column", "data", "dictionary"])) : item.image ? (openBlock(), createBlock(unref(_sfc_main$k), {
|
|
18543
18543
|
key: 2,
|
|
18544
18544
|
src: getValue(scope, item.key),
|
|
18545
|
-
width: item.imageWidth,
|
|
18546
|
-
height: item.imageHeight
|
|
18545
|
+
width: item.imageWidth || 40,
|
|
18546
|
+
height: item.imageHeight || 40
|
|
18547
18547
|
}, null, 8, ["src", "width", "height"])) : item.phone ? (openBlock(), createBlock(unref(APhone), {
|
|
18548
18548
|
key: 3,
|
|
18549
18549
|
desensitize: item.desensitize,
|
package/dist/web.css
CHANGED
|
@@ -824,7 +824,10 @@ textarea {
|
|
|
824
824
|
align-items: center;
|
|
825
825
|
display: flex;
|
|
826
826
|
color: #aaa;
|
|
827
|
-
font-size:
|
|
827
|
+
font-size: 12px;
|
|
828
|
+
overflow: hidden;
|
|
829
|
+
text-overflow: ellipsis;
|
|
830
|
+
white-space: nowrap;
|
|
828
831
|
}
|
|
829
832
|
.a-image .image-upload {
|
|
830
833
|
position: absolute;
|