@nocobase/client 1.7.19 → 1.7.20

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.
@@ -11,8 +11,9 @@
11
11
  * @param param0
12
12
  * @returns
13
13
  */
14
- export declare function useParsedFilter({ filterOption }: {
14
+ export declare function useParsedFilter({ filterOption, onFilterChange, }: {
15
15
  filterOption: any;
16
+ onFilterChange?: (filter: any) => void;
16
17
  }): {
17
18
  /** 数据范围的筛选参数 */
18
19
  filter: {};
@@ -39,6 +39,7 @@ export interface FlagProviderProps {
39
39
  * 是否存在于 `筛选表单区块` 中
40
40
  */
41
41
  isInFilterFormBlock?: boolean;
42
+ isInTableCell?: boolean;
42
43
  }
43
44
  export declare const FlagContext: React.Context<Omit<FlagProviderProps, "children">>;
44
45
  export declare const FlagProvider: FC<FlagProviderProps>;