svelte-log-view 5.1.2 → 5.1.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-log-view",
3
- "version": "5.1.2",
3
+ "version": "5.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -45,10 +45,10 @@
45
45
  "@sveltejs/vite-plugin-svelte": "^3.1.0",
46
46
  "documentation": "^14.0.3",
47
47
  "mf-styling": "^3.1.6",
48
- "npm-pkgbuild": "^15.3.15",
48
+ "npm-pkgbuild": "^15.3.16",
49
49
  "reader-line-iterator": "^1.2.0",
50
50
  "semantic-release": "^23.1.1",
51
- "svelte": "^5.0.0-next.136",
51
+ "svelte": "^5.0.0-next.140",
52
52
  "testcafe": "^3.6.0",
53
53
  "vite": "^5.2.11",
54
54
  "vite-plugin-compression2": "^1.1.1"
@@ -73,7 +73,7 @@
73
73
  "${install.dir}": "build/"
74
74
  },
75
75
  "api": "api/log",
76
- "csp.connect-src": "connect-src https://mocked-log-provider.markus-felten.workers.dev/;",
76
+ "csp.connect-src": "connect-src https://mocked-log-provider.markus-felten.workers.dev/ {{http.origin}} self;",
77
77
  "example": true,
78
78
  "frontend": true
79
79
  },
@@ -48,6 +48,7 @@
48
48
  selected = entries.length - 1;
49
49
  start = entries.length - visibleRows;
50
50
  }
51
+
51
52
  if (selected < 0) {
52
53
  const cursor = entries[0];
53
54