@next-core/brick-kit 2.95.1 → 2.96.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/dist/index.esm.js CHANGED
@@ -10863,17 +10863,27 @@ var localeValues = {
10863
10863
  };
10864
10864
  var defaultLocale = localeValues;
10865
10865
 
10866
- var emptyImage = "empty-image.397ff6359f4066d8.png";
10866
+ var emptyImage = "empty-image.8e18d87fea570ef0.png";
10867
+
10868
+ var bigEmptyImage = "big-empty-image.397ff6359f4066d8.png";
10867
10869
 
10868
10870
  /**
10869
10871
  * 用于展示空数据的 React 组件。
10870
10872
  */
10871
10873
  function EasyopsEmpty(props) {
10874
+ var _props$imageStyle;
10875
+
10872
10876
  var illustration = useMemo(() => props.illustration && getIllustration(props.illustration), [props.illustration]);
10873
- var image = props.illustration ? illustration : getImageUrl(emptyImage);
10877
+
10878
+ var _emptyImage = props.useBigEmptyImage ? bigEmptyImage : emptyImage;
10879
+
10880
+ var image = props.illustration ? illustration : getImageUrl(_emptyImage);
10881
+ var imageStyle = (_props$imageStyle = props.imageStyle) !== null && _props$imageStyle !== void 0 ? _props$imageStyle : props.useBigEmptyImage ? undefined : {
10882
+ height: "60px"
10883
+ };
10874
10884
  return /*#__PURE__*/React.createElement(Empty, {
10875
10885
  image: image,
10876
- imageStyle: props.imageStyle,
10886
+ imageStyle: imageStyle,
10877
10887
  description: props.description
10878
10888
  });
10879
10889
  }