next-flow-interface 0.26.20 → 0.26.22
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/README.md +23 -1
- package/index.d.ts +1 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center" style="margin-top: 2rem">Next Flow Plugin Development</h1>
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<span>Interface Data Definition Document for Next Flow Plugin Development.</span>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Using npm
|
|
11
|
+
npm install next-flow-interface --save-dev
|
|
12
|
+
|
|
13
|
+
# Using yarn
|
|
14
|
+
yarn add next-flow-interface --dev
|
|
15
|
+
|
|
16
|
+
# Using pnpm
|
|
17
|
+
pnpm add next-flow-interface --save-dev
|
|
18
|
+
|
|
19
|
+
# Using bun
|
|
20
|
+
bun add next-flow-interface --dev
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Document pending completion ...
|
package/index.d.ts
CHANGED
|
@@ -917,26 +917,6 @@ export declare interface ContextMenuCreateOptions {
|
|
|
917
917
|
* 该服务提供了一个集中管理系统,用于创建、显示和控制右键菜单。
|
|
918
918
|
* 采用单例模式,确保整个应用程序中只存在一个实例。
|
|
919
919
|
*
|
|
920
|
-
* @example
|
|
921
|
-
* 基础用法:
|
|
922
|
-
* ```typescript
|
|
923
|
-
* const menuController = ContextMenuService.instance.create({
|
|
924
|
-
* x: 100,
|
|
925
|
-
* y: 200,
|
|
926
|
-
* lines: [
|
|
927
|
-
* {
|
|
928
|
-
* text: '复制',
|
|
929
|
-
* onClick: () => console.log('Copy clicked')
|
|
930
|
-
* },
|
|
931
|
-
* {
|
|
932
|
-
* text: '粘贴',
|
|
933
|
-
* onClick: () => console.log('Paste clicked')
|
|
934
|
-
* }
|
|
935
|
-
* ]
|
|
936
|
-
* })
|
|
937
|
-
* menuController.show()
|
|
938
|
-
* ```
|
|
939
|
-
*
|
|
940
920
|
* @public
|
|
941
921
|
*/
|
|
942
922
|
export declare class ContextMenuService {
|
|
@@ -4278,6 +4258,7 @@ export declare interface ResourcePreviewProps extends DivProps {
|
|
|
4278
4258
|
|
|
4279
4259
|
/**
|
|
4280
4260
|
* ResourceService
|
|
4261
|
+
*
|
|
4281
4262
|
* @public
|
|
4282
4263
|
*/
|
|
4283
4264
|
export declare class ResourceService {
|