xframelib 0.6.3 → 0.6.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 +3 -0
- package/dist/index.cjs +7 -7
- package/dist/index.css +68 -64
- package/dist/index.js +6 -6
- package/dist/utils/H5Tool.d.ts +15 -2
- package/dist/utils/Time.d.ts +11 -1
- package/dist/utils/URLTool.d.ts +4 -4
- package/dist/utils/index.d.ts +2 -2
- package/package.json +2 -1
- package/dist/controls/collapsepanel/VCollapsiblePanel.vue.d.ts +0 -27
- package/dist/controls/collapsepanel/VCollapsiblePanelGroup.vue.d.ts +0 -33
- package/dist/controls/layoutcontainer/layout.vue.d.ts +0 -50
- package/dist/controls/vuewindow/window/Button.vue.d.ts +0 -29
- package/dist/controls/vuewindow/window/index.vue.d.ts +0 -211
package/dist/index.css
CHANGED
|
@@ -1,67 +1,3 @@
|
|
|
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
|
-
|
|
65
1
|
.splitpanes {
|
|
66
2
|
display: flex;
|
|
67
3
|
width: 100%;
|
|
@@ -203,6 +139,74 @@
|
|
|
203
139
|
background-color: var(--bg-color-body);
|
|
204
140
|
}
|
|
205
141
|
|
|
142
|
+
.layoutContainer {
|
|
143
|
+
width: 100%;
|
|
144
|
+
height: 100%;
|
|
145
|
+
padding: 0;
|
|
146
|
+
margin: 0;
|
|
147
|
+
--layout-top-height: 70px;
|
|
148
|
+
--layout-left-width: 200px;
|
|
149
|
+
--layout-right-width: 200px;
|
|
150
|
+
--layout-bottom-height: 60px;
|
|
151
|
+
--layout-centerback-backcolor: #020202;
|
|
152
|
+
--layout-top-zindex: 100;
|
|
153
|
+
--layout-bottom-zindex: 100;
|
|
154
|
+
--layout-center-zindex: 90;
|
|
155
|
+
--layout-left-zindex: 100;
|
|
156
|
+
--layout-right-zindex: 100;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.topContainer {
|
|
160
|
+
position: absolute;
|
|
161
|
+
top: 0px;
|
|
162
|
+
left: 0px;
|
|
163
|
+
width: 100%;
|
|
164
|
+
height: var(--layout-top-height);
|
|
165
|
+
z-index: var(--layout-top-zindex);
|
|
166
|
+
pointer-events: none;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.bottomContainer {
|
|
170
|
+
position: absolute;
|
|
171
|
+
bottom: 0px;
|
|
172
|
+
left: 0px;
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: var(--layout-bottom-height);
|
|
175
|
+
z-index: var(--layout-bottom-zindex);
|
|
176
|
+
pointer-events: none;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.leftContainer {
|
|
180
|
+
position: absolute;
|
|
181
|
+
top: 0px;
|
|
182
|
+
left: 0px;
|
|
183
|
+
width: var(--layout-left-width);
|
|
184
|
+
z-index: var(--layout-left-zindex);
|
|
185
|
+
height: 100%;
|
|
186
|
+
pointer-events: none;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.rightContainer {
|
|
190
|
+
position: absolute;
|
|
191
|
+
top: 0px;
|
|
192
|
+
right: 0px;
|
|
193
|
+
width: var(--layout-right-width);
|
|
194
|
+
z-index: var(--layout-right-zindex);
|
|
195
|
+
height: 100%;
|
|
196
|
+
pointer-events: none;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.centerdiv {
|
|
200
|
+
position: absolute;
|
|
201
|
+
top: 0px;
|
|
202
|
+
left: 0px;
|
|
203
|
+
bottom: 0px;
|
|
204
|
+
width: 100%;
|
|
205
|
+
background-color: transparent;
|
|
206
|
+
overflow: hidden;
|
|
207
|
+
pointer-events: none;
|
|
208
|
+
}
|
|
209
|
+
|
|
206
210
|
.vcp__header {
|
|
207
211
|
display: flex;
|
|
208
212
|
padding: 12px;
|