@nocobase/client 2.1.0-alpha.37 → 2.1.0-alpha.39

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.
@@ -20,10 +20,6 @@ import { PluginSettingOptions, PluginSettingsManager } from './PluginSettingsMan
20
20
  import { RouterManager, type RouterOptions } from './RouterManager';
21
21
  import { SchemaInitializer, SchemaInitializerManager } from './schema-initializer';
22
22
  import { SchemaSettings, SchemaSettingsItemType, SchemaSettingsManager } from './schema-settings';
23
- type JsonLogic = {
24
- addOperation: (name: string, fn?: any) => void;
25
- rmOperation: (name: string) => void;
26
- };
27
23
  /**
28
24
  * Reference: https://ant.design/components/cascader-cn#option
29
25
  */
@@ -68,7 +64,6 @@ export declare class Application extends BaseApplication<ApplicationOptions, Plu
68
64
  dataSourceManager: DataSourceManager;
69
65
  globalVars: Record<string, any>;
70
66
  globalVarCtxs: Record<string, any>;
71
- jsonLogic: JsonLogic;
72
67
  loading: boolean;
73
68
  hasLoadError: boolean;
74
69
  locales: any;
@@ -106,7 +101,6 @@ export declare class Application extends BaseApplication<ApplicationOptions, Plu
106
101
  CollectionField: import("react").ForwardRefExoticComponent<Omit<Partial<any>, "ref"> & import("react").RefAttributes<unknown>>;
107
102
  };
108
103
  protected initializeExtendedState(): void;
109
- protected afterManagersInitialized(): void;
110
104
  protected addCustomProviders(): void;
111
105
  protected getRootFallback(): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
112
106
  getCollectionManager(dataSource?: string): import("../data-source").CollectionManager;
@@ -7,6 +7,13 @@
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
9
  import type { RequireJS } from './requirejs';
10
+ declare global {
11
+ interface Window {
12
+ __nocobase_app_dev__?: boolean;
13
+ __nocobase_app_dev_deps__?: Record<string, unknown>;
14
+ __nocobase_app_dev_plugins__?: Record<string, unknown>;
15
+ }
16
+ }
10
17
  /**
11
18
  * @internal
12
19
  */