@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.
Files changed (33) hide show
  1. package/dist/action-kit.mjs +207 -205
  2. package/dist/{annotations-BaxG49iU.js → annotations-D-OhTUQ-.js} +1 -1
  3. package/dist/components/action-sheet/action-sheet.test.d.ts +1 -0
  4. package/dist/components/action-sheet/components/ActionSheetItem.vue.d.ts +12 -0
  5. package/dist/components/action-sheet/index.vue.d.ts +31 -0
  6. package/dist/components/action-sheet/stories/action-sheet-item.stories.d.ts +6 -0
  7. package/dist/components/action-sheet/stories/action-sheet.stories.d.ts +9 -0
  8. package/dist/components/action-sheet/types.d.ts +78 -0
  9. package/dist/components/chatbot/composables/useMessages.d.ts +2 -0
  10. package/dist/components/chatbot/plugin.d.ts +1 -1
  11. package/dist/components/chatbot/types.d.ts +4 -4
  12. package/dist/components/drawer/index.vue.d.ts +5 -5
  13. package/dist/components/modal/index.vue.d.ts +4 -4
  14. package/dist/components/modal-2/MaConfirmModal.vue.d.ts +3 -3
  15. package/dist/components/modal-2/MaModal.vue.d.ts +5 -5
  16. package/dist/components/popconfirm/index.vue.d.ts +1 -1
  17. package/dist/components/popconfirm-2/index.vue.d.ts +1 -1
  18. package/dist/config/plugin.d.ts +3 -0
  19. package/dist/{export-data-CFNrXOMY.js → export-data-vRKmp43J.js} +1 -1
  20. package/dist/{exporting-CWqBdo0q.js → exporting-1LxPPYQv.js} +1 -1
  21. package/dist/{funnel-Qg7wwVhP.js → funnel-BieOjmZv.js} +1 -1
  22. package/dist/hourglass-B2bn4Gmp.js +22 -0
  23. package/dist/hourglass-dWWi9TXM.js +7 -0
  24. package/dist/{index-DPCO-fqK.js → index-BDiFIXQL.js} +9813 -9695
  25. package/dist/index.d.ts +3 -0
  26. package/dist/locales/types.d.ts +3 -0
  27. package/dist/{map-CaRuFbg9.js → map-BcLfoxMs.js} +1 -1
  28. package/dist/{offline-exporting-zJ_bUmnV.js → offline-exporting-BJqh_BFl.js} +1 -1
  29. package/dist/{stock-fD5BKeFO.js → stock-Cr9RhA7k.js} +1 -1
  30. package/dist/style.css +1 -1
  31. package/dist/{venn-634gGQOX.js → venn-C7JM_WHz.js} +1 -1
  32. package/dist/{wordcloud-C8tbOOIE.js → wordcloud-DOYnPF6w.js} +1 -1
  33. 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
- closable: boolean;
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
- position: import("./types").ModalPosition;
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
- position: import("./types").ModalPosition;
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;
@@ -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
  };
@@ -1,4 +1,4 @@
1
- import { g as We } from "./index-DPCO-fqK.js";
1
+ import { g as We } from "./index-BDiFIXQL.js";
2
2
  function Ge(G, ie) {
3
3
  for (var F = 0; F < ie.length; F++) {
4
4
  const H = ie[F];
@@ -1,4 +1,4 @@
1
- import { g as $t } from "./index-DPCO-fqK.js";
1
+ import { g as $t } from "./index-BDiFIXQL.js";
2
2
  function Gt(j, z) {
3
3
  for (var k = 0; k < z.length; k++) {
4
4
  const F = z[k];
@@ -1,4 +1,4 @@
1
- import { g as je } from "./index-DPCO-fqK.js";
1
+ import { g as je } from "./index-BDiFIXQL.js";
2
2
  function He($, J) {
3
3
  for (var W = 0; W < J.length; W++) {
4
4
  const m = J[W];
@@ -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
+ };