react-markdown-table-ts 0.1.5 → 0.1.7
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 +2014 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1997 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/types.d.ts +18 -5
- package/package.json +5 -2
- package/styles/prism-line-numbers.css +40 -0
- package/styles/prism.css +140 -0
- package/styles/themes/prism-coy.css +219 -0
- package/styles/themes/prism-dark.css +129 -0
- package/styles/themes/prism-funky.css +130 -0
- package/styles/themes/prism-okaidia.css +123 -0
- package/styles/themes/prism-solarizedlight.css +150 -0
- package/styles/themes/prism-tomorrow.css +122 -0
- package/styles/themes/prism.css +140 -0
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 with syntax highlighting and line numbers.
|
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
|
*/
|