@nocobase/client 1.4.29 → 1.4.31

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.
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ /**
11
+ * TODO: 初步适配
12
+ * @internal
13
+ */
14
+ export declare const FilterCollectionFieldInternalField: React.FC;
15
+ export declare const FilterCollectionField: React.ForwardRefExoticComponent<Omit<Partial<any>, "ref"> & React.RefAttributes<unknown>>;
@@ -31,7 +31,7 @@ export declare const useParentRecordVariable: (props: Props) => import("../type"
31
31
  */
32
32
  export declare const useCurrentParentRecordContext: () => {
33
33
  currentParentRecordCtx: {};
34
- shouldDisplayCurrentParentRecord: boolean;
34
+ shouldDisplayCurrentParentRecord: import("../../../data-source").CollectionFieldOptions;
35
35
  collectionName: string;
36
36
  dataSource: string;
37
37
  };
@@ -43,7 +43,7 @@ export declare const useCurrentParentRecordContext: () => {
43
43
  export declare const useCurrentParentRecordVariable: (props?: Props) => {
44
44
  currentParentRecordSettings: import("../type").Option;
45
45
  currentParentRecordCtx: {};
46
- shouldDisplayCurrentParentRecord: boolean;
46
+ shouldDisplayCurrentParentRecord: import("../../../data-source").CollectionFieldOptions;
47
47
  collectionName: string;
48
48
  dataSource: string;
49
49
  };