增加了logout
This commit is contained in:
parent
4a2ec48e7e
commit
887c33a610
|
|
@ -24,6 +24,7 @@ declare type GeneralAspectDict<ED extends EntityDict, Cxt extends BackendRuntime
|
||||||
code: string;
|
code: string;
|
||||||
env: WebEnv;
|
env: WebEnv;
|
||||||
}, context: Cxt) => Promise<string>;
|
}, context: Cxt) => Promise<string>;
|
||||||
|
logout: ({}: {}, context: Cxt) => Promise<void>;
|
||||||
loginWechatMp: ({ code, env, }: {
|
loginWechatMp: ({ code, env, }: {
|
||||||
code: string;
|
code: string;
|
||||||
env: WechatMpEnv;
|
env: WechatMpEnv;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { loginByMobile, loginWechat, loginWechatMp, syncUserInfoWechatMp, sendCaptcha, switchTo, refreshWechatPublicUserInfo, getWechatMpUserPhoneNumber } from './token';
|
import { loginByMobile, loginWechat, loginWechatMp, syncUserInfoWechatMp, sendCaptcha, switchTo, refreshWechatPublicUserInfo, getWechatMpUserPhoneNumber, logout } from './token';
|
||||||
import { getUploadInfo } from './extraFile';
|
import { getUploadInfo } from './extraFile';
|
||||||
import { getApplication } from './application';
|
import { getApplication } from './application';
|
||||||
import { updateConfig, updateApplicationConfig } from './config';
|
import { updateConfig, updateApplicationConfig } from './config';
|
||||||
|
|
@ -17,5 +17,6 @@ declare const aspectDict: {
|
||||||
updateConfig: typeof updateConfig;
|
updateConfig: typeof updateConfig;
|
||||||
updateApplicationConfig: typeof updateApplicationConfig;
|
updateApplicationConfig: typeof updateApplicationConfig;
|
||||||
getWechatMpUserPhoneNumber: typeof getWechatMpUserPhoneNumber;
|
getWechatMpUserPhoneNumber: typeof getWechatMpUserPhoneNumber;
|
||||||
|
logout: typeof logout;
|
||||||
};
|
};
|
||||||
export default aspectDict;
|
export default aspectDict;
|
||||||
|
|
|
||||||
|
|
@ -19,5 +19,6 @@ var aspectDict = {
|
||||||
updateConfig: config_1.updateConfig,
|
updateConfig: config_1.updateConfig,
|
||||||
updateApplicationConfig: config_1.updateApplicationConfig,
|
updateApplicationConfig: config_1.updateApplicationConfig,
|
||||||
getWechatMpUserPhoneNumber: token_1.getWechatMpUserPhoneNumber,
|
getWechatMpUserPhoneNumber: token_1.getWechatMpUserPhoneNumber,
|
||||||
|
logout: token_1.logout,
|
||||||
};
|
};
|
||||||
exports.default = aspectDict;
|
exports.default = aspectDict;
|
||||||
|
|
|
||||||
|
|
@ -51,3 +51,4 @@ export declare function getWechatMpUserPhoneNumber<ED extends EntityDict, Cxt ex
|
||||||
code: string;
|
code: string;
|
||||||
env: WechatMpEnv;
|
env: WechatMpEnv;
|
||||||
}, context: Cxt): Promise<string>;
|
}, context: Cxt): Promise<string>;
|
||||||
|
export declare function logout<ED extends EntityDict, Cxt extends BackendRuntimeContext<ED>>({}: {}, context: Cxt): Promise<void>;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getWechatMpUserPhoneNumber = exports.switchTo = exports.sendCaptcha = exports.syncUserInfoWechatMp = exports.loginWechatMp = exports.loginWechat = exports.refreshWechatPublicUserInfo = exports.loginByMobile = void 0;
|
exports.logout = exports.getWechatMpUserPhoneNumber = exports.switchTo = exports.sendCaptcha = exports.syncUserInfoWechatMp = exports.loginWechatMp = exports.loginWechat = exports.refreshWechatPublicUserInfo = exports.loginByMobile = void 0;
|
||||||
var tslib_1 = require("tslib");
|
var tslib_1 = require("tslib");
|
||||||
var uuid_1 = require("oak-domain/lib/utils/uuid");
|
var uuid_1 = require("oak-domain/lib/utils/uuid");
|
||||||
var oak_external_sdk_1 = require("oak-external-sdk");
|
var oak_external_sdk_1 = require("oak-external-sdk");
|
||||||
|
|
@ -1370,3 +1370,32 @@ function getWechatMpUserPhoneNumber(_a, context) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.getWechatMpUserPhoneNumber = getWechatMpUserPhoneNumber;
|
exports.getWechatMpUserPhoneNumber = getWechatMpUserPhoneNumber;
|
||||||
|
function logout(_a, context) {
|
||||||
|
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
||||||
|
var tokenId, _b, _c, _d;
|
||||||
|
var _e;
|
||||||
|
return tslib_1.__generator(this, function (_f) {
|
||||||
|
switch (_f.label) {
|
||||||
|
case 0:
|
||||||
|
tokenId = context.getTokenValue();
|
||||||
|
if (!tokenId) return [3 /*break*/, 3];
|
||||||
|
_c = (_b = context).operate;
|
||||||
|
_d = ['token'];
|
||||||
|
_e = {};
|
||||||
|
return [4 /*yield*/, (0, uuid_1.generateNewIdAsync)()];
|
||||||
|
case 1: return [4 /*yield*/, _c.apply(_b, _d.concat([(_e.id = _f.sent(),
|
||||||
|
_e.action = 'disable',
|
||||||
|
_e.data = {},
|
||||||
|
_e.filter = {
|
||||||
|
id: tokenId,
|
||||||
|
},
|
||||||
|
_e), { dontCollect: true }]))];
|
||||||
|
case 2:
|
||||||
|
_f.sent();
|
||||||
|
_f.label = 3;
|
||||||
|
case 3: return [2 /*return*/];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
exports.logout = logout;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import './index.less';
|
import './index.less';
|
||||||
declare const Empty: () => JSX.Element;
|
declare const Empty: () => JSX.Element;
|
||||||
export default Empty;
|
export default Empty;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import './index.less';
|
import './index.less';
|
||||||
declare const Empty: () => JSX.Element;
|
declare const Empty: () => JSX.Element;
|
||||||
export default Empty;
|
export default Empty;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { AppType, WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../general-app-domain/Application/Schema';
|
import { AppType, WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../general-app-domain/Application/Schema';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebConfig } from '../../../../general-app-domain/Application/Schema';
|
import { WebConfig } from '../../../../general-app-domain/Application/Schema';
|
||||||
export default function Web(props: {
|
export default function Web(props: {
|
||||||
config: WebConfig;
|
config: WebConfig;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WechatMpConfig } from '../../../../general-app-domain/Application/Schema';
|
import { WechatMpConfig } from '../../../../general-app-domain/Application/Schema';
|
||||||
export default function WechatMp(props: {
|
export default function WechatMp(props: {
|
||||||
config: WechatMpConfig;
|
config: WechatMpConfig;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WechatPublicConfig } from '../../../../general-app-domain/Application/Schema';
|
import { WechatPublicConfig } from '../../../../general-app-domain/Application/Schema';
|
||||||
export default function WechatPublic(props: {
|
export default function WechatPublic(props: {
|
||||||
isService?: boolean;
|
isService?: boolean;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Style as StyleType } from '../../../types/Style';
|
import { Style as StyleType } from '../../../types/Style';
|
||||||
declare type StyleProps = {
|
declare type StyleProps = {
|
||||||
value?: StyleType | null;
|
value?: StyleType | null;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
export default function Account(props: {
|
export default function Account(props: {
|
||||||
account: Required<Config>['Account'];
|
account: Required<Config>['Account'];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
export default function Cos(props: {
|
export default function Cos(props: {
|
||||||
cos: Required<Config>['Cos'];
|
cos: Required<Config>['Cos'];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
export default function Cos(props: {
|
export default function Cos(props: {
|
||||||
live: Required<Config>['Live'];
|
live: Required<Config>['Live'];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
export default function Cos(props: {
|
export default function Cos(props: {
|
||||||
map: Required<Config>['Map'];
|
map: Required<Config>['Map'];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
export default function Sms(props: {
|
export default function Sms(props: {
|
||||||
sms: Required<Config>['Sms'];
|
sms: Required<Config>['Sms'];
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../types/Config';
|
import { Config } from '../../../types/Config';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'extraFile', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'extraFile', true, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(): JSX.Element;
|
export default function render(): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { UploadFile } from 'antd';
|
import { UploadFile } from 'antd';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from "oak-frontend-base";
|
import { WebComponentProps } from "oak-frontend-base";
|
||||||
import { EntityDict } from "../../../general-app-domain";
|
import { EntityDict } from "../../../general-app-domain";
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'address', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'address', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../general-app-domain';
|
import { EntityDict } from '../../general-app-domain';
|
||||||
import './web.less';
|
import './web.less';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {}, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {}, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { MessageProps } from 'oak-frontend-base/lib/types/Message';
|
import { MessageProps } from 'oak-frontend-base/lib/types/Message';
|
||||||
export default function render(props: {
|
export default function render(props: {
|
||||||
data: {
|
data: {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from "oak-frontend-base";
|
import { WebComponentProps } from "oak-frontend-base";
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'messageTypeTemplateId', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'messageTypeTemplateId', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { AvatarSize } from 'antd/es/avatar/SizeContext';
|
import { AvatarSize } from 'antd/es/avatar/SizeContext';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'token', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'token', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'token', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'token', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
||||||
|
|
|
||||||
|
|
@ -138,10 +138,15 @@ var Token = /** @class */ (function (_super) {
|
||||||
Token.prototype.logout = function () {
|
Token.prototype.logout = function () {
|
||||||
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
||||||
return tslib_1.__generator(this, function (_a) {
|
return tslib_1.__generator(this, function (_a) {
|
||||||
|
switch (_a.label) {
|
||||||
|
case 0: return [4 /*yield*/, this.cache.exec('logout', {})];
|
||||||
|
case 1:
|
||||||
|
_a.sent();
|
||||||
this.tokenValue = undefined;
|
this.tokenValue = undefined;
|
||||||
this.storage.remove('token:token');
|
this.storage.remove('token:token');
|
||||||
this.publish();
|
this.publish();
|
||||||
return [2 /*return*/];
|
return [2 /*return*/];
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'address', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'address', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'address', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'address', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { AppType, WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../../general-app-domain/Application/Schema';
|
import { AppType, WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../../general-app-domain/Application/Schema';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../general-app-domain/Application/Schema';
|
import { WebConfig, WechatPublicConfig, WechatMpConfig } from '../../../general-app-domain/Application/Schema';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'application', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'application', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'application', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'application', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from './../../../general-app-domain';
|
import { EntityDict } from './../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'article', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'article', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'article', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'article', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'article', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'article', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import '@wangeditor/editor/dist/css/style.css';
|
import '@wangeditor/editor/dist/css/style.css';
|
||||||
import { EntityDict } from './../../../general-app-domain';
|
import { EntityDict } from './../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'domain', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'domain', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'system', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'system', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'domain', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'domain', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../general-app-domain';
|
import { EntityDict } from '../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'token', true, {}, {}>): JSX.Element;
|
export default function Render(props: WebComponentProps<EntityDict, 'token', true, {}, {}>): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../general-app-domain';
|
import { EntityDict } from '../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'message', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'message', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'mobile', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'mobile', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'mobile', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'mobile', true, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function Render(): JSX.Element;
|
export default function Render(): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function Render(): JSX.Element;
|
export default function Render(): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'area', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'area', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { Config } from '../../../types/Config';
|
import { Config } from '../../../types/Config';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'platform', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'platform', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'platform', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'platform', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../general-app-domain';
|
import { EntityDict } from '../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function Render(): JSX.Element;
|
export default function Render(): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WechatPublicConfig } from '../../../../general-app-domain/Application/Schema';
|
import { WechatPublicConfig } from '../../../../general-app-domain/Application/Schema';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WechatPublicConfig } from '../../../general-app-domain/Application/Schema';
|
import { WechatPublicConfig } from '../../../general-app-domain/Application/Schema';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'subscription', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'subscription', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'subscription', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'subscription', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
import { Config } from '../../../../types/Config';
|
import { Config } from '../../../../types/Config';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { Config } from '../../../types/Config';
|
import { Config } from '../../../types/Config';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'system', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'system', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'system', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'system', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'token', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'token', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
declare type DataProps = {
|
declare type DataProps = {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'user', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'user', true, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(this: any): JSX.Element;
|
export default function render(this: any): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(): JSX.Element;
|
export default function render(): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function Render(props: any): JSX.Element;
|
export default function Render(props: any): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'token', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', true, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', true, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', true, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(this: any): JSX.Element;
|
export default function render(this: any): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(this: any): JSX.Element;
|
export default function render(this: any): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'mobile', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'mobile', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(this: any): JSX.Element;
|
export default function render(this: any): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', false, {
|
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../../../general-app-domain';
|
import { EntityDict } from '../../../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
/// <reference types="react" />
|
||||||
export default function render(this: any): JSX.Element;
|
export default function render(this: any): JSX.Element;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../../general-app-domain';
|
import { EntityDict } from '../../../../general-app-domain';
|
||||||
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { QrCodeType } from '../../../types/Config';
|
import { QrCodeType } from '../../../types/Config';
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
/// <reference types="react" />
|
||||||
import { WebComponentProps } from 'oak-frontend-base';
|
import { WebComponentProps } from 'oak-frontend-base';
|
||||||
import { EntityDict } from '../../../general-app-domain';
|
import { EntityDict } from '../../../general-app-domain';
|
||||||
import { QrCodeType } from '../../../types/Config';
|
import { QrCodeType } from '../../../types/Config';
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue