@celldl/viewer 0.20260730.1 → 0.20260731.1
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 +4 -1
- package/dist/CellDLViewer.css +1 -1
- package/dist/CellDLViewer.es.js +2 -3
- package/dist/CellDLViewer.es.js.map +1 -1
- package/dist/WrappedViewer-cgZteVYv.js +12036 -0
- package/dist/WrappedViewer-cgZteVYv.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -8
- package/dist/CellDLViewer-CyF3SVNn.js +0 -15562
- package/dist/CellDLViewer-CyF3SVNn.js.map +0 -1
package/README.md
CHANGED
|
@@ -37,6 +37,10 @@ createApp(App).mount('#app');
|
|
|
37
37
|
|
|
38
38
|
- **App.vue:**
|
|
39
39
|
|
|
40
|
+
> **Note:**
|
|
41
|
+
> No styles, including defining a width and height, are applied to the CellDLViewer component, as this is expected to be provided by parent component(s). If the component has zero width or height an error is logged and no content is shown.
|
|
42
|
+
|
|
43
|
+
|
|
40
44
|
```vue
|
|
41
45
|
<template>
|
|
42
46
|
<CellDLViewer
|
|
@@ -50,7 +54,6 @@ createApp(App).mount('#app');
|
|
|
50
54
|
|
|
51
55
|
<script setup lang="ts">
|
|
52
56
|
import * as vue from 'vue';
|
|
53
|
-
import * as vueusecore from '@vueuse/core';
|
|
54
57
|
|
|
55
58
|
import '@celldl/viewer/style.css';
|
|
56
59
|
|