@ebay/nice-dag-react 1.0.5 → 1.0.7

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 +1 -1
  2. package/package.json +21 -3
package/README.md CHANGED
@@ -6,6 +6,6 @@
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 applications, 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`. 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.
10
10
 
11
11
  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.5",
3
+ "version": "1.0.7",
4
4
  "license": "MIT",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -81,12 +81,30 @@
81
81
  "glob-parent": "6.0.1"
82
82
  },
83
83
  "dependencies": {
84
- "@ebay/nice-dag-core": "^1.0.5"
84
+ "@ebay/nice-dag-core": "^1.0.7"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "react": ">16.8.0",
88
88
  "react-dom": ">16.8.0"
89
89
  },
90
+ "tags": [
91
+ "dag",
92
+ "flow",
93
+ "editor",
94
+ "dom",
95
+ "dagre",
96
+ "dnd"
97
+ ],
98
+ "keywords": [
99
+ "react",
100
+ "react-hook",
101
+ "dag",
102
+ "flow",
103
+ "editor",
104
+ "dom",
105
+ "dagre",
106
+ "dnd"
107
+ ],
90
108
  "scripts": {
91
109
  "build": "rm -rf lib && pnpm build:esm && pnpm build:cjs",
92
110
  "build:esm": "tsc",
@@ -97,5 +115,5 @@
97
115
  "test": "jest",
98
116
  "release": "pnpm build && pnpm version patch && yarn publish"
99
117
  },
100
- "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/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 applications, 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"
118
+ "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/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"
101
119
  }