system-dashboard-frontend 1.34.4 → 1.34.6

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": "system-dashboard-frontend",
3
- "version": "1.34.4",
3
+ "version": "1.34.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -26,13 +26,13 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@kronos-integration/svelte-components": "^2.4.93",
29
- "mf-styling": "^1.7.54",
29
+ "mf-styling": "^1.7.56",
30
30
  "reader-line-iterator": "^1.1.5",
31
31
  "svelte-command": "^1.1.39",
32
- "svelte-common": "^4.22.17",
32
+ "svelte-common": "^4.22.19",
33
33
  "svelte-guard-history-router": "^5.5.34",
34
34
  "svelte-log-view": "^4.2.21",
35
- "svelte-session-manager": "^2.2.2",
35
+ "svelte-session-manager": "^2.2.4",
36
36
  "svelte-websocket-store": "^1.1.33"
37
37
  },
38
38
  "devDependencies": {
@@ -48,7 +48,7 @@
48
48
  "vite": "^4.2.1"
49
49
  },
50
50
  "optionalDependencies": {
51
- "mf-hosting-frontend": "^1.9.0"
51
+ "mf-hosting-frontend": "^1.9.2"
52
52
  },
53
53
  "repository": {
54
54
  "type": "git",
@@ -5,7 +5,6 @@
5
5
 
6
6
  const route = router.route;
7
7
  const nis = $route.value;
8
-
9
8
  </script>
10
9
 
11
10
  <table class="bordered striped hoverable">
@@ -19,10 +19,20 @@
19
19
  <tr>
20
20
  <th id="unit" use:sortable={sortBy}>Unit</th>
21
21
  <th id="next" use:sortable={sortBy}
22
- >Next<input bind:value={$filterBy.next} placeholder="filter next" /></th
22
+ >Next<label
23
+ ><input
24
+ bind:value={$filterBy.next}
25
+ placeholder="filter next"
26
+ /></label
27
+ ></th
23
28
  >
24
29
  <th id="last" use:sortable={sortBy}
25
- >Last<input bind:value={$filterBy.last} placeholder="filter last" /></th
30
+ >Last<label
31
+ ><input
32
+ bind:value={$filterBy.last}
33
+ placeholder="filter last"
34
+ /></label
35
+ ></th
26
36
  >
27
37
  <th id="activates" use:sortable={sortBy}>Activates</th>
28
38
  </tr>
@@ -15,7 +15,14 @@
15
15
  >Unit<input bind:value={$filterBy.unit} placeholder="filter unit" /></th
16
16
  >
17
17
  <th id="load" use:sortable={sortBy}>Load</th>
18
- <th id="active" use:sortable={sortBy}>Active<input bind:value={$filterBy.active} placeholder="filter active" /></th>
18
+ <th id="active" use:sortable={sortBy}
19
+ >Active<label
20
+ ><input
21
+ bind:value={$filterBy.active}
22
+ placeholder="filter active"
23
+ /></label
24
+ ></th
25
+ >
19
26
  <th id="sub" use:sortable={sortBy}>Sub</th>
20
27
  <th id="description" use:sortable={sortBy}>Description</th>
21
28
  </tr>