@arim-aisdc/public-components 0.0.12 → 0.0.14
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/components/QueryFilter/QueryFilter.d.ts +26 -0
- package/dist/components/QueryFilter/QueryFilter.js +707 -0
- package/dist/components/QueryFilter/index.d.ts +5 -0
- package/dist/components/QueryFilter/index.js +4 -0
- package/dist/components/QueryFilter/index.less +63 -0
- package/dist/components/QueryFilter/type.d.ts +110 -0
- package/dist/components/QueryFilter/type.js +40 -0
- package/dist/components/SplitPane/SplitPane.d.ts +2 -1
- package/dist/components/SplitPane/SplitPane.js +6 -5
- package/dist/components/SplitPane/index.d.ts +1 -1
- package/dist/components/SplitPane/index.js +1 -1
- package/dist/components/SplitPane/splitPane.less +16 -0
- package/dist/components/SplitPane/util.d.ts +5 -5
- package/dist/components/SplitPane/util.js +9 -14
- package/dist/components/TableMax/TableBody/index.d.ts +2 -1
- package/dist/components/TableMax/TableBody/index.js +5 -5
- package/dist/components/TableMax/TableHeader/index.less +1 -0
- package/dist/components/TableMax/TableMax.js +7 -8
- package/dist/components/TableMax/components/ColumnSort/customSortFns.d.ts +6 -6
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +7 -0
- package/package.json +2 -3
- package/dist/components/Foo/index.d.ts +0 -6
- package/dist/components/Foo/index.js +0 -15
- package/dist/components/Foo/index.less +0 -3
- package/dist/components/SplitPane/index.less +0 -33
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './index.less';
|
|
3
|
+
import { CustomFormProps } from './type';
|
|
4
|
+
export declare const typeList: {
|
|
5
|
+
min: string;
|
|
6
|
+
max: string;
|
|
7
|
+
start: string;
|
|
8
|
+
end: string;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* 处理公共动态查询的searchField
|
|
12
|
+
* @param searchField 查询的字段
|
|
13
|
+
* @param dynamicField 动态查询设置的字段
|
|
14
|
+
* @returns
|
|
15
|
+
*/
|
|
16
|
+
export declare function useDynamicSearchFiled(searchField: Array<any>, dynamicField: Array<{
|
|
17
|
+
field: string;
|
|
18
|
+
ApiFun: ({ key, isPage }: {
|
|
19
|
+
key: string;
|
|
20
|
+
isPage: boolean;
|
|
21
|
+
}) => Promise<any>;
|
|
22
|
+
settingHandler: (items: Array<any>) => Array<any>;
|
|
23
|
+
params?: any;
|
|
24
|
+
}>): any[];
|
|
25
|
+
declare const _default: React.NamedExoticComponent<CustomFormProps>;
|
|
26
|
+
export default _default;
|