@poveste/plugin-svelte 0.5.1 → 0.5.2
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.
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
export let id = null
|
|
6
6
|
export let icon = null
|
|
7
7
|
export let iconColor = null
|
|
8
|
-
//
|
|
9
|
-
//
|
|
8
|
+
// Absorbs the prop; collection never renders variant children. `export const`
|
|
9
|
+
// (the compiler's suggestion) would make passing one an error.
|
|
10
|
+
// svelte-ignore export_let_unused
|
|
10
11
|
export let initState = null
|
|
11
12
|
|
|
12
13
|
const story = getContext('__pvtStory')
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poveste/plugin-svelte",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.2",
|
|
5
5
|
"description": "Poveste plugin for Svelte 5 and SvelteKit support",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Sorin Gitlan"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@sveltejs/kit": "^2.53.0",
|
|
29
29
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
30
30
|
"svelte": "^5.46.4",
|
|
31
|
-
"poveste": "^0.5.
|
|
31
|
+
"poveste": "^0.5.2"
|
|
32
32
|
},
|
|
33
33
|
"peerDependenciesMeta": {
|
|
34
34
|
"@sveltejs/kit": {
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"globby": "^14.0.2",
|
|
41
41
|
"launch-editor": "^2.9.1",
|
|
42
42
|
"pathe": "^1.1.2",
|
|
43
|
-
"@poveste/controls": "^0.5.
|
|
44
|
-
"@poveste/
|
|
45
|
-
"@poveste/
|
|
43
|
+
"@poveste/controls": "^0.5.2",
|
|
44
|
+
"@poveste/vendors": "^0.5.2",
|
|
45
|
+
"@poveste/shared": "^0.5.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"svelte-preprocess": "^6.0.3",
|
|
55
55
|
"typescript": "5.6.3",
|
|
56
56
|
"vite": "^8.0.0",
|
|
57
|
-
"poveste": "0.5.
|
|
57
|
+
"poveste": "0.5.2"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "rimraf dist && vite build && tsc -d -P tsconfig.build.json && pnpm run build:types",
|
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
export let id = null
|
|
6
6
|
export let icon = null
|
|
7
7
|
export let iconColor = null
|
|
8
|
-
//
|
|
9
|
-
//
|
|
8
|
+
// Absorbs the prop; collection never renders variant children. `export const`
|
|
9
|
+
// (the compiler's suggestion) would make passing one an error.
|
|
10
|
+
// svelte-ignore export_let_unused
|
|
10
11
|
export let initState = null
|
|
11
12
|
|
|
12
13
|
const story = getContext('__pvtStory')
|