@vibes.diy/vibe-db-explorer 2.2.17 → 2.2.19

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  [![Join our
2
- Discord](https://discord-badge.selem.workers.dev/i/tzMUkwFK.svg)](https://discord.gg/tzMUkwFK)
2
+ Discord](https://discord-badge.selem.workers.dev/i/weSgWt684k.svg)](https://discord.gg/weSgWt684k)
3
3
 
4
4
  # ✨ Build Mini Apps with AI Magic
5
5
 
@@ -4,7 +4,7 @@ interface DBExplorerVibeApp {
4
4
  readonly userSlug: string;
5
5
  readonly fsId?: string;
6
6
  }
7
- export declare function DBExplorerPage({ importMap, base, vibeApp }: {
7
+ export declare function DBExplorerPage({ importMap, base, vibeApp, }: {
8
8
  importMap: {
9
9
  imports: Record<string, string>;
10
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibes.diy/vibe-db-explorer",
3
- "version": "2.2.17",
3
+ "version": "2.2.19",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -28,8 +28,8 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@adviser/cement": "~0.5.34",
31
- "@vibes.diy/base": "2.2.17",
32
- "@vibes.diy/vibe-runtime": "2.2.17",
31
+ "@vibes.diy/base": "2.2.19",
32
+ "@vibes.diy/vibe-runtime": "2.2.19",
33
33
  "ag-grid-community": "~35.2.1",
34
34
  "ag-grid-react": "~35.2.1",
35
35
  "react": "~19.2.5",
@@ -19,5 +19,5 @@ interface DocDBViewerProps {
19
19
  databases?: string[];
20
20
  onDbChange?: (db: string) => void;
21
21
  }
22
- export declare function DocDBViewer({ docs, docById, loading, dbName, docId, navigate, onSave, onDelete, onCreate, onSeedData, totalDocs, databases, onDbChange }: DocDBViewerProps): React.JSX.Element;
22
+ export declare function DocDBViewer({ docs, docById, loading, dbName, docId, navigate, onSave, onDelete, onCreate, onSeedData, totalDocs, databases, onDbChange, }: DocDBViewerProps): React.JSX.Element;
23
23
  export {};