@checkstack/command-frontend 0.0.3 → 0.0.5
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/CHANGELOG.md +24 -0
- package/package.json +1 -1
- package/src/components/SearchDialog.tsx +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @checkstack/command-frontend
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 97c5a6b: Fix Radix UI accessibility warning in dialog components by adding visually hidden DialogDescription components
|
|
8
|
+
- Updated dependencies [8e43507]
|
|
9
|
+
- Updated dependencies [97c5a6b]
|
|
10
|
+
- Updated dependencies [8e43507]
|
|
11
|
+
- @checkstack/ui@0.1.0
|
|
12
|
+
- @checkstack/common@0.1.0
|
|
13
|
+
- @checkstack/command-common@0.0.4
|
|
14
|
+
- @checkstack/frontend-api@0.0.4
|
|
15
|
+
|
|
16
|
+
## 0.0.4
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [f5b1f49]
|
|
21
|
+
- Updated dependencies [f5b1f49]
|
|
22
|
+
- @checkstack/common@0.0.3
|
|
23
|
+
- @checkstack/ui@0.0.4
|
|
24
|
+
- @checkstack/command-common@0.0.3
|
|
25
|
+
- @checkstack/frontend-api@0.0.3
|
|
26
|
+
|
|
3
27
|
## 0.0.3
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,6 +3,8 @@ import { useNavigate } from "react-router-dom";
|
|
|
3
3
|
import {
|
|
4
4
|
Dialog,
|
|
5
5
|
DialogContent,
|
|
6
|
+
DialogDescription,
|
|
7
|
+
DialogTitle,
|
|
6
8
|
Input,
|
|
7
9
|
DynamicIcon,
|
|
8
10
|
type LucideIconName,
|
|
@@ -163,6 +165,11 @@ export const SearchDialog: React.FC<SearchDialogProps> = ({
|
|
|
163
165
|
className="p-0 gap-0 overflow-hidden"
|
|
164
166
|
onKeyDown={handleKeyDown}
|
|
165
167
|
>
|
|
168
|
+
{/* Visually hidden but accessible title and description */}
|
|
169
|
+
<DialogTitle className="sr-only">Search</DialogTitle>
|
|
170
|
+
<DialogDescription className="sr-only">
|
|
171
|
+
Search commands and systems using the input below
|
|
172
|
+
</DialogDescription>
|
|
166
173
|
{/* Search input */}
|
|
167
174
|
<div className="flex items-center gap-3 px-4 py-3 border-b border-border">
|
|
168
175
|
<Search className="w-5 h-5 text-muted-foreground flex-shrink-0" />
|