tsviewer 0.1.0
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 +24 -0
- package/babel.config.js +5 -0
- package/dist/demo.html +1 -0
- package/dist/tsviewer.common.js +33247 -0
- package/dist/tsviewer.common.js.map +1 -0
- package/dist/tsviewer.umd.js +33259 -0
- package/dist/tsviewer.umd.js.map +1 -0
- package/dist/tsviewer.umd.min.js +4 -0
- package/dist/tsviewer.umd.min.js.map +1 -0
- package/jsconfig.json +19 -0
- package/package.json +61 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +17 -0
- package/src/App.vue +41 -0
- package/src/assets/icons/blackfynn-amplitude-zoom.js +11 -0
- package/src/assets/icons/blackfynn-timescale.js +11 -0
- package/src/assets/icons/icon-controller-pause.js +11 -0
- package/src/assets/icons/icon-controller-play.js +11 -0
- package/src/assets/icons/icon-next-page.js +11 -0
- package/src/assets/icons/icon-previous-page.js +11 -0
- package/src/assets/icons/icon-stopwatch.js +11 -0
- package/src/assets/icons/index.js +7 -0
- package/src/components/TSPlotCanvas.vue +1868 -0
- package/src/components/TSScrubber.vue +420 -0
- package/src/components/TSViewer.vue +595 -0
- package/src/components/TSViewerCanvas.vue +793 -0
- package/src/components/TSViewerToolbar.vue +356 -0
- package/src/components/index.js +13 -0
- package/src/main.js +23 -0
- package/src/mixins/request/index.js +100 -0
- package/src/mixins/ts-annotation/index.js +202 -0
- package/src/mixins/viewer-active-tool/index.js +36 -0
- package/src/store/index.js +184 -0
- package/src/utils/constants.js +15 -0
- package/vue.config.js +12 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# tsviewer
|
|
2
|
+
|
|
3
|
+
## Project setup
|
|
4
|
+
```
|
|
5
|
+
yarn install
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
### Compiles and hot-reloads for development
|
|
9
|
+
```
|
|
10
|
+
yarn serve
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Compiles and minifies for production
|
|
14
|
+
```
|
|
15
|
+
yarn build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Lints and fixes files
|
|
19
|
+
```
|
|
20
|
+
yarn lint
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Customize configuration
|
|
24
|
+
See [Configuration Reference](https://cli.vuejs.org/config/).
|
package/babel.config.js
ADDED
package/dist/demo.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><meta charset="utf-8"><title>tsviewer demo</title><script src="./tsviewer.umd.js"></script><script>console.log(tsviewer)</script>
|