vim-web 0.3.24 → 0.3.26
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/types/{vimWebIndex.d.ts → index.d.ts} +1 -1
- package/dist/types/react-viewer/bim/bimInfoData.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimInfoObject.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimInfoPanel.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimInfoVim.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimPanel.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimSearch.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimTree.d.ts +1 -1
- package/dist/types/react-viewer/bim/bimTreeData.d.ts +1 -1
- package/dist/types/react-viewer/controlbar/controlBar.d.ts +1 -1
- package/dist/types/react-viewer/controlbar/controlBarCommands.d.ts +1 -1
- package/dist/types/react-viewer/controlbar/measureState.d.ts +1 -1
- package/dist/types/react-viewer/controlbar/pointerState.d.ts +1 -1
- package/dist/types/react-viewer/controlbar/sectionBoxState.d.ts +1 -1
- package/dist/types/react-viewer/helpers/camera.d.ts +1 -1
- package/dist/types/react-viewer/helpers/cameraObserver.d.ts +1 -1
- package/dist/types/react-viewer/helpers/cursor.d.ts +1 -1
- package/dist/types/react-viewer/helpers/element.d.ts +1 -1
- package/dist/types/react-viewer/helpers/inputs.d.ts +1 -1
- package/dist/types/react-viewer/helpers/isolation.d.ts +1 -1
- package/dist/types/react-viewer/helpers/loadRequest.d.ts +1 -1
- package/dist/types/react-viewer/panels/contextMenu.d.ts +1 -1
- package/dist/types/react-viewer/panels/toast.d.ts +1 -1
- package/dist/types/react-viewer/settings/menuSettings.d.ts +1 -1
- package/dist/types/react-viewer/settings/settingsState.d.ts +1 -1
- package/dist/types/react-viewer/sidePanel/sidePanel.d.ts +1 -1
- package/dist/types/react-viewer/webgl/viewerState.d.ts +1 -1
- package/dist/types/react-viewer/webgl/webglComponent.d.ts +2 -2
- package/dist/types/react-viewer/webgl/webglComponentRef.d.ts +1 -1
- package/dist/types/react-viewer/webgl/webglLoading.d.ts +1 -1
- package/dist/types/webgl-viewer/vim-loader/progressive/open.d.ts +1 -1
- package/dist/types/webgl-viewer/vim-loader/progressive/subsetRequest.d.ts +1 -1
- package/dist/types/webgl-viewer/vim-loader/progressive/vimRequest.d.ts +1 -1
- package/dist/types/webgl-viewer/vim-webgl-viewer/selection.d.ts +1 -1
- package/dist/vim-web.iife.js.map +1 -1
- package/dist/vim-web.mjs.map +1 -1
- package/package.json +1 -1
- /package/dist/types/webgl-viewer/{index.d.ts → webglViewerIndex.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * as WebglViewer from './webgl-viewer/
|
|
1
|
+
export * as WebglViewer from './webgl-viewer/webglViewerIndex';
|
|
2
2
|
export * as WebglReact from './react-viewer/webgl/webglComponent';
|
|
3
3
|
export * as UltraViewer from './ultra-viewer/ultraViewerIndex';
|
|
4
4
|
export * as UltraReact from './react-viewer/ultra/ultraComponent';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as VIM from '../../webgl-viewer/
|
|
1
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
2
2
|
import * as BIM from './bimInfoData';
|
|
3
3
|
export declare function getVimData(vim: VIM.Vim): Promise<BIM.Data>;
|
|
4
4
|
export declare function getHeader(vim: VIM.Vim): Promise<BIM.Entry[]>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import * as VIM from '../../webgl-viewer/
|
|
5
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
6
6
|
import { TreeActionRef } from './bimTree';
|
|
7
7
|
import { Isolation } from '../helpers/isolation';
|
|
8
8
|
import { ComponentCamera } from '../helpers/camera';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import 'react-complex-tree/lib/style.css';
|
|
6
|
-
import * as VIM from '../../webgl-viewer/
|
|
6
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
7
7
|
import { ComponentCamera as CameraHelpers } from '../helpers/camera';
|
|
8
8
|
import { Isolation } from '../helpers/isolation';
|
|
9
9
|
import { BimTreeData } from './bimTreeData';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
|
-
import * as VIM from '../../webgl-viewer/
|
|
4
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
5
5
|
import { TreeItem } from 'react-complex-tree';
|
|
6
6
|
import { MapTree } from '../helpers/data';
|
|
7
7
|
import { AugmentedElement } from '../helpers/element';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
|
-
import * as VIM from '../../webgl-viewer/
|
|
4
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
5
5
|
import { ComponentCamera } from '../helpers/camera';
|
|
6
6
|
import { CursorManager } from '../helpers/cursor';
|
|
7
7
|
import { Isolation } from '../helpers/isolation';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as VIM from '../../webgl-viewer/
|
|
1
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
2
2
|
export declare function getPointerState(viewer: VIM.Viewer): {
|
|
3
3
|
mode: VIM.PointerMode;
|
|
4
4
|
setMode: import("react").Dispatch<import("react").SetStateAction<VIM.PointerMode>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
|
-
import * as VIM from '../../webgl-viewer/
|
|
4
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
5
5
|
import { SideState } from '../sidePanel/sideState';
|
|
6
6
|
import { Isolation } from './isolation';
|
|
7
7
|
import { ComponentCamera } from './camera';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import { WebglViewer } from '
|
|
5
|
+
import { WebglViewer } from '../..';
|
|
6
6
|
import { Isolation } from '../helpers/isolation';
|
|
7
7
|
import { ComponentCamera } from '../helpers/camera';
|
|
8
8
|
import { TreeActionRef } from '../bim/bimTree';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import * as VIM from '../../webgl-viewer/
|
|
5
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
6
6
|
import { SideState } from '../sidePanel/sideState';
|
|
7
7
|
export type ToastConfigSpeed = {
|
|
8
8
|
visible: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
|
-
import * as VIM from '../../webgl-viewer/
|
|
4
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
5
5
|
import { ComponentSettings, PartialComponentSettings } from './settings';
|
|
6
6
|
export type SettingsState = {
|
|
7
7
|
value: ComponentSettings;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import * as VIM from '../../webgl-viewer/
|
|
5
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
6
6
|
import { SideState } from './sideState';
|
|
7
7
|
import { VimComponentContainer } from '../container';
|
|
8
8
|
/**
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import '../style.css';
|
|
5
5
|
import '../../webgl-viewer/style.css';
|
|
6
|
-
import * as VIM from '../../webgl-viewer/
|
|
6
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
7
7
|
import { PartialComponentSettings } from '../settings/settings';
|
|
8
8
|
import { VimComponentContainer } from '../container';
|
|
9
9
|
import { VimComponentRef } from './webglComponentRef';
|
|
10
|
-
export * as VIM from '../../webgl-viewer/
|
|
10
|
+
export * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
11
11
|
export * as THREE from 'three';
|
|
12
12
|
export * as ContextMenu from '../panels/contextMenu';
|
|
13
13
|
export * as BimInfo from '../bim/bimInfoData';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module public-api
|
|
3
3
|
*/
|
|
4
|
-
import * as VIM from '../../webgl-viewer/
|
|
4
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
5
5
|
import { ContextMenuCustomization } from '../panels/contextMenu';
|
|
6
6
|
import { ComponentSettings } from '../settings/settings';
|
|
7
7
|
import { Isolation } from '../helpers/isolation';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module viw-webgl-react
|
|
3
3
|
*/
|
|
4
|
-
import * as VIM from '../../webgl-viewer/
|
|
4
|
+
import * as VIM from '../../webgl-viewer/webglViewerIndex';
|
|
5
5
|
import { LoadRequest } from '../helpers/loadRequest';
|
|
6
6
|
import { ModalRef } from '../panels/modal';
|
|
7
7
|
type AddSettings = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VimPartialSettings } from '../vimSettings';
|
|
2
2
|
import { Vim } from '../vim';
|
|
3
|
-
import { VimSource } from '../../
|
|
3
|
+
import { VimSource } from '../../webglViewerIndex';
|
|
4
4
|
import { BFast, IProgressLogs } from 'vim-format';
|
|
5
5
|
/**
|
|
6
6
|
* Asynchronously opens a vim object from a given source with the provided settings.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module vim-loader
|
|
3
3
|
*/
|
|
4
|
-
import { Vimx, Scene } from '
|
|
4
|
+
import { Vimx, Scene } from '../../webglViewerIndex';
|
|
5
5
|
import { G3dSubset } from './g3dSubset';
|
|
6
6
|
export type LoadSettings = {
|
|
7
7
|
/** Delay in ms between each rendering list update. @default: 400ms */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { VimPartialSettings } from '../vimSettings';
|
|
2
2
|
import { Vim } from '../vim';
|
|
3
3
|
import { RequestResult } from '../../utils/requestResult';
|
|
4
|
-
import { VimSource } from '../../
|
|
4
|
+
import { VimSource } from '../../webglViewerIndex';
|
|
5
5
|
import { IProgressLogs } from 'vim-format';
|
|
6
6
|
export type RequestSource = {
|
|
7
7
|
url?: string;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @module viw-webgl-viewer
|
|
3
3
|
*/
|
|
4
4
|
import * as THREE from 'three';
|
|
5
|
-
import { Vim, ViewerMaterials } from '
|
|
5
|
+
import { Vim, ViewerMaterials } from '../webglViewerIndex';
|
|
6
6
|
import { GizmoMarker } from './gizmos/markers/gizmoMarker';
|
|
7
7
|
import { Object3D } from '../vim-loader/object3D';
|
|
8
8
|
export type SelectableObject = Object3D | GizmoMarker;
|