├── .gitignore ├── LICENSE ├── README.md ├── db └── ITG01Demo.fmp12 ├── dist ├── build │ ├── main.css │ ├── main.js │ └── static │ │ └── gears.svg └── index.html ├── package.json ├── src ├── css │ └── index.css ├── graphics │ └── gears.svg └── js │ ├── FileMakerDataAPI.js │ ├── StateChart.js │ └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | /node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/README.md -------------------------------------------------------------------------------- /db/ITG01Demo.fmp12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/db/ITG01Demo.fmp12 -------------------------------------------------------------------------------- /dist/build/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/dist/build/main.css -------------------------------------------------------------------------------- /dist/build/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/dist/build/main.js -------------------------------------------------------------------------------- /dist/build/static/gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/dist/build/static/gears.svg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/src/css/index.css -------------------------------------------------------------------------------- /src/graphics/gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/src/graphics/gears.svg -------------------------------------------------------------------------------- /src/js/FileMakerDataAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/src/js/FileMakerDataAPI.js -------------------------------------------------------------------------------- /src/js/StateChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/src/js/StateChart.js -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/src/js/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matatirosolutions/filemaker-data-api-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------