cleek 2.4.28 → 2.4.29
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/cleek.es.js +6 -6
- package/dist/cleek.umd.js +1 -1
- package/package.json +1 -1
package/dist/cleek.es.js
CHANGED
|
@@ -22405,17 +22405,17 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
22405
22405
|
return list;
|
|
22406
22406
|
});
|
|
22407
22407
|
const realAcceptBtnType = computed$2(() => {
|
|
22408
|
-
if (props.
|
|
22409
|
-
return props.
|
|
22410
|
-
if (cleekOptions2.popup.
|
|
22411
|
-
return cleekOptions2.popup.
|
|
22408
|
+
if (props.acceptBtnType)
|
|
22409
|
+
return props.acceptBtnType;
|
|
22410
|
+
if (cleekOptions2.popup.acceptBtnType)
|
|
22411
|
+
return cleekOptions2.popup.acceptBtnType;
|
|
22412
22412
|
return "flat";
|
|
22413
22413
|
});
|
|
22414
22414
|
const realCancelBtnType = computed$2(() => {
|
|
22415
22415
|
if (props.cancelBtnType)
|
|
22416
22416
|
return props.cancelBtnType;
|
|
22417
|
-
if (cleekOptions2.popup.
|
|
22418
|
-
return cleekOptions2.popup.
|
|
22417
|
+
if (cleekOptions2.popup.cancelBtnType)
|
|
22418
|
+
return cleekOptions2.popup.cancelBtnType;
|
|
22419
22419
|
return "outlined";
|
|
22420
22420
|
});
|
|
22421
22421
|
function onCancel() {
|