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 CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  基于 VUE3+Hprose+Typescript 的前端框架
4
4
 
5
+ - v0.4.3 修改组件卸载事件的错误;增加用于大屏的浅灰色窗体样式
5
6
  - v0.4.2 重要修改:修改打包方式;支持组件导出;新增布局组件及管理方法;requestFullScreen 不传要素窗体全屏
6
7
  - v0.4.1 解决补充遗漏的 BigFileDownload 类;
7
8
  - v0.4.0 增加 isTool 的相关函数,修改补充方法,增加导出 IUser;
@@ -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
+ };