@instantdb/components 0.0.1 → 0.22.87-experimental.drewh-explorer-component.20180748220.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 +12 -12
- package/README.md +22 -0
- package/package.json +17 -18
- package/.env +0 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
> @instantdb/components@0.
|
|
2
|
+
> @instantdb/components@0.22.87-experimental.drewh-explorer-component.20180748220.1 build /home/runner/work/instant/instant/client/packages/components
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[36mvite v5.4.14 [32mbuilding for production...[36m[39m
|
|
6
6
|
transforming...
|
|
7
|
-
|
|
7
|
+
[32m✓[39m 40 modules transformed.
|
|
8
8
|
rendering chunks...
|
|
9
|
-
|
|
10
|
-
[unplugin:dts] Start generate declaration files
|
|
9
|
+
[32m
|
|
10
|
+
[36m[unplugin:dts][32m Start generate declaration files...[39m
|
|
11
11
|
computing gzip size...
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
[unplugin:dts] Declaration files built in
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
✓ built in
|
|
12
|
+
[2mdist/[22m[35mstyle.css [39m[1m[2m 58.51 kB[22m[1m[22m[2m │ gzip: 10.08 kB[22m
|
|
13
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m369.57 kB[22m[1m[22m[2m │ gzip: 90.96 kB[22m
|
|
14
|
+
[32m[36m[unplugin:dts][32m Declaration files built in 5674ms.
|
|
15
|
+
[39m
|
|
16
|
+
[2mdist/[22m[35mstyle.css [39m[1m[2m 58.51 kB[22m[1m[22m[2m │ gzip: 10.08 kB[22m
|
|
17
|
+
[2mdist/[22m[36mindex.cjs [39m[1m[2m254.34 kB[22m[1m[22m[2m │ gzip: 71.92 kB[22m
|
|
18
|
+
[32m✓ built in 6.46s[39m
|
package/README.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://instantdb.com">
|
|
3
|
+
<img alt="Shows the Instant logo" src="https://instantdb.com/img/icon/android-chrome-512x512.png" width="10%">
|
|
4
|
+
</a>
|
|
5
|
+
<h1 align="center">@instantdb/react</h1>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a
|
|
10
|
+
href="https://discord.com/invite/VU53p7uQcE" >
|
|
11
|
+
<img height=20 src="https://img.shields.io/discord/1031957483243188235" />
|
|
12
|
+
</a>
|
|
13
|
+
<img src="https://img.shields.io/github/stars/instantdb/instant" alt="stars">
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<a href="https://instantdb.com/dash">Get Started</a> ·
|
|
18
|
+
<a href="https://instantdb.com/examples">Examples</a> ·
|
|
19
|
+
<a href="https://instantdb.com/docs">Docs</a> ·
|
|
20
|
+
<a href="https://discord.com/invite/VU53p7uQcE">Discord</a>
|
|
21
|
+
<p>
|
|
22
|
+
|
|
1
23
|
# InstantDB Component Library
|
|
2
24
|
|
|
3
25
|
## Using the Explorer component
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/components",
|
|
3
|
-
"
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.22.87-experimental.drewh-explorer-component.20180748220.1",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"description": "Instant's UI components",
|
|
6
7
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/components",
|
|
@@ -9,13 +10,7 @@
|
|
|
9
10
|
"repository": {
|
|
10
11
|
"type": "git",
|
|
11
12
|
"url": "git+https://github.com/instantdb/instant.git",
|
|
12
|
-
"directory": "client/packages/
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
16
|
-
"build": "vite build",
|
|
17
|
-
"dev": "vite build --watch",
|
|
18
|
-
"dev:demo": "vite"
|
|
13
|
+
"directory": "client/packages/components"
|
|
19
14
|
},
|
|
20
15
|
"exports": {
|
|
21
16
|
"./package.json": "./package.json",
|
|
@@ -31,9 +26,6 @@
|
|
|
31
26
|
}
|
|
32
27
|
}
|
|
33
28
|
},
|
|
34
|
-
"keywords": [],
|
|
35
|
-
"author": "",
|
|
36
|
-
"license": "ISC",
|
|
37
29
|
"devDependencies": {
|
|
38
30
|
"@babel/core": "^7.17.9",
|
|
39
31
|
"@babel/preset-env": "^7.16.11",
|
|
@@ -74,11 +66,6 @@
|
|
|
74
66
|
"@dnd-kit/utilities": "^3.2.2",
|
|
75
67
|
"@headlessui/react": "^2.2.0",
|
|
76
68
|
"@heroicons/react": "^2.1.5",
|
|
77
|
-
"@instantdb/admin": "workspace:*",
|
|
78
|
-
"@instantdb/core": "workspace:*",
|
|
79
|
-
"@instantdb/platform": "workspace:*",
|
|
80
|
-
"@instantdb/react": "workspace:*",
|
|
81
|
-
"@instantdb/version": "workspace:*",
|
|
82
69
|
"@monaco-editor/react": "^4.6.0",
|
|
83
70
|
"@radix-ui/react-collapsible": "^1.0.3",
|
|
84
71
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
@@ -104,6 +91,18 @@
|
|
|
104
91
|
"sonner": "^2.0.7",
|
|
105
92
|
"swr": "^2.2.4",
|
|
106
93
|
"tailwind-merge": "^2.2.1",
|
|
107
|
-
"uuid": "^11.1.0"
|
|
94
|
+
"uuid": "^11.1.0",
|
|
95
|
+
"@instantdb/core": "0.22.87-experimental.drewh-explorer-component.20180748220.1",
|
|
96
|
+
"@instantdb/admin": "0.22.87-experimental.drewh-explorer-component.20180748220.1",
|
|
97
|
+
"@instantdb/react": "0.22.87-experimental.drewh-explorer-component.20180748220.1",
|
|
98
|
+
"@instantdb/platform": "0.22.87-experimental.drewh-explorer-component.20180748220.1",
|
|
99
|
+
"@instantdb/version": "0.22.87-experimental.drewh-explorer-component.20180748220.1"
|
|
100
|
+
},
|
|
101
|
+
"scripts": {
|
|
102
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
103
|
+
"build": "vite build",
|
|
104
|
+
"dev": "vite build --watch",
|
|
105
|
+
"publish-package": "pnpm pack && npm publish *.tgz --access public",
|
|
106
|
+
"dev:demo": "vite"
|
|
108
107
|
}
|
|
109
|
-
}
|
|
108
|
+
}
|
package/.env
DELETED