svelte-multiselect 11.5.2 → 11.6.1
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/dist/CmdPalette.svelte.d.ts +2 -2
- package/dist/MultiSelect.svelte +231 -102
- package/dist/MultiSelect.svelte.d.ts +2 -2
- package/dist/Nav.svelte +124 -61
- package/dist/Nav.svelte.d.ts +2 -1
- package/dist/attachments.d.ts +3 -0
- package/dist/attachments.js +145 -37
- package/dist/heading-anchors.js +10 -16
- package/dist/live-examples/highlighter.js +35 -0
- package/dist/live-examples/index.d.ts +7 -0
- package/dist/live-examples/index.js +23 -0
- package/dist/live-examples/mdsvex-transform.d.ts +32 -0
- package/dist/live-examples/mdsvex-transform.js +185 -0
- package/dist/live-examples/vite-plugin.d.ts +6 -0
- package/dist/live-examples/vite-plugin.js +170 -0
- package/dist/types.d.ts +16 -1
- package/dist/utils.d.ts +2 -0
- package/dist/utils.js +15 -0
- package/package.json +37 -14
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"homepage": "https://janosh.github.io/svelte-multiselect",
|
|
6
6
|
"repository": "https://github.com/janosh/svelte-multiselect",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"version": "11.
|
|
8
|
+
"version": "11.6.1",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "vite dev",
|
|
@@ -13,37 +13,52 @@
|
|
|
13
13
|
"preview": "vite preview",
|
|
14
14
|
"test": "vitest --run && playwright test",
|
|
15
15
|
"check": "svelte-check",
|
|
16
|
-
"package": "svelte-package",
|
|
17
|
-
"prepublishOnly": "
|
|
16
|
+
"package": "svelte-package && find dist -name '*.js' -o -name '*.d.ts' | xargs sed -i '' -E \"s/(\\.\\.?\\/[^'\\\"]*)\\.ts(['\\\"])/\\1.js\\2/g\"",
|
|
17
|
+
"prepublishOnly": "pnpm package"
|
|
18
18
|
},
|
|
19
19
|
"svelte": "./dist/index.js",
|
|
20
20
|
"bugs": "https://github.com/janosh/svelte-multiselect/issues",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"
|
|
22
|
+
"@wooorm/starry-night": "^3.0.0",
|
|
23
|
+
"abstract-syntax-tree": "^2.0.0",
|
|
24
|
+
"svelte": "^5.48.0",
|
|
25
|
+
"svelte-preprocess": "^6.0.0"
|
|
26
|
+
},
|
|
27
|
+
"peerDependenciesMeta": {
|
|
28
|
+
"@wooorm/starry-night": {
|
|
29
|
+
"optional": true
|
|
30
|
+
},
|
|
31
|
+
"abstract-syntax-tree": {
|
|
32
|
+
"optional": true
|
|
33
|
+
},
|
|
34
|
+
"svelte-preprocess": {
|
|
35
|
+
"optional": true
|
|
36
|
+
}
|
|
23
37
|
},
|
|
24
38
|
"devDependencies": {
|
|
25
|
-
"@playwright/test": "^1.
|
|
26
|
-
"@stylistic/eslint-plugin": "^5.7.
|
|
39
|
+
"@playwright/test": "^1.58.0",
|
|
40
|
+
"@stylistic/eslint-plugin": "^5.7.1",
|
|
27
41
|
"@sveltejs/adapter-static": "^3.0.10",
|
|
28
|
-
"@sveltejs/kit": "^2.50.
|
|
42
|
+
"@sveltejs/kit": "^2.50.1",
|
|
29
43
|
"@sveltejs/package": "2.5.7",
|
|
30
44
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
31
|
-
"@types/node": "^25.0.
|
|
32
|
-
"@vitest/coverage-v8": "^4.0.
|
|
45
|
+
"@types/node": "^25.0.10",
|
|
46
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
47
|
+
"@wooorm/starry-night": "^3.9.0",
|
|
48
|
+
"abstract-syntax-tree": "^2.22.0",
|
|
33
49
|
"eslint": "^9.39.2",
|
|
34
50
|
"eslint-plugin-svelte": "^3.14.0",
|
|
35
|
-
"happy-dom": "^20.3.
|
|
51
|
+
"happy-dom": "^20.3.7",
|
|
36
52
|
"mdsvex": "^0.12.6",
|
|
37
|
-
"
|
|
38
|
-
"svelte": "^5.46.4",
|
|
53
|
+
"svelte": "^5.48.2",
|
|
39
54
|
"svelte-check": "^4.3.5",
|
|
40
55
|
"svelte-preprocess": "^6.0.3",
|
|
41
56
|
"svelte-toc": "^0.6.2",
|
|
42
57
|
"svelte2tsx": "^0.7.46",
|
|
43
58
|
"typescript": "5.9.3",
|
|
44
|
-
"typescript-eslint": "^8.53.
|
|
59
|
+
"typescript-eslint": "^8.53.1",
|
|
45
60
|
"vite": "^7.3.1",
|
|
46
|
-
"vitest": "^4.0.
|
|
61
|
+
"vitest": "^4.0.18"
|
|
47
62
|
},
|
|
48
63
|
"keywords": [
|
|
49
64
|
"svelte",
|
|
@@ -70,9 +85,17 @@
|
|
|
70
85
|
"types": "./dist/attachments.d.ts",
|
|
71
86
|
"default": "./dist/attachments.js"
|
|
72
87
|
},
|
|
88
|
+
"./utils": {
|
|
89
|
+
"types": "./dist/utils.d.ts",
|
|
90
|
+
"default": "./dist/utils.js"
|
|
91
|
+
},
|
|
73
92
|
"./heading-anchors": {
|
|
74
93
|
"types": "./dist/heading-anchors.d.ts",
|
|
75
94
|
"default": "./dist/heading-anchors.js"
|
|
95
|
+
},
|
|
96
|
+
"./live-examples": {
|
|
97
|
+
"types": "./dist/live-examples/index.d.ts",
|
|
98
|
+
"default": "./dist/live-examples/index.js"
|
|
76
99
|
}
|
|
77
100
|
},
|
|
78
101
|
"types": "./dist/index.d.ts",
|