xframelib 0.4.2 → 0.4.3
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/README.md +1 -0
- package/dist/controls/vuewindow/index.d.ts +2 -2
- package/dist/controls/vuewindow/style.d.ts +34 -1
- package/dist/index.cjs +4 -4
- package/dist/index.css +79 -80
- package/dist/index.js +4 -4
- package/dist/model/Layout.d.ts +39 -0
- package/package.json +12 -13
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference path="../../../../../../src/shims-vue.d.ts" />
|
|
2
2
|
import VWindow from './window/index.vue';
|
|
3
|
-
import { StyleBlack, StyleWhite, StyleMetal } from './style';
|
|
3
|
+
import { StyleBlack, StyleWhite, StyleMetal, StyleGrayblue } from './style';
|
|
4
4
|
export { WindowResizeEvent } from './window/utils';
|
|
5
|
-
export { StyleBlack, StyleWhite, StyleMetal, VWindow };
|
|
5
|
+
export { StyleBlack, StyleWhite, StyleMetal, StyleGrayblue, VWindow };
|
|
6
6
|
export declare const WindowType: typeof import("*.vue");
|
|
@@ -10,7 +10,8 @@ export interface WindowStyle {
|
|
|
10
10
|
export declare enum EnumWindowStyle {
|
|
11
11
|
StyleBlack = 0,
|
|
12
12
|
StyleWhite = 1,
|
|
13
|
-
StyleMetal = 2
|
|
13
|
+
StyleMetal = 2,
|
|
14
|
+
StyleGrayblue = 3
|
|
14
15
|
}
|
|
15
16
|
export declare const StyleBlack: {
|
|
16
17
|
window: {
|
|
@@ -75,3 +76,35 @@ export declare const StyleMetal: {
|
|
|
75
76
|
backgroundColor: string;
|
|
76
77
|
};
|
|
77
78
|
};
|
|
79
|
+
/**
|
|
80
|
+
* 地球的窗体样式-浅灰蓝色
|
|
81
|
+
*/
|
|
82
|
+
export declare const StyleGrayblue: {
|
|
83
|
+
window: {
|
|
84
|
+
color: string;
|
|
85
|
+
fontSize: string;
|
|
86
|
+
boxShadow: string;
|
|
87
|
+
backgroundColor: string;
|
|
88
|
+
borderRadius: string;
|
|
89
|
+
};
|
|
90
|
+
titlebar: {
|
|
91
|
+
backgroundColor: string;
|
|
92
|
+
border: string;
|
|
93
|
+
borderRadius: string;
|
|
94
|
+
fontSize: string;
|
|
95
|
+
fontWeight: number;
|
|
96
|
+
color: string;
|
|
97
|
+
};
|
|
98
|
+
content: {};
|
|
99
|
+
button: {
|
|
100
|
+
color: string;
|
|
101
|
+
fontSize: string;
|
|
102
|
+
};
|
|
103
|
+
buttonHover: {
|
|
104
|
+
backgroundColor: string;
|
|
105
|
+
};
|
|
106
|
+
buttonActive: {
|
|
107
|
+
color: string;
|
|
108
|
+
backgroundColor: string;
|
|
109
|
+
};
|
|
110
|
+
};
|