@whitesev/pops 1.6.1 → 1.6.2
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 +4 -2
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +4 -2
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +4 -2
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/panel/PanelHandleContentDetails.ts +4 -2
package/dist/index.system.js
CHANGED
|
@@ -8598,6 +8598,7 @@ System.register('pops', [], (function (exports) {
|
|
|
8598
8598
|
</div>
|
|
8599
8599
|
`;
|
|
8600
8600
|
const PopsPanelSelectMultiple = {
|
|
8601
|
+
[Symbol.toStringTag]: "PopsPanelSelectMultiple",
|
|
8601
8602
|
$el: {
|
|
8602
8603
|
/** 容器 */
|
|
8603
8604
|
$container: void 0,
|
|
@@ -8897,7 +8898,7 @@ System.register('pops', [], (function (exports) {
|
|
|
8897
8898
|
});
|
|
8898
8899
|
}
|
|
8899
8900
|
let { style, ...userConfirmDetails } = formConfig.selectConfirmDialogDetails || {};
|
|
8900
|
-
let confirmDetails =
|
|
8901
|
+
let confirmDetails = popsUtils.assign({
|
|
8901
8902
|
title: {
|
|
8902
8903
|
text: "请勾选需要选择的选项",
|
|
8903
8904
|
position: "center",
|
|
@@ -8917,6 +8918,7 @@ System.register('pops', [], (function (exports) {
|
|
|
8917
8918
|
callback(details, event) {
|
|
8918
8919
|
that.$data.selectInfo = [...selectedInfo];
|
|
8919
8920
|
that.updateSelectTagItem();
|
|
8921
|
+
details.close();
|
|
8920
8922
|
},
|
|
8921
8923
|
},
|
|
8922
8924
|
},
|
|
@@ -9077,7 +9079,7 @@ System.register('pops', [], (function (exports) {
|
|
|
9077
9079
|
},
|
|
9078
9080
|
};
|
|
9079
9081
|
PopsPanelSelectMultiple.init();
|
|
9080
|
-
Reflect.set(liElement, "data-select", PopsPanelSelectMultiple);
|
|
9082
|
+
Reflect.set(liElement, "data-select-multiple", PopsPanelSelectMultiple);
|
|
9081
9083
|
return liElement;
|
|
9082
9084
|
},
|
|
9083
9085
|
/**
|