Skip to content

Commit

Permalink
Deploying to gh-pages from @ 93d2b9e 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Jul 18, 2024
1 parent ee69486 commit e9e4c68
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
Binary file added img/preview-feature.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/preview-patch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,9 @@ <h2 id="introduction/releases">Releases <a href="#introduction/releases"><span c
<li>
3.30
<ul>
<li>
<a target="_blank" href="https://github.com/cytoscape/cytoscape.js/issues?q&#x3D;milestone%3A3.30.1+is%3Aclosed">3.30.1</a>
</li>
<li>
<a target="_blank" href="https://github.com/cytoscape/cytoscape.js/issues?q&#x3D;milestone%3A3.30.0+is%3Aclosed">3.30.0</a>
</li>
Expand Down Expand Up @@ -2070,7 +2073,7 @@ <h2 id="getting-started/including-cytoscape.js">Including Cytoscape.js <a href="
<td>For debugging with globals or <code>require()</code>.</td>
</tr>
<tr>
<td><code>cytoscape.esm.min.js</code></td>
<td><code>cytoscape.esm.min.mjs</code></td>
<td>yes</td>
<td><a href="https://nodejs.org/api/esm.html#introduction">ESM</a> <small>(ECMAScript, uses <code>import</code> / <code>export</code>)</small></td>
<td>For use with modern <code>import</code>/<code>export</code>, i.e. <code>import cytoscape from &#39;cytoscape&#39;</code>.</td>
Expand All @@ -2082,7 +2085,7 @@ <h2 id="getting-started/including-cytoscape.js">Including Cytoscape.js <a href="
<td>Intended to be consumed automatically by <a href="https://en.wikipedia.org/wiki/Node.js">Node.js</a> or a bundler like <a href="https://webpack.js.org/">Webpack</a> via <code>require(&#39;cytoscape&#39;)</code>.</td>
</tr>
<tr>
<td><code>cytoscape.esm.js</code></td>
<td><code>cytoscape.esm.mjs</code></td>
<td>no</td>
<td><a href="https://nodejs.org/api/esm.html#introduction">ESM</a></td>
<td>Intended to be consumed automatically by <a href="https://en.wikipedia.org/wiki/Node.js">Node.js</a> or a bundler like <a href="https://webpack.js.org/">Webpack</a> via <code>import cytoscape from &#39;cytoscape&#39;</code>. This file may alternatively be used for manually debugging ESM builds or pages that use ESM.</td>
Expand Down
2 changes: 1 addition & 1 deletion js/build/cytoscape.min.js → js/cytoscape.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions md/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ The available files are available under [`cytoscape/dist/`](https://github.com/c
| --- | --- | --- | --- |
| `cytoscape.min.js` | yes | [UMD] <small>(Universal Module Definition)</small> | For use with globals or `require()`. |
| `cytoscape.umd.js` | no | [UMD] | For debugging with globals or `require()`. |
| `cytoscape.esm.min.js` | yes | [ESM] <small>(ECMAScript, uses `import` / `export`)</small> | For use with modern `import`/`export`, i.e. `import cytoscape from 'cytoscape'`. |
| `cytoscape.esm.min.mjs` | yes | [ESM] <small>(ECMAScript, uses `import` / `export`)</small> | For use with modern `import`/`export`, i.e. `import cytoscape from 'cytoscape'`. |
| `cytoscape.cjs.js` | no | [CJS] <small>(CommonJS, used by [Node.js])</small> | Intended to be consumed automatically by [Node.js] or a bundler like [Webpack] via `require('cytoscape')`. |
| `cytoscape.esm.js` | no | [ESM] | Intended to be consumed automatically by [Node.js] or a bundler like [Webpack] via `import cytoscape from 'cytoscape'`. This file may alternatively be used for manually debugging ESM builds or pages that use ESM. |
| `cytoscape.esm.mjs` | no | [ESM] | Intended to be consumed automatically by [Node.js] or a bundler like [Webpack] via `import cytoscape from 'cytoscape'`. This file may alternatively be used for manually debugging ESM builds or pages that use ESM. |

<span class="important-indicator"></span> Note that Cytoscape.js uses the dimensions of your HTML DOM element container for layouts and rendering at initialisation. Thus, it is very important to place your CSS stylesheets in the `<head>` before any Cytoscape.js-related code. Otherwise, dimensions may be sporadically reported incorrectly, resulting in undesired behaviour.

Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@
"3.29.1",
"3.29.2",
"3.29.3",
"3.30.0"
"3.30.0",
"3.30.1"
]
}

0 comments on commit e9e4c68

Please sign in to comment.