fcs-core-viewer 0.30.0 → 0.32.1
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 +27 -10
- package/fcs-core-editor@types/Editor3D/Editor3DAPI.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Network/{BackendEvents.d.ts → SocketCommandsGateway.d.ts} +9 -3
- package/fcs-core-editor@types/Editor3D/Operations/CAE/CreationTools_2D/MeshFace.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAE/CreationTools_3D/VolumeMesh.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/Common/Core/Paste.d.ts +1 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/Index.d.ts +5 -0
- package/fcs-core-editor@types/Editor3D/Wrapper/Editor3DWrapper.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/Common/Diagnostics/StatusBar.d.ts +1 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/SelectionData.d.ts +5 -5
- package/fcs-core-editor@types/Viewer3D/Loader/Loader.d.ts +3 -3
- package/fcs-core-editor@types/Viewer3D/Loader/MESHLoader/Index.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/Loader/MESHLoader/{payloadReader.d.ts → MeshDeltaReader.d.ts} +5 -4
- package/fcs-core-editor@types/Viewer3D/UI/Dock.d.ts +36 -0
- package/fcs-core-editor@types/Viewer3D/UI/Index.d.ts +2 -0
- package/fcs-core-editor@types/Viewer3D/UI/MainDock.d.ts +1 -0
- package/fcs-core-editor@types/Viewer3D/UserInterface/EventListeners/EventListeners.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/FileBrowser.d.ts +1 -0
- package/fcs-core-editor@types/Viewer3D/Viewer3DAPI.d.ts +3 -2
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/CAE/CreationTools_0D_1D/Index.d.ts +1 -4
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/CAE/CreationTools_2D/ManualElementCreation.d.ts +4 -3
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Common/Core/Index.d.ts +0 -1
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Common/Core/Paste.d.ts +0 -16
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Index.d.ts +0 -1
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/ModelTree/TreeViewEventHandler.d.ts +5 -5
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/Find.d.ts +3 -3
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Visualization/ColorMode.d.ts +1 -1
- package/package.json +11 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAE/CreationTools_0D_1D/CreateNodeByXYZ.d.ts +0 -4
- package/fcs-core-editor@types/Editor3D/Operations/CAE/CreationTools_0D_1D/CreateRigidCoupling.d.ts +0 -15
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/CAE/CreationTools_0D_1D/CreateNodeByXYZ.d.ts +0 -8
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Viewer3D/Editor3D Packages
|
|
2
2
|
|
|
3
|
-
This package provides TypeScript declaration files for the Femsolve Cloud Services 3D
|
|
3
|
+
This package provides TypeScript declaration files for the Femsolve Cloud Services 3D Viewer/Editor.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -11,18 +11,35 @@ npm install fcs-core-viewer
|
|
|
11
11
|
|
|
12
12
|
## Development Environment
|
|
13
13
|
There are different build configurations depending on what type of product derivative we want to build.
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
|
|
15
|
+
1. Viewer3D Build Configurations
|
|
16
|
+
This version's entry point is under the `Viewer3D/Viewer3DAPI.ts` file. The NPM command will build with webpack the `fcs-viewer-3d.min.js` bundle.
|
|
17
|
+
|
|
18
|
+
Debug build:
|
|
19
|
+
```
|
|
20
|
+
npm run build:vdev
|
|
16
21
|
```
|
|
17
|
-
|
|
22
|
+
Release build:
|
|
18
23
|
```
|
|
19
|
-
|
|
20
|
-
Same as 1) but this will not contain debug symbols and will be obfuscated.
|
|
24
|
+
npm run build:vprod
|
|
21
25
|
```
|
|
22
|
-
|
|
26
|
+
Local hot-reload debug build:
|
|
23
27
|
```
|
|
24
|
-
|
|
28
|
+
npm run vserver
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
2. Editor3D Debug Build
|
|
25
32
|
The entry point is set at `Editor3D/Editor3DAPI.ts` and this compiles the completely fused source code of the Viewer3D and Editor3D.
|
|
33
|
+
|
|
34
|
+
Debug build:
|
|
35
|
+
```
|
|
36
|
+
npm run build:edev
|
|
37
|
+
```
|
|
38
|
+
Release build:
|
|
39
|
+
```
|
|
40
|
+
npm run build:eprod
|
|
26
41
|
```
|
|
27
|
-
|
|
42
|
+
Local hot-reload debug build:
|
|
28
43
|
```
|
|
44
|
+
npm run eserver
|
|
45
|
+
```
|
package/fcs-core-editor@types/Editor3D/Network/{BackendEvents.d.ts → SocketCommandsGateway.d.ts}
RENAMED
|
@@ -24,7 +24,7 @@ export interface IBackendEvents {
|
|
|
24
24
|
* changes can take affect in the model file. Once successful, it is returned
|
|
25
25
|
* back with sockets.
|
|
26
26
|
*/
|
|
27
|
-
export declare class
|
|
27
|
+
export declare class SocketCommandsGateway implements IBackendEvents {
|
|
28
28
|
licenseToken: string;
|
|
29
29
|
sceneWrapper: SceneWrapper;
|
|
30
30
|
treeView: TreeView;
|
|
@@ -64,6 +64,7 @@ export declare class BackendEvents implements IBackendEvents {
|
|
|
64
64
|
set_color_by_quality: any;
|
|
65
65
|
clear_model: any;
|
|
66
66
|
set_element_types: any;
|
|
67
|
+
modify_mesh: any;
|
|
67
68
|
commit_to_document: any;
|
|
68
69
|
remove_from_model: any;
|
|
69
70
|
add_container: any;
|
|
@@ -95,8 +96,8 @@ export declare class BackendEvents implements IBackendEvents {
|
|
|
95
96
|
* Singleton methods
|
|
96
97
|
*/
|
|
97
98
|
private static _instance;
|
|
98
|
-
static getBackendEvents():
|
|
99
|
-
static constructBackendEvents(licenseToken: string, sceneWrapper: SceneWrapper, treeView: TreeView):
|
|
99
|
+
static getBackendEvents(): SocketCommandsGateway;
|
|
100
|
+
static constructBackendEvents(licenseToken: string, sceneWrapper: SceneWrapper, treeView: TreeView): SocketCommandsGateway;
|
|
100
101
|
/**
|
|
101
102
|
* Constructor.
|
|
102
103
|
*/
|
|
@@ -189,6 +190,11 @@ export declare class BackendEvents implements IBackendEvents {
|
|
|
189
190
|
* @param instructions
|
|
190
191
|
*/
|
|
191
192
|
set_element_types(instructions: BackendInstructions): Promise<CommandExecutionResponse>;
|
|
193
|
+
/**
|
|
194
|
+
* This websocket call shall only be used if the
|
|
195
|
+
* @param instructions
|
|
196
|
+
*/
|
|
197
|
+
modify_mesh(instructions: BackendInstructions): Promise<CommandExecutionResponse>;
|
|
192
198
|
/**
|
|
193
199
|
* Saves the currently active model's path, it will mark it as saveable.
|
|
194
200
|
* ToDo: For any other changes that were not committed to, we will need to
|
|
@@ -2,6 +2,7 @@ import * as THREE from "../../../../Viewer3D/three/build/three.module";
|
|
|
2
2
|
import { EdgeSeed } from "../../../../Viewer3D/DataStorage/ModelData/Utilities/EdgeSeed";
|
|
3
3
|
export declare class MeshFace {
|
|
4
4
|
data: {};
|
|
5
|
+
meshName: string;
|
|
5
6
|
faceUIDs: number[];
|
|
6
7
|
elementSize: number;
|
|
7
8
|
elementOrder: number;
|
|
@@ -7,5 +7,5 @@ export declare class Paste {
|
|
|
7
7
|
selectionData: SelectionData;
|
|
8
8
|
treeStructure: TreeStructure;
|
|
9
9
|
constructor();
|
|
10
|
-
perform(operation: PasteOption,
|
|
10
|
+
perform(operation: PasteOption, shapeUIDs: number[], itemUID: number, selectedShapeType?: ModelData.dataTypes): Promise<void>;
|
|
11
11
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { StyleSettings } from '../../Viewer3D/Wrapper/Settings/StyleSettings';
|
|
2
2
|
import { Viewer3DWrapper } from '../../Viewer3D/Wrapper/Viewer3DWrapper';
|
|
3
|
-
import {
|
|
3
|
+
import { SocketCommandsGateway } from '../Network/SocketCommandsGateway';
|
|
4
4
|
/**
|
|
5
5
|
* Main wrapper for 3D editor.
|
|
6
6
|
*/
|
|
7
7
|
export declare class Editor3DWrapper extends Viewer3DWrapper {
|
|
8
8
|
licenseToken: string;
|
|
9
|
-
BackendEvents:
|
|
9
|
+
BackendEvents: SocketCommandsGateway;
|
|
10
10
|
/**
|
|
11
11
|
* Constructor.
|
|
12
12
|
* @param htmlElement The canvas element that will host the viewer.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { File } from
|
|
1
|
+
import { Button } from '../UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/Button';
|
|
2
|
+
import { EntityButton } from '../UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton';
|
|
3
|
+
import { ModelData } from './ModelData/Index';
|
|
4
|
+
import { File } from './ModelData/Items/Files/File';
|
|
5
5
|
type Color = {
|
|
6
6
|
r: number;
|
|
7
7
|
g: number;
|
|
@@ -56,7 +56,7 @@ export declare class SelectionData {
|
|
|
56
56
|
*/
|
|
57
57
|
addEntitySlot(activeButton: EntityButton): void;
|
|
58
58
|
countSelectedEntities(): number;
|
|
59
|
-
outputToStatusbar(text: string): void;
|
|
60
59
|
getDataFromSelected(): {};
|
|
60
|
+
outputToStatusbar(text: string): void;
|
|
61
61
|
}
|
|
62
62
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TreeView } from
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { TreeView } from '../UserInterface/UIComponents/TreeView/TreeView';
|
|
2
|
+
import { SceneWrapper } from '../Wrapper/SceneWrapper';
|
|
3
|
+
import { StatusBar } from '../Common/Diagnostics/StatusBar';
|
|
4
4
|
export declare class Loader {
|
|
5
5
|
name: any;
|
|
6
6
|
stlPath: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as mshpReader from './mshpReader';
|
|
2
|
-
import * as payloadReader from './
|
|
2
|
+
import * as payloadReader from './MeshDeltaReader';
|
|
3
3
|
declare const Response_MeshLoader: {
|
|
4
|
-
|
|
4
|
+
MeshDeltaReader: typeof payloadReader.MeshDeltaReader;
|
|
5
5
|
mshpReader: typeof mshpReader.mshpReader;
|
|
6
6
|
};
|
|
7
7
|
export { Response_MeshLoader };
|
package/fcs-core-editor@types/Viewer3D/Loader/MESHLoader/{payloadReader.d.ts → MeshDeltaReader.d.ts}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as THREE from "../../three/build/three.module";
|
|
2
2
|
import { ModelData } from "../../DataStorage/ModelData/Index";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class MeshDeltaReader {
|
|
4
4
|
/**
|
|
5
5
|
* The Node and Element ID offsets are introduced to have
|
|
6
6
|
* truly unique IDs as the underlying mesh engine does not
|
|
@@ -28,9 +28,10 @@ export declare class PayloadReader {
|
|
|
28
28
|
nodeOctree: InstanceType<typeof ModelData.OctreeDataStructure.NodeOctree>;
|
|
29
29
|
constructor();
|
|
30
30
|
perform(itemName: string, parentUID: number, data: {
|
|
31
|
-
existingNodes:
|
|
32
|
-
addedNodes:
|
|
33
|
-
elements:
|
|
31
|
+
existingNodes: number[];
|
|
32
|
+
addedNodes: number[];
|
|
33
|
+
elements: number[];
|
|
34
|
+
connectivity: number[][];
|
|
34
35
|
}): Promise<string>;
|
|
35
36
|
private createShape;
|
|
36
37
|
private createItem;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { MapStore } from 'nanostores';
|
|
2
|
+
export declare enum DockButton {
|
|
3
|
+
PUSH_BUTTON = "push_button",
|
|
4
|
+
MODAL_BUTTON = "modal_button",
|
|
5
|
+
COLLAPSIBLE_BUTTON = "collapsible_button"
|
|
6
|
+
}
|
|
7
|
+
type BaseDockItem = {
|
|
8
|
+
icon: string;
|
|
9
|
+
isVisible: boolean;
|
|
10
|
+
};
|
|
11
|
+
export type PushButtonItem = BaseDockItem & {
|
|
12
|
+
type: DockButton.PUSH_BUTTON;
|
|
13
|
+
action: () => void;
|
|
14
|
+
};
|
|
15
|
+
export type ModalButtonItem = BaseDockItem & {
|
|
16
|
+
type: DockButton.MODAL_BUTTON;
|
|
17
|
+
message: string;
|
|
18
|
+
};
|
|
19
|
+
export type CollapsibleButtonItem = BaseDockItem & {
|
|
20
|
+
type: DockButton.COLLAPSIBLE_BUTTON;
|
|
21
|
+
children: Omit<PushButtonItem, 'isVisible'>[] | Omit<ModalButtonItem, 'isVisible'>[];
|
|
22
|
+
};
|
|
23
|
+
type DockItem = PushButtonItem | ModalButtonItem | CollapsibleButtonItem;
|
|
24
|
+
export type DockItems = {
|
|
25
|
+
[key: string]: DockItem;
|
|
26
|
+
};
|
|
27
|
+
declare class BDock {
|
|
28
|
+
#private;
|
|
29
|
+
constructor();
|
|
30
|
+
get dockItems(): DockItems;
|
|
31
|
+
addDockItem(dockItemName: string, item: DockItems[string]): void;
|
|
32
|
+
setButtonVisibility(dockItem: string, isVisible: boolean): void;
|
|
33
|
+
get modalStore(): MapStore<any>;
|
|
34
|
+
}
|
|
35
|
+
export declare const Dock: BDock;
|
|
36
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as THREE from '../../../Viewer3D/three/build/three.module';
|
|
2
|
-
import {
|
|
2
|
+
import { SelectionData } from '../../../Viewer3D/DataStorage/SelectionData';
|
|
3
3
|
import { ValidateOnSelection } from '../../../Viewer3D/SelectionTools/SelectionValidation/ValidateOnSelection';
|
|
4
|
+
import { SceneWrapper } from '../../../Viewer3D/Wrapper/SceneWrapper';
|
|
4
5
|
import { TreeCore } from '../../Tree/TreeCore';
|
|
5
|
-
import { SelectionData } from '../../../Viewer3D/DataStorage/SelectionData';
|
|
6
6
|
import { ViewerUIComponents } from '../ViewerUIComponents';
|
|
7
7
|
export declare class EventListeners {
|
|
8
8
|
sceneWrapper: SceneWrapper;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as THREE from '../../../../three/build/three.module';
|
|
2
|
-
import { IViewerHtmlElement } from "../MainMenuComponents/HtmlElementInterface";
|
|
3
|
-
import { Button } from "./Button";
|
|
4
2
|
import { ModelData } from '../../../../DataStorage/ModelData/Index';
|
|
3
|
+
import { IViewerHtmlElement } from '../MainMenuComponents/HtmlElementInterface';
|
|
4
|
+
import { Button } from './Button';
|
|
5
5
|
export type EntityDropDownMenuType = {
|
|
6
6
|
id?: number;
|
|
7
7
|
title?: string;
|
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
* that leverage the FCS Cloud Viewer and Editor.
|
|
4
4
|
*/
|
|
5
5
|
export * from './Common/Foundations/Index';
|
|
6
|
+
export * from './DataStorage/Index';
|
|
6
7
|
export * from './ViewerEntities/Index';
|
|
7
8
|
export * from './Wrapper/Settings/Index';
|
|
8
|
-
export * from './DataStorage/Index';
|
|
9
|
-
export * from './Wrapper/Index';
|
|
10
9
|
export * from './Common/Index';
|
|
11
10
|
export * from './Loader/Index';
|
|
11
|
+
export * from './UI/Index';
|
|
12
12
|
export * from './ViewerCommands/Index';
|
|
13
|
+
export * from './Wrapper/Index';
|
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
declare const Response_CAE_CreationTools_0D_1D: {
|
|
3
|
-
CreateNodeByXYZ: typeof CreateNodeByXYZ.CreateNodeByXYZ;
|
|
4
|
-
};
|
|
1
|
+
declare const Response_CAE_CreationTools_0D_1D: {};
|
|
5
2
|
export { Response_CAE_CreationTools_0D_1D };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export declare class ManualElementCreation {
|
|
2
2
|
constructor();
|
|
3
3
|
process(itemName: string, parentUID: number, data: {
|
|
4
|
-
existingNodes:
|
|
5
|
-
addedNodes:
|
|
6
|
-
elements:
|
|
4
|
+
existingNodes: number[];
|
|
5
|
+
addedNodes: number[];
|
|
6
|
+
elements: number[];
|
|
7
|
+
connectivity: number[][];
|
|
7
8
|
}): Promise<void>;
|
|
8
9
|
}
|
|
@@ -1,22 +1,6 @@
|
|
|
1
|
-
import { SelectionData } from "../../../DataStorage/SelectionData";
|
|
2
|
-
import { TreeStructure } from "../../../Tree/TreeStructure";
|
|
3
|
-
import { TreeCore } from "../../../Tree/TreeCore";
|
|
4
|
-
import { EntityButton } from "../../../UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton";
|
|
5
|
-
import { ViewerUIComponents } from "../../../UserInterface/ViewerUIComponents";
|
|
6
1
|
export declare enum PasteOption {
|
|
7
2
|
cutItem = 0,
|
|
8
3
|
copyItem = 1,
|
|
9
4
|
cutShape = 2,
|
|
10
5
|
copyShape = 3
|
|
11
6
|
}
|
|
12
|
-
export declare class Paste {
|
|
13
|
-
selectionData: SelectionData;
|
|
14
|
-
treeStructure: TreeStructure;
|
|
15
|
-
treeCore: TreeCore;
|
|
16
|
-
uiComponents: ViewerUIComponents;
|
|
17
|
-
selected: {};
|
|
18
|
-
components: {};
|
|
19
|
-
activeButton: EntityButton;
|
|
20
|
-
constructor();
|
|
21
|
-
process(data: {}): Promise<void>;
|
|
22
|
-
}
|
|
@@ -9,7 +9,6 @@ declare const ViewerCommands: {
|
|
|
9
9
|
CommonCoreCommands: {
|
|
10
10
|
AddItem: typeof import("./Common/Core/AddItem").AddItem;
|
|
11
11
|
PasteOption: typeof import("./Common/Core/Paste").PasteOption;
|
|
12
|
-
Paste: typeof import("./Common/Core/Paste").Paste;
|
|
13
12
|
Assign: typeof import("./Common/Core/Assign").Assign;
|
|
14
13
|
Delete: typeof import("./Common/Core/Delete").Delete;
|
|
15
14
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as THREE from '../../../Viewer3D/three/build/three.module';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { TreeCore } from "../../Tree/TreeCore";
|
|
6
|
-
import { SelectionData } from "../../../Viewer3D/DataStorage/SelectionData";
|
|
2
|
+
import { MeshWrapper } from '../../../Viewer3D/Wrapper/MeshWrapper';
|
|
3
|
+
import { SceneWrapper } from '../../../Viewer3D/Wrapper/SceneWrapper';
|
|
4
|
+
import { SelectionData } from '../../../Viewer3D/DataStorage/SelectionData';
|
|
7
5
|
import { TreeView } from '../../../Viewer3D/UserInterface/UIComponents/TreeView/TreeView';
|
|
6
|
+
import { TreeCore } from '../../Tree/TreeCore';
|
|
7
|
+
import { TreeStructure } from '../../Tree/TreeStructure';
|
|
8
8
|
import { EntityButton } from '../../UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton';
|
|
9
9
|
import { ModelContextMenu } from '../../UserInterface/UIComponents/Model/Model';
|
|
10
10
|
export declare class TreeViewEventHandler {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MeshWrapper } from '../../Wrapper/MeshWrapper';
|
|
1
|
+
import { SelectionData } from '../../DataStorage/SelectionData';
|
|
3
2
|
import { ValidateOnSelection } from '../../SelectionTools/SelectionValidation/ValidateOnSelection';
|
|
4
3
|
import { TreeView } from '../../UserInterface/UIComponents/TreeView/TreeView';
|
|
5
|
-
import {
|
|
4
|
+
import { MeshWrapper } from '../../Wrapper/MeshWrapper';
|
|
5
|
+
import { SceneWrapper } from '../../Wrapper/SceneWrapper';
|
|
6
6
|
/**
|
|
7
7
|
* Find
|
|
8
8
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcs-core-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.1",
|
|
4
4
|
"description": "3D Viewer in the Cloud",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Femsolve Kft."
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
},
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"devDependencies": {
|
|
22
|
+
"@tailwindcss/postcss": "^4.0.16",
|
|
23
|
+
"@types/alpinejs__collapse": "^3.13.4",
|
|
24
|
+
"@types/alpinejs__focus": "^3.13.4",
|
|
22
25
|
"@types/uuid": "^9.0.2",
|
|
23
26
|
"copy-webpack-plugin": "^11.0.0",
|
|
24
27
|
"css-loader": "^6.7.3",
|
|
@@ -27,8 +30,10 @@
|
|
|
27
30
|
"javascript-obfuscator": "^4.1.0",
|
|
28
31
|
"mini-css-extract-plugin": "^2.7.5",
|
|
29
32
|
"null-loader": "^4.0.1",
|
|
33
|
+
"postcss": "^8.5.3",
|
|
34
|
+
"postcss-loader": "^8.1.1",
|
|
30
35
|
"style-loader": "^3.3.2",
|
|
31
|
-
"tailwindcss": "^
|
|
36
|
+
"tailwindcss": "^4.0.16",
|
|
32
37
|
"ts-loader": "^9.4.2",
|
|
33
38
|
"typescript": "^4.9.5",
|
|
34
39
|
"webpack": "^5.89.0",
|
|
@@ -37,9 +42,13 @@
|
|
|
37
42
|
"webpack-obfuscator": "^3.5.1"
|
|
38
43
|
},
|
|
39
44
|
"dependencies": {
|
|
45
|
+
"@alpinejs/collapse": "^3.14.9",
|
|
46
|
+
"@alpinejs/focus": "^3.14.9",
|
|
47
|
+
"alpinejs": "^3.14.9",
|
|
40
48
|
"axios": "^1.5.1",
|
|
41
49
|
"dom-to-image": "^2.6.0",
|
|
42
50
|
"fcs-core-viewer": "^0.12.5",
|
|
51
|
+
"nanostores": "^0.11.4",
|
|
43
52
|
"socket.io-client": "^4.7.2",
|
|
44
53
|
"uuid": "^9.0.1"
|
|
45
54
|
}
|
package/fcs-core-editor@types/Editor3D/Operations/CAE/CreationTools_0D_1D/CreateRigidCoupling.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ElementData } from "../../../../Viewer3D/DataStorage/ModelData/Elements/ElementTypes/ElementTypes";
|
|
2
|
-
export declare class CreateDistributingCoupling {
|
|
3
|
-
id: number;
|
|
4
|
-
Modes: {
|
|
5
|
-
CalcMasterNode: number;
|
|
6
|
-
SelectMasterNode: number;
|
|
7
|
-
};
|
|
8
|
-
shape1UIDs: number[];
|
|
9
|
-
shape2UIDs: number[];
|
|
10
|
-
weight: number;
|
|
11
|
-
solverProfile: ElementData.Solvers;
|
|
12
|
-
elementType: ElementData.ElementTypes;
|
|
13
|
-
constructor(data: {});
|
|
14
|
-
perform(): Promise<boolean>;
|
|
15
|
-
}
|