noph-ui 0.17.7 → 0.17.9
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.
|
@@ -189,7 +189,12 @@
|
|
|
189
189
|
menuElement?.hidePopover()
|
|
190
190
|
} else {
|
|
191
191
|
event.preventDefault()
|
|
192
|
-
if (
|
|
192
|
+
if (
|
|
193
|
+
event.key === 'ArrowDown' ||
|
|
194
|
+
event.key === 'ArrowUp' ||
|
|
195
|
+
event.key === 'Enter' ||
|
|
196
|
+
event.key === ' '
|
|
197
|
+
) {
|
|
193
198
|
menuElement?.showPopover()
|
|
194
199
|
;(menuElement?.firstElementChild?.firstElementChild as HTMLElement)?.focus()
|
|
195
200
|
}
|
|
@@ -403,7 +403,6 @@
|
|
|
403
403
|
|
|
404
404
|
.input-wrapper {
|
|
405
405
|
display: flex;
|
|
406
|
-
flex-wrap: wrap;
|
|
407
406
|
align-items: baseline;
|
|
408
407
|
min-width: 0;
|
|
409
408
|
}
|
|
@@ -485,7 +484,7 @@
|
|
|
485
484
|
margin-bottom: var(--bottom-space, 0.5rem);
|
|
486
485
|
}
|
|
487
486
|
.content .input-wrapper .input {
|
|
488
|
-
min-width:
|
|
487
|
+
min-width: 0;
|
|
489
488
|
}
|
|
490
489
|
:global(.content .input-wrapper .np-chip-set) {
|
|
491
490
|
margin-top: calc(var(--top-space, 1.5rem) - 4px);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "noph-ui",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://noph.dev",
|
|
6
6
|
"repository": {
|
|
@@ -53,27 +53,27 @@
|
|
|
53
53
|
"svelte": "^5.32.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@eslint/js": "^9.
|
|
56
|
+
"@eslint/js": "^9.28.0",
|
|
57
57
|
"@material/material-color-utilities": "^0.3.0",
|
|
58
58
|
"@playwright/test": "^1.52.0",
|
|
59
59
|
"@sveltejs/adapter-vercel": "^5.7.2",
|
|
60
|
-
"@sveltejs/kit": "^2.21.
|
|
60
|
+
"@sveltejs/kit": "^2.21.2",
|
|
61
61
|
"@sveltejs/package": "^2.3.11",
|
|
62
|
-
"@sveltejs/vite-plugin-svelte": "^5.0
|
|
62
|
+
"@sveltejs/vite-plugin-svelte": "^5.1.0",
|
|
63
63
|
"@types/eslint": "^9.6.1",
|
|
64
|
-
"eslint": "^9.
|
|
64
|
+
"eslint": "^9.28.0",
|
|
65
65
|
"eslint-config-prettier": "^10.1.5",
|
|
66
|
-
"eslint-plugin-svelte": "^3.9.
|
|
67
|
-
"globals": "^16.
|
|
66
|
+
"eslint-plugin-svelte": "^3.9.1",
|
|
67
|
+
"globals": "^16.2.0",
|
|
68
68
|
"prettier": "^3.5.3",
|
|
69
69
|
"prettier-plugin-svelte": "^3.4.0",
|
|
70
70
|
"publint": "^0.3.12",
|
|
71
|
-
"svelte": "^5.
|
|
71
|
+
"svelte": "^5.33.16",
|
|
72
72
|
"svelte-check": "^4.2.1",
|
|
73
73
|
"typescript": "^5.8.3",
|
|
74
|
-
"typescript-eslint": "^8.
|
|
74
|
+
"typescript-eslint": "^8.33.1",
|
|
75
75
|
"vite": "^6.3.5",
|
|
76
|
-
"vitest": "^3.
|
|
76
|
+
"vitest": "^3.2.2"
|
|
77
77
|
},
|
|
78
78
|
"svelte": "./dist/index.js",
|
|
79
79
|
"types": "./dist/index.d.ts",
|