update vis
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 4.4 KiB |
|
@ -1 +1 @@
|
|||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>c3</title><link href=/css/app.73b7d414.css rel=preload as=style><link href=/css/chunk-vendors.67ea232d.css rel=preload as=style><link href=/js/app.e083ba83.js rel=preload as=script><link href=/js/chunk-vendors.1ad940ac.js rel=preload as=script><link href=/css/chunk-vendors.67ea232d.css rel=stylesheet><link href=/css/app.73b7d414.css rel=stylesheet></head><body><noscript><strong>We're sorry but c3 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.1ad940ac.js></script><script src=/js/app.e083ba83.js></script></body></html>
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>c3</title><link href=/css/app.73b7d414.css rel=preload as=style><link href=/js/app.d8754f18.js rel=preload as=script><link href=/js/chunk-vendors.d386b8c3.js rel=preload as=script><link href=/css/app.73b7d414.css rel=stylesheet></head><body><noscript><strong>We're sorry but c3 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.d386b8c3.js></script><script src=/js/app.d8754f18.js></script></body></html>
|
|
@ -9,16 +9,21 @@
|
|||
"test:unit": "vue-cli-service test:unit"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.18.0",
|
||||
"@egjs/hammerjs": "^2.0.17",
|
||||
"axios": "^0.19.2",
|
||||
"core-js": "^2.6.5",
|
||||
"keycharm": "^0.3.1",
|
||||
"md5": "^2.2.1",
|
||||
"pluralize": "^8.0.0",
|
||||
"uuid": "^8.0.0",
|
||||
"vee-validate": "^2.2.9",
|
||||
"vis": "^4.21.0",
|
||||
"vue": "^2.6.10",
|
||||
"vue-class-component": "^7.0.2",
|
||||
"vue-property-decorator": "^8.1.0",
|
||||
"vuex": "^3.0.1",
|
||||
"vis-data": "^6.5.3",
|
||||
"vis-network": "^7.6.7",
|
||||
"vis-util": "^4.0.2",
|
||||
"vue": "^2.6.11",
|
||||
"vue-class-component": "^7.2.3",
|
||||
"vue-property-decorator": "^8.4.2",
|
||||
"vuex": "^3.4.0",
|
||||
"vuex-class": "^0.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -27,7 +32,7 @@
|
|||
"@types/mocha": "^5.2.4",
|
||||
"@types/pluralize": "^0.0.29",
|
||||
"@types/sinon": "^7.0.11",
|
||||
"@types/vis": "^4.21.15",
|
||||
"@types/vis": "^4.21.20",
|
||||
"@vue/cli-plugin-babel": "^3.7.0",
|
||||
"@vue/cli-plugin-typescript": "^3.7.0",
|
||||
"@vue/cli-plugin-unit-mocha": "^3.7.0",
|
||||
|
|
|
@ -72,7 +72,9 @@
|
|||
import { namespace } from 'vuex-class';
|
||||
import { VisOptions } from '@/options';
|
||||
import { Component, Watch, Mixins } from 'vue-property-decorator';
|
||||
import { DataSet, DataView, Network, Options } from 'vis';
|
||||
import { DataView, Options } from 'vis-network';
|
||||
import { DataSet } from 'vis-data/peer/esm/vis-data';
|
||||
import { Network } from 'vis-network/peer/esm/vis-network';
|
||||
|
||||
import { NodeKlass, C3Node, C3Edge, nullNode } from '@/types/c3types';
|
||||
import { GetNodeKlassFn, FetchC3DataFn } from '@/store/C3Module';
|
||||
|
|
|
@ -4,7 +4,6 @@ import store from './store';
|
|||
import VeeValidate from 'vee-validate';
|
||||
|
||||
import './scss/main.scss';
|
||||
import 'vis/dist/vis.css';
|
||||
|
||||
Vue.config.productionTip = false;
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { Module, GetterTree, MutationTree, ActionTree } from 'vuex';
|
||||
import { DataSet, Node, Edge, Options } from 'vis';
|
||||
import { Node, Edge, Options } from 'vis-network';
|
||||
import { DataSet } from 'vis-data/peer/esm/vis-data';
|
||||
|
||||
import { RootState } from '@/types/store/RootState';
|
||||
import { C3Edge, NodeKlass, C3Node } from '@/types/c3types';
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"baseUrl": ".",
|
||||
"types": ["webpack-env", "mocha", "chai"],
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
"@/*": ["./src/*"]
|
||||
},
|
||||
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||||
},
|
||||
|
|