@esvndev/es-react-table-interface 1.4.16 → 1.4.18
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,3 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { IExternalInterface } from "../../interface";
|
|
3
|
-
export declare const ExternalInterface: (props: IExternalInterface) => React.JSX.Element
|
|
3
|
+
export declare const ExternalInterface: React.MemoExoticComponent<(props: IExternalInterface) => React.JSX.Element>;
|
package/dist/func.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export declare const findItem: (array: any[] | undefined, key: string, value: an
|
|
|
9
9
|
export declare const isNullOrUndefined: (d: any) => boolean;
|
|
10
10
|
export declare const isStringNullOrEmpty: (d: any) => boolean;
|
|
11
11
|
export declare const isNumberEmptyOrZero: (number: number | undefined | null) => boolean;
|
|
12
|
+
export declare const convertDate: (data: any) => string;
|
|
13
|
+
export declare const convertDateTime: (data: any) => string;
|
|
12
14
|
export declare const convertDateTimeRangeToString: (date: Date, ope: string) => string;
|
|
13
15
|
export declare const dateTemplate: (props: any) => string | undefined;
|
|
14
16
|
export declare const isObjEmpty: (obj: any) => boolean;
|
|
@@ -34,3 +36,5 @@ export declare const renderLink: (userSubject: any) => any;
|
|
|
34
36
|
export declare const lowercaseFirstLetter: (str: any) => any;
|
|
35
37
|
export declare const connectString: (t: any, props: string[]) => any;
|
|
36
38
|
export declare const PermissionResolveTree: (data: any) => any[];
|
|
39
|
+
export declare const getFormatColumnsPrint: (type: any) => "dd/MM/yyyy" | "dd/MM/yyyy HH:mm" | undefined;
|
|
40
|
+
export declare const getDataTypeColumnsPrint: (type: any) => "number" | "date" | undefined;
|