@e-llm-studio/citation 0.0.241-beta.1 → 0.0.242
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/README.md +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1232,6 +1232,8 @@ import { CodeCitation } from '@e-llm-studio/citation/CodeCitation'
|
|
|
1232
1232
|
isDarkModeEnabled={false}
|
|
1233
1233
|
showThemeToggle={true}
|
|
1234
1234
|
editorHeight={400}
|
|
1235
|
+
repoName="ExampleCodeRepo"
|
|
1236
|
+
branchName="dev"
|
|
1235
1237
|
/>
|
|
1236
1238
|
```
|
|
1237
1239
|
|
|
@@ -1287,6 +1289,8 @@ const highlightRanges = [
|
|
|
1287
1289
|
| `showFullscreenIcon` | `boolean` | Display fullscreen toggle button |
|
|
1288
1290
|
| `showFileSummaryIButton` | `boolean` | Display file summary info button |
|
|
1289
1291
|
| `isHighlightingEnabled` | `boolean` | Enable code highlighting |
|
|
1292
|
+
| `repoName` | `string` | used to show the repo name in the codecitation popup |
|
|
1293
|
+
| `branchName` | `string` | used to show the branch name in the codecitation popup |
|
|
1290
1294
|
|
|
1291
1295
|
---
|
|
1292
1296
|
|