@nocobase/client 1.7.6 → 1.7.8

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.
@@ -13,6 +13,8 @@ import { FC } from 'react';
13
13
  export declare const useTemplateBlockContext: () => {
14
14
  templateFinished?: boolean;
15
15
  onTemplateSuccess?: Function;
16
+ isBlockTemplate?: () => boolean;
17
+ setIsBlockTemplate?: (value: boolean) => void;
16
18
  };
17
19
  declare const TemplateBlockProvider: FC<{
18
20
  onTemplateLoaded?: () => void;
@@ -35,6 +35,10 @@ export interface FlagProviderProps {
35
35
  isVariableParsedInOtherContext?: boolean;
36
36
  collectionField?: any;
37
37
  children?: any;
38
+ /**
39
+ * 是否存在于 `筛选表单区块` 中
40
+ */
41
+ isInFilterFormBlock?: boolean;
38
42
  }
39
43
  export declare const FlagContext: React.Context<Omit<FlagProviderProps, "children">>;
40
44
  export declare const FlagProvider: FC<FlagProviderProps>;