@manuscripts/body-editor 3.12.67 → 3.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/toolbar/type-selector/styles.js +2 -1
- package/dist/cjs/versions.js +1 -1
- package/dist/es/components/toolbar/type-selector/styles.js +2 -1
- package/dist/es/versions.js +1 -1
- package/dist/types/components/toolbar/type-selector/styles.d.ts +2 -2
- package/dist/types/lib/footnotes.d.ts +4 -2
- package/dist/types/lib/utils.d.ts +5 -4
- package/dist/types/versions.d.ts +1 -1
- package/package.json +37 -36
- package/{dist/es/lib/statistics.js → src/__mocks__/styleMock.ts} +2 -14
- package/src/assets.ts +20 -0
- package/src/classes/collabProvider.ts +38 -0
- package/src/clipboard.ts +54 -0
- package/src/commands.ts +2109 -0
- package/src/components/ChangeHandlingForm.tsx +54 -0
- package/src/components/LanguageDropdown/index.tsx +343 -0
- package/src/components/affiliations/AffiliationForm.tsx +238 -0
- package/src/components/affiliations/AffiliationItem.tsx +151 -0
- package/src/components/affiliations/AffiliationList.tsx +71 -0
- package/src/components/affiliations/AffiliationsModal.tsx +676 -0
- package/src/components/affiliations/AffiliationsPanel.tsx +76 -0
- package/src/components/affiliations/CreateAffiliationModal.tsx +135 -0
- package/src/components/authors/AuthorDetailsForm.tsx +438 -0
- package/src/components/authors/AuthorList.tsx +81 -0
- package/src/components/authors/AuthorsModal.tsx +642 -0
- package/src/components/authors/AuthorsPanel.tsx +69 -0
- package/src/components/authors/CreateAuthorModal.tsx +172 -0
- package/src/components/authors/CreditDrawer.tsx +71 -0
- package/src/components/authors/DraggableAuthor.tsx +228 -0
- package/src/components/authors/useManageAffiliations.tsx +77 -0
- package/src/components/authors/useManageCredit.tsx +63 -0
- package/src/components/authors-affiliations/AuthorsAndAffiliationsModals.tsx +170 -0
- package/src/components/authors-affiliations/GenericPanel.tsx +164 -0
- package/src/components/authors-affiliations/ModalTabs.tsx +100 -0
- package/src/components/awards/AwardForm.tsx +338 -0
- package/src/components/awards/AwardModal.tsx +120 -0
- package/src/components/awards/DeleteAwardDiaolog.tsx +52 -0
- package/src/components/dialog/ConfirmationDialog.tsx +131 -0
- package/src/components/form/CreateModalStyles.tsx +37 -0
- package/src/components/form/FormFooter.tsx +54 -0
- package/src/components/form/FormPlaceholder.tsx +71 -0
- package/src/components/form/ModalFormActions.tsx +88 -0
- package/src/components/form/UnsavedLabel.tsx +49 -0
- package/src/components/hooks/use-debounce.ts +56 -0
- package/src/components/hooks/useAffiliationShowsErrorIndicator.ts +51 -0
- package/src/components/hooks/useAuthorShowsErrorIndicator.ts +73 -0
- package/src/components/keyboard-shortcuts-modal/FormattedShortcut.tsx +56 -0
- package/src/components/keyboard-shortcuts-modal/KeyboardShortcutsModal.tsx +283 -0
- package/src/components/keyboard-shortcuts-modal/keyboard-shortcuts.ts +304 -0
- package/src/components/keywords/AddKeywordInline.tsx +284 -0
- package/src/components/keywords/DeleteKeywordDialog.tsx +52 -0
- package/src/components/modal-drawer/GenericDrawer.tsx +65 -0
- package/src/components/modal-drawer/GenericDrawerGroup.tsx +125 -0
- package/src/components/outline/DraggableTree.tsx +438 -0
- package/src/components/outline/ManuscriptOutline.tsx +127 -0
- package/src/components/outline/Outline.tsx +141 -0
- package/src/components/references/BibliographyItemSource.ts +80 -0
- package/src/components/references/CitationEditor.tsx +301 -0
- package/src/components/references/CitationViewer.tsx +62 -0
- package/src/components/references/ImportBibliographyForm.tsx +232 -0
- package/src/components/references/ImportBibliographyModal.tsx +159 -0
- package/src/components/references/ReferenceForm/PersonDropDown.tsx +93 -0
- package/src/components/references/ReferenceForm/ReferenceForm.tsx +701 -0
- package/src/components/references/ReferenceForm/config.ts +133 -0
- package/src/components/references/ReferenceForm/styled-components.ts +156 -0
- package/src/components/references/ReferenceLine.tsx +43 -0
- package/src/components/references/ReferenceSearch.tsx +163 -0
- package/src/components/references/ReferenceSearchResults.tsx +113 -0
- package/src/components/references/ReferenceSearchResultsPlaceholder.tsx +71 -0
- package/src/components/references/ReferenceSearchSection.tsx +124 -0
- package/src/components/references/ReferencesEditor.tsx +61 -0
- package/src/components/references/ReferencesModal.tsx +352 -0
- package/src/components/references/SearchInput.tsx +98 -0
- package/src/components/toolbar/InsertEmbedDialog.tsx +222 -0
- package/src/components/toolbar/InsertTableDialog.tsx +208 -0
- package/src/components/toolbar/ListMenuItem.tsx +203 -0
- package/src/components/toolbar/helpers.ts +547 -0
- package/src/components/toolbar/type-selector/OptionComponent.tsx +89 -0
- package/src/components/toolbar/type-selector/TypeSelector.tsx +157 -0
- package/src/components/toolbar/type-selector/styles.ts +79 -0
- package/src/components/views/CrossReferenceItems.tsx +199 -0
- package/src/components/views/DeleteEmbedDialog.tsx +83 -0
- package/src/components/views/DeleteFootnoteDialog.tsx +54 -0
- package/src/components/views/FigureDropdown.tsx +423 -0
- package/src/components/views/FootnotesSelector.tsx +255 -0
- package/src/components/views/InsertSpecialCharacter.tsx +245 -0
- package/src/components/views/LinkForm.tsx +220 -0
- package/src/components/views/TableCellContextMenu.tsx +241 -0
- package/src/configs/ManuscriptsEditor.ts +140 -0
- package/src/configs/editor-plugins.ts +119 -0
- package/src/configs/editor-views.ts +139 -0
- package/src/icons.ts +62 -0
- package/src/index.ts +65 -0
- package/src/keys/highlight.ts +65 -0
- package/src/keys/index.ts +33 -0
- package/src/keys/keyword.ts +69 -0
- package/src/keys/list.ts +156 -0
- package/src/keys/misc.ts +112 -0
- package/src/keys/title.ts +221 -0
- package/src/lib/__tests__/__fixtures__/doc.json +388 -0
- package/src/lib/__tests__/__snapshots__/paste.test.ts.snap +24 -0
- package/src/lib/__tests__/authors.test.ts +202 -0
- package/src/lib/__tests__/helpers.test.ts +46 -0
- package/src/lib/__tests__/paste.test.ts +57 -0
- package/src/lib/__tests__/plugins.test.ts +176 -0
- package/src/lib/__tests__/url.test.ts +31 -0
- package/src/lib/array-reducer.ts +68 -0
- package/src/lib/authors-and-affiliations.ts +81 -0
- package/src/lib/authors.ts +67 -0
- package/src/lib/capabilities.ts +55 -0
- package/src/lib/codemirror.ts +37 -0
- package/src/lib/comments.ts +123 -0
- package/src/lib/context-menu.ts +745 -0
- package/src/lib/copy.ts +30 -0
- package/src/lib/crossref.ts +90 -0
- package/src/lib/dnd.ts +29 -0
- package/src/lib/doc.ts +167 -0
- package/src/lib/dompurify.ts +28 -0
- package/src/lib/files.ts +180 -0
- package/src/lib/footnotes.ts +83 -0
- package/src/lib/get-media-type.ts +105 -0
- package/src/lib/helpers.ts +199 -0
- package/src/lib/hierarchy.ts +117 -0
- package/src/lib/languages.ts +37 -0
- package/src/lib/lists.ts +56 -0
- package/src/lib/math.ts +111 -0
- package/src/lib/media.ts +334 -0
- package/src/lib/navigation-utils.ts +235 -0
- package/src/lib/normalize.ts +70 -0
- package/src/lib/paste.ts +304 -0
- package/src/lib/placeholder.ts +32 -0
- package/src/lib/platform.ts +18 -0
- package/src/lib/plugins.ts +22 -0
- package/src/lib/popper.ts +180 -0
- package/src/lib/position-menu.ts +184 -0
- package/src/lib/references.ts +94 -0
- package/src/lib/template.ts +29 -0
- package/src/lib/track-changes-utils.ts +34 -0
- package/{dist/types/lib/statistics.d.ts → src/lib/url.ts} +11 -8
- package/src/lib/use-do-with-debounce.ts +39 -0
- package/src/lib/utils.ts +323 -0
- package/src/lib/view.ts +100 -0
- package/src/menus.tsx +684 -0
- package/src/node-type-icons.tsx +83 -0
- package/src/plugins/__tests__/__fixtures__/deleted-footnote.json +140 -0
- package/src/plugins/__tests__/__fixtures__/inserted-footnote.json +153 -0
- package/src/plugins/__tests__/footnotes.test.ts +67 -0
- package/src/plugins/accessibility_element.ts +219 -0
- package/src/plugins/add-subtitle.ts +102 -0
- package/src/plugins/affiliations.ts +136 -0
- package/src/plugins/alt-titles.ts +219 -0
- package/src/plugins/bibliography.ts +235 -0
- package/src/plugins/comments.ts +328 -0
- package/src/plugins/cross-references.ts +70 -0
- package/src/plugins/detect-inconsistency/detect-inconsistency-utils.ts +102 -0
- package/src/plugins/detect-inconsistency/index.ts +55 -0
- package/src/plugins/detect-inconsistency/validators.ts +283 -0
- package/src/plugins/doi.ts +66 -0
- package/src/plugins/editor-props.ts +39 -0
- package/src/plugins/elements.ts +60 -0
- package/src/plugins/footnotes.ts +298 -0
- package/src/plugins/link.ts +53 -0
- package/src/plugins/lock-body.ts +136 -0
- package/src/plugins/move-node.ts +55 -0
- package/src/plugins/objects.ts +125 -0
- package/src/plugins/paragraphs.ts +90 -0
- package/src/plugins/persist.ts +64 -0
- package/src/plugins/persistent-cursor.ts +66 -0
- package/src/plugins/placeholder.ts +219 -0
- package/src/plugins/prevent-empty.ts +50 -0
- package/src/plugins/search-replace/index.ts +157 -0
- package/src/plugins/search-replace/lib.ts +95 -0
- package/src/plugins/section_category.ts +212 -0
- package/src/plugins/section_title/autocompletion.ts +87 -0
- package/src/plugins/section_title/index.ts +105 -0
- package/src/plugins/selected-suggestion.ts +243 -0
- package/src/plugins/tables-cursor-fix.ts +143 -0
- package/src/plugins/translations.ts +263 -0
- package/src/rules.ts +60 -0
- package/src/selection.ts +112 -0
- package/src/testing/default-capabilities.ts +48 -0
- package/src/testing/default-editor-data.ts +73 -0
- package/src/testing/empty-editor-doc.json +62 -0
- package/src/testing/polyfill-dom.ts +43 -0
- package/src/testing/section-categories.json +161 -0
- package/src/testing/setup-editor.ts +55 -0
- package/src/tests.ts +42 -0
- package/src/toolbar.tsx +259 -0
- package/src/types/@citation-js/core.d.ts +16 -0
- package/src/types/@citation-js/index.d.ts +16 -0
- package/src/types/@citation-js/plugin-bibtex.d.ts +16 -0
- package/src/types/@citation-js/plugin-csl.d.ts +16 -0
- package/src/types/@citation-js/plugin-doi.d.ts +16 -0
- package/src/types/@citation-js/plugin-enw.d.ts +16 -0
- package/src/types/@citation-js/plugin-pubmed.d.ts +16 -0
- package/src/types/@citation-js/plugin-ris.d.ts +16 -0
- package/src/types/citeproc.d.ts +124 -0
- package/src/types/css.d.ts +16 -0
- package/src/types/json.d.ts +17 -0
- package/src/types/prosemirror-dev-tools.d.ts +16 -0
- package/src/types/prosemirror-dropcursor.d.ts +16 -0
- package/src/types/styled-components.d.ts +23 -0
- package/src/types.ts +49 -0
- package/src/useEditor.ts +244 -0
- package/src/versions.ts +3 -0
- package/src/views/ReactSubView.tsx +145 -0
- package/src/views/abstracts.ts +46 -0
- package/src/views/accessibility_element.ts +86 -0
- package/src/views/affiliations.ts +254 -0
- package/src/views/alt_title.ts +85 -0
- package/src/views/alt_titles_section.ts +97 -0
- package/src/views/attachment.ts +160 -0
- package/src/views/attachments.ts +72 -0
- package/src/views/author_notes.ts +96 -0
- package/src/views/award.ts +194 -0
- package/src/views/awards.ts +59 -0
- package/src/views/base_node_view.ts +85 -0
- package/src/views/bibliography_element.ts +313 -0
- package/src/views/block_view.ts +100 -0
- package/src/views/blockquote_element.ts +26 -0
- package/src/views/blockquote_element_editable.ts +24 -0
- package/src/views/box_element.ts +33 -0
- package/src/views/caption.ts +37 -0
- package/src/views/caption_title.ts +33 -0
- package/src/views/citation.ts +67 -0
- package/src/views/citation_editable.ts +312 -0
- package/src/views/contributors.ts +341 -0
- package/src/views/creators.ts +82 -0
- package/src/views/cross_reference.ts +74 -0
- package/src/views/cross_reference_editable.ts +113 -0
- package/src/views/editable_block.ts +141 -0
- package/src/views/embed.ts +345 -0
- package/src/views/empty.ts +26 -0
- package/src/views/equation.ts +47 -0
- package/src/views/equation_editable.ts +84 -0
- package/src/views/equation_element.ts +29 -0
- package/src/views/equation_element_editable.ts +21 -0
- package/src/views/figure.ts +84 -0
- package/src/views/figure_editable.ts +361 -0
- package/src/views/figure_element.ts +197 -0
- package/src/views/figure_element_editable.ts +21 -0
- package/src/views/footnote.ts +236 -0
- package/src/views/footnotes_element.ts +54 -0
- package/src/views/general_table_footnote.ts +140 -0
- package/src/views/hero_image.ts +76 -0
- package/src/views/hero_image_editable.ts +21 -0
- package/src/views/image_element.ts +373 -0
- package/src/views/image_element_editable.ts +21 -0
- package/src/views/inline_equation.ts +47 -0
- package/src/views/inline_equation_editable.ts +70 -0
- package/src/views/inline_footnote.ts +264 -0
- package/src/views/inline_footnote_editable.ts +20 -0
- package/src/views/keyword.ts +127 -0
- package/src/views/keyword_group.ts +109 -0
- package/src/views/link.ts +27 -0
- package/src/views/link_editable.ts +169 -0
- package/src/views/list.ts +46 -0
- package/src/views/list_item.ts +26 -0
- package/src/views/paragraph.ts +26 -0
- package/src/views/paragraph_editable.ts +21 -0
- package/src/views/placeholder.ts +35 -0
- package/src/views/placeholder_element.ts +38 -0
- package/src/views/placeholder_element_editable.ts +21 -0
- package/src/views/pullquote_element.ts +106 -0
- package/src/views/pullquote_element_editable.ts +24 -0
- package/src/views/quote_image_editable.ts +84 -0
- package/src/views/section.ts +64 -0
- package/src/views/section_label.ts +20 -0
- package/src/views/section_title.ts +87 -0
- package/src/views/section_title_editable.ts +21 -0
- package/src/views/subtitle.ts +42 -0
- package/src/views/subtitle_editable.ts +20 -0
- package/src/views/subtitles.ts +34 -0
- package/src/views/subtitles_editable.ts +21 -0
- package/src/views/supplement.ts +236 -0
- package/src/views/supplement_editable.ts +20 -0
- package/src/views/supplements.ts +65 -0
- package/src/views/supplements_editable.ts +21 -0
- package/src/views/table_cell.ts +150 -0
- package/src/views/table_element.ts +33 -0
- package/src/views/table_element_editable.ts +21 -0
- package/src/views/table_element_footer.ts +41 -0
- package/src/views/title.ts +46 -0
- package/src/views/title_editable.ts +20 -0
- package/src/views/trans_graphical_abstract.ts +55 -0
- package/src/views/trans_graphical_abstract_editable.ts +21 -0
- package/src/views/translated_abstract.ts +53 -0
- package/src/views/translated_abstract_editable.ts +21 -0
- package/dist/cjs/lib/statistics.js +0 -38
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2023 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import { BibliographyItemAttrs } from '@manuscripts/transform'
|
|
18
|
+
import * as fuzzysort from 'fuzzysort'
|
|
19
|
+
|
|
20
|
+
export interface BibliographyItemSource {
|
|
21
|
+
id: string
|
|
22
|
+
label: string
|
|
23
|
+
search: (query: string, limit: number) => BibliographyItemSearch
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export class BibliographyItemSearch extends Promise<BibliographyItems> {
|
|
27
|
+
controller?: AbortController
|
|
28
|
+
|
|
29
|
+
constructor(
|
|
30
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
31
|
+
executor: (resolve: any, reject: any) => void,
|
|
32
|
+
controller?: AbortController
|
|
33
|
+
) {
|
|
34
|
+
super(executor)
|
|
35
|
+
this.controller = controller
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export type BibliographyItems = {
|
|
40
|
+
items: BibliographyItemAttrs[]
|
|
41
|
+
total: number
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export class DocumentReferenceSource implements BibliographyItemSource {
|
|
45
|
+
public id = 'document'
|
|
46
|
+
public label = 'Document'
|
|
47
|
+
private items: BibliographyItemAttrs[]
|
|
48
|
+
|
|
49
|
+
constructor(items: BibliographyItemAttrs[]) {
|
|
50
|
+
this.items = items
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
search(query: string, limit: number): BibliographyItemSearch {
|
|
54
|
+
if (!query) {
|
|
55
|
+
return BibliographyItemSearch.resolve({
|
|
56
|
+
items: [...this.items].slice(0, limit),
|
|
57
|
+
total: this.items.length,
|
|
58
|
+
})
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const index = [...this.items].map((i) => {
|
|
62
|
+
return {
|
|
63
|
+
item: i,
|
|
64
|
+
title: i.title,
|
|
65
|
+
authors: i.author?.map((a) => `${a.given} ${a.family}`).join(', '),
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
const results = fuzzysort.go(query, index, {
|
|
70
|
+
keys: ['title', 'authors'],
|
|
71
|
+
limit: limit,
|
|
72
|
+
threshold: -1000,
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
return BibliographyItemSearch.resolve({
|
|
76
|
+
items: results.map((r) => r.obj.item),
|
|
77
|
+
total: results.total,
|
|
78
|
+
})
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2024 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import {
|
|
17
|
+
ButtonGroup,
|
|
18
|
+
Category,
|
|
19
|
+
DeleteSolidIcon,
|
|
20
|
+
Dialog,
|
|
21
|
+
EditIcon,
|
|
22
|
+
IconButton,
|
|
23
|
+
PrimaryButton,
|
|
24
|
+
SecondaryButton,
|
|
25
|
+
withFocusTrap,
|
|
26
|
+
} from '@manuscripts/style-guide'
|
|
27
|
+
import {
|
|
28
|
+
BibliographyItemAttrs,
|
|
29
|
+
generateNodeID,
|
|
30
|
+
schema,
|
|
31
|
+
} from '@manuscripts/transform'
|
|
32
|
+
import React, { useMemo, useReducer, useState } from 'react'
|
|
33
|
+
import styled from 'styled-components'
|
|
34
|
+
|
|
35
|
+
import { arrayReducer, attrsReducer } from '../../lib/array-reducer'
|
|
36
|
+
import { cleanItemValues } from '../../lib/utils'
|
|
37
|
+
import { BibliographyItemSource } from './BibliographyItemSource'
|
|
38
|
+
import { CitedItem, CitedItems } from './CitationViewer'
|
|
39
|
+
import { ImportBibliographyModal } from './ImportBibliographyModal'
|
|
40
|
+
import { ReferenceLine } from './ReferenceLine'
|
|
41
|
+
import { ReferenceSearch } from './ReferenceSearch'
|
|
42
|
+
import { ReferencesModal } from './ReferencesModal'
|
|
43
|
+
|
|
44
|
+
const Container = withFocusTrap(styled.div``)
|
|
45
|
+
|
|
46
|
+
const CitedItemActions = styled.div`
|
|
47
|
+
display: flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
margin-left: 12px;
|
|
50
|
+
|
|
51
|
+
svg.remove-icon {
|
|
52
|
+
color: #6e6e6e;
|
|
53
|
+
}
|
|
54
|
+
`
|
|
55
|
+
|
|
56
|
+
const ActionButton = styled(IconButton).attrs({
|
|
57
|
+
size: 24,
|
|
58
|
+
})`
|
|
59
|
+
:disabled {
|
|
60
|
+
background-color: transparent !important;
|
|
61
|
+
border-color: transparent !important;
|
|
62
|
+
color: rgb(255, 255, 255);
|
|
63
|
+
path,
|
|
64
|
+
g {
|
|
65
|
+
fill: ${(props) => props.theme.colors.background.tertiary} !important;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
:not(:disabled):focus,
|
|
69
|
+
:not(:disabled):hover {
|
|
70
|
+
path,
|
|
71
|
+
g {
|
|
72
|
+
fill: ${(props) => props.theme.colors.brand.medium} !important;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
`
|
|
76
|
+
|
|
77
|
+
const EditReferenceButton = styled(ActionButton)`
|
|
78
|
+
margin-right: ${(props) => props.theme.grid.unit * 3}px;
|
|
79
|
+
`
|
|
80
|
+
|
|
81
|
+
const Actions = styled(ButtonGroup)`
|
|
82
|
+
margin: ${(props) => props.theme.grid.unit * 4}px;
|
|
83
|
+
display: flex;
|
|
84
|
+
justify-content: flex-end;
|
|
85
|
+
align-items: center;
|
|
86
|
+
`
|
|
87
|
+
export interface CitationEditorProps {
|
|
88
|
+
query?: string
|
|
89
|
+
rids: string[]
|
|
90
|
+
items: BibliographyItemAttrs[]
|
|
91
|
+
citationCounts: Map<string, number>
|
|
92
|
+
sources: BibliographyItemSource[]
|
|
93
|
+
onCite: (items: BibliographyItemAttrs[]) => void
|
|
94
|
+
onUncite: (id: string) => void
|
|
95
|
+
onSave: (item: BibliographyItemAttrs) => void
|
|
96
|
+
onDelete: (item: BibliographyItemAttrs) => void
|
|
97
|
+
onCancel: () => void
|
|
98
|
+
canEdit: boolean
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
const itemsReducer = attrsReducer<BibliographyItemAttrs>()
|
|
102
|
+
const ridsReducer = arrayReducer<string>()
|
|
103
|
+
|
|
104
|
+
export const CitationEditor: React.FC<CitationEditorProps> = ({
|
|
105
|
+
query,
|
|
106
|
+
rids: $rids,
|
|
107
|
+
items: $items,
|
|
108
|
+
citationCounts,
|
|
109
|
+
sources,
|
|
110
|
+
onSave,
|
|
111
|
+
onDelete,
|
|
112
|
+
onCite,
|
|
113
|
+
onUncite,
|
|
114
|
+
onCancel,
|
|
115
|
+
canEdit,
|
|
116
|
+
}) => {
|
|
117
|
+
const [items, dispatchItems] = useReducer(itemsReducer, $items)
|
|
118
|
+
const [rids, dispatchRids] = useReducer(ridsReducer, $rids)
|
|
119
|
+
const handleSave = (item: BibliographyItemAttrs) => {
|
|
120
|
+
const cleanedItem = cleanItemValues(item)
|
|
121
|
+
onSave(cleanedItem)
|
|
122
|
+
dispatchItems({
|
|
123
|
+
type: 'update',
|
|
124
|
+
items: [cleanedItem],
|
|
125
|
+
})
|
|
126
|
+
if (!rids.includes(item.id)) {
|
|
127
|
+
handleCite([item])
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const handleDelete = (item: BibliographyItemAttrs) => {
|
|
132
|
+
onDelete(item)
|
|
133
|
+
dispatchItems({
|
|
134
|
+
type: 'delete',
|
|
135
|
+
item,
|
|
136
|
+
})
|
|
137
|
+
}
|
|
138
|
+
const handleCite = (items: BibliographyItemAttrs[]) => {
|
|
139
|
+
onCite(items)
|
|
140
|
+
dispatchRids({
|
|
141
|
+
type: 'update',
|
|
142
|
+
items: items.map((i) => i.id),
|
|
143
|
+
})
|
|
144
|
+
}
|
|
145
|
+
const handleUncite = (rid: string) => {
|
|
146
|
+
onUncite(rid)
|
|
147
|
+
dispatchRids({
|
|
148
|
+
type: 'delete',
|
|
149
|
+
item: rid,
|
|
150
|
+
})
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const [deleteDialog, setDeleteDialog] = useState<{
|
|
154
|
+
show: boolean
|
|
155
|
+
id?: string
|
|
156
|
+
}>({ show: false })
|
|
157
|
+
|
|
158
|
+
const [editingForm, setEditingForm] = useState<{
|
|
159
|
+
show: boolean
|
|
160
|
+
item?: BibliographyItemAttrs
|
|
161
|
+
}>({
|
|
162
|
+
show: false,
|
|
163
|
+
})
|
|
164
|
+
|
|
165
|
+
const [searching, setSearching] = useState(false)
|
|
166
|
+
const [importing, setImporting] = useState(false)
|
|
167
|
+
|
|
168
|
+
const handleAdd = () => {
|
|
169
|
+
setSearching(false)
|
|
170
|
+
const item: BibliographyItemAttrs = {
|
|
171
|
+
id: generateNodeID(schema.nodes.bibliography_item),
|
|
172
|
+
type: 'article-journal',
|
|
173
|
+
}
|
|
174
|
+
dispatchItems({
|
|
175
|
+
type: 'update',
|
|
176
|
+
items: [item, ...items],
|
|
177
|
+
})
|
|
178
|
+
setEditingForm({ show: true, item: item })
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
const handleImport = () => {
|
|
182
|
+
setSearching(false)
|
|
183
|
+
setImporting(true)
|
|
184
|
+
}
|
|
185
|
+
const handleSaveImport = (data: BibliographyItemAttrs[]) => {
|
|
186
|
+
data.forEach((item) => {
|
|
187
|
+
const newItem = { ...item }
|
|
188
|
+
newItem.id = generateNodeID(schema.nodes.bibliography_item)
|
|
189
|
+
handleSave(newItem)
|
|
190
|
+
handleCite([newItem])
|
|
191
|
+
})
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
const cited = useMemo(() => {
|
|
195
|
+
return rids.flatMap((rid) => items.filter((i) => i.id === rid))
|
|
196
|
+
}, [rids, items])
|
|
197
|
+
|
|
198
|
+
if (editingForm.show) {
|
|
199
|
+
return (
|
|
200
|
+
<ReferencesModal
|
|
201
|
+
isOpen={editingForm.show}
|
|
202
|
+
onCancel={() => setEditingForm({ show: false })}
|
|
203
|
+
items={items}
|
|
204
|
+
citationCounts={citationCounts}
|
|
205
|
+
item={editingForm.item}
|
|
206
|
+
onSave={handleSave}
|
|
207
|
+
onDelete={handleDelete}
|
|
208
|
+
/>
|
|
209
|
+
)
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
if (importing) {
|
|
213
|
+
return (
|
|
214
|
+
<ImportBibliographyModal
|
|
215
|
+
onCancel={() => setImporting(false)}
|
|
216
|
+
onSave={handleSaveImport}
|
|
217
|
+
/>
|
|
218
|
+
)
|
|
219
|
+
}
|
|
220
|
+
if (searching) {
|
|
221
|
+
return (
|
|
222
|
+
<ReferenceSearch
|
|
223
|
+
sources={sources}
|
|
224
|
+
items={items}
|
|
225
|
+
onAdd={handleAdd}
|
|
226
|
+
onImport={handleImport}
|
|
227
|
+
onCite={(items) => {
|
|
228
|
+
setSearching(false)
|
|
229
|
+
handleCite(items)
|
|
230
|
+
}}
|
|
231
|
+
onCancel={() => setSearching(false)}
|
|
232
|
+
/>
|
|
233
|
+
)
|
|
234
|
+
}
|
|
235
|
+
if (!rids.length) {
|
|
236
|
+
return (
|
|
237
|
+
<ReferenceSearch
|
|
238
|
+
query={query}
|
|
239
|
+
sources={sources}
|
|
240
|
+
items={items}
|
|
241
|
+
onAdd={handleAdd}
|
|
242
|
+
onImport={handleImport}
|
|
243
|
+
onCite={handleCite}
|
|
244
|
+
onCancel={onCancel}
|
|
245
|
+
/>
|
|
246
|
+
)
|
|
247
|
+
}
|
|
248
|
+
return (
|
|
249
|
+
<Container>
|
|
250
|
+
<Dialog
|
|
251
|
+
isOpen={deleteDialog.show}
|
|
252
|
+
category={Category.confirmation}
|
|
253
|
+
header="Remove cited item"
|
|
254
|
+
message="Are you sure you want to remove this cited item? It will still exist in the reference list."
|
|
255
|
+
actions={{
|
|
256
|
+
secondary: {
|
|
257
|
+
action: () => {
|
|
258
|
+
if (deleteDialog.id) {
|
|
259
|
+
handleUncite(deleteDialog.id)
|
|
260
|
+
setDeleteDialog({ show: false })
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
title: 'Remove',
|
|
264
|
+
},
|
|
265
|
+
primary: {
|
|
266
|
+
action: () => setDeleteDialog({ show: false }),
|
|
267
|
+
title: 'Cancel',
|
|
268
|
+
},
|
|
269
|
+
}}
|
|
270
|
+
/>
|
|
271
|
+
<CitedItems>
|
|
272
|
+
{cited.map((item) => (
|
|
273
|
+
<CitedItem key={item.id}>
|
|
274
|
+
<ReferenceLine item={item} />
|
|
275
|
+
<CitedItemActions>
|
|
276
|
+
<EditReferenceButton
|
|
277
|
+
value={item.id}
|
|
278
|
+
disabled={!canEdit}
|
|
279
|
+
onClick={() => setEditingForm({ show: true, item: item })}
|
|
280
|
+
>
|
|
281
|
+
<EditIcon />
|
|
282
|
+
</EditReferenceButton>
|
|
283
|
+
<ActionButton
|
|
284
|
+
disabled={!canEdit}
|
|
285
|
+
onClick={() => setDeleteDialog({ show: true, id: item.id })}
|
|
286
|
+
>
|
|
287
|
+
<DeleteSolidIcon className={'remove-icon'} />
|
|
288
|
+
</ActionButton>
|
|
289
|
+
</CitedItemActions>
|
|
290
|
+
</CitedItem>
|
|
291
|
+
))}
|
|
292
|
+
</CitedItems>
|
|
293
|
+
<Actions>
|
|
294
|
+
<SecondaryButton onClick={onCancel}>Done</SecondaryButton>
|
|
295
|
+
<PrimaryButton disabled={!canEdit} onClick={() => setSearching(true)}>
|
|
296
|
+
Add Citation
|
|
297
|
+
</PrimaryButton>
|
|
298
|
+
</Actions>
|
|
299
|
+
</Container>
|
|
300
|
+
)
|
|
301
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2024 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import { BibliographyItemAttrs } from '@manuscripts/transform'
|
|
18
|
+
import React, { useMemo } from 'react'
|
|
19
|
+
import styled from 'styled-components'
|
|
20
|
+
|
|
21
|
+
import { ReferenceLine } from './ReferenceLine'
|
|
22
|
+
|
|
23
|
+
export const CitedItems = styled.div`
|
|
24
|
+
padding: 0 ${(props) => props.theme.grid.unit * 4}px;
|
|
25
|
+
font-family: ${(props) => props.theme.font.family.sans};
|
|
26
|
+
max-height: 70vh;
|
|
27
|
+
min-height: 100px;
|
|
28
|
+
overflow-y: auto;
|
|
29
|
+
`
|
|
30
|
+
|
|
31
|
+
export const CitedItem = styled.div`
|
|
32
|
+
display: flex;
|
|
33
|
+
padding: ${(props) => props.theme.grid.unit * 4}px 0;
|
|
34
|
+
|
|
35
|
+
&:not(:last-of-type) {
|
|
36
|
+
border-bottom: 1px solid ${(props) => props.theme.colors.border.secondary};
|
|
37
|
+
}
|
|
38
|
+
`
|
|
39
|
+
|
|
40
|
+
export interface CitationViewerProps {
|
|
41
|
+
rids: string[]
|
|
42
|
+
items: BibliographyItemAttrs[]
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export const CitationViewer: React.FC<CitationViewerProps> = ({
|
|
46
|
+
rids,
|
|
47
|
+
items,
|
|
48
|
+
}) => {
|
|
49
|
+
const cited = useMemo(() => {
|
|
50
|
+
return rids.flatMap((rid) => items.filter((i) => i.id === rid))
|
|
51
|
+
}, [rids, items])
|
|
52
|
+
|
|
53
|
+
return (
|
|
54
|
+
<CitedItems>
|
|
55
|
+
{cited.map((item) => (
|
|
56
|
+
<CitedItem key={item.id}>
|
|
57
|
+
<ReferenceLine item={item} />
|
|
58
|
+
</CitedItem>
|
|
59
|
+
))}
|
|
60
|
+
</CitedItems>
|
|
61
|
+
)
|
|
62
|
+
}
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import {
|
|
18
|
+
FormActionsBar,
|
|
19
|
+
FormRow,
|
|
20
|
+
Label,
|
|
21
|
+
outlineStyle,
|
|
22
|
+
PrimaryButton,
|
|
23
|
+
SecondaryButton,
|
|
24
|
+
TextArea,
|
|
25
|
+
} from '@manuscripts/style-guide'
|
|
26
|
+
import { BibliographyItemAttrs } from '@manuscripts/transform'
|
|
27
|
+
import { useFormik } from 'formik'
|
|
28
|
+
import { debounce } from 'lodash'
|
|
29
|
+
import React, {
|
|
30
|
+
KeyboardEvent,
|
|
31
|
+
useCallback,
|
|
32
|
+
useEffect,
|
|
33
|
+
useMemo,
|
|
34
|
+
useRef,
|
|
35
|
+
useState,
|
|
36
|
+
} from 'react'
|
|
37
|
+
import styled, { css } from 'styled-components'
|
|
38
|
+
|
|
39
|
+
import { importBibliographyItems } from '../../lib/references'
|
|
40
|
+
import { ReferenceLine } from './ReferenceLine'
|
|
41
|
+
|
|
42
|
+
export interface ImportBibFormProps {
|
|
43
|
+
onCancel: () => void
|
|
44
|
+
onSave: (data: BibliographyItemAttrs[]) => void
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export const ImportBibliographyForm = ({
|
|
48
|
+
onCancel,
|
|
49
|
+
onSave,
|
|
50
|
+
}: ImportBibFormProps) => {
|
|
51
|
+
const [dragging, setDragging] = useState(false)
|
|
52
|
+
const fileInputRef = useRef<HTMLInputElement>(null)
|
|
53
|
+
const formik = useFormik({
|
|
54
|
+
initialValues: {
|
|
55
|
+
content: '',
|
|
56
|
+
err: '',
|
|
57
|
+
data: [],
|
|
58
|
+
},
|
|
59
|
+
onSubmit: (values, { setSubmitting }) => {
|
|
60
|
+
onSave(values.data)
|
|
61
|
+
setSubmitting(false)
|
|
62
|
+
},
|
|
63
|
+
onReset: onCancel,
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
const setDataField = useCallback(async (fileContent: string) => {
|
|
67
|
+
const NO_CITATION = 'No citation available'
|
|
68
|
+
const ERROR_CITATION = 'Error generating citation'
|
|
69
|
+
try {
|
|
70
|
+
if (!fileContent.trim()) {
|
|
71
|
+
formik.setFieldValue('err', NO_CITATION)
|
|
72
|
+
formik.setFieldValue('data', [])
|
|
73
|
+
return
|
|
74
|
+
}
|
|
75
|
+
const data = await importBibliographyItems(fileContent.trim())
|
|
76
|
+
formik.setFieldValue('data', data ? data : [])
|
|
77
|
+
formik.setFieldValue('err', '')
|
|
78
|
+
} catch (error) {
|
|
79
|
+
console.error('Citation generation error:', error)
|
|
80
|
+
formik.setFieldValue('err', ERROR_CITATION)
|
|
81
|
+
formik.setFieldValue('data', [])
|
|
82
|
+
}
|
|
83
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
84
|
+
}, [])
|
|
85
|
+
|
|
86
|
+
const debouncedGenerateData = useMemo(
|
|
87
|
+
() => debounce(setDataField, 300),
|
|
88
|
+
[setDataField]
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
useEffect(() => {
|
|
92
|
+
debouncedGenerateData(formik.values.content)
|
|
93
|
+
}, [debouncedGenerateData, formik.values.content])
|
|
94
|
+
|
|
95
|
+
const handleDrop = (event: React.DragEvent<HTMLDivElement>) => {
|
|
96
|
+
event.preventDefault()
|
|
97
|
+
setDragging(false)
|
|
98
|
+
const file = event.dataTransfer.files[0]
|
|
99
|
+
if (file) {
|
|
100
|
+
readFileContent(file)
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
105
|
+
const file = event.target.files?.[0]
|
|
106
|
+
if (file) {
|
|
107
|
+
readFileContent(file)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
const readFileContent = (file: File) => {
|
|
112
|
+
const reader = new FileReader()
|
|
113
|
+
reader.onload = (e) => {
|
|
114
|
+
if (e.target?.result) {
|
|
115
|
+
formik.setFieldValue('content', e.target.result)
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
reader.readAsText(file)
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
const handleOnKeyDown = (e: KeyboardEvent<HTMLElement>) => {
|
|
122
|
+
if (e.key === 'Enter' || e.key === ' ') {
|
|
123
|
+
e.preventDefault()
|
|
124
|
+
fileInputRef?.current?.click()
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
return (
|
|
129
|
+
<form onSubmit={formik.handleSubmit} onReset={formik.handleReset}>
|
|
130
|
+
<FormRow>
|
|
131
|
+
<DropContainer
|
|
132
|
+
tabIndex={0}
|
|
133
|
+
role="button"
|
|
134
|
+
onDrop={handleDrop}
|
|
135
|
+
onDragOver={(e) => {
|
|
136
|
+
e.preventDefault()
|
|
137
|
+
setDragging(true)
|
|
138
|
+
}}
|
|
139
|
+
onDragLeave={() => setDragging(false)}
|
|
140
|
+
onKeyDown={handleOnKeyDown}
|
|
141
|
+
active={dragging}
|
|
142
|
+
>
|
|
143
|
+
<input
|
|
144
|
+
id="file"
|
|
145
|
+
name="file"
|
|
146
|
+
type="file"
|
|
147
|
+
ref={fileInputRef}
|
|
148
|
+
onChange={handleFileChange}
|
|
149
|
+
style={{ display: 'none' }}
|
|
150
|
+
/>
|
|
151
|
+
<Label htmlFor="file">
|
|
152
|
+
Drag & Drop or Click here to upload a file.
|
|
153
|
+
</Label>
|
|
154
|
+
</DropContainer>
|
|
155
|
+
</FormRow>
|
|
156
|
+
<FormRow>
|
|
157
|
+
<Label htmlFor="content">
|
|
158
|
+
Alternatively, you can directly Copy&Paste below, the text of the
|
|
159
|
+
bibliography items.
|
|
160
|
+
</Label>
|
|
161
|
+
<TextArea
|
|
162
|
+
id="content"
|
|
163
|
+
name="content"
|
|
164
|
+
rows={6}
|
|
165
|
+
value={formik.values.content}
|
|
166
|
+
onChange={formik.handleChange}
|
|
167
|
+
></TextArea>
|
|
168
|
+
</FormRow>
|
|
169
|
+
|
|
170
|
+
<Preview>
|
|
171
|
+
{formik.values.err}
|
|
172
|
+
{formik.values.data.map((item: BibliographyItemAttrs) => (
|
|
173
|
+
<ReferenceLine item={item} key={item.id} />
|
|
174
|
+
))}
|
|
175
|
+
</Preview>
|
|
176
|
+
|
|
177
|
+
<FormActionsBar>
|
|
178
|
+
<SecondaryButton type="reset">Cancel</SecondaryButton>
|
|
179
|
+
<PrimaryButton
|
|
180
|
+
type="submit"
|
|
181
|
+
disabled={
|
|
182
|
+
!formik.dirty || formik.isSubmitting || !formik.values.data.length
|
|
183
|
+
}
|
|
184
|
+
>
|
|
185
|
+
Save
|
|
186
|
+
</PrimaryButton>
|
|
187
|
+
</FormActionsBar>
|
|
188
|
+
</form>
|
|
189
|
+
)
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
const Preview = styled.div`
|
|
193
|
+
display: flex;
|
|
194
|
+
flex-direction: column;
|
|
195
|
+
gap: ${(props) => 4 * props.theme.grid.unit}px;
|
|
196
|
+
min-height: 50px;
|
|
197
|
+
margin-top: ${(props) => 4 * props.theme.grid.unit}px;
|
|
198
|
+
margin-bottom: ${(props) => props.theme.grid.unit}px;
|
|
199
|
+
`
|
|
200
|
+
|
|
201
|
+
const activeBoxStyle = css`
|
|
202
|
+
background: #f2fbfc;
|
|
203
|
+
border: 1px dashed #bce7f6;
|
|
204
|
+
`
|
|
205
|
+
|
|
206
|
+
const DropContainer = styled.div<{ active: boolean }>`
|
|
207
|
+
background: ${(props) => props.theme.colors.background.secondary};
|
|
208
|
+
border: 1px dashed ${(props) => props.theme.colors.border.secondary};
|
|
209
|
+
box-sizing: border-box;
|
|
210
|
+
border-radius: ${(props) => props.theme.grid.radius.default};
|
|
211
|
+
cursor: pointer;
|
|
212
|
+
${({ active }) => active && activeBoxStyle};
|
|
213
|
+
|
|
214
|
+
&:hover {
|
|
215
|
+
${activeBoxStyle}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
& label {
|
|
219
|
+
width: 100%;
|
|
220
|
+
height: 80px;
|
|
221
|
+
display: flex;
|
|
222
|
+
align-items: center;
|
|
223
|
+
justify-content: center;
|
|
224
|
+
text-align: center;
|
|
225
|
+
font-size: ${(props) => props.theme.font.size.normal};
|
|
226
|
+
line-height: ${(props) => props.theme.font.lineHeight.large};
|
|
227
|
+
font-family: ${(props) => props.theme.font.family.Lato};
|
|
228
|
+
color: ${(props) => props.theme.colors.text.onLight};
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
${outlineStyle}
|
|
232
|
+
`
|