@douyinfe/semi-ui 2.38.1 → 2.38.2

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.
@@ -59921,7 +59921,7 @@ class TextArea extends BaseComponent {
59921
59921
  this._resizeListener && window.removeEventListener('resize', this._resizeListener);
59922
59922
  }
59923
59923
  componentDidUpdate(prevProps, prevState) {
59924
- if (this.props.value !== prevProps.value && this.props.autosize) {
59924
+ if ((this.props.value !== prevProps.value || this.props.placeholder !== prevProps.placeholder) && this.props.autosize) {
59925
59925
  this.foundation.resizeTextarea();
59926
59926
  }
59927
59927
  }
@@ -79626,7 +79626,7 @@ class Body extends BaseComponent {
79626
79626
  if (props.virtualized) {
79627
79627
  getVirtualizedListRef(this.listRef);
79628
79628
  } else {
79629
- console.warn('getVirtualizedListRef only works with virtualized. ' + 'See https://semi.design/zh-CN/show/table for more information.');
79629
+ console.warn('getVirtualizedListRef only works with virtualized. ' + 'See https://semi.design/en-US/show/table for more information.');
79630
79630
  }
79631
79631
  }
79632
79632
  this.foundation = new TableBodyFoundation(this.adapter);