@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.
@@ -51,7 +51,8 @@ const Table = props => {
51
51
  wrapper,
52
52
  pagination,
53
53
  onRow,
54
- skeletonProps
54
+ skeletonProps,
55
+ expandable
55
56
  } = props;
56
57
  const orderRef = useRef(null);
57
58
  const hasScrollBard = useTableBodyHasScrollBar(wrapper, _dataSource);
@@ -119,7 +120,8 @@ const Table = props => {
119
120
  rowSelection: rowSelection && __spreadProps(__spreadValues({}, rowSelection), {
120
121
  columnWidth: 32
121
122
  }),
122
- showSorterTooltip: false
123
+ showSorterTooltip: false,
124
+ expandable
123
125
  }));
124
126
  };
125
127
  var Table$1 = Table;