react-table-edit 0.7.9 → 0.8.0

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 CHANGED
@@ -1901,7 +1901,7 @@ var SelectTable = (0, import_react12.forwardRef)((props, ref) => {
1901
1901
  )
1902
1902
  }
1903
1903
  ),
1904
- (columns && !noHeader ? columns : defaultColumns).map((col, indexCol) => {
1904
+ (columns ? columns : defaultColumns).map((col, indexCol) => {
1905
1905
  let valueDisplay = row[col.field];
1906
1906
  if (col.type === "numeric" || col.typeCondition && col.typeCondition(row) === "numeric") {
1907
1907
  valueDisplay = formartNumberic(row[col.field], decimalSeparator ?? ".", thousandSeparator ?? ",", col.fraction ?? 0, true) ?? 0;
@@ -1997,7 +1997,7 @@ var SelectTable = (0, import_react12.forwardRef)((props, ref) => {
1997
1997
  )
1998
1998
  }
1999
1999
  ) }),
2000
- (columns ? columns : defaultColumns).map((col, index) => {
2000
+ !noHeader && (columns ? columns : defaultColumns).map((col, index) => {
2001
2001
  return renderHeaderCol(col, index);
2002
2002
  })
2003
2003
  ] }) }),
@@ -3810,6 +3810,13 @@ var TabsMenuComponent = ({
3810
3810
  ] });
3811
3811
  };
3812
3812
 
3813
+ // test-app/src/component/input-style/index.tsx
3814
+ var import_becoxy_icons8 = require("becoxy-icons");
3815
+ var import_reactstrap13 = require("reactstrap");
3816
+ var import_classnames16 = __toESM(require("classnames"));
3817
+ var import_react18 = require("react");
3818
+ var import_jsx_runtime18 = require("react/jsx-runtime");
3819
+
3813
3820
  // index.ts
3814
3821
  var Table_edit_default = table_default;
3815
3822
  // Annotate the CommonJS export names for ESM import in node:
package/dist/index.mjs CHANGED
@@ -1867,7 +1867,7 @@ var SelectTable = forwardRef2((props, ref) => {
1867
1867
  )
1868
1868
  }
1869
1869
  ),
1870
- (columns && !noHeader ? columns : defaultColumns).map((col, indexCol) => {
1870
+ (columns ? columns : defaultColumns).map((col, indexCol) => {
1871
1871
  let valueDisplay = row[col.field];
1872
1872
  if (col.type === "numeric" || col.typeCondition && col.typeCondition(row) === "numeric") {
1873
1873
  valueDisplay = formartNumberic(row[col.field], decimalSeparator ?? ".", thousandSeparator ?? ",", col.fraction ?? 0, true) ?? 0;
@@ -1963,7 +1963,7 @@ var SelectTable = forwardRef2((props, ref) => {
1963
1963
  )
1964
1964
  }
1965
1965
  ) }),
1966
- (columns ? columns : defaultColumns).map((col, index) => {
1966
+ !noHeader && (columns ? columns : defaultColumns).map((col, index) => {
1967
1967
  return renderHeaderCol(col, index);
1968
1968
  })
1969
1969
  ] }) }),
@@ -3776,6 +3776,13 @@ var TabsMenuComponent = ({
3776
3776
  ] });
3777
3777
  };
3778
3778
 
3779
+ // test-app/src/component/input-style/index.tsx
3780
+ import { Bold, Droplet, Italic, Type, Underline } from "becoxy-icons";
3781
+ import { Button as Button6, Input as Input9 } from "reactstrap";
3782
+ import classnames10 from "classnames";
3783
+ import { Fragment as Fragment20 } from "react";
3784
+ import { jsx as jsx18, jsxs as jsxs17 } from "react/jsx-runtime";
3785
+
3779
3786
  // index.ts
3780
3787
  var Table_edit_default = table_default;
3781
3788
  export {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
3
  "license": "MIT",
4
- "version": "0.7.9",
4
+ "version": "0.8.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",