react-table-edit 1.2.38 → 1.2.39

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.d.mts CHANGED
@@ -89,6 +89,7 @@ type ISettingSelectElement = {
89
89
  footerComponent?: any;
90
90
  formatOptionLabel?: any;
91
91
  selectChilds?: boolean;
92
+ allowCreate?: boolean;
92
93
  loadOptions?: any;
93
94
  defaultValue?: any;
94
95
  fieldValue?: string;
package/dist/index.d.ts CHANGED
@@ -89,6 +89,7 @@ type ISettingSelectElement = {
89
89
  footerComponent?: any;
90
90
  formatOptionLabel?: any;
91
91
  selectChilds?: boolean;
92
+ allowCreate?: boolean;
92
93
  loadOptions?: any;
93
94
  defaultValue?: any;
94
95
  fieldValue?: string;
package/dist/index.js CHANGED
@@ -3196,6 +3196,7 @@ var TableEdit = (0, import_react16.forwardRef)((props, ref) => {
3196
3196
  maxHeight: col.selectSettings?.heightPopup ? Number(col.selectSettings?.heightPopup) : void 0,
3197
3197
  menuWidth: col.selectSettings?.widthPopup ? Number(col.selectSettings?.widthPopup) : void 0,
3198
3198
  textAlign: col.textAlign ?? "left",
3199
+ allowCreate: col.selectSettings?.allowCreate,
3199
3200
  onKeyDown: (e) => {
3200
3201
  if (checkKeyDown(e, row, col, indexRow + 1, indexCol + 1)) {
3201
3202
  }
package/dist/index.mjs CHANGED
@@ -3166,6 +3166,7 @@ var TableEdit = forwardRef4((props, ref) => {
3166
3166
  maxHeight: col.selectSettings?.heightPopup ? Number(col.selectSettings?.heightPopup) : void 0,
3167
3167
  menuWidth: col.selectSettings?.widthPopup ? Number(col.selectSettings?.widthPopup) : void 0,
3168
3168
  textAlign: col.textAlign ?? "left",
3169
+ allowCreate: col.selectSettings?.allowCreate,
3169
3170
  onKeyDown: (e) => {
3170
3171
  if (checkKeyDown(e, row, col, indexRow + 1, indexCol + 1)) {
3171
3172
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
- "version": "1.2.38",
3
+ "version": "1.2.39",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",