laif-ds 0.1.33 → 0.1.34

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.
@@ -112,7 +112,7 @@ function ie({
112
112
  //NOTE Cell is responsible for rendering the cell of his column
113
113
  cell: (e) => {
114
114
  const t = e.getValue();
115
- return t ? t.render ? t.render(t.fromId, t.toId) : /* @__PURE__ */ o("div", { children: t.value }) : null;
115
+ return t ? t.render ? t.render(t.fromId, t.toId, t.id) : /* @__PURE__ */ o("div", { children: t.value }) : null;
116
116
  }
117
117
  });
118
118
  }), n;
package/dist/index.d.ts CHANGED
@@ -552,11 +552,12 @@ declare type CopyButtonProps = {
552
552
  };
553
553
 
554
554
  export declare interface CrossTableCell {
555
- render?: (fromId: string, toId: string) => ReactNode;
555
+ render?: (fromId: string, toId: string, id?: string) => ReactNode;
556
556
  value?: number | string | null;
557
557
  color?: string;
558
558
  fromId: string;
559
559
  toId: string;
560
+ id?: string;
560
561
  }
561
562
 
562
563
  declare interface CrossTableData {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "laif-ds",
3
3
  "private": false,
4
- "version": "0.1.33",
4
+ "version": "0.1.34",
5
5
  "type": "module",
6
6
  "main": "dist/index.es.js",
7
7
  "module": "dist/index.es.js",