svelte-log-view 6.4.0 → 6.4.1
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/package.json +2 -2
- package/src/LogView.svelte +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-log-view",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
47
47
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
48
48
|
"documentation": "^14.0.3",
|
|
49
|
-
"mf-styling": "^3.
|
|
49
|
+
"mf-styling": "^3.3.0",
|
|
50
50
|
"npm-pkgbuild": "^19.1.2",
|
|
51
51
|
"playwright": "^1.57.0",
|
|
52
52
|
"reader-line-iterator": "^1.2.3",
|
package/src/LogView.svelte
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
let {
|
|
16
16
|
source, /** data source */
|
|
17
|
-
visibleRows = $bindable(24),
|
|
17
|
+
visibleRows = $bindable(24), /** number of rows in the dom */
|
|
18
18
|
offsetRows = $bindable(0), /** number of rows from the top to the 1st. visible */
|
|
19
19
|
follow = $bindable(true),
|
|
20
20
|
selected = $bindable(0),
|