next-recomponents 2.0.48 → 2.0.49
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-advanced/h.table.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -39244,7 +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 ",
|
|
39247
|
+
className: "border shadow rounded p-1 text-white px-2 bg-blue-500",
|
|
39248
39248
|
onClick: async (e) => {
|
|
39249
39249
|
setIsloading(true);
|
|
39250
39250
|
const ex = context.filteredData.map((d) => {
|
package/dist/index.mjs
CHANGED
|
@@ -39242,7 +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 ",
|
|
39245
|
+
className: "border shadow rounded p-1 text-white px-2 bg-blue-500",
|
|
39246
39246
|
onClick: async (e) => {
|
|
39247
39247
|
setIsloading(true);
|
|
39248
39248
|
const ex = context.filteredData.map((d) => {
|
package/package.json
CHANGED
|
@@ -214,7 +214,7 @@ export default function HTable({
|
|
|
214
214
|
)}
|
|
215
215
|
{context.onSave && (
|
|
216
216
|
<button
|
|
217
|
-
className={"border shadow rounded p-1 text-white px-2 "}
|
|
217
|
+
className={"border shadow rounded p-1 text-white px-2 bg-blue-500"}
|
|
218
218
|
onClick={async (e) => {
|
|
219
219
|
setIsloading(true);
|
|
220
220
|
const ex = context.filteredData.map((d) => {
|