es-grid-template 0.0.4 → 0.0.5

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,4 +1,6 @@
1
1
  import dayjs from "dayjs";
2
+ import { EditType, IColumnType, TypeFilter } from "ui-rc";
3
+ import { ColumnType } from "../type";
2
4
  export declare const sumDataByField: (data: any[], field: string) => any;
3
5
  export declare const checkThousandSeparator: (thousandSeparator: string | undefined, decimalSeparator: string | undefined) => string | undefined;
4
6
  export declare const checkDecimalSeparator: (thousandSeparator: string | undefined, decimalSeparator: string | undefined) => string;
@@ -12,3 +14,5 @@ export declare const getVisibleColumnKeys: (columns: any[]) => string[];
12
14
  export declare const getAllVisibleKeys: (columns: any[]) => any[];
13
15
  export declare function getHiddenParentKeys(columns: any[], parentKeys?: string[]): string[];
14
16
  export declare const updateColumns: (columns: any[], includes: string[]) => any[];
17
+ export declare const getDatepickerFormat: (type: EditType | TypeFilter | IColumnType, col: ColumnType<any>) => string | undefined;
18
+ export declare const getTypeFilter: (col: ColumnType<any>) => TypeFilter;