@nocobase/client 2.1.0-alpha.9 → 2.1.0-beta.10
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/application/Application.d.ts +1 -5
- package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -1
- package/es/index.mjs +3232 -3302
- package/es/pm/PluginSetting.d.ts +1 -2
- package/es/pm/index.d.ts +0 -1
- package/es/schema-settings/SchemaSettingsDefaultValue.d.ts +18 -0
- package/lib/index.js +192 -191
- package/package.json +6 -6
- package/es/pm/AdminSettingsLayoutModel.d.ts +0 -13
- package/es/route-switch/antd/admin-layout/AdminLayoutModel.d.ts +0 -27
- package/es/route-switch/antd/admin-layout/AdminLayoutRouteCoordinator.d.ts +0 -50
|
@@ -18,7 +18,7 @@ import { SchemaInitializer, SchemaInitializerManager } from './schema-initialize
|
|
|
18
18
|
import { SchemaSettings, SchemaSettingsItemType, SchemaSettingsManager } from './schema-settings';
|
|
19
19
|
import { CollectionFieldInterfaceComponentOption } from '../data-source/collection-field-interface/CollectionFieldInterface';
|
|
20
20
|
import { DataSourceManager, type DataSourceManagerOptions } from '../data-source/data-source/DataSourceManager';
|
|
21
|
-
import { FlowEngine, FlowEngineContext
|
|
21
|
+
import { FlowEngine, FlowEngineContext } from '@nocobase/flow-engine';
|
|
22
22
|
import type { CollectionFieldInterfaceFactory } from '../data-source';
|
|
23
23
|
import type { Plugin } from './Plugin';
|
|
24
24
|
import type { RequireJS } from './utils/requirejs';
|
|
@@ -105,7 +105,6 @@ export declare class Application {
|
|
|
105
105
|
globalVarCtxs: Record<string, any>;
|
|
106
106
|
jsonLogic: JsonLogic;
|
|
107
107
|
flowEngine: FlowEngine;
|
|
108
|
-
model: ApplicationModel;
|
|
109
108
|
context: FlowEngineContext & {
|
|
110
109
|
pluginSettingsRouter: PluginSettingsManager;
|
|
111
110
|
pluginManager: PluginManager;
|
|
@@ -204,7 +203,4 @@ export declare class Application {
|
|
|
204
203
|
Component: ComponentType;
|
|
205
204
|
}): void;
|
|
206
205
|
}
|
|
207
|
-
declare class ApplicationModel extends FlowModel {
|
|
208
|
-
render(): React.JSX.Element;
|
|
209
|
-
}
|
|
210
206
|
export {};
|