@simoncomputing/mui-bueno-v2 0.25.13 → 0.25.15

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simoncomputing/mui-bueno-v2",
3
3
  "private": false,
4
- "version": "0.25.13",
4
+ "version": "0.25.15",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
7
7
  "module": "./dist/index.es.js",
@@ -1,19 +0,0 @@
1
- import { Citation } from '../../../../../../@types';
2
- export type DiffCitationTableProps = {
3
- beforeCitations: Citation[];
4
- afterCitations: Citation[];
5
- /**
6
- * Intended for use in modals.
7
- *
8
- * Renders as a table with only Change Type, Type, and Title columns.
9
- * Title is not displayed (table only)
10
- */
11
- condenseTable?: boolean;
12
- };
13
- /**
14
- * Compare set of table data (beforeCitations vs afterCitations).
15
- *
16
- * Use in place of `CitationManager` when comparing diff
17
- */
18
- export declare const DiffCitationTable: (props: DiffCitationTableProps) => import("react/jsx-runtime").JSX.Element;
19
- export default DiffCitationTable;