@iebh/tera-fy 1.0.8 → 1.0.10
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 +9 -4
- package/api.md +445 -431
- package/dist/terafy.js +2 -2
- package/dist/terafy.js.map +4 -4
- package/docs/assets/anchor.js +350 -0
- package/docs/assets/bass-addons.css +12 -0
- package/docs/assets/bass.css +544 -0
- package/docs/assets/fonts/EOT/SourceCodePro-Bold.eot +0 -0
- package/docs/assets/fonts/EOT/SourceCodePro-Regular.eot +0 -0
- package/docs/assets/fonts/LICENSE.txt +93 -0
- package/docs/assets/fonts/OTF/SourceCodePro-Bold.otf +0 -0
- package/docs/assets/fonts/OTF/SourceCodePro-Regular.otf +0 -0
- package/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf +0 -0
- package/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf +0 -0
- package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff +0 -0
- package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff +0 -0
- package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff +0 -0
- package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff +0 -0
- package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 +0 -0
- package/docs/assets/fonts/source-code-pro.css +23 -0
- package/docs/assets/github.css +123 -0
- package/docs/assets/site.js +168 -0
- package/docs/assets/split.css +15 -0
- package/docs/assets/split.js +782 -0
- package/docs/assets/style.css +147 -0
- package/docs/index.html +3636 -0
- package/{index.html → docs/playground.html} +48 -12
- package/documentation.yml +12 -0
- package/lib/terafy.client.js +230 -6
- package/lib/terafy.server.js +192 -10
- package/package.json +7 -6
- package/plugins/vue2.js +173 -0
- package/plugins/{vue.js → vue3.js} +20 -11
package/README.md
CHANGED
|
@@ -2,11 +2,14 @@ TERA-fy
|
|
|
2
2
|
=======
|
|
3
3
|
TERA website worker, intended to be embedded with TERA tools.
|
|
4
4
|
|
|
5
|
-
* [API
|
|
6
|
-
* [TERA-fy
|
|
5
|
+
* [TERA-fy API (API explorer)](https://iebh.github.io/TERA-fy/)
|
|
6
|
+
* [TERA-fy API (Markdown, single page)](./api.md)
|
|
7
|
+
* [API playground](https://iebh.github.io/TERA-fy/playground.html)
|
|
8
|
+
* [TERA-Explorer](https://github.com/IEBH/TERA-explorer) - A simple example project using TERA-fy
|
|
9
|
+
- [Live standalone version](https://explorer.tera-tools.com/)
|
|
10
|
+
- [Live Embedded version](https://tera-tools.com/explorer)
|
|
7
11
|
|
|
8
|
-
|
|
9
|
-
TERA-fy is a component intended to be dropped into a sub-site / tool used with in the main [TERA](https://tera-tools.com) project. It provides various functionality like data sync with the parent TERA instance.
|
|
12
|
+
TERA-fy is a add-on module which extends 3rd party tools with functionality from the [TERA](https://tera-tools.com) project. It provides various functionality like data sync with the parent TERA instance, file upload/download, citation library access and other utilities.
|
|
10
13
|
|
|
11
14
|
|
|
12
15
|
Quick Start
|
|
@@ -27,4 +30,6 @@ await terafy.requireProject();
|
|
|
27
30
|
|
|
28
31
|
// Go fetch the state of the active project
|
|
29
32
|
let projectState = await terafy.getProjectState(); //= Object representing the active project
|
|
33
|
+
|
|
34
|
+
// See https://iebh.github.io/TERA-fy/ for a full API list
|
|
30
35
|
```
|