@mobileaction/action-kit 1.44.4-beta.1 → 1.44.4-beta.3
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/action-kit.mjs
CHANGED
|
@@ -843,7 +843,7 @@ const GC = {
|
|
|
843
843
|
mouseEnterDelay: { default: 0 },
|
|
844
844
|
mouseLeaveDelay: { default: 0 },
|
|
845
845
|
showArrow: { type: Boolean, default: !0 },
|
|
846
|
-
popoverProps: {}
|
|
846
|
+
popoverProps: { default: () => ({}) }
|
|
847
847
|
},
|
|
848
848
|
setup(f) {
|
|
849
849
|
const s = f, n = M(() => ({
|
|
@@ -17724,7 +17724,7 @@ const Rg = /* @__PURE__ */ Wn(Xx), hp = {
|
|
|
17724
17724
|
props: {
|
|
17725
17725
|
title: { default: null },
|
|
17726
17726
|
description: { default: null },
|
|
17727
|
-
variant: {},
|
|
17727
|
+
variant: { default: "warning" },
|
|
17728
17728
|
visible: { type: Boolean, default: !1 },
|
|
17729
17729
|
placement: { default: "bottom-start" },
|
|
17730
17730
|
showArrow: { type: Boolean, default: !0 },
|
|
@@ -17737,7 +17737,7 @@ const Rg = /* @__PURE__ */ Wn(Xx), hp = {
|
|
|
17737
17737
|
confirmButtonDisabled: { type: Boolean },
|
|
17738
17738
|
cancelButtonDisabled: { type: Boolean },
|
|
17739
17739
|
showIcon: { type: Boolean, default: !0 },
|
|
17740
|
-
popoverProps: {},
|
|
17740
|
+
popoverProps: { default: () => ({}) },
|
|
17741
17741
|
showConfirmButton: { type: Boolean, default: !0 },
|
|
17742
17742
|
showCancelButton: { type: Boolean, default: !0 },
|
|
17743
17743
|
fullWidthButton: { type: Boolean, default: !1 }
|
|
@@ -46,11 +46,13 @@ declare const __VLS_component: import("vue").DefineComponent<Popconfirm2Props, {
|
|
|
46
46
|
onConfirm?: (...args: any[]) => any;
|
|
47
47
|
}>, {
|
|
48
48
|
title: string;
|
|
49
|
+
variant: Popconfirm2Variants;
|
|
49
50
|
showIcon: boolean;
|
|
50
51
|
placement: Popover2Placement;
|
|
51
52
|
description: string;
|
|
52
53
|
visible: boolean;
|
|
53
54
|
showArrow: boolean;
|
|
55
|
+
popoverProps: MaPopover2Props;
|
|
54
56
|
confirmButtonText: string;
|
|
55
57
|
cancelButtonText: string;
|
|
56
58
|
showConfirmButton: boolean;
|
|
@@ -36,6 +36,7 @@ declare const __VLS_component: import("vue").DefineComponent<Tooltip2Props, {},
|
|
|
36
36
|
mouseLeaveDelay: number;
|
|
37
37
|
overlayClassName: string;
|
|
38
38
|
showArrow: boolean;
|
|
39
|
+
popoverProps: MaPopover2Props;
|
|
39
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
40
41
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
42
|
export default _default;
|