├── .gitignore ├── LICENSE ├── README.md ├── dist ├── index.d.ts ├── two-up-min.js ├── two-up.d.ts ├── two-up.js └── two-up.mjs ├── lib ├── index.ts ├── missing-types.d.ts ├── styles.css └── two-up.ts ├── package.json ├── rollup.config.js ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.css.d.ts 2 | .rpt2_cache 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/two-up-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/dist/two-up-min.js -------------------------------------------------------------------------------- /dist/two-up.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/dist/two-up.d.ts -------------------------------------------------------------------------------- /dist/two-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/dist/two-up.js -------------------------------------------------------------------------------- /dist/two-up.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/dist/two-up.mjs -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/missing-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/lib/missing-types.d.ts -------------------------------------------------------------------------------- /lib/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/lib/styles.css -------------------------------------------------------------------------------- /lib/two-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/lib/two-up.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/rollup.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/two-up/HEAD/tslint.json --------------------------------------------------------------------------------