xframelib 0.7.3 → 0.7.6
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 +23 -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 +133 -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 +96 -81
- 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
package/dist/index.css
CHANGED
|
@@ -1,3 +1,79 @@
|
|
|
1
|
+
.vcp__header {
|
|
2
|
+
display: flex;
|
|
3
|
+
padding: 12px;
|
|
4
|
+
pointer-events: none;
|
|
5
|
+
}
|
|
6
|
+
.vcp--expandable .vcp__header {
|
|
7
|
+
pointer-events: auto;
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
}
|
|
10
|
+
.vcp__header-title {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
flex: 1;
|
|
14
|
+
}
|
|
15
|
+
.vcp__header-icon {
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
19
|
+
}
|
|
20
|
+
.vcp--expanded .vcp__header-icon {
|
|
21
|
+
transform-origin: center;
|
|
22
|
+
transform: rotate(180deg);
|
|
23
|
+
}
|
|
24
|
+
.vcp__header-icon > span {
|
|
25
|
+
display: flex;
|
|
26
|
+
height: 24px;
|
|
27
|
+
width: 24px;
|
|
28
|
+
}
|
|
29
|
+
.vcp__header-icon ::v-deep(svg) {
|
|
30
|
+
height: 100%;
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
.vcp__body {
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
36
|
+
}
|
|
37
|
+
.vcp__body-content {
|
|
38
|
+
padding: 12px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.slide-enter-from,
|
|
42
|
+
.slide-leave-to {
|
|
43
|
+
opacity: 0.25;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.vcpg {
|
|
47
|
+
border: 1px solid var(--border-color);
|
|
48
|
+
border-radius: 4px;
|
|
49
|
+
width: 100%;
|
|
50
|
+
}
|
|
51
|
+
.vcpg ::v-deep(.vcp) * {
|
|
52
|
+
box-sizing: border-box;
|
|
53
|
+
}
|
|
54
|
+
.vcpg ::v-deep(.vcp) .vcp__header {
|
|
55
|
+
background-color: var(--bg-color-header);
|
|
56
|
+
height: 30px;
|
|
57
|
+
border-bottom: 2px solid #c6bebd;
|
|
58
|
+
transition: background-color 0.3s ease;
|
|
59
|
+
}
|
|
60
|
+
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
|
|
61
|
+
background-color: var(--bg-color-header-hover);
|
|
62
|
+
}
|
|
63
|
+
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
|
|
64
|
+
background-color: var(--bg-color-header-active);
|
|
65
|
+
}
|
|
66
|
+
.vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
|
|
67
|
+
border-top: 2px solid var(--border-color);
|
|
68
|
+
}
|
|
69
|
+
.vcpg ::v-deep(.vcp) .vcp__header-title {
|
|
70
|
+
font-weight: 500;
|
|
71
|
+
}
|
|
72
|
+
.vcpg ::v-deep(.vcp) .vcp__body {
|
|
73
|
+
border-top: 1px solid var(--border-color);
|
|
74
|
+
background-color: var(--bg-color-body);
|
|
75
|
+
}
|
|
76
|
+
|
|
1
77
|
.splitpanes {
|
|
2
78
|
display: flex;
|
|
3
79
|
width: 100%;
|
|
@@ -108,82 +184,6 @@
|
|
|
108
184
|
margin-top: 1px;
|
|
109
185
|
}
|
|
110
186
|
|
|
111
|
-
.vcpg {
|
|
112
|
-
border: 1px solid var(--border-color);
|
|
113
|
-
border-radius: 4px;
|
|
114
|
-
width: 100%;
|
|
115
|
-
}
|
|
116
|
-
.vcpg ::v-deep(.vcp) * {
|
|
117
|
-
box-sizing: border-box;
|
|
118
|
-
}
|
|
119
|
-
.vcpg ::v-deep(.vcp) .vcp__header {
|
|
120
|
-
background-color: var(--bg-color-header);
|
|
121
|
-
height: 30px;
|
|
122
|
-
border-bottom: 2px solid #c6bebd;
|
|
123
|
-
transition: background-color 0.3s ease;
|
|
124
|
-
}
|
|
125
|
-
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
|
|
126
|
-
background-color: var(--bg-color-header-hover);
|
|
127
|
-
}
|
|
128
|
-
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
|
|
129
|
-
background-color: var(--bg-color-header-active);
|
|
130
|
-
}
|
|
131
|
-
.vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
|
|
132
|
-
border-top: 2px solid var(--border-color);
|
|
133
|
-
}
|
|
134
|
-
.vcpg ::v-deep(.vcp) .vcp__header-title {
|
|
135
|
-
font-weight: 500;
|
|
136
|
-
}
|
|
137
|
-
.vcpg ::v-deep(.vcp) .vcp__body {
|
|
138
|
-
border-top: 1px solid var(--border-color);
|
|
139
|
-
background-color: var(--bg-color-body);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.vcp__header {
|
|
143
|
-
display: flex;
|
|
144
|
-
padding: 12px;
|
|
145
|
-
pointer-events: none;
|
|
146
|
-
}
|
|
147
|
-
.vcp--expandable .vcp__header {
|
|
148
|
-
pointer-events: auto;
|
|
149
|
-
cursor: pointer;
|
|
150
|
-
}
|
|
151
|
-
.vcp__header-title {
|
|
152
|
-
display: flex;
|
|
153
|
-
align-items: center;
|
|
154
|
-
flex: 1;
|
|
155
|
-
}
|
|
156
|
-
.vcp__header-icon {
|
|
157
|
-
display: flex;
|
|
158
|
-
align-items: center;
|
|
159
|
-
transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
160
|
-
}
|
|
161
|
-
.vcp--expanded .vcp__header-icon {
|
|
162
|
-
transform-origin: center;
|
|
163
|
-
transform: rotate(180deg);
|
|
164
|
-
}
|
|
165
|
-
.vcp__header-icon > span {
|
|
166
|
-
display: flex;
|
|
167
|
-
height: 24px;
|
|
168
|
-
width: 24px;
|
|
169
|
-
}
|
|
170
|
-
.vcp__header-icon ::v-deep(svg) {
|
|
171
|
-
height: 100%;
|
|
172
|
-
width: 100%;
|
|
173
|
-
}
|
|
174
|
-
.vcp__body {
|
|
175
|
-
overflow: hidden;
|
|
176
|
-
transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
177
|
-
}
|
|
178
|
-
.vcp__body-content {
|
|
179
|
-
padding: 12px;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.slide-enter-from,
|
|
183
|
-
.slide-leave-to {
|
|
184
|
-
opacity: 0.25;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
187
|
.window {
|
|
188
188
|
display: flex;
|
|
189
189
|
flex-flow: column;
|
|
@@ -228,6 +228,7 @@
|
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
.layoutContainer {
|
|
231
|
+
position: relative;
|
|
231
232
|
width: 100%;
|
|
232
233
|
height: 100%;
|
|
233
234
|
padding: 0;
|
|
@@ -236,10 +237,11 @@
|
|
|
236
237
|
--layout-left-width: 200px;
|
|
237
238
|
--layout-right-width: 200px;
|
|
238
239
|
--layout-bottom-height: 60px;
|
|
239
|
-
--layout-centerback-backcolor: #020202;
|
|
240
240
|
--layout-top-zindex: 100;
|
|
241
241
|
--layout-bottom-zindex: 100;
|
|
242
|
-
--layout-
|
|
242
|
+
--layout-centermain-zindex: 80;
|
|
243
|
+
--layout-centerback-zindex: 90;
|
|
244
|
+
--layout-centerfront-zindex: 110;
|
|
243
245
|
--layout-left-zindex: 100;
|
|
244
246
|
--layout-right-zindex: 100;
|
|
245
247
|
}
|
|
@@ -251,6 +253,7 @@
|
|
|
251
253
|
width: 100%;
|
|
252
254
|
height: var(--layout-top-height);
|
|
253
255
|
z-index: var(--layout-top-zindex);
|
|
256
|
+
overflow: hidden;
|
|
254
257
|
pointer-events: none;
|
|
255
258
|
}
|
|
256
259
|
|
|
@@ -261,6 +264,7 @@
|
|
|
261
264
|
width: 100%;
|
|
262
265
|
height: var(--layout-bottom-height);
|
|
263
266
|
z-index: var(--layout-bottom-zindex);
|
|
267
|
+
overflow: hidden;
|
|
264
268
|
pointer-events: none;
|
|
265
269
|
}
|
|
266
270
|
|
|
@@ -268,10 +272,8 @@
|
|
|
268
272
|
position: absolute;
|
|
269
273
|
top: 0px;
|
|
270
274
|
left: 0px;
|
|
271
|
-
width: var(--layout-left-width);
|
|
272
275
|
z-index: var(--layout-left-zindex);
|
|
273
276
|
height: 100%;
|
|
274
|
-
pointer-events: none;
|
|
275
277
|
}
|
|
276
278
|
|
|
277
279
|
.rightContainer {
|
|
@@ -288,13 +290,26 @@
|
|
|
288
290
|
position: absolute;
|
|
289
291
|
top: 0px;
|
|
290
292
|
left: 0px;
|
|
291
|
-
|
|
293
|
+
height: 100vh;
|
|
292
294
|
width: 100%;
|
|
293
295
|
background-color: transparent;
|
|
294
296
|
overflow: hidden;
|
|
295
297
|
pointer-events: none;
|
|
296
298
|
}
|
|
297
299
|
|
|
300
|
+
.mainContainer {
|
|
301
|
+
pointer-events: auto;
|
|
302
|
+
z-index: var(--layout-centermain-zindex);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.backContainer {
|
|
306
|
+
z-index: var(--layout-centerback-zindex);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.centerFrontContainer {
|
|
310
|
+
z-index: var(--layout-centerfront-zindex);
|
|
311
|
+
}
|
|
312
|
+
|
|
298
313
|
.btn {
|
|
299
314
|
background-color: transparent;
|
|
300
315
|
border: none;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * from './controls/splitpanes';
|
|
2
|
-
export * from './controls/collapsepanel';
|
|
3
|
-
export * from './controls/vuewindow';
|
|
4
|
-
export * from './controls/layoutcontainer';
|
|
5
|
-
export * from './core';
|
|
6
|
-
export * from './mitt';
|
|
7
|
-
export * from './utils';
|
|
8
|
-
export * from './hprose';
|
|
9
|
-
export * from './api';
|
|
10
|
-
export * from './model';
|
|
11
|
-
export * from './permission';
|
|
1
|
+
export * from './controls/splitpanes';
|
|
2
|
+
export * from './controls/collapsepanel';
|
|
3
|
+
export * from './controls/vuewindow';
|
|
4
|
+
export * from './controls/layoutcontainer';
|
|
5
|
+
export * from './core';
|
|
6
|
+
export * from './mitt';
|
|
7
|
+
export * from './utils';
|
|
8
|
+
export * from './hprose';
|
|
9
|
+
export * from './api';
|
|
10
|
+
export * from './model';
|
|
11
|
+
export * from './permission';
|