@mobileaction/action-kit 1.58.6 → 1.58.8
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 +207 -205
- package/dist/{annotations-BaxG49iU.js → annotations-D-OhTUQ-.js} +1 -1
- package/dist/components/action-sheet/action-sheet.test.d.ts +1 -0
- package/dist/components/action-sheet/components/ActionSheetItem.vue.d.ts +12 -0
- package/dist/components/action-sheet/index.vue.d.ts +31 -0
- package/dist/components/action-sheet/stories/action-sheet-item.stories.d.ts +6 -0
- package/dist/components/action-sheet/stories/action-sheet.stories.d.ts +9 -0
- package/dist/components/action-sheet/types.d.ts +78 -0
- package/dist/components/chatbot/composables/useMessages.d.ts +2 -0
- package/dist/components/chatbot/plugin.d.ts +1 -1
- package/dist/components/chatbot/types.d.ts +4 -4
- package/dist/components/drawer/index.vue.d.ts +5 -5
- package/dist/components/modal/index.vue.d.ts +4 -4
- package/dist/components/modal-2/MaConfirmModal.vue.d.ts +3 -3
- package/dist/components/modal-2/MaModal.vue.d.ts +5 -5
- package/dist/components/popconfirm/index.vue.d.ts +1 -1
- package/dist/components/popconfirm-2/index.vue.d.ts +1 -1
- package/dist/config/plugin.d.ts +3 -0
- package/dist/{export-data-CFNrXOMY.js → export-data-vRKmp43J.js} +1 -1
- package/dist/{exporting-CWqBdo0q.js → exporting-1LxPPYQv.js} +1 -1
- package/dist/{funnel-Qg7wwVhP.js → funnel-BieOjmZv.js} +1 -1
- package/dist/hourglass-B2bn4Gmp.js +22 -0
- package/dist/hourglass-dWWi9TXM.js +7 -0
- package/dist/{index-DPCO-fqK.js → index-BDiFIXQL.js} +9813 -9695
- package/dist/index.d.ts +3 -0
- package/dist/locales/types.d.ts +3 -0
- package/dist/{map-CaRuFbg9.js → map-BcLfoxMs.js} +1 -1
- package/dist/{offline-exporting-zJ_bUmnV.js → offline-exporting-BJqh_BFl.js} +1 -1
- package/dist/{stock-fD5BKeFO.js → stock-Cr9RhA7k.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{venn-634gGQOX.js → venn-C7JM_WHz.js} +1 -1
- package/dist/{wordcloud-C8tbOOIE.js → wordcloud-DOYnPF6w.js} +1 -1
- package/package.json +1 -1
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import type { MaDrawerProps, MaDrawerSlots } from './types';
|
|
2
2
|
type __VLS_Slots = MaDrawerSlots;
|
|
3
3
|
declare const __VLS_component: import("vue").DefineComponent<MaDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
4
|
-
closed: () => any;
|
|
5
4
|
"update:visible": (open: boolean) => any;
|
|
5
|
+
closed: () => any;
|
|
6
6
|
opened: () => any;
|
|
7
7
|
}, string, import("vue").PublicProps, Readonly<MaDrawerProps> & Readonly<{
|
|
8
|
-
onClosed?: () => any;
|
|
9
8
|
"onUpdate:visible"?: (open: boolean) => any;
|
|
9
|
+
onClosed?: () => any;
|
|
10
10
|
onOpened?: () => any;
|
|
11
11
|
}>, {
|
|
12
|
-
|
|
12
|
+
maskClosable: boolean;
|
|
13
|
+
zIndex: number;
|
|
13
14
|
visible: boolean;
|
|
15
|
+
closable: boolean;
|
|
14
16
|
placement: import("./types").MaDrawerPlacement;
|
|
15
|
-
zIndex: number;
|
|
16
17
|
to: string | HTMLElement;
|
|
17
|
-
maskClosable: boolean;
|
|
18
18
|
headerSticky: boolean;
|
|
19
19
|
footerSticky: boolean;
|
|
20
20
|
marginSize: import("./types").MaDrawerMarginSize;
|
|
@@ -19,22 +19,22 @@ declare const __VLS_component: import("vue").DefineComponent<MaModalProps, {
|
|
|
19
19
|
isFullscreen: import("vue").WritableComputedRef<boolean, boolean>;
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
21
|
cancel: (...args: any[]) => void;
|
|
22
|
-
closed: (...args: any[]) => void;
|
|
23
22
|
"update:visible": (...args: any[]) => void;
|
|
23
|
+
closed: (...args: any[]) => void;
|
|
24
24
|
"update:fullscreen": (...args: any[]) => void;
|
|
25
25
|
ok: (...args: any[]) => void;
|
|
26
26
|
}, string, import("vue").PublicProps, Readonly<MaModalProps> & Readonly<{
|
|
27
27
|
onCancel?: (...args: any[]) => any;
|
|
28
|
-
onClosed?: (...args: any[]) => any;
|
|
29
28
|
"onUpdate:visible"?: (...args: any[]) => any;
|
|
29
|
+
onClosed?: (...args: any[]) => any;
|
|
30
30
|
"onUpdate:fullscreen"?: (...args: any[]) => any;
|
|
31
31
|
onOk?: (...args: any[]) => any;
|
|
32
32
|
}>, {
|
|
33
33
|
mask: boolean;
|
|
34
|
+
maskClosable: boolean;
|
|
35
|
+
visible: boolean;
|
|
34
36
|
closable: boolean;
|
|
35
37
|
width: number;
|
|
36
|
-
visible: boolean;
|
|
37
|
-
maskClosable: boolean;
|
|
38
38
|
bodyTitle: string;
|
|
39
39
|
showExpandButton: boolean;
|
|
40
40
|
fullscreen: boolean;
|
|
@@ -14,13 +14,13 @@ declare const __VLS_component: import("vue").DefineComponent<ConfirmModal2Props,
|
|
|
14
14
|
}>, {
|
|
15
15
|
type: ConfirmModal2Type;
|
|
16
16
|
icon: string;
|
|
17
|
-
|
|
17
|
+
maskClosable: boolean;
|
|
18
|
+
closeOnEscape: boolean;
|
|
18
19
|
zIndex: number;
|
|
20
|
+
position: import("./types").ModalPosition;
|
|
19
21
|
to: string | HTMLElement;
|
|
20
22
|
open: boolean;
|
|
21
23
|
noSpace: boolean;
|
|
22
|
-
maskClosable: boolean;
|
|
23
|
-
closeOnEscape: boolean;
|
|
24
24
|
showMaskOverlay: boolean;
|
|
25
25
|
showCancelButton: boolean;
|
|
26
26
|
showOkButton: boolean;
|
|
@@ -17,17 +17,17 @@ declare const __VLS_component: import("vue").DefineComponent<Modal2Props, {}, {}
|
|
|
17
17
|
"onClick:mask"?: (e: Event) => any;
|
|
18
18
|
"onClick:close"?: (e: Event) => any;
|
|
19
19
|
}>, {
|
|
20
|
-
|
|
20
|
+
maskClosable: boolean;
|
|
21
|
+
closeOnEscape: boolean;
|
|
22
|
+
showCloseButton: boolean;
|
|
23
|
+
destroyOnClose: boolean;
|
|
21
24
|
zIndex: number;
|
|
25
|
+
position: import("./types").ModalPosition;
|
|
22
26
|
to: string | HTMLElement;
|
|
23
27
|
open: boolean;
|
|
24
28
|
noSpace: boolean;
|
|
25
|
-
maskClosable: boolean;
|
|
26
|
-
destroyOnClose: boolean;
|
|
27
29
|
maximizable: boolean;
|
|
28
30
|
maximized: boolean;
|
|
29
|
-
showCloseButton: boolean;
|
|
30
|
-
closeOnEscape: boolean;
|
|
31
31
|
showMaskOverlay: boolean;
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -40,8 +40,8 @@ declare const __VLS_component: import("vue").DefineComponent<MaPopconfirmProps,
|
|
|
40
40
|
onConfirm?: (...args: any[]) => any;
|
|
41
41
|
}>, {
|
|
42
42
|
icon: string;
|
|
43
|
-
showIcon: boolean;
|
|
44
43
|
visible: boolean;
|
|
44
|
+
showIcon: boolean;
|
|
45
45
|
placement: PopconfirmPlacement;
|
|
46
46
|
showArrow: boolean;
|
|
47
47
|
showCancel: boolean;
|
|
@@ -44,10 +44,10 @@ declare const __VLS_component: import("vue").DefineComponent<Popconfirm2Props, {
|
|
|
44
44
|
onConfirm?: (...args: any[]) => any;
|
|
45
45
|
}>, {
|
|
46
46
|
title: string;
|
|
47
|
+
visible: boolean;
|
|
47
48
|
variant: Popconfirm2Variant;
|
|
48
49
|
showIcon: boolean;
|
|
49
50
|
description: string;
|
|
50
|
-
visible: boolean;
|
|
51
51
|
placement: Popover2Placement;
|
|
52
52
|
showArrow: boolean;
|
|
53
53
|
popoverProps: MaPopover2Props;
|
package/dist/config/plugin.d.ts
CHANGED
|
@@ -31,6 +31,8 @@ export declare const defaultOptions: {
|
|
|
31
31
|
pagination: string;
|
|
32
32
|
prev: string;
|
|
33
33
|
goNextPage: string;
|
|
34
|
+
actionSheet: string;
|
|
35
|
+
closeActionSheet: string;
|
|
34
36
|
};
|
|
35
37
|
chatbot: {
|
|
36
38
|
senderUser: string;
|
|
@@ -50,6 +52,7 @@ export declare const defaultOptions: {
|
|
|
50
52
|
getPromptStarters: string;
|
|
51
53
|
hidePrompts: string;
|
|
52
54
|
feedbackTopics: string[];
|
|
55
|
+
reasoningLabel: string;
|
|
53
56
|
};
|
|
54
57
|
};
|
|
55
58
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { openBlock as o, createElementBlock as r, createElementVNode as t } from "vue";
|
|
2
|
+
const n = {
|
|
3
|
+
viewBox: "0 0 24 24",
|
|
4
|
+
fill: "none",
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
6
|
+
};
|
|
7
|
+
function l(s, e) {
|
|
8
|
+
return o(), r("svg", n, e[0] || (e[0] = [
|
|
9
|
+
t("path", {
|
|
10
|
+
d: "M15.24 2H8.76001C5.00001 2 4.71001 5.38 6.74001 7.22L17.26 16.78C19.29 18.62 19 22 15.24 22H8.76001C5.00001 22 4.71001 18.62 6.74001 16.78L17.26 7.22C19.29 5.38 19 2 15.24 2Z",
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
"stroke-width": "1.5",
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round"
|
|
15
|
+
}, null, -1)
|
|
16
|
+
]));
|
|
17
|
+
}
|
|
18
|
+
const i = { render: l };
|
|
19
|
+
export {
|
|
20
|
+
i as default,
|
|
21
|
+
l as render
|
|
22
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const o = `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.24 2H8.76001C5.00001 2 4.71001 5.38 6.74001 7.22L17.26 16.78C19.29 18.62 19 22 15.24 22H8.76001C5.00001 22 4.71001 18.62 6.74001 16.78L17.26 7.22C19.29 5.38 19 2 15.24 2Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
4
|
+
`;
|
|
5
|
+
export {
|
|
6
|
+
o as default
|
|
7
|
+
};
|