├── .gitignore ├── LICENSE ├── README.md ├── index.d.ts ├── lib ├── fitview.es.js └── fitview.umd.js ├── package.json ├── rollup.config.js ├── src ├── index.ts ├── init.ts └── utils.ts ├── test ├── css │ └── style.css ├── imgs │ ├── body-left-bg.png │ ├── body-r-bot.png │ ├── body-r-t-left.png │ ├── body-r-t-right.png │ ├── header.png │ └── msg.png ├── index.html └── js │ ├── ec.js │ └── echarts.min.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'fitview'; -------------------------------------------------------------------------------- /lib/fitview.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/lib/fitview.es.js -------------------------------------------------------------------------------- /lib/fitview.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/lib/fitview.umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/src/init.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/css/style.css -------------------------------------------------------------------------------- /test/imgs/body-left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/imgs/body-left-bg.png -------------------------------------------------------------------------------- /test/imgs/body-r-bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/imgs/body-r-bot.png -------------------------------------------------------------------------------- /test/imgs/body-r-t-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/imgs/body-r-t-left.png -------------------------------------------------------------------------------- /test/imgs/body-r-t-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/imgs/body-r-t-right.png -------------------------------------------------------------------------------- /test/imgs/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/imgs/header.png -------------------------------------------------------------------------------- /test/imgs/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/imgs/msg.png -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/index.html -------------------------------------------------------------------------------- /test/js/ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/js/ec.js -------------------------------------------------------------------------------- /test/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/test/js/echarts.min.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbstar/fitview/HEAD/tsconfig.json --------------------------------------------------------------------------------