@ebay/nice-dag-react 1.0.11 → 1.0.13

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.
Files changed (2) hide show
  1. package/README.md +17 -1
  2. 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 `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` module.
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.11",
3
+ "version": "1.0.13",
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.10"
91
+ "@ebay/nice-dag-core": "^1.0.12"
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[![NPM](https://img.shields.io/npm/v/@ebay/nice-dag-react.svg)](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[![Downloads](https://img.shields.io/npm/dm/@ebay/nice-dag-react.svg)](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[![Demo](https://img.shields.io/badge/demo-link-orange.svg)](https://opensource.ebay.com/nice-dag/examples/react/index.html)\n[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](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`. 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` module. \n\nFor more details, please you can visit [Doc Portal](https://opensource.ebay.com/nice-dag/docs/api-ref/useNiceDag).\n"
125
+ "readme": "# nice-dag-react\n[![NPM](https://img.shields.io/npm/v/@ebay/nice-dag-react.svg)](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[![Downloads](https://img.shields.io/npm/dm/@ebay/nice-dag-react.svg)](https://www.npmjs.com/package/@ebay/nice-dag-react)\n[![Demo](https://img.shields.io/badge/demo-link-orange.svg)](https://opensource.ebay.com/nice-dag/examples/react/index.html)\n[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](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
  }