├── .gitmodules ├── eccjs ├── .gitignore ├── resources │ └── cljsjs │ │ └── common │ │ └── eccjs.ext.js └── README.md ├── paho └── .gitignore ├── web3 ├── .gitignore └── resources │ └── deps.cljs ├── ipfs-api ├── .gitignore ├── boot-cljsjs-checksums.edn └── resources │ └── deps.cljs ├── codeflask ├── resources │ └── README.md ├── README.md └── boot-cljsjs-checksums.edn ├── fabric ├── .gitignore └── README.md ├── iconv-lite ├── .gitignore ├── buildjs │ ├── iconv.js │ └── package.json ├── resources │ └── cljsjs │ │ └── iconv-lite │ │ └── common │ │ └── iconv-lite.ext.js └── README.md ├── zero-ex └── .gitignore ├── dropzone ├── boot-cljsjs-checksums.edn └── README.md ├── firebaseui └── boot-cljsjs-checksums.edn ├── openlayers └── boot-cljsjs-checksums.edn ├── youtube ├── boot-cljsjs-checksums.edn └── resources │ └── deps.cljs ├── react-xmasonry └── boot-cljsjs-checksums.edn ├── qs ├── buildjs │ ├── qs.js │ └── package.json └── resources │ └── cljsjs │ └── qs │ └── common │ └── qs.ext.js ├── tonejs └── .gitignore ├── iota-mam └── resources │ └── cljsjs │ └── iota-mam │ └── common │ └── iota-mam.ext.js ├── dom-to-image └── resources │ └── cljsjs │ └── dom-to-image │ └── dom-to-image.ext.js ├── kemia └── resources │ └── deps.cljs ├── heap ├── resources │ └── deps.cljs └── README.md ├── kakao ├── resources │ └── deps.cljs └── README.md ├── kjua └── resources │ ├── cljsjs │ └── common │ │ └── kjua.ext.js │ └── deps.cljs ├── timeago ├── resources │ └── cljsjs │ │ └── timeago │ │ └── common │ │ └── timeago.ext.js └── README.md ├── vimeo └── resources │ └── deps.cljs ├── dygraph ├── resources │ └── deps.cljs ├── boot-cljsjs-checksums.edn └── README.md ├── stripe └── resources │ └── deps.cljs ├── stripe_2 └── resources │ └── deps.cljs ├── chosen └── resources │ └── cljsjs │ └── chosen │ └── common │ └── chosen.ext.js ├── linkify └── resources │ └── cljsjs │ └── linkify │ └── common │ ├── linkify-html.ext.js │ ├── linkify-string.ext.js │ ├── linkify-element.ext.js │ ├── linkify-jquery.ext.js │ └── linkify-react.ext.js ├── datatables.net-bs ├── resources │ └── cljsjs │ │ └── datatables.net-bs │ │ └── common │ │ └── datatables.net-bs.ext.js └── boot-cljsjs-checksums.edn ├── incremental-dom └── resources │ ├── deps.cljs │ └── gulpfile.js.patch ├── react-table ├── resources │ └── cljsjs │ │ └── react-table │ │ └── common │ │ └── react-table.ext.js └── boot-cljsjs-checksums.edn ├── extern-test.js ├── facebook ├── resources │ └── deps.cljs └── README.md ├── google-maps └── resources │ └── deps.cljs ├── pinterest ├── resources │ └── deps.cljs └── README.md ├── qart ├── resources │ └── cljsjs │ │ └── common │ │ └── qart.ext.js └── README.md ├── react-datetime ├── resources │ └── cljsjs │ │ └── react-datetime │ │ └── common │ │ └── react-datetime.ext.js └── boot-cljsjs-checksums.edn ├── simplex-solver └── resources │ └── simplex-solver.inc.js ├── xlsx ├── resources │ ├── main.js │ └── package.json ├── boot-cljsjs-checksums.edn └── README.md ├── filesaverjs └── resources │ └── cljsjs │ └── filesaverjs │ └── common │ └── filesaverjs.ext.js ├── react-highlight ├── resources │ ├── cljsjs │ │ └── react-highlight │ │ │ └── common │ │ │ └── react-highlight.ext.js │ └── main.js └── boot-cljsjs-checksums.edn ├── react-truncate └── resources │ ├── cljsjs │ └── react-truncate │ │ └── common │ │ └── react-truncate.ext.js │ └── webpack.config.js ├── typedjs └── resources │ └── cljsjs │ └── typedjs │ └── common │ └── typedjs.ext.js ├── libphonenumber └── resources │ └── deps.cljs ├── scrollex └── resources │ └── cljsjs │ └── scrollex │ └── common │ └── scrollex.ext.js ├── trello-client └── resources │ └── deps.cljs ├── webcomponents └── resources │ └── cljsjs │ └── webcomponents │ └── common │ ├── WeakMap.ext.js │ ├── WebComponents.ext.js │ ├── JsMutationObserver.ext.js │ └── HTMLImports.ext.js ├── datatables.net-buttons-bs └── resources │ └── cljsjs │ └── datatables.net-buttons-bs │ └── common │ └── datatables.net-buttons-bs.ext.js ├── datatables.net-responsive ├── resources │ └── cljsjs │ │ └── datatables.net-responsive │ │ └── common │ │ └── datatables.net-responsive.ext.js └── boot-cljsjs-checksums.edn ├── datatables.net-select-bs ├── resources │ └── cljsjs │ │ └── datatables.net-select-bs │ │ └── common │ │ └── datatables.net-select-bs.ext.js └── boot-cljsjs-checksums.edn ├── elkjs ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── elkjs │ └── common │ └── elkjs.ext.js ├── fela-preset-dev ├── resources │ └── cljsjs │ │ └── fela-preset-dev │ │ └── common │ │ └── fela-preset-dev.ext.js └── README.md ├── fela-preset-web ├── resources │ └── cljsjs │ │ └── fela-preset-web │ │ └── common │ │ └── fela-preset-web.ext.js └── README.md ├── material-colors └── resources │ └── cljsjs │ └── material-colors │ └── common │ └── material-colors.ext.js ├── object-assign-shim └── resources │ └── cljsjs │ ├── object-assign-shim │ └── common │ │ └── object-assign-shim.ext.js │ └── production │ └── object-assign-shim.min.inc.js ├── sticky ├── resources │ └── cljsjs │ │ └── sticky │ │ └── common │ │ └── sticky.ext.js └── README.md ├── webcomponents-lite └── resources │ └── cljsjs │ └── webcomponents │ └── common │ ├── WeakMap.ext.js │ ├── WebComponents.ext.js │ ├── JsMutationObserver.ext.js │ └── HTMLImports.ext.js ├── datatables.net-keytable-bs ├── resources │ └── cljsjs │ │ └── datatables.net-keytable-bs │ │ └── common │ │ └── datatables.net-keytable-bs.ext.js └── boot-cljsjs-checksums.edn ├── download └── resources │ └── cljsjs │ └── download │ └── common │ └── common.ext.js ├── iscroll ├── resources │ └── cljsjs │ │ └── iscroll │ │ └── common │ │ └── iscroll.ext.js └── README.md ├── jquery-dropotron └── resources │ └── cljsjs │ └── common │ └── jquery-dropotron.ext.js ├── markdown ├── resources │ └── cljsjs │ │ └── common │ │ └── markdown.ext.js └── README.md ├── material-ui_0 ├── resources │ ├── cljsjs │ │ └── material-ui │ │ │ └── common │ │ │ └── material-ui-svg-icons.ext.js │ └── main.js └── boot-cljsjs-checksums.edn ├── rebass └── resources │ └── rebass-0.3.2 │ └── src │ ├── entry.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── semantic-ui-react ├── resources │ └── cljsjs │ │ └── semantic-ui-react │ │ └── common │ │ └── semantic-ui-react.ext.js └── boot-cljsjs-checksums.edn ├── datatables.net-responsive-bs ├── resources │ └── cljsjs │ │ └── datatables.net-responsive-bs │ │ └── common │ │ └── datatables.net-responsive-bs.ext.js └── boot-cljsjs-checksums.edn ├── fela-dom ├── resources │ └── cljsjs │ │ └── fela-dom │ │ └── common │ │ └── fela-dom.ext.js └── README.md ├── google-platformjs-extern └── resources │ └── deps.cljs ├── jquery-timepicker └── resources │ └── cljsjs │ └── common │ └── jquery-timepicker.ext.js ├── .gitignore ├── classnames ├── resources │ └── cljsjs │ │ └── common │ │ └── classnames.ext.js └── boot-cljsjs-checksums.edn ├── datatables.net-col-reorder-bs ├── resources │ └── cljsjs │ │ └── datatables.net-col-reorder-bs │ │ └── common │ │ └── datatables.net-col-reorder-bs.ext.js └── boot-cljsjs-checksums.edn ├── diffdom └── boot-cljsjs-checksums.edn ├── optiscroll └── resources │ └── cljsjs │ └── optiscroll │ └── common │ └── optiscroll.ext.js ├── preact-compat └── resources │ └── cljsjs │ └── preact-compat │ └── common │ └── react.inc.js ├── create-react-class ├── resources │ └── cljsjs │ │ └── create-react-class │ │ └── common │ │ └── create-react-class.ext.js └── boot-cljsjs-checksums.edn ├── hunt └── resources │ ├── cljsjs │ └── common │ │ └── hunt.ext.js │ └── deps.cljs ├── js-joda-locale-en-us └── resources │ └── cljsjs │ └── js-joda-locale-en-us │ └── common │ └── js-joda-locale.ext.js ├── material-ui-chip-input └── resources │ ├── cljsjs │ └── material-ui-chip-input │ │ └── common │ │ └── material-ui-chip-input.ext.js │ └── main.js ├── react-vis ├── boot-cljsjs-checksums.edn └── resources │ └── deps.cljs ├── apollo-fetch ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── apollo-fetch │ └── common │ └── apollo-fetch.ext.js ├── material-ui-icons ├── resources │ └── main.js └── boot-cljsjs-checksums.edn ├── pouchdb-live-find └── resources │ └── cljsjs │ └── pouchdb-live-find │ └── common │ └── pouchdb-live-find.ext.js ├── three-decalgeometry └── resources │ └── cljsjs │ └── three-decalgeometry │ └── common │ └── THREE.DecalGeometry.ext.js ├── emoji-mart └── boot-cljsjs-checksums.edn ├── fela-plugin-prefixer └── resources │ └── cljsjs │ └── fela-plugin-prefixer │ └── common │ └── fela-plugin-prefixer.ext.js ├── react-player └── boot-cljsjs-checksums.edn ├── ag-grid-react └── resources │ └── cljsjs │ └── ag-grid-react │ └── common │ └── ag-grid-react.ext.js ├── react-lifecycles-compat ├── resources │ └── cljsjs │ │ └── react-lifecycles-compat │ │ └── common │ │ └── react-lifecycles-compat.ext.js └── boot-cljsjs-checksums.edn ├── web-animations └── resources │ └── cljsjs │ └── web-animations │ └── common │ └── web-animations-js.ext.js ├── proton-js └── resources │ └── cljsjs │ └── proton │ └── common │ └── proton.ext.js ├── react-json-view └── boot-cljsjs-checksums.edn ├── smoothscroll-polyfill └── resources │ └── cljsjs │ └── smoothscroll-polyfill │ └── common │ └── smoothscroll_polyfill.ext.js ├── react-color ├── resources │ ├── main.js │ └── cljsjs │ │ └── react-color │ │ └── common │ │ └── react-color.ext.js └── boot-cljsjs-checksums.edn ├── react-google-maps └── boot-cljsjs-checksums.edn ├── react-grid-layout └── boot-cljsjs-checksums.edn ├── juration └── resources │ └── cljsjs │ └── juration │ └── common │ └── juration.ext.js ├── libtess └── README.md ├── parinfer └── resources │ └── cljsjs │ └── parinfer │ └── common │ └── parinfer.ext.js ├── bootstrap-treeview └── resources │ └── cljsjs │ └── common │ └── bootstrap-treeview.ext.js ├── immutable └── README.md ├── react-timer-mixin └── resources │ └── cljsjs │ └── react-timer-mixin │ └── common │ └── react-timer-mixin.ext.js ├── cortical-io ├── resources │ └── cljsjs │ │ └── cortical-io │ │ └── common │ │ └── cortical-io.ext.js └── README.md ├── quill ├── boot-cljsjs-checksums.edn └── README.md ├── react-bootstrap-datetimepicker └── resources │ └── cljsjs │ └── react-bootstrap-datetimepicker │ └── common │ └── react-bootstrap-datetimepicker.ext.js ├── bootstrap-toggle └── resources │ └── cljsjs │ └── bootstrap-toggle │ └── common │ └── bootstrap-toggle.ext.js ├── js-beautify └── resources │ └── cljsjs │ └── js-beautify │ └── common │ └── js-beautify.ext.js ├── kiwijs ├── boot-cljsjs-checksums.edn └── README.md ├── msgpack-js-browser └── resources │ └── cljsjs │ └── msgpack-js-browser │ └── common │ └── msgpack-js-browser.ext.js ├── papaparse └── resources │ └── cljsjs │ └── papaparse │ └── common │ └── papaparse.ext.js ├── vega ├── boot-cljsjs-checksums.edn └── README.md ├── c3 ├── boot-cljsjs-checksums.edn └── README.md ├── d3 └── boot-cljsjs-checksums.edn ├── lamejs └── resources │ └── cljsjs │ └── lamejs │ └── common │ └── lamejs.ext.js ├── p5 └── boot-cljsjs-checksums.edn ├── dexie ├── boot-cljsjs-checksums.edn └── README.md ├── enquire ├── resources │ └── cljsjs │ │ └── enquire │ │ └── common │ │ └── enquire.ext.js └── README.md ├── sinon └── boot-cljsjs-checksums.edn ├── spin └── resources │ └── cljsjs │ └── spin │ └── common │ └── spin.ext.js ├── husl ├── resources │ └── cljsjs │ │ └── husl │ │ └── common │ │ └── husl.ext.js └── README.md ├── solidity-sha3 └── resources │ ├── cljsjs │ └── solidity-sha3 │ │ └── common │ │ └── solidity-sha3.ext.js │ ├── main.js │ └── webpack.config.js ├── vis ├── boot-cljsjs-checksums.edn └── README.md ├── antd └── boot-cljsjs-checksums.edn ├── jsts └── boot-cljsjs-checksums.edn ├── pixi └── boot-cljsjs-checksums.edn ├── sortable ├── boot-cljsjs-checksums.edn └── README.md ├── tfjs └── boot-cljsjs-checksums.edn ├── tock ├── boot-cljsjs-checksums.edn └── README.md ├── xpath-dom └── resources │ └── cljsjs │ └── xpath-dom │ └── common │ └── xpath-dom.ext.js ├── auth0 └── boot-cljsjs-checksums.edn ├── dialog-polyfill └── resources │ └── cljsjs │ └── dialog_polyfill │ └── common │ └── dialog_polyfill.ext.js ├── enzyme └── resources │ ├── cljsjs │ └── enzyme │ │ └── common │ │ └── enzyme.ext.js │ └── build │ ├── helper.js │ └── webpack.config.js ├── flot └── resources │ └── cljsjs │ └── common │ ├── flot.plugins.time.ext.js │ ├── flot.plugins.selection.ext.js │ └── flot.plugins.crosshair.ext.js ├── howler ├── boot-cljsjs-checksums.edn └── README.md ├── katex └── boot-cljsjs-checksums.edn ├── ocean └── resources │ └── cljsjs │ └── three-water-material │ └── common │ └── three-water-material.ext.js ├── raven └── boot-cljsjs-checksums.edn ├── rbush └── boot-cljsjs-checksums.edn ├── redux ├── boot-cljsjs-checksums.edn └── README.md ├── slate └── boot-cljsjs-checksums.edn ├── chartjs ├── boot-cljsjs-checksums.edn └── README.md ├── jointjs └── boot-cljsjs-checksums.edn ├── jquery-confirm ├── resources │ └── cljsjs │ │ └── jquery-confirm │ │ └── common │ │ └── jquery-confirm.ext.js └── boot-cljsjs-checksums.edn ├── lunrjs └── boot-cljsjs-checksums.edn ├── oidc-client ├── boot-cljsjs-checksums.edn └── README.md ├── plotly └── boot-cljsjs-checksums.edn ├── socket-io-client └── boot-cljsjs-checksums.edn ├── toastr ├── boot-cljsjs-checksums.edn └── README.md ├── auth0-lock └── boot-cljsjs-checksums.edn ├── graphql └── boot-cljsjs-checksums.edn ├── machina ├── boot-cljsjs-checksums.edn └── README.md ├── mapbox └── boot-cljsjs-checksums.edn ├── mobile-drag-drop ├── resources │ └── cljsjs │ │ └── mobile-drag-drop │ │ └── common │ │ └── mobile-drag-drop.ext.js └── boot-cljsjs-checksums.edn ├── myexcel └── boot-cljsjs-checksums.edn ├── popperjs └── boot-cljsjs-checksums.edn ├── proptypes └── resources │ └── deps.cljs ├── twemoji ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── twemoji │ └── common │ └── twemoji.ext.js ├── feathers └── boot-cljsjs-checksums.edn ├── jwt-decode └── boot-cljsjs-checksums.edn ├── leaflet-polylinedecorator └── resources │ └── cljsjs │ └── leaflet-polylinedecorator │ └── common │ └── leaflet-polylinedecorator.ext.js ├── mixpanel └── boot-cljsjs-checksums.edn ├── recharts ├── boot-cljsjs-checksums.edn └── README.md ├── showdown ├── boot-cljsjs-checksums.edn └── README.md ├── textures ├── boot-cljsjs-checksums.edn └── README.md ├── webslides ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── webslides │ └── common │ └── webslides.ext.js ├── zxcvbn ├── resources │ └── cljsjs │ │ └── zxcvbn │ │ └── common │ │ └── zxcvbn.ext.js └── README.md ├── clipboard └── boot-cljsjs-checksums.edn ├── d3-sankey └── boot-cljsjs-checksums.edn ├── flatpickr └── boot-cljsjs-checksums.edn ├── highstock ├── boot-cljsjs-checksums.edn └── README.md ├── lz-string ├── boot-cljsjs-checksums.edn └── README.md ├── office-js └── boot-cljsjs-checksums.edn ├── rc-slider └── boot-cljsjs-checksums.edn ├── tinycolor └── boot-cljsjs-checksums.edn ├── waypoints └── boot-cljsjs-checksums.edn ├── dataloader ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── dataloader │ └── common │ └── dataloader.ext.js ├── delaunator ├── boot-cljsjs-checksums.edn └── README.md ├── material-ui ├── boot-cljsjs-checksums.edn └── resources │ ├── main.js │ └── webpack.config.js ├── reactstrap └── boot-cljsjs-checksums.edn ├── semantic-ui └── boot-cljsjs-checksums.edn ├── duo-web-sdk ├── boot-cljsjs-checksums.edn └── README.md ├── html2canvas ├── boot-cljsjs-checksums.edn └── README.md ├── leaflet-draw └── boot-cljsjs-checksums.edn ├── leaflet-rotatedmarker └── resources │ └── cljsjs │ └── leaflet-rotatedmarker │ └── common │ └── leaflet-rotatedmarker.ext.js ├── morphdom ├── resources │ └── cljsjs │ │ └── common │ │ └── morphdom.ext.js └── README.md ├── react-modal └── boot-cljsjs-checksums.edn ├── slate-react └── boot-cljsjs-checksums.edn ├── update-boot-cljsjs.sh ├── d3-bipartite └── boot-cljsjs-checksums.edn ├── draft-convert └── resources │ └── cljsjs │ └── draft-convert │ └── common │ └── draft-convert.ext.js ├── hashids ├── resources │ └── cljsjs │ │ └── hashids │ │ └── common │ │ └── hashids.ext.js └── README.md ├── react-motion └── boot-cljsjs-checksums.edn ├── react-popper └── boot-cljsjs-checksums.edn ├── react-sticky └── boot-cljsjs-checksums.edn ├── canvas2image ├── resources │ └── cljsjs │ │ └── canvas2image │ │ └── common │ │ └── canvas2image.ext.js └── README.md ├── clusterize └── README.md ├── cookieconsent └── boot-cljsjs-checksums.edn ├── dom-delegator └── resources │ └── cljsjs │ └── dom-delegator │ └── common │ └── dom-delegator.ext.js ├── react-sanfona └── boot-cljsjs-checksums.edn ├── smooth-scroll └── resources │ └── cljsjs │ └── smooth-scroll │ └── common │ └── smooth-scroll.ext.js ├── ant-design-pro └── boot-cljsjs-checksums.edn ├── datatables.net └── boot-cljsjs-checksums.edn ├── filestack └── resources │ └── cljsjs │ └── filestack │ └── common │ └── filestack.ext.js ├── interact └── resources │ └── deps.cljs ├── react-infinite └── boot-cljsjs-checksums.edn ├── sentry-browser └── boot-cljsjs-checksums.edn ├── to-markdown ├── resources │ └── cljsjs │ │ └── to-markdown │ │ └── common │ │ └── to-markdown.ext.js └── README.md ├── react-bootstrap_0 └── boot-cljsjs-checksums.edn ├── react-chartjs-2 ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── react-chartjs-2 │ └── common │ └── react-chartjs-2.ext.js ├── react-flip-move └── boot-cljsjs-checksums.edn ├── reactcss └── resources │ └── cljsjs │ └── reactcss │ └── common │ └── reactcss.ext.js ├── css-layout └── resources │ └── cljsjs │ └── css_layout │ └── common │ └── css-layout.ext.js ├── react-datepicker └── boot-cljsjs-checksums.edn ├── react-fela └── resources │ └── cljsjs │ └── react-fela │ └── common │ └── react-fela.ext.js ├── react-input-mask └── boot-cljsjs-checksums.edn ├── slate-html-serializer ├── resources │ └── cljsjs │ │ └── common │ │ └── slate-html-serializer.ext.js └── boot-cljsjs-checksums.edn ├── accounting └── resources │ └── cljsjs │ └── accounting │ └── common │ └── accounting.ext.js ├── fixed-data-table-2 └── boot-cljsjs-checksums.edn ├── react-autosuggest └── boot-cljsjs-checksums.edn ├── parinfer-codemirror ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── parinfer-codemirror │ └── common │ └── parinfer-codemirror.ext.js ├── pouchdb-find └── resources │ └── cljsjs │ └── pouchdb-find │ └── common │ └── pouchdb-find.ext.js ├── react-sortable-hoc ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── react-sortable-hoc │ └── common │ └── react-sortable-hoc.ext.js ├── applicationinsights └── boot-cljsjs-checksums.edn ├── html-screen-capture-js ├── resources │ └── cljsjs │ │ └── html-screen-capture │ │ └── common │ │ └── html-screen-capture.ext.js ├── boot-cljsjs-checksums.edn └── README.md ├── material-components └── boot-cljsjs-checksums.edn ├── react-beautiful-dnd └── boot-cljsjs-checksums.edn ├── react-number-format └── boot-cljsjs-checksums.edn ├── select2 └── resources │ └── cljsjs │ └── select2 │ └── common │ └── select2.ext.js ├── react-mdl └── README.md ├── react-onclickoutside └── boot-cljsjs-checksums.edn ├── leaflet-fullscreen └── resources │ └── cljsjs │ └── leaflet-fullscreen │ └── common │ └── leaflet-fullscreen.ext.js ├── leaflet-markercluster └── boot-cljsjs-checksums.edn ├── react-stripe-elements └── boot-cljsjs-checksums.edn ├── react-swipeable-views └── boot-cljsjs-checksums.edn ├── react-flexbox-grid └── resources │ └── cljsjs │ └── react-flexbox-grid │ └── common │ └── react-flexbox-grid.ext.js ├── react-transition-group └── boot-cljsjs-checksums.edn ├── jspdf └── README.md ├── react-autosize-textarea └── boot-cljsjs-checksums.edn ├── react-tiny-virtual-list └── boot-cljsjs-checksums.edn ├── virtual-dom ├── resources │ └── cljsjs │ │ └── common │ │ └── virtual-dom.ext.js └── README.md ├── leaflet-gesture-handling └── boot-cljsjs-checksums.edn ├── react-ultimate-pagination ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── react-ultimate-pagination │ └── common │ └── react-ultimate-pagination.ext.js ├── klayjs └── resources │ └── cljsjs │ └── klay │ └── common │ └── klay.ext.js ├── pdfmake └── resources │ ├── cljsjs │ └── common │ │ └── pdfmake.ext.js │ └── deps.cljs ├── react-bootstrap-table └── README.md ├── peg └── resources │ └── cljsjs │ └── peg │ └── common │ └── peg.ext.js ├── react-test-renderer-shallow ├── boot-cljsjs-checksums.edn └── resources │ └── cljsjs │ └── react-test-renderer-shallow │ └── common │ └── react-test-renderer-shallow.ext.js ├── vue └── README.md ├── js-yaml ├── resources │ └── cljsjs │ │ └── js-yaml │ │ └── common │ │ └── js-yaml.ext.js └── README.md ├── CHANGELOG.md ├── marked ├── README.md └── resources │ └── cljsjs │ └── marked │ └── common │ └── marked.ext.js ├── profile.boot ├── logentries ├── resources │ └── cljsjs │ │ └── logentries │ │ └── common │ │ └── logentries.ext.js └── README.md ├── pdfjs ├── boot-cljsjs-checksums.edn ├── resources │ └── deps.cljs └── README.md ├── test-changed.sh ├── topojson └── resources │ └── cljsjs │ └── topojson │ └── common │ └── topojson.ext.js ├── chroma └── README.md ├── dragula └── resources │ └── cljsjs │ └── dragula │ └── common │ └── dragula.ext.js ├── d3pie ├── resources │ └── cljsjs │ │ └── d3pie │ │ └── common │ │ └── d3pie.ext.js └── README.md ├── jquery-daterange-picker └── resources │ └── cljsjs │ └── common │ └── jquery-daterange-picker.ext.js ├── d3-tip ├── resources │ └── cljsjs │ │ └── d3-tip │ │ └── common │ │ └── d3-tip.ext.js └── README.md ├── element-resize-detector └── resources │ └── cljsjs │ └── element-resize-detector │ └── common │ └── element-resize-detector.ext.js ├── localforage └── README.md ├── ISSUE_TEMPLATE.md ├── bootstrap-notify └── resources │ └── cljsjs │ └── boostrap-notify │ └── common │ └── bootstrap-notify.ext.js ├── colorbrewer └── README.md ├── prop-types └── resources │ └── deps.cljs ├── react-debounce-input └── README.md ├── stats ├── resources │ └── cljsjs │ │ └── stats │ │ └── common │ │ └── stats.ext.js └── README.md ├── d3-selection-multi └── resources │ └── cljsjs │ └── d3-selection-multi │ └── common │ └── d3-selection-multi.ext.js ├── graphiql └── resources │ └── cljsjs │ └── graphiql │ └── common │ └── graphiql.ext.js ├── csv ├── resources │ └── cljsjs │ │ └── common │ │ └── csv.ext.js └── README.md ├── draft-js └── README.md ├── leaflet └── boot-cljsjs-checksums.edn ├── mithril └── README.md ├── react-burger-menu └── resources │ └── cljsjs │ └── react-burger-menu │ └── common │ └── react-burger-menu.ext.js ├── react-leaflet └── boot-cljsjs-checksums.edn ├── pluralize ├── resources │ └── cljsjs │ │ └── pluralize │ │ └── common │ │ └── pluralize.ext.js └── README.md ├── deploy-changed.sh ├── merge └── README.md ├── mustache ├── resources │ └── cljsjs │ │ └── mustache │ │ └── common │ │ └── mustache.ext.js └── README.md ├── platform ├── resources │ └── cljsjs │ │ └── platform │ │ └── common │ │ └── platform.ext.js └── README.md ├── url-template └── resources │ └── cljsjs │ └── url-template │ └── common │ └── uri-template.ext.js ├── d3geo └── README.md ├── ladda ├── resources │ └── cljsjs │ │ └── ladda │ │ └── common │ │ └── ladda.ext.js └── README.md ├── pubnub └── README.md ├── chessground └── README.md ├── react-three-renderer └── resources │ └── deps.cljs ├── PULL_REQUEST_TEMPLATE.md ├── oboe ├── resources │ └── cljsjs │ │ └── oboe │ │ └── common │ │ └── oboe.ext.js └── README.md ├── formsy-material-ui └── resources │ └── cljsjs │ └── formsy-material-ui │ └── common │ └── formsy-material-ui.ext.js ├── aphrodite └── resources │ └── cljsjs │ └── aphrodite │ └── common │ └── aphrodite.ext.js ├── noty └── resources │ └── cljsjs │ └── noty │ └── common │ └── noty.ext.js ├── turndown └── README.md ├── typeahead-bundle └── resources │ └── cljsjs │ └── typeahead-bundle │ └── common │ └── typeahead-bundle.ext.js ├── nodejs-externs └── README.md ├── bootstrap-typeahead └── resources │ └── cljsjs │ └── bootstrap-typeahead │ └── common │ └── bootstrap-typeahead.ext.js ├── react-reorderable └── resources │ └── cljsjs │ └── react-reorderable │ └── common │ └── react-reorderable.ext.js ├── chess.js ├── resources │ └── cljsjs │ │ └── chess.js │ │ └── common │ │ └── chess.js.ext.js └── README.md ├── d3-scale-chromatic └── README.md ├── reactable └── resources │ └── cljsjs │ └── reactable │ └── common │ └── reactable.ext.js ├── ace └── README.md ├── pica └── README.md ├── rx └── README.md ├── ajv └── README.md ├── big └── README.md ├── gun └── README.md ├── jed └── README.md ├── mui └── README.md ├── tv4 └── README.md ├── wad └── README.md ├── babylon └── README.md ├── barn └── README.md ├── cropper └── README.md ├── flyd └── README.md ├── fuse └── README.md ├── long └── README.md ├── pikaday └── resources │ └── deps.cljs ├── skel └── README.md ├── anime └── README.md ├── bootstrap └── README.md ├── chance └── README.md ├── d3kit └── README.md ├── device └── README.md ├── hammer └── README.md ├── jquery └── README.md ├── jsdiff └── README.md ├── neo4j └── README.md ├── parse └── README.md ├── ramda └── README.md ├── react-pose └── README.md ├── svgjs └── README.md ├── xxhash └── README.md ├── dropbox └── README.md ├── epubjs └── README.md ├── introjs └── README.md ├── jquery_1 └── README.md ├── jquery_2 └── README.md ├── labella └── README.md ├── lodash └── README.md ├── mathjax └── README.md ├── paperjs └── README.md ├── phoenix └── README.md ├── pusher └── README.md ├── radium └── README.md ├── rrule └── README.md ├── snapsvg └── README.md ├── soundjs └── README.md ├── tabletop └── README.md ├── uikit └── README.md ├── victory └── README.md ├── xregexp └── README.md ├── benchmark └── README.md ├── d3-cloud └── README.md ├── dynamics └── README.md ├── esprima └── README.md ├── fela └── resources │ └── cljsjs │ └── fela │ └── common │ └── fela.ext.js ├── hls └── README.md ├── oauthio └── README.md ├── opentype └── README.md ├── resize-observer-polyfill └── resources │ └── cljsjs │ └── resize-observer-polyfill │ └── common │ └── resize-observer-polyfill.ext.js ├── scrollify └── resources │ └── cljsjs │ └── scrollify │ └── common │ └── scrollify.ext.js ├── amplitude └── README.md ├── bignumber └── README.md ├── billboard └── README.md ├── chemdoodle └── README.md ├── cytoscape └── README.md ├── fastclick └── README.md └── jquery-ui └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eccjs/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /paho/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /web3/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /ipfs-api/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /codeflask/resources/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/.gitignore: -------------------------------------------------------------------------------- 1 | target/** 2 | -------------------------------------------------------------------------------- /iconv-lite/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /zero-ex/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /dropzone/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /firebaseui/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /openlayers/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /youtube/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /react-xmasonry/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /qs/buildjs/qs.js: -------------------------------------------------------------------------------- 1 | module.exports = require('qs') 2 | -------------------------------------------------------------------------------- /tonejs/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nrepl-history 3 | -------------------------------------------------------------------------------- /iota-mam/resources/cljsjs/iota-mam/common/iota-mam.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dom-to-image/resources/cljsjs/dom-to-image/dom-to-image.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kemia/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:libs ["cljsjs/kemia/development/"]} 2 | -------------------------------------------------------------------------------- /heap/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/heap.ext.js"]} 2 | -------------------------------------------------------------------------------- /iconv-lite/buildjs/iconv.js: -------------------------------------------------------------------------------- 1 | module.exports = require('iconv-lite') 2 | -------------------------------------------------------------------------------- /kakao/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/kakao.ext.js"]} 2 | -------------------------------------------------------------------------------- /kjua/resources/cljsjs/common/kjua.ext.js: -------------------------------------------------------------------------------- 1 | var kjua = function () {}; 2 | -------------------------------------------------------------------------------- /timeago/resources/cljsjs/timeago/common/timeago.ext.js: -------------------------------------------------------------------------------- 1 | var timeago; 2 | -------------------------------------------------------------------------------- /vimeo/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/vimeo.ext.js"]} 2 | -------------------------------------------------------------------------------- /dygraph/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/dygraph.ext.js"]} 2 | -------------------------------------------------------------------------------- /stripe/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/stripe.ext.js"]} 2 | -------------------------------------------------------------------------------- /stripe_2/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/stripe.ext.js"]} 2 | -------------------------------------------------------------------------------- /youtube/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/youtube.ext.js"]} 2 | -------------------------------------------------------------------------------- /chosen/resources/cljsjs/chosen/common/chosen.ext.js: -------------------------------------------------------------------------------- 1 | function chosen(arg1) {}; 2 | -------------------------------------------------------------------------------- /linkify/resources/cljsjs/linkify/common/linkify-html.ext.js: -------------------------------------------------------------------------------- 1 | var linkifyHtml = {} -------------------------------------------------------------------------------- /linkify/resources/cljsjs/linkify/common/linkify-string.ext.js: -------------------------------------------------------------------------------- 1 | var linkifyStr = {} -------------------------------------------------------------------------------- /datatables.net-bs/resources/cljsjs/datatables.net-bs/common/datatables.net-bs.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /incremental-dom/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:libs ["cljsjs/incremental-dom/development/"]} 2 | -------------------------------------------------------------------------------- /linkify/resources/cljsjs/linkify/common/linkify-element.ext.js: -------------------------------------------------------------------------------- 1 | var linkifyElement = {} -------------------------------------------------------------------------------- /linkify/resources/cljsjs/linkify/common/linkify-jquery.ext.js: -------------------------------------------------------------------------------- 1 | var linkifyElement = {} -------------------------------------------------------------------------------- /react-table/resources/cljsjs/react-table/common/react-table.ext.js: -------------------------------------------------------------------------------- 1 | var ReactTable = {}; -------------------------------------------------------------------------------- /extern-test.js: -------------------------------------------------------------------------------- 1 | var hello = "Externs should be okay if no warnings or errors occured"; 2 | -------------------------------------------------------------------------------- /facebook/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/facebook_javascript_sdk.ext.js"]} 2 | -------------------------------------------------------------------------------- /google-maps/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/common/google_maps_api_v3.ext.js"]} 2 | -------------------------------------------------------------------------------- /pinterest/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/pinterest/common/pinterest.ext.js"]} 2 | -------------------------------------------------------------------------------- /qart/resources/cljsjs/common/qart.ext.js: -------------------------------------------------------------------------------- 1 | var QArt = {}; 2 | QArt.make = function(el) {}; 3 | -------------------------------------------------------------------------------- /react-datetime/resources/cljsjs/react-datetime/common/react-datetime.ext.js: -------------------------------------------------------------------------------- 1 | var Datetime = {}; -------------------------------------------------------------------------------- /simplex-solver/resources/simplex-solver.inc.js: -------------------------------------------------------------------------------- 1 | window.simplex = require('./src/index'); 2 | -------------------------------------------------------------------------------- /xlsx/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | window['XLSX'] = require('xlsx'); 3 | })(); 4 | -------------------------------------------------------------------------------- /filesaverjs/resources/cljsjs/filesaverjs/common/filesaverjs.ext.js: -------------------------------------------------------------------------------- 1 | var saveAs = function () {} 2 | -------------------------------------------------------------------------------- /react-highlight/resources/cljsjs/react-highlight/common/react-highlight.ext.js: -------------------------------------------------------------------------------- 1 | var Highlight = {}; -------------------------------------------------------------------------------- /react-truncate/resources/cljsjs/react-truncate/common/react-truncate.ext.js: -------------------------------------------------------------------------------- 1 | var ReactTruncate = {} -------------------------------------------------------------------------------- /typedjs/resources/cljsjs/typedjs/common/typedjs.ext.js: -------------------------------------------------------------------------------- 1 | $.prototype.typed = function(arg) {}; 2 | -------------------------------------------------------------------------------- /libphonenumber/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:libs ["cljsjs/libphonenumber/development"] 2 | :externs []} 3 | -------------------------------------------------------------------------------- /linkify/resources/cljsjs/linkify/common/linkify-react.ext.js: -------------------------------------------------------------------------------- 1 | var Linkify = {} 2 | var LinkifyReact = {} -------------------------------------------------------------------------------- /scrollex/resources/cljsjs/scrollex/common/scrollex.ext.js: -------------------------------------------------------------------------------- 1 | $.prototype.scrollex = function() {}; 2 | -------------------------------------------------------------------------------- /trello-client/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/trello-client/common/trello-client.ext.js"]} 2 | -------------------------------------------------------------------------------- /webcomponents/resources/cljsjs/webcomponents/common/WeakMap.ext.js: -------------------------------------------------------------------------------- 1 | var WeakMap = function () {}; 2 | -------------------------------------------------------------------------------- /datatables.net-buttons-bs/resources/cljsjs/datatables.net-buttons-bs/common/datatables.net-buttons-bs.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables.net-responsive/resources/cljsjs/datatables.net-responsive/common/datatables.net-responsive.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables.net-select-bs/resources/cljsjs/datatables.net-select-bs/common/datatables.net-select-bs.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/production/elk.min.inc.js" "75CAEECDDFF120385BB198C7785C0EDF"} 2 | -------------------------------------------------------------------------------- /fela-preset-dev/resources/cljsjs/fela-preset-dev/common/fela-preset-dev.ext.js: -------------------------------------------------------------------------------- 1 | var FelaPresetDev = []; 2 | -------------------------------------------------------------------------------- /fela-preset-web/resources/cljsjs/fela-preset-web/common/fela-preset-web.ext.js: -------------------------------------------------------------------------------- 1 | var FelaPresetWeb = []; 2 | -------------------------------------------------------------------------------- /material-colors/resources/cljsjs/material-colors/common/material-colors.ext.js: -------------------------------------------------------------------------------- 1 | var materialColors = {}; 2 | -------------------------------------------------------------------------------- /object-assign-shim/resources/cljsjs/object-assign-shim/common/object-assign-shim.ext.js: -------------------------------------------------------------------------------- 1 | Object.assign; 2 | -------------------------------------------------------------------------------- /sticky/resources/cljsjs/sticky/common/sticky.ext.js: -------------------------------------------------------------------------------- 1 | /** @interface */ 2 | function Sticky(element) {} 3 | -------------------------------------------------------------------------------- /webcomponents-lite/resources/cljsjs/webcomponents/common/WeakMap.ext.js: -------------------------------------------------------------------------------- 1 | var WeakMap = function () {}; 2 | -------------------------------------------------------------------------------- /datatables.net-keytable-bs/resources/cljsjs/datatables.net-keytable-bs/common/datatables.net-keytable-bs.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /download/resources/cljsjs/download/common/common.ext.js: -------------------------------------------------------------------------------- 1 | function download(data, strFileName, strMimeType) {} 2 | -------------------------------------------------------------------------------- /iscroll/resources/cljsjs/iscroll/common/iscroll.ext.js: -------------------------------------------------------------------------------- 1 | /** @interface */ 2 | function IScroll(element) {} 3 | -------------------------------------------------------------------------------- /jquery-dropotron/resources/cljsjs/common/jquery-dropotron.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.dropotron = function() {}; 2 | -------------------------------------------------------------------------------- /markdown/resources/cljsjs/common/markdown.ext.js: -------------------------------------------------------------------------------- 1 | var markdown = {}; 2 | markdown.toHTML = function () {}; 3 | -------------------------------------------------------------------------------- /material-ui_0/resources/cljsjs/material-ui/common/material-ui-svg-icons.ext.js: -------------------------------------------------------------------------------- 1 | var MaterialUISvgIcons = {} 2 | -------------------------------------------------------------------------------- /rebass/resources/rebass-0.3.2/src/entry.js: -------------------------------------------------------------------------------- 1 | var Rebass = require('./'); 2 | 3 | module.exports = Rebass; 4 | 5 | -------------------------------------------------------------------------------- /semantic-ui-react/resources/cljsjs/semantic-ui-react/common/semantic-ui-react.ext.js: -------------------------------------------------------------------------------- 1 | var semanticUIReact = {}; -------------------------------------------------------------------------------- /datatables.net-responsive-bs/resources/cljsjs/datatables.net-responsive-bs/common/datatables.net-responsive-bs.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fela-dom/resources/cljsjs/fela-dom/common/fela-dom.ext.js: -------------------------------------------------------------------------------- 1 | var FelaDOM = {}; 2 | FelaDOM.render = function(){}; 3 | -------------------------------------------------------------------------------- /google-platformjs-extern/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:externs ["cljsjs/google-platformjs-extern/common/platform.ext.js"]} 2 | -------------------------------------------------------------------------------- /jquery-timepicker/resources/cljsjs/common/jquery-timepicker.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.timepicker = function() {}; 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .boot 2 | */target 3 | .nrepl-* 4 | node_modules 5 | .idea 6 | .DS_Store 7 | out/ 8 | closure-compiler.jar 9 | -------------------------------------------------------------------------------- /classnames/resources/cljsjs/common/classnames.ext.js: -------------------------------------------------------------------------------- 1 | /** @nosideeffects */ 2 | var classNames = function(classes){}; 3 | -------------------------------------------------------------------------------- /datatables.net-col-reorder-bs/resources/cljsjs/datatables.net-col-reorder-bs/common/datatables.net-col-reorder-bs.ext.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diffdom/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/diffdom/development/diffdom.inc.js" 2 | "1D12B046DFAE4184CC43A6490D5A455C"} 3 | -------------------------------------------------------------------------------- /optiscroll/resources/cljsjs/optiscroll/common/optiscroll.ext.js: -------------------------------------------------------------------------------- 1 | /** @interface */ 2 | function Optiscroll(element) {} 3 | -------------------------------------------------------------------------------- /preact-compat/resources/cljsjs/preact-compat/common/react.inc.js: -------------------------------------------------------------------------------- 1 | window.React = window.ReactDOM = window.preactCompat; 2 | -------------------------------------------------------------------------------- /create-react-class/resources/cljsjs/create-react-class/common/create-react-class.ext.js: -------------------------------------------------------------------------------- 1 | function createReactClass() {} 2 | 3 | -------------------------------------------------------------------------------- /hunt/resources/cljsjs/common/hunt.ext.js: -------------------------------------------------------------------------------- 1 | var hunt = { 2 | "clear": function () {}, 3 | "trigger": function () {} 4 | }; 5 | -------------------------------------------------------------------------------- /js-joda-locale-en-us/resources/cljsjs/js-joda-locale-en-us/common/js-joda-locale.ext.js: -------------------------------------------------------------------------------- 1 | var JSJodaLocale; 2 | JSJodaLocale.Locale -------------------------------------------------------------------------------- /material-ui-chip-input/resources/cljsjs/material-ui-chip-input/common/material-ui-chip-input.ext.js: -------------------------------------------------------------------------------- 1 | var MaterialUIChipInput = {} -------------------------------------------------------------------------------- /qs/resources/cljsjs/qs/common/qs.ext.js: -------------------------------------------------------------------------------- 1 | var qs = { 2 | "parse": function () {}, 3 | "stringify": function () {}, 4 | }; 5 | -------------------------------------------------------------------------------- /react-vis/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-vis/common/react-vis.inc.js" 2 | "A8265C8917FBE6E618B8BAD5711DA537"} 3 | -------------------------------------------------------------------------------- /apollo-fetch/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/apollo-fetch/common/apollo-fetch.inc.js" 2 | "BB0A8F880113FDC9024D30EA3DF3FD50"} 3 | -------------------------------------------------------------------------------- /material-ui-icons/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | window["MaterialUIIcons"] = require('@material-ui/icons'); 3 | })(); 4 | -------------------------------------------------------------------------------- /pouchdb-live-find/resources/cljsjs/pouchdb-live-find/common/pouchdb-live-find.ext.js: -------------------------------------------------------------------------------- 1 | PouchDB.prototype.liveFind = function () {}; 2 | -------------------------------------------------------------------------------- /three-decalgeometry/resources/cljsjs/three-decalgeometry/common/THREE.DecalGeometry.ext.js: -------------------------------------------------------------------------------- 1 | THREE.DecalGeometry = function () {}; 2 | -------------------------------------------------------------------------------- /emoji-mart/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/emoji-mart/production/emoji-mart.min.inc.js" 2 | "6731ECAA625A0F814F8119045642F8B1"} 3 | -------------------------------------------------------------------------------- /fela-plugin-prefixer/resources/cljsjs/fela-plugin-prefixer/common/fela-plugin-prefixer.ext.js: -------------------------------------------------------------------------------- 1 | var FelaPluginPrefixer = function(){}; 2 | -------------------------------------------------------------------------------- /react-player/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-player/development/react-player.inc.js" 2 | "73D4B76B66365AFDCBB8CB254EBABEE3"} 3 | -------------------------------------------------------------------------------- /ag-grid-react/resources/cljsjs/ag-grid-react/common/ag-grid-react.ext.js: -------------------------------------------------------------------------------- 1 | var agGridReact = { 2 | "AgGridReact": function () {}, 3 | }; 4 | -------------------------------------------------------------------------------- /react-lifecycles-compat/resources/cljsjs/react-lifecycles-compat/common/react-lifecycles-compat.ext.js: -------------------------------------------------------------------------------- 1 | function reactLifecyclesCompat() {} 2 | -------------------------------------------------------------------------------- /web-animations/resources/cljsjs/web-animations/common/web-animations-js.ext.js: -------------------------------------------------------------------------------- 1 | Element.prototype.animate = function(frames, options) {}; 2 | -------------------------------------------------------------------------------- /proton-js/resources/cljsjs/proton/common/proton.ext.js: -------------------------------------------------------------------------------- 1 | // This extern file was invalid (original source?), it should be fixed in next version 2 | -------------------------------------------------------------------------------- /react-json-view/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-json-view/development/react-json-view.inc.js" 2 | "4C51DCB5CCE7BB301DC2375022B3B117"} 3 | -------------------------------------------------------------------------------- /semantic-ui-react/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/semantic-ui-react/common/semantic-ui-react.inc.js" 2 | "C5E7AD5BC5378AAFC945BC16972FB7A7"} 3 | -------------------------------------------------------------------------------- /smoothscroll-polyfill/resources/cljsjs/smoothscroll-polyfill/common/smoothscroll_polyfill.ext.js: -------------------------------------------------------------------------------- 1 | /** @interface */ 2 | function polyfill() {} 3 | -------------------------------------------------------------------------------- /react-color/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var ReactColor = require('./src/index.js'); 3 | module.exports = ReactColor.default; 4 | })(); 5 | -------------------------------------------------------------------------------- /react-google-maps/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-google-maps/development/react-google-maps.inc.js" 2 | "C18BC11E0B82B7BA1B677C59EA0F93DC"} 3 | -------------------------------------------------------------------------------- /react-grid-layout/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-grid-layout/development/react-grid-layout.inc.js" 2 | "DD9DB62C9709EB364D2008FDFA65A410"} 3 | -------------------------------------------------------------------------------- /react-highlight/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var Highlight = require('./src/index.js'); 3 | module.exports = Highlight.default; 4 | })(); 5 | -------------------------------------------------------------------------------- /juration/resources/cljsjs/juration/common/juration.ext.js: -------------------------------------------------------------------------------- 1 | var juration = { 2 | "parse": function () {}, 3 | "stringify": function () {} 4 | }; 5 | -------------------------------------------------------------------------------- /libtess/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/libtess 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/libtess "1.2.2-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | -------------------------------------------------------------------------------- /parinfer/resources/cljsjs/parinfer/common/parinfer.ext.js: -------------------------------------------------------------------------------- 1 | var parinfer = {}; 2 | 3 | parinfer.indentMode; 4 | parinfer.parenMode; 5 | parinfer.smartMode; 6 | -------------------------------------------------------------------------------- /qs/buildjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "qs": "^6.5.2" 4 | }, 5 | "devDependencies": { 6 | "browserify": "^14.1.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /bootstrap-treeview/resources/cljsjs/common/bootstrap-treeview.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @return {jQuery} 3 | */ 4 | jQuery.prototype.treeview = function() {}; 5 | 6 | -------------------------------------------------------------------------------- /immutable/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/immutable 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/immutable "3.8.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | -------------------------------------------------------------------------------- /react-timer-mixin/resources/cljsjs/react-timer-mixin/common/react-timer-mixin.ext.js: -------------------------------------------------------------------------------- 1 | 2 | var TimerMixin = {}; 3 | TimerMixin.componentWillUnmount = function () {}; -------------------------------------------------------------------------------- /kjua/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs 2 | [{:file "cljsjs/common/kjua.inc.js", 3 | :provides ["cljsjs.kjua"]}], 4 | :externs ["cljsjs/common/kjua.ext.js"]} 5 | -------------------------------------------------------------------------------- /cortical-io/resources/cljsjs/cortical-io/common/cortical-io.ext.js: -------------------------------------------------------------------------------- 1 | var retinaSDK = { 2 | "FullClient": function () {}, 3 | "LiteClient": function () {} 4 | } 5 | -------------------------------------------------------------------------------- /hunt/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs 2 | [{:file "cljsjs/development/hunt.inc.js", 3 | :provides ["cljsjs.hunt"]}], 4 | :externs ["cljsjs/common/hunt.ext.js"]} 5 | -------------------------------------------------------------------------------- /quill/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/quill/quill.inc.js" "7D2C0507644124A15ABFA868F6DC050C", 2 | "cljsjs/quill/quill.min.inc.js" "8D9593A6CF1CEB87B98DDAC636C3E572"} 3 | -------------------------------------------------------------------------------- /codeflask/README.md: -------------------------------------------------------------------------------- 1 | ## cljs/codeflask 2 | 3 | [CodeFlask](https://github.com/kazzkiq/CodeFlask) 4 | 5 | ``` 6 | [cljsjs/codeflask "1.2.1-0"] ;; latest release 7 | ``` 8 | 9 | -------------------------------------------------------------------------------- /react-bootstrap-datetimepicker/resources/cljsjs/react-bootstrap-datetimepicker/common/react-bootstrap-datetimepicker.ext.js: -------------------------------------------------------------------------------- 1 | var ReactBootstrapDatetimepicker = function() {}; 2 | -------------------------------------------------------------------------------- /bootstrap-toggle/resources/cljsjs/bootstrap-toggle/common/bootstrap-toggle.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @return {jQuery} 3 | */ 4 | jQuery.prototype.bootstrapToggle = function() {}; 5 | 6 | -------------------------------------------------------------------------------- /js-beautify/resources/cljsjs/js-beautify/common/js-beautify.ext.js: -------------------------------------------------------------------------------- 1 | var js_beautify = function () {}; 2 | var html_beautify = function () {}; 3 | var css_beautify = function () {}; 4 | -------------------------------------------------------------------------------- /kiwijs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/kiwi.inc.js" "63EDF6085983C5884EF5E719778D26B5", 2 | "cljsjs/production/kiwi.min.inc.js" "6DD69870C40A3C118D2B09F7B3053239"} 3 | -------------------------------------------------------------------------------- /msgpack-js-browser/resources/cljsjs/msgpack-js-browser/common/msgpack-js-browser.ext.js: -------------------------------------------------------------------------------- 1 | var msgpack = {}; 2 | msgpack.encode = function(){}; 3 | msgpack.decode = function(){}; 4 | -------------------------------------------------------------------------------- /papaparse/resources/cljsjs/papaparse/common/papaparse.ext.js: -------------------------------------------------------------------------------- 1 | 2 | var Papa = {}; 3 | Papa.parse = function (csvData, config) {}; 4 | Papa.unparse = function (csvData, config) {}; 5 | -------------------------------------------------------------------------------- /vega/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/vega.inc.js" "2B16C8690FE941B0D7EDF5CC5D58562E", 2 | "cljsjs/production/vega.min.inc.js" "2F25DE6B2BA30B02F110C44988899FC0"} 3 | -------------------------------------------------------------------------------- /apollo-fetch/resources/cljsjs/apollo-fetch/common/apollo-fetch.ext.js: -------------------------------------------------------------------------------- 1 | var apolloFetch = { 2 | "createApolloFetch": function() {}, 3 | "constructDefaultOptions": function() {} 4 | } 5 | -------------------------------------------------------------------------------- /c3/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/c3/development/c3.inc.js" "CF869F7804223B81012FF3719027CAA5", 2 | "cljsjs/c3/production/c3.min.inc.js" 3 | "F0BB5914E23CEE2E718BE03733ACAC85"} 4 | -------------------------------------------------------------------------------- /d3/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/d3/development/d3.inc.js" "32241624930B56B2ECC1952E4276A644", 2 | "cljsjs/d3/production/d3.min.inc.js" 3 | "0589331F8F4BF99216FAA31D79CC6D09"} 4 | -------------------------------------------------------------------------------- /ipfs-api/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/ipfs.inc.js" "DA19DDADBFC0B80A016AD04099A2B355", 2 | "cljsjs/production/ipfs.min.inc.js" "0541F3DE5402A15543AFAB56DAD882FD"} 3 | -------------------------------------------------------------------------------- /lamejs/resources/cljsjs/lamejs/common/lamejs.ext.js: -------------------------------------------------------------------------------- 1 | var lamejs = {}; 2 | 3 | lamejs.Mp3Encoder = function (channels, samplerate, kbps) {}; 4 | 5 | lamejs.WavHeader = function () {}; 6 | -------------------------------------------------------------------------------- /material-ui-chip-input/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var MaterialUIChipInput = require('./src/ChipInput.js'); 3 | module.exports = MaterialUIChipInput.default; 4 | })(); 5 | -------------------------------------------------------------------------------- /p5/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/p5/development/p5.inc.js" "BFE791FCEE285A2255E8FC969EB911B1", 2 | "cljsjs/p5/production/p5.min.inc.js" 3 | "58AE87BE3BA2B7569FC1A1E3DF9AE06E"} 4 | -------------------------------------------------------------------------------- /dexie/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/dexie.inc.js" "5C5F115C32422BD733E2FBD3ECCF44BD", 2 | "cljsjs/production/dexie.min.inc.js" 3 | "E11471D166AB9985FCC3DEFCB6E1BA34"} 4 | -------------------------------------------------------------------------------- /enquire/resources/cljsjs/enquire/common/enquire.ext.js: -------------------------------------------------------------------------------- 1 | var enquire = { 2 | "register": function () {}, 3 | "listen": function () {}, 4 | "unregister": function () {} 5 | } 6 | -------------------------------------------------------------------------------- /sinon/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/sinon.inc.js" "4472AA7C035F0323B1DE7846B799D303", 2 | "cljsjs/production/sinon.min.inc.js" 3 | "3B311FF822A91EB024D666F2AE31F5AC"} 4 | -------------------------------------------------------------------------------- /spin/resources/cljsjs/spin/common/spin.ext.js: -------------------------------------------------------------------------------- 1 | /** @interface */ 2 | function Spinner(opts) {} 3 | Spinner.prototype.spin = function(target) {}; 4 | Spinner.prototype.stop = function() {}; 5 | -------------------------------------------------------------------------------- /husl/resources/cljsjs/husl/common/husl.ext.js: -------------------------------------------------------------------------------- 1 | var HUSL = {}; 2 | HUSL.fromRGB = function() {}; 3 | HUSL.fromHex = function() {}; 4 | HUSL.toRGB = function() {}; 5 | HUSL.toHex = function() {}; 6 | -------------------------------------------------------------------------------- /solidity-sha3/resources/cljsjs/solidity-sha3/common/solidity-sha3.ext.js: -------------------------------------------------------------------------------- 1 | var SoliditySha3 = { 2 | sha3: function() {}, 3 | sha3withsize: function() {}, 4 | sha3num: function() {} 5 | }; -------------------------------------------------------------------------------- /vis/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/vis/development/vis.inc.js" 2 | "2731F262D76D233E2F3E4C1C1905AE99", 3 | "cljsjs/vis/production/vis.min.inc.js" 4 | "C642131FD65CA91296C9A0B264BB4187"} 5 | -------------------------------------------------------------------------------- /antd/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/antd/development/antd.inc.js" 2 | "CAE70639702074F664C1BFB89E7C579D", 3 | "cljsjs/antd/production/antd.min.inc.js" 4 | "B3401A6B5BFB33C99B937DB352C0AC95"} 5 | -------------------------------------------------------------------------------- /jsts/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/jsts/development/jsts.inc.js" 2 | "62106687EF0EA6F477C517F4B7BF2752", 3 | "cljsjs/jsts/production/jsts.min.inc.js" 4 | "1F53415DD7688E785E9D5484729E9130"} 5 | -------------------------------------------------------------------------------- /pixi/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/pixi/development/pixi.inc.js" 2 | "E2BBF3A09CC41F3F3CF5557F0CF26B90", 3 | "cljsjs/pixi/production/pixi.min.inc.js" 4 | "D53A57D006EB8DE14E75A28DCD5CAC50"} 5 | -------------------------------------------------------------------------------- /solidity-sha3/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var SoliditySha3 = require('./dist/index.js'); 3 | module.exports = SoliditySha3; 4 | module.exports.sha3 = SoliditySha3.default; 5 | })(); 6 | -------------------------------------------------------------------------------- /sortable/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/sortable.inc.js" 2 | "46CB0A35958D696A8A8CBB0EBEC3279E", 3 | "cljsjs/production/sortable.min.inc.js" 4 | "5AB1248247922E40AA0744058BF6885C"} 5 | -------------------------------------------------------------------------------- /tfjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/tfjs/development/tfjs.inc.js" 2 | "9AD891950DAA550C8505EF8982ACFAEF", 3 | "cljsjs/tfjs/production/tfjs.min.inc.js" 4 | "9AD891950DAA550C8505EF8982ACFAEF"} 5 | -------------------------------------------------------------------------------- /tock/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/tock/development/tock.inc.js" 2 | "5BD332E6F9E37317D92B85C4131BCA46", 3 | "cljsjs/tock/production/tock.min.inc.js" 4 | "44ABA8CA78AE523B4B26E5F78E320C44"} 5 | -------------------------------------------------------------------------------- /xlsx/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/xlsx/development/xlsx.inc.js" 2 | "DABAA6A228946F4051DEE56944D5D838", 3 | "cljsjs/xlsx/production/xlsx.min.inc.js" 4 | "B96C4543856680CE27CEE999B795D3EF"} 5 | -------------------------------------------------------------------------------- /xpath-dom/resources/cljsjs/xpath-dom/common/xpath-dom.ext.js: -------------------------------------------------------------------------------- 1 | var find = function () {}; 2 | var findAll = function () {}; 3 | var getUniqueXPath = function () {}; 4 | var getXPath = function () {}; 5 | -------------------------------------------------------------------------------- /auth0/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/auth0/development/auth0.inc.js" 2 | "537F078405FD748A55A985B4D60B46E5", 3 | "cljsjs/auth0/production/auth0.min.inc.js" 4 | "9AB7B9BC665FBDDD388A8FC4EC43A1FB"} 5 | -------------------------------------------------------------------------------- /dialog-polyfill/resources/cljsjs/dialog_polyfill/common/dialog_polyfill.ext.js: -------------------------------------------------------------------------------- 1 | var dialogPolyfill = { 2 | "forceRegisterDialog": function(element) {}, 3 | "registerDialog": function(element) {} 4 | } 5 | -------------------------------------------------------------------------------- /enzyme/resources/cljsjs/enzyme/common/enzyme.ext.js: -------------------------------------------------------------------------------- 1 | var enzyme = {}; 2 | enzyme.render = function(c) {}; 3 | enzyme.shallow = function(node, options) {}; 4 | enzyme.mount = function(node, options) {}; 5 | -------------------------------------------------------------------------------- /flot/resources/cljsjs/common/flot.plugins.time.ext.js: -------------------------------------------------------------------------------- 1 | 2 | jQuery.prototype.plot.formatDate = function (d, fmt, monthNames, dayNames) {}; 3 | jQuery.prototype.plot.dateGenerator = function (ts, opts) {}; 4 | -------------------------------------------------------------------------------- /howler/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/howler/production/howler.min.inc.js" 2 | "06A921E548CBA5192D3E1F9AE0E8DBB5", 3 | "cljsjs/howler/common/howler.ext.js" 4 | "0F73B4C89601732E64EB320C6F3DE0F8"} 5 | -------------------------------------------------------------------------------- /katex/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/katex/development/katex.inc.js" 2 | "1CBDDAEEFA4A3224FFA0E6F628A57E18", 3 | "cljsjs/katex/production/katex.min.inc.js" 4 | "E4B36CD4A46CB51E4DDFFC522DE0C0EB"} 5 | -------------------------------------------------------------------------------- /ocean/resources/cljsjs/three-water-material/common/three-water-material.ext.js: -------------------------------------------------------------------------------- 1 | THREE.Water = function (renderer, camera, scene, options) {}; 2 | THREE.Water.prototype.render = function (isTempTexture) {}; 3 | -------------------------------------------------------------------------------- /raven/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/raven/development/raven.inc.js" 2 | "E2B0F8ADCBE9EE70195C26DDD76FD4FE", 3 | "cljsjs/raven/production/raven.min.inc.js" 4 | "E6A55F0617A46B50072A96D9AA1ACAEC"} 5 | -------------------------------------------------------------------------------- /rbush/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/rbush/development/rbush.inc.js" 2 | "3933EBC939AEF65F2F73A339FB5F6701", 3 | "cljsjs/rbush/production/rbush.min.inc.js" 4 | "4D3BF5B4A883FD2940C1D7B005640FBB"} 5 | -------------------------------------------------------------------------------- /redux/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/redux/development/redux.inc.js" 2 | "0B7C02E6D86F60EFE94A61FA1BE4F761", 3 | "cljsjs/redux/production/redux.min.inc.js" 4 | "379713ED81A85C2837401C7449935081"} 5 | -------------------------------------------------------------------------------- /slate/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/slate/development/slate.inc.js" 2 | "3255B0A5E8ECFD761BA16904B240C5C2", 3 | "cljsjs/slate/production/slate.min.inc.js" 4 | "AE22696418D8B8204527852217023CD2"} 5 | -------------------------------------------------------------------------------- /chartjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/chartjs/development/Chart.inc.js" 2 | "F5E0AC57E6533B0133ED76228A287121", 3 | "cljsjs/chartjs/production/Chart.min.inc.js" 4 | "97FC24605AC8278C6097B48AE533BF8A"} 5 | -------------------------------------------------------------------------------- /classnames/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/classnames.inc.js" 2 | "757D3F1F159FA90976D88E6D6120CB68", 3 | "cljsjs/production/classnames.min.inc.js" 4 | "8B144ED6552C2C090B6E519898C47514"} 5 | -------------------------------------------------------------------------------- /enzyme/resources/build/helper.js: -------------------------------------------------------------------------------- 1 | import * as enzyme from 'enzyme'; 2 | import Adapter from 'enzyme-adapter-react-16'; 3 | 4 | enzyme.configure({ adapter: new Adapter() }); 5 | 6 | global.enzyme = enzyme; 7 | -------------------------------------------------------------------------------- /jointjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/jointjs/development/joint.inc.js" 2 | "1705CE416B94F5ED6AAC9AA36027D235", 3 | "cljsjs/jointjs/production/joint.min.inc.js" 4 | "6400BB00CD70B0A838715B4D38B86C12"} 5 | -------------------------------------------------------------------------------- /jquery-confirm/resources/cljsjs/jquery-confirm/common/jquery-confirm.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.alert = function() {}; 2 | jQuery.prototype.confirm = function() {}; 3 | jQuery.prototype.dialog = function() {}; 4 | -------------------------------------------------------------------------------- /lunrjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/lunrjs/development/lunrjs.inc.js" 2 | "A5802D96E7726EDF965526075D62E86E", 3 | "cljsjs/lunrjs/production/lunrjs.min.inc.js" 4 | "544D21AE078F97EF6BA24B36F3F62EA3"} 5 | -------------------------------------------------------------------------------- /oidc-client/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/oidc-client.inc.js" 2 | "7A79A8B4CCE7A28C60B0C0CC79005C45", 3 | "cljsjs/production/oidc-client.min.inc.js" 4 | "41D0C72EA55B0A7A4A684FB16E054E1D"} 5 | -------------------------------------------------------------------------------- /plotly/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/plotly/development/plotly.inc.js" 2 | "A1B60883B3266CB35BEE07686AD53AC7", 3 | "cljsjs/plotly/production/plotly.min.inc.js" 4 | "5216D0D8DB7B15A73E3555203BC4B4E2"} 5 | -------------------------------------------------------------------------------- /socket-io-client/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/development/socket.io.inc.js" 2 | "7FA6141C17930B29470C0DD21D196CF9", 3 | "cljsjs/production/socket.io.min.inc.js" 4 | "D3EF4D4B9D94A1263F9C7469ABC3D9BA"} 5 | -------------------------------------------------------------------------------- /toastr/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/toastr/development/toastr.inc.js" 2 | "E4018D6F3414664A50B9B860E7EE9C4C", 3 | "cljsjs/toastr/production/toastr.min.inc.js" 4 | "D59436971AA13B0E0C24D4332543FBEF"} 5 | -------------------------------------------------------------------------------- /webcomponents/resources/cljsjs/webcomponents/common/WebComponents.ext.js: -------------------------------------------------------------------------------- 1 | var WebComponents = { 2 | "flags": { 3 | "type": {}, 4 | "charset": {}, 5 | "log": {}, 6 | "shadow": {} 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /auth0-lock/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/auth0-lock/development/lock.inc.js" 2 | "CF4BC25328D3F1A1213BA4E5A669C6DB", 3 | "cljsjs/auth0-lock/production/lock.min.inc.js" 4 | "EDC566693C4642D41C4E1A038B1759D4"} -------------------------------------------------------------------------------- /dygraph/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/dygraph/development/dygraph.inc.js" 2 | "C6A7FD7E65CABCA9718D6639F4D99E5A", 3 | "cljsjs/dygraph/production/dygraph.min.inc.js" 4 | "CB01EDBA9A4819798137693D2C5F6EFF"} 5 | -------------------------------------------------------------------------------- /graphql/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/graphql/development/graphql.inc.js" 2 | "B6661B988E43EC1FDC231536C87CB8CF", 3 | "cljsjs/graphql/production/graphql.min.inc.js" 4 | "690EB7F74288480AA3AE8B9A4B185FA8"} 5 | -------------------------------------------------------------------------------- /iconv-lite/buildjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "iconv-lite": "^0.4.18" 4 | }, 5 | "devDependencies": { 6 | "browserify": "^14.1.0", 7 | "uglifyify": "^3.0.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /machina/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/machina/development/machina.inc.js" 2 | "DD1B96E7B26BB4757F873B993B9C57BD", 3 | "cljsjs/machina/production/machina.min.inc.js" 4 | "35E640F9825A06564F37CBF20C42D07A"} 5 | -------------------------------------------------------------------------------- /mapbox/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/mapbox/development/mapbox-gl-dev.inc.js" 2 | "7AF9DD416B2135F47FD3557F94DD8990", 3 | "cljsjs/mapbox/production/mapbox-gl.inc.js" 4 | "6F1DB6F8E6C1F36879E35993C0749BC1"} 5 | -------------------------------------------------------------------------------- /mobile-drag-drop/resources/cljsjs/mobile-drag-drop/common/mobile-drag-drop.ext.js: -------------------------------------------------------------------------------- 1 | var MobileDragDrop = { 2 | "polyfill": function() {}, 3 | "scrollBehaviourDragImageTranslateOverride": function () {} 4 | }; 5 | -------------------------------------------------------------------------------- /myexcel/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/myexcel/development/myexcel.inc.js" 2 | "DA49A717CD138451D7A940FCC1405BF5", 3 | "cljsjs/myexcel/production/myexcel.min.inc.js" 4 | "EDDD1D140CE2981ACFA3C8B96955EC93"} 5 | -------------------------------------------------------------------------------- /popperjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/popperjs/development/popper.inc.js" 2 | "A8EB87A8850FB035EF22DB5016E0B525", 3 | "cljsjs/popperjs/production/popper.min.inc.js" 4 | "83FB8C4D9199DCE0224DA0206423106F"} 5 | -------------------------------------------------------------------------------- /proptypes/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:provides ["cljsjs.proptypes"] 2 | :file "cljsjs/proptypes/development/proptypes.inc.js"}] 3 | :externs ["cljsjs/proptypes/common/proptypes.ext.js"]} 4 | -------------------------------------------------------------------------------- /twemoji/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/twemoji/development/twemoji.inc.js" 2 | "8A6FB9053400858374294FFDE81BF81D", 3 | "cljsjs/twemoji/production/twemoji.min.inc.js" 4 | "7F3718210D72FE00B340672B1529E66E"} 5 | -------------------------------------------------------------------------------- /webcomponents-lite/resources/cljsjs/webcomponents/common/WebComponents.ext.js: -------------------------------------------------------------------------------- 1 | var WebComponents = { 2 | "flags": { 3 | "type": {}, 4 | "charset": {}, 5 | "log": {}, 6 | "shadow": {} 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /codeflask/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/codeflask/development/codeflask.inc.js" 2 | "3D841241712FC6636BC3B50C5E0E8E43", 3 | "cljsjs/codeflask/production/codeflask.inc.js" 4 | "3D841241712FC6636BC3B50C5E0E8E43"} 5 | -------------------------------------------------------------------------------- /feathers/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/feathers/development/feathers.inc.js" 2 | "20A0D63B639352C136D83D030921EE72", 3 | "cljsjs/feathers/production/feathers.min.inc.js" 4 | "FADBB7954208FFC61CCA0A26F88B1AB3"} 5 | -------------------------------------------------------------------------------- /jwt-decode/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/auth0/development/jwt-decode.inc.js" 2 | "74A104AEB285B5197FD439B47827387A", 3 | "cljsjs/auth0/production/jwt-decode.min.inc.js" 4 | "342328B154BDE5689FEF728E62AF53B0"} 5 | -------------------------------------------------------------------------------- /leaflet-polylinedecorator/resources/cljsjs/leaflet-polylinedecorator/common/leaflet-polylinedecorator.ext.js: -------------------------------------------------------------------------------- 1 | L.PosAnimation = function () {}; 2 | L.Symbol.marker = function() {}; 3 | L.polylineDecorator = function() {}; 4 | -------------------------------------------------------------------------------- /mixpanel/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/mixpanel/development/mixpanel.inc.js" 2 | "8E27691980E1F9F09329BC402E76EADA", 3 | "cljsjs/mixpanel/production/mixpanel.min.inc.js" 4 | "33BBA12F5D5570005286F11597920BA9"} 5 | -------------------------------------------------------------------------------- /recharts/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/recharts/development/recharts.inc.js" 2 | "EB985430647F6D393B2E889C39494E88", 3 | "cljsjs/recharts/production/recharts.min.inc.js" 4 | "3219E68A758C6F6B87814B11267D1FF1"} 5 | -------------------------------------------------------------------------------- /showdown/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/showdown/development/showdown.inc.js" 2 | "9021B7C15A50E066EF3424E2A3550A59", 3 | "cljsjs/showdown/production/showdown.min.inc.js" 4 | "DB406D2515B75834E2524D313E82C374"} 5 | -------------------------------------------------------------------------------- /textures/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/textures/development/textures.inc.js" 2 | "14ED87DDDDFE4F6E56B9F715F8D11CA6", 3 | "cljsjs/textures/production/textures.min.inc.js" 4 | "FD3F59384DE2DF265C15AB472A4CC392"} 5 | -------------------------------------------------------------------------------- /webslides/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/webslides/production/webslides.min.inc.js" 2 | "E1B605FE7D5464F5200CF18285706E98", 3 | "cljsjs/webslides/common/webslides.ext.js" 4 | "9280630DE2B1D283EB5871322EB6FAE9"} 5 | -------------------------------------------------------------------------------- /zxcvbn/resources/cljsjs/zxcvbn/common/zxcvbn.ext.js: -------------------------------------------------------------------------------- 1 | // see https://github.com/dropbox/zxcvbn#usage 2 | 3 | /** @interface */ 4 | function zxcvbn(password, user_inputs) {} 5 | 6 | /** @type {!zxcvbn} */ 7 | var zxcvbn; 8 | -------------------------------------------------------------------------------- /clipboard/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/clipboard/development/clipboard.inc.js" 2 | "945FC983FE7BB6FBF3D3AD76F5246B11", 3 | "cljsjs/clipboard/production/clipboard.min.inc.js" 4 | "F06C52BFDDB458AD87349ACF9FAC06C5"} 5 | -------------------------------------------------------------------------------- /d3-sankey/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/d3-sankey/development/d3-sankey.inc.js" 2 | "2470AB7F0BB92498A860C117B7C9EC48", 3 | "cljsjs/d3-sankey/production/d3-sankey.min.inc.js" 4 | "1DE9687D994C31591CF1570072D3E351"} 5 | -------------------------------------------------------------------------------- /eccjs/resources/cljsjs/common/eccjs.ext.js: -------------------------------------------------------------------------------- 1 | var ecc = {}; 2 | ecc.ENC_DEC = {} 3 | ecc.generate = function(){} 4 | ecc.encrypt = function(){} 5 | ecc.decrypt = function(){} 6 | ecc.sign = function(){} 7 | ecc.verify = function(){} -------------------------------------------------------------------------------- /flatpickr/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/flatpickr/development/flatpickr.inc.js" 2 | "037983808C3EFEA388387D58B8C12028", 3 | "cljsjs/flatpickr/production/flatpickr.min.inc.js" 4 | "84BD8DAF729E4BB36C67B4DC29D5DF8F"} 5 | -------------------------------------------------------------------------------- /highstock/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/highstock/development/highstock.inc.js" 2 | "84DCB7C171C60AA6E85EBBE4F1F71C95", 3 | "cljsjs/highstock/production/highstock.min.inc.js" 4 | "C3892354036EB7BECE0F94AB42A51780"} 5 | -------------------------------------------------------------------------------- /lz-string/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/lz-string/development/lz-string.inc.js" 2 | "CF08AF206B328364B4553BCD7A9D0FC6", 3 | "cljsjs/lz-string/production/lz-string.min.inc.js" 4 | "109C13D75D0B6FC6440D3E98F803D396"} 5 | -------------------------------------------------------------------------------- /office-js/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/office-js/development/office-js.inc.js" 2 | "667495180614C11C053FF04A80FC9D4A", 3 | "cljsjs/office-js/production/office-js.min.inc.js" 4 | "947A99FAD00D77B6E3ACA3CB52D3B4D8"} 5 | -------------------------------------------------------------------------------- /rc-slider/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/rc-slider/development/rc-slider.inc.js" 2 | "D61F654924D22DF3B55FA418FD747A5E", 3 | "cljsjs/rc-slider/production/rc-slider.min.inc.js" 4 | "2892ACE1E5665591C6CE4846CD50D930"} 5 | -------------------------------------------------------------------------------- /tinycolor/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/tinycolor/development/tinycolor.inc.js" 2 | "1662A9FD62814B9EC854FDC77AAC481E", 3 | "cljsjs/tinycolor/production/tinycolor.min.inc.js" 4 | "1B4BCC48BBD68940074E045695A6DAFC"} 5 | -------------------------------------------------------------------------------- /waypoints/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/waypoints/development/waypoints.inc.js" 2 | "F15379B5EEF36AFF8AAF76BF75C7E8F2", 3 | "cljsjs/waypoints/production/waypoints.min.inc.js" 4 | "4E3E0A3D2CF1B13C8B4221D46BC43AB0"} 5 | -------------------------------------------------------------------------------- /dataloader/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/dataloader/development/dataloader.inc.js" 2 | "26BAE1483D0543EC82861FE8A80A59BA", 3 | "cljsjs/dataloader/production/dataloader.min.inc.js" 4 | "563617312D53C67DF261537F09F34C88"} 5 | -------------------------------------------------------------------------------- /delaunator/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/delaunator/development/delaunator.inc.js" 2 | "FD749EE2210CB0B68D082992D3D35F67", 3 | "cljsjs/delaunator/production/delaunator.min.inc.js" 4 | "604B223CE9BB7D01276A8FC4DA6C6445"} 5 | -------------------------------------------------------------------------------- /material-ui/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/material-ui/development/material-ui.inc.js" 2 | "995C9E3F5940402F7E04216975F7799B", 3 | "cljsjs/material-ui/production/material-ui.min.inc.js" 4 | "49FF1949B1A790746D38F239D58CE690"} -------------------------------------------------------------------------------- /reactstrap/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/reactstrap/development/reactstrap.inc.js" 2 | "1D24235F6F7DF6A47D8832790654F95D", 3 | "cljsjs/reactstrap/production/reactstrap.min.inc.js" 4 | "25F3E113BEFEEF929251B59E9129D50B"} 5 | -------------------------------------------------------------------------------- /semantic-ui/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/semantic-ui/development/semantic.inc.js" 2 | "DCB7589231D6D761B35B9DFE2E3C20D0", 3 | "cljsjs/semantic-ui/production/semantic.min.inc.js" 4 | "A73704F81B988CAA8B8753B84992479C"} 5 | -------------------------------------------------------------------------------- /duo-web-sdk/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/duo-web-sdk/development/duo-web-sdk.inc.js" 2 | "edd7823277f9d4a5e8414cd89f75913f", 3 | "cljsjs/duo-web-sdk/production/duo-web-sdk.min.inc.js" 4 | "e337e72726a435b226ee8c8bc6aaf473"} 5 | -------------------------------------------------------------------------------- /html2canvas/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/html2canvas/development/html2canvas.inc.js" 2 | "4C5890807A5C89E4F9FBA44CEBCD084A", 3 | "cljsjs/html2canvas/production/html2canvas.min.inc.js" 4 | "9505AA8089E59F1102362E8EFB64D869"} 5 | -------------------------------------------------------------------------------- /leaflet-draw/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/leaflet-draw/production/leaflet-draw.min.inc.js" 2 | "385684ABD380A9308B674BC05272F188", 3 | "cljsjs/leaflet-draw/common/leaflet-draw.ext.js" 4 | "359471612E601B9712B344AE86F704D0"} 5 | -------------------------------------------------------------------------------- /leaflet-rotatedmarker/resources/cljsjs/leaflet-rotatedmarker/common/leaflet-rotatedmarker.ext.js: -------------------------------------------------------------------------------- 1 | var rotatedMarker = { 2 | rotationAngle: {}, 3 | setRotationAngle: function () {}, 4 | setRotationOrigin: function () {} 5 | }; 6 | -------------------------------------------------------------------------------- /morphdom/resources/cljsjs/common/morphdom.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @param {Element} fromNode 3 | * @param {Element} toNode 4 | * @param {Object=} options 5 | * @return {Element} 6 | */ 7 | function morphdom(fromNode, toNode, options) {} 8 | -------------------------------------------------------------------------------- /react-color/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-color/development/react-color.inc.js" 2 | "B511D50A74450F3ACC8B383D2810EA65", 3 | "cljsjs/react-color/production/react-color.min.inc.js" 4 | "A586E07DA253EBF3747645B2116D8321"} 5 | -------------------------------------------------------------------------------- /react-modal/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-modal/development/react-modal.inc.js" 2 | "548A1ECDCD12134F7CAE8BA3B0831C0A", 3 | "cljsjs/react-modal/production/react-modal.min.inc.js" 4 | "71D4838203569AAE12EBE0C35808E40B"} 5 | -------------------------------------------------------------------------------- /react-table/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-table/development/react-table.inc.js" 2 | "10E1B62F3D7CC6F9C287D250A0CE04B3", 3 | "cljsjs/react-table/production/react-table.min.inc.js" 4 | "98E2175878929DA81B73E7C1D7FE6AD5"} 5 | -------------------------------------------------------------------------------- /slate-react/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/slate-react/development/slate-react.inc.js" 2 | "052CCAA46B4A2AFC1F5B86B2543F8C9B", 3 | "cljsjs/slate-react/production/slate-react.min.inc.js" 4 | "0BE7E18FE7D4DCED1273BC97939C717B"} 5 | -------------------------------------------------------------------------------- /update-boot-cljsjs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ -z $1 ]]; then 4 | echo "Use $0 [new-version]" 5 | exit 6 | fi 7 | 8 | sed -i 's/boot-cljsjs\(\s*\)"[0-9.]*\(-SNAPSHOT\)\?"/boot-cljsjs\1"'$1'"/' $(find -name 'build.boot') 9 | -------------------------------------------------------------------------------- /d3-bipartite/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/d3-bipartite/development/d3-bipartite.inc.js" 2 | "16CDE905CB7C5AB87ED1FCF895F44BDF", 3 | "cljsjs/d3-bipartite/production/d3-bipartite.min.inc.js" 4 | "225B19E8D625CC6A33930B33BA91A587"} 5 | -------------------------------------------------------------------------------- /dataloader/resources/cljsjs/dataloader/common/dataloader.ext.js: -------------------------------------------------------------------------------- 1 | var DataLoader = { 2 | "load": function() {}, 3 | "loadMany": function() {}, 4 | "clear": function() {}, 5 | "clearAll": function() {}, 6 | "prime": function() {} 7 | } -------------------------------------------------------------------------------- /draft-convert/resources/cljsjs/draft-convert/common/draft-convert.ext.js: -------------------------------------------------------------------------------- 1 | var DraftConvert = {}; 2 | DraftConvert.convertFromHTML = function() {}; 3 | DraftConvert.convertToHTML = function() {}; 4 | DraftConvert.parseHTML = function() {}; 5 | -------------------------------------------------------------------------------- /hashids/resources/cljsjs/hashids/common/hashids.ext.js: -------------------------------------------------------------------------------- 1 | 2 | var Hashids = {}; 3 | Hashids.encode = function() {}; 4 | Hashids.decode = function(hash) {}; 5 | Hashids.encodeHex = function(str) {}; 6 | Hashids.decodeHex = function(hash) {}; 7 | -------------------------------------------------------------------------------- /react-motion/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-motion/development/react-motion.inc.js" 2 | "10669785248AA7E3EFA3F5E83DBA6804", 3 | "cljsjs/react-motion/production/react-motion.min.inc.js" 4 | "CA8A3CE13EA4C25A692183AF09B3B2A5"} 5 | -------------------------------------------------------------------------------- /react-popper/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-popper/development/react-popper.inc.js" 2 | "037E57A4B62DFDB2061DF995A17FFA5A", 3 | "cljsjs/react-popper/production/react-popper.min.inc.js" 4 | "988328DE08A212C68865274907B5B1F7"} 5 | -------------------------------------------------------------------------------- /react-sticky/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-sticky/development/react-sticky.inc.js" 2 | "3B002A705C37F0A9297EC50040DBCBEE", 3 | "cljsjs/react-sticky/production/react-sticky.min.inc.js" 4 | "284F86242B1ED9A25B8BBF89F9902A59"} 5 | -------------------------------------------------------------------------------- /canvas2image/resources/cljsjs/canvas2image/common/canvas2image.ext.js: -------------------------------------------------------------------------------- 1 | var Canvas2Image = { 2 | "saveAsPNG": function () {}, 3 | "saveAsJPEG": function () {}, 4 | "saveAsBMP": function () {}, 5 | "convertToJPEG": function () {} 6 | }; 7 | -------------------------------------------------------------------------------- /clusterize/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/clusterize 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/clusterize "0.16.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [Clusterize.js](https://clusterize.js.org/). 10 | -------------------------------------------------------------------------------- /cookieconsent/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/cookieconsent/development/cookieconsent.inc.js" 2 | "F09A14B8CB169867EFA78D4DCF1F1006", 3 | "cljsjs/cookieconsent/production/cookieconsent.min.inc.js" 4 | "A0664DE8C68E4220F254DC12CCEDBFE7"} 5 | -------------------------------------------------------------------------------- /dom-delegator/resources/cljsjs/dom-delegator/common/dom-delegator.ext.js: -------------------------------------------------------------------------------- 1 | /** @constructor */ 2 | function Delegator() {} 3 | 4 | Delegator.prototype.allocateHandle = function () {}; 5 | Delegator.prototype.transformHandle = function () {}; 6 | -------------------------------------------------------------------------------- /flot/resources/cljsjs/common/flot.plugins.selection.ext.js: -------------------------------------------------------------------------------- 1 | 2 | Plot.prototype.clearSelection = function (preventEvent) {}; 3 | Plot.prototype.setSelection = function (ranges, preventEvent) {}; 4 | Plot.prototype.getSelection = function () {}; 5 | -------------------------------------------------------------------------------- /react-sanfona/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-sanfona/development/react-sanfona.inc.js" 2 | "BCCBF9F31C5E384663093361B5BAB84F", 3 | "cljsjs/react-sanfona/production/react-sanfona.min.inc.js" 4 | "EDBC9A950468A14F3262619AB136B630"} 5 | -------------------------------------------------------------------------------- /smooth-scroll/resources/cljsjs/smooth-scroll/common/smooth-scroll.ext.js: -------------------------------------------------------------------------------- 1 | var smoothScroll = { 2 | "init": function () {}, 3 | "animateScroll": function () {}, 4 | "escapeCharacters": function () {}, 5 | "destroy": function () {} 6 | }; 7 | -------------------------------------------------------------------------------- /ant-design-pro/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/ant-design-pro/development/ant-design-pro.inc.js" 2 | "0083B3D10A4864152E47F59C67B02BC9", 3 | "cljsjs/ant-design-pro/production/ant-design-pro.min.inc.js" 4 | "E4034FABDFC29CD8B9139A7A6482BA04"} 5 | -------------------------------------------------------------------------------- /datatables.net/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net/development/datatables.net.inc.js" 2 | "28E78E8C1897D5A8BCF7E18B2F2BA0B6", 3 | "cljsjs/datatables.net/production/datatables.net.min.inc.js" 4 | "114C26084CB472C6A5F8B58908472AD7"} 5 | -------------------------------------------------------------------------------- /filestack/resources/cljsjs/filestack/common/filestack.ext.js: -------------------------------------------------------------------------------- 1 | var filestack = { 2 | init: function () {}, 3 | version: {}, 4 | pick: function () {}, 5 | then: function () {}, 6 | transform: function () {}, 7 | storeURL: function () {} 8 | }; -------------------------------------------------------------------------------- /interact/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/interact/development/interact.inc.js" :provides ["cljsjs.interact"] :file-min "cljsjs/interact/production/interact.min.inc.js"}] 2 | :externs ["cljsjs/interact/common/interact.ext.js"]} 3 | -------------------------------------------------------------------------------- /ipfs-api/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/development/ipfs.inc.js", 2 | :provides ["cljsjs.ipfs"], 3 | :file-min "cljsjs/production/ipfs.min.inc.js"}], 4 | :externs ["cljsjs/common/ipfs.ext.js"]} 5 | -------------------------------------------------------------------------------- /jquery-confirm/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/jquery-confirm/development/jquery-confirm.inc.js" 2 | "DC0CDAB6E4DED8C7089FA209F42598EF", 3 | "cljsjs/jquery-confirm/production/jquery-confirm.min.inc.js" 4 | "7CB6C13BD7FE931F3D0321A83267941C"} 5 | -------------------------------------------------------------------------------- /react-datetime/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-datetime/development/react-datetime.inc.js" 2 | "A7F60BCEB2F12B0494AA9C2ED3E6260A", 3 | "cljsjs/react-datetime/production/react-datetime.min.inc.js" 4 | "4D3C165DD4043A6CCCDDB05096F13C44"} 5 | -------------------------------------------------------------------------------- /react-infinite/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-infinite/development/react-infinite.inc.js" 2 | "CE1FF60278F69939B4984927018E073C", 3 | "cljsjs/react-infinite/production/react-infinite.min.inc.js" 4 | "55B3BBBE0DC80AF3B5833D385D4C7B9C"} 5 | -------------------------------------------------------------------------------- /sentry-browser/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/sentry-browser/development/sentry-browser.inc.js" 2 | "EF6A1285542B840F9BE1ACD4EF75A2A9", 3 | "cljsjs/sentry-browser/production/sentry-browser.min.inc.js" 4 | "A915D30EDAE753AEAF5EF7DFAEC3A639"} 5 | -------------------------------------------------------------------------------- /to-markdown/resources/cljsjs/to-markdown/common/to-markdown.ext.js: -------------------------------------------------------------------------------- 1 | function toMarkdown() {}; 2 | 3 | toMarkdown.isBlock = function() {}; 4 | toMarkdown.isVoid = function() {}; 5 | toMarkdown.trim = function() {}; 6 | toMarkdown.outer = function() {}; -------------------------------------------------------------------------------- /material-ui-icons/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/material-ui/development/material-ui-icons.inc.js" 2 | "A21C52BA49AFC80B25FE3B76734A0132", 3 | "cljsjs/material-ui/production/material-ui-icons.min.inc.js" 4 | "0FFAA93C1B12D7E6C869DB2324098994"} 5 | -------------------------------------------------------------------------------- /react-bootstrap_0/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-bootstrap/development/react-bootstrap.inc.js" 2 | "60C02E102B7702B2008A7E35DD25A0E5", 3 | "cljsjs/react-bootstrap/production/react-bootstrap.min.inc.js" 4 | "08D500780B8D99F452E9A24ADB9F3AD0"} 5 | -------------------------------------------------------------------------------- /react-chartjs-2/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-chartjs-2/development/react-chartjs-2.inc.js" 2 | "09A6E891CDD3A72863A5793909034C4F", 3 | "cljsjs/react-chartjs-2/production/react-chartjs-2.min.inc.js" 4 | "C910321E96FAFF6DC23A7FEF36B99973"} 5 | -------------------------------------------------------------------------------- /react-flip-move/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-flip-move/development/react-flip-move.inc.js" 2 | "0EA58C878A690F4BDC1D6404410974C6", 3 | "cljsjs/react-flip-move/production/react-flip-move.min.inc.js" 4 | "B3123A5FAF7990C92D482548B2811400"} 5 | -------------------------------------------------------------------------------- /react-highlight/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-highlight/development/react-highlight.inc.js" 2 | "67FBA9BAF39D07D3B35B6576207DC5B3", 3 | "cljsjs/react-highlight/development/react-highlight.min.inc.js" 4 | "85196F44C20A24E1B25F994B13755552"} 5 | -------------------------------------------------------------------------------- /reactcss/resources/cljsjs/reactcss/common/reactcss.ext.js: -------------------------------------------------------------------------------- 1 | var ReactCSS = { 2 | "reactCSS": function() {}, 3 | "hover": function() {}, 4 | "hoverHandle": function() {}, 5 | "handleActive": function() {}, 6 | "loop": function() {} 7 | } 8 | -------------------------------------------------------------------------------- /css-layout/resources/cljsjs/css_layout/common/css-layout.ext.js: -------------------------------------------------------------------------------- 1 | var returnExports = {}; 2 | var computeLayout = {}; 3 | computeLayout.computeLayout = function(){}; 4 | computeLayout.fillNodes = function(){}; 5 | computeLayout.extractNodes = function(){}; 6 | -------------------------------------------------------------------------------- /react-datepicker/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-datepicker/development/react-datepicker.inc.js" 2 | "47A17C8DC6C4720EE44A836DCFC055C3", 3 | "cljsjs/react-datepicker/production/react-datepicker.min.inc.js" 4 | "47A17C8DC6C4720EE44A836DCFC055C3"} 5 | -------------------------------------------------------------------------------- /react-fela/resources/cljsjs/react-fela/common/react-fela.ext.js: -------------------------------------------------------------------------------- 1 | var ReactFela = {}; 2 | 3 | ReactFela.Provider = function(){}; 4 | ReactFela.connect = function(){}; 5 | ReactFela.createComponent = function(){}; 6 | ReactFela.ThemeProvider = function(){}; 7 | -------------------------------------------------------------------------------- /react-input-mask/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-input-mask/development/react-input-mask.inc.js" 2 | "86BEA3EDB4E599E73CB21B03A5FCCA17", 3 | "cljsjs/react-input-mask/production/react-input-mask.min.inc.js" 4 | "958E80A45CC5EA50AD594025D28B29C9"} 5 | -------------------------------------------------------------------------------- /slate-html-serializer/resources/cljsjs/common/slate-html-serializer.ext.js: -------------------------------------------------------------------------------- 1 | var SlateHtmlSerializer = { 2 | "Html": { 3 | "deserialize": function() {}, 4 | "serialize": function() {}, 5 | "parseHtml": function() {} 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /textures/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/textures 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/textures "1.2.0-0"] ;; latest release 6 | ``` 7 | 8 | [](/dependency) 9 | 10 | ```clojure 11 | (ns application.core 12 | (:require cljsjs.textures)) 13 | ``` 14 | -------------------------------------------------------------------------------- /accounting/resources/cljsjs/accounting/common/accounting.ext.js: -------------------------------------------------------------------------------- 1 | var accounting = { 2 | "formatMoney": function () {}, 3 | "formatColumn": function() {}, 4 | "formatNumber": function() {}, 5 | "toFixed": function() {}, 6 | "unformat": function() {} 7 | } 8 | -------------------------------------------------------------------------------- /datatables.net-bs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net-bs/development/datatables.net-bs.inc.js" 2 | "83B18E708E2DF1204E52243778F64754", 3 | "cljsjs/datatables.net-bs/production/datatables.net-bs.min.inc.js" 4 | "19B11075F9B46A3CD26FB39A6F252B5D"} 5 | -------------------------------------------------------------------------------- /fixed-data-table-2/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/fixed-data-table-2/development/fixed-data-table.inc.js" 2 | "B25098C6845B4F4EBE2A323A4727A92B", 3 | "cljsjs/fixed-data-table-2/production/fixed-data-table.min.inc.js" 4 | "E166F46EEE704825AC096CC91B3BC73D"} 5 | -------------------------------------------------------------------------------- /material-ui/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | window["MaterialUI"] = require('@material-ui/core'); 3 | window["MaterialUIStyles"] = require('@material-ui/core/styles'); 4 | window["MaterialUIColors"] = require('@material-ui/core/colors'); 5 | })(); 6 | -------------------------------------------------------------------------------- /react-autosuggest/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-autosuggest/development/react-autosuggest.inc.js" 2 | "1E21BB79BBC485F9141311FA10F52C85", 3 | "cljsjs/react-autosuggest/production/react-autosuggest.min.inc.js" 4 | "18E8865820DF4BCEDBCC5FAF23EB0598"} 5 | -------------------------------------------------------------------------------- /create-react-class/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/create-react-class/development/create-react-class.inc.js" 2 | "4A87362BA8399FBBA0630CEAEA64E6B3", 3 | "cljsjs/create-react-class/production/create-react-class.min.inc.js" 4 | "94FEB9971CE6D26211729ABC43F96CD2"} 5 | -------------------------------------------------------------------------------- /parinfer-codemirror/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/parinfer-codemirror/common/parinfer-codemirror.ext.js" 2 | "217D1FD5BB38BE0FA07A2C502B0D0D16", 3 | "cljsjs/parinfer-codemirror/production/parinfer-codemirror.min.inc.js" 4 | "4E4399B669E11A360BD838304DD697E1"} 5 | -------------------------------------------------------------------------------- /pouchdb-find/resources/cljsjs/pouchdb-find/common/pouchdb-find.ext.js: -------------------------------------------------------------------------------- 1 | PouchDB.prototype.createIndex = function () {}; 2 | PouchDB.prototype.getIndexes = function () {}; 3 | PouchDB.prototype.deleteIndex = function () {}; 4 | PouchDB.prototype.find = function () {}; 5 | -------------------------------------------------------------------------------- /react-sortable-hoc/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-sortable-hoc/development/react-sortable-hoc.inc.js" 2 | "D841F4132ECFD488138949AFB89C7EBA", 3 | "cljsjs/react-sortable-hoc/production/react-sortable-hoc.min.inc.js" 4 | "CDAB1665C4C74B165434E7AE60007258"} 5 | -------------------------------------------------------------------------------- /applicationinsights/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/applicationinsights/development/applicationinsights.inc.js" 2 | "CF485D2E788686109F826D86C6820AA6", 3 | "cljsjs/applicationinsights/production/applicationinsights.min.inc.js" 4 | "C5385530E68BCE532C11D43D6048971A"} 5 | -------------------------------------------------------------------------------- /flot/resources/cljsjs/common/flot.plugins.crosshair.ext.js: -------------------------------------------------------------------------------- 1 | 2 | Plot.prototype.setCrosshair = function (pos) {}; 3 | Plot.prototype.clearCrosshair = function () {}; 4 | Plot.prototype.lockCrosshair = function (pos) {}; 5 | Plot.prototype.unlockCrosshair = function () {}; 6 | -------------------------------------------------------------------------------- /html-screen-capture-js/resources/cljsjs/html-screen-capture/common/html-screen-capture.ext.js: -------------------------------------------------------------------------------- 1 | var htmlScreenCaptureJs = { 2 | OutputType: { 3 | OBJECT: "", 4 | STRING: "", 5 | URI: "", 6 | BASE64: "" 7 | }, 8 | capture: function() {} 9 | }; 10 | -------------------------------------------------------------------------------- /material-components/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/material-components/development/material-components.inc.js" 2 | "0F284D18E6BDC3BDC07CB04C34A11C1D", 3 | "cljsjs/material-components/production/material-components.min.inc.js" 4 | "4909DB75333B0E17BC2DF274C1D3B3B9"} 5 | -------------------------------------------------------------------------------- /react-beautiful-dnd/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-beautiful-dnd/development/react-beautiful-dnd.inc.js" 2 | "5A7BEEC60B399C7736BDA4F99078848F", 3 | "cljsjs/react-beautiful-dnd/production/react-beautiful-dnd.min.inc.js" 4 | "F1EEDDE2B79BE103229298111828BFCA"} 5 | -------------------------------------------------------------------------------- /react-number-format/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-number-format/development/react-number-format.inc.js" 2 | "C96F859D9420072767247114723D5B08", 3 | "cljsjs/react-number-format/production/react-number-format.min.inc.js" 4 | "805652F355DC382D91B5F7B423B78A55"} 5 | -------------------------------------------------------------------------------- /select2/resources/cljsjs/select2/common/select2.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.select2 = function() {}; 2 | $.prototype.select2 = function(conf) {}; 3 | var select2Utils = {}; 4 | select2Utils.escapeMarkup = function(string) {}; 5 | $.fn.select2.amd.require = function(module) {}; 6 | -------------------------------------------------------------------------------- /webcomponents/resources/cljsjs/webcomponents/common/JsMutationObserver.ext.js: -------------------------------------------------------------------------------- 1 | var JsMutationObserver = function () {}; 2 | 3 | JsMutationObserver.prototype = { 4 | "observe": function () {}, 5 | "disconnect": function () {}, 6 | "takeRecords": function () {} 7 | }; 8 | -------------------------------------------------------------------------------- /chartjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/chart 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/chartjs "2.7.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [Chart.js](http://www.chartjs.org/). See http://www.chartjs.org/docs/ for documentation. 10 | -------------------------------------------------------------------------------- /html-screen-capture-js/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/html-screen-capture/development/html-screen-capture.inc.js" 2 | "684809AD2D6331245ACD7E8EB1890CFB", 3 | "cljsjs/html-screen-capture/production/html-screen-capture.min.inc.js" 4 | "6E8F2F9F192C51037F46CE5832E851E8"} 5 | -------------------------------------------------------------------------------- /react-mdl/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/react-mdl 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/react-mdl "1.10.1-1"] ;; latest release 6 | 7 | ``` 8 | [](/dependency) 9 | 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.react-mdl)) 14 | 15 | ``` 16 | -------------------------------------------------------------------------------- /react-onclickoutside/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-onclickoutside/development/react-onclickoutside.inc.js" 2 | "E4874F005DE37169A68FD7104B738368", 3 | "cljsjs/react-onclickoutside/production/react-onclickoutside.min.inc.js" 4 | "D5B7039FF51854180EBBACEF7CBFE8D6"} 5 | -------------------------------------------------------------------------------- /webcomponents-lite/resources/cljsjs/webcomponents/common/JsMutationObserver.ext.js: -------------------------------------------------------------------------------- 1 | var JsMutationObserver = function () {}; 2 | 3 | JsMutationObserver.prototype = { 4 | "observe": function () {}, 5 | "disconnect": function () {}, 6 | "takeRecords": function () {} 7 | }; 8 | -------------------------------------------------------------------------------- /leaflet-fullscreen/resources/cljsjs/leaflet-fullscreen/common/leaflet-fullscreen.ext.js: -------------------------------------------------------------------------------- 1 | var leafletFullscreen = { 2 | fullscreenControl: {}, 3 | pseudoFullscreen: {}, 4 | isFullscreen: function() {}, 5 | toggleFullscreen: function() {}, 6 | Fullscreen: function() {} 7 | }; 8 | -------------------------------------------------------------------------------- /leaflet-markercluster/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/leaflet-markercluster/development/leaflet-markercluster.inc.js" 2 | "587A89FA005823084D6D590182CD6C5F", 3 | "cljsjs/leaflet-markercluster/production/leaflet-markercluster.min.inc.js" 4 | "1A785075294A24CEB422E7EBC8186DA3"} 5 | -------------------------------------------------------------------------------- /material-ui/resources/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: { 3 | 'material-ui': './main.js' 4 | }, 5 | output: { 6 | filename: '[name].inc.js' 7 | }, 8 | externals: { 9 | 'react': 'React', 10 | 'react-dom': 'ReactDOM' 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /parinfer-codemirror/resources/cljsjs/parinfer-codemirror/common/parinfer-codemirror.ext.js: -------------------------------------------------------------------------------- 1 | var parinferCodeMirror = {}; 2 | 3 | parinferCodeMirror.init; 4 | parinferCodeMirror.enable; 5 | parinferCodeMirror.disable; 6 | parinferCodeMirror.setMode; 7 | parinferCodeMirror.setOptions; 8 | -------------------------------------------------------------------------------- /react-stripe-elements/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-stripe-elements/development/react-stripe-elements.inc.js" 2 | "C118A49352BF4DC39DA2E25D04788E14", 3 | "cljsjs/react-stripe-elements/production/react-stripe-elements.min.inc.js" 4 | "8DAFD6A71C2882C530BF8468B3E620A9"} 5 | -------------------------------------------------------------------------------- /react-swipeable-views/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-swipeable-views/development/react-swipeable-views.inc.js" 2 | "90266C53213C795AB38AD6AF55A1549E", 3 | "cljsjs/react-swipeable-views/production/react-swipeable-views.min.inc.js" 4 | "A978A917CCD6B81EF01481C9C2DA0143"} 5 | -------------------------------------------------------------------------------- /slate-html-serializer/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/slate-html-serializer/development/slate-html-serializer.inc.js" 2 | "98502E9A2E6A31B6908572E4B213EA8A", 3 | "cljsjs/slate-html-serializer/production/slate-html-serializer.min.inc.js" 4 | "E201771BDA3D0B7C0EBCD40F49A10869"} 5 | -------------------------------------------------------------------------------- /react-flexbox-grid/resources/cljsjs/react-flexbox-grid/common/react-flexbox-grid.ext.js: -------------------------------------------------------------------------------- 1 | var ReactFlexboxGrid = { 2 | "Row": function () {}, 3 | "Col": function () {}, 4 | "Grid": function () {}, 5 | "getRowProps": function () {}, 6 | "getColumnProps": function () {} 7 | } -------------------------------------------------------------------------------- /react-transition-group/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-transition-group/development/react-transition-group.inc.js" 2 | "137AECD5BBDF847BB7C70DE3B9A2BD52", 3 | "cljsjs/react-transition-group/production/react-transition-group.min.inc.js" 4 | "144B83264FF8275317CB382725BD2626"} 5 | -------------------------------------------------------------------------------- /datatables.net-select-bs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net-select-bs/development/datatables.net-select.inc.js" 2 | "C8E83AA35E15F60F6AC07FC5654F3387", 3 | "cljsjs/datatables.net-select-bs/production/datatables.net-select.min.inc.js" 4 | "99F78D237E462711ABF0F6BB9165C08E"} 5 | -------------------------------------------------------------------------------- /jspdf/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jspdf 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jspdf "1.3.2-2"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [jsPDF](https://parall.ax/products/jspdf). See http://mrrio.github.io/doc/symbols/jsPDF.html for documentation. 10 | -------------------------------------------------------------------------------- /react-autosize-textarea/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-autosize-textarea/development/react-autosize-textarea.inc.js" 2 | "28860D94F445861E459295710BAD231F", 3 | "cljsjs/react-autosize-textarea/production/react-autosize-textarea.min.inc.js" 4 | "DC2819B81193C7E6040FCCEAB05F9E1D"} 5 | -------------------------------------------------------------------------------- /react-lifecycles-compat/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-lifecycles-compat/development/react-lifecycles-compat.inc.js" 2 | "0F2FD0C043B56060C90855C696AFD50E", 3 | "cljsjs/react-lifecycles-compat/production/react-lifecycles-compat.min.inc.js" 4 | "36C30EFC96F9AF56E9F85DB07318EBF5"} 5 | -------------------------------------------------------------------------------- /react-tiny-virtual-list/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-tiny-virtual-list/development/react-tiny-virtual-list.inc.js" 2 | "A2BAAAD2112E4D3C46E65D95BEE4C92C", 3 | "cljsjs/react-tiny-virtual-list/production/react-tiny-virtual-list.min.inc.js" 4 | "8540EF3552DA983F09236AF92802D879"} 5 | -------------------------------------------------------------------------------- /virtual-dom/resources/cljsjs/common/virtual-dom.ext.js: -------------------------------------------------------------------------------- 1 | var virtualDom = {}; 2 | virtualDom.diff = function(){}; 3 | virtualDom.patch = function(){}; 4 | virtualDom.h = function(){}; 5 | virtualDom.create = function(){}; 6 | virtualDom.VNode = function(){}; 7 | virtualDom.VText = function(){}; 8 | -------------------------------------------------------------------------------- /leaflet-gesture-handling/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/leaflet-gesture-handling/development/leaflet-gesture-handling.inc.js" 2 | "1E513477025AC069C0529A7EB69B7A5E", 3 | "cljsjs/leaflet-gesture-handling/production/leaflet-gesture-handling.min.inc.js" 4 | "8221A2669A9608431F9A6000CC529481"} 5 | -------------------------------------------------------------------------------- /react-chartjs-2/resources/cljsjs/react-chartjs-2/common/react-chartjs-2.ext.js: -------------------------------------------------------------------------------- 1 | var ReactChartjs2 = { 2 | "ChartComponent": {}, 3 | "Pie": {}, 4 | "Line": {}, 5 | "Bar": {}, 6 | "HorizontalBar": {}, 7 | "Radar": {}, 8 | "Polar": {}, 9 | "Bubble": {} 10 | }; 11 | -------------------------------------------------------------------------------- /datatables.net-keytable-bs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net-keytable-bs/development/datatables.net-keytable.inc.js" 2 | "AEF0399FDF6705BFEB94C2A0FA22CA27", 3 | "cljsjs/datatables.net-keytable-bs/production/datatables.net-keytable.min.inc.js" 4 | "8058377CBFED5B94EB620C25EABAC001"} 5 | -------------------------------------------------------------------------------- /datatables.net-responsive/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net-responsive/development/datatables.net-responsive.inc.js" 2 | "4EF956B04413700B6B7741885F0723A1", 3 | "cljsjs/datatables.net-responsive/production/datatables.net-responsive.min.inc.js" 4 | "242F735C55ADEEB56EEBDD06AAC8EAFE"} 5 | -------------------------------------------------------------------------------- /react-ultimate-pagination/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-ultimate-pagination/development/react-ultimate-pagination.inc.js" 2 | "0DD8E02B7AC09192DEE575F15599C9CD", 3 | "cljsjs/react-ultimate-pagination/production/react-ultimate-pagination.min.inc.js" 4 | "0B04C37E9D4A0B26F6DC22F32ECF79F3"} 5 | -------------------------------------------------------------------------------- /klayjs/resources/cljsjs/klay/common/klay.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Closure Compiler externs for Kieler KlayJS 0.3.2. 3 | * @see http://rtsys.informatik.uni-kiel.de/confluence/display/KIELER/KIELER+Layout 4 | * @externs 5 | */ 6 | 7 | var $klay = { 8 | layout: function(obj) {} 9 | }; 10 | -------------------------------------------------------------------------------- /pdfmake/resources/cljsjs/common/pdfmake.ext.js: -------------------------------------------------------------------------------- 1 | var pdfMake = { 2 | "createPdf": function () {}, 3 | "vfs": { 4 | "Roboto-Italic.ttf": {}, 5 | "Roboto-Medium.ttf": {}, 6 | "Roboto-MediumItalic.ttf": {}, 7 | "Roboto-Regular.ttf": {}, 8 | "sampleImage.jpg": {} 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /pdfmake/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs 2 | [{:file "cljsjs/development/pdfmake.inc.js", 3 | :provides ["cljsjs.pdfmake"]} 4 | {:file "cljsjs/development/vfsfonts.inc.js", 5 | :provides ["cljsjs.pdfmakefonts"] 6 | :requires ["cljsjs.pdfmake"]}], 7 | :externs ["cljsjs/common/pdfmake.ext.js"]} 8 | -------------------------------------------------------------------------------- /react-bootstrap-table/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/react-bootstrap-table 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/react-bootstrap-table "4.3.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [React Bootstrap Table](http://allenfang.github.io/react-bootstrap-table/). 10 | -------------------------------------------------------------------------------- /peg/resources/cljsjs/peg/common/peg.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Closure Compiler externs for peg.js 0.8.0 3 | * @see http://pegjs.org 4 | * @externs 5 | */ 6 | 7 | /* Bare minimum */ 8 | 9 | var PEG = {}; 10 | 11 | PEG.buildParser = function(grammar) { return { parse: function(input){} }; }; 12 | -------------------------------------------------------------------------------- /react-test-renderer-shallow/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/react-test-renderer-shallow/development/react-test-renderer-shallow.inc.js" 2 | "05611E18CB1BA10E8DC4ED93E63581B3", 3 | "cljsjs/react-test-renderer-shallow/production/react-test-renderer-shallow.min.inc.js" 4 | "025A9B709E17C41A12F20CE11BAE30CF"} 5 | -------------------------------------------------------------------------------- /vue/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/vue 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/vue "2.5.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project, require Vue like so: 10 | 11 | ``` clojure 12 | (ns application.core 13 | (:require cljsjs.vue)) 14 | ``` -------------------------------------------------------------------------------- /canvas2image/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/html2canvas 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/canvas2image "0.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [canvas2image](https://github.com/hongru/canvas2image). See https://github.com/hongru/canvas2image for documentation. 10 | -------------------------------------------------------------------------------- /datatables.net-col-reorder-bs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net-col-reorder-bs/development/datatables.net-col-reorder-bs.inc.js" 2 | "CFD77A992B8401DF510480F2EA845416", 3 | "cljsjs/datatables.net-col-reorder/production/datatables.net-col-reorder-bs.min.inc.js" 4 | "D815A48497EB616A91880B05ED22DD68"} 5 | -------------------------------------------------------------------------------- /datatables.net-responsive-bs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/datatables.net-responsive-bs/development/datatables.net-responsive-bs.inc.js" 2 | "C0B1A73EBAC8AD36983B836D0B05D5E6", 3 | "cljsjs/datatables.net-responsive-bs/production/datatables.net-responsive-bs.min.inc.js" 4 | "E64BB08090F483A067EA8EEBB849CDC1"} 5 | -------------------------------------------------------------------------------- /elkjs/resources/cljsjs/elkjs/common/elkjs.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview Closure Compiler externs for Kieler KlayJS 0.3.2. 3 | * @see http://rtsys.informatik.uni-kiel.de/confluence/display/KIELER/KIELER+Layout 4 | * @externs 5 | */ 6 | 7 | var ELK = { 8 | layout: function(graph,options) {} 9 | }; 10 | -------------------------------------------------------------------------------- /js-yaml/resources/cljsjs/js-yaml/common/js-yaml.ext.js: -------------------------------------------------------------------------------- 1 | var jsyaml = {}; 2 | jsyaml.load = function () {}; 3 | jsyaml.loadAll = function () {}; 4 | jsyaml.safeLoad = function () {}; 5 | jsyaml.safeLoadAll = function () {}; 6 | jsyaml.dump = function () {}; 7 | jsyaml.safeDump = function () {}; -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 2016.03.13 4 | 5 | - Made it each packages responsibility to generate the jar file 6 | - That is `package` task should run `pom` and `jar` tasks 7 | - This allows packages themselves to decide how many artifacts they create, e.g. React package can publish four artifacts to Clojars 8 | -------------------------------------------------------------------------------- /marked/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/marked 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/marked "0.3.5-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | Use in your app: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.marked)) 14 | 15 | (def my-html (js/marked my-markdown)) 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /profile.boot: -------------------------------------------------------------------------------- 1 | ; For CI 2 | (configure-repositories! 3 | (fn [{:keys [url] :as repo-map}] 4 | (->> (condp re-find url 5 | #"clojars" 6 | {:username (get-sys-env "CLOJARS_USER") 7 | :password (get-sys-env "CLOJARS_PASS")} 8 | #".*" nil) 9 | (merge repo-map)))) 10 | -------------------------------------------------------------------------------- /html2canvas/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/html2canvas 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/html2canvas "1.0.0-alpha.12-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [html2canvas](http://html2canvas.hertzen.com/). See http://html2canvas.hertzen.com/documentation.html for documentation. 10 | -------------------------------------------------------------------------------- /logentries/resources/cljsjs/logentries/common/logentries.ext.js: -------------------------------------------------------------------------------- 1 | var LE = { 2 | "init": function () {}, 3 | "createLogStream": function () {}, 4 | "to": function () {}, 5 | "destroy": function () {}, 6 | "log": function () {}, 7 | "warn": function () {}, 8 | "error": function () {}, 9 | "info": function () {}, 10 | }; 11 | -------------------------------------------------------------------------------- /react-vis/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/react-vis/common/react-vis.inc.js" 2 | :provides ["cljsjs.react-vis"] 3 | :global-exports {cljsjs.react-vis reactVis} 4 | :requires ["cljsjs.react" "cljsjs.react.dom"]}] 5 | :externs ["cljsjs/react-vis/common/react-vis.ext.js"]} 6 | -------------------------------------------------------------------------------- /pdfjs/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/pdfjs/common/debugger.inc.js" 2 | "A03C77123B521609A05DAA9AD62DE0A8", 3 | "cljsjs/pdfjs/common/pdf.inc.js" "E6FF860B694692916C323609AC7697F8", 4 | "cljsjs/pdfjs/common/pdf.worker.inc.js" 5 | "F025B4D2DD3CD3ECA72F347E2406101D", 6 | "cljsjs/pdfjs/common/viewer.inc.js" "620C0ECC676EA776C3F6452635BD7D39"} 7 | -------------------------------------------------------------------------------- /redux/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/redux 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/redux "4.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.redux)) 14 | ``` 15 | -------------------------------------------------------------------------------- /test-changed.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | EXIT=0 4 | 5 | IFS=$'\n' 6 | for x in $(./changed-packages.sh); do 7 | IFS=$'\t' 8 | x=($x) 9 | 10 | echo "${x[0]} version ${x[1]} is not deployed" 11 | 12 | ( 13 | cd ${x[0]} 14 | boot package 15 | ) 16 | [[ $? != "0" ]] && EXIT=1 17 | done 18 | 19 | exit $EXIT 20 | -------------------------------------------------------------------------------- /topojson/resources/cljsjs/topojson/common/topojson.ext.js: -------------------------------------------------------------------------------- 1 | var topojson = { 2 | "version": {}, 3 | "mesh": function () {}, 4 | "meshArcs": function () {}, 5 | "merge": function () {}, 6 | "mergeArcs": function () {}, 7 | "feature": function () {}, 8 | "neighbors": function () {}, 9 | "presimplify": function () {} 10 | }; 11 | -------------------------------------------------------------------------------- /chroma/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/chroma 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/chroma "1.1.1-0"] ;; latest release 6 | ``` 7 | 8 | [](/dependency) 9 | ```clojure 10 | (ns application.core 11 | (:require cljsjs.chroma :as [chroma])) 12 | 13 | (-> (js/chroma "#D4F880") 14 | (.darken) 15 | (.hex)) 16 | 17 | ;; #9BC04B 18 | ``` 19 | -------------------------------------------------------------------------------- /dragula/resources/cljsjs/dragula/common/dragula.ext.js: -------------------------------------------------------------------------------- 1 | var dragula = function () {}; 2 | var drake = { 3 | "containers": {}, 4 | "dragging": {}, 5 | "start": function () {}, 6 | "end": function () {}, 7 | "cancel": function () {}, 8 | "remove": function () {}, 9 | "destroy": function () {}, 10 | "on": function () {} 11 | }; 12 | -------------------------------------------------------------------------------- /d3pie/resources/cljsjs/d3pie/common/d3pie.ext.js: -------------------------------------------------------------------------------- 1 | var d3pie = function() {}; 2 | d3pie.prototype = { 3 | "recreate": function() {}, 4 | "redraw": function() {}, 5 | "destroy": function() {}, 6 | "getOpenSegment": function() {}, 7 | "openSegment": function() {}, 8 | "closeSegment": function() {}, 9 | "updateProp": function() {} 10 | }; 11 | -------------------------------------------------------------------------------- /jquery-daterange-picker/resources/cljsjs/common/jquery-daterange-picker.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.dateRangePicker = function() {}; 2 | jQuery.prototype.setDateRange = function() {}; 3 | jQuery.prototype.clear = function() {}; 4 | jQuery.prototype.close = function() {}; 5 | jQuery.prototype.open = function() {}; 6 | jQuery.prototype.destroy = function() {}; 7 | -------------------------------------------------------------------------------- /pdfjs/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/pdfjs/common/pdf.inc.js" 2 | :provides ["cljsjs.pdfjs"] 3 | :requires ["cljsjs.pdfjs.worker"]} 4 | {:file "cljsjs/pdfjs/common/pdf.worker.inc.js" 5 | :provides ["cljsjs.pdfjs.worker"]}] 6 | :externs ["cljsjs/pdfjs/common/pdf.ext.js"]} 7 | -------------------------------------------------------------------------------- /d3-tip/resources/cljsjs/d3-tip/common/d3-tip.ext.js: -------------------------------------------------------------------------------- 1 | var d3 = { 2 | "tip": { 3 | "show": function() {}, 4 | "hide": function() {}, 5 | "attr": function() {}, 6 | "style": function() {}, 7 | "direction": function() {}, 8 | "offset": function() {}, 9 | "html": function() {} 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /element-resize-detector/resources/cljsjs/element-resize-detector/common/element-resize-detector.ext.js: -------------------------------------------------------------------------------- 1 | function elementResizeDetectorMaker() {} 2 | 3 | var erd = {}; 4 | 5 | erd.listenTo = function(element, listener) {} 6 | erd.removeListener = function(element, listener) {} 7 | erd.removeAllListeners = function(element) {} 8 | erd.uninstall = function(element) {} 9 | -------------------------------------------------------------------------------- /localforage/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/localforage 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/localforage "1.5.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.localforage)) 14 | ``` 15 | -------------------------------------------------------------------------------- /virtual-dom/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/virtual-dom 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/virtual-dom "2.1.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.virtual-dom)) 14 | ``` 15 | -------------------------------------------------------------------------------- /react-truncate/resources/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | entry: './lib/Truncate.js', 5 | output: { 6 | path: path.join(__dirname, "dist"), 7 | filename: "react-truncate.inc.js", 8 | libraryTarget: "var", 9 | library: "ReactTruncate" 10 | }, 11 | externals: { 12 | "react": "React" 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /webcomponents/resources/cljsjs/webcomponents/common/HTMLImports.ext.js: -------------------------------------------------------------------------------- 1 | var HTMLImports = { 2 | "flags": {}, 3 | "ready": {}, 4 | "readyTime": {}, 5 | "IMPORT_LINK_TYPE": {}, 6 | "useNative": {}, 7 | "rootDocument": {}, 8 | "whenReady": function () {}, 9 | "isIE": {}, 10 | "addModule": function () {}, 11 | "initializeModules": function () {} 12 | }; 13 | -------------------------------------------------------------------------------- /webcomponents-lite/resources/cljsjs/webcomponents/common/HTMLImports.ext.js: -------------------------------------------------------------------------------- 1 | var HTMLImports = { 2 | "flags": {}, 3 | "ready": {}, 4 | "readyTime": {}, 5 | "IMPORT_LINK_TYPE": {}, 6 | "useNative": {}, 7 | "rootDocument": {}, 8 | "whenReady": function () {}, 9 | "isIE": {}, 10 | "addModule": function () {}, 11 | "initializeModules": function () {} 12 | }; 13 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /bootstrap-notify/resources/cljsjs/boostrap-notify/common/bootstrap-notify.ext.js: -------------------------------------------------------------------------------- 1 | // Provided by library https://github.com/mouse0270/bootstrap-notify/blob/3.1.3/bootstrap-notify.js 2 | 3 | jQuery.prototype.notify = function ( content, options ) {}; 4 | jQuery.prototype.notifyDefaults = function ( content, options ) {}; 5 | jQuery.prototype.notifyClose = function ( content, options ) {}; 6 | -------------------------------------------------------------------------------- /lz-string/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/lz-string 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/lz-string "1.4.4-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [lz-string](https://github.com/pieroxy/lz-string). An LZ-based compression algorithm for JavaScript. For more info please visit [lz-string website](http://pieroxy.net/blog/pages/lz-string/index.html) 10 | -------------------------------------------------------------------------------- /colorbrewer/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/colorbrewer 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/colorbrewer "2.0.0-0"] ;; latest release 6 | ``` 7 | 8 | [](/dependency) 9 | 10 | ```clojure 11 | (ns application.core 12 | (:require cljsjs.colorbrewer :as [colorbrewer])) 13 | 14 | (-> colorbrewer 15 | (.-YlGn) 16 | (.-3)) 17 | 18 | ;; ["#f7fcb9","#addd8e","#31a354"] 19 | ``` 20 | -------------------------------------------------------------------------------- /prop-types/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/prop-types/development/prop-types.inc.js" 2 | :provides ["prop-types"] 3 | :requires ["react"] 4 | :global-exports {prop-types PropTypes} 5 | :file-min "cljsjs/prop-types/production/prop-types.min.inc.js"}] 6 | :externs ["cljsjs/prop-types/common/prop-types.ext.js"]} 7 | -------------------------------------------------------------------------------- /solidity-sha3/resources/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | entry: './main.js', 5 | output: { 6 | path: path.join(__dirname, "dist"), 7 | filename: "solidity-sha3.inc.js", 8 | libraryTarget: "var", 9 | library: "SoliditySha3" 10 | }, 11 | externals: { 12 | "web3": "Web3" 13 | }, 14 | devtool: 'source-map' 15 | }; 16 | -------------------------------------------------------------------------------- /incremental-dom/resources/gulpfile.js.patch: -------------------------------------------------------------------------------- 1 | 36c36 2 | < var googModuleName = 'incrementaldom'; 3 | --- 4 | > var googModuleName = 'incremental_dom'; 5 | 131c131 6 | < var moduleDeclaration = 'goog.module(\'' + googModuleName + '\');'; 7 | --- 8 | > var moduleDeclaration = 'goog.provide(\'' + googModuleName + '\');\n'; 9 | 138a139 10 | > .pipe(replace('exports.', googModuleName + '.')) 11 | -------------------------------------------------------------------------------- /react-debounce-input/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/react-debounce-input 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/react-debounce-input "3.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.react-debounce-input)) 14 | ``` 15 | -------------------------------------------------------------------------------- /stats/resources/cljsjs/stats/common/stats.ext.js: -------------------------------------------------------------------------------- 1 | var Stats = { 2 | "Panel": { 3 | "dom": {}, 4 | "update": function () {} 5 | }, 6 | "REVISION": {}, 7 | "dom": {}, 8 | "addPanel": function () {}, 9 | "showPanel": function () {}, 10 | "begin": function () {}, 11 | "end": function () {}, 12 | "update": function () {}, 13 | "domElement": {}, 14 | "setMode": function () {} 15 | }; 16 | -------------------------------------------------------------------------------- /to-markdown/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/to-markdown 2 | 3 | An HTML to Markdown converter written in JavaScript. 4 | 5 | [](dependency) 6 | ```clojure 7 | [cljsjs/to-markdown "1.3.0-0"] ;; latest release 8 | ``` 9 | [](/dependency) 10 | 11 | Use in your app: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.to-markdown)) 16 | 17 | (def my-markdown (js/toMarkdown my-html-string)) 18 | ``` 19 | 20 | -------------------------------------------------------------------------------- /d3-selection-multi/resources/cljsjs/d3-selection-multi/common/d3-selection-multi.ext.js: -------------------------------------------------------------------------------- 1 | var d3 = { 2 | "selection": function () {}, 3 | "transition": function () {} 4 | }; 5 | d3.selection.prototype = { 6 | "attrs": function () {}, 7 | "styles": function () {}, 8 | "properties": function () {} 9 | }; 10 | d3.transition.prototype = { 11 | "attrs": function () {}, 12 | "styles": function () {} 13 | }; 14 | -------------------------------------------------------------------------------- /graphiql/resources/cljsjs/graphiql/common/graphiql.ext.js: -------------------------------------------------------------------------------- 1 | var GraphiQL = { 2 | "Logo": function () {}, 3 | "Toolbar": function () {}, 4 | "Button": function () {}, 5 | "ToolbarButton": function () {}, 6 | "Group": function () {}, 7 | "Menu": function () {}, 8 | "MenuItem": function () {}, 9 | "Select": function () {}, 10 | "SelectOption": function () {}, 11 | "Footer": function () {}, 12 | }; 13 | -------------------------------------------------------------------------------- /twemoji/resources/cljsjs/twemoji/common/twemoji.ext.js: -------------------------------------------------------------------------------- 1 | var twemoji = { 2 | "base": {}, 3 | "ext": {}, 4 | "size": {}, 5 | "className": {}, 6 | "convert": { 7 | "fromCodePoint": function () {}, 8 | "toCodePoint": function () {} 9 | }, 10 | "onerror": function () {}, 11 | "parse": function () {}, 12 | "replace": function () {}, 13 | "test": function () {} 14 | }; 15 | -------------------------------------------------------------------------------- /web3/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/development/web3.inc.js", 2 | :provides ["cljsjs.web3"], 3 | :file-min "cljsjs/production/web3.min.inc.js"} 4 | {:file "cljsjs/development/web3-light.inc.js", 5 | :provides ["cljsjs.web3-light"], 6 | :file-min "cljsjs/production/web3-light.min.inc.js"}], 7 | :externs ["cljsjs/common/web3.ext.js"]} -------------------------------------------------------------------------------- /csv/resources/cljsjs/common/csv.ext.js: -------------------------------------------------------------------------------- 1 | 2 | var CSV = {}; 3 | CSV.RELAXED; 4 | CSV.IGNORE_RECORD_LENGTH; 5 | CSV.IGNORE_QUOTES; 6 | CSV.LINE_FEED_OK; 7 | CSV.CARRIAGE_RETURN_OK; 8 | CSV.DETECT_TYPES; 9 | CSV.IGNORE_QUOTE_WHITESPACE; 10 | CSV.DEBUG; 11 | CSV.COLUMN_SEPARATOR; 12 | CSV.ERROR_EOF; 13 | CSV.ERROR_CHAR; 14 | CSV.ERROR_EOL; 15 | CSV.WARN_SPACE; 16 | CSV.parse = function(str) {}; 17 | CSV.stream = function() {}; 18 | -------------------------------------------------------------------------------- /draft-js/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/draft-js 2 | 3 | ```clojure 4 | [cljsjs/draft-js "0.10.5-0"] ;; latest release 5 | ``` 6 | 7 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 8 | of the Clojurescript compiler. After adding the above dependency to your project 9 | you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.draft-js)) 14 | ``` 15 | -------------------------------------------------------------------------------- /html-screen-capture-js/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/html-screen-capture-js 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/html-screen-capture-js "1.0.10-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | CLJSJS package for [html-screen-capture-js](https://github.com/html-screen-capture-js/html-screen-capture-js). See https://github.com/html-screen-capture-js/html-screen-capture-js/blob/master/README.md for documentation. 10 | -------------------------------------------------------------------------------- /iconv-lite/resources/cljsjs/iconv-lite/common/iconv-lite.ext.js: -------------------------------------------------------------------------------- 1 | // from https://github.com/ashtuchkin/iconv-lite/blob/master/lib/index.d.ts 2 | 3 | var iconv = { 4 | decode: function(buffer, encoding, options) {}, 5 | encode: function(source, encoding, options) {}, 6 | encodingExists: function(encoding) {}, 7 | decodeStream: function(encoding, options) {}, 8 | encodeStream: function(encoding, options) {}, 9 | } 10 | -------------------------------------------------------------------------------- /leaflet/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/leaflet/development/leaflet.inc.js" 2 | <<<<<<< HEAD 3 | "7CBDB3F07ACEBBD4DD72F6AC60DD3A24", 4 | "cljsjs/leaflet/production/leaflet.min.inc.js" 5 | "8C7826E60EAFDD72F979F91DD39E1320"} 6 | ======= 7 | "19755AC9041C3E49F9125E4C7DD5EDE9", 8 | "cljsjs/leaflet/production/leaflet.min.inc.js" 9 | "BB0FDDBB23E81D39CD1A264B4D6D9F9C"} 10 | >>>>>>> c25e199a0d697f6700a85756e91b8e63ab92080c 11 | -------------------------------------------------------------------------------- /mithril/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/mithril 2 | 3 | ```clojure 4 | [cljsjs/mithril "1.0.1-0"] ;; latest release 5 | ``` 6 | 7 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 8 | of the ClojureScript compiler. After adding the above dependency to your project 9 | you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.mithril :as m)) 14 | ``` 15 | -------------------------------------------------------------------------------- /react-burger-menu/resources/cljsjs/react-burger-menu/common/react-burger-menu.ext.js: -------------------------------------------------------------------------------- 1 | var BurgerMenu = { 2 | "slide": function () {}, 3 | "stack": function () {}, 4 | "elastic": function () {}, 5 | "bubble": function () {}, 6 | "push": function () {}, 7 | "pushRotate": function () {}, 8 | "scaleDown": function () {}, 9 | "scaleRotate": function () {}, 10 | "fallDown": function () {} 11 | } 12 | -------------------------------------------------------------------------------- /react-leaflet/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | <<<<<<< HEAD 2 | {"cljsjs/react-leaflet/production/react-leaflet.min.inc.js" 3 | "A35E31A86655DD9FDDF3A7D2F0245791"} 4 | ======= 5 | {"cljsjs/react-leaflet/development/react-leaflet.inc.js" 6 | "C59BE2FCB8557ABBC48C70FAA8DA4948", 7 | "cljsjs/react-leaflet/production/react-leaflet.min.inc.js" 8 | "BA70FE4C04B24C7F851658DA29B198B4"} 9 | >>>>>>> c25e199a0d697f6700a85756e91b8e63ab92080c 10 | -------------------------------------------------------------------------------- /react-ultimate-pagination/resources/cljsjs/react-ultimate-pagination/common/react-ultimate-pagination.ext.js: -------------------------------------------------------------------------------- 1 | var ReactUltimatePagination = { 2 | "createUltimatePagination": function () {}, 3 | "ITEM_TYPES": { 4 | "ELLIPSIS" : {}, 5 | "FIRST_PAGE_LINK" : {}, 6 | "PREVIOUS_PAGE_LINK" : {}, 7 | "NEXT_PAGE_LINK" : {}, 8 | "LAST_PAGE_LINK" : {}, 9 | "PAGE" : {} 10 | } 11 | } -------------------------------------------------------------------------------- /pluralize/resources/cljsjs/pluralize/common/pluralize.ext.js: -------------------------------------------------------------------------------- 1 | // Please use https://github.com/jmmk/javascript-externs-generator 2 | // to generate the externs 3 | 4 | 5 | var pluralize = { 6 | "plural": function () {}, 7 | "singular": function () {}, 8 | "addPluralRule": function () {}, 9 | "addSingularRule": function () {}, 10 | "addUncountableRule": function () {}, 11 | "addIrregularRule": function () {} 12 | }; 13 | -------------------------------------------------------------------------------- /deploy-changed.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | EXIT=0 4 | 5 | IFS=$'\n' 6 | for x in $(./changed-packages.sh); do 7 | IFS=$'\t' 8 | x=($x) 9 | 10 | echo "${x[0]} version ${x[1]} is not deployed" 11 | 12 | ( 13 | cd ${x[0]} 14 | boot package -- push --ensure-release --gpg-sign --repo clojars --repo-map "{:url \"https://clojars.org/repo/\"}" 15 | ) 16 | [[ $? != "0" ]] && EXIT=1 17 | done 18 | 19 | exit $EXIT 20 | -------------------------------------------------------------------------------- /oidc-client/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/oidc-client 2 | 3 | ```clojure 4 | [cljsjs/oidc-client "1.6.1-0"] ;; latest release 5 | ``` 6 | 7 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 8 | of the ClojureScript compiler. After adding the above dependency to your project 9 | you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.oidc-client)) 14 | ``` 15 | -------------------------------------------------------------------------------- /xlsx/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/xlsx 2 | 3 | https://sheetjs.com/ 4 | 5 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 6 | of the ClojureScript compiler. After adding the above dependency to your project 7 | you can require the packaged library like so: 8 | 9 | ```clojure 10 | (ns application.core 11 | (:require xlsx)) 12 | ``` 13 | 14 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 15 | -------------------------------------------------------------------------------- /material-ui_0/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/material-ui/development/material-ui-svg-icons.inc.js" 2 | "3624BABFDC2B361644E306056F5E3B5A", 3 | "cljsjs/material-ui/development/material-ui.inc.js" 4 | "3503EE22FE8A5101D84B48957CEAB5B7", 5 | "cljsjs/material-ui/production/material-ui-svg-icons.min.inc.js" 6 | "4B7289D552C82F5D3FEA19CDE52E24E6", 7 | "cljsjs/material-ui/production/material-ui.min.inc.js" 8 | "DBD605C717EE565636EF696579DD01CD"} 9 | -------------------------------------------------------------------------------- /merge/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/merge 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/merge "1.2.0-0"] ;; latest release 6 | ``` 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.merge :as m)) 15 | ``` 16 | -------------------------------------------------------------------------------- /mustache/resources/cljsjs/mustache/common/mustache.ext.js: -------------------------------------------------------------------------------- 1 | var Mustache = { 2 | name: "", 3 | version: "", 4 | tags: [], 5 | clearCache: function () {}, 6 | parse: function () {}, 7 | render: function () {}, 8 | to_html: function () {}, 9 | escape: function () {}, 10 | Scanner: function () {}, 11 | Context: function () {}, 12 | Writer: function () {} 13 | }; 14 | -------------------------------------------------------------------------------- /platform/resources/cljsjs/platform/common/platform.ext.js: -------------------------------------------------------------------------------- 1 | // Please use https://github.com/jmmk/javascript-externs-generator 2 | // to generate the externs 3 | 4 | 5 | var platform = { 6 | "description": {}, 7 | "layout": {}, 8 | "manufacturer": {}, 9 | "name": {}, 10 | "prerelease": {}, 11 | "product": {}, 12 | "ua": {}, 13 | "version": {}, 14 | "os": {}, 15 | "parse": function () {}, 16 | "toString": function () {} 17 | }; -------------------------------------------------------------------------------- /react-test-renderer-shallow/resources/cljsjs/react-test-renderer-shallow/common/react-test-renderer-shallow.ext.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @type {!Object} 3 | * @const 4 | * @suppress {const|duplicate} 5 | */ 6 | var ShallowRenderer = function() {} 7 | 8 | /** 9 | * @return {Object} 10 | */ 11 | ShallowRenderer.prototype.render = function() {} 12 | 13 | /** 14 | * @return {Object} 15 | */ 16 | ShallowRenderer.prototype.getRenderOutput = function() {} 17 | -------------------------------------------------------------------------------- /url-template/resources/cljsjs/url-template/common/uri-template.ext.js: -------------------------------------------------------------------------------- 1 | /* Generated using http://www.dotnetwise.com/Code/Externs/index.html */ 2 | 3 | var urltemplate = { 4 | "encodeReserved": function () {}, 5 | "encodeUnreserved": function () {}, 6 | "encodeValue": function () {}, 7 | "isDefined": function () {}, 8 | "isKeyOperator": function () {}, 9 | "getValues": function () {}, 10 | "parse": function () {} 11 | } 12 | -------------------------------------------------------------------------------- /d3geo/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/d3geo 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/d3geo "0.2.15-2"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.d3geo)) 16 | ``` 17 | -------------------------------------------------------------------------------- /logentries/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/logentries 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/logentries "0.0.3-0"] ;; latest release 6 | ``` 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.logentries)) 15 | ``` 16 | -------------------------------------------------------------------------------- /quill/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/quill 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/quill "1.3.5-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.quill)) 16 | ``` 17 | -------------------------------------------------------------------------------- /ladda/resources/cljsjs/ladda/common/ladda.ext.js: -------------------------------------------------------------------------------- 1 | var Ladda = { 2 | create: function(button) {}, 3 | bind: function(target, options) {}, 4 | stopAll: function() {}, 5 | start: function() {}, 6 | startAfter: function(delay) {}, 7 | stop: function() {}, 8 | toggle: function() {}, 9 | setProgress: function(progress) {}, 10 | enable: function() {}, 11 | disable: function() {}, 12 | isLoading: function() {}, 13 | remove: function() {} 14 | } 15 | -------------------------------------------------------------------------------- /pubnub/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/pubnub 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/pubnub "4.1.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.pubnub)) 16 | ``` 17 | -------------------------------------------------------------------------------- /chessground/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/chessground 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/chessground "4.4.0-0"] ;; latest release 6 | ``` 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.chessground :as cg)) 15 | ``` 16 | -------------------------------------------------------------------------------- /mobile-drag-drop/boot-cljsjs-checksums.edn: -------------------------------------------------------------------------------- 1 | {"cljsjs/mobile-drag-drop/development/mobile-drag-drop.inc.js" 2 | "456F5193E154E46BF7BFCC4F8A71DB49", 3 | "cljsjs/mobile-drag-drop/development/scroll-behaviour.inc.js" 4 | "B5F6FDEF62BC83BBC271B81EBD0906C9", 5 | "cljsjs/mobile-drag-drop/production/mobile-drag-drop.min.inc.js" 6 | "58D7B116CF1947C3D891E790D52DBD83", 7 | "cljsjs/mobile-drag-drop/production/scroll-behaviour.min.inc.js" 8 | "5D1FF480490C86C577D7C74914680BCE"} 9 | -------------------------------------------------------------------------------- /react-three-renderer/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/react-three-renderer/development/react-three-renderer.inc.js" 2 | :provides ["cljsjs.react-three-renderer"] 3 | :requires ["cljsjs.three" "cljsjs.react" "cljsjs.react.dom"] 4 | :file-min "cljsjs/react-three-renderer/production/react-three-renderer.min.inc.js"}] 5 | :externs ["cljsjs/react-three-renderer/common/react-three-renderer.ext.js"]} 6 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /fela-dom/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/fela-dom 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/fela-dom "4.3.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.fela-dom)) 14 | ``` 15 | 16 | # Example 17 | 18 | ```clojure 19 | (.render js/FelaDOM (.getElementById js/document "my-style-node")) 20 | ``` 21 | -------------------------------------------------------------------------------- /oboe/resources/cljsjs/oboe/common/oboe.ext.js: -------------------------------------------------------------------------------- 1 | var oboe = function(obj) {}; 2 | 3 | var abort = function(oboe) {}; 4 | var done = function(oboe) {}; 5 | var fail = function(oboe) {}; 6 | var forget = function(oboe) {}; 7 | var header = function(oboe) {}; 8 | var node = function(oboe) {}; 9 | var on = function(oboe) {}; 10 | var path = function(oboe) {}; 11 | var removeListener = function(oboe) {}; 12 | var root = function(oboe) {}; 13 | var start = function(oboe) {}; 14 | -------------------------------------------------------------------------------- /cortical-io/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/cortical-io 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/cortical-io "1.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.cortical-io)) 16 | ``` 17 | -------------------------------------------------------------------------------- /formsy-material-ui/resources/cljsjs/formsy-material-ui/common/formsy-material-ui.ext.js: -------------------------------------------------------------------------------- 1 | var FormsyMaterialUI = { 2 | "FormsyCheckbox": function () {}, 3 | "FormsyDate": function () {}, 4 | "FormsyRadio": function () {}, 5 | "FormsyRadioGroup": function () {}, 6 | "FormsySelect": function () {}, 7 | "FormsyText": function () {}, 8 | "FormsyTime": function () {}, 9 | "FormsyToggle": function () {}, 10 | "FormsyAutoComplete": function () {} 11 | }; -------------------------------------------------------------------------------- /react-sortable-hoc/resources/cljsjs/react-sortable-hoc/common/react-sortable-hoc.ext.js: -------------------------------------------------------------------------------- 1 | var SortableHOC = {}; 2 | 3 | SortableHOC.SortableContainer = function () {}; 4 | SortableHOC.SortableElement = function () {}; 5 | SortableHOC.SortableHandle = function () {}; 6 | SortableHOC.arrayMove = function () {}; 7 | SortableHOC.sortableContainer = function () {}; 8 | SortableHOC.sortableElement = function () {}; 9 | SortableHOC.sortableHandle = function () {}; 10 | -------------------------------------------------------------------------------- /aphrodite/resources/cljsjs/aphrodite/common/aphrodite.ext.js: -------------------------------------------------------------------------------- 1 | var aphrodite = { 2 | "StyleSheet": { 3 | "create": function () {}, 4 | "rehydrate": function () {}, 5 | "extend": function () {} 6 | }, 7 | "StyleSheetServer": { 8 | "renderStatic": function () {} 9 | }, 10 | "StyleSheetTestUtils": { 11 | "suppressStyleInjection": function () {}, 12 | "clearBufferAndResumeStyleInjection": function () {} 13 | }, 14 | "css": function () {} 15 | }; 16 | -------------------------------------------------------------------------------- /marked/resources/cljsjs/marked/common/marked.ext.js: -------------------------------------------------------------------------------- 1 | function marked() {}; 2 | 3 | marked.options = {}; 4 | marked.defaults = {}; 5 | 6 | marked.parser = function() {}; 7 | marked.parse = function() {}; 8 | marked.Parser = function() {}; 9 | 10 | marked.lexer = function() {}; 11 | marked.Lexer = function() {}; 12 | 13 | marked.inlineLexer = function() {}; 14 | marked.InlineLexer = function() {}; 15 | 16 | marked.Renderer = function() {}; 17 | marked.setOptions = function() {}; 18 | -------------------------------------------------------------------------------- /noty/resources/cljsjs/noty/common/noty.ext.js: -------------------------------------------------------------------------------- 1 | /********************************************************************** 2 | * Extern for Noty 3 | * Generated by http://jmmk.github.io/javascript-externs-generator 4 | **********************************************************************/ 5 | var Noty = function () {}; 6 | /********************************************************************** 7 | * End Generated Extern for Noty 8 | /**********************************************************************/ -------------------------------------------------------------------------------- /react-color/resources/cljsjs/react-color/common/react-color.ext.js: -------------------------------------------------------------------------------- 1 | var ReactColor = { 2 | "AlphaPicker": {}, 3 | "BlockPicker": {}, 4 | "ChromePicker": {}, 5 | "CirclePicker": {}, 6 | "CompactPicker": {}, 7 | "GithubPicker": {}, 8 | "HuePicker": {}, 9 | "MaterialPicker": {}, 10 | "PhotoshopPicker": {}, 11 | "SketchPicker": {}, 12 | "SliderPicker": {}, 13 | "SwatchesPicker": {}, 14 | "TwitterPicker": {}, 15 | "CustomPicker": {} 16 | } 17 | -------------------------------------------------------------------------------- /turndown/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/turndown 2 | 3 | Convert HTML into Markdown with JavaScript. 4 | 5 | [Formerly known as to-markdown] 6 | 7 | [](dependency) 8 | ```clojure 9 | [cljsjs/turndown "4.0.1-0"] ;; latest release 10 | ``` 11 | [](/dependency) 12 | 13 | Use in your app: 14 | 15 | ```clojure 16 | (ns application.core 17 | (:require cljsjs.turndown)) 18 | 19 | (def turndown-service (js/TurndownService. options)) 20 | (def md (.turndown turndown-service string-of-html)) 21 | ``` 22 | -------------------------------------------------------------------------------- /typeahead-bundle/resources/cljsjs/typeahead-bundle/common/typeahead-bundle.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.typeahead = function() {}; 2 | 3 | var Bloodhound = function(){}; 4 | Bloodhound.noConflict = function() {}; 5 | 6 | Bloodhound.prototype.initialize = function(reinitialize) {}, 7 | Bloodhound.prototype.add = function(data) {}, 8 | Bloodhound.prototype.get = function(ids) {}, 9 | Bloodhound.prototype.search = function(query, sync, async) {}, 10 | Bloodhound.prototype.clear = function() {} 11 | -------------------------------------------------------------------------------- /heap/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/heap 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/heap "0.0.1-0"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. 10 | 11 | The jar only provides an extern file required for advanced compilation. 12 | The Heap js API will still need to be provided through some other mechanism. 13 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 14 | -------------------------------------------------------------------------------- /nodejs-externs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/nodejs-externs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/nodejs-externs "1.0.4-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` only. So there is no need to require and if it's 10 | simply listed as a dependency, the externs should be loaded at cljs compliation 11 | time. 12 | 13 | ## References 14 | 15 | * [dcodeIO/node.js-closure-compiler-externs](https://github.com/dcodeIO/node.js-closure-compiler-externs) 16 | -------------------------------------------------------------------------------- /sortable/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/sortable 2 | 3 | ``` 4 | [cljsjs/sortable "1.6.0-0"] ;; latest release 5 | ``` 6 | 7 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 8 | of the ClojureScript compiler. After adding the above dependency to your project 9 | you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.sortable)) 14 | ``` 15 | 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /bootstrap-typeahead/resources/cljsjs/bootstrap-typeahead/common/bootstrap-typeahead.ext.js: -------------------------------------------------------------------------------- 1 | jQuery.prototype.typeahead = function() {}; 2 | 3 | var Bloodhound = function(){}; 4 | Bloodhound.noConflict = function() {}; 5 | 6 | Bloodhound.prototype.initialize = function(reinitialize) {}, 7 | Bloodhound.prototype.add = function(data) {}, 8 | Bloodhound.prototype.get = function(ids) {}, 9 | Bloodhound.prototype.search = function(query, sync, async) {}, 10 | Bloodhound.prototype.clear = function() {} 11 | -------------------------------------------------------------------------------- /react-reorderable/resources/cljsjs/react-reorderable/common/react-reorderable.ext.js: -------------------------------------------------------------------------------- 1 | var ReactReorderable = { 2 | "propTypes": { 3 | "onDragStart": function () {}, 4 | "onDrag": function () {}, 5 | "onDrop": function () {}, 6 | "onChange": function () {} 7 | }, 8 | "defaultProps": { 9 | "onDragStart": function () {}, 10 | "onDrag": function () {}, 11 | "onDrop": function () {}, 12 | "onChange": function () {} 13 | } 14 | } -------------------------------------------------------------------------------- /chess.js/resources/cljsjs/chess.js/common/chess.js.ext.js: -------------------------------------------------------------------------------- 1 | /********************************************************************** 2 | * Extern for Chess 3 | * Generated by http://jmmk.github.io/javascript-externs-generator 4 | **********************************************************************/ 5 | var Chess = function () {}; 6 | /********************************************************************** 7 | * End Generated Extern for Chess 8 | /**********************************************************************/ -------------------------------------------------------------------------------- /d3-scale-chromatic/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/d3-scale-chromatic 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/d3-scale-chromatic "1.1.1-2"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.d3-scale-chromatic)) 16 | ``` 17 | -------------------------------------------------------------------------------- /howler/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/howler 2 | 3 | https://github.com/goldfire/howler.js 4 | 5 | [](dependency) 6 | ```clojure 7 | [cljsjs/howler "2.0.5-0"] ;; latest release 8 | ``` 9 | [](/dependency) 10 | 11 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 12 | of the ClojureScript compiler. After adding the above dependency to your project 13 | you can require the packaged library like so: 14 | 15 | ```clojure 16 | (ns application.core 17 | (:require cljsjs.howler)) 18 | ``` 19 | -------------------------------------------------------------------------------- /xlsx/resources/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@cljsjs/xlsx", 3 | "private": true, 4 | "scripts": { 5 | "build:dev": "browserify main.js > xlsx.inc.js", 6 | "build:prod": "browserify main.js -p [ minifyify --no-map ] > xlsx.min.inc.js" 7 | }, 8 | "dependencies": { 9 | "xlsx": "0.13.1" 10 | }, 11 | "devDependencies": { 12 | "browserify": "16.1.0", 13 | "minifyify": "7.3.5" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /reactable/resources/cljsjs/reactable/common/reactable.ext.js: -------------------------------------------------------------------------------- 1 | var Reactable = { 2 | "Table": function () {}, 3 | "Tr": function () {}, 4 | "Td": function () {}, 5 | "Th": function () {}, 6 | "Tfoot": function () {}, 7 | "Thead": function () {}, 8 | "Sort": { 9 | "Numeric": function () {}, 10 | "NumericInteger": function () {}, 11 | "Currency": function () {}, 12 | "Date": function () {}, 13 | "CaseInsensitive": function () {} 14 | }, 15 | "unsafe": function () {} 16 | } 17 | -------------------------------------------------------------------------------- /rebass/resources/rebass-0.3.2/src/webpack.config.dev.js: -------------------------------------------------------------------------------- 1 | var path = require("path") 2 | 3 | module.exports = { 4 | entry: path.join(__dirname, "./entry.js"), 5 | 6 | output: { 7 | path: __dirname, 8 | filename: "bundle-dev.js", 9 | library: "Rebass" 10 | }, 11 | 12 | externals: {"react": "React"}, 13 | 14 | module: { 15 | loaders: [ 16 | { 17 | test: /\.js$/, 18 | loaders: [ 19 | "babel" 20 | ] 21 | }, 22 | ] 23 | }, 24 | } 25 | 26 | -------------------------------------------------------------------------------- /rebass/resources/rebass-0.3.2/src/webpack.config.prod.js: -------------------------------------------------------------------------------- 1 | var path = require("path") 2 | 3 | module.exports = { 4 | entry: path.join(__dirname, "./entry.js"), 5 | 6 | output: { 7 | path: __dirname, 8 | filename: "bundle.js", 9 | library: "Rebass" 10 | }, 11 | 12 | externals: {"react": "React"}, 13 | 14 | module: { 15 | loaders: [ 16 | { 17 | test: /\.js$/, 18 | loaders: [ 19 | "babel" 20 | ] 21 | }, 22 | ] 23 | }, 24 | } 25 | 26 | -------------------------------------------------------------------------------- /ace/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/ace 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/ace "1.4.2-0"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.ace)) 15 | ``` 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /iconv-lite/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/iconv-lite 2 | 3 | ```clojure 4 | [cljsjs/iconv-lite "0.4.18-0"] ;; latest release 5 | ``` 6 | 7 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 8 | of the ClojureScript compiler. After adding the above dependency to your project 9 | you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.iconv-lite)) 14 | ``` 15 | 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /kakao/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/kakao 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/kakao "v20170708-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. 11 | 12 | The jar only provides an extern file required for advanced compilation. 13 | Kakao JavaScript API will still need to provided through some other mechanism. 14 | 15 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 16 | -------------------------------------------------------------------------------- /c3/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/c3 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/c3 "0.6.8-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.c3)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /fela-preset-dev/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/fela-preset-dev 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/fela-preset-dev "4.3.5-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require 14 | cljsjs.fela 15 | cljsjs.fela-preset-dev)) 16 | ``` 17 | 18 | # Example 19 | 20 | ```clojure 21 | (.createRenderer js/Fela #js {:plugins js/FelaPresetDev}) 22 | ``` 23 | -------------------------------------------------------------------------------- /fela-preset-web/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/fela-preset-web 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/fela-preset-web "4.3.5-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | After adding the above dependency to your project you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require 14 | cljsjs.fela 15 | cljsjs.fela-preset-web)) 16 | ``` 17 | 18 | # Example 19 | 20 | ```clojure 21 | (.createRenderer js/Fela #js {:plugins js/FelaPresetWeb}) 22 | ``` 23 | -------------------------------------------------------------------------------- /pica/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/pica 2 | 3 | Provides pica (Resize image in browser with high quality and high speed) 4 | 5 | [](dependency) 6 | ```clojure 7 | [cljsjs/pica "3.0.4-0"] ;; latest release 8 | ``` 9 | [](/dependency) 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require [cljsjs.pica])) 14 | ``` 15 | 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | 18 | ## Maintenance 19 | 20 | Bump the version number in build.boot, 21 | the source and externs are downloaded from github. 22 | -------------------------------------------------------------------------------- /rx/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/rx 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/rx "4.0.7-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.rx)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /ajv/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/ajv 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/ajv "4.7.7-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.ajv)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /big/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/big 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/big "3.1.3-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.big)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /csv/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/csv 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/csv "1.1.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.csv)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /facebook/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/facebook 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/facebook "v20150729-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. 11 | 12 | The jar only provides an extern file required for advanced compilation. 13 | Facebook JavaScript API will still need to provided through some other mechanism. 14 | 15 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 16 | -------------------------------------------------------------------------------- /gun/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/gun 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/gun "0.6.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature of the Clojurescript compiler. After adding the above dependency to your project +you can require and use the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.gun)) 14 | ``` 15 | 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /husl/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/husl 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/husl "6.0.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.husl)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /jed/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jed 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jed "1.1.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.jed)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /mui/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/mui 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/mui "0.1.21-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require [cljsjs.mui])) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /object-assign-shim/resources/cljsjs/production/object-assign-shim.min.inc.js: -------------------------------------------------------------------------------- 1 | Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:function(e){"use strict";if(void 0===e||null===e)throw new TypeError("Cannot convert first argument to object");for(var r=Object(e),t=1;ta;a++){var c=o[a],b=Object.getOwnPropertyDescriptor(n,c);void 0!==b&&b.enumerable&&(r[c]=n[c])}}return r}}); -------------------------------------------------------------------------------- /tv4/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/tv4 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/tv4 "1.2.7-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.tv4)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /vega/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/vega 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/vega "4.4.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.vega)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /vis/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/vis 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/vis "4.21.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.vis)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /wad/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/wad 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/wad "2.2.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.wad)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /webslides/resources/cljsjs/webslides/common/webslides.ext.js: -------------------------------------------------------------------------------- 1 | /********************************************************************** 2 | * Extern for WebSlides 3 | * Generated by http://jmmk.github.io/javascript-externs-generator 4 | **********************************************************************/ 5 | var WebSlides = function () {}; 6 | /********************************************************************** 7 | * End Generated Extern for WebSlides 8 | /**********************************************************************/ 9 | -------------------------------------------------------------------------------- /babylon/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/babylon 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/babylon "2.2.0-0"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.babylon)) 15 | ``` 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /barn/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/barn 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/barn "0.2.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.barn)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /cropper/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/cropper 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/cropper "0.8.1-0"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.cropper)) 15 | ``` 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /d3-tip/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/d3-tip 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/d3-tip "0.7.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.d3-tip)) 16 | ``` 17 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 18 | -------------------------------------------------------------------------------- /dygraph/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/dygraph 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/dygraph "2.1.0-0"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.dygraph)) 15 | ``` 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /flyd/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/flyd 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/flyd "0.2.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.flyd)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /fuse/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/fuse 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/fuse "2.6.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require [cljsjs.fuse])) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /long/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/long 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/long "3.0.3-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.long)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /oboe/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/oboe 2 | ```clojure 3 | [cljsjs/oboe "2.1.2-1"] ;; latest release 4 | ``` 5 | Packages up [Oboe.js](http://oboejs.com/). 6 | 7 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 8 | of the ClojureScript compiler. After adding the above dependency to your project 9 | you can require the packaged library like so: 10 | 11 | ```clojure 12 | (ns application.core 13 | (:require cljsjs.oboe)) 14 | ``` 15 | 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /pikaday/resources/deps.cljs: -------------------------------------------------------------------------------- 1 | {:foreign-libs [{:file "cljsjs/pikaday/development/pikaday.inc.js" 2 | :provides ["cljsjs.pikaday"] 3 | :file-min "cljsjs/pikaday/production/pikaday.min.inc.js"} 4 | {:file "cljsjs/pikaday/development/pikaday.inc.js" 5 | :file-min "cljsjs/pikaday/production/pikaday.min.inc.js" 6 | :requires ["cljsjs.moment"] 7 | :provides ["cljsjs.pikaday.with-moment"]}] 8 | :externs ["cljsjs/pikaday/common/pikaday.ext.js"]} 9 | -------------------------------------------------------------------------------- /pinterest/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/pinterest 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/pinterest "v20160425-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. 11 | 12 | The jar only provides an extern file required for advanced compilation. 13 | Pinterest JavaScript API will still need to provided through some other mechanism. 14 | 15 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 16 | -------------------------------------------------------------------------------- /qart/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/qart 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/qart "1.0.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.qart)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /skel/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/skel 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/skel "3.0.1-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.skel)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /stats/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/stats 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/stats "16.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.stats)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /tock/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/tock 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/tock "1.0.12-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.tock)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /anime/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/anime 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/anime "2.2.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.anime)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /bootstrap/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/bootstrap 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/bootstrap "3.3.6-1"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.bootstrap)) 15 | ``` 16 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 17 | -------------------------------------------------------------------------------- /chance/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/chance 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/chance "0.7.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.chance)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /chess.js/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/chess.js 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/chess.js "0.10.2-0"] ;; latest release 6 | ``` 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.chess.js :as chess)) 15 | ``` 16 | 17 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 18 | -------------------------------------------------------------------------------- /d3kit/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/d3kit 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/d3kit "1.0.9-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.d3kit)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /d3pie/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/d3pie 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/d3pie "0.1.9-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.d3pie)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /device/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/device 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/device "0.2.7-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.device)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /dexie/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/dexie 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/dexie "2.0.4-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.dexie)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /eccjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/eccjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/eccjs "0.3.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.eccjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /fabric/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/fabric 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/fabric "1.5.0-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.fabric)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /hammer/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/hammer 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/hammer "2.0.8-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.hammer)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /jquery/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jquery 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jquery "3.2.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.jquery)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /js-yaml/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/js-yaml 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/js-yaml "3.3.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.js-yaml)) 16 | ``` 17 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 18 | -------------------------------------------------------------------------------- /jsdiff/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jsdiff 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jsdiff "3.4.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.jsdiff)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /kiwijs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/kiwijs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/kiwijs "1.1.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.kiwijs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /ladda/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/ladda 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/ladda "1.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require [cljsjs.ladda])) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /material-ui_0/resources/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 3 | var materialUI = require('./build/index.js'); 4 | var materialUIStyles = require('./build/styles/index.js'); 5 | var withWidth = require('./build/utils/withWidth.js'); 6 | var colorManipulator = require('./build/utils/colorManipulator.js'); 7 | 8 | window["MaterialUI"] = materialUI; 9 | window["MaterialUIStyles"] = materialUIStyles; 10 | window["MaterialUIUtils"] = { 11 | withWidth : withWidth, 12 | colorManipulator : colorManipulator 13 | }; 14 | })(); 15 | -------------------------------------------------------------------------------- /neo4j/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/neo4j 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/neo4j "1.0.3-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.neo4j)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /parse/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/parse 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/parse "1.6.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.parse)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /pdfjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/pdfjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/pdfjs "2.0.943-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.pdfjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /ramda/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/ramda 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/ramda "0.22.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.ramda)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /react-pose/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/react-pose 2 | 3 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 4 | of the ClojureScript compiler. After adding the above dependency to your project 5 | you can require and use the packaged library like so: 6 | 7 | ```clojure 8 | (ns application.core 9 | (:require cljsjs.react-pose)) 10 | ``` 11 | 12 | Externs were generated using https://github.com/jmmk/javascript-externs-generator 13 | 14 | [flibs]: https://github.com/clojure/clojurescript/wiki/Foreign-Dependencies 15 | -------------------------------------------------------------------------------- /sticky/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/sticky 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/sticky "1.1.9-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.sticky)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /svgjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/svgjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/svgjs "2.2.5-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.svgjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /toastr/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/toastr 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/toastr "2.1.2-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.toastr)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /xxhash/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/xxhash 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/xxhash "0.2.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.xxhash)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /zxcvbn/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/zxcvbn 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/zxcvbn "4.4.0-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.zxcvbn)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /dropbox/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/dropbox 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/dropbox "0.10.3-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.dropbox)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /enquire/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/enquire 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/enquire "2.1.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.enquire)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /enzyme/resources/build/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | const webpack = require("webpack"); 3 | 4 | module.exports = { 5 | entry: [path.join(__dirname, "node_modules", "enzyme", "build", "index.js"), 6 | path.join(__dirname, "helper.js")], 7 | output: { 8 | filename: "enzyme.bundled.js" 9 | }, 10 | externals: { 11 | "react/addons": true, 12 | "react/lib/ExecutionEnvironment": true, 13 | "react/lib/ReactContext": true, 14 | "react-addons-test-utils": "react-dom" 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /epubjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/epubjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/epubjs "0.2.15-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.epubjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /hashids/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/hashids 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/hashids "1.0.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.hashids)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /introjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/introjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/introjs "2.4.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.introjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /iscroll/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/iscroll 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/iscroll "5.2.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.iscroll)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /jquery_1/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jquery 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jquery "1.12.4-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.jquery)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /jquery_2/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jquery 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jquery "2.2.4-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.jquery)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /labella/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/labella 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/labella "0.1.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.labella)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /lodash/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/lodash 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/lodash "4.11.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.lodash)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /mathjax/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/mathjax 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/mathjax "2.7.5-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.mathjax)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /paperjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/paperjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/paperjs "0.9.24-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.paperjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /phoenix/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/phoenix 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/phoenix "1.3.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.phoenix)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /platform/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/platform 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/platform "1.3.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.platform)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /pusher/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/pusher 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/pusher "3.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] 10 | feature 11 | of the ClojureScript compiler. After adding the above dependency to 12 | your project, you can require the packaged library like so: 13 | 14 | ```clojure 15 | (ns application.core 16 | (:require cljsjs.pusher)) 17 | ``` 18 | 19 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 20 | -------------------------------------------------------------------------------- /radium/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/radium 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/radium "0.17.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.radium)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /rrule/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/rrule 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/rrule "2.1.0-838226d-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.rrule)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /snapsvg/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/snapsvg 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/snapsvg "0.4.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.snapsvg)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /soundjs/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/soundjs 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/soundjs "0.6.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.soundjs)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /tabletop/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/tabletop 2 | [](dependency) 3 | ```clojure 4 | [cljsjs/tabletop "1.4.3-0"] ;; latest release 5 | ``` 6 | [](/dependency) 7 | 8 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 9 | of the ClojureScript compiler. After adding the above dependency to your project 10 | you can require the packaged library like so: 11 | 12 | ```clojure 13 | (ns application.core 14 | (:require cljsjs.tabletop)) 15 | ``` 16 | 17 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 18 | -------------------------------------------------------------------------------- /timeago/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/timeago 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/timeago "3.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.timeago)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /uikit/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/uikit 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/uikit "3.0.0-beta.30-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.uikit)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /victory/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/victory 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/victory "0.24.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.victory)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /xregexp/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/xregexp 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/xregexp "3.1.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.xregexp)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/benchmark 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/benchmark "2.1.4-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.benchmark)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /d3-cloud/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/d3-cloud 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/d3-cloud "1.2.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.d3-cloud)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /dropzone/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/dropzone 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/dropzone "5.5.0-1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.dropzone)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /dynamics/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/dynamics 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/dynamics "1.1.5-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.dynamics)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /esprima/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/esprima 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/esprima "2.7.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] 10 | feature of the ClojureScript compiler. After adding the above 11 | dependency to your project you can require the packaged library like 12 | so: 13 | 14 | ```clojure 15 | (ns application.core 16 | (:require cljsjs.esprima)) 17 | ``` 18 | 19 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 20 | -------------------------------------------------------------------------------- /fela/resources/cljsjs/fela/common/fela.ext.js: -------------------------------------------------------------------------------- 1 | var Fela = {}; 2 | 3 | Fela.createRenderer = function(){}; 4 | Fela.createRenderer.renderRule = function(){}; 5 | Fela.createRenderer.renderKeyframe = function(){}; 6 | Fela.createRenderer.renderFont = function(){}; 7 | Fela.createRenderer.renderStatic = function(){}; 8 | Fela.createRenderer.renderToString = function(){}; 9 | Fela.createRenderer.subscribe = function(){}; 10 | Fela.createRenderer.clear = function(){}; 11 | 12 | Fela.combineRules = function(){}; 13 | Fela.enhance = function(){}; 14 | -------------------------------------------------------------------------------- /hls/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/hls 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/hls "0.11.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.hls)) 16 | ``` 17 | 18 | [flibs]: https://github.com/clojure/clojurescript/wiki/Packaging-Foreign-Dependencies 19 | -------------------------------------------------------------------------------- /machina/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/machina 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/machina "2.0.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require [cljsjs.machina])) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /morphdom/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/morphdom 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/morphdom "1.1.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.morphdom)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /mustache/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/mustache 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/mustache "2.2.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.mustache)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /oauthio/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/oauthio 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/oauthio "0.6.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] 10 | feature 11 | of the ClojureScript compiler. After adding the above dependency to 12 | your project, you can require the packaged library like so: 13 | 14 | ```clojure 15 | (ns application.core 16 | (:require cljsjs.oauthio)) 17 | ``` 18 | 19 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 20 | -------------------------------------------------------------------------------- /opentype/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/opentype 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/opentype "0.6.9-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.opentype)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /pluralize/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/pluralize 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/pluralize "3.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.pluralize)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /recharts/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/recharts 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/recharts "1.4.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.recharts)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /resize-observer-polyfill/resources/cljsjs/resize-observer-polyfill/common/resize-observer-polyfill.ext.js: -------------------------------------------------------------------------------- 1 | // ResizeObserver polyfill. 2 | // As per the spec. 3 | // https://wicg.github.io/ResizeObserver/#resize-observer-entry-interface 4 | var ResizeObserver = function() {}; 5 | ResizeObserver.prototype = { 6 | "observe": function () {}, 7 | "unobserve": function () {}, 8 | "disconnect": function () {} 9 | }; 10 | var ResizeObserverEntry = function () {}; 11 | ResizeObserverEntry.Element = {}; 12 | ResizeObserverEntry.contentRect = {}; 13 | -------------------------------------------------------------------------------- /scrollify/resources/cljsjs/scrollify/common/scrollify.ext.js: -------------------------------------------------------------------------------- 1 | var jQuery = { 2 | "scrollify": { 3 | "move": function () {}, 4 | "instantMove": function () {}, 5 | "next": function () {}, 6 | "previous": function () {}, 7 | "instantNext": function () {}, 8 | "instantPrevious": function () {}, 9 | "destroy": function () {}, 10 | "update": function () {}, 11 | "current": function () {}, 12 | "disable": function () {}, 13 | "enable": function () {}, 14 | "isDisabled": function () {} 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /showdown/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/showdown 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/showdown "1.8.6-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | to can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.showdown)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /amplitude/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/amplitude 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/amplitude "2.12.1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.amplitude)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /bignumber/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/bignumber 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/bignumber "4.1.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.bignumber)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /billboard/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/billboard 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/billboard "1.0.0-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.billboard)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /chemdoodle/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/chemdoodle 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/chemdoodle "7.0.1"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.chemdoodle)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /cytoscape/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/cytoscape 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/cytoscape "3.1.4-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.cytoscape)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /delaunator/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/delaunator 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/delaunator "2.0.2-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.delaunator)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /duo-web-sdk/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/duo-web-sdk 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/duo-web-sdk "2.7-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.duo-web-sdk)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps -------------------------------------------------------------------------------- /fastclick/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/fastclick 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/fastclick "1.0.6-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.fastclick)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /highstock/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/highstock 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/highstock "6.0.7-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.highstock)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /jquery-ui/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/jquery-ui 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/jquery-ui "1.11.4-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.jquery-ui)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | -------------------------------------------------------------------------------- /markdown/README.md: -------------------------------------------------------------------------------- 1 | # cljsjs/markdown 2 | 3 | [](dependency) 4 | ```clojure 5 | [cljsjs/markdown "0.6.0-beta1-0"] ;; latest release 6 | ``` 7 | [](/dependency) 8 | 9 | This jar comes with `deps.cljs` as used by the [Foreign Libs][flibs] feature 10 | of the ClojureScript compiler. After adding the above dependency to your project 11 | you can require the packaged library like so: 12 | 13 | ```clojure 14 | (ns application.core 15 | (:require cljsjs.markdown)) 16 | ``` 17 | 18 | [flibs]: https://clojurescript.org/reference/packaging-foreign-deps 19 | --------------------------------------------------------------------------------