feat: 归档L03与L09审批发布能力
- 新增统一审批中心与审批管理页面,支持流程配置、审批详情与角色/用户审批对象 - 接入聊天助手、知识库、工作流的发布与删除审批,并补齐发布态校验与快照展示
This commit is contained in:
@@ -139,6 +139,18 @@ export class Tinyflow {
|
||||
return true;
|
||||
}
|
||||
|
||||
async fitView(options?: { duration?: number; padding?: number }) {
|
||||
const flow = this._getFlowInstance();
|
||||
if (!flow) {
|
||||
return false;
|
||||
}
|
||||
await flow.fitView({
|
||||
duration: options?.duration ?? 220,
|
||||
padding: options?.padding ?? 0.2,
|
||||
});
|
||||
return true;
|
||||
}
|
||||
|
||||
setTheme(theme: TinyflowTheme) {
|
||||
this.options.theme = theme;
|
||||
if (this.tinyflowEl) {
|
||||
|
||||
Reference in New Issue
Block a user