@gingkoo/pandora-explorer 0.0.1-alpha.95 → 0.0.1-alpha.96

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.
package/lib/es/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @gingkoo/pandora-explorer v0.0.1-alpha.95
2
+ * @gingkoo/pandora-explorer v0.0.1-alpha.96
3
3
  */
4
4
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
5
5
  import cx$1 from 'classnames';
@@ -5595,10 +5595,16 @@ function TableItem(props) {
5595
5595
  } : {},
5596
5596
  children: [jsxs("div", {
5597
5597
  className: 'row-item-content',
5598
- children: [" ", v.render?.(param, v.key)]
5598
+ children: [" ", v.render?.({
5599
+ id,
5600
+ ...param
5601
+ }, v.key)]
5599
5602
  }), jsx("div", {
5600
5603
  className: 'row-item-tool',
5601
- children: v?.renderTool ? v?.renderTool(param, v.key) : !i && jsx("div", {
5604
+ children: v?.renderTool ? v?.renderTool({
5605
+ id,
5606
+ ...param
5607
+ }, v.key) : !i && jsx("div", {
5602
5608
  className: cx$1('row-item-check', {
5603
5609
  active: active
5604
5610
  }),
@@ -5680,7 +5686,10 @@ function TableItem(props) {
5680
5686
  children: param[v?.key] || ''
5681
5687
  }), jsx("div", {
5682
5688
  className: 'row-item-tool',
5683
- children: v?.renderTool ? v?.renderTool(param, v.key) : !i && jsx("div", {
5689
+ children: v?.renderTool ? v?.renderTool({
5690
+ id,
5691
+ ...param
5692
+ }, v.key) : !i && jsx("div", {
5684
5693
  className: cx$1('row-item-check', {
5685
5694
  active: active
5686
5695
  }),