@mobileaction/action-kit 1.40.3 → 1.40.4
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/CHANGELOG.md +7 -0
- package/dist/action-kit.mjs +3113 -3070
- package/dist/src/components/modal/index.vue.d.ts +2 -0
- package/dist/src/components/modal/stories/constants.d.ts +2 -0
- package/dist/src/components/modal/stories/default.stories.d.ts +2 -0
- package/dist/src/components/modal/types.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/src/components/modal/stories/custom.stories.d.ts +0 -6
|
@@ -13,8 +13,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<Ma
|
|
|
13
13
|
visible: boolean;
|
|
14
14
|
width: number;
|
|
15
15
|
maskClosable: boolean;
|
|
16
|
+
bodyTitle: string;
|
|
16
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
17
18
|
title?(_: {}): any;
|
|
19
|
+
"body-title"?(_: {}): any;
|
|
18
20
|
content?(_: {}): any;
|
|
19
21
|
default?(_: {}): any;
|
|
20
22
|
footer?(_: {}): any;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { Meta, StoryFn } from '@storybook/vue3';
|
|
2
2
|
import MaModal from '../index';
|
|
3
|
+
import '../assets/with-tab.scss';
|
|
3
4
|
export declare const baseConfig: Meta<typeof MaModal>;
|
|
4
5
|
export declare const functionsBaseConfig: any;
|
|
5
6
|
export declare const Template: StoryFn;
|
|
6
7
|
export declare const CustomTemplate: StoryFn;
|
|
8
|
+
export declare const WithTabTemplate: StoryFn;
|
|
7
9
|
export declare const FunctionsTemplate: StoryFn;
|
|
@@ -4,6 +4,8 @@ declare const meta: Meta<typeof MaModal>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof MaModal>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
|
+
export declare const Custom: Story;
|
|
8
|
+
export declare const WithTab: Story;
|
|
7
9
|
export declare const Success: Story;
|
|
8
10
|
export declare const Confirm: Story;
|
|
9
11
|
export declare const Error: Story;
|