svelte-common 4.19.3 → 4.19.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/README.md CHANGED
@@ -61,13 +61,14 @@ Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
61
61
 
62
62
  ## sortable
63
63
 
64
- Add sortable toggle button with img element to a node.
64
+ Add sortable toggle button to a node.
65
65
  Synchronizes store value with node "aria-sort" attribute.
66
66
 
67
67
  ### Parameters
68
68
 
69
- * `th` **[Node](https://developer.mozilla.org/docs/Web/API/Node/nextSibling)** header node
69
+ * `th`  
70
70
  * `store`  
71
+ * `the` **[Node](https://developer.mozilla.org/docs/Web/API/Node/nextSibling)** header node
71
72
  * `to` **WritableStore** keep in sync with sorting properties
72
73
 
73
74
  ## sorter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-common",
3
- "version": "4.19.3",
3
+ "version": "4.19.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,17 +39,17 @@
39
39
  "@semantic-release/commit-analyzer": "^9.0.2",
40
40
  "@semantic-release/exec": "^6.0.3",
41
41
  "@semantic-release/release-notes-generator": "^10.0.3",
42
- "@sveltejs/vite-plugin-svelte": "^1.0.4",
42
+ "@sveltejs/vite-plugin-svelte": "^1.0.5",
43
43
  "ava": "^4.3.3",
44
44
  "documentation": "^14.0.0",
45
- "mf-styling": "^1.7.8",
45
+ "mf-styling": "^1.7.13",
46
46
  "npm-pkgbuild": "^10.14.8",
47
47
  "semantic-release": "^19.0.5",
48
48
  "stylelint": "^14.11.0",
49
49
  "stylelint-config-standard": "^28.0.0",
50
- "svelte": "^3.49.0",
50
+ "svelte": "^3.50.0",
51
51
  "testcafe": "^2.0.0",
52
- "vite": "^3.0.9"
52
+ "vite": "^3.1.0"
53
53
  },
54
54
  "optionalDependencies": {
55
55
  "mf-hosting": "^1.7.3"
@@ -3,7 +3,17 @@
3
3
 
4
4
  export let id;
5
5
 
6
+ let header, content;
6
7
  const tabs = getContext("TABS");
8
+ tabs.tab[id] = { header, content };
7
9
  </script>
8
10
 
9
- <slot />
11
+ {#if false}
12
+ <div bind:this={header}>
13
+ <slot name="header" />
14
+ </div>
15
+
16
+ <div bind:this={content}>
17
+ <slot />
18
+ </div>
19
+ {/if}
@@ -1,9 +1,14 @@
1
1
  <script>
2
2
  import { setContext } from "svelte";
3
3
 
4
- const tabs = {};
4
+ const tabs = { tab: {}};
5
5
 
6
6
  setContext("TABS", tabs);
7
7
  </script>
8
8
 
9
9
  <slot />
10
+
11
+ {#each Object.entries(tabs.tab) as t}
12
+ {t[0]}
13
+ <svelte:component this={t[1].header}/>
14
+ {/each}
package/src/sorting.mjs CHANGED
@@ -20,7 +20,7 @@ export function toggleOrderBy(orderBy) {
20
20
  }
21
21
 
22
22
  /**
23
- * Add sortable toggle button with img element to a node.
23
+ * Add sortable toggle button to a node.
24
24
  * Synchronizes store value with node "aria-sort" attribute.
25
25
  * @param {Node} the header node
26
26
  * @param {WritableStore} to keep in sync with sorting properties
@@ -30,12 +30,13 @@ export function sortable(th, store) {
30
30
  th.setAttribute("aria-sort", orderBy[th.id] || SORT_NONE)
31
31
  );
32
32
 
33
+ if (!th.getAttribute("aria-sort")) {
34
+ th.setAttribute("aria-sort", SORT_NONE);
35
+ }
36
+
33
37
  const button = document.createElement("button");
34
38
  button.setAttribute("aria-label", `toggle sort of ${th.id}`);
35
- const img = document.createElement("img");
36
- //img.setAttribute("alt", "sorting order indicator");
37
-
38
- button.appendChild(img);
39
+ button.setAttribute("class", "alter-sorting");
39
40
 
40
41
  button.onclick = () => {
41
42
  const orderBy = {};
@@ -53,9 +54,7 @@ export function sortable(th, store) {
53
54
  }
54
55
  }
55
56
 
56
- if (sort === SORT_NONE) {
57
- delete orderBy[peer.id];
58
- } else {
57
+ if (sort !== SORT_NONE) {
59
58
  orderBy[peer.id] = sort;
60
59
  }
61
60
  }