react-markdown-table-ts 0.1.7 → 0.1.9
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/index.cjs.js +7 -2011
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +8 -1994
- package/dist/index.esm.js.map +1 -1
- package/dist/types.d.ts +6 -18
- package/package.json +68 -506
- package/styles/prism-line-numbers.css +0 -40
- package/styles/prism.css +0 -140
- package/styles/themes/prism-coy.css +0 -219
- package/styles/themes/prism-dark.css +0 -129
- package/styles/themes/prism-funky.css +0 -130
- package/styles/themes/prism-okaidia.css +0 -123
- package/styles/themes/prism-solarizedlight.css +0 -150
- package/styles/themes/prism-tomorrow.css +0 -122
- package/styles/themes/prism.css +0 -140
package/dist/index.d.ts
CHANGED
@@ -2,7 +2,7 @@ import React from 'react';
|
|
2
2
|
import { MarkdownTableProps, TableRow } from './types';
|
3
3
|
import { MarkdownTableError } from './errors';
|
4
4
|
/**
|
5
|
-
* React component that generates and displays Markdown table syntax
|
5
|
+
* React component that generates and displays Markdown table syntax.
|
6
6
|
* @param props - The input parameters for table generation.
|
7
7
|
* @returns A <pre> element containing the Markdown table syntax or an error message.
|
8
8
|
*/
|