xframelib 0.7.9 → 0.8.0

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.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/dist/index.css +16 -1
  3. package/package.json +13 -13
package/README.md CHANGED
@@ -7,8 +7,9 @@
7
7
  <img src="https://img.shields.io/npm/dt/xframelib?logo=npm"/>
8
8
  </a>
9
9
  </p>
10
- **基于 VUE3+Hprose+Typescript 的前端框架**
10
+ **基于 VUE3+Hprose+Typescript 的前端框架**
11
11
 
12
+ - v0.8.0 更新LayoutContainer各层的默认样式,默认空白区域鼠标可以穿越,各元素鼠标可点击;更新依赖库版本
12
13
  - *v0.7.9 给H5Tool增加常用DOM操作方法;为SysEvents增加LayoutContainerLoaded,每个LayoutManager对象自动加载到Global.LayoutMap里,为Global默认增加CesiumViewer对象;强化Widget链式排队加载,必须先afterid对应的widget加载成功,然后才加载当前widget。
13
14
  - v0.7.8 更新依赖库版本;增加SysConfig默认配置项;controls增加XWindow和XWindowManager取代VWindow;增加全局的Global.WidgetConfigList数组和getLayoutManager方法;删除VCollapsiblePanel、 VCollapsiblePanelGroup组件。
14
15
  - v0.7.7 增加hprose二进制序列化方法serialize和deserialize;修改Global默认自带LayoutMap和默认为console的Message;为LayoutManager增加静态方法getLayoutManager;增加RouterTransition控件,并应用于layoutcontainer中;更新依赖库版本。
package/dist/index.css CHANGED
@@ -180,6 +180,9 @@
180
180
  overflow: hidden;
181
181
  pointer-events: none;
182
182
  }
183
+ .topContainer > * {
184
+ pointer-events: all !important;
185
+ }
183
186
 
184
187
  .bottomContainer {
185
188
  position: absolute;
@@ -191,6 +194,9 @@
191
194
  overflow: hidden;
192
195
  pointer-events: none;
193
196
  }
197
+ .bottomContainer > * {
198
+ pointer-events: all !important;
199
+ }
194
200
 
195
201
  .leftContainer {
196
202
  position: absolute;
@@ -198,6 +204,10 @@
198
204
  left: 0px;
199
205
  z-index: var(--layout-left-zindex);
200
206
  height: 100%;
207
+ pointer-events: none;
208
+ }
209
+ .leftContainer > * {
210
+ pointer-events: all !important;
201
211
  }
202
212
 
203
213
  .rightContainer {
@@ -209,6 +219,9 @@
209
219
  height: 100%;
210
220
  pointer-events: none;
211
221
  }
222
+ .rightContainer > * {
223
+ pointer-events: all !important;
224
+ }
212
225
 
213
226
  .centerdiv {
214
227
  position: absolute;
@@ -220,9 +233,11 @@
220
233
  overflow: hidden;
221
234
  pointer-events: none;
222
235
  }
236
+ .centerdiv > * {
237
+ pointer-events: all !important;
238
+ }
223
239
 
224
240
  .mainContainer {
225
- pointer-events: auto;
226
241
  z-index: var(--layout-centermain-zindex);
227
242
  }
228
243
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xframelib",
3
- "version": "0.7.9",
3
+ "version": "0.8.0",
4
4
  "description": "积累的前端开发基础库",
5
5
  "main": "dist/index.js",
6
6
  "common": "dist/index.cjs",
@@ -28,10 +28,10 @@
28
28
  "@hprose/rpc-html5": "^3.0.10",
29
29
  "@iconify/vue": "^4.1.2",
30
30
  "@microsoft/signalr": "^8.0.7",
31
- "axios": "^1.7.2",
31
+ "axios": "^1.7.7",
32
32
  "localforage": "^1.10.0",
33
33
  "loglevel": "^1.9.1",
34
- "qs": "^6.12.3",
34
+ "qs": "^6.13.0",
35
35
  "spark-md5": "^3.0.2",
36
36
  "streamsaver": "^2.0.6",
37
37
  "xhr": "^2.6.0"
@@ -43,21 +43,21 @@
43
43
  "@rollup/plugin-node-resolve": "^15.2.3",
44
44
  "@rollup/plugin-typescript": "^11.1.6",
45
45
  "@types/streamsaver": "^2.0.4",
46
- "@vitejs/plugin-vue": "^5.0.5",
47
- "@vue/compiler-sfc": "^3.4.31",
48
- "esbuild": "^0.23.0",
49
- "rimraf": "^5.0.9",
46
+ "@vitejs/plugin-vue": "^5.1.3",
47
+ "@vue/compiler-sfc": "^3.4.38",
48
+ "esbuild": "^0.23.1",
49
+ "rimraf": "^5.0.10",
50
50
  "rollup-plugin-copy": "^3.5.0",
51
51
  "rollup-plugin-esbuild": "^6.1.1",
52
52
  "rollup-plugin-scss": "^4.0.0",
53
53
  "rollup-plugin-terser": "^7.0.2",
54
54
  "rollup-plugin-typescript2": "^0.36.0",
55
55
  "rollup-plugin-vue": "^6.0.0",
56
- "sass": "^1.77.7",
57
- "typescript": "^5.5.3",
58
- "vite": "^5.3.3",
59
- "vue": "^3.4.31",
60
- "vue-router": "^4.4.0",
61
- "vue-tsc": "^2.0.26"
56
+ "sass": "^1.77.8",
57
+ "typescript": "^5.5.4",
58
+ "vite": "^5.4.2",
59
+ "vue": "^3.4.38",
60
+ "vue-router": "^4.4.3",
61
+ "vue-tsc": "^2.1.4"
62
62
  }
63
63
  }