@xeokit/xeokit-sdk 2.5.2-beta-1 → 2.5.2-beta-2

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": "@xeokit/xeokit-sdk",
3
- "version": "2.5.2-beta-1",
3
+ "version": "2.5.2-beta-2",
4
4
  "description": "Web Programming Toolkit for 3D/2D BIM and AEC Graphics",
5
5
  "module": "./dist/xeokit-sdk.es.js",
6
6
  "main": "./dist/xeokit-sdk.cjs.js",
@@ -1,7 +1,7 @@
1
1
  import {math} from "./scene/math/math.js";
2
2
 
3
3
  let maxDataTextureHeight = 1 << 16;
4
- let maxGeometryBatchSize = 4096
4
+ let maxGeometryBatchSize = 5000000
5
5
 
6
6
  /**
7
7
  * Manages global configurations for all {@link Viewer}s.
@@ -4,9 +4,9 @@ import { TreeViewNode } from "./TreeViewNode";
4
4
 
5
5
  export declare type TreeViewPluginConfiguration = {
6
6
  /** DOM element ID to contain the TreeViewPlugin */
7
- containerElementId: string;
7
+ containerElementId?: string;
8
8
  /** DOM element to contain the TreeViewPlugin. */
9
- containerElement: HTMLElement;
9
+ containerElement?: HTMLElement;
10
10
  /** When ````true```` (default), will automatically add each model as it's created. Set this ````false```` if you want to manually add models using {@link TreeViewPlugin.addModel} instead. */
11
11
  autoAddModels?: boolean;
12
12
  /** Optional depth to which to initially expand the tree. */