@uinstinct/svelte-wheel-picker 0.1.20 → 0.1.22
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 +3 -0
- package/dist/WheelPicker.svelte +2 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# svelte-wheel-picker 🖱️
|
|
2
2
|
|
|
3
|
+
[](https://github.com/uinstinct/svelte-wheel-picker/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/uinstinct/svelte-wheel-picker/actions/workflows/deploy.yml)
|
|
5
|
+
[](https://github.com/uinstinct/svelte-wheel-picker/actions/workflows/release.yml)
|
|
3
6
|
[](https://www.npmjs.com/package/@uinstinct/svelte-wheel-picker)
|
|
4
7
|
[](https://github.com/uinstinct/svelte-wheel-picker/blob/main/LICENSE)
|
|
5
8
|
|
package/dist/WheelPicker.svelte
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uinstinct/svelte-wheel-picker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "iOS-style wheel picker for Svelte 5 with inertia scrolling, infinite loop, and keyboard navigation",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@eslint/js": "10.0.1",
|
|
40
|
+
"@playwright/test": "1.58.2",
|
|
40
41
|
"@sveltejs/adapter-static": "3.0.10",
|
|
41
42
|
"@sveltejs/kit": "2.55.0",
|
|
42
43
|
"@sveltejs/package": "2.5.7",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"package": "svelte-package && rm -rf dist/__tests__ && rm -f dist/*.test.js dist/*.test.d.ts && publint",
|
|
65
66
|
"test": "PLAYWRIGHT_BROWSERS_PATH=.playwright vitest run",
|
|
66
67
|
"test:watch": "PLAYWRIGHT_BROWSERS_PATH=.playwright vitest",
|
|
68
|
+
"test:e2e": "PLAYWRIGHT_BROWSERS_PATH=.playwright npx playwright test --config=playwright.config.ts",
|
|
67
69
|
"lint": "eslint .",
|
|
68
70
|
"format": "prettier --write .",
|
|
69
71
|
"registry:build": "shadcn-svelte registry build"
|