xframelib 0.7.8 → 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.
- package/README.md +4 -3
- package/dist/controls/layoutcontainer/LayoutManager.d.ts +1 -1
- package/dist/core/IModel.d.ts +4 -0
- package/dist/core/SysEvents.d.ts +8 -0
- package/dist/index.cjs +4 -4
- package/dist/index.css +16 -1
- package/dist/index.js +5 -5
- package/dist/utils/H5Tool.d.ts +150 -0
- package/package.json +13 -13
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
|
|