xframelib 0.5.6 → 0.5.9
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 +116 -67
- package/dist/api/Token.d.ts +1 -6
- package/dist/api/User.d.ts +9 -5
- package/dist/controls/layoutcontainer/LayoutManager.d.ts +10 -5
- package/dist/controls/layoutcontainer/index.d.ts +1 -1
- package/dist/controls/layoutcontainer/layout.vue.d.ts +19 -8
- package/dist/controls/vuewindow/window/index.vue.d.ts +1 -0
- package/dist/core/Global.d.ts +0 -20
- package/dist/core/IModel.d.ts +7 -5
- package/dist/core/Init.d.ts +20 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/index.cjs +13 -8
- package/dist/index.css +69 -69
- package/dist/index.js +12 -7
- package/dist/model/Config.d.ts +42 -1
- package/dist/model/Constants.d.ts +2 -2
- package/dist/model/IRole.d.ts +4 -0
- package/dist/model/{Token.d.ts → IUserModel.d.ts} +18 -21
- package/dist/model/Layout.d.ts +12 -4
- package/dist/model/index.d.ts +2 -1
- package/dist/permission/RoleSysRightHelper.d.ts +27 -0
- package/dist/permission/filter.d.ts +15 -8
- package/dist/permission/index.d.ts +1 -0
- package/dist/permission/right.d.ts +1 -1
- package/dist/public/mitm.html +180 -166
- package/dist/public/sw.js +128 -128
- package/dist/utils/H5Tool.d.ts +19 -0
- package/dist/utils/TokenHelper.d.ts +1 -1
- package/dist/utils/XXTEA.d.ts +15 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +13 -13
package/dist/index.css
CHANGED
|
@@ -74,75 +74,6 @@
|
|
|
74
74
|
opacity: 0.25;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
.layoutContainer {
|
|
78
|
-
width: 100%;
|
|
79
|
-
height: 100%;
|
|
80
|
-
padding: 0;
|
|
81
|
-
margin: 0;
|
|
82
|
-
--layout-top-height: 77px;
|
|
83
|
-
--layout-left-width: 200px;
|
|
84
|
-
--layout-right-width: 200px;
|
|
85
|
-
--layout-bottom-height: 60px;
|
|
86
|
-
--layout-centerback-backcolor: #020202;
|
|
87
|
-
--layout-top-zindex: 10000;
|
|
88
|
-
--layout-bottom-zindex: 10000;
|
|
89
|
-
--layout-center-zindex: 9999;
|
|
90
|
-
--layout-left-zindex: 10000;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.topContainer {
|
|
94
|
-
position: absolute;
|
|
95
|
-
top: 0px;
|
|
96
|
-
left: 0px;
|
|
97
|
-
width: 100%;
|
|
98
|
-
height: var(--layout-top-height);
|
|
99
|
-
z-index: 1000;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.bottomContainer {
|
|
103
|
-
position: absolute;
|
|
104
|
-
bottom: 0px;
|
|
105
|
-
left: 0px;
|
|
106
|
-
width: 100%;
|
|
107
|
-
height: var(--layout-bottom-height);
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.leftContainer {
|
|
111
|
-
position: absolute;
|
|
112
|
-
top: 0px;
|
|
113
|
-
left: 0px;
|
|
114
|
-
width: var(--layout-left-width);
|
|
115
|
-
height: 100%;
|
|
116
|
-
pointer-events: none;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.rightContainer {
|
|
120
|
-
position: absolute;
|
|
121
|
-
top: 0px;
|
|
122
|
-
right: 0px;
|
|
123
|
-
width: var(--layout-right-width);
|
|
124
|
-
height: 100%;
|
|
125
|
-
pointer-events: none;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.centerdiv {
|
|
129
|
-
position: absolute;
|
|
130
|
-
top: 0px;
|
|
131
|
-
left: 0px;
|
|
132
|
-
bottom: 0px;
|
|
133
|
-
width: 100%;
|
|
134
|
-
background-color: transparent;
|
|
135
|
-
overflow: hidden;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.centerContainer {
|
|
139
|
-
pointer-events: none;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.mainContainer {
|
|
143
|
-
pointer-events: none;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
77
|
.splitpanes {
|
|
147
78
|
display: flex;
|
|
148
79
|
width: 100%;
|
|
@@ -253,6 +184,75 @@
|
|
|
253
184
|
margin-top: 1px;
|
|
254
185
|
}
|
|
255
186
|
|
|
187
|
+
.layoutContainer {
|
|
188
|
+
width: 100%;
|
|
189
|
+
height: 100%;
|
|
190
|
+
padding: 0;
|
|
191
|
+
margin: 0;
|
|
192
|
+
--layout-top-height: 70px;
|
|
193
|
+
--layout-left-width: 200px;
|
|
194
|
+
--layout-right-width: 200px;
|
|
195
|
+
--layout-bottom-height: 60px;
|
|
196
|
+
--layout-centerback-backcolor: #020202;
|
|
197
|
+
--layout-top-zindex: 10000;
|
|
198
|
+
--layout-bottom-zindex: 10000;
|
|
199
|
+
--layout-center-zindex: 9999;
|
|
200
|
+
--layout-left-zindex: 10000;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.topContainer {
|
|
204
|
+
position: absolute;
|
|
205
|
+
top: 0px;
|
|
206
|
+
left: 0px;
|
|
207
|
+
width: 100%;
|
|
208
|
+
height: var(--layout-top-height);
|
|
209
|
+
z-index: 1000;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.bottomContainer {
|
|
213
|
+
position: absolute;
|
|
214
|
+
bottom: 0px;
|
|
215
|
+
left: 0px;
|
|
216
|
+
width: 100%;
|
|
217
|
+
height: var(--layout-bottom-height);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.leftContainer {
|
|
221
|
+
position: absolute;
|
|
222
|
+
top: 0px;
|
|
223
|
+
left: 0px;
|
|
224
|
+
width: var(--layout-left-width);
|
|
225
|
+
height: 100%;
|
|
226
|
+
pointer-events: none;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.rightContainer {
|
|
230
|
+
position: absolute;
|
|
231
|
+
top: 0px;
|
|
232
|
+
right: 0px;
|
|
233
|
+
width: var(--layout-right-width);
|
|
234
|
+
height: 100%;
|
|
235
|
+
pointer-events: none;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.centerdiv {
|
|
239
|
+
position: absolute;
|
|
240
|
+
top: 0px;
|
|
241
|
+
left: 0px;
|
|
242
|
+
bottom: 0px;
|
|
243
|
+
width: 100%;
|
|
244
|
+
background-color: transparent;
|
|
245
|
+
overflow: hidden;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.centerContainer {
|
|
249
|
+
pointer-events: none;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.mainContainer {
|
|
253
|
+
pointer-events: none;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
256
|
.window {
|
|
257
257
|
display: flex;
|
|
258
258
|
flex-flow: column;
|