xframelib 0.6.2 → 0.6.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 +2 -0
- package/dist/controls/collapsepanel/VCollapsiblePanel.d.ts +27 -0
- package/dist/controls/collapsepanel/VCollapsiblePanelGroup.d.ts +33 -0
- package/dist/controls/layoutcontainer/layout.d.ts +60 -0
- package/dist/controls/vuewindow/window/Button.d.ts +29 -0
- package/dist/controls/vuewindow/window/index.d.ts +211 -0
- package/dist/core/Init.d.ts +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.css +64 -69
- package/dist/index.js +8 -8
- package/dist/utils/H5Tool.d.ts +11 -0
- package/package.json +15 -15
package/dist/index.css
CHANGED
|
@@ -1,3 +1,67 @@
|
|
|
1
|
+
.layoutContainer {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
padding: 0;
|
|
5
|
+
margin: 0;
|
|
6
|
+
--layout-top-height: 70px;
|
|
7
|
+
--layout-left-width: 200px;
|
|
8
|
+
--layout-right-width: 200px;
|
|
9
|
+
--layout-bottom-height: 60px;
|
|
10
|
+
--layout-centerback-backcolor: #020202;
|
|
11
|
+
--layout-top-zindex: 10000;
|
|
12
|
+
--layout-bottom-zindex: 10000;
|
|
13
|
+
--layout-center-zindex: 9999;
|
|
14
|
+
--layout-left-zindex: 10000;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.topContainer {
|
|
18
|
+
position: absolute;
|
|
19
|
+
top: 0px;
|
|
20
|
+
left: 0px;
|
|
21
|
+
width: 100%;
|
|
22
|
+
height: var(--layout-top-height);
|
|
23
|
+
z-index: 1000;
|
|
24
|
+
pointer-events: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.bottomContainer {
|
|
28
|
+
position: absolute;
|
|
29
|
+
bottom: 0px;
|
|
30
|
+
left: 0px;
|
|
31
|
+
width: 100%;
|
|
32
|
+
height: var(--layout-bottom-height);
|
|
33
|
+
pointer-events: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.leftContainer {
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: 0px;
|
|
39
|
+
left: 0px;
|
|
40
|
+
width: var(--layout-left-width);
|
|
41
|
+
height: 100%;
|
|
42
|
+
pointer-events: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.rightContainer {
|
|
46
|
+
position: absolute;
|
|
47
|
+
top: 0px;
|
|
48
|
+
right: 0px;
|
|
49
|
+
width: var(--layout-right-width);
|
|
50
|
+
height: 100%;
|
|
51
|
+
pointer-events: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.centerdiv {
|
|
55
|
+
position: absolute;
|
|
56
|
+
top: 0px;
|
|
57
|
+
left: 0px;
|
|
58
|
+
bottom: 0px;
|
|
59
|
+
width: 100%;
|
|
60
|
+
background-color: transparent;
|
|
61
|
+
overflow: hidden;
|
|
62
|
+
pointer-events: none !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
1
65
|
.splitpanes {
|
|
2
66
|
display: flex;
|
|
3
67
|
width: 100%;
|
|
@@ -184,75 +248,6 @@
|
|
|
184
248
|
opacity: 0.25;
|
|
185
249
|
}
|
|
186
250
|
|
|
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
251
|
.window {
|
|
257
252
|
display: flex;
|
|
258
253
|
flex-flow: column;
|