ywana-core8 0.0.461 → 0.0.462
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.cjs +2 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -9
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -9
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +4 -8
package/dist/index.modern.js
CHANGED
@@ -5677,7 +5677,8 @@ var TableSelector = function TableSelector(props) {
|
|
5677
5677
|
var count = checked.size + "/" + all.length;
|
5678
5678
|
var columns = Object.keys(schema).filter(function (key) {
|
5679
5679
|
return schema[key].selectorColumn === true;
|
5680
|
-
}).map(function (
|
5680
|
+
}).map(function (key) {
|
5681
|
+
var field = schema[key];
|
5681
5682
|
return {
|
5682
5683
|
id: field.id,
|
5683
5684
|
label: field.label
|
@@ -5689,14 +5690,6 @@ var TableSelector = function TableSelector(props) {
|
|
5689
5690
|
});
|
5690
5691
|
var table = {
|
5691
5692
|
columns: columns,
|
5692
|
-
|
5693
|
-
/*
|
5694
|
-
columns: [
|
5695
|
-
{ id: "id", label: "ID" },
|
5696
|
-
{ id: "idMatricula", label: "ID Matricula" },
|
5697
|
-
{ id: "flow", "Circuito"},
|
5698
|
-
],
|
5699
|
-
*/
|
5700
5693
|
rows: rows || []
|
5701
5694
|
};
|
5702
5695
|
var buttons = actions.map(function (_ref) {
|