├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── .nvmrc ├── .stylelintrc ├── COPYING ├── README.md ├── babel.config.cjs ├── config ├── custom-environment-variables.json └── default.json ├── eslint.config.mjs ├── jest.config.mjs ├── package.json ├── rollup.config.js ├── scripts ├── build-html.cjs ├── build-styles-json.mjs ├── collect-locale.mjs ├── common.mjs ├── fetch-citeproc-js.mjs ├── locale-from-zotero.mjs ├── locale-to-zotero.mjs └── server.cjs ├── src ├── html │ ├── faq.hbs │ ├── faq.md │ ├── hydrate.hbs │ └── index.hbs ├── js │ ├── bib-component.jsx │ ├── components │ │ ├── about.jsx │ │ ├── bibliography.jsx │ │ ├── bibliographySection.jsx │ │ ├── brand.jsx │ │ ├── cite-tools.jsx │ │ ├── confirm-add-dialog.jsx │ │ ├── confirmation.jsx │ │ ├── container.jsx │ │ ├── copy-citation-dialog.jsx │ │ ├── crash-handler.jsx │ │ ├── delete-all-button.jsx │ │ ├── editor.jsx │ │ ├── export-tools.jsx │ │ ├── footer.jsx │ │ ├── form │ │ │ ├── creator-field.jsx │ │ │ ├── creators.jsx │ │ │ ├── field.jsx │ │ │ ├── input.jsx │ │ │ ├── select.jsx │ │ │ └── text-area.jsx │ │ ├── itembox.jsx │ │ ├── message.jsx │ │ ├── modal.jsx │ │ ├── multiple-choice-dialog.jsx │ │ ├── multiple-items-dialog.jsx │ │ ├── permalink-tools.jsx │ │ ├── placeholder-bibliography.jsx │ │ ├── review.jsx │ │ ├── style-installer.jsx │ │ ├── style-selector.jsx │ │ ├── ui │ │ │ └── editable.jsx │ │ ├── whats-this.jsx │ │ └── zbib.jsx │ ├── constants │ │ ├── defaults.js │ │ ├── export-formats.js │ │ └── item.js │ ├── hooks │ │ ├── dnd.js │ │ ├── index.js │ │ └── use-user-type-detector.jsx │ ├── main.js │ ├── style-search.worker.js │ ├── utils.js │ ├── wdyr.js │ └── zotero-translation-client.js ├── scss │ ├── abstracts │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── functions │ │ │ ├── _asset-url.scss │ │ │ ├── _breakpoints.scss │ │ │ └── _strings.scss │ │ ├── mixins │ │ │ ├── _breakpoints.scss │ │ │ ├── _button.scss │ │ │ ├── _selectors.scss │ │ │ └── _text-truncate.scss │ │ └── utilities │ │ │ ├── _display.scss │ │ │ ├── _screen-reader.scss │ │ │ └── _text.scss │ ├── base │ │ ├── _base.scss │ │ ├── _outline.scss │ │ ├── _reset.scss │ │ └── _type.scss │ ├── bib.scss │ ├── components │ │ ├── _about.scss │ │ ├── _bibliography-section.scss │ │ ├── _bibliography.scss │ │ ├── _brand.scss │ │ ├── _button.scss │ │ ├── _cite-tools.scss │ │ ├── _copy-citation-dialog.scss │ │ ├── _crash-handler.scss │ │ ├── _creators.scss │ │ ├── _dnd.scss │ │ ├── _editable.scss │ │ ├── _editor.scss │ │ ├── _export-tools.scss │ │ ├── _input.scss │ │ ├── _message.scss │ │ ├── _multiple-choice-dialog.scss │ │ ├── _permalink-tools.scss │ │ ├── _react-modal.scss │ │ ├── _review.scss │ │ └── _style-installer.scss │ └── layout │ │ ├── _badge.scss │ │ ├── _csl.scss │ │ ├── _faq.scss │ │ ├── _fonts.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _grid.scss │ │ ├── _inline-feedback.scss │ │ ├── _messages.scss │ │ ├── _section-about.scss │ │ ├── _section-brand.scss │ │ ├── _section-cite.scss │ │ ├── _section-export.scss │ │ ├── _section-link.scss │ │ └── _sections.scss └── static │ ├── favicon.ico │ ├── fonts │ ├── 36500B_0_0.eot │ ├── 36500B_0_0.svg │ ├── 36500B_0_0.ttf │ ├── 36500B_0_0.woff │ ├── 36500B_0_0.woff2 │ ├── 36500B_1_0.eot │ ├── 36500B_1_0.svg │ ├── 36500B_1_0.ttf │ ├── 36500B_1_0.woff │ ├── 36500B_1_0.woff2 │ ├── 36500B_2_0.eot │ ├── 36500B_2_0.svg │ ├── 36500B_2_0.ttf │ ├── 36500B_2_0.woff │ ├── 36500B_2_0.woff2 │ ├── 36500B_3_0.eot │ ├── 36500B_3_0.svg │ ├── 36500B_3_0.ttf │ ├── 36500B_3_0.woff │ ├── 36500B_3_0.woff2 │ ├── 36500B_4_0.eot │ ├── 36500B_4_0.svg │ ├── 36500B_4_0.ttf │ ├── 36500B_4_0.woff │ ├── 36500B_4_0.woff2 │ ├── 36500B_5_0.eot │ ├── 36500B_5_0.svg │ ├── 36500B_5_0.ttf │ ├── 36500B_5_0.woff │ └── 36500B_5_0.woff2 │ ├── icons │ ├── 16 │ │ ├── cog.svg │ │ ├── copy.svg │ │ ├── document.svg │ │ ├── export.svg │ │ ├── folder.svg │ │ ├── magnifier.svg │ │ ├── minus.svg │ │ ├── new.svg │ │ ├── note.svg │ │ ├── options.svg │ │ ├── paperclip.svg │ │ ├── pencil.svg │ │ ├── plus.svg │ │ ├── quote.svg │ │ ├── remove-sm.svg │ │ ├── remove.svg │ │ ├── spin.svg │ │ ├── tag.svg │ │ ├── tick.svg │ │ └── trash.svg │ ├── 20 │ │ ├── add-collection.svg │ │ ├── input-dual.svg │ │ └── input-single.svg │ ├── 24 │ │ ├── grip.svg │ │ └── remove.svg │ └── 28 │ │ ├── dots.svg │ │ └── pencil.svg │ ├── images │ ├── about │ │ ├── autosave.svg │ │ ├── bibliography-title.svg │ │ ├── cite.svg │ │ ├── citeproc.svg │ │ ├── copy.svg │ │ ├── deleting-items.svg │ │ ├── editing.svg │ │ ├── export.svg │ │ ├── link.svg │ │ ├── manual-entry.svg │ │ ├── remove-xs.svg │ │ └── style-selection.svg │ ├── bg-icons │ │ └── 16 │ │ │ ├── chevron-11-down-777.svg │ │ │ ├── chevron-11-down-dark.svg │ │ │ ├── chevron-11-down-light.svg │ │ │ └── chevron-11-down-secondary.svg │ └── empty-bibliography.svg │ ├── js │ ├── citeproc-rs │ └── citeproc-rs-loader.js │ ├── locales │ ├── locales-af-ZA.xml │ ├── locales-ar.xml │ ├── locales-bal-PK.xml │ ├── locales-bg-BG.xml │ ├── locales-brh-PK.xml │ ├── locales-ca-AD.xml │ ├── locales-cs-CZ.xml │ ├── locales-cy-GB.xml │ ├── locales-da-DK.xml │ ├── locales-de-AT.xml │ ├── locales-de-CH.xml │ ├── locales-de-DE.xml │ ├── locales-el-GR.xml │ ├── locales-en-GB.xml │ ├── locales-en-US.xml │ ├── locales-es-CL.xml │ ├── locales-es-ES.xml │ ├── locales-es-MX.xml │ ├── locales-et-EE.xml │ ├── locales-eu.xml │ ├── locales-fa-IR.xml │ ├── locales-fi-FI.xml │ ├── locales-fr-CA.xml │ ├── locales-fr-FR.xml │ ├── locales-gl-ES.xml │ ├── locales-he-IL.xml │ ├── locales-hi-IN.xml │ ├── locales-hr-HR.xml │ ├── locales-hu-HU.xml │ ├── locales-id-ID.xml │ ├── locales-is-IS.xml │ ├── locales-it-IT.xml │ ├── locales-ja-JP.xml │ ├── locales-km-KH.xml │ ├── locales-ko-KR.xml │ ├── locales-la.xml │ ├── locales-lij-IT.xml │ ├── locales-lt-LT.xml │ ├── locales-lv-LV.xml │ ├── locales-mn-MN.xml │ ├── locales-ms-MY.xml │ ├── locales-nb-NO.xml │ ├── locales-nl-NL.xml │ ├── locales-nn-NO.xml │ ├── locales-pa-PK.xml │ ├── locales-pl-PL.xml │ ├── locales-pt-BR.xml │ ├── locales-pt-PT.xml │ ├── locales-ro-RO.xml │ ├── locales-ru-RU.xml │ ├── locales-sk-SK.xml │ ├── locales-sl-SI.xml │ ├── locales-sr-Cyrl-RS.xml │ ├── locales-sr-Latn-RS.xml │ ├── locales-sv-SE.xml │ ├── locales-th-TH.xml │ ├── locales-tr-TR.xml │ ├── locales-uk-UA.xml │ ├── locales-vi-VN.xml │ ├── locales-zh-CN.xml │ └── locales-zh-TW.xml │ └── styles.json └── test ├── .eslintrc ├── basic.test.jsx ├── bibliography.test.jsx ├── citation-style.test.jsx ├── citations.test.jsx ├── editor.test.jsx ├── fixtures ├── apa.xml.js ├── chicago-notes-bibliography-subsequent-author-title-17th-edition.xml.js ├── chicago-notes.xml.js ├── harvard-cite-them-right.xml.js ├── local-storage-100-items.json ├── local-storage-items-for-apa.json ├── locales-en-gb.xml.js ├── locales-en-us.xml.js ├── locales-pl-pl.xml.js ├── modern-language-association.xml.js ├── nature.xml.js ├── pasted-bibtex.js ├── response-translate-apa-identifier.json ├── response-translate-doi.json ├── response-translate-identifier-wrong-author.json ├── response-translate-identifier.json ├── response-translate-items.json ├── response-translate-pasted.json ├── response-translate-search-more.json ├── response-translate-search.json ├── schema.json ├── styles.json ├── the-journals-of-gerontology-series-a.js └── turabian-notes-bibliography.xml.js ├── import.test.jsx ├── mocks ├── noop.js ├── react-virtualized-auto-sizer.js └── style-search.worker.js ├── remote-data.test.jsx ├── translate.test.jsx └── utils ├── common.js ├── env-with-fetch.js ├── jest-setup.js ├── render.js └── xhr-mock.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps = true -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/.stylelintrc -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /config/custom-environment-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/config/custom-environment-variables.json -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "indexConfig": { 3 | } 4 | } -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/build-html.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/build-html.cjs -------------------------------------------------------------------------------- /scripts/build-styles-json.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/build-styles-json.mjs -------------------------------------------------------------------------------- /scripts/collect-locale.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/collect-locale.mjs -------------------------------------------------------------------------------- /scripts/common.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/common.mjs -------------------------------------------------------------------------------- /scripts/fetch-citeproc-js.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/fetch-citeproc-js.mjs -------------------------------------------------------------------------------- /scripts/locale-from-zotero.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/locale-from-zotero.mjs -------------------------------------------------------------------------------- /scripts/locale-to-zotero.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/locale-to-zotero.mjs -------------------------------------------------------------------------------- /scripts/server.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/scripts/server.cjs -------------------------------------------------------------------------------- /src/html/faq.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/html/faq.hbs -------------------------------------------------------------------------------- /src/html/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/html/faq.md -------------------------------------------------------------------------------- /src/html/hydrate.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/html/hydrate.hbs -------------------------------------------------------------------------------- /src/html/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/html/index.hbs -------------------------------------------------------------------------------- /src/js/bib-component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/bib-component.jsx -------------------------------------------------------------------------------- /src/js/components/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/about.jsx -------------------------------------------------------------------------------- /src/js/components/bibliography.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/bibliography.jsx -------------------------------------------------------------------------------- /src/js/components/bibliographySection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/bibliographySection.jsx -------------------------------------------------------------------------------- /src/js/components/brand.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/brand.jsx -------------------------------------------------------------------------------- /src/js/components/cite-tools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/cite-tools.jsx -------------------------------------------------------------------------------- /src/js/components/confirm-add-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/confirm-add-dialog.jsx -------------------------------------------------------------------------------- /src/js/components/confirmation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/confirmation.jsx -------------------------------------------------------------------------------- /src/js/components/container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/container.jsx -------------------------------------------------------------------------------- /src/js/components/copy-citation-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/copy-citation-dialog.jsx -------------------------------------------------------------------------------- /src/js/components/crash-handler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/crash-handler.jsx -------------------------------------------------------------------------------- /src/js/components/delete-all-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/delete-all-button.jsx -------------------------------------------------------------------------------- /src/js/components/editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/editor.jsx -------------------------------------------------------------------------------- /src/js/components/export-tools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/export-tools.jsx -------------------------------------------------------------------------------- /src/js/components/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/footer.jsx -------------------------------------------------------------------------------- /src/js/components/form/creator-field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/form/creator-field.jsx -------------------------------------------------------------------------------- /src/js/components/form/creators.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/form/creators.jsx -------------------------------------------------------------------------------- /src/js/components/form/field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/form/field.jsx -------------------------------------------------------------------------------- /src/js/components/form/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/form/input.jsx -------------------------------------------------------------------------------- /src/js/components/form/select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/form/select.jsx -------------------------------------------------------------------------------- /src/js/components/form/text-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/form/text-area.jsx -------------------------------------------------------------------------------- /src/js/components/itembox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/itembox.jsx -------------------------------------------------------------------------------- /src/js/components/message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/message.jsx -------------------------------------------------------------------------------- /src/js/components/modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/modal.jsx -------------------------------------------------------------------------------- /src/js/components/multiple-choice-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/multiple-choice-dialog.jsx -------------------------------------------------------------------------------- /src/js/components/multiple-items-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/multiple-items-dialog.jsx -------------------------------------------------------------------------------- /src/js/components/permalink-tools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/permalink-tools.jsx -------------------------------------------------------------------------------- /src/js/components/placeholder-bibliography.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/placeholder-bibliography.jsx -------------------------------------------------------------------------------- /src/js/components/review.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/review.jsx -------------------------------------------------------------------------------- /src/js/components/style-installer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/style-installer.jsx -------------------------------------------------------------------------------- /src/js/components/style-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/style-selector.jsx -------------------------------------------------------------------------------- /src/js/components/ui/editable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/ui/editable.jsx -------------------------------------------------------------------------------- /src/js/components/whats-this.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/whats-this.jsx -------------------------------------------------------------------------------- /src/js/components/zbib.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/components/zbib.jsx -------------------------------------------------------------------------------- /src/js/constants/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/constants/defaults.js -------------------------------------------------------------------------------- /src/js/constants/export-formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/constants/export-formats.js -------------------------------------------------------------------------------- /src/js/constants/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/constants/item.js -------------------------------------------------------------------------------- /src/js/hooks/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/hooks/dnd.js -------------------------------------------------------------------------------- /src/js/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/hooks/index.js -------------------------------------------------------------------------------- /src/js/hooks/use-user-type-detector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/hooks/use-user-type-detector.jsx -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/style-search.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/style-search.worker.js -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/utils.js -------------------------------------------------------------------------------- /src/js/wdyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/wdyr.js -------------------------------------------------------------------------------- /src/js/zotero-translation-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/js/zotero-translation-client.js -------------------------------------------------------------------------------- /src/scss/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/_functions.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/_mixins.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/_utilities.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/_variables.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_asset-url.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/functions/_asset-url.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/functions/_breakpoints.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_strings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/functions/_strings.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/mixins/_button.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_selectors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/mixins/_selectors.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /src/scss/abstracts/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/utilities/_display.scss -------------------------------------------------------------------------------- /src/scss/abstracts/utilities/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/utilities/_screen-reader.scss -------------------------------------------------------------------------------- /src/scss/abstracts/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/abstracts/utilities/_text.scss -------------------------------------------------------------------------------- /src/scss/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/base/_base.scss -------------------------------------------------------------------------------- /src/scss/base/_outline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/base/_outline.scss -------------------------------------------------------------------------------- /src/scss/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/base/_reset.scss -------------------------------------------------------------------------------- /src/scss/base/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/base/_type.scss -------------------------------------------------------------------------------- /src/scss/bib.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/bib.scss -------------------------------------------------------------------------------- /src/scss/components/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_about.scss -------------------------------------------------------------------------------- /src/scss/components/_bibliography-section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_bibliography-section.scss -------------------------------------------------------------------------------- /src/scss/components/_bibliography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_bibliography.scss -------------------------------------------------------------------------------- /src/scss/components/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_brand.scss -------------------------------------------------------------------------------- /src/scss/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_button.scss -------------------------------------------------------------------------------- /src/scss/components/_cite-tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_cite-tools.scss -------------------------------------------------------------------------------- /src/scss/components/_copy-citation-dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_copy-citation-dialog.scss -------------------------------------------------------------------------------- /src/scss/components/_crash-handler.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_crash-handler.scss -------------------------------------------------------------------------------- /src/scss/components/_creators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_creators.scss -------------------------------------------------------------------------------- /src/scss/components/_dnd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_dnd.scss -------------------------------------------------------------------------------- /src/scss/components/_editable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_editable.scss -------------------------------------------------------------------------------- /src/scss/components/_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_editor.scss -------------------------------------------------------------------------------- /src/scss/components/_export-tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_export-tools.scss -------------------------------------------------------------------------------- /src/scss/components/_input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_input.scss -------------------------------------------------------------------------------- /src/scss/components/_message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_message.scss -------------------------------------------------------------------------------- /src/scss/components/_multiple-choice-dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_multiple-choice-dialog.scss -------------------------------------------------------------------------------- /src/scss/components/_permalink-tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_permalink-tools.scss -------------------------------------------------------------------------------- /src/scss/components/_react-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_react-modal.scss -------------------------------------------------------------------------------- /src/scss/components/_review.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_review.scss -------------------------------------------------------------------------------- /src/scss/components/_style-installer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/components/_style-installer.scss -------------------------------------------------------------------------------- /src/scss/layout/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_badge.scss -------------------------------------------------------------------------------- /src/scss/layout/_csl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_csl.scss -------------------------------------------------------------------------------- /src/scss/layout/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_faq.scss -------------------------------------------------------------------------------- /src/scss/layout/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_fonts.scss -------------------------------------------------------------------------------- /src/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_footer.scss -------------------------------------------------------------------------------- /src/scss/layout/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_forms.scss -------------------------------------------------------------------------------- /src/scss/layout/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_grid.scss -------------------------------------------------------------------------------- /src/scss/layout/_inline-feedback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_inline-feedback.scss -------------------------------------------------------------------------------- /src/scss/layout/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_messages.scss -------------------------------------------------------------------------------- /src/scss/layout/_section-about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_section-about.scss -------------------------------------------------------------------------------- /src/scss/layout/_section-brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_section-brand.scss -------------------------------------------------------------------------------- /src/scss/layout/_section-cite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_section-cite.scss -------------------------------------------------------------------------------- /src/scss/layout/_section-export.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_section-export.scss -------------------------------------------------------------------------------- /src/scss/layout/_section-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_section-link.scss -------------------------------------------------------------------------------- /src/scss/layout/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/scss/layout/_sections.scss -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/static/fonts/36500B_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_0_0.eot -------------------------------------------------------------------------------- /src/static/fonts/36500B_0_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_0_0.svg -------------------------------------------------------------------------------- /src/static/fonts/36500B_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_0_0.ttf -------------------------------------------------------------------------------- /src/static/fonts/36500B_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_0_0.woff -------------------------------------------------------------------------------- /src/static/fonts/36500B_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_0_0.woff2 -------------------------------------------------------------------------------- /src/static/fonts/36500B_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_1_0.eot -------------------------------------------------------------------------------- /src/static/fonts/36500B_1_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_1_0.svg -------------------------------------------------------------------------------- /src/static/fonts/36500B_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_1_0.ttf -------------------------------------------------------------------------------- /src/static/fonts/36500B_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_1_0.woff -------------------------------------------------------------------------------- /src/static/fonts/36500B_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_1_0.woff2 -------------------------------------------------------------------------------- /src/static/fonts/36500B_2_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_2_0.eot -------------------------------------------------------------------------------- /src/static/fonts/36500B_2_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_2_0.svg -------------------------------------------------------------------------------- /src/static/fonts/36500B_2_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_2_0.ttf -------------------------------------------------------------------------------- /src/static/fonts/36500B_2_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_2_0.woff -------------------------------------------------------------------------------- /src/static/fonts/36500B_2_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_2_0.woff2 -------------------------------------------------------------------------------- /src/static/fonts/36500B_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_3_0.eot -------------------------------------------------------------------------------- /src/static/fonts/36500B_3_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_3_0.svg -------------------------------------------------------------------------------- /src/static/fonts/36500B_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_3_0.ttf -------------------------------------------------------------------------------- /src/static/fonts/36500B_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_3_0.woff -------------------------------------------------------------------------------- /src/static/fonts/36500B_3_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_3_0.woff2 -------------------------------------------------------------------------------- /src/static/fonts/36500B_4_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_4_0.eot -------------------------------------------------------------------------------- /src/static/fonts/36500B_4_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_4_0.svg -------------------------------------------------------------------------------- /src/static/fonts/36500B_4_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_4_0.ttf -------------------------------------------------------------------------------- /src/static/fonts/36500B_4_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_4_0.woff -------------------------------------------------------------------------------- /src/static/fonts/36500B_4_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_4_0.woff2 -------------------------------------------------------------------------------- /src/static/fonts/36500B_5_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_5_0.eot -------------------------------------------------------------------------------- /src/static/fonts/36500B_5_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_5_0.svg -------------------------------------------------------------------------------- /src/static/fonts/36500B_5_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_5_0.ttf -------------------------------------------------------------------------------- /src/static/fonts/36500B_5_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_5_0.woff -------------------------------------------------------------------------------- /src/static/fonts/36500B_5_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/fonts/36500B_5_0.woff2 -------------------------------------------------------------------------------- /src/static/icons/16/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/cog.svg -------------------------------------------------------------------------------- /src/static/icons/16/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/copy.svg -------------------------------------------------------------------------------- /src/static/icons/16/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/document.svg -------------------------------------------------------------------------------- /src/static/icons/16/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/export.svg -------------------------------------------------------------------------------- /src/static/icons/16/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/folder.svg -------------------------------------------------------------------------------- /src/static/icons/16/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/magnifier.svg -------------------------------------------------------------------------------- /src/static/icons/16/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/minus.svg -------------------------------------------------------------------------------- /src/static/icons/16/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/new.svg -------------------------------------------------------------------------------- /src/static/icons/16/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/note.svg -------------------------------------------------------------------------------- /src/static/icons/16/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/options.svg -------------------------------------------------------------------------------- /src/static/icons/16/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/paperclip.svg -------------------------------------------------------------------------------- /src/static/icons/16/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/pencil.svg -------------------------------------------------------------------------------- /src/static/icons/16/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/plus.svg -------------------------------------------------------------------------------- /src/static/icons/16/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/quote.svg -------------------------------------------------------------------------------- /src/static/icons/16/remove-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/remove-sm.svg -------------------------------------------------------------------------------- /src/static/icons/16/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/remove.svg -------------------------------------------------------------------------------- /src/static/icons/16/spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/spin.svg -------------------------------------------------------------------------------- /src/static/icons/16/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/tag.svg -------------------------------------------------------------------------------- /src/static/icons/16/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/tick.svg -------------------------------------------------------------------------------- /src/static/icons/16/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/16/trash.svg -------------------------------------------------------------------------------- /src/static/icons/20/add-collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/20/add-collection.svg -------------------------------------------------------------------------------- /src/static/icons/20/input-dual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/20/input-dual.svg -------------------------------------------------------------------------------- /src/static/icons/20/input-single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/20/input-single.svg -------------------------------------------------------------------------------- /src/static/icons/24/grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/24/grip.svg -------------------------------------------------------------------------------- /src/static/icons/24/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/24/remove.svg -------------------------------------------------------------------------------- /src/static/icons/28/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/28/dots.svg -------------------------------------------------------------------------------- /src/static/icons/28/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/icons/28/pencil.svg -------------------------------------------------------------------------------- /src/static/images/about/autosave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/autosave.svg -------------------------------------------------------------------------------- /src/static/images/about/bibliography-title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/bibliography-title.svg -------------------------------------------------------------------------------- /src/static/images/about/cite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/cite.svg -------------------------------------------------------------------------------- /src/static/images/about/citeproc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/citeproc.svg -------------------------------------------------------------------------------- /src/static/images/about/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/copy.svg -------------------------------------------------------------------------------- /src/static/images/about/deleting-items.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/deleting-items.svg -------------------------------------------------------------------------------- /src/static/images/about/editing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/editing.svg -------------------------------------------------------------------------------- /src/static/images/about/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/export.svg -------------------------------------------------------------------------------- /src/static/images/about/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/link.svg -------------------------------------------------------------------------------- /src/static/images/about/manual-entry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/manual-entry.svg -------------------------------------------------------------------------------- /src/static/images/about/remove-xs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/remove-xs.svg -------------------------------------------------------------------------------- /src/static/images/about/style-selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/about/style-selection.svg -------------------------------------------------------------------------------- /src/static/images/bg-icons/16/chevron-11-down-777.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/bg-icons/16/chevron-11-down-777.svg -------------------------------------------------------------------------------- /src/static/images/bg-icons/16/chevron-11-down-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/bg-icons/16/chevron-11-down-dark.svg -------------------------------------------------------------------------------- /src/static/images/bg-icons/16/chevron-11-down-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/bg-icons/16/chevron-11-down-light.svg -------------------------------------------------------------------------------- /src/static/images/bg-icons/16/chevron-11-down-secondary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/bg-icons/16/chevron-11-down-secondary.svg -------------------------------------------------------------------------------- /src/static/images/empty-bibliography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/images/empty-bibliography.svg -------------------------------------------------------------------------------- /src/static/js/citeproc-rs: -------------------------------------------------------------------------------- 1 | ../../../node_modules/@citeproc-rs/wasm/_web -------------------------------------------------------------------------------- /src/static/js/citeproc-rs-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/js/citeproc-rs-loader.js -------------------------------------------------------------------------------- /src/static/locales/locales-af-ZA.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-af-ZA.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ar.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ar.xml -------------------------------------------------------------------------------- /src/static/locales/locales-bal-PK.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-bal-PK.xml -------------------------------------------------------------------------------- /src/static/locales/locales-bg-BG.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-bg-BG.xml -------------------------------------------------------------------------------- /src/static/locales/locales-brh-PK.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-brh-PK.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ca-AD.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ca-AD.xml -------------------------------------------------------------------------------- /src/static/locales/locales-cs-CZ.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-cs-CZ.xml -------------------------------------------------------------------------------- /src/static/locales/locales-cy-GB.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-cy-GB.xml -------------------------------------------------------------------------------- /src/static/locales/locales-da-DK.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-da-DK.xml -------------------------------------------------------------------------------- /src/static/locales/locales-de-AT.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-de-AT.xml -------------------------------------------------------------------------------- /src/static/locales/locales-de-CH.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-de-CH.xml -------------------------------------------------------------------------------- /src/static/locales/locales-de-DE.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-de-DE.xml -------------------------------------------------------------------------------- /src/static/locales/locales-el-GR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-el-GR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-en-GB.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-en-GB.xml -------------------------------------------------------------------------------- /src/static/locales/locales-en-US.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-en-US.xml -------------------------------------------------------------------------------- /src/static/locales/locales-es-CL.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-es-CL.xml -------------------------------------------------------------------------------- /src/static/locales/locales-es-ES.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-es-ES.xml -------------------------------------------------------------------------------- /src/static/locales/locales-es-MX.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-es-MX.xml -------------------------------------------------------------------------------- /src/static/locales/locales-et-EE.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-et-EE.xml -------------------------------------------------------------------------------- /src/static/locales/locales-eu.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-eu.xml -------------------------------------------------------------------------------- /src/static/locales/locales-fa-IR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-fa-IR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-fi-FI.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-fi-FI.xml -------------------------------------------------------------------------------- /src/static/locales/locales-fr-CA.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-fr-CA.xml -------------------------------------------------------------------------------- /src/static/locales/locales-fr-FR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-fr-FR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-gl-ES.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-gl-ES.xml -------------------------------------------------------------------------------- /src/static/locales/locales-he-IL.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-he-IL.xml -------------------------------------------------------------------------------- /src/static/locales/locales-hi-IN.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-hi-IN.xml -------------------------------------------------------------------------------- /src/static/locales/locales-hr-HR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-hr-HR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-hu-HU.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-hu-HU.xml -------------------------------------------------------------------------------- /src/static/locales/locales-id-ID.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-id-ID.xml -------------------------------------------------------------------------------- /src/static/locales/locales-is-IS.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-is-IS.xml -------------------------------------------------------------------------------- /src/static/locales/locales-it-IT.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-it-IT.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ja-JP.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ja-JP.xml -------------------------------------------------------------------------------- /src/static/locales/locales-km-KH.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-km-KH.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ko-KR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ko-KR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-la.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-la.xml -------------------------------------------------------------------------------- /src/static/locales/locales-lij-IT.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-lij-IT.xml -------------------------------------------------------------------------------- /src/static/locales/locales-lt-LT.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-lt-LT.xml -------------------------------------------------------------------------------- /src/static/locales/locales-lv-LV.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-lv-LV.xml -------------------------------------------------------------------------------- /src/static/locales/locales-mn-MN.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-mn-MN.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ms-MY.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ms-MY.xml -------------------------------------------------------------------------------- /src/static/locales/locales-nb-NO.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-nb-NO.xml -------------------------------------------------------------------------------- /src/static/locales/locales-nl-NL.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-nl-NL.xml -------------------------------------------------------------------------------- /src/static/locales/locales-nn-NO.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-nn-NO.xml -------------------------------------------------------------------------------- /src/static/locales/locales-pa-PK.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-pa-PK.xml -------------------------------------------------------------------------------- /src/static/locales/locales-pl-PL.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-pl-PL.xml -------------------------------------------------------------------------------- /src/static/locales/locales-pt-BR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-pt-BR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-pt-PT.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-pt-PT.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ro-RO.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ro-RO.xml -------------------------------------------------------------------------------- /src/static/locales/locales-ru-RU.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-ru-RU.xml -------------------------------------------------------------------------------- /src/static/locales/locales-sk-SK.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-sk-SK.xml -------------------------------------------------------------------------------- /src/static/locales/locales-sl-SI.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-sl-SI.xml -------------------------------------------------------------------------------- /src/static/locales/locales-sr-Cyrl-RS.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-sr-Cyrl-RS.xml -------------------------------------------------------------------------------- /src/static/locales/locales-sr-Latn-RS.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-sr-Latn-RS.xml -------------------------------------------------------------------------------- /src/static/locales/locales-sv-SE.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-sv-SE.xml -------------------------------------------------------------------------------- /src/static/locales/locales-th-TH.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-th-TH.xml -------------------------------------------------------------------------------- /src/static/locales/locales-tr-TR.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-tr-TR.xml -------------------------------------------------------------------------------- /src/static/locales/locales-uk-UA.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-uk-UA.xml -------------------------------------------------------------------------------- /src/static/locales/locales-vi-VN.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-vi-VN.xml -------------------------------------------------------------------------------- /src/static/locales/locales-zh-CN.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-zh-CN.xml -------------------------------------------------------------------------------- /src/static/locales/locales-zh-TW.xml: -------------------------------------------------------------------------------- 1 | ../../../modules/locales/locales-zh-TW.xml -------------------------------------------------------------------------------- /src/static/styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/src/static/styles.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/basic.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/basic.test.jsx -------------------------------------------------------------------------------- /test/bibliography.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/bibliography.test.jsx -------------------------------------------------------------------------------- /test/citation-style.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/citation-style.test.jsx -------------------------------------------------------------------------------- /test/citations.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/citations.test.jsx -------------------------------------------------------------------------------- /test/editor.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/editor.test.jsx -------------------------------------------------------------------------------- /test/fixtures/apa.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/apa.xml.js -------------------------------------------------------------------------------- /test/fixtures/chicago-notes-bibliography-subsequent-author-title-17th-edition.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/chicago-notes-bibliography-subsequent-author-title-17th-edition.xml.js -------------------------------------------------------------------------------- /test/fixtures/chicago-notes.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/chicago-notes.xml.js -------------------------------------------------------------------------------- /test/fixtures/harvard-cite-them-right.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/harvard-cite-them-right.xml.js -------------------------------------------------------------------------------- /test/fixtures/local-storage-100-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/local-storage-100-items.json -------------------------------------------------------------------------------- /test/fixtures/local-storage-items-for-apa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/local-storage-items-for-apa.json -------------------------------------------------------------------------------- /test/fixtures/locales-en-gb.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/locales-en-gb.xml.js -------------------------------------------------------------------------------- /test/fixtures/locales-en-us.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/locales-en-us.xml.js -------------------------------------------------------------------------------- /test/fixtures/locales-pl-pl.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/locales-pl-pl.xml.js -------------------------------------------------------------------------------- /test/fixtures/modern-language-association.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/modern-language-association.xml.js -------------------------------------------------------------------------------- /test/fixtures/nature.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/nature.xml.js -------------------------------------------------------------------------------- /test/fixtures/pasted-bibtex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/pasted-bibtex.js -------------------------------------------------------------------------------- /test/fixtures/response-translate-apa-identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-apa-identifier.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-doi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-doi.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-identifier-wrong-author.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-identifier-wrong-author.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-identifier.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-items.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-pasted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-pasted.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-search-more.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-search-more.json -------------------------------------------------------------------------------- /test/fixtures/response-translate-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/response-translate-search.json -------------------------------------------------------------------------------- /test/fixtures/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/schema.json -------------------------------------------------------------------------------- /test/fixtures/styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/styles.json -------------------------------------------------------------------------------- /test/fixtures/the-journals-of-gerontology-series-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/the-journals-of-gerontology-series-a.js -------------------------------------------------------------------------------- /test/fixtures/turabian-notes-bibliography.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/fixtures/turabian-notes-bibliography.xml.js -------------------------------------------------------------------------------- /test/import.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/import.test.jsx -------------------------------------------------------------------------------- /test/mocks/noop.js: -------------------------------------------------------------------------------- 1 | export default () => null; 2 | -------------------------------------------------------------------------------- /test/mocks/react-virtualized-auto-sizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/mocks/react-virtualized-auto-sizer.js -------------------------------------------------------------------------------- /test/mocks/style-search.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/mocks/style-search.worker.js -------------------------------------------------------------------------------- /test/remote-data.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/remote-data.test.jsx -------------------------------------------------------------------------------- /test/translate.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/translate.test.jsx -------------------------------------------------------------------------------- /test/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/utils/common.js -------------------------------------------------------------------------------- /test/utils/env-with-fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/utils/env-with-fetch.js -------------------------------------------------------------------------------- /test/utils/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/utils/jest-setup.js -------------------------------------------------------------------------------- /test/utils/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/utils/render.js -------------------------------------------------------------------------------- /test/utils/xhr-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zoterobib/HEAD/test/utils/xhr-mock.js --------------------------------------------------------------------------------