@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/dist/xeokit-sdk.cjs.js +1 -1
- package/dist/xeokit-sdk.es.js +1 -1
- package/dist/xeokit-sdk.es5.js +1 -1
- package/dist/xeokit-sdk.min.cjs.js +1 -1
- package/dist/xeokit-sdk.min.es.js +1 -1
- package/dist/xeokit-sdk.min.es5.js +1 -1
- package/package.json +1 -1
- package/src/viewer/Configs.js +1 -1
- package/types/plugins/TreeViewPlugin/TreeViewPlugin.d.ts +2 -2
package/package.json
CHANGED
package/src/viewer/Configs.js
CHANGED
|
@@ -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
|
|
7
|
+
containerElementId?: string;
|
|
8
8
|
/** DOM element to contain the TreeViewPlugin. */
|
|
9
|
-
containerElement
|
|
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. */
|