xframelib 1.0.5 → 1.0.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 +1 -0
- package/dist/assets/worker-XXTEA-CMYO_oW7.js +6 -0
- package/dist/assets/worker-bigimage-ULYc5DiH.js +6 -0
- package/dist/assets/worker-webcache-c92UWvGr.js +6 -0
- package/dist/assets/worker-xmath-DRrB1AaK.js +14 -0
- package/dist/controls/xwindow/XWindow.vue.d.ts +8 -4
- package/dist/index.css +17 -69
- package/dist/index.d.ts +0 -1
- package/dist/index.js +3 -3
- package/dist/utils/H5Tool.d.ts +1 -1
- package/package.json +14 -14
- package/dist/assets/worker-XXTEA-BTkdAuVi.js +0 -6
- package/dist/assets/worker-bigimage-DeV0Ac8X.js +0 -6
- package/dist/assets/worker-webcache-BLs0AAZo.js +0 -6
- package/dist/assets/worker-xmath-BJNVXVMo.js +0 -15
- package/dist/controls/vuewindow/SinglePointerEvent.d.ts +0 -23
- package/dist/controls/vuewindow/dom.d.ts +0 -16
- package/dist/controls/vuewindow/draggable_helper.d.ts +0 -20
- package/dist/controls/vuewindow/index.d.ts +0 -5
- package/dist/controls/vuewindow/resizable_helper.d.ts +0 -16
- package/dist/controls/vuewindow/style.d.ts +0 -110
- package/dist/controls/vuewindow/window/Button.vue.d.ts +0 -29
- package/dist/controls/vuewindow/window/index.vue.d.ts +0 -239
- package/dist/controls/vuewindow/window/utils.d.ts +0 -17
- package/dist/controls/vuewindow/z_element.d.ts +0 -11
|
@@ -70,7 +70,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
70
70
|
default: string;
|
|
71
71
|
};
|
|
72
72
|
tag: {
|
|
73
|
-
type: (
|
|
73
|
+
type: (StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[];
|
|
74
74
|
default: string;
|
|
75
75
|
};
|
|
76
76
|
}>, {
|
|
@@ -79,6 +79,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
79
79
|
close: typeof close;
|
|
80
80
|
open: typeof open;
|
|
81
81
|
showHidePanel: typeof showHidePanel;
|
|
82
|
+
updatePosition: (value: {
|
|
83
|
+
x: number;
|
|
84
|
+
y: number;
|
|
85
|
+
}) => void;
|
|
82
86
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
83
87
|
close: (...args: any[]) => void;
|
|
84
88
|
open: (...args: any[]) => void;
|
|
@@ -134,7 +138,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
134
138
|
default: string;
|
|
135
139
|
};
|
|
136
140
|
tag: {
|
|
137
|
-
type: (
|
|
141
|
+
type: (StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[];
|
|
138
142
|
default: string;
|
|
139
143
|
};
|
|
140
144
|
}>> & Readonly<{
|
|
@@ -144,10 +148,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
144
148
|
onMinimize?: ((...args: any[]) => any) | undefined;
|
|
145
149
|
}>, {
|
|
146
150
|
title: string;
|
|
147
|
-
left: string | number;
|
|
148
151
|
top: string | number;
|
|
152
|
+
left: string | number;
|
|
149
153
|
icon: string;
|
|
150
|
-
tag: string | number | Record<string, any
|
|
154
|
+
tag: string | number | unknown[] | Record<string, any>;
|
|
151
155
|
nWidth: string | number;
|
|
152
156
|
nHeight: string | number;
|
|
153
157
|
titleHeight: string | number;
|
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%;
|
|
@@ -236,66 +253,6 @@
|
|
|
236
253
|
z-index: var(--layout-centerfront-zindex);
|
|
237
254
|
}
|
|
238
255
|
|
|
239
|
-
.adivider {
|
|
240
|
-
width: 100%;
|
|
241
|
-
margin: 10px 0;
|
|
242
|
-
display: flex;
|
|
243
|
-
align-items: center;
|
|
244
|
-
justify-items: center;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.adivider .line {
|
|
248
|
-
border: v-bind(lineColor) 1px solid;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.adivider .contentText {
|
|
252
|
-
background-color: inherit;
|
|
253
|
-
font-size: 18px;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.window {
|
|
257
|
-
display: flex;
|
|
258
|
-
flex-flow: column;
|
|
259
|
-
position: absolute;
|
|
260
|
-
border-radius: 4pt 4pt 0 0;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.titlebar {
|
|
264
|
-
display: flex;
|
|
265
|
-
flex-flow: row nowrap;
|
|
266
|
-
border-radius: 4pt 4pt 0 0;
|
|
267
|
-
font-family: sans-serif;
|
|
268
|
-
padding: 0.5em;
|
|
269
|
-
flex: 0 0 auto;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.title {
|
|
273
|
-
flex-grow: 1;
|
|
274
|
-
white-space: nowrap;
|
|
275
|
-
overflow: hidden;
|
|
276
|
-
text-overflow: ellipsis;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.content {
|
|
280
|
-
flex-grow: 1;
|
|
281
|
-
padding: 0.5em;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.draggable-handle {
|
|
285
|
-
cursor: move;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.fade-enter,
|
|
289
|
-
.fade-leave-to {
|
|
290
|
-
opacity: 0;
|
|
291
|
-
transform: scale(0.9);
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.fade-enter-active,
|
|
295
|
-
.fade-leave-active {
|
|
296
|
-
transition: 0.2s;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
256
|
.iconify {
|
|
300
257
|
color: #000;
|
|
301
258
|
}
|
|
@@ -448,13 +405,4 @@
|
|
|
448
405
|
|
|
449
406
|
.cursor-s-resize {
|
|
450
407
|
cursor: s-resize;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.btn {
|
|
454
|
-
background-color: transparent;
|
|
455
|
-
border: none;
|
|
456
|
-
font-size: medium;
|
|
457
|
-
margin: 0;
|
|
458
|
-
padding: 0 0.25em;
|
|
459
|
-
border-radius: 4pt;
|
|
460
408
|
}
|
package/dist/index.d.ts
CHANGED