@mobileaction/action-kit 1.31.7 → 1.31.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/CHANGELOG.md +8 -0
- package/dist/action-kit.js +1 -1
- package/dist/action-kit.mjs +146 -139
- package/dist/components/button/index.vue.d.ts +50 -34
- package/dist/components/button/link-button/index.vue.d.ts +106 -0
- package/dist/components/button/link-button/types.d.ts +4 -0
- package/dist/components/button/social-button/index.vue.d.ts +85 -0
- package/dist/components/button/social-button/types.d.ts +4 -0
- package/dist/components/button/types.d.ts +9 -7
- package/dist/components/button/utils.d.ts +2 -0
- package/dist/components/card/index.vue.d.ts +1 -1
- package/dist/components/keyword-group-selection/components/kwGroupForm.vue.d.ts +1 -1
- package/dist/components/modal/index.vue.d.ts +4 -4
- package/dist/components/select/components/dropdownRender.vue.d.ts +1 -1
- package/dist/{index-1bf70eb6.mjs → index-b3bdb32a.mjs} +3544 -3420
- package/dist/index-d5b1b7de.js +47 -0
- package/dist/index.d.ts +4 -0
- package/dist/linkedin-73d69688.js +1 -0
- package/dist/linkedin-94ae90ba.mjs +21 -0
- package/dist/{lottie_light-d48b553a.js → lottie_light-5756b17e.js} +1 -1
- package/dist/{lottie_light-44ac54b7.mjs → lottie_light-daf73807.mjs} +1 -1
- package/dist/src/components/badge/index.vue.d.ts +1 -1
- package/dist/src/components/button/index.vue.d.ts +25 -15
- package/dist/src/components/button/link-button/index.vue.d.ts +54 -0
- package/dist/src/components/button/link-button/stories/constants.d.ts +4 -0
- package/dist/src/components/button/link-button/stories/link.stories.d.ts +13 -0
- package/dist/src/components/button/link-button/types.d.ts +4 -0
- package/dist/src/components/button/social-button/index.vue.d.ts +49 -0
- package/dist/src/components/button/social-button/stories/constants.d.ts +5 -0
- package/dist/src/components/button/social-button/stories/social.stories.d.ts +17 -0
- package/dist/src/components/button/social-button/types.d.ts +4 -0
- package/dist/src/components/button/stories/constants.d.ts +1 -0
- package/dist/src/components/button/stories/filled.stories.d.ts +17 -0
- package/dist/src/components/button/stories/ghost.stories.d.ts +17 -0
- package/dist/src/components/button/stories/lighter.stories.d.ts +17 -0
- package/dist/src/components/button/stories/stroke.stories.d.ts +17 -0
- package/dist/src/components/button/types.d.ts +9 -7
- package/dist/src/components/button/utils.d.ts +2 -0
- package/dist/src/components/card/index.vue.d.ts +1 -1
- package/dist/src/components/date-picker/index.vue.d.ts +1 -1
- package/dist/src/components/input/index.vue.d.ts +1 -1
- package/dist/src/components/keyword-group-selection/components/kwGroupForm.vue.d.ts +1 -1
- package/dist/src/components/modal/index.vue.d.ts +4 -4
- package/dist/src/components/popconfirm/index.vue.d.ts +3 -3
- package/dist/src/components/result/stories/constants.d.ts +2 -2
- package/dist/src/components/select/components/dropdownRender.vue.d.ts +2 -2
- package/dist/src/components/slider/index.vue.d.ts +1 -1
- package/dist/src/components/typography/index.vue.d.ts +1 -1
- package/dist/src/index.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/x-63e02201.js +1 -0
- package/dist/x-b6ae5fa8.mjs +19 -0
- package/package.json +1 -1
- package/dist/index-393f326c.js +0 -53
- package/dist/linkedin-0f44baca.mjs +0 -20
- package/dist/linkedin-233e1284.js +0 -1
- package/dist/src/components/button/stories/danger.stories.d.ts +0 -9
- package/dist/src/components/button/stories/dark.stories.d.ts +0 -10
- package/dist/src/components/button/stories/icon.stories.d.ts +0 -9
- package/dist/src/components/button/stories/info.stories.d.ts +0 -9
- package/dist/src/components/button/stories/link.stories.d.ts +0 -7
- package/dist/src/components/button/stories/plain.stories.d.ts +0 -9
- package/dist/src/components/button/stories/social.stories.d.ts +0 -12
- package/dist/src/components/button/stories/success.stories.d.ts +0 -9
- package/dist/src/components/button/stories/warning.stories.d.ts +0 -9
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { VNode } from
|
|
2
|
-
import { ModalProps } from
|
|
3
|
-
import { MaModalPropType } from
|
|
4
|
-
import { MaButtonProps } from
|
|
1
|
+
import { VNode } from 'vue';
|
|
2
|
+
import { ModalProps } from 'ant-design-vue';
|
|
3
|
+
import { MaModalPropType } from './types';
|
|
4
|
+
import { MaButtonProps } from '../button/index.vue';
|
|
5
5
|
export interface MaModalProps extends ModalProps {
|
|
6
6
|
visible?: boolean;
|
|
7
7
|
type?: MaModalPropType;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MaPopoverProps } from '../popover/index.vue';
|
|
2
|
-
import { PopconfirmPlacement } from
|
|
3
|
-
import { MaButtonProps } from
|
|
2
|
+
import { PopconfirmPlacement } from '@/components/popconfirm/types';
|
|
3
|
+
import { MaButtonProps } from '@/components/button/index.vue';
|
|
4
4
|
export interface MaPopconfirmProps {
|
|
5
5
|
placement?: PopconfirmPlacement;
|
|
6
6
|
title?: string;
|
|
@@ -27,7 +27,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
27
27
|
showCancel: boolean;
|
|
28
28
|
showArrow: boolean;
|
|
29
29
|
showIcon: boolean;
|
|
30
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
30
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("confirm" | "update:visible" | "cancel" | "visibleChange")[], "confirm" | "update:visible" | "cancel" | "visibleChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaPopconfirmProps>, {
|
|
31
31
|
placement: string;
|
|
32
32
|
visible: any;
|
|
33
33
|
okText: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Meta, StoryFn } from
|
|
2
|
-
import MaResult from
|
|
1
|
+
import { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
+
import MaResult from '@/components/result/index.vue';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const baseConfig: Meta<typeof MaResult>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VNode } from
|
|
1
|
+
import { VNode } from 'vue';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
menu: {
|
|
4
4
|
type: () => VNode;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
showSearch: {
|
|
12
12
|
type: BooleanConstructor;
|
|
13
13
|
};
|
|
14
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:filter" | "closeDropdown")[], "
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:filter" | "closeDropdown")[], "closeDropdown" | "update:filter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
menu: {
|
|
16
16
|
type: () => VNode;
|
|
17
17
|
required: true;
|
|
@@ -40,9 +40,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
40
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
41
41
|
}, {
|
|
42
42
|
disabled: boolean;
|
|
43
|
-
range: boolean;
|
|
44
43
|
vertical: boolean;
|
|
45
44
|
dots: boolean;
|
|
45
|
+
range: boolean;
|
|
46
46
|
max: number;
|
|
47
47
|
min: number;
|
|
48
48
|
step: number;
|
|
@@ -14,8 +14,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
14
14
|
weight: string;
|
|
15
15
|
}>>>, {
|
|
16
16
|
type: "display-1" | "display-2" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "body-1" | "body-2" | "body-3" | "body-4" | "caption-1" | "caption-2";
|
|
17
|
-
tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span";
|
|
18
17
|
weight: "bold" | "medium" | "light" | "regular" | "semibold";
|
|
18
|
+
tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span";
|
|
19
19
|
}>, {
|
|
20
20
|
default: (_: {}) => any;
|
|
21
21
|
}>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import './tailwind.scss';
|
|
2
2
|
export { default as MaButton } from './components/button/index.vue';
|
|
3
3
|
export * from './components/button/types';
|
|
4
|
+
export { default as MaLinkButton } from './components/button/link-button/index.vue';
|
|
5
|
+
export * from './components/button/link-button/types';
|
|
6
|
+
export { default as MaSocialButton } from './components/button/social-button/index.vue';
|
|
7
|
+
export * from './components/button/social-button/types';
|
|
4
8
|
export { default as MaTrackButton } from './components/track-button/index.vue';
|
|
5
9
|
export * from './components/track-button/types';
|
|
6
10
|
export { default as MaToggle } from './components/toggle/index.vue';
|