Skip to content

Commit 16a8857

Browse files
JackLianliujuping
authored andcommitted
fix: fix misused doc urls
1 parent fc5fbc6 commit 16a8857

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

packages/editor-core/src/config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ export interface EngineOptions {
131131
/**
132132
* @todo designMode 无法映射到文档渲染模块
133133
*
134-
* @see https://yuque.antfin.com/ali-lowcode/docs/hk2ogo#designMode
135-
*
136134
* 设计模式,live 模式将会实时展示变量值,默认值:'design'
137135
*/
138136
designMode?: 'design' | 'live';

packages/renderer-core/src/types/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,6 @@ export interface IBaseRendererProps {
148148
__host?: BuiltinSimulatorHost;
149149
__container?: any;
150150
config?: Record<string, any>;
151-
/**
152-
* @see https://yuque.antfin.com/ali-lowcode/docs/hk2ogo#designMode
153-
*/
154151
designMode?: 'live' | 'design';
155152
className?: string;
156153
style?: CSSProperties;

packages/types/src/schema.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,23 +136,23 @@ export interface ContainerSchema extends NodeSchema {
136136

137137
/**
138138
* 页面容器
139-
* @see https://yuque.antfin-inc.com/mo/spec/spec-low-code-building-schema#XMeF5
139+
* @see https://lowcode-engine.cn/lowcode
140140
*/
141141
export interface PageSchema extends ContainerSchema {
142142
componentName: 'Page';
143143
}
144144

145145
/**
146146
* 低代码业务组件容器
147-
* @see https://yuque.antfin-inc.com/mo/spec/spec-low-code-building-schema#XMeF5
147+
* @see https://lowcode-engine.cn/lowcode
148148
*/
149149
export interface ComponentSchema extends ContainerSchema {
150150
componentName: 'Component';
151151
}
152152

153153
/**
154154
* 区块容器
155-
* @see https://yuque.antfin-inc.com/mo/spec/spec-low-code-building-schema#XMeF5
155+
* @see https://lowcode-engine.cn/lowcode
156156
*/
157157
export interface BlockSchema extends ContainerSchema {
158158
componentName: 'Block';

packages/types/src/value-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface JSExpression {
2727

2828
/**
2929
* 事件函数类型
30-
* @see https://yuque.antfin-inc.com/mo/spec/spec-low-code-building-schema#feHTW
30+
* @see https://lowcode-engine.cn/lowcode
3131
*
3232
* 保留与原组件属性、生命周期( React / 小程序)一致的输入参数,并给所有事件函数 binding 统一一致的上下文(当前组件所在容器结构的 this 对象)
3333
*/

0 commit comments

Comments
 (0)