react-diff-viewer-continued 3.3.1 → 3.3.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.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.3.2](https://github.com/aeolun/react-diff-viewer-continued/compare/v3.3.1...v3.3.2) (2024-01-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* correct the default value of `useDarkTheme` in README ([#39](https://github.com/aeolun/react-diff-viewer-continued/issues/39)) ([8233d02](https://github.com/aeolun/react-diff-viewer-continued/commit/8233d02a2d90e6c49a2ecd183d46982b9905d7c3))
|
|
7
|
+
|
|
1
8
|
## [3.3.1](https://github.com/aeolun/react-diff-viewer-continued/compare/v3.3.0...v3.3.1) (2023-10-18)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ class Diff extends PureComponent {
|
|
|
84
84
|
| extraLinesSurroundingDiff | `number` | `3` | Number of extra unchanged lines surrounding the diff. Works along with `showDiffOnly`. |
|
|
85
85
|
| codeFoldMessageRenderer | `function` | `Expand {number} of lines ...` | Render Prop API to render code fold message. |
|
|
86
86
|
| styles | `object` | `{}` | To override style variables and styles. Learn more about [overriding styles](#overriding-styles) |
|
|
87
|
-
| useDarkTheme | `boolean` | `
|
|
87
|
+
| useDarkTheme | `boolean` | `false` | To enable/disable dark theme. |
|
|
88
88
|
| leftTitle | `string` | `undefined` | Column title for left section of the diff in split view. This will be used as the only title in inline view. |
|
|
89
89
|
| rightTitle | `string` | `undefined` | Column title for right section of the diff in split view. This will be ignored in inline view. |
|
|
90
90
|
| linesOffset | `number` | `0` | Number to start count code lines from. |
|