@verdocs/web-sdk-react 4.1.3 → 4.1.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.
- package/README.md +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -80,3 +80,15 @@ as small as possible. To support Barlow in your own app, including the following
|
|
|
80
80
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
81
81
|
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&display=swap" rel="stylesheet">
|
|
82
82
|
```
|
|
83
|
+
|
|
84
|
+
## compomnents.ts fixups
|
|
85
|
+
|
|
86
|
+
Replace
|
|
87
|
+
|
|
88
|
+
`import type { JSX } from '@verdocs/web-sdk/components';`
|
|
89
|
+
|
|
90
|
+
with
|
|
91
|
+
|
|
92
|
+
`import type { JSX } from '@verdocs/web-sdk/dist/types';`
|
|
93
|
+
|
|
94
|
+
Replace-all `@verdocs/web-sdk/components` with `@verdocs/web-sdk/dist/components`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/web-sdk-react",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Verdocs Web SDK for React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"rollup": "rollup -c"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@verdocs/web-sdk": "^4.1.
|
|
21
|
+
"@verdocs/web-sdk": "^4.1.4"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": "^18.3.1",
|