venus-design 1.0.13 → 1.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/Config/columnFilter.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
|
@@ -55,7 +55,7 @@ export interface UltimateSearchProps<T> {
|
|
|
55
55
|
export declare const createUltimateSearchNews: <T extends Record<string, any>>(config: UltimateSearchProps<T>) => ProColumns<T>;
|
|
56
56
|
export declare const createUltimateSearch: <T extends Record<string, any>>(column: ProColumns<T>, dataIndex?: string, title?: string, socketSearch?: boolean, searchType?: 'flat' | 'tree', showHistory?: boolean, theme?: ThemeType) => ProColumns<T>;
|
|
57
57
|
declare const _default: {
|
|
58
|
-
createUltimateSearch: <T extends Record<string, any>>(column: ProColumns<T>, dataIndex?: string, title?: string | undefined, socketSearch?: boolean, searchType?: "
|
|
58
|
+
createUltimateSearch: <T extends Record<string, any>>(column: ProColumns<T>, dataIndex?: string, title?: string | undefined, socketSearch?: boolean, searchType?: "flat" | "tree", showHistory?: boolean, theme?: ThemeType) => ProColumns<T>;
|
|
59
59
|
createUltimateFilter: ({ dataIndex, title, dataSource, options, showSearch, showHistory, theme }: UltimateFilterProps) => Partial<ColumnType<any>>;
|
|
60
60
|
createUltimateSearchNews: <T_1 extends Record<string, any>>(config: UltimateSearchProps<T_1>) => ProColumns<T_1>;
|
|
61
61
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -85,3 +85,4 @@ export { default as Cell } from './VirtTable/src/Cell';
|
|
|
85
85
|
export { default as Config } from './VirtTable/src/Config';
|
|
86
86
|
export { createUltimateSearch } from './Config/columnFilter';
|
|
87
87
|
export { default as VenusEditor } from './VenusEditor';
|
|
88
|
+
export { addRenderVirtFunction } from './VenusVirtTable/staticAttr';
|
package/dist/index.js
CHANGED
|
@@ -87,4 +87,5 @@ export { default as VenusVirtTable } from "./VenusVirtTable";
|
|
|
87
87
|
export { default as Cell } from "./VirtTable/src/Cell";
|
|
88
88
|
export { default as Config } from "./VirtTable/src/Config";
|
|
89
89
|
export { createUltimateSearch } from "./Config/columnFilter";
|
|
90
|
-
export { default as VenusEditor } from "./VenusEditor";
|
|
90
|
+
export { default as VenusEditor } from "./VenusEditor";
|
|
91
|
+
export { addRenderVirtFunction } from "./VenusVirtTable/staticAttr";
|