@whitesev/pops 1.5.3 → 1.5.4
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/dist/index.amd.js +111 -50
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +111 -50
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +111 -50
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +111 -50
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +111 -50
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +111 -50
- package/dist/index.umd.js.map +1 -1
- package/dist/types/src/components/rightClickMenu/indexType.d.ts +1 -1
- package/dist/types/src/components/searchSuggestion/indexType.d.ts +1 -1
- package/dist/types/src/components/tooltip/indexType.d.ts +1 -1
- package/dist/types/src/handler/PopsElementHandler.d.ts +2 -1
- package/dist/types/src/handler/PopsHandler.d.ts +5 -0
- package/dist/types/src/types/components.d.ts +1 -1
- package/package.json +3 -2
- package/src/Pops.ts +1 -1
- package/src/components/alert/index.ts +6 -3
- package/src/components/confirm/index.ts +6 -3
- package/src/components/drawer/index.ts +6 -3
- package/src/components/folder/index.ts +6 -2
- package/src/components/iframe/index.ts +12 -8
- package/src/components/loading/index.ts +8 -3
- package/src/components/panel/index.ts +8 -3
- package/src/components/prompt/index.ts +7 -4
- package/src/components/rightClickMenu/index.ts +15 -3
- package/src/components/rightClickMenu/indexType.ts +1 -1
- package/src/components/searchSuggestion/index.ts +1 -1
- package/src/components/searchSuggestion/indexType.ts +1 -1
- package/src/components/tooltip/index.ts +3 -1
- package/src/components/tooltip/indexType.ts +1 -1
- package/src/handler/PopsElementHandler.ts +24 -18
- package/src/handler/PopsHandler.ts +27 -4
- package/src/types/components.d.ts +1 -1
- package/src/utils/PopsUtils.ts +8 -4
package/dist/index.system.js
CHANGED
|
@@ -1527,17 +1527,21 @@ System.register('pops', [], (function (exports) {
|
|
|
1527
1527
|
else {
|
|
1528
1528
|
for (const targetKeyName in target) {
|
|
1529
1529
|
if (targetKeyName in source) {
|
|
1530
|
+
// @ts-ignore
|
|
1530
1531
|
let targetValue = target[targetKeyName];
|
|
1532
|
+
// @ts-ignore
|
|
1531
1533
|
let sourceValue = source[targetKeyName];
|
|
1532
1534
|
if (typeof sourceValue === "object" &&
|
|
1533
1535
|
sourceValue != null &&
|
|
1534
1536
|
!UtilsContext.isDOM(sourceValue) &&
|
|
1535
1537
|
Object.keys(sourceValue).length) {
|
|
1536
1538
|
/* 源端的值是object类型,且不是元素节点 */
|
|
1539
|
+
// @ts-ignore
|
|
1537
1540
|
target[targetKeyName] = UtilsContext.assign(targetValue, sourceValue, isAdd);
|
|
1538
1541
|
continue;
|
|
1539
1542
|
}
|
|
1540
1543
|
/* 直接赋值 */
|
|
1544
|
+
// @ts-ignore
|
|
1541
1545
|
target[targetKeyName] = sourceValue;
|
|
1542
1546
|
}
|
|
1543
1547
|
}
|
|
@@ -3555,6 +3559,9 @@ System.register('pops', [], (function (exports) {
|
|
|
3555
3559
|
*/
|
|
3556
3560
|
getMaskHTML(guid, zIndex = 101, style = "") {
|
|
3557
3561
|
zIndex = zIndex - 100;
|
|
3562
|
+
if (style.startsWith(";")) {
|
|
3563
|
+
style = style.replace(";", "");
|
|
3564
|
+
}
|
|
3558
3565
|
return `<div class="pops-mask" data-guid="${guid}" style="z-index:${zIndex};${style}"></div>`;
|
|
3559
3566
|
},
|
|
3560
3567
|
/**
|
|
@@ -3564,15 +3571,16 @@ System.register('pops', [], (function (exports) {
|
|
|
3564
3571
|
* @param config
|
|
3565
3572
|
* @param html
|
|
3566
3573
|
* @param bottomBtnHTML
|
|
3574
|
+
* @param zIndex
|
|
3567
3575
|
*/
|
|
3568
|
-
getAnimHTML(guid, type, config, html = "", bottomBtnHTML = "") {
|
|
3576
|
+
getAnimHTML(guid, type, config, html = "", bottomBtnHTML = "", zIndex) {
|
|
3569
3577
|
let __config = config;
|
|
3570
3578
|
let popsAnimStyle = "";
|
|
3571
3579
|
let popsStyle = "";
|
|
3572
3580
|
let popsPosition = __config.position || "";
|
|
3573
3581
|
if (config.zIndex != null) {
|
|
3574
|
-
popsAnimStyle += `z-index: ${
|
|
3575
|
-
popsStyle += `z-index: ${
|
|
3582
|
+
popsAnimStyle += `z-index: ${zIndex};`;
|
|
3583
|
+
popsStyle += `z-index: ${zIndex};`;
|
|
3576
3584
|
}
|
|
3577
3585
|
if (__config.width != null) {
|
|
3578
3586
|
popsStyle += `width: ${__config.width};`;
|
|
@@ -3581,24 +3589,25 @@ System.register('pops', [], (function (exports) {
|
|
|
3581
3589
|
popsStyle += `height: ${__config.height};`;
|
|
3582
3590
|
}
|
|
3583
3591
|
let hasBottomBtn = bottomBtnHTML.trim() === "" ? false : true;
|
|
3584
|
-
return
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3592
|
+
return /*html*/ `
|
|
3593
|
+
<div
|
|
3594
|
+
class="pops-anim"
|
|
3595
|
+
anim="${__config.animation || ""}"
|
|
3596
|
+
style="${popsAnimStyle};"
|
|
3597
|
+
data-guid="${guid}">
|
|
3589
3598
|
${config.style != null
|
|
3590
3599
|
? `<style tyle="text/css">${config.style}</style>`
|
|
3591
3600
|
: ""}
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3601
|
+
<div
|
|
3602
|
+
class="pops ${config.class || ""}"
|
|
3603
|
+
data-bottom-btn="${hasBottomBtn}"
|
|
3604
|
+
type-value="${type}"
|
|
3605
|
+
style="${popsStyle}"
|
|
3606
|
+
position="${popsPosition}"
|
|
3607
|
+
data-guid="${guid}">
|
|
3608
|
+
${html}
|
|
3609
|
+
</div>
|
|
3610
|
+
</div>`;
|
|
3602
3611
|
},
|
|
3603
3612
|
/**
|
|
3604
3613
|
* 获取顶部按钮层HTML
|
|
@@ -4208,6 +4217,18 @@ System.register('pops', [], (function (exports) {
|
|
|
4208
4217
|
capture: true,
|
|
4209
4218
|
});
|
|
4210
4219
|
},
|
|
4220
|
+
/**
|
|
4221
|
+
* 把配置的z-index配置转为数字
|
|
4222
|
+
* @param zIndex
|
|
4223
|
+
*/
|
|
4224
|
+
handleZIndex(zIndex) {
|
|
4225
|
+
if (typeof zIndex === "function") {
|
|
4226
|
+
return zIndex();
|
|
4227
|
+
}
|
|
4228
|
+
else {
|
|
4229
|
+
return zIndex;
|
|
4230
|
+
}
|
|
4231
|
+
},
|
|
4211
4232
|
/**
|
|
4212
4233
|
* 处理config.only
|
|
4213
4234
|
* @param type 当前弹窗类型
|
|
@@ -4233,8 +4254,19 @@ System.register('pops', [], (function (exports) {
|
|
|
4233
4254
|
}
|
|
4234
4255
|
}
|
|
4235
4256
|
else {
|
|
4236
|
-
|
|
4237
|
-
|
|
4257
|
+
// 对配置进行处理
|
|
4258
|
+
// 选择配置的z-index和已有的pops实例的最大z-index值
|
|
4259
|
+
if (typeof config.zIndex === "function") {
|
|
4260
|
+
let originZIndexFn = config.zIndex;
|
|
4261
|
+
config.zIndex = () => {
|
|
4262
|
+
const { zIndex: maxZIndex } = PopsInstanceUtils.getPopsMaxZIndex(PopsHandler.handleZIndex(originZIndexFn) + 100);
|
|
4263
|
+
return maxZIndex;
|
|
4264
|
+
};
|
|
4265
|
+
}
|
|
4266
|
+
else {
|
|
4267
|
+
const { zIndex: maxZIndex } = PopsInstanceUtils.getPopsMaxZIndex(PopsHandler.handleZIndex(config.zIndex) + 100);
|
|
4268
|
+
config.zIndex = maxZIndex;
|
|
4269
|
+
}
|
|
4238
4270
|
}
|
|
4239
4271
|
return config;
|
|
4240
4272
|
},
|
|
@@ -4322,12 +4354,15 @@ System.register('pops', [], (function (exports) {
|
|
|
4322
4354
|
// 设置当前类型
|
|
4323
4355
|
const PopsType = "alert";
|
|
4324
4356
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
4325
|
-
|
|
4357
|
+
// 先把z-index提取出来
|
|
4358
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
4359
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
4326
4360
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
4327
4361
|
let bottomBtnHTML = PopsElementHandler.getBottomBtnHTML(PopsType, config);
|
|
4328
4362
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
4329
4363
|
let { contentStyle, contentPStyle } = PopsElementHandler.getContentStyle(PopsType, config);
|
|
4330
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4364
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4365
|
+
/*html*/ `
|
|
4331
4366
|
<div
|
|
4332
4367
|
class="pops-alert-title"
|
|
4333
4368
|
style="text-align: ${config.title.position};
|
|
@@ -4342,7 +4377,7 @@ System.register('pops', [], (function (exports) {
|
|
|
4342
4377
|
? config.content.text
|
|
4343
4378
|
: `<p pops style="${contentPStyle}">${config.content.text}</p>`}
|
|
4344
4379
|
</div>
|
|
4345
|
-
${bottomBtnHTML}`, bottomBtnHTML);
|
|
4380
|
+
${bottomBtnHTML}`, bottomBtnHTML, zIndex);
|
|
4346
4381
|
/**
|
|
4347
4382
|
* 弹窗的主元素,包括动画层
|
|
4348
4383
|
*/
|
|
@@ -4504,12 +4539,15 @@ System.register('pops', [], (function (exports) {
|
|
|
4504
4539
|
// 设置当前类型
|
|
4505
4540
|
const PopsType = "confirm";
|
|
4506
4541
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
4507
|
-
|
|
4542
|
+
// 先把z-index提取出来
|
|
4543
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
4544
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
4508
4545
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
4509
4546
|
let bottomBtnHTML = PopsElementHandler.getBottomBtnHTML(PopsType, config);
|
|
4510
4547
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
4511
4548
|
let { contentStyle, contentPStyle } = PopsElementHandler.getContentStyle(PopsType, config);
|
|
4512
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4549
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4550
|
+
/*html*/ `
|
|
4513
4551
|
<div class="pops-confirm-title" style="text-align: ${config.title.position};${headerStyle}">
|
|
4514
4552
|
${config.title.html
|
|
4515
4553
|
? config.title.text
|
|
@@ -4523,7 +4561,7 @@ System.register('pops', [], (function (exports) {
|
|
|
4523
4561
|
|
|
4524
4562
|
</div>
|
|
4525
4563
|
${bottomBtnHTML}
|
|
4526
|
-
`, bottomBtnHTML);
|
|
4564
|
+
`, bottomBtnHTML, zIndex);
|
|
4527
4565
|
/**
|
|
4528
4566
|
* 弹窗的主元素,包括动画层
|
|
4529
4567
|
*/
|
|
@@ -4692,12 +4730,15 @@ System.register('pops', [], (function (exports) {
|
|
|
4692
4730
|
let guid = popsUtils.getRandomGUID();
|
|
4693
4731
|
const PopsType = "prompt";
|
|
4694
4732
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
4695
|
-
|
|
4733
|
+
// 先把z-index提取出来
|
|
4734
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
4735
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
4696
4736
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
4697
4737
|
let bottomBtnHTML = PopsElementHandler.getBottomBtnHTML(PopsType, config);
|
|
4698
4738
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
4699
4739
|
let { contentPStyle } = PopsElementHandler.getContentStyle(PopsType, config);
|
|
4700
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4740
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4741
|
+
/*html*/ `
|
|
4701
4742
|
<div class="pops-prompt-title" style="text-align: ${config.title.position};${headerStyle}">
|
|
4702
4743
|
${config.title.html
|
|
4703
4744
|
? config.title.text
|
|
@@ -4715,8 +4756,8 @@ System.register('pops', [], (function (exports) {
|
|
|
4715
4756
|
(config.content.password ? "password" : "text") +
|
|
4716
4757
|
'">'}
|
|
4717
4758
|
</div>
|
|
4718
|
-
|
|
4719
|
-
`, bottomBtnHTML);
|
|
4759
|
+
${bottomBtnHTML}
|
|
4760
|
+
`, bottomBtnHTML, zIndex);
|
|
4720
4761
|
/**
|
|
4721
4762
|
* 弹窗的主元素,包括动画层
|
|
4722
4763
|
*/
|
|
@@ -4813,9 +4854,12 @@ System.register('pops', [], (function (exports) {
|
|
|
4813
4854
|
let guid = popsUtils.getRandomGUID();
|
|
4814
4855
|
const PopsType = "loading";
|
|
4815
4856
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
4816
|
-
|
|
4857
|
+
// 先把z-index提取出来
|
|
4858
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
4859
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
4817
4860
|
let { contentPStyle } = PopsElementHandler.getContentStyle("loading", config);
|
|
4818
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4861
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
4862
|
+
/*html*/ `
|
|
4819
4863
|
<div class="pops-loading-content">
|
|
4820
4864
|
${config.addIndexCSS
|
|
4821
4865
|
? `
|
|
@@ -4830,7 +4874,7 @@ System.register('pops', [], (function (exports) {
|
|
|
4830
4874
|
${config.style != null ? `<style>${config.style}</style>` : ""}
|
|
4831
4875
|
<p pops style="${contentPStyle}">${config.content.text}</p>
|
|
4832
4876
|
</div>
|
|
4833
|
-
`, "");
|
|
4877
|
+
`, "", zIndex);
|
|
4834
4878
|
/**
|
|
4835
4879
|
* 弹窗的主元素,包括动画层
|
|
4836
4880
|
*/
|
|
@@ -4946,12 +4990,15 @@ System.register('pops', [], (function (exports) {
|
|
|
4946
4990
|
let maskExtraStyle = config.animation != null && config.animation != ""
|
|
4947
4991
|
? "position:absolute;"
|
|
4948
4992
|
: "";
|
|
4949
|
-
|
|
4993
|
+
// 先把z-index提取出来
|
|
4994
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
4995
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex, maskExtraStyle);
|
|
4950
4996
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
4951
4997
|
let iframeLoadingHTML = '<div class="pops-loading"></div>';
|
|
4952
4998
|
let titleText = config.title.text.trim() !== "" ? config.title.text : config.url;
|
|
4953
4999
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
4954
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
5000
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
5001
|
+
/*html*/ `
|
|
4955
5002
|
<div
|
|
4956
5003
|
class="pops-iframe-title"
|
|
4957
5004
|
style="text-align: ${config.title.position};${headerStyle}"
|
|
@@ -4972,7 +5019,7 @@ System.register('pops', [], (function (exports) {
|
|
|
4972
5019
|
</iframe>
|
|
4973
5020
|
</div>
|
|
4974
5021
|
${config.loading.enable ? iframeLoadingHTML : ""}
|
|
4975
|
-
`, "");
|
|
5022
|
+
`, "", zIndex);
|
|
4976
5023
|
/**
|
|
4977
5024
|
* 弹窗的主元素,包括动画层
|
|
4978
5025
|
*/
|
|
@@ -5204,7 +5251,7 @@ System.register('pops', [], (function (exports) {
|
|
|
5204
5251
|
popsDOMUtils.addClassName(_toolTipElement_, config.className);
|
|
5205
5252
|
}
|
|
5206
5253
|
_toolTipElement_.setAttribute("data-guid", guid);
|
|
5207
|
-
_toolTipElement_.style.zIndex = config.zIndex.toString();
|
|
5254
|
+
_toolTipElement_.style.zIndex = PopsHandler.handleZIndex(config.zIndex).toString();
|
|
5208
5255
|
_toolTipElement_.innerHTML = `<div style="text-align: center;">${getContent()}</div>`;
|
|
5209
5256
|
/* 箭头元素 */
|
|
5210
5257
|
let _toolTipArrowHTML_ = '<div class="pops-tip-arrow"></div>';
|
|
@@ -5521,12 +5568,15 @@ System.register('pops', [], (function (exports) {
|
|
|
5521
5568
|
let guid = popsUtils.getRandomGUID();
|
|
5522
5569
|
const PopsType = "drawer";
|
|
5523
5570
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
5524
|
-
|
|
5571
|
+
// 先把z-index提取出来
|
|
5572
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
5573
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
5525
5574
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
5526
5575
|
let bottomBtnHTML = PopsElementHandler.getBottomBtnHTML(PopsType, config);
|
|
5527
5576
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
5528
5577
|
let { contentStyle, contentPStyle } = PopsElementHandler.getContentStyle(PopsType, config);
|
|
5529
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
5578
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
5579
|
+
/*html*/ `
|
|
5530
5580
|
${config.title.enable
|
|
5531
5581
|
? `
|
|
5532
5582
|
<div class="pops-${PopsType}-title" style="${headerStyle}">
|
|
@@ -5550,7 +5600,7 @@ System.register('pops', [], (function (exports) {
|
|
|
5550
5600
|
</div>
|
|
5551
5601
|
|
|
5552
5602
|
${bottomBtnHTML}
|
|
5553
|
-
`, bottomBtnHTML);
|
|
5603
|
+
`, bottomBtnHTML, zIndex);
|
|
5554
5604
|
/**
|
|
5555
5605
|
* 弹窗的主元素,包括动画层
|
|
5556
5606
|
*/
|
|
@@ -5908,7 +5958,9 @@ System.register('pops', [], (function (exports) {
|
|
|
5908
5958
|
let guid = popsUtils.getRandomGUID();
|
|
5909
5959
|
const PopsType = "folder";
|
|
5910
5960
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
5911
|
-
|
|
5961
|
+
// 先把z-index提取出来
|
|
5962
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
5963
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
5912
5964
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
5913
5965
|
let bottomBtnHTML = PopsElementHandler.getBottomBtnHTML(PopsType, config);
|
|
5914
5966
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
@@ -6019,7 +6071,7 @@ System.register('pops', [], (function (exports) {
|
|
|
6019
6071
|
</div>
|
|
6020
6072
|
</div>
|
|
6021
6073
|
${bottomBtnHTML}
|
|
6022
|
-
`, bottomBtnHTML);
|
|
6074
|
+
`, bottomBtnHTML, zIndex);
|
|
6023
6075
|
/**
|
|
6024
6076
|
* 弹窗的主元素,包括动画层
|
|
6025
6077
|
*/
|
|
@@ -7010,10 +7062,13 @@ System.register('pops', [], (function (exports) {
|
|
|
7010
7062
|
let guid = popsUtils.getRandomGUID();
|
|
7011
7063
|
const PopsType = "panel";
|
|
7012
7064
|
config = PopsHandler.handleOnly(PopsType, config);
|
|
7013
|
-
|
|
7065
|
+
// 先把z-index提取出来
|
|
7066
|
+
let zIndex = PopsHandler.handleZIndex(config.zIndex);
|
|
7067
|
+
let maskHTML = PopsElementHandler.getMaskHTML(guid, zIndex);
|
|
7014
7068
|
let headerBtnHTML = PopsElementHandler.getHeaderBtnHTML(PopsType, config);
|
|
7015
7069
|
let { headerStyle, headerPStyle } = PopsElementHandler.getHeaderStyle(PopsType, config);
|
|
7016
|
-
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
7070
|
+
let animHTML = PopsElementHandler.getAnimHTML(guid, PopsType, config,
|
|
7071
|
+
/*html*/ `
|
|
7017
7072
|
<div
|
|
7018
7073
|
class="pops-${PopsType}-title"
|
|
7019
7074
|
style="text-align: ${config.title.position};
|
|
@@ -7031,7 +7086,7 @@ System.register('pops', [], (function (exports) {
|
|
|
7031
7086
|
<ul class="pops-panel-container-header-ul"></ul>
|
|
7032
7087
|
<ul></ul>
|
|
7033
7088
|
</section>
|
|
7034
|
-
</div>`, "");
|
|
7089
|
+
</div>`, "", zIndex);
|
|
7035
7090
|
/**
|
|
7036
7091
|
* 弹窗的主元素,包括动画层
|
|
7037
7092
|
*/
|
|
@@ -9122,7 +9177,7 @@ System.register('pops', [], (function (exports) {
|
|
|
9122
9177
|
* @param isChildren 是否是rightClickMenu的某一项的子菜单
|
|
9123
9178
|
*/
|
|
9124
9179
|
getMenuContainerElement(zIndex, isChildren) {
|
|
9125
|
-
let menuElement = popsUtils.parseTextToDOM(`
|
|
9180
|
+
let menuElement = popsUtils.parseTextToDOM(/*html*/ `
|
|
9126
9181
|
<div class="pops-${PopsType}" ${isChildren ? 'is-children="true"' : ""}>
|
|
9127
9182
|
<style type="text/css" data-from="pops-${PopsType}">
|
|
9128
9183
|
.pops-${PopsType} *{
|
|
@@ -9210,6 +9265,12 @@ System.register('pops', [], (function (exports) {
|
|
|
9210
9265
|
}
|
|
9211
9266
|
return menuElement;
|
|
9212
9267
|
},
|
|
9268
|
+
/**
|
|
9269
|
+
* 动态获取配的z-index
|
|
9270
|
+
*/
|
|
9271
|
+
getMenuZIndex() {
|
|
9272
|
+
return PopsHandler.handleZIndex(config.zIndex);
|
|
9273
|
+
},
|
|
9213
9274
|
/**
|
|
9214
9275
|
* 获取left、top偏移
|
|
9215
9276
|
* @param menuElement 菜单元素
|
|
@@ -9244,7 +9305,7 @@ System.register('pops', [], (function (exports) {
|
|
|
9244
9305
|
* @param _config_
|
|
9245
9306
|
*/
|
|
9246
9307
|
showMenu(menuEvent, _config_) {
|
|
9247
|
-
let menuElement = this.getMenuContainerElement(
|
|
9308
|
+
let menuElement = this.getMenuContainerElement(this.getMenuZIndex(), false);
|
|
9248
9309
|
menuElement["__menuData__"] = {
|
|
9249
9310
|
child: [],
|
|
9250
9311
|
};
|
|
@@ -9282,7 +9343,7 @@ System.register('pops', [], (function (exports) {
|
|
|
9282
9343
|
* @param targetLiElement 父li项元素
|
|
9283
9344
|
*/
|
|
9284
9345
|
showClildMenu(menuEvent, posInfo, _config_, rootElement, targetLiElement) {
|
|
9285
|
-
let menuElement = this.getMenuContainerElement(
|
|
9346
|
+
let menuElement = this.getMenuContainerElement(this.getMenuZIndex(), true);
|
|
9286
9347
|
menuElement["__menuData__"] = {
|
|
9287
9348
|
parent: targetLiElement,
|
|
9288
9349
|
root: rootElement,
|
|
@@ -9548,7 +9609,7 @@ System.register('pops', [], (function (exports) {
|
|
|
9548
9609
|
}
|
|
9549
9610
|
ul.pops-${PopsType}-search-suggestion-hint{
|
|
9550
9611
|
position: ${config.isAbsolute ? "absolute" : "fixed"};
|
|
9551
|
-
z-index: ${config.zIndex};
|
|
9612
|
+
z-index: ${PopsHandler.handleZIndex(config.zIndex)};
|
|
9552
9613
|
width: 0;
|
|
9553
9614
|
left: 0;
|
|
9554
9615
|
max-height: ${config.maxHeight};
|
|
@@ -9985,7 +10046,7 @@ System.register('pops', [], (function (exports) {
|
|
|
9985
10046
|
/** 配置 */
|
|
9986
10047
|
config = {
|
|
9987
10048
|
/** 版本号 */
|
|
9988
|
-
version: "2024.9.
|
|
10049
|
+
version: "2024.9.10",
|
|
9989
10050
|
cssText: {
|
|
9990
10051
|
/** 主CSS */
|
|
9991
10052
|
index: indexCSS,
|