draftify-react 0.1.5 → 0.1.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.
package/index.d.ts CHANGED
@@ -185,8 +185,8 @@ interface ReaderProps {
185
185
  blocksData: DraftifyBlock[];
186
186
  }
187
187
 
188
- declare function Reader(props: ReaderProps): JSX.Element;
188
+ declare function DraftifyBlocksReader(props: ReaderProps): JSX.Element;
189
189
 
190
190
  export default DraftifyReact;
191
191
 
192
- export { DraftifyReact, Reader };
192
+ export { DraftifyReact, DraftifyBlocksReader };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "draftify-react",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "main": "dist/draftify-react.umd.js",
6
6
  "module": "dist/draftify-react.es.js",
@@ -45,5 +45,9 @@
45
45
  "framer-motion": "^12.23.24",
46
46
  "react": ">=18",
47
47
  "react-dom": ">=18"
48
+ },
49
+ "repository": "https://github.com/Bernard-Kuria/draftify-react.git",
50
+ "publishConfig": {
51
+ "registry": "https://registry.npmjs.org/"
48
52
  }
49
53
  }