├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .mocharc.json ├── .npmrc ├── .nvmrc ├── .stylelintrc ├── .watchmanconfig ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── babel.config.cjs ├── eslint.config.mjs ├── jest.config.mjs ├── package.json ├── playwright.config.mjs ├── rollup.config.js ├── scripts ├── add-license.mjs ├── build-styles-json.mjs ├── check-icons.mjs ├── collect-locale.mjs ├── compile-zotero-icons.mjs ├── fetch-fonts.mjs ├── fetch-or-build-modules.mjs ├── fixed-state-server.mjs ├── fixtures.mjs ├── generate-fixtures.mjs ├── prepare-citeproc-js.mjs ├── server.mjs └── store-version.mjs ├── src ├── html │ ├── embedded.html │ └── index.html ├── js │ ├── actions │ │ ├── annotations.js │ │ ├── attachments.js │ │ ├── cite.js │ │ ├── cleanup.js │ │ ├── collections.js │ │ ├── current.js │ │ ├── deleted.js │ │ ├── groups.js │ │ ├── identifier.js │ │ ├── index.js │ │ ├── init.js │ │ ├── items-export.js │ │ ├── items-other.js │ │ ├── items-read.js │ │ ├── items-write.js │ │ ├── library.js │ │ ├── meta.js │ │ ├── navigate.js │ │ ├── parent.js │ │ ├── preferences.js │ │ ├── recognize.js │ │ ├── remote.js │ │ ├── request.js │ │ ├── styles.js │ │ ├── tags.js │ │ └── triggers.js │ ├── common │ │ ├── actions.js │ │ ├── annotations.js │ │ ├── collection.js │ │ ├── event.js │ │ ├── format.js │ │ ├── identifiers.js │ │ ├── item.js │ │ ├── mime.js │ │ ├── navigation.js │ │ ├── pdf-worker.js │ │ ├── reducers.js │ │ ├── selection.js │ │ ├── state.js │ │ ├── tags.js │ │ └── viewstate.js │ ├── component │ │ ├── citation-options.jsx │ │ ├── common │ │ │ ├── items.jsx │ │ │ ├── list-row.jsx │ │ │ ├── list.jsx │ │ │ ├── react-window-list.jsx │ │ │ ├── table-body.jsx │ │ │ ├── table-cell.jsx │ │ │ ├── table-header-row.jsx │ │ │ ├── table-row.jsx │ │ │ └── table.jsx │ │ ├── current-libraries.jsx │ │ ├── drag-layer.jsx │ │ ├── edit-toggle-button.jsx │ │ ├── editable.jsx │ │ ├── editable │ │ │ └── content.jsx │ │ ├── embedded-library.jsx │ │ ├── embedded │ │ │ ├── footer.jsx │ │ │ ├── header.jsx │ │ │ └── libraries-tree.jsx │ │ ├── error-boundry.jsx │ │ ├── focus-trap.jsx │ │ ├── form │ │ │ ├── auto-resizer.jsx │ │ │ ├── creator-field.jsx │ │ │ ├── creators.jsx │ │ │ ├── field.jsx │ │ │ ├── input.jsx │ │ │ ├── radio-set.jsx │ │ │ ├── select.jsx │ │ │ └── text-area.jsx │ │ ├── item-details │ │ │ ├── abstract.jsx │ │ │ ├── add-linked-url-form.jsx │ │ │ ├── attachment-details.jsx │ │ │ ├── attachments.jsx │ │ │ ├── box.jsx │ │ │ ├── boxfield.jsx │ │ │ ├── boxfields.jsx │ │ │ ├── info-view.jsx │ │ │ ├── info.jsx │ │ │ ├── notes.jsx │ │ │ ├── related.jsx │ │ │ ├── standalone-attachment.jsx │ │ │ ├── standalone-note.jsx │ │ │ ├── tabs.jsx │ │ │ ├── tag-picker.jsx │ │ │ └── tags.jsx │ │ ├── item │ │ │ ├── actions.jsx │ │ │ ├── actions │ │ │ │ ├── add-by-identifier.jsx │ │ │ │ ├── export.jsx │ │ │ │ ├── import.jsx │ │ │ │ ├── more-actions.jsx │ │ │ │ ├── new-item.jsx │ │ │ │ └── upload.jsx │ │ │ ├── current-items.jsx │ │ │ ├── details.jsx │ │ │ └── items │ │ │ │ ├── column-selector.jsx │ │ │ │ ├── list-row.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── scroll-effect.jsx │ │ │ │ ├── table-row.jsx │ │ │ │ ├── table.jsx │ │ │ │ └── toolbar.jsx │ │ ├── libraries.jsx │ │ ├── libraries │ │ │ ├── collection-tree.jsx │ │ │ └── node.jsx │ │ ├── library.jsx │ │ ├── loader.jsx │ │ ├── locale-selector.jsx │ │ ├── main-search.jsx │ │ ├── main.jsx │ │ ├── messages.jsx │ │ ├── modal-manager.jsx │ │ ├── modal │ │ │ ├── add-by-identifier.jsx │ │ │ ├── add-items-to-collections.jsx │ │ │ ├── add-linked-url-touch.jsx │ │ │ ├── add-related.jsx │ │ │ ├── bibliography.jsx │ │ │ ├── change-parent-item.jsx │ │ │ ├── copy-citation.jsx │ │ │ ├── create-parent-item.jsx │ │ │ ├── export.jsx │ │ │ ├── identifier-picker.jsx │ │ │ ├── items-sort.jsx │ │ │ ├── manage-tags.jsx │ │ │ ├── metadata-retrieval.jsx │ │ │ ├── move-collections.jsx │ │ │ ├── new-collection.jsx │ │ │ ├── new-item.jsx │ │ │ ├── rename-collection.jsx │ │ │ ├── settings.jsx │ │ │ └── style-installer.jsx │ │ ├── ongoing.jsx │ │ ├── portal.jsx │ │ ├── preferences-observer.js │ │ ├── reader.jsx │ │ ├── rich-editor.jsx │ │ ├── router.jsx │ │ ├── search-backdrop.jsx │ │ ├── search.jsx │ │ ├── stub.jsx │ │ ├── style-selector.jsx │ │ ├── tag-selector.jsx │ │ ├── tag-selector │ │ │ ├── tag-color-manager.jsx │ │ │ ├── tag-list.jsx │ │ │ └── tag-selector-items.jsx │ │ ├── title-updater.jsx │ │ ├── touch-drilldown.jsx │ │ ├── touch-footer.jsx │ │ ├── touch-header-wrap.jsx │ │ ├── touch-header.jsx │ │ ├── touch-header │ │ │ ├── collection-actions.jsx │ │ │ ├── collection-trash-options.jsx │ │ │ ├── searchbar.jsx │ │ │ └── touch-navigation.jsx │ │ ├── touch-side-footer.jsx │ │ ├── touch-tag-selector.jsx │ │ ├── ui │ │ │ ├── color-picker.jsx │ │ │ ├── menu-entry-mobile.jsx │ │ │ ├── menu-entry.jsx │ │ │ ├── mobile-nav.jsx │ │ │ ├── modal.jsx │ │ │ ├── navbar.jsx │ │ │ ├── panel.jsx │ │ │ └── toolbars.jsx │ │ ├── user-type-detector.jsx │ │ ├── viewport-detector.jsx │ │ ├── zotero-connector-notifier.jsx │ │ └── zotero-streaming-client.js │ ├── constants │ │ ├── actions.js │ │ ├── color-names.js │ │ ├── color-tag-lookup.js │ │ ├── column-properties.js │ │ ├── constants.js │ │ ├── defaults.js │ │ ├── dnd.js │ │ ├── export-formats.js │ │ ├── identifier-result-types.js │ │ ├── item-types.js │ │ ├── item.js │ │ ├── locators.js │ │ ├── modals.js │ │ ├── picker-modes.js │ │ └── reader.js │ ├── diff.worker.js │ ├── embedded.jsx │ ├── hooks │ │ ├── index.js │ │ ├── state.js │ │ ├── use-edit-mode.js │ │ ├── use-item-action-handlers.js │ │ ├── use-items-actions.js │ │ ├── use-items-count.js │ │ ├── use-items-state.js │ │ ├── use-navigation-state.js │ │ ├── use-sortable.js │ │ ├── use-tags.js │ │ └── use-tracked-settings-key.js │ ├── init.jsx │ ├── main.js │ ├── reducers │ │ ├── cite.js │ │ ├── config.js │ │ ├── current.js │ │ ├── device.js │ │ ├── errors.js │ │ ├── fetching.js │ │ ├── groups.js │ │ ├── identifier.js │ │ ├── index.js │ │ ├── items-publications.js │ │ ├── libraries │ │ │ ├── attachments-export-pdf.js │ │ │ ├── attachments-url.js │ │ │ ├── best-attachment-reverse-lookup.js │ │ │ ├── collections.js │ │ │ ├── creating.js │ │ │ ├── data-objects.js │ │ │ ├── deleting.js │ │ │ ├── index.js │ │ │ ├── items-and-collections-trash.js │ │ │ ├── items-by-collection.js │ │ │ ├── items-by-parent.js │ │ │ ├── items-related.js │ │ │ ├── items-top.js │ │ │ ├── items-trash.js │ │ │ ├── settings.js │ │ │ ├── sync.js │ │ │ ├── tag-colors.js │ │ │ ├── tags-by-collection.js │ │ │ ├── tags-in-library.js │ │ │ ├── tags-in-publications-items.js │ │ │ ├── tags-in-trash-items.js │ │ │ ├── tags-top.js │ │ │ └── updating.js │ │ ├── meta.js │ │ ├── modal.js │ │ ├── ongoing.js │ │ ├── preferences.js │ │ ├── query-and-collections-trash.js │ │ ├── query.js │ │ ├── recognize.js │ │ ├── secondary.js │ │ ├── sources.js │ │ ├── styles.js │ │ └── traffic.js │ ├── routes.js │ ├── store.js │ ├── style-search.worker.js │ ├── types.js │ ├── utils.js │ └── wdyr.js ├── scss │ ├── abstracts │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── functions │ │ │ ├── _asset-url.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _lists.scss │ │ │ └── _strings.scss │ │ ├── mixins │ │ │ ├── _breakpoints.scss │ │ │ ├── _button.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _hairline.scss │ │ │ ├── _same.scss │ │ │ ├── _selectors.scss │ │ │ ├── _theme.scss │ │ │ └── _utilities.scss │ │ └── utilities │ │ │ ├── _flex.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ ├── base │ │ ├── _base.scss │ │ ├── _fonts.scss │ │ ├── _normalize.scss │ │ └── _type.scss │ ├── components │ │ ├── _auto-resizer.scss │ │ ├── _bibliography.scss │ │ ├── _button.scss │ │ ├── _citation-options.scss │ │ ├── _collection-tree.scss │ │ ├── _color-picker.scss │ │ ├── _copy-citation.scss │ │ ├── _crash-handler.scss │ │ ├── _drag-layer.scss │ │ ├── _dropdown.scss │ │ ├── _editable.scss │ │ ├── _icon-extra.scss │ │ ├── _library.scss │ │ ├── _messages.scss │ │ ├── _nav-sidebar.scss │ │ ├── _navbar.scss │ │ ├── _new-item-selector.scss │ │ ├── _ongoing.scss │ │ ├── _panel.scss │ │ ├── _popover.scss │ │ ├── _reader.scss │ │ ├── _related.scss │ │ ├── _rich-editor.scss │ │ ├── _search.scss │ │ ├── _searchbar.scss │ │ ├── _tabs.scss │ │ ├── _toolbar.scss │ │ ├── _touch-footer.scss │ │ ├── _touch-header.scss │ │ ├── _touch-nav.scss │ │ ├── attachment │ │ │ ├── _list.scss │ │ │ └── _pane.scss │ │ ├── item │ │ │ ├── _details.scss │ │ │ ├── _drilldown.scss │ │ │ ├── _list.scss │ │ │ └── _table.scss │ │ ├── metadata │ │ │ ├── _abstract.scss │ │ │ ├── _creators.scss │ │ │ ├── _list.scss │ │ │ ├── _pane.scss │ │ │ └── _title.scss │ │ ├── modal │ │ │ ├── _bibliography.scss │ │ │ ├── _collection-select.scss │ │ │ ├── _identifier-picker.scss │ │ │ ├── _manage-tags.scss │ │ │ ├── _metadata-retrieval.scss │ │ │ ├── _modal-item-picker.scss │ │ │ ├── _note.scss │ │ │ ├── _react-modal.scss │ │ │ ├── _settings.scss │ │ │ └── _style-installer.scss │ │ ├── note │ │ │ ├── _list.scss │ │ │ └── _pane.scss │ │ └── tag │ │ │ ├── _list.scss │ │ │ ├── _pane.scss │ │ │ ├── _selector.scss │ │ │ ├── _tag-color-manager.scss │ │ │ └── _touch-selector.scss │ ├── partials │ │ ├── _badge.scss │ │ ├── _common.scss │ │ ├── _details-list.scss │ │ ├── _focus.scss │ │ ├── _forms.scss │ │ ├── _grid.scss │ │ ├── _inline-feedback.scss │ │ ├── _loading-cover.scss │ │ ├── _navs.scss │ │ ├── _scroll-container.scss │ │ ├── _scrollbar.scss │ │ ├── _sidebar.scss │ │ └── _transitions.scss │ ├── themes │ │ ├── _common.scss │ │ ├── _dark.scss │ │ └── _light.scss │ └── zotero-web-library.scss └── static │ ├── icons │ ├── 8 │ │ └── x.svg │ ├── 10 │ │ └── x.svg │ ├── 12 │ │ ├── circle.svg │ │ ├── crescent-circle.svg │ │ ├── grip.svg │ │ ├── item-type │ │ │ ├── attachment-epub-link.svg │ │ │ ├── attachment-epub.svg │ │ │ ├── attachment-file.svg │ │ │ ├── attachment-image.svg │ │ │ ├── attachment-link.svg │ │ │ ├── attachment-pdf-link.svg │ │ │ ├── attachment-pdf.svg │ │ │ ├── attachment-snapshot.svg │ │ │ ├── attachment-video.svg │ │ │ └── attachment-web-link.svg │ │ └── square.svg │ ├── 16 │ │ ├── attachment.svg │ │ ├── bibliography.svg │ │ ├── caret-16.svg │ │ ├── change-top-level-item.svg │ │ ├── chevron-13.svg │ │ ├── chevron-7.svg │ │ ├── chevron-9.svg │ │ ├── cite.svg │ │ ├── close.svg │ │ ├── cog.svg │ │ ├── columns.svg │ │ ├── cross.svg │ │ ├── document.svg │ │ ├── duplicate.svg │ │ ├── editor │ │ │ ├── align-center.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── b.svg │ │ │ ├── blockquote.svg │ │ │ ├── bullet-list.svg │ │ │ ├── color-swatch.svg │ │ │ ├── fore-color.svg │ │ │ ├── hilite-color.svg │ │ │ ├── i.svg │ │ │ ├── indent.svg │ │ │ ├── link.svg │ │ │ ├── numbered-list.svg │ │ │ ├── outdent.svg │ │ │ ├── remove-format.svg │ │ │ ├── s.svg │ │ │ ├── sub.svg │ │ │ ├── sup.svg │ │ │ └── u.svg │ │ ├── empty-trash.svg │ │ ├── export.svg │ │ ├── folder.svg │ │ ├── grip.svg │ │ ├── import.svg │ │ ├── item-type │ │ │ ├── artwork@1x.svg │ │ │ ├── artwork@2x.svg │ │ │ ├── attachment-epub-link@1x.svg │ │ │ ├── attachment-epub-link@2x.svg │ │ │ ├── attachment-epub@1x.svg │ │ │ ├── attachment-epub@2x.svg │ │ │ ├── attachment-image-link@1x.svg │ │ │ ├── attachment-image-link@2x.svg │ │ │ ├── attachment-image@1x.svg │ │ │ ├── attachment-image@2x.svg │ │ │ ├── attachment-link@1x.svg │ │ │ ├── attachment-link@2x.svg │ │ │ ├── attachment-pdf-link@1x.svg │ │ │ ├── attachment-pdf-link@2x.svg │ │ │ ├── attachment-pdf@1x.svg │ │ │ ├── attachment-pdf@2x.svg │ │ │ ├── attachment-snapshot@1x.svg │ │ │ ├── attachment-snapshot@2x.svg │ │ │ ├── attachment-video-link@1x.svg │ │ │ ├── attachment-video-link@2x.svg │ │ │ ├── attachment-video@1x.svg │ │ │ ├── attachment-video@2x.svg │ │ │ ├── attachment-web-link@1x.svg │ │ │ ├── attachment-web-link@2x.svg │ │ │ ├── audio-recording@1x.svg │ │ │ ├── audio-recording@2x.svg │ │ │ ├── bill@1x.svg │ │ │ ├── bill@2x.svg │ │ │ ├── blog-post@1x.svg │ │ │ ├── blog-post@2x.svg │ │ │ ├── book-section@1x.svg │ │ │ ├── book-section@2x.svg │ │ │ ├── book@1x.svg │ │ │ ├── book@2x.svg │ │ │ ├── case@1x.svg │ │ │ ├── case@2x.svg │ │ │ ├── computer-program@1x.svg │ │ │ ├── computer-program@2x.svg │ │ │ ├── conference-paper@1x.svg │ │ │ ├── conference-paper@2x.svg │ │ │ ├── dataset@1x.svg │ │ │ ├── dataset@2x.svg │ │ │ ├── dictionary-entry@1x.svg │ │ │ ├── dictionary-entry@2x.svg │ │ │ ├── document@1x.svg │ │ │ ├── document@2x.svg │ │ │ ├── email@1x.svg │ │ │ ├── email@2x.svg │ │ │ ├── encyclopedia-article@1x.svg │ │ │ ├── encyclopedia-article@2x.svg │ │ │ ├── film@1x.svg │ │ │ ├── film@2x.svg │ │ │ ├── folder@1x.svg │ │ │ ├── folder@2x.svg │ │ │ ├── forum-post@1x.svg │ │ │ ├── forum-post@2x.svg │ │ │ ├── hearing@1x.svg │ │ │ ├── hearing@2x.svg │ │ │ ├── instant-message@1x.svg │ │ │ ├── instant-message@2x.svg │ │ │ ├── interview@1x.svg │ │ │ ├── interview@2x.svg │ │ │ ├── journal-article@1x.svg │ │ │ ├── journal-article@2x.svg │ │ │ ├── letter@1x.svg │ │ │ ├── letter@2x.svg │ │ │ ├── magazine-article@1x.svg │ │ │ ├── magazine-article@2x.svg │ │ │ ├── manuscript@1x.svg │ │ │ ├── manuscript@2x.svg │ │ │ ├── map@1x.svg │ │ │ ├── map@2x.svg │ │ │ ├── newspaper-article@1x.svg │ │ │ ├── newspaper-article@2x.svg │ │ │ ├── note@1x.svg │ │ │ ├── note@2x.svg │ │ │ ├── patent@1x.svg │ │ │ ├── patent@2x.svg │ │ │ ├── podcast@1x.svg │ │ │ ├── podcast@2x.svg │ │ │ ├── preprint@1x.svg │ │ │ ├── preprint@2x.svg │ │ │ ├── presentation@1x.svg │ │ │ ├── presentation@2x.svg │ │ │ ├── radio-broadcast@1x.svg │ │ │ ├── radio-broadcast@2x.svg │ │ │ ├── report@1x.svg │ │ │ ├── report@2x.svg │ │ │ ├── standard@1x.svg │ │ │ ├── standard@2x.svg │ │ │ ├── statute@1x.svg │ │ │ ├── statute@2x.svg │ │ │ ├── thesis@1x.svg │ │ │ ├── thesis@2x.svg │ │ │ ├── tv-broadcast@1x.svg │ │ │ ├── tv-broadcast@2x.svg │ │ │ ├── video-recording@1x.svg │ │ │ ├── video-recording@2x.svg │ │ │ ├── webpage@1x.svg │ │ │ └── webpage@2x.svg │ │ ├── library.svg │ │ ├── magic-wand.svg │ │ ├── magnifier.svg │ │ ├── minus-circle.svg │ │ ├── minus-strong.svg │ │ ├── minus.svg │ │ ├── note-sm.svg │ │ ├── note.svg │ │ ├── open-link.svg │ │ ├── options-strong.svg │ │ ├── options.svg │ │ ├── plus-strong.svg │ │ ├── plus.svg │ │ ├── quote.svg │ │ ├── reader.svg │ │ ├── refresh.svg │ │ ├── restore.svg │ │ ├── retrieve-metadata.svg │ │ ├── spin.svg │ │ ├── tag.svg │ │ ├── tick.svg │ │ ├── trash.svg │ │ └── triangle.svg │ ├── 20 │ │ ├── add-collection.svg │ │ ├── input-dual.svg │ │ ├── input-single.svg │ │ ├── library-read-only.svg │ │ └── remove-from-collection.svg │ ├── 24 │ │ ├── bibliography.svg │ │ ├── cite.svg │ │ ├── duplicate.svg │ │ ├── editor │ │ │ ├── align-center.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── b.svg │ │ │ ├── blockquote.svg │ │ │ ├── bullet-list.svg │ │ │ ├── color-swatch.svg │ │ │ ├── fore-color.svg │ │ │ ├── hilite-color.svg │ │ │ ├── i.svg │ │ │ ├── indent.svg │ │ │ ├── link.svg │ │ │ ├── magnifier.svg │ │ │ ├── numbered-list.svg │ │ │ ├── outdent.svg │ │ │ ├── remove-format.svg │ │ │ ├── s.svg │ │ │ ├── sub.svg │ │ │ ├── sup.svg │ │ │ └── u.svg │ │ ├── empty-trash.svg │ │ ├── export.svg │ │ ├── grip.svg │ │ ├── minus-circle-strong.svg │ │ ├── open-link.svg │ │ ├── options-sm.svg │ │ ├── options.svg │ │ ├── plus-circle-strong.svg │ │ ├── plus-circle.svg │ │ ├── reader.svg │ │ ├── restore.svg │ │ ├── search-options.svg │ │ ├── search.svg │ │ ├── tag-strong.svg │ │ ├── tag.svg │ │ └── trash.svg │ ├── 28 │ │ ├── document.svg │ │ ├── file.svg │ │ ├── folder.svg │ │ ├── folders.svg │ │ ├── item-type.svg │ │ ├── item-type │ │ │ ├── artwork.svg │ │ │ ├── attachment-epub-link.svg │ │ │ ├── attachment-epub.svg │ │ │ ├── attachment-image-link.svg │ │ │ ├── attachment-image.svg │ │ │ ├── attachment-link.svg │ │ │ ├── attachment-pdf-link.svg │ │ │ ├── attachment-pdf.svg │ │ │ ├── attachment-snapshot.svg │ │ │ ├── attachment-video-link.svg │ │ │ ├── attachment-video.svg │ │ │ ├── attachment-web-link.svg │ │ │ ├── audio-recording.svg │ │ │ ├── bill.svg │ │ │ ├── blog-post.svg │ │ │ ├── book-section.svg │ │ │ ├── book.svg │ │ │ ├── case.svg │ │ │ ├── computer-program.svg │ │ │ ├── conference-paper.svg │ │ │ ├── dataset.svg │ │ │ ├── dictionary-entry.svg │ │ │ ├── document.svg │ │ │ ├── email.svg │ │ │ ├── encyclopedia-article.svg │ │ │ ├── film.svg │ │ │ ├── folder.svg │ │ │ ├── forum-post.svg │ │ │ ├── hearing.svg │ │ │ ├── instant-message.svg │ │ │ ├── interview.svg │ │ │ ├── journal-article.svg │ │ │ ├── letter.svg │ │ │ ├── magazine-article.svg │ │ │ ├── manuscript.svg │ │ │ ├── map.svg │ │ │ ├── newspaper-article.svg │ │ │ ├── note.svg │ │ │ ├── patent.svg │ │ │ ├── podcast.svg │ │ │ ├── preprint.svg │ │ │ ├── presentation.svg │ │ │ ├── radio-broadcast.svg │ │ │ ├── report.svg │ │ │ ├── standard.svg │ │ │ ├── statute.svg │ │ │ ├── thesis.svg │ │ │ ├── tv-broadcast.svg │ │ │ ├── video-recording.svg │ │ │ └── webpage.svg │ │ ├── library.svg │ │ ├── note.svg │ │ ├── tag.svg │ │ └── trash.svg │ ├── 32 │ │ ├── add-to-collection.svg │ │ ├── color-scheme.svg │ │ ├── library-read-only.svg │ │ ├── remove-from-collection.svg │ │ └── z.svg │ ├── icon-192x192.png │ ├── icon-512x512.png │ └── zotero-logo.svg │ ├── images │ └── icons │ │ ├── 24 │ │ ├── link-active.svg │ │ ├── link.svg │ │ ├── minus-circle-strong.svg │ │ ├── open-link-active.svg │ │ ├── open-link.svg │ │ ├── unlink-active.svg │ │ └── unlink.svg │ │ ├── chevron-13.svg │ │ ├── chevron-7-777.svg │ │ ├── chevron-7-secondary.svg │ │ ├── chevron-7.svg │ │ ├── close-active.svg │ │ ├── close.svg │ │ ├── grip.svg │ │ ├── input-dual-active.svg │ │ ├── input-dual.svg │ │ ├── input-single-active.svg │ │ ├── input-single.svg │ │ ├── link-active.svg │ │ ├── link-enabled.svg │ │ ├── link.svg │ │ ├── minus-circle-active.svg │ │ ├── minus-circle-touch.svg │ │ ├── minus-circle.svg │ │ ├── minus-touch.svg │ │ ├── next-active.svg │ │ ├── next-touch.svg │ │ ├── next.svg │ │ ├── open-link-active.svg │ │ ├── open-link.svg │ │ ├── plus-circle-active.svg │ │ ├── plus-circle.svg │ │ ├── previous-active.svg │ │ ├── previous-touch.svg │ │ ├── previous.svg │ │ ├── tick-blue.svg │ │ ├── tick-white-16.svg │ │ ├── tick-white.svg │ │ ├── unlink-active.svg │ │ ├── unlink.svg │ │ └── x.svg │ └── xdelta3.wasm └── test ├── .eslintrc ├── attachment-details.test.jsx ├── attachments.test.jsx ├── basic-ui.test.jsx ├── collections.test.jsx ├── config.test.jsx ├── exports.test.jsx ├── fixtures ├── chicago-notes-bibliography-subsequent-author-title-17th-edition.csl.js ├── locales-en-gb.xml.js ├── locales-en-us.xml.js ├── locales-pl-pl.xml.js ├── modern-language-association.csl.js ├── response │ ├── annotation-item.json │ ├── creator-fields.json │ ├── item-fields.json │ ├── item-type-creator-types-book.json │ ├── item-type-creator-types-film.json │ ├── item-type-fields-book.json │ ├── item-type-fields-film.json │ ├── item-types.json │ ├── min-user-collections.json │ ├── min-user-group-collections.json │ ├── min-user-groups.json │ ├── new-item-annotation-note.json │ ├── new-item-embedded-image.json │ ├── new-item-file-attachment.json │ ├── new-item-journal-article.json │ ├── new-item-linked-attachment.json │ ├── new-item-note.json │ ├── schema.json │ ├── search-by-identifier-recognize.json │ ├── search-by-identifier.json │ ├── test-group-add-item-to-collection.json │ ├── test-group-collections.json │ ├── test-group-copy-annotations.json │ ├── test-group-copy-child-items.json │ ├── test-user-add-attachment-file-refetch-parent.json │ ├── test-user-add-by-identifier-recognize-2.json │ ├── test-user-add-by-identifier-recognize.json │ ├── test-user-add-by-identifier.json │ ├── test-user-add-collection.json │ ├── test-user-add-embedded-image.json │ ├── test-user-add-item-to-collection.json │ ├── test-user-add-new-attachment-file.json │ ├── test-user-add-new-item-note.json │ ├── test-user-add-new-item.json │ ├── test-user-add-new-linked-url-attachment.json │ ├── test-user-add-parent-manual.json │ ├── test-user-add-parent-update-attachment-item.json │ ├── test-user-attachment-annotations.json │ ├── test-user-children.json │ ├── test-user-collection-items-tags.json │ ├── test-user-collection-items.json │ ├── test-user-create-annotation.json │ ├── test-user-duplicate-item.json │ ├── test-user-get-item-by-key-66LW9WRP-PEZF7SPI.json │ ├── test-user-get-items-golden-tags.json │ ├── test-user-get-items-golden.json │ ├── test-user-get-items-in-collection-algorithms.json │ ├── test-user-get-items-in-collection-dogs.json │ ├── test-user-manage-tags.json │ ├── test-user-pictures-redundant.json │ ├── test-user-post-add-related.json │ ├── test-user-reader-children.json │ ├── test-user-remove-item-from-collection.json │ ├── test-user-search-by-tag-results-tags.json │ ├── test-user-search-by-tag-results.json │ ├── test-user-search-results-tags.json │ ├── test-user-search-results.json │ ├── test-user-tags-for-item.json │ ├── test-user-tags-suggestions.json │ ├── test-user-trash-item.json │ ├── test-user-update-date-dmy.json │ ├── test-user-update-date-mdy.json │ ├── test-user-update-item-type.json │ ├── test-user-update-relation-after-copy.json │ ├── test-user-update-top-level-attachment-set-parent.json │ └── zotero-user-tags-second-page.json ├── state │ ├── desktop-test-group-item-view.json │ ├── desktop-test-user-attachment-in-collection-view.json │ ├── desktop-test-user-formatting-collection.json │ ├── desktop-test-user-item-view.json │ ├── desktop-test-user-library-view.json │ ├── desktop-test-user-note-view.json │ ├── desktop-test-user-pdf-attachment-view-in-collection-view.json │ ├── desktop-test-user-reader-parent-item-view.json │ ├── desktop-test-user-reader-view.json │ ├── desktop-test-user-search-phrase-selected.json │ ├── desktop-test-user-search-selected.json │ ├── desktop-test-user-top-level-attachment-view-2.json │ ├── desktop-test-user-top-level-attachment-view.json │ ├── desktop-test-user-trash-view.json │ ├── minimal.json │ ├── mobile-test-user-item-details-view-edit.json │ ├── mobile-test-user-item-details-view.json │ ├── mobile-test-user-item-list-view.json │ └── mobile-test-user-trash-collection-details-view.json └── turabian-notes-bibliography.csl.js ├── groups.test.jsx ├── item-info.test.jsx ├── items.test.jsx ├── loading-screen.test.jsx ├── mocks ├── diff.worker.js ├── matchmedia.js ├── noop.js ├── pdf-worker.js ├── react-virtualized-auto-sizer.js └── style-search.worker.js ├── no-uploads-allowed.test.jsx ├── note-editor.test.jsx ├── notes.test.jsx ├── parent.test.jsx ├── playwright ├── items.desktop.test.js ├── items.desktop.test.js-snapshots │ ├── desktop-item-add-related-Desktop-Chrome-Dark-darwin.png │ ├── desktop-item-add-related-Desktop-Chrome-Dark-linux.png │ ├── desktop-item-add-related-Desktop-Chrome-Small-darwin.png │ ├── desktop-item-add-related-Desktop-Chrome-Small-linux.png │ ├── desktop-item-add-related-Desktop-Chrome-darwin.png │ ├── desktop-item-add-related-Desktop-Chrome-linux.png │ ├── desktop-item-add-related-Desktop-Safari-darwin.png │ ├── desktop-item-add-related-Desktop-Safari-linux.png │ ├── desktop-item-bibliography-Desktop-Chrome-Dark-darwin.png │ ├── desktop-item-bibliography-Desktop-Chrome-Dark-linux.png │ ├── desktop-item-bibliography-Desktop-Chrome-Small-darwin.png │ ├── desktop-item-bibliography-Desktop-Chrome-Small-linux.png │ ├── desktop-item-bibliography-Desktop-Chrome-darwin.png │ ├── desktop-item-bibliography-Desktop-Chrome-linux.png │ ├── desktop-item-bibliography-Desktop-Safari-darwin.png │ ├── desktop-item-bibliography-Desktop-Safari-linux.png │ ├── desktop-item-copy-citations-Desktop-Chrome-Dark-darwin.png │ ├── desktop-item-copy-citations-Desktop-Chrome-Dark-linux.png │ ├── desktop-item-copy-citations-Desktop-Chrome-Small-darwin.png │ ├── desktop-item-copy-citations-Desktop-Chrome-Small-linux.png │ ├── desktop-item-copy-citations-Desktop-Chrome-darwin.png │ ├── desktop-item-copy-citations-Desktop-Chrome-linux.png │ ├── desktop-item-copy-citations-Desktop-Safari-darwin.png │ ├── desktop-item-copy-citations-Desktop-Safari-linux.png │ ├── desktop-items-list-Desktop-Chrome-Dark-darwin.png │ ├── desktop-items-list-Desktop-Chrome-Dark-linux.png │ ├── desktop-items-list-Desktop-Chrome-Small-darwin.png │ ├── desktop-items-list-Desktop-Chrome-Small-linux.png │ ├── desktop-items-list-Desktop-Chrome-darwin.png │ ├── desktop-items-list-Desktop-Chrome-linux.png │ ├── desktop-items-list-Desktop-Safari-darwin.png │ └── desktop-items-list-Desktop-Safari-linux.png ├── items.mobile.test.js ├── items.mobile.test.js-snapshots │ ├── mobile-item-add-related-Mobile-Android-darwin.png │ ├── mobile-item-add-related-Mobile-Android-linux.png │ ├── mobile-item-add-related-Mobile-iPad-Dark-darwin.png │ ├── mobile-item-add-related-Mobile-iPad-Dark-linux.png │ ├── mobile-item-add-related-Mobile-iPad-Pro-Landscape-darwin.png │ ├── mobile-item-add-related-Mobile-iPad-Pro-Landscape-linux.png │ ├── mobile-item-add-related-Mobile-iPad-darwin.png │ ├── mobile-item-add-related-Mobile-iPad-linux.png │ ├── mobile-item-add-related-Mobile-iPhone-darwin.png │ ├── mobile-item-add-related-Mobile-iPhone-linux.png │ ├── mobile-item-details-Mobile-Android-darwin.png │ ├── mobile-item-details-Mobile-Android-linux.png │ ├── mobile-item-details-Mobile-iPad-Dark-darwin.png │ ├── mobile-item-details-Mobile-iPad-Dark-linux.png │ ├── mobile-item-details-Mobile-iPad-Pro-Landscape-darwin.png │ ├── mobile-item-details-Mobile-iPad-Pro-Landscape-linux.png │ ├── mobile-item-details-Mobile-iPad-darwin.png │ ├── mobile-item-details-Mobile-iPad-linux.png │ ├── mobile-item-details-Mobile-iPhone-darwin.png │ ├── mobile-item-details-Mobile-iPhone-linux.png │ ├── mobile-items-list-Mobile-Android-darwin.png │ ├── mobile-items-list-Mobile-Android-linux.png │ ├── mobile-items-list-Mobile-iPad-Dark-darwin.png │ ├── mobile-items-list-Mobile-iPad-Dark-linux.png │ ├── mobile-items-list-Mobile-iPad-Pro-Landscape-darwin.png │ ├── mobile-items-list-Mobile-iPad-Pro-Landscape-linux.png │ ├── mobile-items-list-Mobile-iPad-darwin.png │ ├── mobile-items-list-Mobile-iPad-linux.png │ ├── mobile-items-list-Mobile-iPhone-darwin.png │ ├── mobile-items-list-Mobile-iPhone-linux.png │ ├── mobile-items-list-search-enabled-Mobile-Android-darwin.png │ ├── mobile-items-list-search-enabled-Mobile-Android-linux.png │ ├── mobile-items-list-search-enabled-Mobile-iPhone-darwin.png │ ├── mobile-items-list-search-enabled-Mobile-iPhone-linux.png │ ├── mobile-trash-collection-details-Mobile-Android-darwin.png │ ├── mobile-trash-collection-details-Mobile-Android-linux.png │ ├── mobile-trash-collection-details-Mobile-iPad-Dark-darwin.png │ ├── mobile-trash-collection-details-Mobile-iPad-Dark-linux.png │ ├── mobile-trash-collection-details-Mobile-iPad-Pro-Landscape-darwin.png │ ├── mobile-trash-collection-details-Mobile-iPad-Pro-Landscape-linux.png │ ├── mobile-trash-collection-details-Mobile-iPad-darwin.png │ ├── mobile-trash-collection-details-Mobile-iPad-linux.png │ ├── mobile-trash-collection-details-Mobile-iPhone-darwin.png │ └── mobile-trash-collection-details-Mobile-iPhone-linux.png └── navigation.keyboard.test.js ├── reader.test.jsx ├── readonly.test.jsx ├── recognize.test.jsx ├── related.test.jsx ├── routes.test.jsx ├── tags.test.jsx ├── trash.test.jsx ├── unexpected-item-type.test.jsx ├── unexpected-url.test.jsx ├── user-type.test.jsx └── utils ├── common.js ├── env-with-fetch.js ├── fixed-state-server.js ├── jest-setup.js ├── jest-snapshots-setup.js ├── main-with-state.jsx ├── playwright-fixtures.js ├── render.jsx ├── response.js ├── state.js ├── xhr-mock.js └── zotero-env.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps = true -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/.watchmanconfig -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/playwright.config.mjs -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/add-license.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/add-license.mjs -------------------------------------------------------------------------------- /scripts/build-styles-json.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/build-styles-json.mjs -------------------------------------------------------------------------------- /scripts/check-icons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/check-icons.mjs -------------------------------------------------------------------------------- /scripts/collect-locale.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/collect-locale.mjs -------------------------------------------------------------------------------- /scripts/compile-zotero-icons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/compile-zotero-icons.mjs -------------------------------------------------------------------------------- /scripts/fetch-fonts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/fetch-fonts.mjs -------------------------------------------------------------------------------- /scripts/fetch-or-build-modules.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/fetch-or-build-modules.mjs -------------------------------------------------------------------------------- /scripts/fixed-state-server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/fixed-state-server.mjs -------------------------------------------------------------------------------- /scripts/fixtures.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/fixtures.mjs -------------------------------------------------------------------------------- /scripts/generate-fixtures.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/generate-fixtures.mjs -------------------------------------------------------------------------------- /scripts/prepare-citeproc-js.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/prepare-citeproc-js.mjs -------------------------------------------------------------------------------- /scripts/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/server.mjs -------------------------------------------------------------------------------- /scripts/store-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/scripts/store-version.mjs -------------------------------------------------------------------------------- /src/html/embedded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/html/embedded.html -------------------------------------------------------------------------------- /src/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/html/index.html -------------------------------------------------------------------------------- /src/js/actions/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/annotations.js -------------------------------------------------------------------------------- /src/js/actions/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/attachments.js -------------------------------------------------------------------------------- /src/js/actions/cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/cite.js -------------------------------------------------------------------------------- /src/js/actions/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/cleanup.js -------------------------------------------------------------------------------- /src/js/actions/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/collections.js -------------------------------------------------------------------------------- /src/js/actions/current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/current.js -------------------------------------------------------------------------------- /src/js/actions/deleted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/deleted.js -------------------------------------------------------------------------------- /src/js/actions/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/groups.js -------------------------------------------------------------------------------- /src/js/actions/identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/identifier.js -------------------------------------------------------------------------------- /src/js/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/index.js -------------------------------------------------------------------------------- /src/js/actions/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/init.js -------------------------------------------------------------------------------- /src/js/actions/items-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/items-export.js -------------------------------------------------------------------------------- /src/js/actions/items-other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/items-other.js -------------------------------------------------------------------------------- /src/js/actions/items-read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/items-read.js -------------------------------------------------------------------------------- /src/js/actions/items-write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/items-write.js -------------------------------------------------------------------------------- /src/js/actions/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/library.js -------------------------------------------------------------------------------- /src/js/actions/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/meta.js -------------------------------------------------------------------------------- /src/js/actions/navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/navigate.js -------------------------------------------------------------------------------- /src/js/actions/parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/parent.js -------------------------------------------------------------------------------- /src/js/actions/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/preferences.js -------------------------------------------------------------------------------- /src/js/actions/recognize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/recognize.js -------------------------------------------------------------------------------- /src/js/actions/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/remote.js -------------------------------------------------------------------------------- /src/js/actions/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/request.js -------------------------------------------------------------------------------- /src/js/actions/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/styles.js -------------------------------------------------------------------------------- /src/js/actions/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/tags.js -------------------------------------------------------------------------------- /src/js/actions/triggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/actions/triggers.js -------------------------------------------------------------------------------- /src/js/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/actions.js -------------------------------------------------------------------------------- /src/js/common/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/annotations.js -------------------------------------------------------------------------------- /src/js/common/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/collection.js -------------------------------------------------------------------------------- /src/js/common/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/event.js -------------------------------------------------------------------------------- /src/js/common/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/format.js -------------------------------------------------------------------------------- /src/js/common/identifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/identifiers.js -------------------------------------------------------------------------------- /src/js/common/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/item.js -------------------------------------------------------------------------------- /src/js/common/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/mime.js -------------------------------------------------------------------------------- /src/js/common/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/navigation.js -------------------------------------------------------------------------------- /src/js/common/pdf-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/pdf-worker.js -------------------------------------------------------------------------------- /src/js/common/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/reducers.js -------------------------------------------------------------------------------- /src/js/common/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/selection.js -------------------------------------------------------------------------------- /src/js/common/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/state.js -------------------------------------------------------------------------------- /src/js/common/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/tags.js -------------------------------------------------------------------------------- /src/js/common/viewstate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/common/viewstate.js -------------------------------------------------------------------------------- /src/js/component/citation-options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/citation-options.jsx -------------------------------------------------------------------------------- /src/js/component/common/items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/items.jsx -------------------------------------------------------------------------------- /src/js/component/common/list-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/list-row.jsx -------------------------------------------------------------------------------- /src/js/component/common/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/list.jsx -------------------------------------------------------------------------------- /src/js/component/common/react-window-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/react-window-list.jsx -------------------------------------------------------------------------------- /src/js/component/common/table-body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/table-body.jsx -------------------------------------------------------------------------------- /src/js/component/common/table-cell.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/table-cell.jsx -------------------------------------------------------------------------------- /src/js/component/common/table-header-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/table-header-row.jsx -------------------------------------------------------------------------------- /src/js/component/common/table-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/table-row.jsx -------------------------------------------------------------------------------- /src/js/component/common/table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/common/table.jsx -------------------------------------------------------------------------------- /src/js/component/current-libraries.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/current-libraries.jsx -------------------------------------------------------------------------------- /src/js/component/drag-layer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/drag-layer.jsx -------------------------------------------------------------------------------- /src/js/component/edit-toggle-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/edit-toggle-button.jsx -------------------------------------------------------------------------------- /src/js/component/editable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/editable.jsx -------------------------------------------------------------------------------- /src/js/component/editable/content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/editable/content.jsx -------------------------------------------------------------------------------- /src/js/component/embedded-library.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/embedded-library.jsx -------------------------------------------------------------------------------- /src/js/component/embedded/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/embedded/footer.jsx -------------------------------------------------------------------------------- /src/js/component/embedded/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/embedded/header.jsx -------------------------------------------------------------------------------- /src/js/component/embedded/libraries-tree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/embedded/libraries-tree.jsx -------------------------------------------------------------------------------- /src/js/component/error-boundry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/error-boundry.jsx -------------------------------------------------------------------------------- /src/js/component/focus-trap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/focus-trap.jsx -------------------------------------------------------------------------------- /src/js/component/form/auto-resizer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/auto-resizer.jsx -------------------------------------------------------------------------------- /src/js/component/form/creator-field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/creator-field.jsx -------------------------------------------------------------------------------- /src/js/component/form/creators.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/creators.jsx -------------------------------------------------------------------------------- /src/js/component/form/field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/field.jsx -------------------------------------------------------------------------------- /src/js/component/form/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/input.jsx -------------------------------------------------------------------------------- /src/js/component/form/radio-set.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/radio-set.jsx -------------------------------------------------------------------------------- /src/js/component/form/select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/select.jsx -------------------------------------------------------------------------------- /src/js/component/form/text-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/form/text-area.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/abstract.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/abstract.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/add-linked-url-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/add-linked-url-form.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/attachment-details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/attachment-details.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/attachments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/attachments.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/box.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/box.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/boxfield.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/boxfield.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/boxfields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/boxfields.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/info-view.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/info-view.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/info.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/notes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/notes.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/related.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/related.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/standalone-attachment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/standalone-attachment.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/standalone-note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/standalone-note.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/tabs.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/tag-picker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/tag-picker.jsx -------------------------------------------------------------------------------- /src/js/component/item-details/tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item-details/tags.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions/add-by-identifier.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions/add-by-identifier.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions/export.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions/export.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions/import.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions/import.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions/more-actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions/more-actions.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions/new-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions/new-item.jsx -------------------------------------------------------------------------------- /src/js/component/item/actions/upload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/actions/upload.jsx -------------------------------------------------------------------------------- /src/js/component/item/current-items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/current-items.jsx -------------------------------------------------------------------------------- /src/js/component/item/details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/details.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/column-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/column-selector.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/list-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/list-row.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/list.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/scroll-effect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/scroll-effect.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/table-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/table-row.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/table.jsx -------------------------------------------------------------------------------- /src/js/component/item/items/toolbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/item/items/toolbar.jsx -------------------------------------------------------------------------------- /src/js/component/libraries.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/libraries.jsx -------------------------------------------------------------------------------- /src/js/component/libraries/collection-tree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/libraries/collection-tree.jsx -------------------------------------------------------------------------------- /src/js/component/libraries/node.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/libraries/node.jsx -------------------------------------------------------------------------------- /src/js/component/library.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/library.jsx -------------------------------------------------------------------------------- /src/js/component/loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/loader.jsx -------------------------------------------------------------------------------- /src/js/component/locale-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/locale-selector.jsx -------------------------------------------------------------------------------- /src/js/component/main-search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/main-search.jsx -------------------------------------------------------------------------------- /src/js/component/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/main.jsx -------------------------------------------------------------------------------- /src/js/component/messages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/messages.jsx -------------------------------------------------------------------------------- /src/js/component/modal-manager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal-manager.jsx -------------------------------------------------------------------------------- /src/js/component/modal/add-by-identifier.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/add-by-identifier.jsx -------------------------------------------------------------------------------- /src/js/component/modal/add-items-to-collections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/add-items-to-collections.jsx -------------------------------------------------------------------------------- /src/js/component/modal/add-linked-url-touch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/add-linked-url-touch.jsx -------------------------------------------------------------------------------- /src/js/component/modal/add-related.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/add-related.jsx -------------------------------------------------------------------------------- /src/js/component/modal/bibliography.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/bibliography.jsx -------------------------------------------------------------------------------- /src/js/component/modal/change-parent-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/change-parent-item.jsx -------------------------------------------------------------------------------- /src/js/component/modal/copy-citation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/copy-citation.jsx -------------------------------------------------------------------------------- /src/js/component/modal/create-parent-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/create-parent-item.jsx -------------------------------------------------------------------------------- /src/js/component/modal/export.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/export.jsx -------------------------------------------------------------------------------- /src/js/component/modal/identifier-picker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/identifier-picker.jsx -------------------------------------------------------------------------------- /src/js/component/modal/items-sort.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/items-sort.jsx -------------------------------------------------------------------------------- /src/js/component/modal/manage-tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/manage-tags.jsx -------------------------------------------------------------------------------- /src/js/component/modal/metadata-retrieval.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/metadata-retrieval.jsx -------------------------------------------------------------------------------- /src/js/component/modal/move-collections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/move-collections.jsx -------------------------------------------------------------------------------- /src/js/component/modal/new-collection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/new-collection.jsx -------------------------------------------------------------------------------- /src/js/component/modal/new-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/new-item.jsx -------------------------------------------------------------------------------- /src/js/component/modal/rename-collection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/rename-collection.jsx -------------------------------------------------------------------------------- /src/js/component/modal/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/settings.jsx -------------------------------------------------------------------------------- /src/js/component/modal/style-installer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/modal/style-installer.jsx -------------------------------------------------------------------------------- /src/js/component/ongoing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ongoing.jsx -------------------------------------------------------------------------------- /src/js/component/portal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/portal.jsx -------------------------------------------------------------------------------- /src/js/component/preferences-observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/preferences-observer.js -------------------------------------------------------------------------------- /src/js/component/reader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/reader.jsx -------------------------------------------------------------------------------- /src/js/component/rich-editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/rich-editor.jsx -------------------------------------------------------------------------------- /src/js/component/router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/router.jsx -------------------------------------------------------------------------------- /src/js/component/search-backdrop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/search-backdrop.jsx -------------------------------------------------------------------------------- /src/js/component/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/search.jsx -------------------------------------------------------------------------------- /src/js/component/stub.jsx: -------------------------------------------------------------------------------- 1 | export default () => null; 2 | -------------------------------------------------------------------------------- /src/js/component/style-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/style-selector.jsx -------------------------------------------------------------------------------- /src/js/component/tag-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/tag-selector.jsx -------------------------------------------------------------------------------- /src/js/component/tag-selector/tag-color-manager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/tag-selector/tag-color-manager.jsx -------------------------------------------------------------------------------- /src/js/component/tag-selector/tag-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/tag-selector/tag-list.jsx -------------------------------------------------------------------------------- /src/js/component/tag-selector/tag-selector-items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/tag-selector/tag-selector-items.jsx -------------------------------------------------------------------------------- /src/js/component/title-updater.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/title-updater.jsx -------------------------------------------------------------------------------- /src/js/component/touch-drilldown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-drilldown.jsx -------------------------------------------------------------------------------- /src/js/component/touch-footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-footer.jsx -------------------------------------------------------------------------------- /src/js/component/touch-header-wrap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-header-wrap.jsx -------------------------------------------------------------------------------- /src/js/component/touch-header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-header.jsx -------------------------------------------------------------------------------- /src/js/component/touch-header/collection-actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-header/collection-actions.jsx -------------------------------------------------------------------------------- /src/js/component/touch-header/collection-trash-options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-header/collection-trash-options.jsx -------------------------------------------------------------------------------- /src/js/component/touch-header/searchbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-header/searchbar.jsx -------------------------------------------------------------------------------- /src/js/component/touch-header/touch-navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-header/touch-navigation.jsx -------------------------------------------------------------------------------- /src/js/component/touch-side-footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-side-footer.jsx -------------------------------------------------------------------------------- /src/js/component/touch-tag-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/touch-tag-selector.jsx -------------------------------------------------------------------------------- /src/js/component/ui/color-picker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/color-picker.jsx -------------------------------------------------------------------------------- /src/js/component/ui/menu-entry-mobile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/menu-entry-mobile.jsx -------------------------------------------------------------------------------- /src/js/component/ui/menu-entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/menu-entry.jsx -------------------------------------------------------------------------------- /src/js/component/ui/mobile-nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/mobile-nav.jsx -------------------------------------------------------------------------------- /src/js/component/ui/modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/modal.jsx -------------------------------------------------------------------------------- /src/js/component/ui/navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/navbar.jsx -------------------------------------------------------------------------------- /src/js/component/ui/panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/panel.jsx -------------------------------------------------------------------------------- /src/js/component/ui/toolbars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/ui/toolbars.jsx -------------------------------------------------------------------------------- /src/js/component/user-type-detector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/user-type-detector.jsx -------------------------------------------------------------------------------- /src/js/component/viewport-detector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/viewport-detector.jsx -------------------------------------------------------------------------------- /src/js/component/zotero-connector-notifier.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/zotero-connector-notifier.jsx -------------------------------------------------------------------------------- /src/js/component/zotero-streaming-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/component/zotero-streaming-client.js -------------------------------------------------------------------------------- /src/js/constants/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/actions.js -------------------------------------------------------------------------------- /src/js/constants/color-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/color-names.js -------------------------------------------------------------------------------- /src/js/constants/color-tag-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/color-tag-lookup.js -------------------------------------------------------------------------------- /src/js/constants/column-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/column-properties.js -------------------------------------------------------------------------------- /src/js/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/constants.js -------------------------------------------------------------------------------- /src/js/constants/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/defaults.js -------------------------------------------------------------------------------- /src/js/constants/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/dnd.js -------------------------------------------------------------------------------- /src/js/constants/export-formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/export-formats.js -------------------------------------------------------------------------------- /src/js/constants/identifier-result-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/identifier-result-types.js -------------------------------------------------------------------------------- /src/js/constants/item-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/item-types.js -------------------------------------------------------------------------------- /src/js/constants/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/item.js -------------------------------------------------------------------------------- /src/js/constants/locators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/locators.js -------------------------------------------------------------------------------- /src/js/constants/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/modals.js -------------------------------------------------------------------------------- /src/js/constants/picker-modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/picker-modes.js -------------------------------------------------------------------------------- /src/js/constants/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/constants/reader.js -------------------------------------------------------------------------------- /src/js/diff.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/diff.worker.js -------------------------------------------------------------------------------- /src/js/embedded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/embedded.jsx -------------------------------------------------------------------------------- /src/js/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/index.js -------------------------------------------------------------------------------- /src/js/hooks/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/state.js -------------------------------------------------------------------------------- /src/js/hooks/use-edit-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-edit-mode.js -------------------------------------------------------------------------------- /src/js/hooks/use-item-action-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-item-action-handlers.js -------------------------------------------------------------------------------- /src/js/hooks/use-items-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-items-actions.js -------------------------------------------------------------------------------- /src/js/hooks/use-items-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-items-count.js -------------------------------------------------------------------------------- /src/js/hooks/use-items-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-items-state.js -------------------------------------------------------------------------------- /src/js/hooks/use-navigation-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-navigation-state.js -------------------------------------------------------------------------------- /src/js/hooks/use-sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-sortable.js -------------------------------------------------------------------------------- /src/js/hooks/use-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-tags.js -------------------------------------------------------------------------------- /src/js/hooks/use-tracked-settings-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/hooks/use-tracked-settings-key.js -------------------------------------------------------------------------------- /src/js/init.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/init.jsx -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/reducers/cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/cite.js -------------------------------------------------------------------------------- /src/js/reducers/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/config.js -------------------------------------------------------------------------------- /src/js/reducers/current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/current.js -------------------------------------------------------------------------------- /src/js/reducers/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/device.js -------------------------------------------------------------------------------- /src/js/reducers/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/errors.js -------------------------------------------------------------------------------- /src/js/reducers/fetching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/fetching.js -------------------------------------------------------------------------------- /src/js/reducers/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/groups.js -------------------------------------------------------------------------------- /src/js/reducers/identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/identifier.js -------------------------------------------------------------------------------- /src/js/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/index.js -------------------------------------------------------------------------------- /src/js/reducers/items-publications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/items-publications.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/attachments-export-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/attachments-export-pdf.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/attachments-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/attachments-url.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/best-attachment-reverse-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/best-attachment-reverse-lookup.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/collections.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/creating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/creating.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/data-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/data-objects.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/deleting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/deleting.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/index.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/items-and-collections-trash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/items-and-collections-trash.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/items-by-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/items-by-collection.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/items-by-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/items-by-parent.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/items-related.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/items-related.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/items-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/items-top.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/items-trash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/items-trash.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/settings.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/sync.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/tag-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/tag-colors.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/tags-by-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/tags-by-collection.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/tags-in-library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/tags-in-library.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/tags-in-publications-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/tags-in-publications-items.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/tags-in-trash-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/tags-in-trash-items.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/tags-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/tags-top.js -------------------------------------------------------------------------------- /src/js/reducers/libraries/updating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/libraries/updating.js -------------------------------------------------------------------------------- /src/js/reducers/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/meta.js -------------------------------------------------------------------------------- /src/js/reducers/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/modal.js -------------------------------------------------------------------------------- /src/js/reducers/ongoing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/ongoing.js -------------------------------------------------------------------------------- /src/js/reducers/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/preferences.js -------------------------------------------------------------------------------- /src/js/reducers/query-and-collections-trash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/query-and-collections-trash.js -------------------------------------------------------------------------------- /src/js/reducers/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/query.js -------------------------------------------------------------------------------- /src/js/reducers/recognize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/recognize.js -------------------------------------------------------------------------------- /src/js/reducers/secondary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/secondary.js -------------------------------------------------------------------------------- /src/js/reducers/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/sources.js -------------------------------------------------------------------------------- /src/js/reducers/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/styles.js -------------------------------------------------------------------------------- /src/js/reducers/traffic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/reducers/traffic.js -------------------------------------------------------------------------------- /src/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/routes.js -------------------------------------------------------------------------------- /src/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/store.js -------------------------------------------------------------------------------- /src/js/style-search.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/style-search.worker.js -------------------------------------------------------------------------------- /src/js/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/types.js -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/utils.js -------------------------------------------------------------------------------- /src/js/wdyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/js/wdyr.js -------------------------------------------------------------------------------- /src/scss/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/_functions.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/_mixins.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/_utilities.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/_variables.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_asset-url.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/functions/_asset-url.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/functions/_breakpoints.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/functions/_lists.scss -------------------------------------------------------------------------------- /src/scss/abstracts/functions/_strings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/functions/_strings.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_button.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_dropdown.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_hairline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_hairline.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_same.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_same.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_selectors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_selectors.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_theme.scss -------------------------------------------------------------------------------- /src/scss/abstracts/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/mixins/_utilities.scss -------------------------------------------------------------------------------- /src/scss/abstracts/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/utilities/_flex.scss -------------------------------------------------------------------------------- /src/scss/abstracts/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/utilities/_text.scss -------------------------------------------------------------------------------- /src/scss/abstracts/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/abstracts/utilities/_visibility.scss -------------------------------------------------------------------------------- /src/scss/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/base/_base.scss -------------------------------------------------------------------------------- /src/scss/base/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/base/_fonts.scss -------------------------------------------------------------------------------- /src/scss/base/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/base/_normalize.scss -------------------------------------------------------------------------------- /src/scss/base/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/base/_type.scss -------------------------------------------------------------------------------- /src/scss/components/_auto-resizer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_auto-resizer.scss -------------------------------------------------------------------------------- /src/scss/components/_bibliography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_bibliography.scss -------------------------------------------------------------------------------- /src/scss/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_button.scss -------------------------------------------------------------------------------- /src/scss/components/_citation-options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_citation-options.scss -------------------------------------------------------------------------------- /src/scss/components/_collection-tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_collection-tree.scss -------------------------------------------------------------------------------- /src/scss/components/_color-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_color-picker.scss -------------------------------------------------------------------------------- /src/scss/components/_copy-citation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_copy-citation.scss -------------------------------------------------------------------------------- /src/scss/components/_crash-handler.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_crash-handler.scss -------------------------------------------------------------------------------- /src/scss/components/_drag-layer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_drag-layer.scss -------------------------------------------------------------------------------- /src/scss/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_dropdown.scss -------------------------------------------------------------------------------- /src/scss/components/_editable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_editable.scss -------------------------------------------------------------------------------- /src/scss/components/_icon-extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_icon-extra.scss -------------------------------------------------------------------------------- /src/scss/components/_library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_library.scss -------------------------------------------------------------------------------- /src/scss/components/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_messages.scss -------------------------------------------------------------------------------- /src/scss/components/_nav-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_nav-sidebar.scss -------------------------------------------------------------------------------- /src/scss/components/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_navbar.scss -------------------------------------------------------------------------------- /src/scss/components/_new-item-selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_new-item-selector.scss -------------------------------------------------------------------------------- /src/scss/components/_ongoing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_ongoing.scss -------------------------------------------------------------------------------- /src/scss/components/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_panel.scss -------------------------------------------------------------------------------- /src/scss/components/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_popover.scss -------------------------------------------------------------------------------- /src/scss/components/_reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_reader.scss -------------------------------------------------------------------------------- /src/scss/components/_related.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_related.scss -------------------------------------------------------------------------------- /src/scss/components/_rich-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_rich-editor.scss -------------------------------------------------------------------------------- /src/scss/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_search.scss -------------------------------------------------------------------------------- /src/scss/components/_searchbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_searchbar.scss -------------------------------------------------------------------------------- /src/scss/components/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_tabs.scss -------------------------------------------------------------------------------- /src/scss/components/_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_toolbar.scss -------------------------------------------------------------------------------- /src/scss/components/_touch-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_touch-footer.scss -------------------------------------------------------------------------------- /src/scss/components/_touch-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_touch-header.scss -------------------------------------------------------------------------------- /src/scss/components/_touch-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/_touch-nav.scss -------------------------------------------------------------------------------- /src/scss/components/attachment/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/attachment/_list.scss -------------------------------------------------------------------------------- /src/scss/components/attachment/_pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/attachment/_pane.scss -------------------------------------------------------------------------------- /src/scss/components/item/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/item/_details.scss -------------------------------------------------------------------------------- /src/scss/components/item/_drilldown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/item/_drilldown.scss -------------------------------------------------------------------------------- /src/scss/components/item/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/item/_list.scss -------------------------------------------------------------------------------- /src/scss/components/item/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/item/_table.scss -------------------------------------------------------------------------------- /src/scss/components/metadata/_abstract.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/metadata/_abstract.scss -------------------------------------------------------------------------------- /src/scss/components/metadata/_creators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/metadata/_creators.scss -------------------------------------------------------------------------------- /src/scss/components/metadata/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/metadata/_list.scss -------------------------------------------------------------------------------- /src/scss/components/metadata/_pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/metadata/_pane.scss -------------------------------------------------------------------------------- /src/scss/components/metadata/_title.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/metadata/_title.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_bibliography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_bibliography.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_collection-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_collection-select.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_identifier-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_identifier-picker.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_manage-tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_manage-tags.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_metadata-retrieval.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_metadata-retrieval.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_modal-item-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_modal-item-picker.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_note.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_note.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_react-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_react-modal.scss -------------------------------------------------------------------------------- /src/scss/components/modal/_settings.scss: -------------------------------------------------------------------------------- 1 | .modal-settings { 2 | overflow: visible; 3 | } 4 | -------------------------------------------------------------------------------- /src/scss/components/modal/_style-installer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/modal/_style-installer.scss -------------------------------------------------------------------------------- /src/scss/components/note/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/note/_list.scss -------------------------------------------------------------------------------- /src/scss/components/note/_pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/note/_pane.scss -------------------------------------------------------------------------------- /src/scss/components/tag/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/tag/_list.scss -------------------------------------------------------------------------------- /src/scss/components/tag/_pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/tag/_pane.scss -------------------------------------------------------------------------------- /src/scss/components/tag/_selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/tag/_selector.scss -------------------------------------------------------------------------------- /src/scss/components/tag/_tag-color-manager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/tag/_tag-color-manager.scss -------------------------------------------------------------------------------- /src/scss/components/tag/_touch-selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/components/tag/_touch-selector.scss -------------------------------------------------------------------------------- /src/scss/partials/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_badge.scss -------------------------------------------------------------------------------- /src/scss/partials/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_common.scss -------------------------------------------------------------------------------- /src/scss/partials/_details-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_details-list.scss -------------------------------------------------------------------------------- /src/scss/partials/_focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_focus.scss -------------------------------------------------------------------------------- /src/scss/partials/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_forms.scss -------------------------------------------------------------------------------- /src/scss/partials/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_grid.scss -------------------------------------------------------------------------------- /src/scss/partials/_inline-feedback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_inline-feedback.scss -------------------------------------------------------------------------------- /src/scss/partials/_loading-cover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_loading-cover.scss -------------------------------------------------------------------------------- /src/scss/partials/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_navs.scss -------------------------------------------------------------------------------- /src/scss/partials/_scroll-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_scroll-container.scss -------------------------------------------------------------------------------- /src/scss/partials/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_scrollbar.scss -------------------------------------------------------------------------------- /src/scss/partials/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_sidebar.scss -------------------------------------------------------------------------------- /src/scss/partials/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/partials/_transitions.scss -------------------------------------------------------------------------------- /src/scss/themes/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/themes/_common.scss -------------------------------------------------------------------------------- /src/scss/themes/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/themes/_dark.scss -------------------------------------------------------------------------------- /src/scss/themes/_light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/themes/_light.scss -------------------------------------------------------------------------------- /src/scss/zotero-web-library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/scss/zotero-web-library.scss -------------------------------------------------------------------------------- /src/static/icons/10/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/10/x.svg -------------------------------------------------------------------------------- /src/static/icons/12/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/circle.svg -------------------------------------------------------------------------------- /src/static/icons/12/crescent-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/crescent-circle.svg -------------------------------------------------------------------------------- /src/static/icons/12/grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/grip.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-epub-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-epub-link.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-epub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-epub.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-file.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-image.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-link.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-pdf-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-pdf-link.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-pdf.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-snapshot.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-video.svg -------------------------------------------------------------------------------- /src/static/icons/12/item-type/attachment-web-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/item-type/attachment-web-link.svg -------------------------------------------------------------------------------- /src/static/icons/12/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/12/square.svg -------------------------------------------------------------------------------- /src/static/icons/16/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/attachment.svg -------------------------------------------------------------------------------- /src/static/icons/16/bibliography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/bibliography.svg -------------------------------------------------------------------------------- /src/static/icons/16/caret-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/caret-16.svg -------------------------------------------------------------------------------- /src/static/icons/16/change-top-level-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/change-top-level-item.svg -------------------------------------------------------------------------------- /src/static/icons/16/chevron-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/chevron-13.svg -------------------------------------------------------------------------------- /src/static/icons/16/chevron-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/chevron-7.svg -------------------------------------------------------------------------------- /src/static/icons/16/chevron-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/chevron-9.svg -------------------------------------------------------------------------------- /src/static/icons/16/cite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/cite.svg -------------------------------------------------------------------------------- /src/static/icons/16/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/close.svg -------------------------------------------------------------------------------- /src/static/icons/16/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/cog.svg -------------------------------------------------------------------------------- /src/static/icons/16/columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/columns.svg -------------------------------------------------------------------------------- /src/static/icons/16/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/cross.svg -------------------------------------------------------------------------------- /src/static/icons/16/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/document.svg -------------------------------------------------------------------------------- /src/static/icons/16/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/duplicate.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/align-center.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/align-left.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/align-right.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/b.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/blockquote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/blockquote.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/bullet-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/bullet-list.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/color-swatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/color-swatch.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/fore-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/fore-color.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/hilite-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/hilite-color.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/i.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/indent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/indent.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/link.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/numbered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/numbered-list.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/outdent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/outdent.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/remove-format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/remove-format.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/s.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/sub.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/sup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/sup.svg -------------------------------------------------------------------------------- /src/static/icons/16/editor/u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/editor/u.svg -------------------------------------------------------------------------------- /src/static/icons/16/empty-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/empty-trash.svg -------------------------------------------------------------------------------- /src/static/icons/16/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/export.svg -------------------------------------------------------------------------------- /src/static/icons/16/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/folder.svg -------------------------------------------------------------------------------- /src/static/icons/16/grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/grip.svg -------------------------------------------------------------------------------- /src/static/icons/16/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/import.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/artwork@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/artwork@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/artwork@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/artwork@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-epub-link@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-epub-link@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-epub-link@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-epub-link@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-epub@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-epub@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-epub@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-epub@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-image-link@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-image-link@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-image-link@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-image-link@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-image@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-image@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-image@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-image@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-link@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-link@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-link@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-link@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-pdf-link@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-pdf-link@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-pdf-link@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-pdf-link@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-pdf@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-pdf@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-pdf@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-pdf@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-snapshot@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-snapshot@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-snapshot@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-snapshot@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-video-link@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-video-link@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-video-link@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-video-link@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-video@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-video@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-video@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-video@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-web-link@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-web-link@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/attachment-web-link@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/attachment-web-link@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/audio-recording@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/audio-recording@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/audio-recording@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/audio-recording@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/bill@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/bill@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/bill@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/bill@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/blog-post@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/blog-post@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/blog-post@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/blog-post@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/book-section@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/book-section@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/book-section@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/book-section@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/book@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/book@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/book@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/book@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/case@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/case@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/case@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/case@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/computer-program@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/computer-program@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/computer-program@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/computer-program@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/conference-paper@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/conference-paper@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/conference-paper@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/conference-paper@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/dataset@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/dataset@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/dataset@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/dataset@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/dictionary-entry@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/dictionary-entry@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/dictionary-entry@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/dictionary-entry@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/document@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/document@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/document@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/document@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/email@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/email@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/email@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/email@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/encyclopedia-article@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/encyclopedia-article@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/encyclopedia-article@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/encyclopedia-article@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/film@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/film@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/film@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/film@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/folder@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/folder@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/folder@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/folder@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/forum-post@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/forum-post@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/forum-post@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/forum-post@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/hearing@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/hearing@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/hearing@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/hearing@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/instant-message@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/instant-message@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/instant-message@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/instant-message@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/interview@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/interview@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/interview@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/interview@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/journal-article@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/journal-article@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/journal-article@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/journal-article@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/letter@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/letter@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/letter@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/letter@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/magazine-article@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/magazine-article@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/magazine-article@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/magazine-article@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/manuscript@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/manuscript@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/manuscript@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/manuscript@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/map@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/map@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/map@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/map@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/newspaper-article@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/newspaper-article@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/newspaper-article@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/newspaper-article@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/note@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/note@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/note@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/note@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/patent@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/patent@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/patent@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/patent@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/podcast@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/podcast@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/podcast@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/podcast@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/preprint@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/preprint@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/preprint@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/preprint@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/presentation@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/presentation@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/presentation@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/presentation@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/radio-broadcast@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/radio-broadcast@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/radio-broadcast@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/radio-broadcast@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/report@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/report@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/report@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/report@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/standard@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/standard@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/standard@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/standard@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/statute@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/statute@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/statute@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/statute@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/thesis@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/thesis@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/thesis@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/thesis@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/tv-broadcast@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/tv-broadcast@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/tv-broadcast@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/tv-broadcast@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/video-recording@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/video-recording@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/video-recording@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/video-recording@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/webpage@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/webpage@1x.svg -------------------------------------------------------------------------------- /src/static/icons/16/item-type/webpage@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/item-type/webpage@2x.svg -------------------------------------------------------------------------------- /src/static/icons/16/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/library.svg -------------------------------------------------------------------------------- /src/static/icons/16/magic-wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/magic-wand.svg -------------------------------------------------------------------------------- /src/static/icons/16/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/magnifier.svg -------------------------------------------------------------------------------- /src/static/icons/16/minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/minus-circle.svg -------------------------------------------------------------------------------- /src/static/icons/16/minus-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/minus-strong.svg -------------------------------------------------------------------------------- /src/static/icons/16/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/minus.svg -------------------------------------------------------------------------------- /src/static/icons/16/note-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/note-sm.svg -------------------------------------------------------------------------------- /src/static/icons/16/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/note.svg -------------------------------------------------------------------------------- /src/static/icons/16/open-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/open-link.svg -------------------------------------------------------------------------------- /src/static/icons/16/options-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/options-strong.svg -------------------------------------------------------------------------------- /src/static/icons/16/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/options.svg -------------------------------------------------------------------------------- /src/static/icons/16/plus-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/plus-strong.svg -------------------------------------------------------------------------------- /src/static/icons/16/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/plus.svg -------------------------------------------------------------------------------- /src/static/icons/16/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/quote.svg -------------------------------------------------------------------------------- /src/static/icons/16/reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/reader.svg -------------------------------------------------------------------------------- /src/static/icons/16/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/refresh.svg -------------------------------------------------------------------------------- /src/static/icons/16/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/restore.svg -------------------------------------------------------------------------------- /src/static/icons/16/retrieve-metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/retrieve-metadata.svg -------------------------------------------------------------------------------- /src/static/icons/16/spin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/spin.svg -------------------------------------------------------------------------------- /src/static/icons/16/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/tag.svg -------------------------------------------------------------------------------- /src/static/icons/16/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/tick.svg -------------------------------------------------------------------------------- /src/static/icons/16/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/trash.svg -------------------------------------------------------------------------------- /src/static/icons/16/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/16/triangle.svg -------------------------------------------------------------------------------- /src/static/icons/20/add-collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/20/add-collection.svg -------------------------------------------------------------------------------- /src/static/icons/20/input-dual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/20/input-dual.svg -------------------------------------------------------------------------------- /src/static/icons/20/input-single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/20/input-single.svg -------------------------------------------------------------------------------- /src/static/icons/20/library-read-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/20/library-read-only.svg -------------------------------------------------------------------------------- /src/static/icons/20/remove-from-collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/20/remove-from-collection.svg -------------------------------------------------------------------------------- /src/static/icons/24/bibliography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/bibliography.svg -------------------------------------------------------------------------------- /src/static/icons/24/cite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/cite.svg -------------------------------------------------------------------------------- /src/static/icons/24/duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/duplicate.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/align-center.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/align-left.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/align-right.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/b.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/blockquote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/blockquote.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/bullet-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/bullet-list.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/color-swatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/color-swatch.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/fore-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/fore-color.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/hilite-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/hilite-color.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/i.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/indent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/indent.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/link.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/magnifier.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/numbered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/numbered-list.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/outdent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/outdent.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/remove-format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/remove-format.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/s.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/sub.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/sup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/sup.svg -------------------------------------------------------------------------------- /src/static/icons/24/editor/u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/editor/u.svg -------------------------------------------------------------------------------- /src/static/icons/24/empty-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/empty-trash.svg -------------------------------------------------------------------------------- /src/static/icons/24/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/export.svg -------------------------------------------------------------------------------- /src/static/icons/24/grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/grip.svg -------------------------------------------------------------------------------- /src/static/icons/24/minus-circle-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/minus-circle-strong.svg -------------------------------------------------------------------------------- /src/static/icons/24/open-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/open-link.svg -------------------------------------------------------------------------------- /src/static/icons/24/options-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/options-sm.svg -------------------------------------------------------------------------------- /src/static/icons/24/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/options.svg -------------------------------------------------------------------------------- /src/static/icons/24/plus-circle-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/plus-circle-strong.svg -------------------------------------------------------------------------------- /src/static/icons/24/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/plus-circle.svg -------------------------------------------------------------------------------- /src/static/icons/24/reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/reader.svg -------------------------------------------------------------------------------- /src/static/icons/24/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/restore.svg -------------------------------------------------------------------------------- /src/static/icons/24/search-options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/search-options.svg -------------------------------------------------------------------------------- /src/static/icons/24/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/search.svg -------------------------------------------------------------------------------- /src/static/icons/24/tag-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/tag-strong.svg -------------------------------------------------------------------------------- /src/static/icons/24/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/tag.svg -------------------------------------------------------------------------------- /src/static/icons/24/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/24/trash.svg -------------------------------------------------------------------------------- /src/static/icons/28/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/document.svg -------------------------------------------------------------------------------- /src/static/icons/28/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/file.svg -------------------------------------------------------------------------------- /src/static/icons/28/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/folder.svg -------------------------------------------------------------------------------- /src/static/icons/28/folders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/folders.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/artwork.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-epub-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-epub-link.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-epub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-epub.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-image-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-image-link.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-image.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-link.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-pdf-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-pdf-link.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-pdf.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-snapshot.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-video-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-video-link.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-video.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/attachment-web-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/attachment-web-link.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/audio-recording.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/audio-recording.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/bill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/bill.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/blog-post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/blog-post.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/book-section.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/book-section.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/book.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/case.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/computer-program.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/computer-program.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/conference-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/conference-paper.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/dataset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/dataset.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/dictionary-entry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/dictionary-entry.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/document.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/email.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/encyclopedia-article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/encyclopedia-article.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/film.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/folder.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/forum-post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/forum-post.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/hearing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/hearing.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/instant-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/instant-message.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/interview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/interview.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/journal-article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/journal-article.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/letter.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/magazine-article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/magazine-article.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/manuscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/manuscript.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/map.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/newspaper-article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/newspaper-article.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/note.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/patent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/patent.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/podcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/podcast.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/preprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/preprint.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/presentation.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/radio-broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/radio-broadcast.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/report.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/standard.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/statute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/statute.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/thesis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/thesis.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/tv-broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/tv-broadcast.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/video-recording.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/video-recording.svg -------------------------------------------------------------------------------- /src/static/icons/28/item-type/webpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/item-type/webpage.svg -------------------------------------------------------------------------------- /src/static/icons/28/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/library.svg -------------------------------------------------------------------------------- /src/static/icons/28/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/note.svg -------------------------------------------------------------------------------- /src/static/icons/28/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/tag.svg -------------------------------------------------------------------------------- /src/static/icons/28/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/28/trash.svg -------------------------------------------------------------------------------- /src/static/icons/32/add-to-collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/32/add-to-collection.svg -------------------------------------------------------------------------------- /src/static/icons/32/color-scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/32/color-scheme.svg -------------------------------------------------------------------------------- /src/static/icons/32/library-read-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/32/library-read-only.svg -------------------------------------------------------------------------------- /src/static/icons/32/remove-from-collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/32/remove-from-collection.svg -------------------------------------------------------------------------------- /src/static/icons/32/z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/32/z.svg -------------------------------------------------------------------------------- /src/static/icons/8/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/8/x.svg -------------------------------------------------------------------------------- /src/static/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/static/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/static/icons/zotero-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/icons/zotero-logo.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/link-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/link-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/link.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/minus-circle-strong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/minus-circle-strong.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/open-link-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/open-link-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/open-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/open-link.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/unlink-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/unlink-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/24/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/24/unlink.svg -------------------------------------------------------------------------------- /src/static/images/icons/chevron-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/chevron-13.svg -------------------------------------------------------------------------------- /src/static/images/icons/chevron-7-777.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/chevron-7-777.svg -------------------------------------------------------------------------------- /src/static/images/icons/chevron-7-secondary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/chevron-7-secondary.svg -------------------------------------------------------------------------------- /src/static/images/icons/chevron-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/chevron-7.svg -------------------------------------------------------------------------------- /src/static/images/icons/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/close-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/close.svg -------------------------------------------------------------------------------- /src/static/images/icons/grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/grip.svg -------------------------------------------------------------------------------- /src/static/images/icons/input-dual-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/input-dual-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/input-dual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/input-dual.svg -------------------------------------------------------------------------------- /src/static/images/icons/input-single-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/input-single-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/input-single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/input-single.svg -------------------------------------------------------------------------------- /src/static/images/icons/link-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/link-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/link-enabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/link-enabled.svg -------------------------------------------------------------------------------- /src/static/images/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/link.svg -------------------------------------------------------------------------------- /src/static/images/icons/minus-circle-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/minus-circle-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/minus-circle-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/minus-circle-touch.svg -------------------------------------------------------------------------------- /src/static/images/icons/minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/minus-circle.svg -------------------------------------------------------------------------------- /src/static/images/icons/minus-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/minus-touch.svg -------------------------------------------------------------------------------- /src/static/images/icons/next-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/next-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/next-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/next-touch.svg -------------------------------------------------------------------------------- /src/static/images/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/next.svg -------------------------------------------------------------------------------- /src/static/images/icons/open-link-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/open-link-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/open-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/open-link.svg -------------------------------------------------------------------------------- /src/static/images/icons/plus-circle-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/plus-circle-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/plus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/plus-circle.svg -------------------------------------------------------------------------------- /src/static/images/icons/previous-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/previous-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/previous-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/previous-touch.svg -------------------------------------------------------------------------------- /src/static/images/icons/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/previous.svg -------------------------------------------------------------------------------- /src/static/images/icons/tick-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/tick-blue.svg -------------------------------------------------------------------------------- /src/static/images/icons/tick-white-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/tick-white-16.svg -------------------------------------------------------------------------------- /src/static/images/icons/tick-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/tick-white.svg -------------------------------------------------------------------------------- /src/static/images/icons/unlink-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/unlink-active.svg -------------------------------------------------------------------------------- /src/static/images/icons/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/unlink.svg -------------------------------------------------------------------------------- /src/static/images/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/images/icons/x.svg -------------------------------------------------------------------------------- /src/static/xdelta3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/src/static/xdelta3.wasm -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/attachment-details.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/attachment-details.test.jsx -------------------------------------------------------------------------------- /test/attachments.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/attachments.test.jsx -------------------------------------------------------------------------------- /test/basic-ui.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/basic-ui.test.jsx -------------------------------------------------------------------------------- /test/collections.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/collections.test.jsx -------------------------------------------------------------------------------- /test/config.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/config.test.jsx -------------------------------------------------------------------------------- /test/exports.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/exports.test.jsx -------------------------------------------------------------------------------- /test/fixtures/locales-en-gb.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/locales-en-gb.xml.js -------------------------------------------------------------------------------- /test/fixtures/locales-en-us.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/locales-en-us.xml.js -------------------------------------------------------------------------------- /test/fixtures/locales-pl-pl.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/locales-pl-pl.xml.js -------------------------------------------------------------------------------- /test/fixtures/modern-language-association.csl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/modern-language-association.csl.js -------------------------------------------------------------------------------- /test/fixtures/response/annotation-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/annotation-item.json -------------------------------------------------------------------------------- /test/fixtures/response/creator-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/creator-fields.json -------------------------------------------------------------------------------- /test/fixtures/response/item-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/item-fields.json -------------------------------------------------------------------------------- /test/fixtures/response/item-type-creator-types-book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/item-type-creator-types-book.json -------------------------------------------------------------------------------- /test/fixtures/response/item-type-creator-types-film.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/item-type-creator-types-film.json -------------------------------------------------------------------------------- /test/fixtures/response/item-type-fields-book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/item-type-fields-book.json -------------------------------------------------------------------------------- /test/fixtures/response/item-type-fields-film.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/item-type-fields-film.json -------------------------------------------------------------------------------- /test/fixtures/response/item-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/item-types.json -------------------------------------------------------------------------------- /test/fixtures/response/min-user-collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/min-user-collections.json -------------------------------------------------------------------------------- /test/fixtures/response/min-user-group-collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/min-user-group-collections.json -------------------------------------------------------------------------------- /test/fixtures/response/min-user-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/min-user-groups.json -------------------------------------------------------------------------------- /test/fixtures/response/new-item-annotation-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/new-item-annotation-note.json -------------------------------------------------------------------------------- /test/fixtures/response/new-item-embedded-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/new-item-embedded-image.json -------------------------------------------------------------------------------- /test/fixtures/response/new-item-file-attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/new-item-file-attachment.json -------------------------------------------------------------------------------- /test/fixtures/response/new-item-journal-article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/new-item-journal-article.json -------------------------------------------------------------------------------- /test/fixtures/response/new-item-linked-attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/new-item-linked-attachment.json -------------------------------------------------------------------------------- /test/fixtures/response/new-item-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/new-item-note.json -------------------------------------------------------------------------------- /test/fixtures/response/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/schema.json -------------------------------------------------------------------------------- /test/fixtures/response/search-by-identifier-recognize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/search-by-identifier-recognize.json -------------------------------------------------------------------------------- /test/fixtures/response/search-by-identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/search-by-identifier.json -------------------------------------------------------------------------------- /test/fixtures/response/test-group-add-item-to-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-group-add-item-to-collection.json -------------------------------------------------------------------------------- /test/fixtures/response/test-group-collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-group-collections.json -------------------------------------------------------------------------------- /test/fixtures/response/test-group-copy-annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-group-copy-annotations.json -------------------------------------------------------------------------------- /test/fixtures/response/test-group-copy-child-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-group-copy-child-items.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-by-identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-by-identifier.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-collection.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-embedded-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-embedded-image.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-item-to-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-item-to-collection.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-new-attachment-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-new-attachment-file.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-new-item-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-new-item-note.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-new-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-new-item.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-add-parent-manual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-add-parent-manual.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-attachment-annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-attachment-annotations.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-children.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-collection-items-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-collection-items-tags.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-collection-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-collection-items.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-create-annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-create-annotation.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-duplicate-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-duplicate-item.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-get-items-golden-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-get-items-golden-tags.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-get-items-golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-get-items-golden.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-manage-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-manage-tags.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-pictures-redundant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-pictures-redundant.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-post-add-related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-post-add-related.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-reader-children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-reader-children.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-search-by-tag-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-search-by-tag-results.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-search-results-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-search-results-tags.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-search-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-search-results.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-tags-for-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-tags-for-item.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-tags-suggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-tags-suggestions.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-trash-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-trash-item.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-update-date-dmy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-update-date-dmy.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-update-date-mdy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-update-date-mdy.json -------------------------------------------------------------------------------- /test/fixtures/response/test-user-update-item-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/test-user-update-item-type.json -------------------------------------------------------------------------------- /test/fixtures/response/zotero-user-tags-second-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/response/zotero-user-tags-second-page.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-group-item-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-group-item-view.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-user-item-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-user-item-view.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-user-library-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-user-library-view.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-user-note-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-user-note-view.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-user-reader-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-user-reader-view.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-user-search-selected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-user-search-selected.json -------------------------------------------------------------------------------- /test/fixtures/state/desktop-test-user-trash-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/desktop-test-user-trash-view.json -------------------------------------------------------------------------------- /test/fixtures/state/minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/minimal.json -------------------------------------------------------------------------------- /test/fixtures/state/mobile-test-user-item-details-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/mobile-test-user-item-details-view.json -------------------------------------------------------------------------------- /test/fixtures/state/mobile-test-user-item-list-view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/state/mobile-test-user-item-list-view.json -------------------------------------------------------------------------------- /test/fixtures/turabian-notes-bibliography.csl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/fixtures/turabian-notes-bibliography.csl.js -------------------------------------------------------------------------------- /test/groups.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/groups.test.jsx -------------------------------------------------------------------------------- /test/item-info.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/item-info.test.jsx -------------------------------------------------------------------------------- /test/items.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/items.test.jsx -------------------------------------------------------------------------------- /test/loading-screen.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/loading-screen.test.jsx -------------------------------------------------------------------------------- /test/mocks/diff.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/mocks/diff.worker.js -------------------------------------------------------------------------------- /test/mocks/matchmedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/mocks/matchmedia.js -------------------------------------------------------------------------------- /test/mocks/noop.js: -------------------------------------------------------------------------------- 1 | export default () => null; 2 | -------------------------------------------------------------------------------- /test/mocks/pdf-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/mocks/pdf-worker.js -------------------------------------------------------------------------------- /test/mocks/react-virtualized-auto-sizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/mocks/react-virtualized-auto-sizer.js -------------------------------------------------------------------------------- /test/mocks/style-search.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/mocks/style-search.worker.js -------------------------------------------------------------------------------- /test/no-uploads-allowed.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/no-uploads-allowed.test.jsx -------------------------------------------------------------------------------- /test/note-editor.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/note-editor.test.jsx -------------------------------------------------------------------------------- /test/notes.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/notes.test.jsx -------------------------------------------------------------------------------- /test/parent.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/parent.test.jsx -------------------------------------------------------------------------------- /test/playwright/items.desktop.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/playwright/items.desktop.test.js -------------------------------------------------------------------------------- /test/playwright/items.mobile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/playwright/items.mobile.test.js -------------------------------------------------------------------------------- /test/playwright/navigation.keyboard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/playwright/navigation.keyboard.test.js -------------------------------------------------------------------------------- /test/reader.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/reader.test.jsx -------------------------------------------------------------------------------- /test/readonly.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/readonly.test.jsx -------------------------------------------------------------------------------- /test/recognize.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/recognize.test.jsx -------------------------------------------------------------------------------- /test/related.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/related.test.jsx -------------------------------------------------------------------------------- /test/routes.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/routes.test.jsx -------------------------------------------------------------------------------- /test/tags.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/tags.test.jsx -------------------------------------------------------------------------------- /test/trash.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/trash.test.jsx -------------------------------------------------------------------------------- /test/unexpected-item-type.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/unexpected-item-type.test.jsx -------------------------------------------------------------------------------- /test/unexpected-url.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/unexpected-url.test.jsx -------------------------------------------------------------------------------- /test/user-type.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/user-type.test.jsx -------------------------------------------------------------------------------- /test/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/common.js -------------------------------------------------------------------------------- /test/utils/env-with-fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/env-with-fetch.js -------------------------------------------------------------------------------- /test/utils/fixed-state-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/fixed-state-server.js -------------------------------------------------------------------------------- /test/utils/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/jest-setup.js -------------------------------------------------------------------------------- /test/utils/jest-snapshots-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/jest-snapshots-setup.js -------------------------------------------------------------------------------- /test/utils/main-with-state.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/main-with-state.jsx -------------------------------------------------------------------------------- /test/utils/playwright-fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/playwright-fixtures.js -------------------------------------------------------------------------------- /test/utils/render.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/render.jsx -------------------------------------------------------------------------------- /test/utils/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/response.js -------------------------------------------------------------------------------- /test/utils/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/state.js -------------------------------------------------------------------------------- /test/utils/xhr-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/xhr-mock.js -------------------------------------------------------------------------------- /test/utils/zotero-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/web-library/HEAD/test/utils/zotero-env.js --------------------------------------------------------------------------------