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.umd.js
CHANGED
@@ -5680,7 +5680,8 @@
|
|
5680
5680
|
var count = checked.size + "/" + all.length;
|
5681
5681
|
var columns = Object.keys(schema).filter(function (key) {
|
5682
5682
|
return schema[key].selectorColumn === true;
|
5683
|
-
}).map(function (
|
5683
|
+
}).map(function (key) {
|
5684
|
+
var field = schema[key];
|
5684
5685
|
return {
|
5685
5686
|
id: field.id,
|
5686
5687
|
label: field.label
|
@@ -5692,14 +5693,6 @@
|
|
5692
5693
|
});
|
5693
5694
|
var table = {
|
5694
5695
|
columns: columns,
|
5695
|
-
|
5696
|
-
/*
|
5697
|
-
columns: [
|
5698
|
-
{ id: "id", label: "ID" },
|
5699
|
-
{ id: "idMatricula", label: "ID Matricula" },
|
5700
|
-
{ id: "flow", "Circuito"},
|
5701
|
-
],
|
5702
|
-
*/
|
5703
5696
|
rows: rows || []
|
5704
5697
|
};
|
5705
5698
|
var buttons = actions.map(function (_ref) {
|