@oinone/kunlun-meta 6.4.3 → 7.2.0
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/dist/oinone-kunlun-meta.esm.js +56 -70
- package/dist/types/index.d.ts +1 -1
- package/dist/types/src/element/ActionElement.d.ts +15 -15
- package/dist/types/src/element/ApiElement.d.ts +21 -21
- package/dist/types/src/element/ClearElement.d.ts +9 -9
- package/dist/types/src/element/ConfigElement.d.ts +6 -6
- package/dist/types/src/element/ContextElement.d.ts +9 -9
- package/dist/types/src/element/CustomElement.d.ts +7 -7
- package/dist/types/src/element/FieldElement.d.ts +25 -25
- package/dist/types/src/element/IBaseElement.d.ts +5 -5
- package/dist/types/src/element/PropElement.d.ts +6 -6
- package/dist/types/src/element/RequestElement.d.ts +9 -9
- package/dist/types/src/element/ResponseElement.d.ts +9 -9
- package/dist/types/src/element/SubscribeElement.d.ts +9 -9
- package/dist/types/src/element/ValidationElement.d.ts +12 -12
- package/dist/types/src/element/ViewElement.d.ts +15 -15
- package/dist/types/src/element/WidgetElement.d.ts +23 -23
- package/dist/types/src/element/index.d.ts +14 -14
- package/dist/types/src/global-config/index.d.ts +2 -2
- package/dist/types/src/global-config/runtime-config.d.ts +14 -14
- package/dist/types/src/global-config/type.d.ts +26 -26
- package/dist/types/src/index.d.ts +5 -5
- package/dist/types/src/metadata/constant/config.d.ts +1 -1
- package/dist/types/src/metadata/constant/index.d.ts +2 -2
- package/dist/types/src/metadata/constant/module-name.d.ts +24 -24
- package/dist/types/src/metadata/fragment/action.d.ts +6 -6
- package/dist/types/src/metadata/fragment/field.d.ts +2 -2
- package/dist/types/src/metadata/fragment/func.d.ts +2 -2
- package/dist/types/src/metadata/fragment/index.d.ts +13 -13
- package/dist/types/src/metadata/fragment/menu.d.ts +2 -2
- package/dist/types/src/metadata/fragment/model.d.ts +2 -2
- package/dist/types/src/metadata/fragment/page.d.ts +2 -2
- package/dist/types/src/metadata/index.d.ts +4 -4
- package/dist/types/src/metadata/runtime-fragment/action.d.ts +8 -8
- package/dist/types/src/metadata/runtime-fragment/function.d.ts +3 -3
- package/dist/types/src/metadata/runtime-fragment/index.d.ts +20 -20
- package/dist/types/src/metadata/runtime-fragment/model.d.ts +2 -2
- package/dist/types/src/metadata/runtime-fragment/module.d.ts +2 -2
- package/dist/types/src/metadata/runtime-fragment/view.d.ts +6 -6
- package/dist/types/src/metadata/types/dsl-node.d.ts +12 -12
- package/dist/types/src/metadata/types/enumeration.d.ts +18 -18
- package/dist/types/src/metadata/types/index.d.ts +8 -8
- package/dist/types/src/metadata/types/layout.d.ts +4 -4
- package/dist/types/src/metadata/types/model.d.ts +589 -584
- package/dist/types/src/metadata/types/tag.d.ts +23 -23
- package/dist/types/src/metadata/types/user.d.ts +22 -22
- package/dist/types/src/metadata/types/value.d.ts +3 -3
- package/dist/types/src/metadata/types/view.d.ts +170 -170
- package/dist/types/src/plugin-loader/factory/PluginLoaderFactory.d.ts +4 -4
- package/dist/types/src/plugin-loader/factory/index.d.ts +1 -1
- package/dist/types/src/plugin-loader/index.d.ts +5 -5
- package/dist/types/src/plugin-loader/loader/CJSPluginLoader.d.ts +7 -7
- package/dist/types/src/plugin-loader/loader/CSSPluginLoader.d.ts +7 -7
- package/dist/types/src/plugin-loader/loader/ESMPluginLoader.d.ts +7 -7
- package/dist/types/src/plugin-loader/loader/IIFEPluginLoader.d.ts +7 -7
- package/dist/types/src/plugin-loader/loader/LoadedEvent.d.ts +4 -4
- package/dist/types/src/plugin-loader/loader/PluginLoader.d.ts +5 -5
- package/dist/types/src/plugin-loader/loader/RemotePluginLoader.d.ts +5 -5
- package/dist/types/src/plugin-loader/loader/UMDPluginLoader.d.ts +6 -6
- package/dist/types/src/plugin-loader/loader/index.d.ts +1 -1
- package/dist/types/src/plugin-loader/typing/index.d.ts +2 -2
- package/dist/types/src/plugin-loader/typing/load-option.d.ts +48 -48
- package/dist/types/src/plugin-loader/typing/loader-config.d.ts +38 -38
- package/dist/types/src/plugin-loader/util/PluginLoadHelper.d.ts +7 -7
- package/dist/types/src/plugin-loader/util/index.d.ts +1 -1
- package/dist/types/src/util/element.d.ts +16 -16
- package/dist/types/src/util/field.d.ts +9 -9
- package/dist/types/src/util/helper.d.ts +2 -2
- package/dist/types/src/util/index.d.ts +6 -6
- package/dist/types/src/util/ke-common.d.ts +6 -6
- package/dist/types/src/util/lang.d.ts +4 -4
- package/dist/types/src/util/validation-utils.d.ts +3 -3
- package/package.json +19 -8
- package/src/element/SubscribeElement.ts +1 -1
- package/src/global-config/runtime-config.ts +1 -1
- package/src/metadata/runtime-fragment/index.ts +1 -10
- package/src/metadata/types/model.ts +8 -3
- package/src/metadata/types/view.ts +1 -1
- package/src/plugin-loader/factory/PluginLoaderFactory.ts +1 -1
- package/src/plugin-loader/index.ts +1 -1
- package/src/plugin-loader/loader/CJSPluginLoader.ts +1 -1
- package/src/plugin-loader/loader/CSSPluginLoader.ts +1 -1
- package/src/plugin-loader/loader/ESMPluginLoader.ts +1 -1
- package/src/plugin-loader/loader/IIFEPluginLoader.ts +1 -1
- package/src/plugin-loader/loader/PluginLoader.ts +1 -1
- package/src/plugin-loader/loader/RemotePluginLoader.ts +1 -1
- package/src/plugin-loader/loader/UMDPluginLoader.ts +1 -1
- package/src/plugin-loader/typing/loader-config.ts +1 -1
- package/src/plugin-loader/util/PluginLoadHelper.ts +1 -1
- package/src/util/element.ts +2 -12
- package/src/util/field.ts +1 -1
- package/rollup.config.js +0 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
export declare abstract class CustomElement {
|
|
3
|
-
private static nameMap;
|
|
4
|
-
private static attributeMap;
|
|
5
|
-
static Name(elementName: string): <T extends IBaseElement>(target: T, name: string) => void;
|
|
6
|
-
static AttributeName(attributeName: string): <T extends IBaseElement>(target: T, name: string) => void;
|
|
7
|
-
}
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
export declare abstract class CustomElement {
|
|
3
|
+
private static nameMap;
|
|
4
|
+
private static attributeMap;
|
|
5
|
+
static Name(elementName: string): <T extends IBaseElement>(target: T, name: string) => void;
|
|
6
|
+
static AttributeName(attributeName: string): <T extends IBaseElement>(target: T, name: string) => void;
|
|
7
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { DataType, LoadType, QueryType } from '../metadata';
|
|
2
|
-
import { WidgetElement } from './WidgetElement';
|
|
3
|
-
/**
|
|
4
|
-
* 字段
|
|
5
|
-
*/
|
|
6
|
-
interface FieldElement extends WidgetElement {
|
|
7
|
-
dataType: DataType;
|
|
8
|
-
load: string;
|
|
9
|
-
loadType: LoadType;
|
|
10
|
-
queryType: QueryType;
|
|
11
|
-
loadApi: string;
|
|
12
|
-
options: string;
|
|
13
|
-
optionsLoad: string;
|
|
14
|
-
optionsLoadType: LoadType;
|
|
15
|
-
optionsLoadApi: string;
|
|
16
|
-
optionsLimit: number;
|
|
17
|
-
pattern: string;
|
|
18
|
-
validation: string;
|
|
19
|
-
tips: string;
|
|
20
|
-
align: string;
|
|
21
|
-
width: string;
|
|
22
|
-
height: string;
|
|
23
|
-
children: FieldElement[];
|
|
24
|
-
}
|
|
25
|
-
export { FieldElement };
|
|
1
|
+
import { DataType, LoadType, QueryType } from '../metadata';
|
|
2
|
+
import { WidgetElement } from './WidgetElement';
|
|
3
|
+
/**
|
|
4
|
+
* 字段
|
|
5
|
+
*/
|
|
6
|
+
interface FieldElement extends WidgetElement {
|
|
7
|
+
dataType: DataType;
|
|
8
|
+
load: string;
|
|
9
|
+
loadType: LoadType;
|
|
10
|
+
queryType: QueryType;
|
|
11
|
+
loadApi: string;
|
|
12
|
+
options: string;
|
|
13
|
+
optionsLoad: string;
|
|
14
|
+
optionsLoadType: LoadType;
|
|
15
|
+
optionsLoadApi: string;
|
|
16
|
+
optionsLimit: number;
|
|
17
|
+
pattern: string;
|
|
18
|
+
validation: string;
|
|
19
|
+
tips: string;
|
|
20
|
+
align: string;
|
|
21
|
+
width: string;
|
|
22
|
+
height: string;
|
|
23
|
+
children: FieldElement[];
|
|
24
|
+
}
|
|
25
|
+
export { FieldElement };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
interface IBaseElement {
|
|
2
|
-
name?: string;
|
|
3
|
-
textContent?: string;
|
|
4
|
-
}
|
|
5
|
-
export { IBaseElement };
|
|
1
|
+
interface IBaseElement {
|
|
2
|
+
name?: string;
|
|
3
|
+
textContent?: string;
|
|
4
|
+
}
|
|
5
|
+
export { IBaseElement };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
/**
|
|
3
|
-
* 通用属性
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export { PropElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
/**
|
|
3
|
+
* 通用属性
|
|
4
|
+
*/
|
|
5
|
+
type PropElement = IBaseElement;
|
|
6
|
+
export { PropElement };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
import { FieldElement } from './FieldElement';
|
|
3
|
-
/**
|
|
4
|
-
* 自定义api的请求
|
|
5
|
-
*/
|
|
6
|
-
interface RequestElement extends IBaseElement {
|
|
7
|
-
fields: FieldElement[];
|
|
8
|
-
}
|
|
9
|
-
export { RequestElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
import { FieldElement } from './FieldElement';
|
|
3
|
+
/**
|
|
4
|
+
* 自定义api的请求
|
|
5
|
+
*/
|
|
6
|
+
interface RequestElement extends IBaseElement {
|
|
7
|
+
fields: FieldElement[];
|
|
8
|
+
}
|
|
9
|
+
export { RequestElement };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
import { FieldElement } from './FieldElement';
|
|
3
|
-
/**
|
|
4
|
-
* 自定义api的响应
|
|
5
|
-
*/
|
|
6
|
-
interface ResponseElement extends IBaseElement {
|
|
7
|
-
fields: FieldElement[];
|
|
8
|
-
}
|
|
9
|
-
export { ResponseElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
import { FieldElement } from './FieldElement';
|
|
3
|
+
/**
|
|
4
|
+
* 自定义api的响应
|
|
5
|
+
*/
|
|
6
|
+
interface ResponseElement extends IBaseElement {
|
|
7
|
+
fields: FieldElement[];
|
|
8
|
+
}
|
|
9
|
+
export { ResponseElement };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
/**
|
|
3
|
-
* 事件订阅
|
|
4
|
-
*/
|
|
5
|
-
interface SubscribeElement extends IBaseElement {
|
|
6
|
-
api: string;
|
|
7
|
-
event: string;
|
|
8
|
-
}
|
|
9
|
-
export { SubscribeElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
/**
|
|
3
|
+
* 事件订阅
|
|
4
|
+
*/
|
|
5
|
+
interface SubscribeElement extends IBaseElement {
|
|
6
|
+
api: string;
|
|
7
|
+
event: string;
|
|
8
|
+
}
|
|
9
|
+
export { type SubscribeElement };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
import { ValidationScope } from '../metadata';
|
|
3
|
-
/**
|
|
4
|
-
* 验证器
|
|
5
|
-
*/
|
|
6
|
-
interface ValidationElement extends IBaseElement {
|
|
7
|
-
scope: ValidationScope;
|
|
8
|
-
fun: string;
|
|
9
|
-
expression: string;
|
|
10
|
-
tips: string;
|
|
11
|
-
}
|
|
12
|
-
export { ValidationElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
import { ValidationScope } from '../metadata';
|
|
3
|
+
/**
|
|
4
|
+
* 验证器
|
|
5
|
+
*/
|
|
6
|
+
interface ValidationElement extends IBaseElement {
|
|
7
|
+
scope: ValidationScope;
|
|
8
|
+
fun: string;
|
|
9
|
+
expression: string;
|
|
10
|
+
tips: string;
|
|
11
|
+
}
|
|
12
|
+
export { ValidationElement };
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
import { LoadType } from '../metadata';
|
|
3
|
-
/**
|
|
4
|
-
* 视图
|
|
5
|
-
*/
|
|
6
|
-
interface ViewElement extends IBaseElement {
|
|
7
|
-
widget: string;
|
|
8
|
-
model: string;
|
|
9
|
-
domain: string;
|
|
10
|
-
limit: number;
|
|
11
|
-
load: string;
|
|
12
|
-
loadType: LoadType;
|
|
13
|
-
loadApi: string;
|
|
14
|
-
}
|
|
15
|
-
export { ViewElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
import { LoadType } from '../metadata';
|
|
3
|
+
/**
|
|
4
|
+
* 视图
|
|
5
|
+
*/
|
|
6
|
+
interface ViewElement extends IBaseElement {
|
|
7
|
+
widget: string;
|
|
8
|
+
model: string;
|
|
9
|
+
domain: string;
|
|
10
|
+
limit: number;
|
|
11
|
+
load: string;
|
|
12
|
+
loadType: LoadType;
|
|
13
|
+
loadApi: string;
|
|
14
|
+
}
|
|
15
|
+
export { ViewElement };
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { IBaseElement } from './IBaseElement';
|
|
2
|
-
import { ModelFieldType } from '../metadata';
|
|
3
|
-
/**
|
|
4
|
-
* 组件
|
|
5
|
-
*/
|
|
6
|
-
interface WidgetElement extends IBaseElement {
|
|
7
|
-
widget: string;
|
|
8
|
-
model: string;
|
|
9
|
-
ttype: ModelFieldType;
|
|
10
|
-
relatedTtype: ModelFieldType;
|
|
11
|
-
references?: string;
|
|
12
|
-
domain: string;
|
|
13
|
-
limit: number;
|
|
14
|
-
data: string;
|
|
15
|
-
displayName: string;
|
|
16
|
-
invisible: string;
|
|
17
|
-
required: string;
|
|
18
|
-
readonly: string;
|
|
19
|
-
compute: string;
|
|
20
|
-
hint: string;
|
|
21
|
-
sortable: boolean;
|
|
22
|
-
}
|
|
23
|
-
export { WidgetElement };
|
|
1
|
+
import { IBaseElement } from './IBaseElement';
|
|
2
|
+
import { ModelFieldType } from '../metadata';
|
|
3
|
+
/**
|
|
4
|
+
* 组件
|
|
5
|
+
*/
|
|
6
|
+
interface WidgetElement extends IBaseElement {
|
|
7
|
+
widget: string;
|
|
8
|
+
model: string;
|
|
9
|
+
ttype: ModelFieldType;
|
|
10
|
+
relatedTtype: ModelFieldType;
|
|
11
|
+
references?: string;
|
|
12
|
+
domain: string;
|
|
13
|
+
limit: number;
|
|
14
|
+
data: string;
|
|
15
|
+
displayName: string;
|
|
16
|
+
invisible: string;
|
|
17
|
+
required: string;
|
|
18
|
+
readonly: string;
|
|
19
|
+
compute: string;
|
|
20
|
+
hint: string;
|
|
21
|
+
sortable: boolean;
|
|
22
|
+
}
|
|
23
|
+
export { WidgetElement };
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export * from './ActionElement';
|
|
2
|
-
export * from './ApiElement';
|
|
3
|
-
export * from './ClearElement';
|
|
4
|
-
export * from './ConfigElement';
|
|
5
|
-
export * from './ContextElement';
|
|
6
|
-
export * from './FieldElement';
|
|
7
|
-
export * from './IBaseElement';
|
|
8
|
-
export * from './PropElement';
|
|
9
|
-
export * from './RequestElement';
|
|
10
|
-
export * from './ResponseElement';
|
|
11
|
-
export * from './SubscribeElement';
|
|
12
|
-
export * from './ValidationElement';
|
|
13
|
-
export * from './ViewElement';
|
|
14
|
-
export * from './WidgetElement';
|
|
1
|
+
export * from './ActionElement';
|
|
2
|
+
export * from './ApiElement';
|
|
3
|
+
export * from './ClearElement';
|
|
4
|
+
export * from './ConfigElement';
|
|
5
|
+
export * from './ContextElement';
|
|
6
|
+
export * from './FieldElement';
|
|
7
|
+
export * from './IBaseElement';
|
|
8
|
+
export * from './PropElement';
|
|
9
|
+
export * from './RequestElement';
|
|
10
|
+
export * from './ResponseElement';
|
|
11
|
+
export * from './SubscribeElement';
|
|
12
|
+
export * from './ValidationElement';
|
|
13
|
+
export * from './ViewElement';
|
|
14
|
+
export * from './WidgetElement';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './type';
|
|
2
|
-
export * from './runtime-config';
|
|
1
|
+
export * from './type';
|
|
2
|
+
export * from './runtime-config';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { PluginLoadDependencies } from '../plugin-loader';
|
|
2
|
-
export interface RuntimeConfigOptions {
|
|
3
|
-
[key: string]: string | string[] | boolean | number | number[] | undefined | RuntimeConfigOptions;
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* .env文件配置项
|
|
7
|
-
* RUNTIME_CONFIG_BASE_URL 运行时配置文件URL 默认: 当前路径
|
|
8
|
-
* RUNTIME_CONFIG_FILENAME 运行时配置文件名称 默认: manifest
|
|
9
|
-
*/
|
|
10
|
-
export declare class RuntimeConfig {
|
|
11
|
-
static init(dependencies?: PluginLoadDependencies): Promise<void>;
|
|
12
|
-
static get(): Record<string, unknown>;
|
|
13
|
-
static getConfig<T extends RuntimeConfigOptions = RuntimeConfigOptions>(key: string): T | undefined;
|
|
14
|
-
}
|
|
1
|
+
import type { PluginLoadDependencies } from '../plugin-loader';
|
|
2
|
+
export interface RuntimeConfigOptions {
|
|
3
|
+
[key: string]: string | string[] | boolean | number | number[] | undefined | RuntimeConfigOptions;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* .env文件配置项
|
|
7
|
+
* RUNTIME_CONFIG_BASE_URL 运行时配置文件URL 默认: 当前路径
|
|
8
|
+
* RUNTIME_CONFIG_FILENAME 运行时配置文件名称 默认: manifest
|
|
9
|
+
*/
|
|
10
|
+
export declare class RuntimeConfig {
|
|
11
|
+
static init(dependencies?: PluginLoadDependencies): Promise<void>;
|
|
12
|
+
static get(): Record<string, unknown>;
|
|
13
|
+
static getConfig<T extends RuntimeConfigOptions = RuntimeConfigOptions>(key: string): T | undefined;
|
|
14
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { ApiProtocol, QueryType } from '../metadata';
|
|
2
|
-
export interface IGlobalConfig {
|
|
3
|
-
homepage?: {
|
|
4
|
-
model: string;
|
|
5
|
-
viewActionName: string;
|
|
6
|
-
};
|
|
7
|
-
login?: string;
|
|
8
|
-
loginLogo?: string;
|
|
9
|
-
loginPartnerName?: string;
|
|
10
|
-
loginIcpDesc?: string;
|
|
11
|
-
errorPage?: string;
|
|
12
|
-
theme?: string;
|
|
13
|
-
mask?: string;
|
|
14
|
-
apiProtocol?: ApiProtocol;
|
|
15
|
-
queryType?: QueryType.DOMAIN | QueryType.OBJECT;
|
|
16
|
-
}
|
|
17
|
-
export declare class GlobalConfig {
|
|
18
|
-
static defaultLoginPath: string;
|
|
19
|
-
private static _config;
|
|
20
|
-
static resister(config: IGlobalConfig): void;
|
|
21
|
-
static getConfig(): IGlobalConfig;
|
|
22
|
-
static getConfigByName(name: keyof IGlobalConfig): string | {
|
|
23
|
-
model: string;
|
|
24
|
-
viewActionName: string;
|
|
25
|
-
} | undefined;
|
|
26
|
-
}
|
|
1
|
+
import { ApiProtocol, QueryType } from '../metadata';
|
|
2
|
+
export interface IGlobalConfig {
|
|
3
|
+
homepage?: {
|
|
4
|
+
model: string;
|
|
5
|
+
viewActionName: string;
|
|
6
|
+
};
|
|
7
|
+
login?: string;
|
|
8
|
+
loginLogo?: string;
|
|
9
|
+
loginPartnerName?: string;
|
|
10
|
+
loginIcpDesc?: string;
|
|
11
|
+
errorPage?: string;
|
|
12
|
+
theme?: string;
|
|
13
|
+
mask?: string;
|
|
14
|
+
apiProtocol?: ApiProtocol;
|
|
15
|
+
queryType?: QueryType.DOMAIN | QueryType.OBJECT;
|
|
16
|
+
}
|
|
17
|
+
export declare class GlobalConfig {
|
|
18
|
+
static defaultLoginPath: string;
|
|
19
|
+
private static _config;
|
|
20
|
+
static resister(config: IGlobalConfig): void;
|
|
21
|
+
static getConfig(): IGlobalConfig;
|
|
22
|
+
static getConfigByName(name: keyof IGlobalConfig): string | {
|
|
23
|
+
model: string;
|
|
24
|
+
viewActionName: string;
|
|
25
|
+
} | undefined;
|
|
26
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './element';
|
|
2
|
-
export * from './plugin-loader';
|
|
3
|
-
export * from './global-config';
|
|
4
|
-
export * from './metadata';
|
|
5
|
-
export * from './util';
|
|
1
|
+
export * from './element';
|
|
2
|
+
export * from './plugin-loader';
|
|
3
|
+
export * from './global-config';
|
|
4
|
+
export * from './metadata';
|
|
5
|
+
export * from './util';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const BASE_RSQL_QUERY_CONDITION = "id =notnull= true";
|
|
1
|
+
export declare const BASE_RSQL_QUERY_CONDITION = "id =notnull= true";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './module-name';
|
|
2
|
-
export * from './config';
|
|
1
|
+
export * from './module-name';
|
|
2
|
+
export * from './config';
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
export declare const SYSTEM_MODULE: {
|
|
2
|
-
BASE: string;
|
|
3
|
-
GROUPING: string;
|
|
4
|
-
COMMON: string;
|
|
5
|
-
USER: string;
|
|
6
|
-
AUTH: string;
|
|
7
|
-
MESSAGE: string;
|
|
8
|
-
RESOURCE: string;
|
|
9
|
-
FILE: string;
|
|
10
|
-
EIP: string;
|
|
11
|
-
DESIGNER_COMMON: string;
|
|
12
|
-
};
|
|
13
|
-
export declare const SYSTEM_MODULE_NAME: {
|
|
14
|
-
BASE: string;
|
|
15
|
-
GROUPING: string;
|
|
16
|
-
COMMON: string;
|
|
17
|
-
USER: string;
|
|
18
|
-
AUTH: string;
|
|
19
|
-
MESSAGE: string;
|
|
20
|
-
RESOURCE: string;
|
|
21
|
-
FILE: string;
|
|
22
|
-
EIP: string;
|
|
23
|
-
DESIGNER_COMMON: string;
|
|
24
|
-
};
|
|
1
|
+
export declare const SYSTEM_MODULE: {
|
|
2
|
+
BASE: string;
|
|
3
|
+
GROUPING: string;
|
|
4
|
+
COMMON: string;
|
|
5
|
+
USER: string;
|
|
6
|
+
AUTH: string;
|
|
7
|
+
MESSAGE: string;
|
|
8
|
+
RESOURCE: string;
|
|
9
|
+
FILE: string;
|
|
10
|
+
EIP: string;
|
|
11
|
+
DESIGNER_COMMON: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const SYSTEM_MODULE_NAME: {
|
|
14
|
+
BASE: string;
|
|
15
|
+
GROUPING: string;
|
|
16
|
+
COMMON: string;
|
|
17
|
+
USER: string;
|
|
18
|
+
AUTH: string;
|
|
19
|
+
MESSAGE: string;
|
|
20
|
+
RESOURCE: string;
|
|
21
|
+
FILE: string;
|
|
22
|
+
EIP: string;
|
|
23
|
+
DESIGNER_COMMON: string;
|
|
24
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
declare const Action: import("graphql").DocumentNode;
|
|
2
|
-
declare const ViewAction: import("graphql").DocumentNode;
|
|
3
|
-
declare const UrlAction: import("graphql").DocumentNode;
|
|
4
|
-
declare const ServerAction: import("graphql").DocumentNode;
|
|
5
|
-
declare const ClientAction: import("graphql").DocumentNode;
|
|
6
|
-
export { ViewAction, UrlAction, ServerAction, ClientAction, Action };
|
|
1
|
+
declare const Action: import("graphql").DocumentNode;
|
|
2
|
+
declare const ViewAction: import("graphql").DocumentNode;
|
|
3
|
+
declare const UrlAction: import("graphql").DocumentNode;
|
|
4
|
+
declare const ServerAction: import("graphql").DocumentNode;
|
|
5
|
+
declare const ClientAction: import("graphql").DocumentNode;
|
|
6
|
+
export { ViewAction, UrlAction, ServerAction, ClientAction, Action };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const Field: import("graphql").DocumentNode;
|
|
2
|
-
export { Field };
|
|
1
|
+
declare const Field: import("graphql").DocumentNode;
|
|
2
|
+
export { Field };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const Func: import("graphql").DocumentNode;
|
|
2
|
-
export { Func };
|
|
1
|
+
declare const Func: import("graphql").DocumentNode;
|
|
2
|
+
export { Func };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export declare const MetadataFragment: {
|
|
2
|
-
Model: import("graphql").DocumentNode;
|
|
3
|
-
ModelWithFields: import("graphql").DocumentNode;
|
|
4
|
-
Field: import("graphql").DocumentNode;
|
|
5
|
-
UrlAction: import("graphql").DocumentNode;
|
|
6
|
-
ServerAction: import("graphql").DocumentNode;
|
|
7
|
-
ViewAction: import("graphql").DocumentNode;
|
|
8
|
-
ClientAction: import("graphql").DocumentNode;
|
|
9
|
-
Action: import("graphql").DocumentNode;
|
|
10
|
-
Menu: import("graphql").DocumentNode;
|
|
11
|
-
View: import("graphql").DocumentNode;
|
|
12
|
-
Func: import("graphql").DocumentNode;
|
|
13
|
-
};
|
|
1
|
+
export declare const MetadataFragment: {
|
|
2
|
+
Model: import("graphql").DocumentNode;
|
|
3
|
+
ModelWithFields: import("graphql").DocumentNode;
|
|
4
|
+
Field: import("graphql").DocumentNode;
|
|
5
|
+
UrlAction: import("graphql").DocumentNode;
|
|
6
|
+
ServerAction: import("graphql").DocumentNode;
|
|
7
|
+
ViewAction: import("graphql").DocumentNode;
|
|
8
|
+
ClientAction: import("graphql").DocumentNode;
|
|
9
|
+
Action: import("graphql").DocumentNode;
|
|
10
|
+
Menu: import("graphql").DocumentNode;
|
|
11
|
+
View: import("graphql").DocumentNode;
|
|
12
|
+
Func: import("graphql").DocumentNode;
|
|
13
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const Menu: import("graphql").DocumentNode;
|
|
2
|
-
export { Menu };
|
|
1
|
+
declare const Menu: import("graphql").DocumentNode;
|
|
2
|
+
export { Menu };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const Model: import("graphql").DocumentNode;
|
|
2
|
-
export declare const ModelWithFields: import("graphql").DocumentNode;
|
|
1
|
+
export declare const Model: import("graphql").DocumentNode;
|
|
2
|
+
export declare const ModelWithFields: import("graphql").DocumentNode;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const View: import("graphql").DocumentNode;
|
|
2
|
-
export { View };
|
|
1
|
+
declare const View: import("graphql").DocumentNode;
|
|
2
|
+
export { View };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './types';
|
|
2
|
-
export * from './constant';
|
|
3
|
-
export * from './fragment';
|
|
4
|
-
export * from './runtime-fragment';
|
|
1
|
+
export * from './types';
|
|
2
|
+
export * from './constant';
|
|
3
|
+
export * from './fragment';
|
|
4
|
+
export * from './runtime-fragment';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export declare const ViewActionFragmentName = "...ViewActionV3";
|
|
2
|
-
export declare const SharedViewActionFragmentName = "...SharedPageViewActionV3";
|
|
3
|
-
export declare const ServerActionFragmentName = "...ServerActionV3";
|
|
4
|
-
export declare const UrlActionFragmentName = "...UrlActionV3";
|
|
5
|
-
export declare const ViewAction: import("graphql").DocumentNode;
|
|
6
|
-
export declare const SharedViewAction: import("graphql").DocumentNode;
|
|
7
|
-
export declare const ServerAction: import("graphql").DocumentNode;
|
|
8
|
-
export declare const UrlAction: import("graphql").DocumentNode;
|
|
1
|
+
export declare const ViewActionFragmentName = "...ViewActionV3";
|
|
2
|
+
export declare const SharedViewActionFragmentName = "...SharedPageViewActionV3";
|
|
3
|
+
export declare const ServerActionFragmentName = "...ServerActionV3";
|
|
4
|
+
export declare const UrlActionFragmentName = "...UrlActionV3";
|
|
5
|
+
export declare const ViewAction: import("graphql").DocumentNode;
|
|
6
|
+
export declare const SharedViewAction: import("graphql").DocumentNode;
|
|
7
|
+
export declare const ServerAction: import("graphql").DocumentNode;
|
|
8
|
+
export declare const UrlAction: import("graphql").DocumentNode;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const FunctionFragmentName = "...FuncV3";
|
|
2
|
-
declare const Function: import("graphql").DocumentNode;
|
|
3
|
-
export { Function };
|
|
1
|
+
export declare const FunctionFragmentName = "...FuncV3";
|
|
2
|
+
declare const Function: import("graphql").DocumentNode;
|
|
3
|
+
export { Function };
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export declare const MetadataRuntimeFragment: {
|
|
2
|
-
Module: import("graphql").DocumentNode;
|
|
3
|
-
Model: import("graphql").DocumentNode;
|
|
4
|
-
ViewAction: import("graphql").DocumentNode;
|
|
5
|
-
SharedViewAction: import("graphql").DocumentNode;
|
|
6
|
-
ServerAction: import("graphql").DocumentNode;
|
|
7
|
-
UrlAction: import("graphql").DocumentNode;
|
|
8
|
-
View: import("graphql").DocumentNode;
|
|
9
|
-
Function: import("graphql").DocumentNode;
|
|
10
|
-
};
|
|
11
|
-
export declare const MetadataRuntimeFragmentName: {
|
|
12
|
-
Module: string;
|
|
13
|
-
Model: string;
|
|
14
|
-
ViewAction: string;
|
|
15
|
-
SharedViewAction: string;
|
|
16
|
-
ServerAction: string;
|
|
17
|
-
UrlAction: string;
|
|
18
|
-
View: string;
|
|
19
|
-
Function: string;
|
|
20
|
-
};
|
|
1
|
+
export declare const MetadataRuntimeFragment: {
|
|
2
|
+
Module: import("graphql").DocumentNode;
|
|
3
|
+
Model: import("graphql").DocumentNode;
|
|
4
|
+
ViewAction: import("graphql").DocumentNode;
|
|
5
|
+
SharedViewAction: import("graphql").DocumentNode;
|
|
6
|
+
ServerAction: import("graphql").DocumentNode;
|
|
7
|
+
UrlAction: import("graphql").DocumentNode;
|
|
8
|
+
View: import("graphql").DocumentNode;
|
|
9
|
+
Function: import("graphql").DocumentNode;
|
|
10
|
+
};
|
|
11
|
+
export declare const MetadataRuntimeFragmentName: {
|
|
12
|
+
Module: string;
|
|
13
|
+
Model: string;
|
|
14
|
+
ViewAction: string;
|
|
15
|
+
SharedViewAction: string;
|
|
16
|
+
ServerAction: string;
|
|
17
|
+
UrlAction: string;
|
|
18
|
+
View: string;
|
|
19
|
+
Function: string;
|
|
20
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const ModelFragmentName = "...ModelV3";
|
|
2
|
-
export declare const Model: import("graphql").DocumentNode;
|
|
1
|
+
export declare const ModelFragmentName = "...ModelV3";
|
|
2
|
+
export declare const Model: import("graphql").DocumentNode;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const ModuleFragmentName = "...ModuleV3";
|
|
2
|
-
export declare const Module: import("graphql").DocumentNode;
|
|
1
|
+
export declare const ModuleFragmentName = "...ModuleV3";
|
|
2
|
+
export declare const Module: import("graphql").DocumentNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare const MaskFragmentName = "...MaskV3";
|
|
2
|
-
export declare const Mask: import("graphql").DocumentNode;
|
|
3
|
-
export declare const LayoutFragmentName = "...LayoutV3";
|
|
4
|
-
export declare const Layout: import("graphql").DocumentNode;
|
|
5
|
-
export declare const ViewFragmentName = "...ViewV3";
|
|
6
|
-
export declare const View: import("graphql").DocumentNode;
|
|
1
|
+
export declare const MaskFragmentName = "...MaskV3";
|
|
2
|
+
export declare const Mask: import("graphql").DocumentNode;
|
|
3
|
+
export declare const LayoutFragmentName = "...LayoutV3";
|
|
4
|
+
export declare const Layout: import("graphql").DocumentNode;
|
|
5
|
+
export declare const ViewFragmentName = "...ViewV3";
|
|
6
|
+
export declare const View: import("graphql").DocumentNode;
|