react-table-edit 0.8.2 → 0.8.4

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
@@ -100,9 +100,9 @@ type IColumnTable = {
100
100
  validate?: any;
101
101
  disabledCondition?: any;
102
102
  callback?: any;
103
- width?: string | number;
104
- minWidth?: string | number;
105
- maxWidth?: string | number;
103
+ width?: number | string;
104
+ minWidth?: number | string;
105
+ maxWidth?: number | string;
106
106
  editEnable?: boolean;
107
107
  visible?: boolean;
108
108
  invisibleDisable?: boolean;
@@ -195,9 +195,9 @@ type IFRef = {
195
195
  type IHeaderColumnTable = {
196
196
  field: string;
197
197
  headerText?: string;
198
- width?: string | number;
199
- minWidth?: string | number;
200
- maxWidth?: string | number;
198
+ width?: number | string;
199
+ minWidth?: number | string;
200
+ maxWidth?: number | string;
201
201
  visible?: boolean;
202
202
  rowspan?: number;
203
203
  columns?: IColumnTable[];
@@ -261,7 +261,6 @@ interface IFDataStyleSetting {
261
261
  backgroundColor: string;
262
262
  fontFamily: string;
263
263
  fontSize: number;
264
- row?: number;
265
264
  bold: boolean;
266
265
  italic: boolean;
267
266
  underline: boolean;
@@ -269,7 +268,14 @@ interface IFDataStyleSetting {
269
268
  interface IFDataInputStyle {
270
269
  value: IFDataStyleSetting;
271
270
  onChange: any;
272
- disabled: any;
271
+ disabled?: boolean;
272
+ disabledColor?: boolean;
273
+ disabledBackgroundColor?: boolean;
274
+ disabledFontFamily?: boolean;
275
+ disabledFontSize?: boolean;
276
+ disabledBold?: boolean;
277
+ disabledItalic?: boolean;
278
+ disabledUnderline?: boolean;
273
279
  }
274
280
  declare const InputStyleComponent: (props: IFDataInputStyle) => react_jsx_runtime.JSX.Element;
275
281
 
package/dist/index.d.ts CHANGED
@@ -100,9 +100,9 @@ type IColumnTable = {
100
100
  validate?: any;
101
101
  disabledCondition?: any;
102
102
  callback?: any;
103
- width?: string | number;
104
- minWidth?: string | number;
105
- maxWidth?: string | number;
103
+ width?: number | string;
104
+ minWidth?: number | string;
105
+ maxWidth?: number | string;
106
106
  editEnable?: boolean;
107
107
  visible?: boolean;
108
108
  invisibleDisable?: boolean;
@@ -195,9 +195,9 @@ type IFRef = {
195
195
  type IHeaderColumnTable = {
196
196
  field: string;
197
197
  headerText?: string;
198
- width?: string | number;
199
- minWidth?: string | number;
200
- maxWidth?: string | number;
198
+ width?: number | string;
199
+ minWidth?: number | string;
200
+ maxWidth?: number | string;
201
201
  visible?: boolean;
202
202
  rowspan?: number;
203
203
  columns?: IColumnTable[];
@@ -261,7 +261,6 @@ interface IFDataStyleSetting {
261
261
  backgroundColor: string;
262
262
  fontFamily: string;
263
263
  fontSize: number;
264
- row?: number;
265
264
  bold: boolean;
266
265
  italic: boolean;
267
266
  underline: boolean;
@@ -269,7 +268,14 @@ interface IFDataStyleSetting {
269
268
  interface IFDataInputStyle {
270
269
  value: IFDataStyleSetting;
271
270
  onChange: any;
272
- disabled: any;
271
+ disabled?: boolean;
272
+ disabledColor?: boolean;
273
+ disabledBackgroundColor?: boolean;
274
+ disabledFontFamily?: boolean;
275
+ disabledFontSize?: boolean;
276
+ disabledBold?: boolean;
277
+ disabledItalic?: boolean;
278
+ disabledUnderline?: boolean;
273
279
  }
274
280
  declare const InputStyleComponent: (props: IFDataInputStyle) => react_jsx_runtime.JSX.Element;
275
281