@teselagen/ui 0.3.72 → 0.3.73
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/index.cjs.js +2 -1
- package/index.es.js +2 -1
- package/package.json +1 -1
- package/src/DataTable/index.js +2 -1
- package/src/UploadCsvWizard.js +0 -4
package/index.cjs.js
CHANGED
|
@@ -56110,7 +56110,8 @@ const _DataTable = class _DataTable extends React$1.Component {
|
|
|
56110
56110
|
getRowClassName && getRowClassName(rowInfo, state, this.props),
|
|
56111
56111
|
{
|
|
56112
56112
|
disabled: rowDisabled,
|
|
56113
|
-
selected: rowSelected && !withCheckboxes
|
|
56113
|
+
selected: rowSelected && !withCheckboxes,
|
|
56114
|
+
"rt-tr-last-row": rowInfo.index === entities.length - 1
|
|
56114
56115
|
}
|
|
56115
56116
|
),
|
|
56116
56117
|
"data-test-id": dataId === void 0 ? rowInfo.index : dataId,
|
package/index.es.js
CHANGED
|
@@ -56092,7 +56092,8 @@ const _DataTable = class _DataTable extends React__default.Component {
|
|
|
56092
56092
|
getRowClassName && getRowClassName(rowInfo, state, this.props),
|
|
56093
56093
|
{
|
|
56094
56094
|
disabled: rowDisabled,
|
|
56095
|
-
selected: rowSelected && !withCheckboxes
|
|
56095
|
+
selected: rowSelected && !withCheckboxes,
|
|
56096
|
+
"rt-tr-last-row": rowInfo.index === entities.length - 1
|
|
56096
56097
|
}
|
|
56097
56098
|
),
|
|
56098
56099
|
"data-test-id": dataId === void 0 ? rowInfo.index : dataId,
|
package/package.json
CHANGED
package/src/DataTable/index.js
CHANGED
|
@@ -1950,7 +1950,8 @@ class DataTable extends React.Component {
|
|
|
1950
1950
|
getRowClassName && getRowClassName(rowInfo, state, this.props),
|
|
1951
1951
|
{
|
|
1952
1952
|
disabled: rowDisabled,
|
|
1953
|
-
selected: rowSelected && !withCheckboxes
|
|
1953
|
+
selected: rowSelected && !withCheckboxes,
|
|
1954
|
+
"rt-tr-last-row": rowInfo.index === entities.length - 1
|
|
1954
1955
|
}
|
|
1955
1956
|
),
|
|
1956
1957
|
"data-test-id": dataId === undefined ? rowInfo.index : dataId,
|
package/src/UploadCsvWizard.js
CHANGED
|
@@ -104,10 +104,6 @@ const UploadCsvWizardDialog = compose(
|
|
|
104
104
|
const tabs = (
|
|
105
105
|
<>
|
|
106
106
|
<Callout style={{ marginBottom: 10, flexGrow: 0 }} intent="warning">
|
|
107
|
-
{/* <div>
|
|
108
|
-
It looks like some of the headers/data in your uploaded files have
|
|
109
|
-
issues.
|
|
110
|
-
</div> */}
|
|
111
107
|
<div>
|
|
112
108
|
Please look over each of the following files and correct any issues.
|
|
113
109
|
</div>
|