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.
Files changed (72) hide show
  1. package/README.md +22 -18
  2. package/dist/api/Token.d.ts +15 -15
  3. package/dist/api/User.d.ts +49 -49
  4. package/dist/api/index.d.ts +2 -2
  5. package/dist/assets/output-ad5f5cbf.css +307 -0
  6. package/dist/controls/collapsepanel/VCollapsiblePanel.vue.d.ts +27 -27
  7. package/dist/controls/collapsepanel/VCollapsiblePanelGroup.vue.d.ts +33 -33
  8. package/dist/controls/collapsepanel/color.util.d.ts +1 -1
  9. package/dist/controls/collapsepanel/composables/store.d.ts +7 -7
  10. package/dist/controls/collapsepanel/constant.d.ts +1 -1
  11. package/dist/controls/collapsepanel/index.d.ts +3 -3
  12. package/dist/controls/layoutcontainer/LayoutManager.d.ts +119 -112
  13. package/dist/controls/layoutcontainer/index.d.ts +3 -3
  14. package/dist/controls/layoutcontainer/layout.vue.d.ts +61 -60
  15. package/dist/controls/splitpanes/index.d.ts +3 -3
  16. package/dist/controls/vuewindow/SinglePointerEvent.d.ts +23 -23
  17. package/dist/controls/vuewindow/dom.d.ts +16 -16
  18. package/dist/controls/vuewindow/draggable_helper.d.ts +20 -20
  19. package/dist/controls/vuewindow/index.d.ts +6 -6
  20. package/dist/controls/vuewindow/resizable_helper.d.ts +16 -16
  21. package/dist/controls/vuewindow/style.d.ts +110 -110
  22. package/dist/controls/vuewindow/window/Button.vue.d.ts +29 -29
  23. package/dist/controls/vuewindow/window/index.vue.d.ts +211 -211
  24. package/dist/controls/vuewindow/window/utils.d.ts +17 -17
  25. package/dist/controls/vuewindow/z_element.d.ts +11 -11
  26. package/dist/core/Global.d.ts +2 -2
  27. package/dist/core/IModel.d.ts +46 -46
  28. package/dist/core/Init.d.ts +20 -20
  29. package/dist/core/MsgHelper.d.ts +13 -13
  30. package/dist/core/SysEvents.d.ts +24 -24
  31. package/dist/core/index.d.ts +4 -4
  32. package/dist/hprose/HproseClient.d.ts +20 -20
  33. package/dist/hprose/ProxyClient.d.ts +39 -39
  34. package/dist/hprose/index.d.ts +11 -11
  35. package/dist/index.cjs +10 -5
  36. package/dist/index.css +20 -5
  37. package/dist/index.d.ts +11 -11
  38. package/dist/index.js +10 -5
  39. package/dist/mitt/index.d.ts +25 -25
  40. package/dist/model/Config.d.ts +151 -151
  41. package/dist/model/Constants.d.ts +19 -19
  42. package/dist/model/IRole.d.ts +89 -89
  43. package/dist/model/IUserModel.d.ts +67 -67
  44. package/dist/model/Layout.d.ts +83 -83
  45. package/dist/model/index.d.ts +5 -5
  46. package/dist/permission/RoleSysRightHelper.d.ts +27 -27
  47. package/dist/permission/filter.d.ts +45 -45
  48. package/dist/permission/index.d.ts +4 -4
  49. package/dist/permission/register.d.ts +24 -24
  50. package/dist/permission/right.d.ts +15 -15
  51. package/dist/utils/AxiosHelper.d.ts +58 -58
  52. package/dist/utils/BigFileDownload.d.ts +117 -117
  53. package/dist/utils/CodeHelper.d.ts +14 -14
  54. package/dist/utils/Color.d.ts +74 -74
  55. package/dist/utils/FileDownload.d.ts +36 -36
  56. package/dist/utils/FileUpload.d.ts +90 -90
  57. package/dist/utils/H5Tool.d.ts +158 -150
  58. package/dist/utils/IsTool.d.ts +101 -101
  59. package/dist/utils/JQuery.d.ts +41 -41
  60. package/dist/utils/LockHelper.d.ts +17 -17
  61. package/dist/utils/SignalRClient.d.ts +8 -8
  62. package/dist/utils/Storage.d.ts +66 -66
  63. package/dist/utils/StringUtils.d.ts +15 -15
  64. package/dist/utils/Time.d.ts +11 -11
  65. package/dist/utils/TokenHelper.d.ts +18 -18
  66. package/dist/utils/URLTool.d.ts +18 -18
  67. package/dist/utils/ValidateTool.d.ts +149 -149
  68. package/dist/utils/WaterMark.d.ts +10 -10
  69. package/dist/utils/XXTEA.d.ts +15 -15
  70. package/dist/utils/index.d.ts +21 -21
  71. package/dist/utils/uuid.d.ts +3 -3
  72. 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;