@douyinfe/semi-ui 2.42.2 → 2.42.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.
@@ -81080,14 +81080,14 @@ class TableRow extends BaseComponent {
81080
81080
  this.handleMouseEnter = e => {
81081
81081
  this.foundation.handleMouseEnter(e);
81082
81082
  const customRowProps = this.adapter.getCache('customRowProps');
81083
- if (typeof customRowProps.onMouseEnter === 'function') {
81083
+ if (typeof (customRowProps === null || customRowProps === void 0 ? void 0 : customRowProps.onMouseEnter) === 'function') {
81084
81084
  customRowProps.onMouseEnter(e);
81085
81085
  }
81086
81086
  };
81087
81087
  this.handleMouseLeave = e => {
81088
81088
  this.foundation.handleMouseLeave(e);
81089
81089
  const customRowProps = this.adapter.getCache('customRowProps');
81090
- if (typeof customRowProps.onMouseLeave === 'function') {
81090
+ if (typeof (customRowProps === null || customRowProps === void 0 ? void 0 : customRowProps.onMouseLeave) === 'function') {
81091
81091
  customRowProps.onMouseLeave(e);
81092
81092
  }
81093
81093
  };