@steedos-widgets/liveblocks 6.3.12-beta.9 → 6.3.12
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 +18 -10
- package/dist/assets-dev.json +25 -0
- package/dist/assets.json +5 -5
- package/dist/liveblocks.umd.css +9 -7
- package/dist/liveblocks.umd.js +3 -40959
- package/dist/meta.js +2 -2
- package/package.json +6 -4
package/dist/meta.js
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
var config$2 = {
|
|
34
|
-
group: "
|
|
34
|
+
group: "Builder6",
|
|
35
35
|
componentName: "AmisComments",
|
|
36
36
|
title: "Comments",
|
|
37
37
|
docUrl: "",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
} });
|
|
106
106
|
|
|
107
107
|
var config$1 = {
|
|
108
|
-
group: "
|
|
108
|
+
group: "Builder6",
|
|
109
109
|
componentName: "AmisInboxPopover",
|
|
110
110
|
title: "Inbox Popover",
|
|
111
111
|
docUrl: "",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos-widgets/liveblocks",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "6.3.12
|
|
4
|
+
"version": "6.3.12",
|
|
5
5
|
"main": "dist/liveblocks.cjs.js",
|
|
6
6
|
"module": "dist/liveblocks.esm.js",
|
|
7
7
|
"unpkg": "dist/liveblocks.umd.js",
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prebuild": "rimraf dist",
|
|
14
14
|
"http": "npx http-server ../ --port 8080 --cors -c -1",
|
|
15
|
-
"build": "yarn build-types && yarn build-rollup",
|
|
15
|
+
"build": "yarn replace-slate-vars && yarn replace-liveblocks-vars && yarn build-types && yarn build-rollup",
|
|
16
|
+
"replace-liveblocks-vars": "node ./script/replaceAttachmentSize.js",
|
|
17
|
+
"replace-slate-vars": "node ./script/replaceSlateVars.js",
|
|
16
18
|
"build-types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
|
|
17
19
|
"build-rollup": "rollup -c rollup.config.ts"
|
|
18
20
|
},
|
|
@@ -53,9 +55,9 @@
|
|
|
53
55
|
"@liveblocks/react": "2.12.0",
|
|
54
56
|
"@liveblocks/react-ui": "2.12.0",
|
|
55
57
|
"@rollup/plugin-replace": "^5.0.2",
|
|
56
|
-
"@steedos-widgets/amis-lib": "6.3.12
|
|
58
|
+
"@steedos-widgets/amis-lib": "6.3.12",
|
|
57
59
|
"emojibase-data": "^16.0.2",
|
|
58
60
|
"react-error-boundary": "^4.1.2"
|
|
59
61
|
},
|
|
60
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "3a1882b685d95c78e8033b809b3e112ea9b3a8c1"
|
|
61
63
|
}
|