@uinstinct/svelte-wheel-picker 0.1.19 → 0.1.21

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.
@@ -246,6 +246,8 @@
246
246
  style:height="{visibleCount * optionItemHeight}px"
247
247
  style:overflow="hidden"
248
248
  style:position="relative"
249
+ style:touch-action="none"
250
+ style:user-select="none"
249
251
  tabindex="0"
250
252
  role="listbox"
251
253
  onpointerdown={onPointerDown}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uinstinct/svelte-wheel-picker",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
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"