@ebay/nice-dag-react 1.0.11 → 1.0.12
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 +17 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,6 +6,22 @@
|
|
|
6
6
|
|
|
7
7
|
## What is nice-dag-react?
|
|
8
8
|
|
|
9
|
-
`nice-dag-react` is a wrapper of DOM operations given by
|
|
9
|
+
`nice-dag-react` is a wrapper of DOM operations given by [nice-dag-core](https://www.npmjs.com/package/@ebay/nice-dag-core). In terms of **React** based **DAG Diagram** or **Flow Editor**, you can simply use this customized **react hook** which is given by [nice-dag-react](https://www.npmjs.com/package/@ebay/nice-dag-react) module.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
If your project is using yarn, you can run the command.
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
yarn add @ebay/nice-dag-core
|
|
17
|
+
yarn add @ebay/nice-dag-react
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
If your projet is using npm, you can run the command.
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
npm install @ebay/nice-dag-core
|
|
24
|
+
npm install @ebay/nice-dag-react
|
|
25
|
+
```
|
|
10
26
|
|
|
11
27
|
For more details, please you can visit [Doc Portal](https://opensource.ebay.com/nice-dag/docs/api-ref/useNiceDag).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebay/nice-dag-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.cjs",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"vite-plugin-dts": "^1.6.6"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@ebay/nice-dag-core": "^1.0.
|
|
91
|
+
"@ebay/nice-dag-core": "^1.0.11"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
94
|
"react": ">16.8.0",
|
|
@@ -122,5 +122,5 @@
|
|
|
122
122
|
"test": "jest",
|
|
123
123
|
"release": "pnpm build && pnpm version patch && yarn publish"
|
|
124
124
|
},
|
|
125
|
-
"readme": "# nice-dag-react\n[](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[](https://opensource.ebay.com/nice-dag/examples/react/index.html)\n[](https://github.com/eBay/nice-dag/blob/main/LICENSE.md)\n\n## What is nice-dag-react?\n\n`nice-dag-react` is a wrapper of DOM operations given by
|
|
125
|
+
"readme": "# nice-dag-react\n[](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[](https://opensource.ebay.com/nice-dag/examples/react/index.html)\n[](https://github.com/eBay/nice-dag/blob/main/LICENSE.md)\n\n## What is nice-dag-react?\n\n`nice-dag-react` is a wrapper of DOM operations given by [nice-dag-core](https://www.npmjs.com/package/@ebay/nice-dag-core). In terms of **React** based **DAG Diagram** or **Flow Editor**, you can simply use this customized **react hook** which is given by [nice-dag-react](https://www.npmjs.com/package/@ebay/nice-dag-react) module. \n\n## Installation\n\nIf your project is using yarn, you can run the command.\n\n```\nyarn add @ebay/nice-dag-core\nyarn add @ebay/nice-dag-react\n```\n\nIf your projet is using npm, you can run the command.\n\n```\nnpm install @ebay/nice-dag-core\nnpm install @ebay/nice-dag-react\n```\n\nFor more details, please you can visit [Doc Portal](https://opensource.ebay.com/nice-dag/docs/api-ref/useNiceDag).\n"
|
|
126
126
|
}
|