@mobileaction/action-kit 1.1.64 → 1.1.65

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.
@@ -75,7 +75,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
75
75
  disabled: boolean;
76
76
  placement: "top" | "bottom" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
77
77
  trigger: ("hover" | "click" | "contextmenu")[];
78
- destroyPopupOnHide: boolean;
79
78
  visible: boolean;
79
+ destroyPopupOnHide: boolean;
80
80
  }>;
81
81
  export default _sfc_main;
@@ -1,5 +1,5 @@
1
- import type { Meta, StoryObj } from '@storybook/vue3';
2
- import MaAutoComplete from '../index.vue';
1
+ import type { Meta, StoryFn, StoryObj } from '@storybook/vue3';
2
+ import { MaAutoComplete } from '@/index';
3
3
  declare const meta: Meta<typeof MaAutoComplete>;
4
4
  export default meta;
5
5
  declare type Story = StoryObj<typeof MaAutoComplete>;
@@ -10,3 +10,4 @@ export declare const Small: Story;
10
10
  export declare const Medium: Story;
11
11
  export declare const CustomInput: Story;
12
12
  export declare const CustomAppInput: Story;
13
+ export declare const WithTabs: StoryFn;