xframelib 0.6.4 → 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 +2 -0
- package/dist/index.cjs +7 -7
- package/dist/index.css +144 -144
- 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,147 +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
|
-
--layout-right-zindex: 10000;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.topContainer {
|
|
19
|
-
position: absolute;
|
|
20
|
-
top: 0px;
|
|
21
|
-
left: 0px;
|
|
22
|
-
width: 100%;
|
|
23
|
-
height: var(--layout-top-height);
|
|
24
|
-
z-index: var(--layout-top-zindex);
|
|
25
|
-
pointer-events: none;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.bottomContainer {
|
|
29
|
-
position: absolute;
|
|
30
|
-
bottom: 0px;
|
|
31
|
-
left: 0px;
|
|
32
|
-
width: 100%;
|
|
33
|
-
height: var(--layout-bottom-height);
|
|
34
|
-
z-index: var(--layout-bottom-zindex);
|
|
35
|
-
pointer-events: none;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.leftContainer {
|
|
39
|
-
position: absolute;
|
|
40
|
-
top: 0px;
|
|
41
|
-
left: 0px;
|
|
42
|
-
width: var(--layout-left-width);
|
|
43
|
-
z-index: var(--layout-left-zindex);
|
|
44
|
-
height: 100%;
|
|
45
|
-
pointer-events: none;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.rightContainer {
|
|
49
|
-
position: absolute;
|
|
50
|
-
top: 0px;
|
|
51
|
-
right: 0px;
|
|
52
|
-
width: var(--layout-right-width);
|
|
53
|
-
z-index: var(--layout-right-zindex);
|
|
54
|
-
height: 100%;
|
|
55
|
-
pointer-events: none;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.centerdiv {
|
|
59
|
-
position: absolute;
|
|
60
|
-
top: 0px;
|
|
61
|
-
left: 0px;
|
|
62
|
-
bottom: 0px;
|
|
63
|
-
width: 100%;
|
|
64
|
-
background-color: transparent;
|
|
65
|
-
overflow: hidden;
|
|
66
|
-
pointer-events: none;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.vcpg {
|
|
70
|
-
border: 1px solid var(--border-color);
|
|
71
|
-
border-radius: 4px;
|
|
72
|
-
width: 100%;
|
|
73
|
-
}
|
|
74
|
-
.vcpg ::v-deep(.vcp) * {
|
|
75
|
-
box-sizing: border-box;
|
|
76
|
-
}
|
|
77
|
-
.vcpg ::v-deep(.vcp) .vcp__header {
|
|
78
|
-
background-color: var(--bg-color-header);
|
|
79
|
-
height: 30px;
|
|
80
|
-
border-bottom: 2px solid #c6bebd;
|
|
81
|
-
transition: background-color 0.3s ease;
|
|
82
|
-
}
|
|
83
|
-
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
|
|
84
|
-
background-color: var(--bg-color-header-hover);
|
|
85
|
-
}
|
|
86
|
-
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
|
|
87
|
-
background-color: var(--bg-color-header-active);
|
|
88
|
-
}
|
|
89
|
-
.vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
|
|
90
|
-
border-top: 2px solid var(--border-color);
|
|
91
|
-
}
|
|
92
|
-
.vcpg ::v-deep(.vcp) .vcp__header-title {
|
|
93
|
-
font-weight: 500;
|
|
94
|
-
}
|
|
95
|
-
.vcpg ::v-deep(.vcp) .vcp__body {
|
|
96
|
-
border-top: 1px solid var(--border-color);
|
|
97
|
-
background-color: var(--bg-color-body);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.vcp__header {
|
|
101
|
-
display: flex;
|
|
102
|
-
padding: 12px;
|
|
103
|
-
pointer-events: none;
|
|
104
|
-
}
|
|
105
|
-
.vcp--expandable .vcp__header {
|
|
106
|
-
pointer-events: auto;
|
|
107
|
-
cursor: pointer;
|
|
108
|
-
}
|
|
109
|
-
.vcp__header-title {
|
|
110
|
-
display: flex;
|
|
111
|
-
align-items: center;
|
|
112
|
-
flex: 1;
|
|
113
|
-
}
|
|
114
|
-
.vcp__header-icon {
|
|
115
|
-
display: flex;
|
|
116
|
-
align-items: center;
|
|
117
|
-
transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
118
|
-
}
|
|
119
|
-
.vcp--expanded .vcp__header-icon {
|
|
120
|
-
transform-origin: center;
|
|
121
|
-
transform: rotate(180deg);
|
|
122
|
-
}
|
|
123
|
-
.vcp__header-icon > span {
|
|
124
|
-
display: flex;
|
|
125
|
-
height: 24px;
|
|
126
|
-
width: 24px;
|
|
127
|
-
}
|
|
128
|
-
.vcp__header-icon ::v-deep(svg) {
|
|
129
|
-
height: 100%;
|
|
130
|
-
width: 100%;
|
|
131
|
-
}
|
|
132
|
-
.vcp__body {
|
|
133
|
-
overflow: hidden;
|
|
134
|
-
transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
135
|
-
}
|
|
136
|
-
.vcp__body-content {
|
|
137
|
-
padding: 12px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.slide-enter-from,
|
|
141
|
-
.slide-leave-to {
|
|
142
|
-
opacity: 0.25;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
1
|
.splitpanes {
|
|
146
2
|
display: flex;
|
|
147
3
|
width: 100%;
|
|
@@ -252,6 +108,150 @@
|
|
|
252
108
|
margin-top: 1px;
|
|
253
109
|
}
|
|
254
110
|
|
|
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
|
+
.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
|
+
|
|
210
|
+
.vcp__header {
|
|
211
|
+
display: flex;
|
|
212
|
+
padding: 12px;
|
|
213
|
+
pointer-events: none;
|
|
214
|
+
}
|
|
215
|
+
.vcp--expandable .vcp__header {
|
|
216
|
+
pointer-events: auto;
|
|
217
|
+
cursor: pointer;
|
|
218
|
+
}
|
|
219
|
+
.vcp__header-title {
|
|
220
|
+
display: flex;
|
|
221
|
+
align-items: center;
|
|
222
|
+
flex: 1;
|
|
223
|
+
}
|
|
224
|
+
.vcp__header-icon {
|
|
225
|
+
display: flex;
|
|
226
|
+
align-items: center;
|
|
227
|
+
transition: transform 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
228
|
+
}
|
|
229
|
+
.vcp--expanded .vcp__header-icon {
|
|
230
|
+
transform-origin: center;
|
|
231
|
+
transform: rotate(180deg);
|
|
232
|
+
}
|
|
233
|
+
.vcp__header-icon > span {
|
|
234
|
+
display: flex;
|
|
235
|
+
height: 24px;
|
|
236
|
+
width: 24px;
|
|
237
|
+
}
|
|
238
|
+
.vcp__header-icon ::v-deep(svg) {
|
|
239
|
+
height: 100%;
|
|
240
|
+
width: 100%;
|
|
241
|
+
}
|
|
242
|
+
.vcp__body {
|
|
243
|
+
overflow: hidden;
|
|
244
|
+
transition: all 0.3s cubic-bezier(0.5, 0.25, 0, 1);
|
|
245
|
+
}
|
|
246
|
+
.vcp__body-content {
|
|
247
|
+
padding: 12px;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.slide-enter-from,
|
|
251
|
+
.slide-leave-to {
|
|
252
|
+
opacity: 0.25;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
255
|
.window {
|
|
256
256
|
display: flex;
|
|
257
257
|
flex-flow: column;
|