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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-recomponents",
3
- "version": "2.0.73",
3
+ "version": "2.0.76",
4
4
  "description": "description nueva",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -173,7 +173,10 @@ export default function HTable({
173
173
  const obj: any = {};
174
174
 
175
175
  for (let key in d) {
176
- if (!key.startsWith("_")) {
176
+ if (
177
+ !key.startsWith("_") &&
178
+ !context.hideColumns.includes(key)
179
+ ) {
177
180
  obj[key] = d[key];
178
181
  }
179
182
  }