@mxmweb/xviewer 1.0.28 → 1.0.31

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
@@ -5,7 +5,7 @@
5
5
  "style": "assets/style.css",
6
6
  "types": "lib_enter.d.ts",
7
7
  "private": false,
8
- "version": "1.0.28",
8
+ "version": "1.0.31",
9
9
  "author": "hanfeng_Zhang",
10
10
  "type": "module",
11
11
  "scripts": {
@@ -7,6 +7,7 @@ interface TreeComponentProps {
7
7
  theme: any;
8
8
  modelStyle: TreeModelStyle;
9
9
  label: string;
10
+ activableParentNode?: boolean;
10
11
  }
11
12
  export declare const TreeComponent: React.FC<TreeComponentProps>;
12
13
  export {};
@@ -165,6 +165,7 @@ export type DynamicDashView = {
165
165
  defaultActiveId: string;
166
166
  model?: 'tree' | 'tabs' | 'hero' | null;
167
167
  modelStyle?: TreeModelStyle | TabsModelStyle;
168
+ activable_parentNode?: boolean;
168
169
  views: ViewType[];
169
170
  dataSource?: DataSource;
170
171
  eventsEmit?: (name: string, data?: any, appFn?: any) => any;