@instantdb/components 0.22.91-experimental.btnfix.20319314786.1 → 0.22.91-experimental.btnfix.20320360874.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/.turbo/turbo-build.log +5 -5
- package/dist/components/ui.d.ts.map +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.js +290 -284
- package/package.json +6 -6
- package/src/components/explorer/inner-explorer.tsx +1 -1
- package/src/components/ui.tsx +6 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.22.91-experimental.btnfix.
|
|
4
|
+
"version": "0.22.91-experimental.btnfix.20320360874.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Instant's UI components",
|
|
7
7
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/components",
|
|
@@ -93,11 +93,11 @@
|
|
|
93
93
|
"swr": "^2.2.4",
|
|
94
94
|
"tailwind-merge": "^2.2.1",
|
|
95
95
|
"uuid": "^11.1.0",
|
|
96
|
-
"@instantdb/
|
|
97
|
-
"@instantdb/
|
|
98
|
-
"@instantdb/
|
|
99
|
-
"@instantdb/version": "0.22.91-experimental.btnfix.
|
|
100
|
-
"@instantdb/react": "0.22.91-experimental.btnfix.
|
|
96
|
+
"@instantdb/core": "0.22.91-experimental.btnfix.20320360874.1",
|
|
97
|
+
"@instantdb/platform": "0.22.91-experimental.btnfix.20320360874.1",
|
|
98
|
+
"@instantdb/admin": "0.22.91-experimental.btnfix.20320360874.1",
|
|
99
|
+
"@instantdb/version": "0.22.91-experimental.btnfix.20320360874.1",
|
|
100
|
+
"@instantdb/react": "0.22.91-experimental.btnfix.20320360874.1"
|
|
101
101
|
},
|
|
102
102
|
"scripts": {
|
|
103
103
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -1212,7 +1212,7 @@ export const InnerExplorer: React.FC<{
|
|
|
1212
1212
|
{numItemsSelected > 0 && (
|
|
1213
1213
|
<div className="flex items-center gap-2 pl-4">
|
|
1214
1214
|
<DropdownMenu open={dropdownOpen} onOpenChange={setDropdownOpen}>
|
|
1215
|
-
<DropdownMenuTrigger>
|
|
1215
|
+
<DropdownMenuTrigger asChild>
|
|
1216
1216
|
<Button
|
|
1217
1217
|
onClick={() => {
|
|
1218
1218
|
setDropdownOpen(true);
|
package/src/components/ui.tsx
CHANGED
|
@@ -703,6 +703,12 @@ export function Dialog({
|
|
|
703
703
|
}}
|
|
704
704
|
open={open}
|
|
705
705
|
>
|
|
706
|
+
<VisuallyHidden>
|
|
707
|
+
<DialogTitle>{title}</DialogTitle>
|
|
708
|
+
<DialogPrimitive.DialogDescription>
|
|
709
|
+
{title}
|
|
710
|
+
</DialogPrimitive.DialogDescription>
|
|
711
|
+
</VisuallyHidden>
|
|
706
712
|
<DialogContent
|
|
707
713
|
title={title}
|
|
708
714
|
onFocusCapture={(e) => {
|