@tumaet/apollon 5.1.0 → 5.1.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 +2 -2
- package/dist/assets/style.css +1 -1
- package/dist/exportStyles--jC4D4Tn.js +5 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1974 -1924
- package/package.json +2 -2
- package/dist/exportStyles-BGzJJ5bi.js +0 -5
package/README.md
CHANGED
|
@@ -168,11 +168,11 @@ export class DiagramEditorComponent {
|
|
|
168
168
|
`yjs` and `y-protocols` are required peers, but on the CDN path esm.sh resolves and serves them from the import URL automatically — there is nothing extra to load. (With a bundler you install the peers yourself.)
|
|
169
169
|
|
|
170
170
|
```html
|
|
171
|
-
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@5.1.
|
|
171
|
+
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@5.1.1/style.css" />
|
|
172
172
|
<div id="apollon" style="width: 100%; height: 600px"></div>
|
|
173
173
|
|
|
174
174
|
<script type="module">
|
|
175
|
-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.1.
|
|
175
|
+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.1.1"
|
|
176
176
|
|
|
177
177
|
const saved = localStorage.getItem("diagram")
|
|
178
178
|
const editor = new ApollonEditor(document.getElementById("apollon"), {
|