@nocobase/client 2.0.0-alpha.36 → 2.0.0-alpha.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/flow/common/Liquid.d.ts +2 -0
- package/es/flow/components/code-editor/index.d.ts +1 -0
- package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
- package/es/flow/index.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
- package/es/index.mjs +3185 -3050
- package/lib/{index-C3fHjsMw-Ba94ryet.js → index-C3fHjsMw-Cpl5F3oQ.js} +217 -216
- package/lib/index.js +111 -110
- package/package.json +6 -6
|
@@ -22,6 +22,8 @@ export declare class LiquidEngine extends Liquid {
|
|
|
22
22
|
* @returns {Promise<string>} 渲染后的字符串
|
|
23
23
|
*/
|
|
24
24
|
render(template: any, context?: {}): Promise<any>;
|
|
25
|
+
isFieldUsed(field: any, paths: any): any;
|
|
26
|
+
enrichArrayFieldsSelective(obj: any, vars: any): void;
|
|
25
27
|
/**
|
|
26
28
|
* 合并步骤:获取变量 -> 构建 context -> 解析 -> 渲染
|
|
27
29
|
* @param {string} template Liquid 模板字符串
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import { FlowModel } from '@nocobase/flow-engine';
|
|
10
|
+
export declare const editMarkdownFlow: import("@nocobase/flow-engine").FlowDefinitionOptions<FlowModel<import("@nocobase/flow-engine").DefaultStructure>>;
|
package/es/flow/index.d.ts
CHANGED
|
@@ -17,4 +17,5 @@ export * from './FlowModelRepository';
|
|
|
17
17
|
export * from './FlowPage';
|
|
18
18
|
export * from './models';
|
|
19
19
|
export { openViewFlow } from './flows/openViewFlow';
|
|
20
|
+
export { editMarkdownFlow } from './flows/editMarkdownFlow';
|
|
20
21
|
export { TextAreaWithContextSelector } from './components/TextAreaWithContextSelector';
|