@apexcura/ui-components 0.0.14-Beta162 → 0.0.14-Beta163
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -745,7 +745,7 @@ var TableElement = (props) => {
|
|
|
745
745
|
tbody.map((row, index) => ({
|
|
746
746
|
...row,
|
|
747
747
|
key: index,
|
|
748
|
-
|
|
748
|
+
"#": index + 1
|
|
749
749
|
}))
|
|
750
750
|
);
|
|
751
751
|
}
|
|
@@ -810,7 +810,7 @@ var TableElement = (props) => {
|
|
|
810
810
|
setDataSource(
|
|
811
811
|
extra.currentDataSource.map((row, index) => ({
|
|
812
812
|
...row,
|
|
813
|
-
|
|
813
|
+
"#": index + 1
|
|
814
814
|
}))
|
|
815
815
|
);
|
|
816
816
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -679,7 +679,7 @@ var TableElement = (props) => {
|
|
|
679
679
|
tbody.map((row, index) => ({
|
|
680
680
|
...row,
|
|
681
681
|
key: index,
|
|
682
|
-
|
|
682
|
+
"#": index + 1
|
|
683
683
|
}))
|
|
684
684
|
);
|
|
685
685
|
}
|
|
@@ -744,7 +744,7 @@ var TableElement = (props) => {
|
|
|
744
744
|
setDataSource(
|
|
745
745
|
extra.currentDataSource.map((row, index) => ({
|
|
746
746
|
...row,
|
|
747
|
-
|
|
747
|
+
"#": index + 1
|
|
748
748
|
}))
|
|
749
749
|
);
|
|
750
750
|
}
|