svelte-common 4.19.5 → 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 +1 -1
- package/package.json +4 -4
- package/src/components/Tab.svelte +11 -1
- package/src/components/Tabs.svelte +6 -1
- package/src/sorting.mjs +1 -3
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
|
|
|
61
61
|
|
|
62
62
|
## sortable
|
|
63
63
|
|
|
64
|
-
Add sortable toggle button
|
|
64
|
+
Add sortable toggle button to a node.
|
|
65
65
|
Synchronizes store value with node "aria-sort" attribute.
|
|
66
66
|
|
|
67
67
|
### Parameters
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-common",
|
|
3
|
-
"version": "4.19.
|
|
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.
|
|
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.
|
|
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
50
|
"svelte": "^3.50.0",
|
|
51
51
|
"testcafe": "^2.0.0",
|
|
52
|
-
"vite": "^3.0
|
|
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
|
-
|
|
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}
|