@manuscripts/style-guide 1.11.2 → 1.11.3-LEAN-3514.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.
Files changed (43) hide show
  1. package/dist/cjs/components/icons/index.js +5 -1
  2. package/dist/cjs/index.js +2 -1
  3. package/dist/es/components/icons/index.js +2 -0
  4. package/dist/es/index.js +2 -1
  5. package/dist/types/components/icons/index.d.ts +2 -0
  6. package/dist/types/index.d.ts +2 -1
  7. package/package.json +2 -2
  8. package/dist/cjs/components/References/BibliographyItemSource.js +0 -91
  9. package/dist/cjs/components/References/CitationEditor.js +0 -143
  10. package/dist/cjs/components/References/CitationViewer.js +0 -69
  11. package/dist/cjs/components/References/ReferenceForm.js +0 -414
  12. package/dist/cjs/components/References/ReferenceLine.js +0 -52
  13. package/dist/cjs/components/References/ReferenceSearch.js +0 -124
  14. package/dist/cjs/components/References/ReferenceSearchResults.js +0 -68
  15. package/dist/cjs/components/References/ReferenceSearchResultsPlaceholder.js +0 -43
  16. package/dist/cjs/components/References/ReferenceSearchSection.js +0 -118
  17. package/dist/cjs/components/References/ReferencesModal.js +0 -226
  18. package/dist/cjs/components/References/SearchInput.js +0 -103
  19. package/dist/cjs/components/References/index.js +0 -20
  20. package/dist/es/components/References/BibliographyItemSource.js +0 -64
  21. package/dist/es/components/References/CitationEditor.js +0 -113
  22. package/dist/es/components/References/CitationViewer.js +0 -39
  23. package/dist/es/components/References/ReferenceForm.js +0 -384
  24. package/dist/es/components/References/ReferenceLine.js +0 -42
  25. package/dist/es/components/References/ReferenceSearch.js +0 -94
  26. package/dist/es/components/References/ReferenceSearchResults.js +0 -61
  27. package/dist/es/components/References/ReferenceSearchResultsPlaceholder.js +0 -36
  28. package/dist/es/components/References/ReferenceSearchSection.js +0 -88
  29. package/dist/es/components/References/ReferencesModal.js +0 -195
  30. package/dist/es/components/References/SearchInput.js +0 -73
  31. package/dist/es/components/References/index.js +0 -4
  32. package/dist/types/components/References/BibliographyItemSource.d.ts +0 -38
  33. package/dist/types/components/References/CitationEditor.d.ts +0 -18
  34. package/dist/types/components/References/CitationViewer.d.ts +0 -24
  35. package/dist/types/components/References/ReferenceForm.d.ts +0 -35
  36. package/dist/types/components/References/ReferenceLine.d.ts +0 -10
  37. package/dist/types/components/References/ReferenceSearch.d.ts +0 -26
  38. package/dist/types/components/References/ReferenceSearchResults.d.ts +0 -26
  39. package/dist/types/components/References/ReferenceSearchResultsPlaceholder.d.ts +0 -2
  40. package/dist/types/components/References/ReferenceSearchSection.d.ts +0 -25
  41. package/dist/types/components/References/ReferencesModal.d.ts +0 -14
  42. package/dist/types/components/References/SearchInput.d.ts +0 -18
  43. 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';