@manuscripts/style-guide 1.8.4-LEAN-3478 → 1.8.4-LEAN-3514.2

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.
Files changed (45) hide show
  1. package/dist/cjs/components/icons/index.js +5 -1
  2. package/dist/cjs/index.js +2 -1
  3. package/dist/cjs/lib/capabilities.js +6 -6
  4. package/dist/es/components/icons/index.js +2 -0
  5. package/dist/es/index.js +2 -1
  6. package/dist/es/lib/capabilities.js +6 -6
  7. package/dist/types/components/icons/index.d.ts +2 -0
  8. package/dist/types/index.d.ts +2 -1
  9. package/package.json +2 -2
  10. package/dist/cjs/components/References/BibliographyItemSource.js +0 -91
  11. package/dist/cjs/components/References/CitationEditor.js +0 -143
  12. package/dist/cjs/components/References/CitationViewer.js +0 -69
  13. package/dist/cjs/components/References/ReferenceForm.js +0 -414
  14. package/dist/cjs/components/References/ReferenceLine.js +0 -52
  15. package/dist/cjs/components/References/ReferenceSearch.js +0 -124
  16. package/dist/cjs/components/References/ReferenceSearchResults.js +0 -68
  17. package/dist/cjs/components/References/ReferenceSearchResultsPlaceholder.js +0 -43
  18. package/dist/cjs/components/References/ReferenceSearchSection.js +0 -118
  19. package/dist/cjs/components/References/ReferencesModal.js +0 -226
  20. package/dist/cjs/components/References/SearchInput.js +0 -103
  21. package/dist/cjs/components/References/index.js +0 -20
  22. package/dist/es/components/References/BibliographyItemSource.js +0 -64
  23. package/dist/es/components/References/CitationEditor.js +0 -113
  24. package/dist/es/components/References/CitationViewer.js +0 -39
  25. package/dist/es/components/References/ReferenceForm.js +0 -384
  26. package/dist/es/components/References/ReferenceLine.js +0 -42
  27. package/dist/es/components/References/ReferenceSearch.js +0 -94
  28. package/dist/es/components/References/ReferenceSearchResults.js +0 -61
  29. package/dist/es/components/References/ReferenceSearchResultsPlaceholder.js +0 -36
  30. package/dist/es/components/References/ReferenceSearchSection.js +0 -88
  31. package/dist/es/components/References/ReferencesModal.js +0 -195
  32. package/dist/es/components/References/SearchInput.js +0 -73
  33. package/dist/es/components/References/index.js +0 -4
  34. package/dist/types/components/References/BibliographyItemSource.d.ts +0 -38
  35. package/dist/types/components/References/CitationEditor.d.ts +0 -18
  36. package/dist/types/components/References/CitationViewer.d.ts +0 -24
  37. package/dist/types/components/References/ReferenceForm.d.ts +0 -35
  38. package/dist/types/components/References/ReferenceLine.d.ts +0 -10
  39. package/dist/types/components/References/ReferenceSearch.d.ts +0 -26
  40. package/dist/types/components/References/ReferenceSearchResults.d.ts +0 -26
  41. package/dist/types/components/References/ReferenceSearchResultsPlaceholder.d.ts +0 -2
  42. package/dist/types/components/References/ReferenceSearchSection.d.ts +0 -25
  43. package/dist/types/components/References/ReferencesModal.d.ts +0 -14
  44. package/dist/types/components/References/SearchInput.d.ts +0 -18
  45. package/dist/types/components/References/index.d.ts +0 -4
@@ -1,25 +0,0 @@
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
- import { BibliographyItem } from '@manuscripts/json-schema';
17
- import React from 'react';
18
- import { BibliographyItemSource } from './BibliographyItemSource';
19
- export declare const Arrow: import("styled-components").StyledComponent<React.SFC<React.SVGAttributes<SVGElement>>, import("styled-components").DefaultTheme, {}, never>;
20
- export declare const ReferenceSearchSection: React.FC<{
21
- query: string;
22
- source: BibliographyItemSource;
23
- isSelected: (item: BibliographyItem) => boolean;
24
- onSelect: (item: BibliographyItem) => void;
25
- }>;
@@ -1,14 +0,0 @@
1
- import { BibliographyItem } from '@manuscripts/json-schema';
2
- import React from 'react';
3
- import { ReferenceFormValues } from './ReferenceForm';
4
- export declare const normalize: (item: BibliographyItem) => ReferenceFormValues;
5
- export interface ReferencesModalProps {
6
- isOpen: boolean;
7
- onCancel: () => void;
8
- items: BibliographyItem[];
9
- item?: BibliographyItem;
10
- citationCounts: Map<string, number>;
11
- onSave: (item: BibliographyItem) => void;
12
- onDelete: (item: BibliographyItem) => void;
13
- }
14
- export declare const ReferencesModal: React.FC<ReferencesModalProps>;
@@ -1,18 +0,0 @@
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
- import React, { InputHTMLAttributes } from 'react';
17
- export declare const SearchWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
18
- export declare const SearchInput: React.FC<InputHTMLAttributes<HTMLInputElement>>;
@@ -1,4 +0,0 @@
1
- export * from './CitationEditor';
2
- export * from './CitationViewer';
3
- export * from './ReferencesModal';
4
- export * from './BibliographyItemSource';