@dmsi/wedgekit-react 0.0.220 → 0.0.222

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.
@@ -2367,7 +2367,7 @@ function TableBodyRow({
2367
2367
  /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("td", { style: { display: "flex", width: virtualPaddingLeft } })
2368
2368
  ) : null,
2369
2369
  columns.map((column) => {
2370
- var _a2, _b, _c, _d;
2370
+ var _a2, _b;
2371
2371
  const cell = locked ? column : visibleCells[column.index];
2372
2372
  if (!cell) {
2373
2373
  return;
@@ -2388,7 +2388,6 @@ function TableBodyRow({
2388
2388
  "justify-end": typeof cellValue === "number"
2389
2389
  }
2390
2390
  ),
2391
- width: (_d = (_c = cell.column.columnDef.meta) == null ? void 0 : _c.headerWidth) != null ? _d : `${cell.column.getSize()}px`,
2392
2391
  children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
2393
2392
  Tooltip,
2394
2393
  {
@@ -173,7 +173,7 @@ function TableBodyRow({
173
173
  /* @__PURE__ */ jsx2("td", { style: { display: "flex", width: virtualPaddingLeft } })
174
174
  ) : null,
175
175
  columns.map((column) => {
176
- var _a2, _b, _c, _d;
176
+ var _a2, _b;
177
177
  const cell = locked ? column : visibleCells[column.index];
178
178
  if (!cell) {
179
179
  return;
@@ -194,7 +194,6 @@ function TableBodyRow({
194
194
  "justify-end": typeof cellValue === "number"
195
195
  }
196
196
  ),
197
- width: (_d = (_c = cell.column.columnDef.meta) == null ? void 0 : _c.headerWidth) != null ? _d : `${cell.column.getSize()}px`,
198
197
  children: /* @__PURE__ */ jsx2(
199
198
  Tooltip,
200
199
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dmsi/wedgekit-react",
3
3
  "private": false,
4
- "version": "0.0.220",
4
+ "version": "0.0.222",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsup",
@@ -115,10 +115,6 @@ export function TableBodyRow<T>({
115
115
  "justify-end": typeof cellValue === "number",
116
116
  },
117
117
  )}
118
- width={
119
- (cell.column.columnDef.meta?.headerWidth as string | undefined) ??
120
- `${cell.column.getSize()}px`
121
- }
122
118
  >
123
119
  <Tooltip
124
120
  id={id ? `${id}-tooltip-${cell.id}` : undefined}