react-markdown-table-ts 1.1.1 → 1.1.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -4
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  | `'light'` theme | `'dark'` theme |
12
12
 
13
13
  ## Overview
14
- This library provides a React component for generating and displaying formatted Markdown tables with syntax highlighting. The core component is `MarkdownTable` which converts 2D array data into properly formatted Markdown table syntax.
14
+ This library provides a React component for generating and displaying formatted Markdown tables with syntax highlighting. The core component is `MarkdownTable` which converts 2D array data into properly formatted Markdown table syntax. Columns of variable width maintain consistent spacing across all rows, ensuring vertical alignment of delimiters. For syntax highlighting and line numbering, Prism.js is used within a `<pre>` HTML element.
15
15
 
16
16
  ## API
17
17
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-markdown-table-ts",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A React component that converts structured data into Markdown table syntax and displays it within a `<pre>` tag.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -81,9 +81,6 @@
81
81
  "typescript": "^5.1.6"
82
82
  },
83
83
  "dependencies": {
84
- "@emotion/react": "^11.13.5",
85
- "@emotion/styled": "^11.13.5",
86
- "@storybook/react": "^8.4.5",
87
84
  "prismjs": "^1.29.0"
88
85
  }
89
86
  }