@inditextech/weave-react 0.15.0 → 0.16.0
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/dist/react.cjs +1 -0
- package/dist/react.js +2 -1
- package/package.json +2 -2
package/dist/react.cjs
CHANGED
|
@@ -283,6 +283,7 @@ const WeaveProvider = ({ containerId, getUser, store, nodes = [], actions = [],
|
|
|
283
283
|
instancePlugins.push(new __inditextech_weave_sdk.WeaveCopyPasteNodesPlugin());
|
|
284
284
|
instancePlugins.push(new __inditextech_weave_sdk.WeaveConnectedUsersPlugin({ config: { getUser } }));
|
|
285
285
|
instancePlugins.push(new __inditextech_weave_sdk.WeaveUsersPointersPlugin({ config: { getUser } }));
|
|
286
|
+
instancePlugins.push(new __inditextech_weave_sdk.WeaveUsersSelectionPlugin({ config: { getUser } }));
|
|
286
287
|
instancePlugins.push(new __inditextech_weave_sdk.WeaveContextMenuPlugin({ config: {
|
|
287
288
|
xOffset: 10,
|
|
288
289
|
yOffset: 10
|
package/dist/react.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { Weave, WeaveAction, WeaveConnectedUsersPlugin, WeaveContextMenuPlugin, WeaveCopyPasteNodesPlugin, WeaveNode, WeaveNodesSelectionPlugin, WeaveNodesSnappingPlugin, WeavePlugin, WeaveStageDropAreaPlugin, WeaveStageGridPlugin, WeaveStagePanningPlugin, WeaveStageResizePlugin, WeaveStageZoomPlugin, WeaveStore, WeaveUsersPointersPlugin } from "@inditextech/weave-sdk";
|
|
2
|
+
import { Weave, WeaveAction, WeaveConnectedUsersPlugin, WeaveContextMenuPlugin, WeaveCopyPasteNodesPlugin, WeaveNode, WeaveNodesSelectionPlugin, WeaveNodesSnappingPlugin, WeavePlugin, WeaveStageDropAreaPlugin, WeaveStageGridPlugin, WeaveStagePanningPlugin, WeaveStageResizePlugin, WeaveStageZoomPlugin, WeaveStore, WeaveUsersPointersPlugin, WeaveUsersSelectionPlugin } from "@inditextech/weave-sdk";
|
|
3
3
|
import Konva from "konva";
|
|
4
4
|
import "yjs";
|
|
5
5
|
|
|
@@ -259,6 +259,7 @@ const WeaveProvider = ({ containerId, getUser, store, nodes = [], actions = [],
|
|
|
259
259
|
instancePlugins.push(new WeaveCopyPasteNodesPlugin());
|
|
260
260
|
instancePlugins.push(new WeaveConnectedUsersPlugin({ config: { getUser } }));
|
|
261
261
|
instancePlugins.push(new WeaveUsersPointersPlugin({ config: { getUser } }));
|
|
262
|
+
instancePlugins.push(new WeaveUsersSelectionPlugin({ config: { getUser } }));
|
|
262
263
|
instancePlugins.push(new WeaveContextMenuPlugin({ config: {
|
|
263
264
|
xOffset: 10,
|
|
264
265
|
yOffset: 10
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inditextech/weave-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Jesus Manuel Piñeiro Cid <jesusmpc@inditex.com>",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"yjs": "13.6.26"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@inditextech/weave-sdk": "0.
|
|
51
|
+
"@inditextech/weave-sdk": "0.16.0",
|
|
52
52
|
"@types/node": "^22.15.3",
|
|
53
53
|
"@typescript-eslint/eslint-plugin": "8.26.0",
|
|
54
54
|
"@typescript-eslint/parser": "8.26.0",
|