@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.
@@ -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, FlowModel } from '@nocobase/flow-engine';
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 {};
@@ -23,7 +23,7 @@ export interface LinkageFilterItemProps {
23
23
  }
24
24
  type OperatorMeta = {
25
25
  value: string;
26
- label: string;
26
+ label: string | React.ReactNode;
27
27
  noValue?: boolean;
28
28
  schema?: any;
29
29
  selected?: boolean;