next-recomponents 2.0.59 → 2.0.60
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/table-advanced/h.table.tsx +1 -3
package/dist/index.js
CHANGED
|
@@ -39406,7 +39406,7 @@ function HTable({
|
|
|
39406
39406
|
children: searchedData.slice(pagination.inicio - 1, pagination.fin).map((row, rowIndex) => {
|
|
39407
39407
|
const items = Object.entries(row);
|
|
39408
39408
|
return items.map(([key, item], i) => {
|
|
39409
|
-
var _a, _b, _c
|
|
39409
|
+
var _a, _b, _c;
|
|
39410
39410
|
if ((_b = (_a = context == null ? void 0 : context.hideColumns) == null ? void 0 : _a.includes) == null ? void 0 : _b.call(_a, key)) return null;
|
|
39411
39411
|
if (key.startsWith("_") && !key.startsWith("__")) return null;
|
|
39412
39412
|
if (key == "__modal__") {
|
|
@@ -39500,7 +39500,7 @@ function HTable({
|
|
|
39500
39500
|
// ? item
|
|
39501
39501
|
// : undefined,
|
|
39502
39502
|
value: item,
|
|
39503
|
-
children:
|
|
39503
|
+
children: item,
|
|
39504
39504
|
onClick: async (e) => {
|
|
39505
39505
|
var _a2, _b2;
|
|
39506
39506
|
const ret = await ((_b2 = (_a2 = context.buttons[key].props) == null ? void 0 : _a2.onClick) == null ? void 0 : _b2.call(_a2, {
|
package/dist/index.mjs
CHANGED
|
@@ -39403,7 +39403,7 @@ function HTable({
|
|
|
39403
39403
|
children: searchedData.slice(pagination.inicio - 1, pagination.fin).map((row, rowIndex) => {
|
|
39404
39404
|
const items = Object.entries(row);
|
|
39405
39405
|
return items.map(([key, item], i) => {
|
|
39406
|
-
var _a, _b, _c
|
|
39406
|
+
var _a, _b, _c;
|
|
39407
39407
|
if ((_b = (_a = context == null ? void 0 : context.hideColumns) == null ? void 0 : _a.includes) == null ? void 0 : _b.call(_a, key)) return null;
|
|
39408
39408
|
if (key.startsWith("_") && !key.startsWith("__")) return null;
|
|
39409
39409
|
if (key == "__modal__") {
|
|
@@ -39497,7 +39497,7 @@ function HTable({
|
|
|
39497
39497
|
// ? item
|
|
39498
39498
|
// : undefined,
|
|
39499
39499
|
value: item,
|
|
39500
|
-
children:
|
|
39500
|
+
children: item,
|
|
39501
39501
|
onClick: async (e) => {
|
|
39502
39502
|
var _a2, _b2;
|
|
39503
39503
|
const ret = await ((_b2 = (_a2 = context.buttons[key].props) == null ? void 0 : _a2.onClick) == null ? void 0 : _b2.call(_a2, {
|
package/package.json
CHANGED
|
@@ -444,9 +444,7 @@ export default function HTable({
|
|
|
444
444
|
// ? item
|
|
445
445
|
// : undefined,
|
|
446
446
|
value: item,
|
|
447
|
-
children:
|
|
448
|
-
? item
|
|
449
|
-
: null,
|
|
447
|
+
children: item,
|
|
450
448
|
onClick: async (e: any) => {
|
|
451
449
|
const ret =
|
|
452
450
|
(await context.buttons[key].props?.onClick?.({
|