@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.umd.js
CHANGED
|
@@ -8599,6 +8599,7 @@
|
|
|
8599
8599
|
</div>
|
|
8600
8600
|
`;
|
|
8601
8601
|
const PopsPanelSelectMultiple = {
|
|
8602
|
+
[Symbol.toStringTag]: "PopsPanelSelectMultiple",
|
|
8602
8603
|
$el: {
|
|
8603
8604
|
/** 容器 */
|
|
8604
8605
|
$container: void 0,
|
|
@@ -8898,7 +8899,7 @@
|
|
|
8898
8899
|
});
|
|
8899
8900
|
}
|
|
8900
8901
|
let { style, ...userConfirmDetails } = formConfig.selectConfirmDialogDetails || {};
|
|
8901
|
-
let confirmDetails =
|
|
8902
|
+
let confirmDetails = popsUtils.assign({
|
|
8902
8903
|
title: {
|
|
8903
8904
|
text: "请勾选需要选择的选项",
|
|
8904
8905
|
position: "center",
|
|
@@ -8918,6 +8919,7 @@
|
|
|
8918
8919
|
callback(details, event) {
|
|
8919
8920
|
that.$data.selectInfo = [...selectedInfo];
|
|
8920
8921
|
that.updateSelectTagItem();
|
|
8922
|
+
details.close();
|
|
8921
8923
|
},
|
|
8922
8924
|
},
|
|
8923
8925
|
},
|
|
@@ -9078,7 +9080,7 @@
|
|
|
9078
9080
|
},
|
|
9079
9081
|
};
|
|
9080
9082
|
PopsPanelSelectMultiple.init();
|
|
9081
|
-
Reflect.set(liElement, "data-select", PopsPanelSelectMultiple);
|
|
9083
|
+
Reflect.set(liElement, "data-select-multiple", PopsPanelSelectMultiple);
|
|
9082
9084
|
return liElement;
|
|
9083
9085
|
},
|
|
9084
9086
|
/**
|