xframelib 1.0.1 → 1.0.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 +8 -10
- package/dist/assets/worker-XXTEA-BTkdAuVi.js +6 -0
- package/dist/assets/worker-webcache-JMcB6mHT.js +6 -0
- package/dist/assets/worker-xmath-DUFCrWrO.js +15 -0
- package/dist/controls/vuewindow/window/index.vue.d.ts +1 -1
- package/dist/index.css +53 -53
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -3
- package/dist/public/mitm.html +2 -2
- package/dist/utils/WebCacheTool.d.ts +72 -0
- package/dist/utils/index.d.ts +2 -1
- package/dist/workers/index.d.ts +7 -1
- package/dist/workers/worker-webcache.d.ts +13 -0
- package/dist/workerservice/frontWorker.d.ts +3 -0
- package/dist/workerservice/index.d.ts +9 -0
- package/package.json +71 -69
- package/dist/assets/worker-XXTEA-lcP6QMJU.js +0 -6
- package/dist/assets/worker-xmath-C-79xQSy.js +0 -15
|
@@ -194,9 +194,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
194
194
|
};
|
|
195
195
|
}>> & Readonly<{}>, {
|
|
196
196
|
title: string;
|
|
197
|
+
resizable: boolean;
|
|
197
198
|
isOpen: boolean;
|
|
198
199
|
closeButton: boolean;
|
|
199
|
-
resizable: boolean;
|
|
200
200
|
isScrollable: boolean;
|
|
201
201
|
padding: number;
|
|
202
202
|
activateWhenOpen: boolean;
|
package/dist/index.css
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
.adivider {
|
|
2
|
+
width: 100%;
|
|
3
|
+
margin: 10px 0;
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
justify-items: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.adivider .line {
|
|
10
|
+
border: v-bind(lineColor) 1px solid;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.adivider .contentText {
|
|
14
|
+
background-color: inherit;
|
|
15
|
+
font-size: 18px;
|
|
16
|
+
}
|
|
17
|
+
|
|
1
18
|
.splitpanes {
|
|
2
19
|
display: flex;
|
|
3
20
|
width: 100%;
|
|
@@ -130,21 +147,47 @@
|
|
|
130
147
|
margin-top: 1px;
|
|
131
148
|
}
|
|
132
149
|
|
|
133
|
-
.
|
|
134
|
-
width: 100%;
|
|
135
|
-
margin: 10px 0;
|
|
150
|
+
.window {
|
|
136
151
|
display: flex;
|
|
137
|
-
|
|
138
|
-
|
|
152
|
+
flex-flow: column;
|
|
153
|
+
position: absolute;
|
|
154
|
+
border-radius: 4pt 4pt 0 0;
|
|
139
155
|
}
|
|
140
156
|
|
|
141
|
-
.
|
|
142
|
-
|
|
157
|
+
.titlebar {
|
|
158
|
+
display: flex;
|
|
159
|
+
flex-flow: row nowrap;
|
|
160
|
+
border-radius: 4pt 4pt 0 0;
|
|
161
|
+
font-family: sans-serif;
|
|
162
|
+
padding: 0.5em;
|
|
163
|
+
flex: 0 0 auto;
|
|
143
164
|
}
|
|
144
165
|
|
|
145
|
-
.
|
|
146
|
-
|
|
147
|
-
|
|
166
|
+
.title {
|
|
167
|
+
flex-grow: 1;
|
|
168
|
+
white-space: nowrap;
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
text-overflow: ellipsis;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.content {
|
|
174
|
+
flex-grow: 1;
|
|
175
|
+
padding: 0.5em;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.draggable-handle {
|
|
179
|
+
cursor: move;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.fade-enter,
|
|
183
|
+
.fade-leave-to {
|
|
184
|
+
opacity: 0;
|
|
185
|
+
transform: scale(0.9);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.fade-enter-active,
|
|
189
|
+
.fade-leave-active {
|
|
190
|
+
transition: 0.2s;
|
|
148
191
|
}
|
|
149
192
|
|
|
150
193
|
.layoutContainer {
|
|
@@ -407,49 +450,6 @@
|
|
|
407
450
|
cursor: s-resize;
|
|
408
451
|
}
|
|
409
452
|
|
|
410
|
-
.window {
|
|
411
|
-
display: flex;
|
|
412
|
-
flex-flow: column;
|
|
413
|
-
position: absolute;
|
|
414
|
-
border-radius: 4pt 4pt 0 0;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.titlebar {
|
|
418
|
-
display: flex;
|
|
419
|
-
flex-flow: row nowrap;
|
|
420
|
-
border-radius: 4pt 4pt 0 0;
|
|
421
|
-
font-family: sans-serif;
|
|
422
|
-
padding: 0.5em;
|
|
423
|
-
flex: 0 0 auto;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.title {
|
|
427
|
-
flex-grow: 1;
|
|
428
|
-
white-space: nowrap;
|
|
429
|
-
overflow: hidden;
|
|
430
|
-
text-overflow: ellipsis;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.content {
|
|
434
|
-
flex-grow: 1;
|
|
435
|
-
padding: 0.5em;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
.draggable-handle {
|
|
439
|
-
cursor: move;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
.fade-enter,
|
|
443
|
-
.fade-leave-to {
|
|
444
|
-
opacity: 0;
|
|
445
|
-
transform: scale(0.9);
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.fade-enter-active,
|
|
449
|
-
.fade-leave-active {
|
|
450
|
-
transition: 0.2s;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
453
|
.btn {
|
|
454
454
|
background-color: transparent;
|
|
455
455
|
border: none;
|
package/dist/index.d.ts
CHANGED