├── .arcconfig ├── .arclint ├── .babelrc ├── .gitignore ├── .gitmodules ├── .npmignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── favicon.ico ├── images │ ├── bg1.jpg │ ├── bg2.jpg │ ├── bg3.jpg │ └── logo.png ├── js │ ├── JSXTransformer.js │ ├── codemirror.js │ ├── es5-sham.min.js │ ├── es5-shim.min.js │ ├── foldcode.js │ ├── html5shiv.min.js │ ├── javascript.js │ ├── katex.js │ └── showdown.js └── stylesheets │ ├── codemirror.css │ ├── fonts │ ├── KaTeX_AMS-Regular.ttf │ ├── KaTeX_AMS-Regular.woff │ ├── KaTeX_AMS-Regular.woff2 │ ├── KaTeX_Caligraphic-Bold.ttf │ ├── KaTeX_Caligraphic-Bold.woff │ ├── KaTeX_Caligraphic-Bold.woff2 │ ├── KaTeX_Caligraphic-Regular.ttf │ ├── KaTeX_Caligraphic-Regular.woff │ ├── KaTeX_Caligraphic-Regular.woff2 │ ├── KaTeX_Fraktur-Bold.ttf │ ├── KaTeX_Fraktur-Bold.woff │ ├── KaTeX_Fraktur-Bold.woff2 │ ├── KaTeX_Fraktur-Regular.ttf │ ├── KaTeX_Fraktur-Regular.woff │ ├── KaTeX_Fraktur-Regular.woff2 │ ├── KaTeX_Main-Bold.ttf │ ├── KaTeX_Main-Bold.woff │ ├── KaTeX_Main-Bold.woff2 │ ├── KaTeX_Main-BoldItalic.ttf │ ├── KaTeX_Main-BoldItalic.woff │ ├── KaTeX_Main-BoldItalic.woff2 │ ├── KaTeX_Main-Italic.ttf │ ├── KaTeX_Main-Italic.woff │ ├── KaTeX_Main-Italic.woff2 │ ├── KaTeX_Main-Regular.ttf │ ├── KaTeX_Main-Regular.woff │ ├── KaTeX_Main-Regular.woff2 │ ├── KaTeX_Math-Italic.ttf │ ├── KaTeX_Math-Italic.woff │ ├── KaTeX_Math-Italic.woff2 │ ├── KaTeX_SansSerif-Bold.ttf │ ├── KaTeX_SansSerif-Bold.woff │ ├── KaTeX_SansSerif-Bold.woff2 │ ├── KaTeX_SansSerif-Italic.ttf │ ├── KaTeX_SansSerif-Italic.woff │ ├── KaTeX_SansSerif-Italic.woff2 │ ├── KaTeX_SansSerif-Regular.ttf │ ├── KaTeX_SansSerif-Regular.woff │ ├── KaTeX_SansSerif-Regular.woff2 │ ├── KaTeX_Script-Regular.ttf │ ├── KaTeX_Script-Regular.woff │ ├── KaTeX_Script-Regular.woff2 │ ├── KaTeX_Size1-Regular.ttf │ ├── KaTeX_Size1-Regular.woff │ ├── KaTeX_Size1-Regular.woff2 │ ├── KaTeX_Size2-Regular.ttf │ ├── KaTeX_Size2-Regular.woff │ ├── KaTeX_Size2-Regular.woff2 │ ├── KaTeX_Size3-Regular.ttf │ ├── KaTeX_Size3-Regular.woff │ ├── KaTeX_Size3-Regular.woff2 │ ├── KaTeX_Size4-Regular.ttf │ ├── KaTeX_Size4-Regular.woff │ ├── KaTeX_Size4-Regular.woff2 │ ├── KaTeX_Typewriter-Regular.ttf │ ├── KaTeX_Typewriter-Regular.woff │ └── KaTeX_Typewriter-Regular.woff2 │ ├── index.css │ ├── katex.css │ ├── pygments.css │ ├── react.css │ └── reset.css ├── examples ├── backbone-mixin.jsx ├── blur-input.jsx ├── button-group.jsx ├── drag-target.jsx ├── i18n.jsx ├── info-tip.jsx ├── layered-component-mixin.jsx ├── modal.jsx ├── multi-button-group.jsx ├── set-interval-mixin.jsx ├── sortable.jsx ├── state-from-store-mixin.jsx ├── tex.jsx ├── timeago.jsx ├── timeout-transition-group.jsx ├── tooltip.jsx └── window-drag.jsx ├── js ├── backbone-mixin.jsx ├── blur-input.jsx ├── button-group.jsx ├── drag-target.jsx ├── i18n.jsx ├── info-tip.jsx ├── katex-a11y.js ├── layered-component-mixin.jsx ├── modal.jsx ├── multi-button-group.jsx ├── set-interval-mixin.jsx ├── sortable.jsx ├── state-from-store-mixin.jsx ├── styles.js ├── tex.jsx ├── timeago.jsx ├── timeout-transition-group.jsx ├── tooltip.jsx └── window-drag.jsx ├── lint_blacklist.txt ├── make_template.py ├── package.json ├── prepublish.js ├── reactify-components.jsx ├── requirements.txt ├── template.html └── test ├── blur-input-test.jsx ├── button-group-test.jsx ├── drag-target-test.jsx ├── i18n-test.jsx ├── katex-a11y-math.txt ├── katex-a11y-test.jsx ├── katex-a11y-tex.json ├── layered-component-mixin-test.jsx ├── modal_test.jsx ├── state-from-store-mixin.jsx ├── test-helper.js ├── tex-test.jsx └── window-drag-test.jsx /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/.arcconfig -------------------------------------------------------------------------------- /.arclint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/.arclint -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | docs 3 | venv 4 | requirements.txt 5 | Makefile 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/README.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/images/bg1.jpg -------------------------------------------------------------------------------- /docs/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/images/bg2.jpg -------------------------------------------------------------------------------- /docs/images/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/images/bg3.jpg -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/js/JSXTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/JSXTransformer.js -------------------------------------------------------------------------------- /docs/js/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/codemirror.js -------------------------------------------------------------------------------- /docs/js/es5-sham.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/es5-sham.min.js -------------------------------------------------------------------------------- /docs/js/es5-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/es5-shim.min.js -------------------------------------------------------------------------------- /docs/js/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/foldcode.js -------------------------------------------------------------------------------- /docs/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/js/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/javascript.js -------------------------------------------------------------------------------- /docs/js/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/katex.js -------------------------------------------------------------------------------- /docs/js/showdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/js/showdown.js -------------------------------------------------------------------------------- /docs/stylesheets/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/codemirror.css -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/stylesheets/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/stylesheets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/index.css -------------------------------------------------------------------------------- /docs/stylesheets/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/katex.css -------------------------------------------------------------------------------- /docs/stylesheets/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/pygments.css -------------------------------------------------------------------------------- /docs/stylesheets/react.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/react.css -------------------------------------------------------------------------------- /docs/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/docs/stylesheets/reset.css -------------------------------------------------------------------------------- /examples/backbone-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/backbone-mixin.jsx -------------------------------------------------------------------------------- /examples/blur-input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/blur-input.jsx -------------------------------------------------------------------------------- /examples/button-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/button-group.jsx -------------------------------------------------------------------------------- /examples/drag-target.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/drag-target.jsx -------------------------------------------------------------------------------- /examples/i18n.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/i18n.jsx -------------------------------------------------------------------------------- /examples/info-tip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/info-tip.jsx -------------------------------------------------------------------------------- /examples/layered-component-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/layered-component-mixin.jsx -------------------------------------------------------------------------------- /examples/modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/modal.jsx -------------------------------------------------------------------------------- /examples/multi-button-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/multi-button-group.jsx -------------------------------------------------------------------------------- /examples/set-interval-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/set-interval-mixin.jsx -------------------------------------------------------------------------------- /examples/sortable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/sortable.jsx -------------------------------------------------------------------------------- /examples/state-from-store-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/state-from-store-mixin.jsx -------------------------------------------------------------------------------- /examples/tex.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/tex.jsx -------------------------------------------------------------------------------- /examples/timeago.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/timeago.jsx -------------------------------------------------------------------------------- /examples/timeout-transition-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/timeout-transition-group.jsx -------------------------------------------------------------------------------- /examples/tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/tooltip.jsx -------------------------------------------------------------------------------- /examples/window-drag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/examples/window-drag.jsx -------------------------------------------------------------------------------- /js/backbone-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/backbone-mixin.jsx -------------------------------------------------------------------------------- /js/blur-input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/blur-input.jsx -------------------------------------------------------------------------------- /js/button-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/button-group.jsx -------------------------------------------------------------------------------- /js/drag-target.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/drag-target.jsx -------------------------------------------------------------------------------- /js/i18n.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/i18n.jsx -------------------------------------------------------------------------------- /js/info-tip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/info-tip.jsx -------------------------------------------------------------------------------- /js/katex-a11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/katex-a11y.js -------------------------------------------------------------------------------- /js/layered-component-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/layered-component-mixin.jsx -------------------------------------------------------------------------------- /js/modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/modal.jsx -------------------------------------------------------------------------------- /js/multi-button-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/multi-button-group.jsx -------------------------------------------------------------------------------- /js/set-interval-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/set-interval-mixin.jsx -------------------------------------------------------------------------------- /js/sortable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/sortable.jsx -------------------------------------------------------------------------------- /js/state-from-store-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/state-from-store-mixin.jsx -------------------------------------------------------------------------------- /js/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/styles.js -------------------------------------------------------------------------------- /js/tex.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/tex.jsx -------------------------------------------------------------------------------- /js/timeago.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/timeago.jsx -------------------------------------------------------------------------------- /js/timeout-transition-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/timeout-transition-group.jsx -------------------------------------------------------------------------------- /js/tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/tooltip.jsx -------------------------------------------------------------------------------- /js/window-drag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/js/window-drag.jsx -------------------------------------------------------------------------------- /lint_blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/lint_blacklist.txt -------------------------------------------------------------------------------- /make_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/make_template.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/package.json -------------------------------------------------------------------------------- /prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/prepublish.js -------------------------------------------------------------------------------- /reactify-components.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/reactify-components.jsx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2==2.7.2 2 | pygments==1.6 3 | -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/template.html -------------------------------------------------------------------------------- /test/blur-input-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/blur-input-test.jsx -------------------------------------------------------------------------------- /test/button-group-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/button-group-test.jsx -------------------------------------------------------------------------------- /test/drag-target-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/drag-target-test.jsx -------------------------------------------------------------------------------- /test/i18n-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/i18n-test.jsx -------------------------------------------------------------------------------- /test/katex-a11y-math.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/katex-a11y-math.txt -------------------------------------------------------------------------------- /test/katex-a11y-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/katex-a11y-test.jsx -------------------------------------------------------------------------------- /test/katex-a11y-tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/katex-a11y-tex.json -------------------------------------------------------------------------------- /test/layered-component-mixin-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/layered-component-mixin-test.jsx -------------------------------------------------------------------------------- /test/modal_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/modal_test.jsx -------------------------------------------------------------------------------- /test/state-from-store-mixin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/state-from-store-mixin.jsx -------------------------------------------------------------------------------- /test/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/test-helper.js -------------------------------------------------------------------------------- /test/tex-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/tex-test.jsx -------------------------------------------------------------------------------- /test/window-drag-test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khan/react-components/HEAD/test/window-drag-test.jsx --------------------------------------------------------------------------------