xframelib 0.9.8 → 1.0.1

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 CHANGED
@@ -13,8 +13,10 @@
13
13
 
14
14
  > 基于 VUE3+Hprose+Typescript+Widget 的前端框架,与ElementUI、AntDesign VUE、Quasar等界面库无关,一直是来源于项目和服务于项目。
15
15
 
16
+ - v1.0.1 更新依赖库版本,修改复制粘贴与textarea粘贴功能冲突问题;
17
+ - v0.9.9 修改init方法,使用Global.Config.ServiceURL.IconServiceURL注册自己的IconAPIProvider(解决内网时xwindow组件无按钮符号) ;
16
18
  - v0.9.8 移除streamsaver依赖库,改为内部引用,解决弹框请求mitm.html导致无法下载文件的问题(http下的IP:端口请求会出现域安全问题);
17
- - v0.9.7 解决v0.9.6使用useTemplateRef后导致LayoutManager不断报警告问题:client-entry.js:313 [[Vue warn] Set operation on key "value" failed: target is readonly. RefImpl
19
+ - v0.9.7 解决v0.9.6使用useTemplateRef后导致LayoutManager不断报警告问题:client-entry.js:313 [Vue warn] Set operation on key "value" failed: target is readonly. RefImpl
18
20
  - *v0.9.6 改用vite打包;解决存在的循环引用问题;引入webworker,增加xmathWorker和xxteaWorker;XWindow增加点击header栏置顶窗体;优化widgetConfig加载,提升优化LayoutContainer和LayoutManager内部处理效率(保留旧方法,兼容旧开发模板);更新依赖库版本;
19
21
  - v0.9.5 SysConfig.js引入UI.OnlyUserVerify配置可以启用“只验证用户,不验证功能”;uuid方法改为小写;解决存在的循环引用问题;更新依赖库版本;
20
22
  - v0.9.4 修改ADivider组件线样式问题;修改XWindow组件拖拽位置计算不对的BUG;更新js依赖版本;
package/dist/index.css CHANGED
@@ -130,6 +130,23 @@
130
130
  margin-top: 1px;
131
131
  }
132
132
 
133
+ .adivider {
134
+ width: 100%;
135
+ margin: 10px 0;
136
+ display: flex;
137
+ align-items: center;
138
+ justify-items: center;
139
+ }
140
+
141
+ .adivider .line {
142
+ border: v-bind(lineColor) 1px solid;
143
+ }
144
+
145
+ .adivider .contentText {
146
+ background-color: inherit;
147
+ font-size: 18px;
148
+ }
149
+
133
150
  .layoutContainer {
134
151
  position: relative;
135
152
  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
  }
@@ -450,6 +407,49 @@
450
407
  cursor: s-resize;
451
408
  }
452
409
 
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;