├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .nycrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulpfile.js ├── manual_test └── index.js ├── package.json ├── saml.html ├── scripts ├── build.js └── publish.js ├── src ├── adapters │ ├── DOM.spec.ts │ └── DOM.ts ├── index.ts ├── tree.spec.ts ├── tree.ts ├── types │ ├── html-validator │ │ └── index.d.ts │ └── hyperx │ │ └── index.d.ts ├── utils.spec.ts └── utils.ts ├── test └── mocha.opts ├── tsconfig.json ├── tsconfig.module.json ├── tslint.json ├── typedoc.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/.gitignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | require('./scripts/build'); 2 | -------------------------------------------------------------------------------- /manual_test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/manual_test/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/package.json -------------------------------------------------------------------------------- /saml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/saml.html -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/scripts/publish.js -------------------------------------------------------------------------------- /src/adapters/DOM.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/adapters/DOM.spec.ts -------------------------------------------------------------------------------- /src/adapters/DOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/adapters/DOM.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/tree.spec.ts -------------------------------------------------------------------------------- /src/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/tree.ts -------------------------------------------------------------------------------- /src/types/html-validator/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'html-validator' { 2 | export default function (obj: any): Promise; 3 | } 4 | -------------------------------------------------------------------------------- /src/types/hyperx/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/types/hyperx/index.d.ts -------------------------------------------------------------------------------- /src/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/utils.spec.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/tsconfig.module.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/tslint.json -------------------------------------------------------------------------------- /typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/typedoc.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/adaptive/HEAD/webpack.config.js --------------------------------------------------------------------------------