You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/guide/dependencies.md
-2
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,6 @@ features.
11
11
|[core-js](https://github.com/zloirock/core-js)| The MIT License | Denis Pushkarev |
12
12
|[jStat](https://github.com/jstat/jstat)| The MIT License | jStat |
13
13
|[tiny-emitter](https://github.com/scottcorgan/tiny-emitter)| The MIT License | Scott Corgan |
14
-
|[unorm](https://github.com/walling/unorm)| The MIT License | Matsuza, Bjarke Walling |
15
-
16
14
17
15
The _bessel_ and _jStat_ projects are distributed with the code repository at the path `src/interpreter/plugin/3rdparty` and bundled with the code package.
To get all precedents of a cell or a range (all precedent nodes reachable from the cell node or the range node), use the [`getCellPrecedents()`](../api/classes/hyperformula.html#getcellprecedents) method to implement a [Breadth-first search (BFS)](https://en.wikipedia.org/wiki/Breadth-first_search) algorithm:
To get all dependents of a cell or a range (all dependent nodes reachable from the cell node or the range node), use the [`getCellDependents()`](../api/classes/hyperformula.html#getcelldependents) method to implement a [Breadth-first search (BFS)](https://en.wikipedia.org/wiki/Breadth-first_search) algorithm:
Copy file name to clipboardexpand all lines: docs/guide/integration-with-vue.md
+9-5
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,14 @@ For more details, see the [client-side installation](client-side-installation.md
6
6
7
7
## Demo
8
8
9
+
::: tip
10
+
This demo uses the [Vue 3](https://v3.vuejs.org/) framework. If you are looking for an example using Vue 2, check out the [code on GitHub](https://github.com/handsontable/hyperformula-demos/tree/2.5.x/vue-demo).
0 commit comments