@ebay/nice-dag-react 1.0.4 → 1.0.5

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 +5 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  # nice-dag-react
2
+ [![NPM](https://img.shields.io/npm/v/@ebay/nice-dag-react.svg)](https://www.npmjs.com/package/@ebay/nice-dag-react)
3
+ [![Downloads](https://img.shields.io/npm/dm/@ebay/nice-dag-react.svg)](https://www.npmjs.com/package/@ebay/nice-dag-react)
4
+ [![Demo](https://img.shields.io/badge/demo-link-orange.svg)](https://opensource.ebay.com/nice-dag/examples/index.html)
5
+ [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/eBay/nice-dag/blob/main/LICENSE.md)
2
6
 
3
7
  ## What is nice-dag-react?
4
8
 
5
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.
6
10
 
7
- For more details, please you can visit [Doc Portal](https://opensource.ebay.com/nice-dag/docs/api-ref/useNiceDag).
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.4",
3
+ "version": "1.0.5",
4
4
  "license": "MIT",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -81,7 +81,7 @@
81
81
  "glob-parent": "6.0.1"
82
82
  },
83
83
  "dependencies": {
84
- "@ebay/nice-dag-core": "^1.0.4"
84
+ "@ebay/nice-dag-core": "^1.0.5"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "react": ">16.8.0",
@@ -97,5 +97,5 @@
97
97
  "test": "jest",
98
98
  "release": "pnpm build && pnpm version patch && yarn publish"
99
99
  },
100
- "readme": "# nice-dag-react\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)."
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"
101
101
  }