svelte-log-view 6.3.63 → 6.3.65

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 CHANGED
@@ -1,10 +1,8 @@
1
1
  [![Svelte v5](https://img.shields.io/badge/svelte-v5-orange.svg)](https://svelte.dev)
2
2
  [![npm](https://img.shields.io/npm/v/svelte-log-view.svg)](https://www.npmjs.com/package/svelte-log-view)
3
- [![License](https://img.shields.io/badge/License-0BSD-blue.svg)](https://spdx.org/licenses/0BSD.html)
4
3
  [![bundlejs](https://deno.bundlejs.com/?q=svelte-log-view\&badge=detailed)](https://bundlejs.com/?q=svelte-log-view)
5
4
  [![downloads](http://img.shields.io/npm/dm/svelte-log-view.svg?style=flat-square)](https://npmjs.org/package/svelte-log-view)
6
- [![GitHub Issues](https://img.shields.io/github/issues/arlac77/svelte-log-view.svg?style=flat-square)](https://github.com/arlac77/svelte-log-view/issues)
7
- [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Fsvelte-log-view%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/arlac77/svelte-log-view/goto)
5
+ [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](git+https://github.com/arlac77/svelte-log-view.git)
8
6
  [![Styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
9
7
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
10
8
  [![Known Vulnerabilities](https://snyk.io/test/github/arlac77/svelte-log-view/badge.svg)](https://snyk.io/test/github/arlac77/svelte-log-view)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-log-view",
3
- "version": "6.3.63",
3
+ "version": "6.3.65",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -46,13 +46,13 @@
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.2.20",
49
+ "mf-styling": "^3.2.24",
50
50
  "npm-pkgbuild": "^19.1.2",
51
51
  "playwright": "^1.57.0",
52
52
  "reader-line-iterator": "^1.2.3",
53
53
  "semantic-release": "^25.0.2",
54
54
  "svelte": "^5.46.0",
55
- "vite": "^7.2.7",
55
+ "vite": "^7.3.0",
56
56
  "vite-plugin-compression2": "^2.4.0"
57
57
  },
58
58
  "peerDependencies": {
@@ -22,7 +22,7 @@
22
22
  row
23
23
  } = $props();
24
24
 
25
- let entries = [];
25
+ const entries = [];
26
26
  let visible = $state(entries);
27
27
  let content;
28
28
 
@@ -121,10 +121,12 @@
121
121
  setFollow(false);
122
122
  setSelected(selected + visibleRows);
123
123
  break;
124
+ case "End":
124
125
  case "G":
125
126
  setFollow(false);
126
127
  setSelected(entries.length - 1);
127
128
  break;
129
+ case "Home":
128
130
  case "g":
129
131
  setFollow(false);
130
132
  setSelected(0);