xframelib 0.9.6 → 0.9.8
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.
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { LayoutContainerEnum, IWidgetConfig } from '../../model/Layout';
|
|
2
|
-
import { Ref
|
|
2
|
+
import { Ref } from 'vue';
|
|
3
3
|
/**
|
|
4
4
|
* 布局对象定义
|
|
5
5
|
*/
|
|
6
6
|
export interface ILayoutContainer {
|
|
7
|
-
topContainer:
|
|
8
|
-
centerBackContainer:
|
|
9
|
-
centerMainContainer:
|
|
10
|
-
centerFrontContainer:
|
|
11
|
-
bottomContainer:
|
|
12
|
-
leftContainer:
|
|
13
|
-
rightContainer:
|
|
7
|
+
topContainer: Ref<HTMLElement | undefined>;
|
|
8
|
+
centerBackContainer: Ref<HTMLElement | undefined>;
|
|
9
|
+
centerMainContainer: Ref<HTMLElement | undefined>;
|
|
10
|
+
centerFrontContainer: Ref<HTMLElement | undefined>;
|
|
11
|
+
bottomContainer: Ref<HTMLElement | undefined>;
|
|
12
|
+
leftContainer: Ref<HTMLElement | undefined>;
|
|
13
|
+
rightContainer: Ref<HTMLElement | undefined>;
|
|
14
14
|
}
|
|
15
15
|
export declare class LayoutManager {
|
|
16
16
|
private layoutState;
|
|
@@ -74,7 +74,7 @@ export declare class LayoutManager {
|
|
|
74
74
|
* @param enumContainer
|
|
75
75
|
* @returns
|
|
76
76
|
*/
|
|
77
|
-
getLayoutContainer(enumContainer: LayoutContainerEnum): HTMLElement |
|
|
77
|
+
getLayoutContainer(enumContainer: LayoutContainerEnum): HTMLElement | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* 改变容器可见性
|
|
80
80
|
* @param enumContainer
|