mig-schema-table 4.4.13 → 4.4.15

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.
@@ -1,3 +1 @@
1
1
  export declare const localeFormat: (date: Date | number, dateFormat: string) => string;
2
- export declare const localeFormatInTimeZone: (date: Date | number, timezone: string, dateFormat: string) => string;
3
- export declare const timeZone: string;
@@ -1,2 +1 @@
1
- export declare function uncamel(camel: string): string;
2
1
  export declare function defaultTranslate(key: string, ...args: (string | number)[]): string;
@@ -21,6 +21,8 @@ export interface ISchemaTableContext<T = any> {
21
21
  setCheckedIndexes?: Dispatch<SetStateAction<number[]>>;
22
22
  onRowClick?: (rowData: T, dataIndex: number, event: React.MouseEvent) => void;
23
23
  onRowDoubleClick?: (rowData: T, dataIndex: number, event: React.MouseEvent) => void;
24
+ lastCheckChangedRowIndex?: number;
25
+ setLastCheckChangedRowIndex: Dispatch<SetStateAction<number | undefined>>;
24
26
  properties: {
25
27
  [propertyName: string]: SchemaObject | ReferenceObject;
26
28
  };