edit-pdf 0.0.3 → 0.0.4

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ npm install edit-pdf
13
13
  ### Basic Usage
14
14
 
15
15
  ```tsx
16
- import PdfEditor from 'edit-pdf';
16
+ import { PdfEditor } from 'edit-pdf';
17
17
  import { useState } from 'react';
18
18
 
19
19
  function App() {
@@ -30,7 +30,7 @@ export default App;
30
30
  ### Advanced Usage with Export Control
31
31
 
32
32
  ```tsx
33
- import PdfEditor from 'edit-pdf';
33
+ import { PdfEditor } from 'edit-pdf';
34
34
  import { useState } from 'react';
35
35
 
36
36
  function App() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edit-pdf",
3
3
  "private": false,
4
- "version": "0.0.3",
4
+ "version": "0.0.4",
5
5
  "type": "module",
6
6
  "main": "./dist/pdf-editor.umd.js",
7
7
  "module": "./dist/pdf-editor.js",