@acuteinfo/common-base 1.0.82 → 1.0.83
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.
|
@@ -21,6 +21,7 @@ declare const useGridTable: (props: any) => {
|
|
|
21
21
|
};
|
|
22
22
|
onCellEditingStopped: (params: any) => Promise<void>;
|
|
23
23
|
noDataComponent: () => import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
onCellValueChanged: any;
|
|
24
25
|
i18n: import("i18next").i18n;
|
|
25
26
|
};
|
|
26
27
|
export default useGridTable;
|
|
@@ -17,6 +17,5 @@ declare const lessThanDate: (factValue: any, jsonValue: any, options?: {
|
|
|
17
17
|
ignoreTime: boolean;
|
|
18
18
|
}) => boolean;
|
|
19
19
|
declare const setErrorMessage: (node: any, field: any, message?: string) => void;
|
|
20
|
-
declare const validateChequeDate: (params: any) => string | undefined;
|
|
21
20
|
declare const handleDeleteButtonClick: (params: any) => Promise<void>;
|
|
22
|
-
export { getAgGridSRNo, customCellAggFunc, parseDate, findLastDisplayColumn, findFirstDisplayColumn, getGridRowData, removeExistingRowData, dynamicRowHeight, displayNumber, lessThanDate, setErrorMessage,
|
|
21
|
+
export { getAgGridSRNo, customCellAggFunc, parseDate, findLastDisplayColumn, findFirstDisplayColumn, getGridRowData, removeExistingRowData, dynamicRowHeight, displayNumber, lessThanDate, setErrorMessage, handleDeleteButtonClick, };
|
package/dist/index.d.ts
CHANGED
|
@@ -59,4 +59,4 @@ export * from "./components/report/types";
|
|
|
59
59
|
export * from "./components/context/propertiesConfig/customProperties";
|
|
60
60
|
export { AuthContextProvider } from "./components/context/authContext/authContext";
|
|
61
61
|
export { AgGridTableWrapper } from "./components/agGridTable";
|
|
62
|
-
export { getAgGridSRNo, customCellAggFunc, parseDate, findLastDisplayColumn, findFirstDisplayColumn, getGridRowData, removeExistingRowData, dynamicRowHeight, displayNumber, lessThanDate, setErrorMessage,
|
|
62
|
+
export { getAgGridSRNo, customCellAggFunc, parseDate, findLastDisplayColumn, findFirstDisplayColumn, getGridRowData, removeExistingRowData, dynamicRowHeight, displayNumber, lessThanDate, setErrorMessage, handleDeleteButtonClick, } from "./components/agGridTable/utils/helper";
|