chore: update link

This commit is contained in:
dragooncjw 2025-02-27 18:08:47 +08:00
parent 875d90fdec
commit 6e9a83ec2d
80 changed files with 112 additions and 112 deletions

View File

@ -17,7 +17,7 @@ our name.
## 📖 Documentation ## 📖 Documentation
- [Official Documentation](https://flowgram.ai) - [Official Documentation](https://flowgram.ai/)
- [Contributing Guidelines](https://github.com/bytedance/flowgram.ai/blob/main/CONTRIBUTING.md) - [Contributing Guidelines](https://github.com/bytedance/flowgram.ai/blob/main/CONTRIBUTING.md)
## 📦 Packages ## 📦 Packages
@ -32,7 +32,7 @@ our name.
<div> <div>
<p> <p>
<a href="https://flowgram.aiexamples/fixed-layout/fixed-feature-overview.html"> <a href="https://flowgram.ai/examples/fixed-layout/fixed-feature-overview.html">
Fixed Layout Fixed Layout
</a> </a>
</p> </p>
@ -45,7 +45,7 @@ our name.
</div> </div>
<div> <div>
<p> <p>
<a href="https://flowgram.aiexamples/free-layout/free-feature-overview.html"> <a href="https://flowgram.ai/examples/free-layout/free-feature-overview.html">
Free Layout Free Layout
</a> </a>
</p> </p>

View File

@ -2,7 +2,7 @@
Flow document (fixed layout), stores all node data of the process Flow document (fixed layout), stores all node data of the process
[> API Detail](https://flowgram.aiauto-docs/document/classes/FlowDocument.html) [> API Detail](https://flowgram.ai/auto-docs/document/classes/FlowDocument.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/fixed-layout-editor' import { useClientContext } from '@flowgram.ai/fixed-layout-editor'

View File

@ -2,7 +2,7 @@
Node entity, `WorkflowNodeEntity` is the alias for the node used for free layout nodes, the node entity uses the [ECS](/flowgram.ai/guide/concepts/ECS.html) architecture, is `Entity` Node entity, `WorkflowNodeEntity` is the alias for the node used for free layout nodes, the node entity uses the [ECS](/flowgram.ai/guide/concepts/ECS.html) architecture, is `Entity`
[> API Detail](https://flowgram.aiauto-docs/document/classes/FlowNodeEntity-1.html) [> API Detail](https://flowgram.ai/auto-docs/document/classes/FlowNodeEntity-1.html)
## Properties ## Properties
@ -23,8 +23,8 @@ Node entity, `WorkflowNodeEntity` is the alias for the node used for free layout
- parent: `FlowNodeEntity | undefined` Get the parent node - parent: `FlowNodeEntity | undefined` Get the parent node
- originParent: `FlowNodeEntity | undefined` Get the original parent node, this is used to find the entire virtual branch for the first node of the fixed layout branch (orderIcon) - originParent: `FlowNodeEntity | undefined` Get the original parent node, this is used to find the entire virtual branch for the first node of the fixed layout branch (orderIcon)
- allChildren: `FlowNodeEntity[]` Get all child nodes, not including collapsed child nodes - allChildren: `FlowNodeEntity[]` Get all child nodes, not including collapsed child nodes
- transform: [FlowNodeTransformData](https://flowgram.aiauto-docs/document/classes/FlowNodeTransformData.html) Get the node's transform matrix data - transform: [FlowNodeTransformData](https://flowgram.ai/auto-docs/document/classes/FlowNodeTransformData.html) Get the node's transform matrix data
- renderData: [FlowNodeRenderData](https://flowgram.aiauto-docs/document/classes/FlowNodeRenderData.html) Get the node's render data, including render status - renderData: [FlowNodeRenderData](https://flowgram.ai/auto-docs/document/classes/FlowNodeRenderData.html) Get the node's render data, including render status
## Methods ## Methods

View File

@ -2,7 +2,7 @@
Canvas instance Canvas instance
[> API Detail](https://flowgram.aiauto-docs/core/classes/Playground.html) [> API Detail](https://flowgram.ai/auto-docs/core/classes/Playground.html)
```ts pure ```ts pure
const ctx = useClientContext() const ctx = useClientContext()
@ -14,7 +14,7 @@ console.log(ctx.playground)
Canvas configuration, provides zoom, scroll, etc. Canvas configuration, provides zoom, scroll, etc.
[> API Detail](https://flowgram.aiauto-docs/core/classes/PlaygroundConfigEntity.html) [> API Detail](https://flowgram.ai/auto-docs/core/classes/PlaygroundConfigEntity.html)
### Properties ### Properties
- zoom `number` Current zoom ratio - zoom `number` Current zoom ratio

View File

@ -2,7 +2,7 @@
Free layout document data, inherited from [FlowDocument](/flowgram.ai/api/core/flow-document.html) Free layout document data, inherited from [FlowDocument](/flowgram.ai/api/core/flow-document.html)
[> API Detail](https://flowgram.aiauto-docs/free-layout-core/classes/WorkflowDocument.html) [> API Detail](https://flowgram.ai/auto-docs/free-layout-core/classes/WorkflowDocument.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/free-layout-editor' import { useClientContext } from '@flowgram.ai/free-layout-editor'

View File

@ -2,5 +2,5 @@
Free layout line entity Free layout line entity
[> API Detail](https://flowgram.aiauto-docs/free-layout-core/classes/WorkflowLineEntity.html) [> API Detail](https://flowgram.ai/auto-docs/free-layout-core/classes/WorkflowLineEntity.html)

View File

@ -2,7 +2,7 @@
Free layout line management, currently attached to the free layout document Free layout line management, currently attached to the free layout document
[> API Detail](https://flowgram.aiauto-docs/free-layout-core/classes/WorkflowLinesManager.html) [> API Detail](https://flowgram.ai/auto-docs/free-layout-core/classes/WorkflowLinesManager.html)
``` ```
import { useClientContext } from '@flowgram.ai/free-layout-editor' import { useClientContext } from '@flowgram.ai/free-layout-editor'

View File

@ -4,7 +4,7 @@ Provides access to the canvas context within React. Currently, there are some di
## Fixed Layout ## Fixed Layout
- Return: [FixedLayoutPluginContext](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/FixedLayoutPluginContext.html) - Return: [FixedLayoutPluginContext](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/FixedLayoutPluginContext.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/fixed-layout-editor' import { useClientContext } from '@flowgram.ai/fixed-layout-editor'
@ -13,7 +13,7 @@ const ctx = useClientContext()
## Free Layout ## Free Layout
- Return: [FreeLayoutPluginContext](https://flowgram.aiauto-docs/free-layout-editor/interfaces/FreeLayoutPluginContext.html) - Return: [FreeLayoutPluginContext](https://flowgram.ai/auto-docs/free-layout-editor/interfaces/FreeLayoutPluginContext.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/free-layout-editor' import { useClientContext } from '@flowgram.ai/free-layout-editor'

View File

@ -4,7 +4,7 @@ Provides methods related to node rendering, and the form returned is equivalent
## Fixed Layout ## Fixed Layout
- Return: [NodeRenderReturnType](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/NodeRenderReturnType.html) - Return: [NodeRenderReturnType](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/NodeRenderReturnType.html)
```tsx pure ```tsx pure
@ -51,7 +51,7 @@ export const BaseNode = ({ node }: { node: FlowNodeEntity }) => {
## Free Layout ## Free Layout
- Return: [NodeRenderReturnType](https://flowgram.aiauto-docs/free-layout-core/interfaces/NodeRenderReturnType.html) - Return: [NodeRenderReturnType](https://flowgram.ai/auto-docs/free-layout-core/interfaces/NodeRenderReturnType.html)
```tsx pure ```tsx pure
import { WorkflowNodeRenderer, useNodeRender } from '@flowgram.ai/free-layout-editor'; import { WorkflowNodeRenderer, useNodeRender } from '@flowgram.ai/free-layout-editor';

View File

@ -4,7 +4,7 @@ Canvas tool methods
## Fixed Layout ## Fixed Layout
- Return: [PlaygroundTools](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/PlaygroundTools.html) - Return: [PlaygroundTools](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/PlaygroundTools.html)
```tsx pure ```tsx pure
import { useEffect, useState } from 'react' import { useEffect, useState } from 'react'
import { usePlaygroundTools, useClientContext } from '@flowgram.ai/fixed-layout-editor'; import { usePlaygroundTools, useClientContext } from '@flowgram.ai/fixed-layout-editor';
@ -38,7 +38,7 @@ export function Tools() {
## Free Layout ## Free Layout
- Return: [PlaygroundTools](https://flowgram.aiauto-docs/free-layout-editor/interfaces/PlaygroundTools.html) - Return: [PlaygroundTools](https://flowgram.ai/auto-docs/free-layout-editor/interfaces/PlaygroundTools.html)
```tsx pure ```tsx pure
import { usePlaygroundTools, useClientContext } from '@flowgram.ai/free-layout-editor'; import { usePlaygroundTools, useClientContext } from '@flowgram.ai/free-layout-editor';

View File

@ -2,4 +2,4 @@
Clipboard Service Clipboard Service
[> API Detail](https://flowgram.aiauto-docs/core/interfaces/ClipboardService.html) [> API Detail](https://flowgram.ai/auto-docs/core/interfaces/ClipboardService.html)

View File

@ -2,7 +2,7 @@
Command Service, needs to be used with [Shortcuts](/flowgram.ai/guide/advanced/interactive/shortcuts.html) Command Service, needs to be used with [Shortcuts](/flowgram.ai/guide/advanced/interactive/shortcuts.html)
[> API Detail](https://flowgram.aiauto-docs/command/interfaces/CommandService.html) [> API Detail](https://flowgram.ai/auto-docs/command/interfaces/CommandService.html)
```Usage ```Usage

View File

@ -2,7 +2,7 @@
Node operation service, currently used for fixed layout, free layout can currently be operated directly through WorkflowDocument, and will be abstracted out as operation in the future Node operation service, currently used for fixed layout, free layout can currently be operated directly through WorkflowDocument, and will be abstracted out as operation in the future
[> API Detail](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/FlowOperationService.html) [> API Detail](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/FlowOperationService.html)
```typescript pure ```typescript pure
const operationService = useService<FlowOperationService>(FlowOperationService) const operationService = useService<FlowOperationService>(FlowOperationService)

View File

@ -1,6 +1,6 @@
## HistoryService ## HistoryService
[> API Detail](https://flowgram.aiauto-docs/fixed-history-plugin/classes/HistoryService.html) [> API Detail](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/HistoryService.html)
## Redo/Undo ## Redo/Undo

View File

@ -2,7 +2,7 @@
Used to control selected nodes Used to control selected nodes
[> API Detail](https://flowgram.aiauto-docs/core/classes/SelectionService.html) [> API Detail](https://flowgram.ai/auto-docs/core/classes/SelectionService.html)
## Usage ## Usage
```tsx pure ```tsx pure

View File

@ -2,7 +2,7 @@
Get the form capabilities of the node, needs to be enabled node engine Get the form capabilities of the node, needs to be enabled node engine
[> API Detail](https://flowgram.aiauto-docs/editor/functions/getNodeForm.html) [> API Detail](https://flowgram.ai/auto-docs/editor/functions/getNodeForm.html)
## Usage ## Usage

View File

@ -407,15 +407,15 @@ export const HistoryList = () => {
``` ```
## 3. API List ## 3. API List
### 3.1. [OperationMeta](https://flowgram.aiauto-docs/fixed-history-plugin/interfaces/OperationMeta.html) ### 3.1. [OperationMeta](https://flowgram.ai/auto-docs/fixed-history-plugin/interfaces/OperationMeta.html)
OperationMeta, used to define an operation OperationMeta, used to define an operation
### 3.2. [Operation](https://flowgram.aiauto-docs/fixed-history-plugin/interfaces/Operation.html) ### 3.2. [Operation](https://flowgram.ai/auto-docs/fixed-history-plugin/interfaces/Operation.html)
Operation data, associated with OperationMeta through type Operation data, associated with OperationMeta through type
### 3.3. [OperationService](https://flowgram.aiauto-docs/fixed-history-plugin/classes/OperationService.html) ### 3.3. [OperationService](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/OperationService.html)
[onApply](https://flowgram.aiauto-docs/fixed-history-plugin/classes/OperationService.html#onapply) [onApply](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/OperationService.html#onapply)
Use onApply to listen to a triggered operation Use onApply to listen to a triggered operation
```tsx pure ```tsx pure
@ -425,14 +425,14 @@ useService(OperationService).onApply((op: Operation) => {
}) })
``` ```
### 3.4. [HistoryService](https://flowgram.aiauto-docs/fixed-history-plugin/classes/HistoryService.html) ### 3.4. [HistoryService](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/HistoryService.html)
The core API of the History module exposed Service The core API of the History module exposed Service
### 3.5. [UndoRedoService](https://flowgram.aiauto-docs/fixed-history-plugin/classes/UndoRedoService.html) ### 3.5. [UndoRedoService](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/UndoRedoService.html)
The service that manages the UndoRedo stack The service that manages the UndoRedo stack
### 3.6. [HistoryStack](https://flowgram.aiauto-docs/fixed-history-plugin/classes/HistoryStack.html) ### 3.6. [HistoryStack](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/HistoryStack.html)
History stack, listen to all push undo redo operations, and record them in the stack History stack, listen to all push undo redo operations, and record them in the stack
### 3.7. [HistoryDatabase](https://flowgram.aiauto-docs/history-storage/classes/HistoryDatabase.html) ### 3.7. [HistoryDatabase](https://flowgram.ai/auto-docs/history-storage/classes/HistoryDatabase.html)
Persistence database operations Persistence database operations

View File

@ -85,7 +85,7 @@ flowDocument.onNodeCreate(({ node }) => {
``` ```
More usage, see: [Class: FlowNodeVariableData](https://flowgram.aiauto-docs/editor/classes/FlowNodeVariableData.html) More usage, see: [Class: FlowNodeVariableData](https://flowgram.ai/auto-docs/editor/classes/FlowNodeVariableData.html)
### Set Output Variables through Form Effect ### Set Output Variables through Form Effect

View File

@ -17,12 +17,12 @@ hero:
alt: Logo alt: Logo
features: features:
- title: Coze - title: Coze
details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;height&#58 180px;" src="https://flowgram.airef-coze.png"/></div> details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;height&#58 180px;" src="https://flowgram.ai/ref-coze.png"/></div>
icon: 🏃🏻‍♀️ icon: 🏃🏻‍♀️
- title: Feishu Low-Code Platform Workflow - title: Feishu Low-Code Platform Workflow
details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;height&#58 180px;" src="https://flowgram.airef-apaas.png"/></div> details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;height&#58 180px;" src="https://flowgram.ai/ref-apaas.png"/></div>
icon: 📦 icon: 📦
- title: Feishu Bitable - title: Feishu Bitable
details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;height&#58 180px;" src="https://flowgram.airef-bitable.png"/></div> details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;height&#58 180px;" src="https://flowgram.ai/ref-bitable.png"/></div>
icon: 🎨 icon: 🎨
--- ---

View File

@ -2,7 +2,7 @@
流程数据文档 (固定布局), 存储流程的所有节点数据 流程数据文档 (固定布局), 存储流程的所有节点数据
[> API Detail](https://flowgram.aiauto-docs/document/classes/FlowDocument.html) [> API Detail](https://flowgram.ai/auto-docs/document/classes/FlowDocument.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/fixed-layout-editor' import { useClientContext } from '@flowgram.ai/fixed-layout-editor'

View File

@ -2,7 +2,7 @@
节点实体,`WorkflowNodeEntity` 为节点别名用于自由布局节点, 节点实体采用 [ECS](/flowgram.ai/guide/concepts/ECS.html) 架构, 为 `Entity` 节点实体,`WorkflowNodeEntity` 为节点别名用于自由布局节点, 节点实体采用 [ECS](/flowgram.ai/guide/concepts/ECS.html) 架构, 为 `Entity`
[> API Detail](https://flowgram.aiauto-docs/document/classes/FlowNodeEntity-1.html) [> API Detail](https://flowgram.ai/auto-docs/document/classes/FlowNodeEntity-1.html)
## Properties ## Properties
@ -23,8 +23,8 @@
- parent: `FlowNodeEntity | undefined` 获取父节点 - parent: `FlowNodeEntity | undefined` 获取父节点
- originParent: `FlowNodeEntity | undefined` 获取原始父节点, 这个用于固定布局分支的第一个节点(orderIcon) 找到整个虚拟分支 - originParent: `FlowNodeEntity | undefined` 获取原始父节点, 这个用于固定布局分支的第一个节点(orderIcon) 找到整个虚拟分支
- allChildren: `FlowNodeEntity[]` 获取所有子节点, 不包含折叠的子节点 - allChildren: `FlowNodeEntity[]` 获取所有子节点, 不包含折叠的子节点
- transform: [FlowNodeTransformData](https://flowgram.aiauto-docs/document/classes/FlowNodeTransformData.html) 获取节点的 transform 矩阵数据 - transform: [FlowNodeTransformData](https://flowgram.ai/auto-docs/document/classes/FlowNodeTransformData.html) 获取节点的 transform 矩阵数据
- renderData: [FlowNodeRenderData](https://flowgram.aiauto-docs/document/classes/FlowNodeRenderData.html) 获取节点的渲染数据, 包含渲染状态等 - renderData: [FlowNodeRenderData](https://flowgram.ai/auto-docs/document/classes/FlowNodeRenderData.html) 获取节点的渲染数据, 包含渲染状态等
## Methods ## Methods

View File

@ -2,7 +2,7 @@
画布实例 画布实例
[> API Detail](https://flowgram.aiauto-docs/core/classes/Playground.html) [> API Detail](https://flowgram.ai/auto-docs/core/classes/Playground.html)
```ts pure ```ts pure
const ctx = useClientContext() const ctx = useClientContext()
@ -14,7 +14,7 @@ console.log(ctx.playground)
画布配置, 提供 zoom、scroll 等状态 画布配置, 提供 zoom、scroll 等状态
[> API Detail](https://flowgram.aiauto-docs/core/classes/PlaygroundConfigEntity.html) [> API Detail](https://flowgram.ai/auto-docs/core/classes/PlaygroundConfigEntity.html)
### Properties ### Properties
- zoom `number` 当前缩放比例 - zoom `number` 当前缩放比例

View File

@ -2,7 +2,7 @@
自由布局文档数据,继承自 [FlowDocument](/flowgram.ai/api/core/flow-document.html) 自由布局文档数据,继承自 [FlowDocument](/flowgram.ai/api/core/flow-document.html)
[> API Detail](https://flowgram.aiauto-docs/free-layout-core/classes/WorkflowDocument.html) [> API Detail](https://flowgram.ai/auto-docs/free-layout-core/classes/WorkflowDocument.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/free-layout-editor' import { useClientContext } from '@flowgram.ai/free-layout-editor'

View File

@ -2,5 +2,5 @@
自由布局线条实体 自由布局线条实体
[> API Detail](https://flowgram.aiauto-docs/free-layout-core/classes/WorkflowLineEntity.html) [> API Detail](https://flowgram.ai/auto-docs/free-layout-core/classes/WorkflowLineEntity.html)

View File

@ -2,7 +2,7 @@
自由布局线条管理, 目前挂在自由布局 document 下边 自由布局线条管理, 目前挂在自由布局 document 下边
[> API Detail](https://flowgram.aiauto-docs/free-layout-core/classes/WorkflowLinesManager.html) [> API Detail](https://flowgram.ai/auto-docs/free-layout-core/classes/WorkflowLinesManager.html)
``` ```
import { useClientContext } from '@flowgram.ai/free-layout-editor' import { useClientContext } from '@flowgram.ai/free-layout-editor'

View File

@ -4,7 +4,7 @@
## 固定布局 ## 固定布局
- Return: [FixedLayoutPluginContext](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/FixedLayoutPluginContext.html) - Return: [FixedLayoutPluginContext](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/FixedLayoutPluginContext.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/fixed-layout-editor' import { useClientContext } from '@flowgram.ai/fixed-layout-editor'
@ -20,7 +20,7 @@ console.log(ctx.get(MyService)) // 获取任意的 IOC 模块,详细见 自定
## 自由布局 ## 自由布局
- Return: [FreeLayoutPluginContext](https://flowgram.aiauto-docs/free-layout-editor/interfaces/FreeLayoutPluginContext.html) - Return: [FreeLayoutPluginContext](https://flowgram.ai/auto-docs/free-layout-editor/interfaces/FreeLayoutPluginContext.html)
```ts pure ```ts pure
import { useClientContext } from '@flowgram.ai/free-layout-editor' import { useClientContext } from '@flowgram.ai/free-layout-editor'

View File

@ -4,7 +4,7 @@
## 固定布局 ## 固定布局
- Return: [NodeRenderReturnType](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/NodeRenderReturnType.html) - Return: [NodeRenderReturnType](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/NodeRenderReturnType.html)
```tsx pure ```tsx pure
@ -51,7 +51,7 @@ export const BaseNode = ({ node }: { node: FlowNodeEntity }) => {
## 自由布局 ## 自由布局
- Return: [NodeRenderReturnType](https://flowgram.aiauto-docs/free-layout-core/interfaces/NodeRenderReturnType.html) - Return: [NodeRenderReturnType](https://flowgram.ai/auto-docs/free-layout-core/interfaces/NodeRenderReturnType.html)
```tsx pure ```tsx pure
import { WorkflowNodeRenderer, useNodeRender } from '@flowgram.ai/free-layout-editor'; import { WorkflowNodeRenderer, useNodeRender } from '@flowgram.ai/free-layout-editor';

View File

@ -4,7 +4,7 @@
## 固定布局 ## 固定布局
- Return: [PlaygroundTools](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/PlaygroundTools.html) - Return: [PlaygroundTools](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/PlaygroundTools.html)
```tsx pure ```tsx pure
import { useEffect, useState } from 'react' import { useEffect, useState } from 'react'
import { usePlaygroundTools, useClientContext } from '@flowgram.ai/fixed-layout-editor'; import { usePlaygroundTools, useClientContext } from '@flowgram.ai/fixed-layout-editor';
@ -38,7 +38,7 @@ export function Tools() {
## 自由布局 ## 自由布局
- Return: [PlaygroundTools](https://flowgram.aiauto-docs/free-layout-editor/interfaces/PlaygroundTools.html) - Return: [PlaygroundTools](https://flowgram.ai/auto-docs/free-layout-editor/interfaces/PlaygroundTools.html)
```tsx pure ```tsx pure
import { usePlaygroundTools, useClientContext } from '@flowgram.ai/free-layout-editor'; import { usePlaygroundTools, useClientContext } from '@flowgram.ai/free-layout-editor';

View File

@ -2,4 +2,4 @@
剪贴板服务 剪贴板服务
[> API Detail](https://flowgram.aiauto-docs/core/interfaces/ClipboardService.html) [> API Detail](https://flowgram.ai/auto-docs/core/interfaces/ClipboardService.html)

View File

@ -2,7 +2,7 @@
指令服务,需要和 [Shortcuts](/flowgram.ai/guide/advanced/interactive/shortcuts.html) 一起使用 指令服务,需要和 [Shortcuts](/flowgram.ai/guide/advanced/interactive/shortcuts.html) 一起使用
[> API Detail](https://flowgram.aiauto-docs/command/interfaces/CommandService.html) [> API Detail](https://flowgram.ai/auto-docs/command/interfaces/CommandService.html)
```Usage ```Usage

View File

@ -2,7 +2,7 @@
节点操作服务, 目前用于固定布局,自由布局现阶段可通过 WorkflowDocument 直接操作, 后续也会抽象出 operation 节点操作服务, 目前用于固定布局,自由布局现阶段可通过 WorkflowDocument 直接操作, 后续也会抽象出 operation
[> API Detail](https://flowgram.aiauto-docs/fixed-layout-editor/interfaces/FlowOperationService.html) [> API Detail](https://flowgram.ai/auto-docs/fixed-layout-editor/interfaces/FlowOperationService.html)
```typescript pure ```typescript pure
const operationService = useService<FlowOperationService>(FlowOperationService) const operationService = useService<FlowOperationService>(FlowOperationService)

View File

@ -1,6 +1,6 @@
## HistoryService ## HistoryService
[> API Detail](https://flowgram.aiauto-docs/fixed-history-plugin/classes/HistoryService.html) [> API Detail](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/HistoryService.html)
## Redo/Undo ## Redo/Undo

View File

@ -2,7 +2,7 @@
用于控制选择的节点 用于控制选择的节点
[> API Detail](https://flowgram.aiauto-docs/core/classes/SelectionService.html) [> API Detail](https://flowgram.ai/auto-docs/core/classes/SelectionService.html)
## Usage ## Usage
```tsx pure ```tsx pure

View File

@ -2,7 +2,7 @@
获取节点的表单能力,需要开启 节点引擎才能使用 获取节点的表单能力,需要开启 节点引擎才能使用
[> API Detail](https://flowgram.aiauto-docs/editor/functions/getNodeForm.html) [> API Detail](https://flowgram.ai/auto-docs/editor/functions/getNodeForm.html)
## Usage ## Usage

View File

@ -407,15 +407,15 @@ export const HistoryList = () => {
``` ```
## 3. API 列表 ## 3. API 列表
### 3.1. [OperationMeta](https://flowgram.aiauto-docs/fixed-history-plugin/interfaces/OperationMeta.html) ### 3.1. [OperationMeta](https://flowgram.ai/auto-docs/fixed-history-plugin/interfaces/OperationMeta.html)
操作元数据,用以定义一个操作 操作元数据,用以定义一个操作
### 3.2. [Operation](https://flowgram.aiauto-docs/fixed-history-plugin/interfaces/Operation.html) ### 3.2. [Operation](https://flowgram.ai/auto-docs/fixed-history-plugin/interfaces/Operation.html)
操作数据,通过 type 和 OperationMeta 关联 操作数据,通过 type 和 OperationMeta 关联
### 3.3. [OperationService](https://flowgram.aiauto-docs/fixed-history-plugin/classes/OperationService.html) ### 3.3. [OperationService](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/OperationService.html)
[onApply](https://flowgram.aiauto-docs/fixed-history-plugin/classes/OperationService.html#onapply) [onApply](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/OperationService.html#onapply)
想监听某个触发的操作可以使用onApply 想监听某个触发的操作可以使用onApply
```tsx pure ```tsx pure
@ -425,14 +425,14 @@ useService(OperationService).onApply((op: Operation) => {
}) })
``` ```
### 3.4. [HistoryService](https://flowgram.aiauto-docs/fixed-history-plugin/classes/HistoryService.html) ### 3.4. [HistoryService](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/HistoryService.html)
History 模块核心 API 暴露的Service History 模块核心 API 暴露的Service
### 3.5. [UndoRedoService](https://flowgram.aiauto-docs/fixed-history-plugin/classes/UndoRedoService.html) ### 3.5. [UndoRedoService](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/UndoRedoService.html)
管理 UndoRedo 栈的服务 管理 UndoRedo 栈的服务
### 3.6. [HistoryStack](https://flowgram.aiauto-docs/fixed-history-plugin/classes/HistoryStack.html) ### 3.6. [HistoryStack](https://flowgram.ai/auto-docs/fixed-history-plugin/classes/HistoryStack.html)
历史栈,监听所有 push undo redo 操作,并记录到栈里面 历史栈,监听所有 push undo redo 操作,并记录到栈里面
### 3.7. [HistoryDatabase](https://flowgram.aiauto-docs/history-storage/classes/HistoryDatabase.html) ### 3.7. [HistoryDatabase](https://flowgram.ai/auto-docs/history-storage/classes/HistoryDatabase.html)
持久化数据库操作 持久化数据库操作

View File

@ -85,7 +85,7 @@ flowDocument.onNodeCreate(({ node }) => {
``` ```
更多用法,详见:[Class: FlowNodeVariableData](https://flowgram.aiauto-docs/editor/classes/FlowNodeVariableData.html) 更多用法,详见:[Class: FlowNodeVariableData](https://flowgram.ai/auto-docs/editor/classes/FlowNodeVariableData.html)
### 通过表单副作用设置输出变量 ### 通过表单副作用设置输出变量

View File

@ -17,12 +17,12 @@ hero:
alt: Logo alt: Logo
features: features:
- title: 扣子 - title: 扣子
details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;" src="https://flowgram.airef-coze.png"/></div> details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;" src="https://flowgram.ai/ref-coze.png"/></div>
icon: 🏃🏻‍♀️ icon: 🏃🏻‍♀️
- title: 飞书低代码平台工作流 - title: 飞书低代码平台工作流
details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;" src="https://flowgram.airef-apaas.png"/></div> details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;" src="https://flowgram.ai/ref-apaas.png"/></div>
icon: 📦 icon: 📦
- title: 飞书多维表格 - title: 飞书多维表格
details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;" src="https://flowgram.airef-bitable.png"/></div> details: <div class="rspress-doc" style="height&#58 180px; min-height&#58 0px"><img class="medium-zoom-image" style="border-radius&#58 8px;" src="https://flowgram.ai/ref-bitable.png"/></div>
icon: 🎨 icon: 🎨
--- ---

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/core", "name": "@flowgram.ai/core",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -6,7 +6,7 @@
"flow", "flow",
"engine" "engine"
], ],
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/fixed-layout-core", "name": "@flowgram.ai/fixed-layout-core",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-layout-core", "name": "@flowgram.ai/free-layout-core",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/renderer", "name": "@flowgram.ai/renderer",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/editor", "name": "@flowgram.ai/editor",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/fixed-layout-editor", "name": "@flowgram.ai/fixed-layout-editor",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-layout-editor", "name": "@flowgram.ai/free-layout-editor",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/playground-react", "name": "@flowgram.ai/playground-react",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/command", "name": "@flowgram.ai/command",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/history-storage", "name": "@flowgram.ai/history-storage",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/history", "name": "@flowgram.ai/history",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/i18n", "name": "@flowgram.ai/i18n",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/reactive", "name": "@flowgram.ai/reactive",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/utils", "name": "@flowgram.ai/utils",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/fixed-semi-materials", "name": "@flowgram.ai/fixed-semi-materials",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -6,7 +6,7 @@
"flow", "flow",
"engine" "engine"
], ],
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -6,7 +6,7 @@
"flow", "flow",
"engine" "engine"
], ],
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -6,7 +6,7 @@
"flow", "flow",
"engine" "engine"
], ],
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/background-plugin", "name": "@flowgram.ai/background-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/fixed-drag-plugin", "name": "@flowgram.ai/fixed-drag-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/fixed-history-plugin", "name": "@flowgram.ai/fixed-history-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/fixed-reactor-plugin", "name": "@flowgram.ai/fixed-reactor-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-auto-layout-plugin", "name": "@flowgram.ai/free-auto-layout-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-history-plugin", "name": "@flowgram.ai/free-history-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-hover-plugin", "name": "@flowgram.ai/free-hover-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-lines-plugin", "name": "@flowgram.ai/free-lines-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-node-panel-plugin", "name": "@flowgram.ai/free-node-panel-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-snap-plugin", "name": "@flowgram.ai/free-snap-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/free-stack-plugin", "name": "@flowgram.ai/free-stack-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/group-plugin", "name": "@flowgram.ai/group-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/history-node-plugin", "name": "@flowgram.ai/history-node-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/i18n-plugin", "name": "@flowgram.ai/i18n-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/materials-plugin", "name": "@flowgram.ai/materials-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/minimap-plugin", "name": "@flowgram.ai/minimap-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/node-core-plugin", "name": "@flowgram.ai/node-core-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/node-variable-plugin", "name": "@flowgram.ai/node-variable-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/redux-devtool-plugin", "name": "@flowgram.ai/redux-devtool-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/select-box-plugin", "name": "@flowgram.ai/select-box-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/shortcuts-plugin", "name": "@flowgram.ai/shortcuts-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/variable-plugin", "name": "@flowgram.ai/variable-plugin",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -8,7 +8,7 @@
"scope", "scope",
"engine" "engine"
], ],
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@flowgram.ai/variable-layout", "name": "@flowgram.ai/variable-layout",
"version": "0.1.0", "version": "0.1.0",
"homepage": "https://flowgram.ai", "homepage": "https://flowgram.ai/",
"repository": "https://github.com/bytedance/flowgram.ai", "repository": "https://github.com/bytedance/flowgram.ai",
"license": "MIT", "license": "MIT",
"exports": { "exports": {