xframelib 0.7.3 → 0.7.5
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 +22 -18
- package/dist/api/Token.d.ts +15 -15
- package/dist/api/User.d.ts +49 -49
- package/dist/api/index.d.ts +2 -2
- package/dist/assets/output-ad5f5cbf.css +307 -0
- package/dist/controls/collapsepanel/VCollapsiblePanel.vue.d.ts +27 -27
- package/dist/controls/collapsepanel/VCollapsiblePanelGroup.vue.d.ts +33 -33
- package/dist/controls/collapsepanel/color.util.d.ts +1 -1
- package/dist/controls/collapsepanel/composables/store.d.ts +7 -7
- package/dist/controls/collapsepanel/constant.d.ts +1 -1
- package/dist/controls/collapsepanel/index.d.ts +3 -3
- package/dist/controls/layoutcontainer/LayoutManager.d.ts +119 -112
- package/dist/controls/layoutcontainer/index.d.ts +3 -3
- package/dist/controls/layoutcontainer/layout.vue.d.ts +61 -60
- package/dist/controls/splitpanes/index.d.ts +3 -3
- package/dist/controls/vuewindow/SinglePointerEvent.d.ts +23 -23
- package/dist/controls/vuewindow/dom.d.ts +16 -16
- package/dist/controls/vuewindow/draggable_helper.d.ts +20 -20
- package/dist/controls/vuewindow/index.d.ts +6 -6
- package/dist/controls/vuewindow/resizable_helper.d.ts +16 -16
- package/dist/controls/vuewindow/style.d.ts +110 -110
- package/dist/controls/vuewindow/window/Button.vue.d.ts +29 -29
- package/dist/controls/vuewindow/window/index.vue.d.ts +211 -211
- package/dist/controls/vuewindow/window/utils.d.ts +17 -17
- package/dist/controls/vuewindow/z_element.d.ts +11 -11
- package/dist/core/Global.d.ts +2 -2
- package/dist/core/IModel.d.ts +46 -46
- package/dist/core/Init.d.ts +20 -20
- package/dist/core/MsgHelper.d.ts +13 -13
- package/dist/core/SysEvents.d.ts +24 -24
- package/dist/core/index.d.ts +4 -4
- package/dist/hprose/HproseClient.d.ts +20 -20
- package/dist/hprose/ProxyClient.d.ts +39 -39
- package/dist/hprose/index.d.ts +11 -11
- package/dist/index.cjs +10 -5
- package/dist/index.css +20 -5
- package/dist/index.d.ts +11 -11
- package/dist/index.js +10 -5
- package/dist/mitt/index.d.ts +25 -25
- package/dist/model/Config.d.ts +151 -151
- package/dist/model/Constants.d.ts +19 -19
- package/dist/model/IRole.d.ts +89 -89
- package/dist/model/IUserModel.d.ts +67 -67
- package/dist/model/Layout.d.ts +83 -83
- package/dist/model/index.d.ts +5 -5
- package/dist/permission/RoleSysRightHelper.d.ts +27 -27
- package/dist/permission/filter.d.ts +45 -45
- package/dist/permission/index.d.ts +4 -4
- package/dist/permission/register.d.ts +24 -24
- package/dist/permission/right.d.ts +15 -15
- package/dist/utils/AxiosHelper.d.ts +58 -58
- package/dist/utils/BigFileDownload.d.ts +117 -117
- package/dist/utils/CodeHelper.d.ts +14 -14
- package/dist/utils/Color.d.ts +74 -74
- package/dist/utils/FileDownload.d.ts +36 -36
- package/dist/utils/FileUpload.d.ts +90 -90
- package/dist/utils/H5Tool.d.ts +158 -150
- package/dist/utils/IsTool.d.ts +101 -101
- package/dist/utils/JQuery.d.ts +41 -41
- package/dist/utils/LockHelper.d.ts +17 -17
- package/dist/utils/SignalRClient.d.ts +8 -8
- package/dist/utils/Storage.d.ts +66 -66
- package/dist/utils/StringUtils.d.ts +15 -15
- package/dist/utils/Time.d.ts +11 -11
- package/dist/utils/TokenHelper.d.ts +18 -18
- package/dist/utils/URLTool.d.ts +18 -18
- package/dist/utils/ValidateTool.d.ts +149 -149
- package/dist/utils/WaterMark.d.ts +10 -10
- package/dist/utils/XXTEA.d.ts +15 -15
- package/dist/utils/index.d.ts +21 -21
- package/dist/utils/uuid.d.ts +3 -3
- package/package.json +19 -19
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
export type Style = Partial<CSSStyleDeclaration>;
|
|
2
|
-
export interface WindowStyle {
|
|
3
|
-
window: Style;
|
|
4
|
-
titlebar: Style;
|
|
5
|
-
content: Style;
|
|
6
|
-
button: Style;
|
|
7
|
-
buttonHover: Style;
|
|
8
|
-
buttonActive: Style;
|
|
9
|
-
}
|
|
10
|
-
export declare enum EnumWindowStyle {
|
|
11
|
-
StyleBlack = 0,
|
|
12
|
-
StyleWhite = 1,
|
|
13
|
-
StyleMetal = 2,
|
|
14
|
-
StyleGrayblue = 3
|
|
15
|
-
}
|
|
16
|
-
export declare const StyleBlack: {
|
|
17
|
-
window: {
|
|
18
|
-
color: string;
|
|
19
|
-
boxShadow: string;
|
|
20
|
-
backgroundColor: string;
|
|
21
|
-
};
|
|
22
|
-
titlebar: {
|
|
23
|
-
backgroundColor: string;
|
|
24
|
-
};
|
|
25
|
-
content: {};
|
|
26
|
-
button: {
|
|
27
|
-
color: string;
|
|
28
|
-
};
|
|
29
|
-
buttonHover: {
|
|
30
|
-
backgroundColor: string;
|
|
31
|
-
};
|
|
32
|
-
buttonActive: {
|
|
33
|
-
color: string;
|
|
34
|
-
backgroundColor: string;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
export declare const StyleWhite: {
|
|
38
|
-
window: {
|
|
39
|
-
color: string;
|
|
40
|
-
boxShadow: string;
|
|
41
|
-
backgroundColor: string;
|
|
42
|
-
};
|
|
43
|
-
titlebar: {
|
|
44
|
-
backgroundColor: string;
|
|
45
|
-
};
|
|
46
|
-
content: {};
|
|
47
|
-
button: {
|
|
48
|
-
color: string;
|
|
49
|
-
};
|
|
50
|
-
buttonHover: {
|
|
51
|
-
backgroundColor: string;
|
|
52
|
-
};
|
|
53
|
-
buttonActive: {
|
|
54
|
-
color: string;
|
|
55
|
-
backgroundColor: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
export declare const StyleMetal: {
|
|
59
|
-
window: {
|
|
60
|
-
color: string;
|
|
61
|
-
boxShadow: string;
|
|
62
|
-
background: string;
|
|
63
|
-
};
|
|
64
|
-
titlebar: {
|
|
65
|
-
background: string;
|
|
66
|
-
};
|
|
67
|
-
content: {};
|
|
68
|
-
button: {
|
|
69
|
-
color: string;
|
|
70
|
-
};
|
|
71
|
-
buttonHover: {
|
|
72
|
-
backgroundColor: string;
|
|
73
|
-
};
|
|
74
|
-
buttonActive: {
|
|
75
|
-
color: string;
|
|
76
|
-
backgroundColor: string;
|
|
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
|
-
};
|
|
1
|
+
export type Style = Partial<CSSStyleDeclaration>;
|
|
2
|
+
export interface WindowStyle {
|
|
3
|
+
window: Style;
|
|
4
|
+
titlebar: Style;
|
|
5
|
+
content: Style;
|
|
6
|
+
button: Style;
|
|
7
|
+
buttonHover: Style;
|
|
8
|
+
buttonActive: Style;
|
|
9
|
+
}
|
|
10
|
+
export declare enum EnumWindowStyle {
|
|
11
|
+
StyleBlack = 0,
|
|
12
|
+
StyleWhite = 1,
|
|
13
|
+
StyleMetal = 2,
|
|
14
|
+
StyleGrayblue = 3
|
|
15
|
+
}
|
|
16
|
+
export declare const StyleBlack: {
|
|
17
|
+
window: {
|
|
18
|
+
color: string;
|
|
19
|
+
boxShadow: string;
|
|
20
|
+
backgroundColor: string;
|
|
21
|
+
};
|
|
22
|
+
titlebar: {
|
|
23
|
+
backgroundColor: string;
|
|
24
|
+
};
|
|
25
|
+
content: {};
|
|
26
|
+
button: {
|
|
27
|
+
color: string;
|
|
28
|
+
};
|
|
29
|
+
buttonHover: {
|
|
30
|
+
backgroundColor: string;
|
|
31
|
+
};
|
|
32
|
+
buttonActive: {
|
|
33
|
+
color: string;
|
|
34
|
+
backgroundColor: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export declare const StyleWhite: {
|
|
38
|
+
window: {
|
|
39
|
+
color: string;
|
|
40
|
+
boxShadow: string;
|
|
41
|
+
backgroundColor: string;
|
|
42
|
+
};
|
|
43
|
+
titlebar: {
|
|
44
|
+
backgroundColor: string;
|
|
45
|
+
};
|
|
46
|
+
content: {};
|
|
47
|
+
button: {
|
|
48
|
+
color: string;
|
|
49
|
+
};
|
|
50
|
+
buttonHover: {
|
|
51
|
+
backgroundColor: string;
|
|
52
|
+
};
|
|
53
|
+
buttonActive: {
|
|
54
|
+
color: string;
|
|
55
|
+
backgroundColor: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export declare const StyleMetal: {
|
|
59
|
+
window: {
|
|
60
|
+
color: string;
|
|
61
|
+
boxShadow: string;
|
|
62
|
+
background: string;
|
|
63
|
+
};
|
|
64
|
+
titlebar: {
|
|
65
|
+
background: string;
|
|
66
|
+
};
|
|
67
|
+
content: {};
|
|
68
|
+
button: {
|
|
69
|
+
color: string;
|
|
70
|
+
};
|
|
71
|
+
buttonHover: {
|
|
72
|
+
backgroundColor: string;
|
|
73
|
+
};
|
|
74
|
+
buttonActive: {
|
|
75
|
+
color: string;
|
|
76
|
+
backgroundColor: string;
|
|
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
|
+
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
disabled: {
|
|
4
|
-
type: PropType<boolean>;
|
|
5
|
-
default: boolean;
|
|
6
|
-
};
|
|
7
|
-
windowStyle: {
|
|
8
|
-
type: ObjectConstructor;
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
}, {
|
|
12
|
-
hover: import("vue").Ref<boolean>;
|
|
13
|
-
active: import("vue").Ref<boolean>;
|
|
14
|
-
style: () => any;
|
|
15
|
-
mouseup: (e: MouseEvent & TouchEvent) => void;
|
|
16
|
-
mousedown: (e: MouseEvent & TouchEvent) => void;
|
|
17
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
disabled: {
|
|
19
|
-
type: PropType<boolean>;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
windowStyle: {
|
|
23
|
-
type: ObjectConstructor;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>>, {
|
|
27
|
-
disabled: boolean;
|
|
28
|
-
}>;
|
|
29
|
-
export default _default;
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
disabled: {
|
|
4
|
+
type: PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
windowStyle: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
hover: import("vue").Ref<boolean>;
|
|
13
|
+
active: import("vue").Ref<boolean>;
|
|
14
|
+
style: () => any;
|
|
15
|
+
mouseup: (e: MouseEvent & TouchEvent) => void;
|
|
16
|
+
mousedown: (e: MouseEvent & TouchEvent) => void;
|
|
17
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
disabled: {
|
|
19
|
+
type: PropType<boolean>;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
windowStyle: {
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
}>>, {
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
}, {}>;
|
|
29
|
+
export default _default;
|