@nocobase/client 1.4.0-beta.9 → 1.4.0

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.
@@ -17,4 +17,4 @@ export declare const useMenuSearch: (props: {
17
17
  showType?: boolean;
18
18
  hideSearch?: boolean;
19
19
  name?: string;
20
- }) => any;
20
+ }) => import("antd/es/menu/hooks/useItems").ItemType[];
@@ -168,7 +168,7 @@ export declare const useParseURLAndParams: () => {
168
168
  }[]) => Promise<string>;
169
169
  };
170
170
  export declare function useLinkActionProps(componentProps?: any): {
171
- type: string;
171
+ type: any;
172
172
  onClick(): Promise<void>;
173
173
  };
174
174
  export declare function replaceVariableValue(url: string, variables: VariablesContextType, localVariables: VariableOption[]): Promise<any>;
@@ -69,7 +69,7 @@ export interface CollectionFieldDefaultInitializerItem {
69
69
  schema: ISchema;
70
70
  }
71
71
  export interface CollectionFieldGetInitializerItemResult {
72
- find?: (schema: Schema, key: string, action: string) => any;
72
+ find?: (schema: Schema, key: string, action: string, name?: string) => any;
73
73
  remove?: (schema: Schema, cb: (schema: Schema, stopProps: Record<string, any>) => void) => void;
74
74
  }
75
75
  export interface CommonCollectionFieldsProps {