@open-file-viewer/core 0.1.2 → 0.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 +2 -1
- package/dist/index.cjs +508 -181
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +508 -181
- package/dist/index.js.map +1 -1
- package/dist/style.css +452 -55
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,11 +90,12 @@ Import the stylesheet once in your app:
|
|
|
90
90
|
import "@open-file-viewer/core/style.css";
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
-
React and
|
|
93
|
+
React, Vue and Svelte adapters are available as separate packages:
|
|
94
94
|
|
|
95
95
|
```bash
|
|
96
96
|
npm install @open-file-viewer/react
|
|
97
97
|
npm install @open-file-viewer/vue
|
|
98
|
+
npm install @open-file-viewer/svelte
|
|
98
99
|
```
|
|
99
100
|
|
|
100
101
|
## Toolbar Customization
|