@cloudtower/eagle 0.32.53 → 0.32.54

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.
@@ -59,7 +59,8 @@ const Table = props => {
59
59
  wrapper,
60
60
  pagination,
61
61
  onRow,
62
- skeletonProps
62
+ skeletonProps,
63
+ expandable
63
64
  } = props;
64
65
  const orderRef = React.useRef(null);
65
66
  const hasScrollBard = common.useTableBodyHasScrollBar(wrapper, _dataSource);
@@ -127,7 +128,8 @@ const Table = props => {
127
128
  rowSelection: rowSelection && __spreadProps(__spreadValues({}, rowSelection), {
128
129
  columnWidth: 32
129
130
  }),
130
- showSorterTooltip: false
131
+ showSorterTooltip: false,
132
+ expandable
131
133
  }));
132
134
  };
133
135
  var Table$1 = Table;