@flowscape-ui/core-sdk 1.0.4 → 1.0.5
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 +1 -6
- package/dist/index.cjs +58 -4
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +58 -4
- package/package.json +10 -5
package/dist/index.d.cts
CHANGED
|
@@ -1052,6 +1052,7 @@ declare class VirtualizationManager {
|
|
|
1052
1052
|
private _viewport;
|
|
1053
1053
|
private _visibleNodes;
|
|
1054
1054
|
private _hiddenNodes;
|
|
1055
|
+
private _tempMultiNodeIds;
|
|
1055
1056
|
private _updateScheduled;
|
|
1056
1057
|
private _lod;
|
|
1057
1058
|
constructor(_stage: Konva.Stage, _world: Konva.Group, _nodeManager: NodeManager, options?: VirtualizationOptions);
|
|
@@ -2144,6 +2145,7 @@ declare class SelectionPlugin extends Plugin {
|
|
|
2144
2145
|
private _cornerHandles;
|
|
2145
2146
|
private _cornerHandlesSuppressed;
|
|
2146
2147
|
private _transformOppositeCorner;
|
|
2148
|
+
private _isTransforming;
|
|
2147
2149
|
private _sizeLabel;
|
|
2148
2150
|
private _radiusLabel;
|
|
2149
2151
|
private _rotateHandlesGroup;
|
|
@@ -2160,6 +2162,7 @@ declare class SelectionPlugin extends Plugin {
|
|
|
2160
2162
|
private _autoPanEdgePx;
|
|
2161
2163
|
private _autoPanMaxSpeedPx;
|
|
2162
2164
|
private _draggingNode;
|
|
2165
|
+
private _tempMultiTransformingGroup;
|
|
2163
2166
|
private _ratioKeyPressed;
|
|
2164
2167
|
private _onGlobalKeyDown;
|
|
2165
2168
|
private _onGlobalKeyUp;
|
|
@@ -2271,6 +2274,7 @@ declare class VisualGuidesPlugin extends Plugin {
|
|
|
2271
2274
|
private _core?;
|
|
2272
2275
|
private _options;
|
|
2273
2276
|
private _layer;
|
|
2277
|
+
private _maxGuideDistancePx;
|
|
2274
2278
|
private _dragMoveHandler;
|
|
2275
2279
|
private _dragEndHandler;
|
|
2276
2280
|
private _nodesAddHandler;
|
package/dist/index.d.ts
CHANGED
|
@@ -1052,6 +1052,7 @@ declare class VirtualizationManager {
|
|
|
1052
1052
|
private _viewport;
|
|
1053
1053
|
private _visibleNodes;
|
|
1054
1054
|
private _hiddenNodes;
|
|
1055
|
+
private _tempMultiNodeIds;
|
|
1055
1056
|
private _updateScheduled;
|
|
1056
1057
|
private _lod;
|
|
1057
1058
|
constructor(_stage: Konva.Stage, _world: Konva.Group, _nodeManager: NodeManager, options?: VirtualizationOptions);
|
|
@@ -2144,6 +2145,7 @@ declare class SelectionPlugin extends Plugin {
|
|
|
2144
2145
|
private _cornerHandles;
|
|
2145
2146
|
private _cornerHandlesSuppressed;
|
|
2146
2147
|
private _transformOppositeCorner;
|
|
2148
|
+
private _isTransforming;
|
|
2147
2149
|
private _sizeLabel;
|
|
2148
2150
|
private _radiusLabel;
|
|
2149
2151
|
private _rotateHandlesGroup;
|
|
@@ -2160,6 +2162,7 @@ declare class SelectionPlugin extends Plugin {
|
|
|
2160
2162
|
private _autoPanEdgePx;
|
|
2161
2163
|
private _autoPanMaxSpeedPx;
|
|
2162
2164
|
private _draggingNode;
|
|
2165
|
+
private _tempMultiTransformingGroup;
|
|
2163
2166
|
private _ratioKeyPressed;
|
|
2164
2167
|
private _onGlobalKeyDown;
|
|
2165
2168
|
private _onGlobalKeyUp;
|
|
@@ -2271,6 +2274,7 @@ declare class VisualGuidesPlugin extends Plugin {
|
|
|
2271
2274
|
private _core?;
|
|
2272
2275
|
private _options;
|
|
2273
2276
|
private _layer;
|
|
2277
|
+
private _maxGuideDistancePx;
|
|
2274
2278
|
private _dragMoveHandler;
|
|
2275
2279
|
private _dragEndHandler;
|
|
2276
2280
|
private _nodesAddHandler;
|