@apexcura/ui-components 0.0.12-Beta2 → 0.0.12-Beta4
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 +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -399,12 +399,16 @@ var AddMoreTable = (props) => {
|
|
|
399
399
|
}, {}) : {};
|
|
400
400
|
return {
|
|
401
401
|
key: index.toString(),
|
|
402
|
+
"#": index + 1,
|
|
402
403
|
...eachRow,
|
|
403
404
|
...rowElements,
|
|
404
405
|
...variableData
|
|
405
406
|
};
|
|
406
407
|
}) : [];
|
|
407
|
-
|
|
408
|
+
if (!columns.some(
|
|
409
|
+
(col) => console.log("col", col)
|
|
410
|
+
)) {
|
|
411
|
+
}
|
|
408
412
|
return /* @__PURE__ */ import_react13.default.createElement(import_react13.default.Fragment, null, /* @__PURE__ */ import_react13.default.createElement(
|
|
409
413
|
import_antd11.Table,
|
|
410
414
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -352,12 +352,16 @@ var AddMoreTable = (props) => {
|
|
|
352
352
|
}, {}) : {};
|
|
353
353
|
return {
|
|
354
354
|
key: index.toString(),
|
|
355
|
+
"#": index + 1,
|
|
355
356
|
...eachRow,
|
|
356
357
|
...rowElements,
|
|
357
358
|
...variableData
|
|
358
359
|
};
|
|
359
360
|
}) : [];
|
|
360
|
-
|
|
361
|
+
if (!columns.some(
|
|
362
|
+
(col) => console.log("col", col)
|
|
363
|
+
)) {
|
|
364
|
+
}
|
|
361
365
|
return /* @__PURE__ */ React12.createElement(React12.Fragment, null, /* @__PURE__ */ React12.createElement(
|
|
362
366
|
Table,
|
|
363
367
|
{
|