@nocobase/client 1.3.16-beta → 1.3.18-beta
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/es/api-client/APIClient.d.ts +1 -0
- package/es/application/Application.d.ts +2 -2
- package/es/data-source/data-block/DataBlockProvider.d.ts +3 -0
- package/es/index.mjs +2880 -2708
- package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.d.ts +13 -2
- package/es/schema-component/antd/association-field/hooks.d.ts +12 -2
- package/es/schema-component/antd/date-picker/DatePicker.d.ts +1 -1
- package/es/schema-component/antd/form-item/hooks/useLinkageRulesForSubTableOrSubForm.d.ts +12 -0
- package/es/schema-component/antd/quick-edit/QuickEdit.d.ts +1 -1
- package/es/schema-component/common/utils/uitls.d.ts +7 -2
- package/es/schema-component/hooks/useDesignable.d.ts +2 -2
- package/es/{schema-component/antd/form-v2/utils.d.ts → schema-settings/LinkageRules/bindLinkageRulesToFiled.d.ts} +21 -3
- package/es/schema-settings/LinkageRules/forEachLinkageRule.d.ts +9 -0
- package/es/schema-settings/LinkageRules/index.d.ts +1 -2
- package/lib/index.js +68 -71
- package/lib/locale/en_US.js +3 -1
- package/lib/locale/zh-CN.js +3 -1
- package/package.json +6 -6
|
@@ -16,11 +16,11 @@ import { ComponentTypeAndString, RouterManager, RouterOptions } from './RouterMa
|
|
|
16
16
|
import { WebSocketClient, WebSocketClientOptions } from './WebSocketClient';
|
|
17
17
|
import { SchemaInitializer, SchemaInitializerManager } from './schema-initializer';
|
|
18
18
|
import { SchemaSettings, SchemaSettingsManager } from './schema-settings';
|
|
19
|
-
import { DataSourceManager, type DataSourceManagerOptions } from '../data-source/data-source/DataSourceManager';
|
|
20
19
|
import { CollectionFieldInterfaceComponentOption } from '../data-source/collection-field-interface/CollectionFieldInterface';
|
|
20
|
+
import { DataSourceManager, type DataSourceManagerOptions } from '../data-source/data-source/DataSourceManager';
|
|
21
|
+
import type { CollectionFieldInterfaceFactory } from '../data-source';
|
|
21
22
|
import type { Plugin } from './Plugin';
|
|
22
23
|
import type { RequireJS } from './utils/requirejs';
|
|
23
|
-
import type { CollectionFieldInterfaceFactory } from '../data-source';
|
|
24
24
|
declare global {
|
|
25
25
|
interface Window {
|
|
26
26
|
define: RequireJS['define'];
|
|
@@ -82,4 +82,7 @@ export declare const AssociationOrCollectionProvider: (props: {
|
|
|
82
82
|
export declare const DataBlockProvider: FC<Partial<AllDataBlockProps>>;
|
|
83
83
|
export declare const useDataBlock: <T extends {}>() => DataBlockContextValue<T>;
|
|
84
84
|
export declare const useDataBlockProps: <T extends {}>() => AllDataBlockProps & T;
|
|
85
|
+
export declare const useRerenderDataBlock: () => {
|
|
86
|
+
rerenderDataBlock: () => void;
|
|
87
|
+
};
|
|
85
88
|
export {};
|