@masterteam/workspace-builder 0.0.12 → 0.0.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/workspace-builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/workspace-builder",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"tailwindcss": "^4.2.2",
|
|
21
21
|
"tailwindcss-primeui": "^0.6.1",
|
|
22
22
|
"@ngxs/store": "^20.1.0",
|
|
23
|
-
"@masterteam/components": "^0.0.
|
|
23
|
+
"@masterteam/components": "^0.0.169"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": false,
|
|
26
26
|
"exports": {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { OnDestroy } from '@angular/core';
|
|
3
|
-
import { ToastService } from '@masterteam/components/toast';
|
|
4
3
|
import * as rxjs from 'rxjs';
|
|
5
4
|
import * as _masterteam_workspace_builder from '@masterteam/workspace-builder';
|
|
6
5
|
import { StateContext } from '@ngxs/store';
|
|
@@ -103,7 +102,12 @@ declare class WorkspaceBuilder implements OnDestroy {
|
|
|
103
102
|
private dragCleanupTimer;
|
|
104
103
|
private scrollAnimFrame;
|
|
105
104
|
private scrollContainer;
|
|
106
|
-
private
|
|
105
|
+
private scrollVelocity;
|
|
106
|
+
private lastDragClientY;
|
|
107
|
+
private documentDragOverHandler;
|
|
108
|
+
private documentDragEndHandler;
|
|
109
|
+
private readonly EDGE_SCROLL_ZONE;
|
|
110
|
+
private readonly EDGE_SCROLL_MAX_SPEED;
|
|
107
111
|
private autoSaveInFlight;
|
|
108
112
|
private autoSaveQueued;
|
|
109
113
|
private autoSaveQueuedNotifySuccess;
|
|
@@ -111,7 +115,6 @@ declare class WorkspaceBuilder implements OnDestroy {
|
|
|
111
115
|
private readonly confirmationService;
|
|
112
116
|
private readonly modal;
|
|
113
117
|
private readonly transloco;
|
|
114
|
-
ts: ToastService;
|
|
115
118
|
readonly layout: _angular_core.Signal<WorkspaceBuilderLayoutDto>;
|
|
116
119
|
readonly validationErrors: _angular_core.Signal<string[]>;
|
|
117
120
|
readonly isLoadingLayout: _angular_core.Signal<boolean>;
|
|
@@ -154,7 +157,9 @@ declare class WorkspaceBuilder implements OnDestroy {
|
|
|
154
157
|
private beginDragSession;
|
|
155
158
|
onAreaBodyDragOver(event: DragEvent): void;
|
|
156
159
|
onAreaBodyDragLeave(event: DragEvent): void;
|
|
157
|
-
private
|
|
160
|
+
private attachDocumentDragListeners;
|
|
161
|
+
private detachDocumentDragListeners;
|
|
162
|
+
private evaluateEdgeScroll;
|
|
158
163
|
private runEdgeScroll;
|
|
159
164
|
private stopEdgeScroll;
|
|
160
165
|
private endDragSession;
|
|
@@ -175,8 +180,6 @@ declare class WorkspaceBuilder implements OnDestroy {
|
|
|
175
180
|
private getAllGroups;
|
|
176
181
|
private cloneLayout;
|
|
177
182
|
private cloneItem;
|
|
178
|
-
private getSuccessMessage;
|
|
179
|
-
private getErrorMessage;
|
|
180
183
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WorkspaceBuilder, never>;
|
|
181
184
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WorkspaceBuilder, "mt-workspace-builder", never, { "levelId": { "alias": "levelId"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "autoSave": { "alias": "autoSave"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
182
185
|
}
|