@stsdti/funky-ui-kit 1.3.7 → 1.3.9
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/funky-ui-kit.es.js +3 -3
- package/dist/funky-ui-kit.es.js.map +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/dist/funky-ui-kit.es.js
CHANGED
|
@@ -20561,7 +20561,7 @@ const _sfc_main$1m = {
|
|
|
20561
20561
|
const isVisible = ref(false);
|
|
20562
20562
|
const confirmButtonClass = computed(() => {
|
|
20563
20563
|
if (props2.variant === "danger" || props2.variant === "destructive") {
|
|
20564
|
-
return "btn
|
|
20564
|
+
return "btn bg-red text-white";
|
|
20565
20565
|
}
|
|
20566
20566
|
return "btn btn-black";
|
|
20567
20567
|
});
|
|
@@ -20573,10 +20573,10 @@ const _sfc_main$1m = {
|
|
|
20573
20573
|
props2.resolve(result);
|
|
20574
20574
|
}
|
|
20575
20575
|
function onConfirm() {
|
|
20576
|
-
close2({ value: true });
|
|
20576
|
+
close2({ value: true, isConfirmed: true });
|
|
20577
20577
|
}
|
|
20578
20578
|
function onCancel() {
|
|
20579
|
-
close2({ value: false });
|
|
20579
|
+
close2({ value: false, isConfirmed: false });
|
|
20580
20580
|
}
|
|
20581
20581
|
return (_ctx, _cache2) => {
|
|
20582
20582
|
return openBlock(), createBlock(AppModal, {
|