next-recomponents 1.4.1 → 1.4.2
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/td.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -11208,7 +11208,7 @@ function TD(_a) {
|
|
|
11208
11208
|
});
|
|
11209
11209
|
}
|
|
11210
11210
|
return handler;
|
|
11211
|
-
}) : item.content })
|
|
11211
|
+
}) : item == null ? void 0 : item.content })
|
|
11212
11212
|
] })
|
|
11213
11213
|
}
|
|
11214
11214
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -11198,7 +11198,7 @@ function TD(_a) {
|
|
|
11198
11198
|
});
|
|
11199
11199
|
}
|
|
11200
11200
|
return handler;
|
|
11201
|
-
}) : item.content })
|
|
11201
|
+
}) : item == null ? void 0 : item.content })
|
|
11202
11202
|
] })
|
|
11203
11203
|
}
|
|
11204
11204
|
);
|
package/package.json
CHANGED