@apexcura/ui-components 0.0.11-Beta158 → 0.0.11-Beta159
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -630,7 +630,7 @@ var TableElement = (props) => {
|
|
|
630
630
|
}
|
|
631
631
|
const dataSource = tbody && tbody.map((row, index) => ({
|
|
632
632
|
...row,
|
|
633
|
-
[
|
|
633
|
+
[columns[0].key]: index + 1
|
|
634
634
|
}));
|
|
635
635
|
return /* @__PURE__ */ import_react19.default.createElement(
|
|
636
636
|
import_antd14.Table,
|
package/dist/index.mjs
CHANGED
|
@@ -579,7 +579,7 @@ var TableElement = (props) => {
|
|
|
579
579
|
}
|
|
580
580
|
const dataSource = tbody && tbody.map((row, index) => ({
|
|
581
581
|
...row,
|
|
582
|
-
[
|
|
582
|
+
[columns[0].key]: index + 1
|
|
583
583
|
}));
|
|
584
584
|
return /* @__PURE__ */ React18.createElement(
|
|
585
585
|
Table2,
|