├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── documents └── overview-output.png ├── examples ├── children.js ├── dummy-notepad.js ├── overview.js └── scroll.js ├── package.json ├── setup └── ts-node-reigister-for-test.js ├── src ├── border.ts ├── box.ts ├── index.ts ├── matrix.ts ├── rectangle.ts ├── scroll-bar.ts ├── typings │ └── global.d.ts └── utils.ts ├── test ├── border.ts ├── box.ts ├── index.ts ├── matrix.ts ├── rectangle.ts ├── scroll-bar.ts └── utils.ts └── tsconfigs ├── base.json ├── build.json └── test.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | 3 | /dist/ 4 | /examples/tmp.js 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/README.md -------------------------------------------------------------------------------- /documents/overview-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/documents/overview-output.png -------------------------------------------------------------------------------- /examples/children.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/examples/children.js -------------------------------------------------------------------------------- /examples/dummy-notepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/examples/dummy-notepad.js -------------------------------------------------------------------------------- /examples/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/examples/overview.js -------------------------------------------------------------------------------- /examples/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/examples/scroll.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/package.json -------------------------------------------------------------------------------- /setup/ts-node-reigister-for-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/setup/ts-node-reigister-for-test.js -------------------------------------------------------------------------------- /src/border.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/border.ts -------------------------------------------------------------------------------- /src/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/box.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/matrix.ts -------------------------------------------------------------------------------- /src/rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/rectangle.ts -------------------------------------------------------------------------------- /src/scroll-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/scroll-bar.ts -------------------------------------------------------------------------------- /src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/typings/global.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/border.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/border.ts -------------------------------------------------------------------------------- /test/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/box.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/matrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/matrix.ts -------------------------------------------------------------------------------- /test/rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/rectangle.ts -------------------------------------------------------------------------------- /test/scroll-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/scroll-bar.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfigs/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/tsconfigs/base.json -------------------------------------------------------------------------------- /tsconfigs/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/tsconfigs/build.json -------------------------------------------------------------------------------- /tsconfigs/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjirou/tilto/HEAD/tsconfigs/test.json --------------------------------------------------------------------------------