react-table-edit 0.0.2 → 0.0.3
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/dist/index.js
CHANGED
|
@@ -1154,7 +1154,7 @@ var Sidebar = (props) => {
|
|
|
1154
1154
|
/* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
1155
1155
|
"div",
|
|
1156
1156
|
{
|
|
1157
|
-
className: (0, import_classnames8.default)("
|
|
1157
|
+
className: (0, import_classnames8.default)("customizer d-none d-md-block ", `customizer-${width ?? 600}`, {
|
|
1158
1158
|
open: flag,
|
|
1159
1159
|
fullscreen: isFullScreen
|
|
1160
1160
|
}),
|
|
@@ -2649,7 +2649,7 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
|
|
|
2649
2649
|
};
|
|
2650
2650
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_react12.Fragment, { children: [
|
|
2651
2651
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "react-table-edit", children: [
|
|
2652
|
-
/* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "e-grid", ref: gridRef, children: [
|
|
2652
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "e-grid e-default e-bothlines", ref: gridRef, children: [
|
|
2653
2653
|
showTopToolbar ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_jsx_runtime12.Fragment, { children: renderToolbarTop() }) : /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_jsx_runtime12.Fragment, {}),
|
|
2654
2654
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "e-gridcontent", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { ref: tableElement, className: "e-content", style: { height: `${height ? `${height}px` : "auto"}`, minHeight: `${minHeight ? `${minHeight}px` : ""}`, maxHeight: `${maxHeight ? `${maxHeight}px` : "400px"}` }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("table", { style: { width: "100%" }, children: [
|
|
2655
2655
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("thead", { className: "e-gridheader", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("tr", { className: "e-row", role: "row", children: tableColumns.map((col, index) => {
|
package/dist/index.mjs
CHANGED
|
@@ -1128,7 +1128,7 @@ var Sidebar = (props) => {
|
|
|
1128
1128
|
/* @__PURE__ */ jsxs9(
|
|
1129
1129
|
"div",
|
|
1130
1130
|
{
|
|
1131
|
-
className: classNames4("
|
|
1131
|
+
className: classNames4("customizer d-none d-md-block ", `customizer-${width ?? 600}`, {
|
|
1132
1132
|
open: flag,
|
|
1133
1133
|
fullscreen: isFullScreen
|
|
1134
1134
|
}),
|
|
@@ -2623,7 +2623,7 @@ var TableEdit = forwardRef2((props, ref) => {
|
|
|
2623
2623
|
};
|
|
2624
2624
|
return /* @__PURE__ */ jsxs11(Fragment12, { children: [
|
|
2625
2625
|
/* @__PURE__ */ jsxs11("div", { className: "react-table-edit", children: [
|
|
2626
|
-
/* @__PURE__ */ jsxs11("div", { className: "e-grid", ref: gridRef, children: [
|
|
2626
|
+
/* @__PURE__ */ jsxs11("div", { className: "e-grid e-default e-bothlines", ref: gridRef, children: [
|
|
2627
2627
|
showTopToolbar ? /* @__PURE__ */ jsx12(Fragment13, { children: renderToolbarTop() }) : /* @__PURE__ */ jsx12(Fragment13, {}),
|
|
2628
2628
|
/* @__PURE__ */ jsx12("div", { className: "e-gridcontent", children: /* @__PURE__ */ jsx12("div", { ref: tableElement, className: "e-content", style: { height: `${height ? `${height}px` : "auto"}`, minHeight: `${minHeight ? `${minHeight}px` : ""}`, maxHeight: `${maxHeight ? `${maxHeight}px` : "400px"}` }, children: /* @__PURE__ */ jsxs11("table", { style: { width: "100%" }, children: [
|
|
2629
2629
|
/* @__PURE__ */ jsx12("thead", { className: "e-gridheader", children: /* @__PURE__ */ jsx12("tr", { className: "e-row", role: "row", children: tableColumns.map((col, index) => {
|