next-recomponents 2.0.73 → 2.0.76
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/src/table-advanced/h.table.tsx +4 -1
package/dist/index.js
CHANGED
|
@@ -39480,7 +39480,7 @@ function HTable({
|
|
|
39480
39480
|
context.data.map((d) => {
|
|
39481
39481
|
const obj = {};
|
|
39482
39482
|
for (let key in d) {
|
|
39483
|
-
if (!key.startsWith("_")) {
|
|
39483
|
+
if (!key.startsWith("_") && !context.hideColumns.includes(key)) {
|
|
39484
39484
|
obj[key] = d[key];
|
|
39485
39485
|
}
|
|
39486
39486
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -39475,7 +39475,7 @@ function HTable({
|
|
|
39475
39475
|
context.data.map((d) => {
|
|
39476
39476
|
const obj = {};
|
|
39477
39477
|
for (let key in d) {
|
|
39478
|
-
if (!key.startsWith("_")) {
|
|
39478
|
+
if (!key.startsWith("_") && !context.hideColumns.includes(key)) {
|
|
39479
39479
|
obj[key] = d[key];
|
|
39480
39480
|
}
|
|
39481
39481
|
}
|
package/package.json
CHANGED