@byteluck-fe/model-driven-driven 2.7.0-alpha.15 → 2.7.0-alpha.15a

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.
@@ -31,6 +31,6 @@ export default class Designer<EventKeys extends string = string> extends Registe
31
31
  checkSchema(...args: Parameters<typeof checkSchema>): Promise<ReturnType<typeof checkSchema>>;
32
32
  getModelBindInfoList(...args: Parameters<typeof getModelBindInfoList>): ReturnType<typeof getModelBindInfoList>;
33
33
  getSchema(...args: Parameters<typeof toSchema>): ReturnType<typeof toSchema>;
34
- listenControlHook(...args: Parameters<(typeof controlHooksEmitter)['on']>): ReturnType<(typeof controlHooksEmitter)['on']>;
34
+ listenControlHook(...args: Parameters<typeof controlHooksEmitter['on']>): ReturnType<typeof controlHooksEmitter['on']>;
35
35
  }
36
36
  export { ToolboxType, DesignerServices, Designer };
@@ -6,8 +6,8 @@ import { Plugin } from './Plugin';
6
6
  import { DesignerControl, ControlDesignerInstance, ControlsKeys, Schema, DeepPartial, Messages, BeforeCreateInstance } from '@byteluck-fe/model-driven-core';
7
7
  import { generatePermissions, getModelBindInfoList, toSchema } from './utils';
8
8
  import { Settings } from '@byteluck-fe/model-driven-settings';
9
- type EventKeys = 'before-validate' | 'validated' | 'updated' | 'joined' | 'moved' | 'removed' | 'select' | 'field-changed';
10
- type SchemaBaseType = Schema<ControlsKeys>;
9
+ declare type EventKeys = 'before-validate' | 'validated' | 'updated' | 'joined' | 'moved' | 'removed' | 'select' | 'field-changed';
10
+ declare type SchemaBaseType = Schema<ControlsKeys>;
11
11
  interface DrivenOptions {
12
12
  autoMount?: boolean;
13
13
  plugins?: Plugin[];
@@ -5,7 +5,7 @@ export interface StoreOptions {
5
5
  instance: DesignerControl[];
6
6
  getParentBeforeInstanceMove?: (instance: DesignerControl) => DesignerControl | null;
7
7
  }
8
- type DataScopeControl = ControlDesignerInstance<'data-view' | 'subtable' | 'list-view'> | null;
8
+ declare type DataScopeControl = ControlDesignerInstance<'data-view' | 'subtable' | 'list-view'> | null;
9
9
  export declare class Store {
10
10
  /**
11
11
  * 页面控件实例树
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-driven",
3
- "version": "2.7.0-alpha.15",
3
+ "version": "2.7.0-alpha.15a",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -26,10 +26,10 @@
26
26
  "postpublish": "node ../../scripts/postpublish.js"
27
27
  },
28
28
  "dependencies": {
29
- "@byteluck-fe/model-driven-controls": "2.7.0-alpha.15",
30
- "@byteluck-fe/model-driven-core": "2.7.0-alpha.15",
31
- "@byteluck-fe/model-driven-settings": "2.7.0-alpha.15",
32
- "@byteluck-fe/model-driven-shared": "2.7.0-alpha.13"
29
+ "@byteluck-fe/model-driven-controls": "2.7.0-alpha.15a",
30
+ "@byteluck-fe/model-driven-core": "2.7.0-alpha.15a",
31
+ "@byteluck-fe/model-driven-settings": "2.7.0-alpha.15a",
32
+ "@byteluck-fe/model-driven-shared": "2.7.0-alpha.15a"
33
33
  },
34
- "gitHead": "319d4bf45c8e78b64d63792ff855392e734de052"
34
+ "gitHead": "6f9495c0cc7715471d5eb38dc316ba6d470af141"
35
35
  }