@steedos-widgets/liveblocks 6.3.11-beta.15
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 +11 -0
- package/dist/assets-dev.json +25 -0
- package/dist/assets.json +25 -0
- package/dist/components/Comments.d.ts +4 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/liveblocks.umd.js +7 -0
- package/dist/meta.d.ts +9 -0
- package/dist/meta.js +149 -0
- package/dist/metas/Comments.d.ts +2 -0
- package/dist/types/components/Comments.d.ts +4 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/meta.d.ts +9 -0
- package/dist/types/metas/Comments.d.ts +2 -0
- package/package.json +60 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Liveblocks
|
|
2
|
+
|
|
3
|
+
Liveblocks is the platform for adding collaborative editing, comments, and notifications into your application.
|
|
4
|
+
|
|
5
|
+
https://github.com/liveblocks/liveblocks
|
|
6
|
+
|
|
7
|
+
## 加载资产包
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
STEEDOS_PUBLIC_PAGE_ASSETURLS=http://127.0.0.1:8080/@steedos-widgets/amis-object/dist/assets-dev.json,http://127.0.0.1:8080/@steedos-widgets/liveblocks/dist/assets-dev.json
|
|
11
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": [
|
|
3
|
+
{
|
|
4
|
+
"package": "@steedos-widgets/liveblocks",
|
|
5
|
+
"urls": [
|
|
6
|
+
"http://127.0.0.1:8080/@steedos-widgets/liveblocks/dist/liveblocks.umd.js",
|
|
7
|
+
"http://127.0.0.1:8080/@steedos-widgets/liveblocks/dist/liveblocks.umd.css"
|
|
8
|
+
],
|
|
9
|
+
"library": "BuilderAgGrid"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"components": [
|
|
13
|
+
{
|
|
14
|
+
"exportName": "BuilderAgGridMeta",
|
|
15
|
+
"npm": {
|
|
16
|
+
"package": "@steedos-widgets/liveblocks"
|
|
17
|
+
},
|
|
18
|
+
"url": "http://127.0.0.1:8080/@steedos-widgets/liveblocks/dist/meta.js",
|
|
19
|
+
"urls": {
|
|
20
|
+
"default": "http://127.0.0.1:8080/@steedos-widgets/liveblocks/dist/meta.js",
|
|
21
|
+
"design": "http://127.0.0.1:8080/@steedos-widgets/liveblocks/dist/meta.js"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
package/dist/assets.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": [
|
|
3
|
+
{
|
|
4
|
+
"package": "@steedos-widgets/liveblocks",
|
|
5
|
+
"urls": [
|
|
6
|
+
"https://unpkg.com/@steedos-widgets/liveblocks@6.3.11-beta.15/dist/liveblocks.umd.js",
|
|
7
|
+
"https://unpkg.com/@steedos-widgets/liveblocks@6.3.11-beta.15/dist/liveblocks.umd.css"
|
|
8
|
+
],
|
|
9
|
+
"library": "BuilderAgGrid"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"components": [
|
|
13
|
+
{
|
|
14
|
+
"exportName": "BuilderAgGridMeta",
|
|
15
|
+
"npm": {
|
|
16
|
+
"package": "@steedos-widgets/liveblocks"
|
|
17
|
+
},
|
|
18
|
+
"url": "https://unpkg.com/@steedos-widgets/liveblocks@6.3.11-beta.15/dist/meta.js",
|
|
19
|
+
"urls": {
|
|
20
|
+
"default": "https://unpkg.com/@steedos-widgets/liveblocks@6.3.11-beta.15/dist/meta.js",
|
|
21
|
+
"design": "https://unpkg.com/@steedos-widgets/liveblocks@6.3.11-beta.15/dist/meta.js"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Comments';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|