修改了新的componentToProps下的编译问题

This commit is contained in:
Xu Chang 2023-03-08 15:47:21 +08:00
parent 7f3e9ebe93
commit a4f863cdea
143 changed files with 510 additions and 159 deletions

View File

@ -1,3 +1,28 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
bgColor: {
type: StringConstructor;
value: string;
};
bgImg: {
type: StringConstructor;
value: string;
};
selectedIndex: {
type: NumberConstructor;
value: number;
};
list: {
type: ArrayConstructor;
value: never[];
};
color: {
type: StringConstructor;
value: string;
};
selectedColor: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,10 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
config: ObjectConstructor;
entity: StringConstructor;
name: StringConstructor;
entityId: StringConstructor;
type: StringConstructor;
isService: BooleanConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -10,6 +10,7 @@ exports.default = OakComponent({
name: String,
entityId: String,
type: String,
isService: Boolean,
},
data: {
initialConfig: {},

View File

@ -1,3 +1,8 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
config: ObjectConstructor;
entity: StringConstructor;
name: StringConstructor;
entityId: StringConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,36 @@
import React from 'react';
declare const _default: React.ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
html: {
type: StringConstructor;
value: string;
};
delta: {
type: StringConstructor;
value: string;
};
readOnly: {
type: BooleanConstructor;
value: false;
};
showImgSize: {
type: BooleanConstructor;
value: false;
};
showImgResize: {
type: BooleanConstructor;
value: false;
};
editorStyle: {
type: StringConstructor;
value: string;
};
placeholder: {
type: StringConstructor;
value: string;
};
showTabBar: {
type: BooleanConstructor;
value: true;
};
}>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,10 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
preview: {
type: BooleanConstructor;
value: true;
};
entity: StringConstructor;
entityId: StringConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,8 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
mode: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,74 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
removeLater: BooleanConstructor;
autoUpload: {
type: BooleanConstructor;
value: false;
};
maxNumber: {
type: NumberConstructor;
value: number;
};
extension: {
type: ArrayConstructor;
};
fileType: {
type: StringConstructor;
value: string;
};
selectCount: {
type: NumberConstructor;
value: number;
};
sourceType: {
type: ArrayConstructor;
value: string[];
};
mediaType: {
type: ArrayConstructor;
value: string[];
};
mode: {
type: StringConstructor;
value: string;
};
size: {
type: NumberConstructor;
value: number;
};
showUploadList: {
type: BooleanConstructor;
value: true;
};
accept: {
type: StringConstructor;
value: string;
};
preview: {
type: BooleanConstructor;
value: true;
};
disableDelete: {
type: BooleanConstructor;
value: false;
};
disableAdd: {
type: BooleanConstructor;
value: false;
};
disableDownload: {
type: BooleanConstructor;
value: false;
};
type: StringConstructor;
origin: StringConstructor;
tag1: StringConstructor;
tag2: StringConstructor;
entity: StringConstructor;
entityId: StringConstructor;
theme: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,21 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
entity: StringConstructor;
actions: {
type: ArrayConstructor;
value: never[];
};
items: {
type: ArrayConstructor;
value: never[];
};
mode: {
type: StringConstructor;
value: string;
};
column: {
type: NumberConstructor;
value: number;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,12 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
onActionClick: FunctionConstructor;
actions: ArrayConstructor;
actionDescriptions: ObjectConstructor;
iconSize: StringConstructor;
rowNum: {
type: NumberConstructor;
value: number;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.default = OakComponent({
isList: false,
properties: {
onActionClick: Function,
actions: Array,
actionDescriptions: Object,
iconSize: String,

View File

@ -1,3 +1,25 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
entity: StringConstructor;
actions: {
type: ArrayConstructor;
value: never[];
};
items: {
type: ArrayConstructor;
value: never[];
};
rows: {
type: NumberConstructor;
value: number;
};
column: {
type: NumberConstructor;
value: number;
};
mode: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,8 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
entity: StringConstructor;
projection: ObjectConstructor;
multiple: BooleanConstructor;
onSelect: FunctionConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -22,6 +22,8 @@ exports.default = OakComponent({
properties: {
entity: String,
projection: Object,
multiple: Boolean,
onSelect: Function,
},
methods: {},
});

View File

@ -1,3 +1,7 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
entity: StringConstructor;
column: ObjectConstructor;
formItem: BooleanConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -14,6 +14,7 @@ exports.default = OakComponent({
properties: {
entity: String,
column: Object,
formItem: Boolean,
},
methods: {
getNamedFilter: function (name) {

View File

@ -1,3 +1,6 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
entity: StringConstructor;
column: ObjectConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,6 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
entity: StringConstructor;
columns: ArrayConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,25 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
type: {
type: StringConstructor;
value: string;
};
size: {
type: NumberConstructor;
optionalTypes: (StringConstructor | NumberConstructor)[];
value: number;
};
color: {
type: StringConstructor;
value: string;
};
name: {
type: StringConstructor;
value: string;
};
larger: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,13 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
name: {
type: StringConstructor;
value: string;
};
size: NumberConstructor;
color: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,5 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
applicationId: StringConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,20 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
shape: {
type: StringConstructor;
value: string;
};
size: {
type: NumberConstructor;
optionalTypes: (StringConstructor | NumberConstructor)[];
};
iconColor: {
type: StringConstructor;
value: string;
};
iconName: {
type: StringConstructor;
value: string;
};
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -11,10 +11,6 @@ exports.default = OakComponent({
type: Number,
optionalTypes: [Number, String],
},
iconType: {
type: String,
value: 'fas',
},
iconColor: {
type: String,
value: 'primary',

View File

@ -5,7 +5,6 @@ export default function Render(props: WebComponentProps<EntityDict, 'token', fal
avatarUrl: string;
shape?: 'circle' | 'square';
size: AvatarSize;
iconType?: string;
iconColor?: string;
iconName?: string;
iconLarger?: string;

View File

@ -6,7 +6,7 @@ var antd_1 = require("antd");
var web_module_less_1 = tslib_1.__importDefault(require("./web.module.less"));
var index_1 = tslib_1.__importDefault(require("../../icon/index"));
function Render(props) {
var _a = props.data, avatarUrl = _a.avatarUrl, shape = _a.shape, size = _a.size, iconType = _a.iconType, iconColor = _a.iconColor, iconName = _a.iconName, onClick = _a.onClick;
return avatarUrl ? ((0, jsx_runtime_1.jsx)(antd_1.Avatar, { className: onClick ? web_module_less_1.default.avatar : undefined, src: avatarUrl, shape: shape, size: size, onClick: onClick })) : ((0, jsx_runtime_1.jsx)(antd_1.Avatar, { className: onClick ? web_module_less_1.default.avatar : undefined, icon: (0, jsx_runtime_1.jsx)(index_1.default, { name: iconName, color: iconColor, type: iconType }), shape: shape, size: size, onClick: onClick }));
var _a = props.data, avatarUrl = _a.avatarUrl, shape = _a.shape, size = _a.size, iconColor = _a.iconColor, iconName = _a.iconName, onClick = _a.onClick;
return avatarUrl ? ((0, jsx_runtime_1.jsx)(antd_1.Avatar, { className: onClick ? web_module_less_1.default.avatar : undefined, src: avatarUrl, shape: shape, size: size, onClick: onClick })) : ((0, jsx_runtime_1.jsx)(antd_1.Avatar, { className: onClick ? web_module_less_1.default.avatar : undefined, icon: (0, jsx_runtime_1.jsx)(index_1.default, { name: iconName, color: iconColor }), shape: shape, size: size, onClick: onClick }));
}
exports.default = Render;

View File

@ -1,3 +1,5 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
showLogout: BooleanConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1 +1 @@
{ "attr": { "detail": "详细地址", "area": "所在地区", "phone": "联系电话", "name": "姓名", "default": "是否默认", "remark": "备注" } }
{ "name": "地址", "attr": { "detail": "详细地址", "area": "所在地区", "phone": "联系电话", "name": "姓名", "default": "是否默认", "remark": "备注" } }

View File

@ -1 +1 @@
{ "attr": { "description": "描述", "type": "类型", "system": "系统", "name": "名称", "config": "设置", "style": "样式" }, "v": { "type": { "web": "网站", "wechatPublic": "微信公众号", "wechatMp": "微信小程序" } } }
{ "name": "应用", "attr": { "description": "描述", "type": "类型", "system": "系统", "name": "名称", "config": "设置", "style": "样式" }, "v": { "type": { "web": "网站", "wechatPublic": "微信公众号", "wechatMp": "微信小程序" } } }

View File

@ -1 +1 @@
{ "attr": { "level": "层级", "depth": "深度", "parent": "上级地区", "name": "名称", "code": "地区编码", "center": "中心坐标" }, "v": { "level": { "country": "国家", "province": "省", "city": "市", "district": "区", "street": "街道" } } }
{ "name": "地区", "attr": { "level": "层级", "depth": "深度", "parent": "上级地区", "name": "名称", "code": "地区编码", "center": "中心坐标" }, "v": { "level": { "country": "国家", "province": "省", "city": "市", "district": "区", "street": "街道" } } }

View File

@ -1 +1 @@
{ "attr": { "title": "标题", "author": "作者", "abstract": "简介", "content": "正文", "files": "封面图", "iState": "状态", "url": "外部链接", "entity": "关联对象", "entityId": "关联对象id", "sign": "唯一标志" }, "action": { "online": "上架", "offline": "下架", "disabled": "禁用" }, "v": { "iState": { "online": "已上架", "offline": "已下架", "disabled": "已禁用" } } }
{ "name": "文章", "attr": { "title": "标题", "author": "作者", "abstract": "简介", "content": "正文", "files": "封面图", "iState": "状态", "url": "外部链接", "entity": "关联对象", "entityId": "关联对象id", "sign": "唯一标志" }, "action": { "online": "上架", "offline": "下架", "disabled": "禁用" }, "v": { "iState": { "online": "已上架", "offline": "已下架", "disabled": "已禁用" } } }

View File

@ -1 +1 @@
{ "attr": { "mobile": "手机号", "code": "验证码", "visitorId": "用户标识", "reason": "失败原因", "env": "用户环境", "expired": "是否过期", "expiresAt": "过期时间", "iState": "状态" }, "action": { "send": "发送", "fail": "失败", "success": "成功" }, "v": { "iState": { "unsent": "未发送", "sending": "发送中", "sent": "已发送", "failure": "已失败" } } }
{ "name": "验证码", "attr": { "mobile": "手机号", "code": "验证码", "visitorId": "用户标识", "reason": "失败原因", "env": "用户环境", "expired": "是否过期", "expiresAt": "过期时间", "iState": "状态" }, "action": { "send": "发送", "fail": "失败", "success": "成功" }, "v": { "iState": { "unsent": "未发送", "sending": "发送中", "sent": "已发送", "failure": "已失败" } } }

View File

@ -1 +1 @@
{ "attr": { "url": "域名", "apiPath": "api路径", "protocol": "协议", "port": "端口", "system": "系统" }, "v": { "protocol": { "http": "http", "https": "https" } } }
{ "name": "域名", "attr": { "url": "域名", "apiPath": "api路径", "protocol": "协议", "port": "端口", "system": "系统" }, "v": { "protocol": { "http": "http", "https": "https" } } }

View File

@ -1 +1 @@
{ "attr": { "ableState": "是否可用", "email": "邮箱", "user": "关联用户", "tokens": "相关令牌" }, "action": { "enable": "启用", "disable": "禁用" }, "v": { "ableState": { "enabled": "可用的", "disabled": "禁用的" } } }
{ "name": "邮箱", "attr": { "ableState": "是否可用", "email": "邮箱", "user": "关联用户", "tokens": "相关令牌" }, "action": { "enable": "启用", "disable": "禁用" }, "v": { "ableState": { "enabled": "可用的", "disabled": "禁用的" } } }

View File

@ -1 +1 @@
{ "attr": { "origin": "源", "type": "类型", "bucket": "桶", "objectId": "对象编号", "tag1": "标签一", "tag2": "标签二", "filename": "文件名", "md5": "md5", "entity": "关联对象", "entityId": "关联对象id", "extra1": "额外信息", "extension": "后缀名", "size": "文件大小", "sort": "排序", "fileType": "文件类型" }, "v": { "origin": { "qiniu": "七牛云", "unknown": "未知" }, "type": { "image": "图像", "video": "视频", "audio": "音频", "file": "文件" } } }
{ "name": "文件", "attr": { "origin": "源", "type": "类型", "bucket": "桶", "objectId": "对象编号", "tag1": "标签一", "tag2": "标签二", "filename": "文件名", "md5": "md5", "entity": "关联对象", "entityId": "关联对象id", "extra1": "额外信息", "extension": "后缀名", "size": "文件大小", "sort": "排序", "fileType": "文件类型" }, "v": { "origin": { "qiniu": "七牛云", "unknown": "未知" }, "type": { "image": "图像", "video": "视频", "audio": "音频", "file": "文件" } } }

View File

@ -1 +1 @@
{ "attr": { "title": "名称", "streamTitle": "直播流名称", "liveonly": "活跃状态", "hub": "直播空间名称", "entity": "所属实体", "entityId": "所属实体id", "rtmpPushUrl": "推流地址", "rtmpPlayUrl": "播放地址", "expireAt": "推流过期时间", "pcPushUrl": "OBS推流地址", "streamKey": "OBS串流密钥" }, "v": { "liveonly": { "online": "在线", "offline": "下线" } } }
{ "name": "直播流", "attr": { "title": "名称", "streamTitle": "直播流名称", "liveonly": "活跃状态", "hub": "直播空间名称", "entity": "所属实体", "entityId": "所属实体id", "rtmpPushUrl": "推流地址", "rtmpPlayUrl": "播放地址", "expireAt": "推流过期时间", "pcPushUrl": "OBS推流地址", "streamKey": "OBS串流密钥" }, "v": { "liveonly": { "online": "在线", "offline": "下线" } } }

View File

@ -1 +1 @@
{ "attr": { "entity": "关联对象", "entityId": "关联对象ID", "restriction": "限制", "title": "标题", "content": "内容", "user": "关联用户", "type": "消息类型", "weight": "优先级", "iState": "发送状态", "visitState": "访问状态", "router": "目标路由", "data": "透传数据" }, "action": { "succeed": "成功", "fail": "失败", "visit": "阅读" }, "v": { "iState": { "sending": "发送中", "success": "发送成功", "failure": "发送失败" }, "visitState": { "unvisited": "未读", "visited": "已读" }, "weight": { "high": "高", "medium": "中", "low": "低" } } }
{ "name": "信息", "attr": { "entity": "关联对象", "entityId": "关联对象ID", "restriction": "限制", "title": "标题", "content": "内容", "user": "关联用户", "type": "消息类型", "weight": "优先级", "iState": "发送状态", "visitState": "访问状态", "router": "目标路由", "data": "透传数据" }, "action": { "succeed": "成功", "fail": "失败", "visit": "阅读" }, "v": { "iState": { "sending": "发送中", "success": "发送成功", "failure": "发送失败" }, "visitState": { "unvisited": "未读", "visited": "已读" }, "weight": { "high": "高", "medium": "中", "low": "低" } } }

View File

@ -1 +1 @@
{ "attr": { "message": "消息", "system": "系统" } }
{ "name": "信息系统连接", "attr": { "message": "消息", "system": "系统" } }

View File

@ -1 +1 @@
{ "attr": { "type": "类型" } }
{ "name": "消息类型", "attr": { "type": "类型" } }

View File

@ -1 +1 @@
{ "attr": { "type": "消息类型", "templateId": "模板编号", "application": "关联应用" } }
{ "name": "消息类型模板", "attr": { "type": "消息类型", "templateId": "模板编号", "application": "关联应用" } }

View File

@ -1 +1 @@
{ "attr": { "ableState": "是否可用", "mobile": "手机号", "user": "关联用户", "tokens": "相关令牌" }, "action": { "enable": "启用", "disable": "禁用" }, "v": { "ableState": { "enabled": "可用的", "disabled": "禁用的" } } }
{ "name": "手机", "attr": { "ableState": "是否可用", "mobile": "手机号", "user": "关联用户", "tokens": "相关令牌" }, "action": { "enable": "启用", "disable": "禁用" }, "v": { "ableState": { "enabled": "可用的", "disabled": "禁用的" } } }

View File

@ -1 +1 @@
{ "attr": { "targetEntity": "目标对象", "entity": "关联对象", "entityId": "关联对象Id", "action": "动作", "data": "数据", "filter": "条件", "extra": "其它", "iState": "状态" }, "action": { "abandon": "放弃", "apply": "应用" }, "v": { "iState": { "active": "活跃的", "abandoned": "放弃的", "applied": "应用的" } } }
{ "name": "更新", "attr": { "targetEntity": "目标对象", "entity": "关联对象", "entityId": "关联对象Id", "action": "动作", "data": "数据", "filter": "条件", "extra": "其它", "iState": "状态" }, "action": { "abandon": "放弃", "apply": "应用" }, "v": { "iState": { "active": "活跃的", "abandoned": "放弃的", "applied": "应用的" } } }

View File

@ -1 +1 @@
{ "attr": { "modi": "更新", "entity": "关联对象", "entityId": "关联对象id" } }
{ "name": "更新对象连接", "attr": { "modi": "更新", "entity": "关联对象", "entityId": "关联对象id" } }

View File

@ -1 +1 @@
{ "attr": { "channel": "消息渠道", "data": "消息数据", "messageSystem": "消息系统连接", "data1": "数据1", "data2": "数据2", "iState": "状态", "application": "关联应用", "templateId": "模板id" }, "action": { "succeed": "成功", "fail": "失败" }, "v": { "iState": { "sending": "发送中", "success": "发送成功", "failure": "发送失败" }, "channel": { "wechatPublic": "公众号", "jPush": "极光推送", "jim": "极光消息", "wechatMp": "小程序", "sms": "短信" } } }
{ "name": "通知", "attr": { "channel": "消息渠道", "data": "消息数据", "messageSystem": "消息系统连接", "data1": "数据1", "data2": "数据2", "iState": "状态", "application": "关联应用", "templateId": "模板id" }, "action": { "succeed": "成功", "fail": "失败" }, "v": { "iState": { "sending": "发送中", "success": "发送成功", "failure": "发送失败" }, "channel": { "wechatPublic": "公众号", "jPush": "极光推送", "jim": "极光消息", "wechatMp": "小程序", "sms": "短信" } } }

View File

@ -1 +1 @@
{ "attr": { "action": "动作", "data": "数据", "filter": "选择条件", "extra": "其它", "operator": "操作者" } }
{ "name": "操作", "attr": { "action": "动作", "data": "数据", "filter": "选择条件", "extra": "其它", "operator": "操作者" } }

View File

@ -1 +1 @@
{ "attr": { "oper": "操作", "entity": "关联对象", "entityId": "关联对象id" } }
{ "name": "操作对象连接", "attr": { "oper": "操作", "entity": "关联对象", "entityId": "关联对象id" } }

View File

@ -1 +1 @@
{ "attr": { "name": "名称", "description": "描述", "config": "设置", "style": "样式", "entity": "关联对象", "entityId": "关联对象id" } }
{ "name": "平台", "attr": { "name": "名称", "description": "描述", "config": "设置", "style": "样式", "entity": "关联对象", "entityId": "关联对象id" } }

View File

@ -1 +1 @@
{ "attr": { "name": "名称" }, "r": { "owner": "所有者" } }
{ "name": "角色", "attr": { "name": "名称" }, "r": { "owner": "所有者" } }

View File

@ -1 +1 @@
{ "attr": { "name": "名称", "entity": "对象名称", "entityId": "对象Id", "description": "描述", "config": "配置", "offset": "已同步素材位置" } }
{ "name": "订阅号", "attr": { "name": "名称", "entity": "对象名称", "entityId": "对象Id", "description": "描述", "config": "配置", "offset": "已同步素材位置" } }

View File

@ -1 +1 @@
{ "attr": { "name": "名称", "description": "描述", "config": "设置", "platform": "平台", "super": "超级系统", "folder": "代码目录名", "style": "样式", "entity": "关联对象", "entityId": "关联对象id" } }
{ "name": "系统", "attr": { "name": "名称", "description": "描述", "config": "设置", "platform": "平台", "super": "超级系统", "folder": "代码目录名", "style": "样式", "entity": "关联对象", "entityId": "关联对象id" } }

View File

@ -1 +1 @@
{ "attr": { "application": "应用", "entity": "关联对象", "entityId": "关联对象id", "user": "用户", "player": "扮演者", "env": "环境", "ableState": "状态" }, "action": { "enable": "激活", "disable": "禁用" }, "v": { "ableState": { "enabled": "使用中", "disabled": "已禁用" } } }
{ "name": "令牌", "attr": { "application": "应用", "entity": "关联对象", "entityId": "关联对象id", "user": "用户", "player": "扮演者", "env": "环境", "ableState": "状态" }, "action": { "enable": "激活", "disable": "禁用" }, "v": { "ableState": { "enabled": "使用中", "disabled": "已禁用" } } }

View File

@ -1 +1 @@
{ "attr": { "name": "姓名", "nickname": "昵称", "birth": "生日", "password": "密码", "passwordSha1": "sha1加密密码", "gender": "性别", "idCardType": "证件类型", "idNumber": "证件号码", "ref": "指向用户", "files": "相关文件", "userState": "用户状态", "idState": "身份验证状态", "codes": "微信分享二维码" }, "action": { "activate": "激活", "accept": "同意", "verify": "验证", "reject": "拒绝", "enable": "启用", "disable": "禁用", "mergeTo": "合并", "mergeFrom": "使合并" }, "v": { "userState": { "shadow": "未激活", "normal": "正常", "disabled": "禁用", "merged": "已被合并" }, "idState": { "unverified": "未验证", "verifying": "验证中", "verified": "已验证" }, "gender": { "male": "男", "female": "女" }, "idCardType": { "ID-Card": "身份证", "passport": "护照", "Mainland-passport": "港澳台通行证" } } }
{ "name": "用户", "attr": { "name": "姓名", "nickname": "昵称", "birth": "生日", "password": "密码", "passwordSha1": "sha1加密密码", "gender": "性别", "idCardType": "证件类型", "idNumber": "证件号码", "ref": "指向用户", "files": "相关文件", "userState": "用户状态", "idState": "身份验证状态", "codes": "微信分享二维码" }, "action": { "activate": "激活", "accept": "同意", "verify": "验证", "reject": "拒绝", "enable": "启用", "disable": "禁用", "mergeTo": "合并", "mergeFrom": "使合并" }, "v": { "userState": { "shadow": "未激活", "normal": "正常", "disabled": "禁用", "merged": "已被合并" }, "idState": { "unverified": "未验证", "verifying": "验证中", "verified": "已验证" }, "gender": { "male": "男", "female": "女" }, "idCardType": { "ID-Card": "身份证", "passport": "护照", "Mainland-passport": "港澳台通行证" } } }

View File

@ -1 +1 @@
{ "attr": { "relation": "关系", "entity": "关联对象", "entityId": "关联对象id", "type": "类型", "number": "次数", "confirmed": "已确认人数", "remark": "备注", "grantee": "领取人", "granter": "授权人", "codes": "微信码", "expired": "是否过期", "expiresAt": "过期时间", "redirectTo": "重定向页面", "qrCodeType": "二维码类型" }, "action": { "confirm": "确认" }, "v": { "type": { "grant": "授予", "transfer": "转交" }, "qrCodeType": { "webForWechatPublic": "网站引流到公众号", "wechatMpDomainUrl": "小程序url码", "wechatMpWxaCode": "小程序码", "wechatPublic": "公众号关注码", "wechatPublicForMp": "公众号回复小程序码" } } }
{ "name": "用户授权", "attr": { "relation": "关系", "entity": "关联对象", "entityId": "关联对象id", "type": "类型", "number": "次数", "confirmed": "已确认人数", "remark": "备注", "grantee": "领取人", "granter": "授权人", "codes": "微信码", "expired": "是否过期", "expiresAt": "过期时间", "redirectTo": "重定向页面", "qrCodeType": "二维码类型" }, "action": { "confirm": "确认" }, "v": { "type": { "grant": "授予", "transfer": "转交" }, "qrCodeType": { "webForWechatPublic": "网站引流到公众号", "wechatMpDomainUrl": "小程序url码", "wechatMpWxaCode": "小程序码", "wechatPublic": "公众号关注码", "wechatPublicForMp": "公众号回复小程序码" } } }

View File

@ -1 +1 @@
{ "attr": { "user": "用户", "system": "系统" } }
{ "name": "用户系统", "attr": { "user": "用户", "system": "系统" } }

View File

@ -1 +1 @@
{ "attr": { "wechatPublicTag": "tag", "user": "用户", "sync": "同步状态", "syncAt": "同步时间" } }
{ "name": "用户公众号Tag", "attr": { "wechatPublicTag": "tag", "user": "用户", "sync": "同步状态", "syncAt": "同步时间" } }

View File

@ -1 +1 @@
{ "attr": { "text": "tag名", "application": "关联应用", "wechatId": "微信端id", "sync": "同步状态", "syncAt": "同步时间" } }
{ "name": "公众号标签", "attr": { "text": "tag名", "application": "关联应用", "wechatId": "微信端id", "sync": "同步状态", "syncAt": "同步时间" } }

View File

@ -1 +1 @@
{ "attr": { "entity": "关联对象", "entityId": "关联对象id", "type": "类型", "allowShare": "允许分享", "tag": "tag", "ticket": "ticket", "url": "url", "permanent": "是否永久码", "buffer": "小程序码数据(动态)", "expired": "是否过期", "expiresAt": "过期时间", "application": "应用", "props": "属性" }, "v": { "type": { "webForWechatPublic": "网站引流到公众号", "wechatMpDomainUrl": "小程序url码", "wechatMpWxaCode": "小程序码", "wechatPublic": "公众号关注码", "wechatPublicForMp": "公众号回复小程序码" } } }
{ "name": "微信识别码", "attr": { "entity": "关联对象", "entityId": "关联对象id", "type": "类型", "allowShare": "允许分享", "tag": "tag", "ticket": "ticket", "url": "url", "permanent": "是否永久码", "buffer": "小程序码数据(动态)", "expired": "是否过期", "expiresAt": "过期时间", "application": "应用", "props": "属性" }, "v": { "type": { "webForWechatPublic": "网站引流到公众号", "wechatMpDomainUrl": "小程序url码", "wechatMpWxaCode": "小程序码", "wechatPublic": "公众号关注码", "wechatPublicForMp": "公众号回复小程序码" } } }

View File

@ -1 +1 @@
{ "attr": { "origin": "源", "openId": "openId", "unionId": "unionId", "sessionKey": "sessionKey", "accessToken": "accessToken", "refreshToken": "refreshToken", "atExpiredAt": "accessToken过期时间", "rtExpiredAt": "refreshToken过期时间", "scope": "accessToken域", "subscribed": "是否订阅", "subscribedAt": "订阅时间", "unsubscribedAt": "取关时间", "user": "用户", "tokens": "相关令牌", "application": "应用", "nickname": "昵称", "avatar": "头像" }, "v": { "origin": { "mp": "小程序", "public": "公众号", "web": "网站" } } }
{ "name": "微信用户", "attr": { "origin": "源", "openId": "openId", "unionId": "unionId", "sessionKey": "sessionKey", "accessToken": "accessToken", "refreshToken": "refreshToken", "atExpiredAt": "accessToken过期时间", "rtExpiredAt": "refreshToken过期时间", "scope": "accessToken域", "subscribed": "是否订阅", "subscribedAt": "订阅时间", "unsubscribedAt": "取关时间", "user": "用户", "tokens": "相关令牌", "application": "应用", "nickname": "昵称", "avatar": "头像" }, "v": { "origin": { "mp": "小程序", "public": "公众号", "web": "网站" } } }

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,8 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
onlyCaptcha: BooleanConstructor;
onlyPassword: BooleanConstructor;
eventLoggedIn: StringConstructor;
backUrl: StringConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,8 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, {
onlyCaptcha: BooleanConstructor;
onlyPassword: BooleanConstructor;
eventLoggedIn: StringConstructor;
callback: FunctionConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,5 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
showBack: BooleanConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,6 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, {
depth: NumberConstructor;
itemSelectedEvent: StringConstructor;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<false, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

View File

@ -1,3 +1,3 @@
/// <reference types="react" />
declare const _default: import("react").ComponentType<any>;
declare const _default: (props: import("oak-frontend-base").ReactComponentProps<true, import("oak-frontend-base").PropertyOption>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
export default _default;

Some files were not shown because too many files have changed in this diff Show More