next-recomponents 2.0.60 → 2.0.61
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 -1
package/dist/index.js
CHANGED
|
@@ -39263,10 +39263,10 @@ function HTable({
|
|
|
39263
39263
|
setWidths(
|
|
39264
39264
|
Object.fromEntries(
|
|
39265
39265
|
headers.map((h) => {
|
|
39266
|
-
var _a, _b;
|
|
39266
|
+
var _a, _b, _c, _d;
|
|
39267
39267
|
return [
|
|
39268
39268
|
h,
|
|
39269
|
-
((_a = context == null ? void 0 : context.colSize) == null ? void 0 : _a[h]) ? (_b = context == null ? void 0 : context.colSize) == null ? void 0 : _b[h] : ["__select__", "__modal__"].includes(h) ? 60 : h.startsWith("_") ? 0 : w
|
|
39269
|
+
((_a = context == null ? void 0 : context.colSize) == null ? void 0 : _a[h]) ? (_b = context == null ? void 0 : context.colSize) == null ? void 0 : _b[h] : ["__select__", "__modal__"].includes(h) ? 60 : h.startsWith("_") || ((_d = (_c = context == null ? void 0 : context.hideColumns) == null ? void 0 : _c.includes) == null ? void 0 : _d.call(_c, h)) ? 0 : w
|
|
39270
39270
|
];
|
|
39271
39271
|
})
|
|
39272
39272
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -39260,10 +39260,10 @@ function HTable({
|
|
|
39260
39260
|
setWidths(
|
|
39261
39261
|
Object.fromEntries(
|
|
39262
39262
|
headers.map((h) => {
|
|
39263
|
-
var _a, _b;
|
|
39263
|
+
var _a, _b, _c, _d;
|
|
39264
39264
|
return [
|
|
39265
39265
|
h,
|
|
39266
|
-
((_a = context == null ? void 0 : context.colSize) == null ? void 0 : _a[h]) ? (_b = context == null ? void 0 : context.colSize) == null ? void 0 : _b[h] : ["__select__", "__modal__"].includes(h) ? 60 : h.startsWith("_") ? 0 : w
|
|
39266
|
+
((_a = context == null ? void 0 : context.colSize) == null ? void 0 : _a[h]) ? (_b = context == null ? void 0 : context.colSize) == null ? void 0 : _b[h] : ["__select__", "__modal__"].includes(h) ? 60 : h.startsWith("_") || ((_d = (_c = context == null ? void 0 : context.hideColumns) == null ? void 0 : _c.includes) == null ? void 0 : _d.call(_c, h)) ? 0 : w
|
|
39267
39267
|
];
|
|
39268
39268
|
})
|
|
39269
39269
|
)
|
package/package.json
CHANGED