xframelib 1.0.3 → 1.0.5
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 +5 -0
- package/dist/assets/worker-bigimage-DeV0Ac8X.js +6 -0
- package/dist/assets/worker-webcache-BLs0AAZo.js +6 -0
- package/dist/assets/worker-xmath-BJNVXVMo.js +15 -0
- package/dist/controls/vuewindow/window/index.vue.d.ts +1 -1
- package/dist/index.css +60 -60
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/utils/CommonTool.d.ts +70 -0
- package/dist/utils/H5Tool.d.ts +8 -0
- package/dist/utils/WarGridTool.d.ts +162 -0
- package/dist/utils/index.d.ts +3 -1
- package/dist/workers/index.d.ts +7 -1
- package/dist/workers/worker-bigimage.d.ts +17 -0
- package/package.json +12 -12
- package/dist/assets/worker-webcache-JMcB6mHT.js +0 -6
- package/dist/assets/worker-xmath-DUFCrWrO.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;
|
|
198
197
|
isOpen: boolean;
|
|
199
198
|
closeButton: boolean;
|
|
199
|
+
resizable: boolean;
|
|
200
200
|
isScrollable: boolean;
|
|
201
201
|
padding: number;
|
|
202
202
|
activateWhenOpen: boolean;
|
package/dist/index.css
CHANGED
|
@@ -1,20 +1,3 @@
|
|
|
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
|
-
|
|
18
1
|
.splitpanes {
|
|
19
2
|
display: flex;
|
|
20
3
|
width: 100%;
|
|
@@ -147,49 +130,6 @@
|
|
|
147
130
|
margin-top: 1px;
|
|
148
131
|
}
|
|
149
132
|
|
|
150
|
-
.window {
|
|
151
|
-
display: flex;
|
|
152
|
-
flex-flow: column;
|
|
153
|
-
position: absolute;
|
|
154
|
-
border-radius: 4pt 4pt 0 0;
|
|
155
|
-
}
|
|
156
|
-
|
|
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;
|
|
164
|
-
}
|
|
165
|
-
|
|
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;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
133
|
.layoutContainer {
|
|
194
134
|
position: relative;
|
|
195
135
|
width: 100%;
|
|
@@ -296,6 +236,66 @@
|
|
|
296
236
|
z-index: var(--layout-centerfront-zindex);
|
|
297
237
|
}
|
|
298
238
|
|
|
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
299
|
.iconify {
|
|
300
300
|
color: #000;
|
|
301
301
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export * from './controls/routertransition';
|
|
|
4
4
|
export * from './controls/xwindow';
|
|
5
5
|
export * from './controls/index';
|
|
6
6
|
export * from './core';
|
|
7
|
-
export
|
|
7
|
+
export { GlobalMitt, default as mitt } from './mitt';
|
|
8
8
|
export * from './utils';
|
|
9
9
|
export * from './hprose';
|
|
10
10
|
export * from './api';
|