next-recomponents 2.0.47 → 2.0.48
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 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
- package/src/table-advanced/h.table.tsx +1 -5
package/dist/index.js
CHANGED
|
@@ -39244,8 +39244,7 @@ function HTable({
|
|
|
39244
39244
|
context.onSave && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
39245
39245
|
"button",
|
|
39246
39246
|
{
|
|
39247
|
-
className: "border shadow rounded p-1 text-white px-2 "
|
|
39248
|
-
disabled: context.editions.length == 0,
|
|
39247
|
+
className: "border shadow rounded p-1 text-white px-2 ",
|
|
39249
39248
|
onClick: async (e) => {
|
|
39250
39249
|
setIsloading(true);
|
|
39251
39250
|
const ex = context.filteredData.map((d) => {
|
package/dist/index.mjs
CHANGED
|
@@ -39242,8 +39242,7 @@ function HTable({
|
|
|
39242
39242
|
context.onSave && /* @__PURE__ */ jsx33(
|
|
39243
39243
|
"button",
|
|
39244
39244
|
{
|
|
39245
|
-
className: "border shadow rounded p-1 text-white px-2 "
|
|
39246
|
-
disabled: context.editions.length == 0,
|
|
39245
|
+
className: "border shadow rounded p-1 text-white px-2 ",
|
|
39247
39246
|
onClick: async (e) => {
|
|
39248
39247
|
setIsloading(true);
|
|
39249
39248
|
const ex = context.filteredData.map((d) => {
|
package/package.json
CHANGED
|
@@ -214,11 +214,7 @@ export default function HTable({
|
|
|
214
214
|
)}
|
|
215
215
|
{context.onSave && (
|
|
216
216
|
<button
|
|
217
|
-
className={
|
|
218
|
-
"border shadow rounded p-1 text-white px-2 " +
|
|
219
|
-
(context.editions.length > 0 ? "bg-blue-500" : "bg-gray-500")
|
|
220
|
-
}
|
|
221
|
-
disabled={context.editions.length == 0}
|
|
217
|
+
className={"border shadow rounded p-1 text-white px-2 "}
|
|
222
218
|
onClick={async (e) => {
|
|
223
219
|
setIsloading(true);
|
|
224
220
|
const ex = context.filteredData.map((d) => {
|