gxxc-ui 1.0.55 → 1.0.61
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/ImageUI/index.js +3 -1
- package/dist/ImageUI/index.scss +3 -0
- package/package.json +1 -1
package/dist/ImageUI/index.js
CHANGED
|
@@ -134,7 +134,9 @@ const ImageUI = props => {
|
|
|
134
134
|
const thumb = getFileThumbnailByFormat(match?.[2] || '');
|
|
135
135
|
return /*#__PURE__*/React.createElement(Image, _extends({
|
|
136
136
|
src: thumb
|
|
137
|
-
}, otherProps
|
|
137
|
+
}, otherProps, {
|
|
138
|
+
preview: false
|
|
139
|
+
}));
|
|
138
140
|
// return <div
|
|
139
141
|
// style={{
|
|
140
142
|
// width:width ,
|
package/dist/ImageUI/index.scss
CHANGED