@mobileaction/action-kit 1.55.9-beta.2 → 1.55.9-beta.7
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/components/alert/index.vue.d.ts +1 -1
- package/dist/components/badge/index.vue.d.ts +2 -2
- package/dist/components/badge/stories/basic.stories.d.ts +121 -121
- package/dist/components/badge/stories/blue.stories.d.ts +121 -121
- package/dist/components/badge/stories/constants.d.ts +54 -54
- package/dist/components/badge/stories/dark.stories.d.ts +121 -121
- package/dist/components/badge/stories/green.stories.d.ts +121 -121
- package/dist/components/badge/stories/orange.stories.d.ts +121 -121
- package/dist/components/badge/stories/pink.stories.d.ts +121 -121
- package/dist/components/badge/stories/purple.stories.d.ts +121 -121
- package/dist/components/badge/stories/red.stories.d.ts +121 -121
- package/dist/components/badge/stories/teal.stories.d.ts +121 -121
- package/dist/components/badge/stories/yellow.stories.d.ts +121 -121
- package/dist/components/button/index.vue.d.ts +2 -2
- package/dist/components/button/types.d.ts +3 -4
- package/dist/components/cascader/index.vue.d.ts +1 -1
- package/dist/components/cascader/stories/default.stories.d.ts +320 -320
- package/dist/components/date-picker-2/index.vue.d.ts +1 -1
- package/dist/components/empty/index.vue.d.ts +1 -1
- package/dist/components/modal-2/types.d.ts +2 -1
- package/dist/components/numeric-input/index.vue.d.ts +1 -1
- package/dist/components/popconfirm-2/index.vue.d.ts +1 -1
- package/dist/components/result/stories/constants.d.ts +6 -6
- package/dist/components/select/index.vue.d.ts +1 -1
- package/dist/components/select-2/index.vue.d.ts +1 -1
- package/dist/components/tree/index.vue.d.ts +1 -1
- package/dist/components/upload/index.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -56,8 +56,8 @@ declare const __VLS_component: import("vue").DefineComponent<MaDatePickerProps,
|
|
|
56
56
|
onRangeStart?: (...args: any[]) => any;
|
|
57
57
|
onRangeEnd?: (...args: any[]) => any;
|
|
58
58
|
}>, {
|
|
59
|
-
size: typeof import("./types").MaDatePickerSizes[number];
|
|
60
59
|
value: import("@vuepic/vue-datepicker").ModelValue;
|
|
60
|
+
size: typeof import("./types").MaDatePickerSizes[number];
|
|
61
61
|
disabled: boolean;
|
|
62
62
|
overlayClassName: string;
|
|
63
63
|
position: typeof import("./types").MaDatePickerPositions[number];
|
|
@@ -20,8 +20,8 @@ type __VLS_Slots = {} & {
|
|
|
20
20
|
default?: (props: typeof __VLS_13) => any;
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_component: import("vue").DefineComponent<MaRateProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MaRateProps> & Readonly<{}>, {
|
|
23
|
-
variant: MaEmptyVariant;
|
|
24
23
|
size: MaEmptySize;
|
|
24
|
+
variant: MaEmptyVariant;
|
|
25
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
26
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
27
|
export default _default;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { VNode } from 'vue';
|
|
2
|
-
import type { MaButtonProps } from '
|
|
2
|
+
import type { MaButtonProps } from '../button/types';
|
|
3
3
|
export declare const ModalPositions: readonly ["top", "right", "bottom", "left", "center", "topleft", "topright", "bottomleft", "bottomright"];
|
|
4
4
|
export type ModalPosition = (typeof ModalPositions)[number];
|
|
5
5
|
export declare const ConfirmModal2Types: readonly ["info", "success", "warning", "error"];
|
|
6
6
|
export type ConfirmModal2Type = (typeof ConfirmModal2Types)[number];
|
|
7
7
|
export interface ConfirmModal2Button extends Omit<MaButtonProps, 'href' | 'target' | 'htmlType'> {
|
|
8
8
|
label?: string;
|
|
9
|
+
onClick?: (event: MouseEvent) => void;
|
|
9
10
|
}
|
|
10
11
|
export interface Modal2Props {
|
|
11
12
|
/**
|
|
@@ -12,9 +12,9 @@ declare const _default: import("vue").DefineComponent<MaNumericInputProps, {}, {
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<MaNumericInputProps> & Readonly<{
|
|
13
13
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
14
14
|
}>, {
|
|
15
|
-
size: NumericInputSize;
|
|
16
15
|
value: string;
|
|
17
16
|
length: number;
|
|
17
|
+
size: NumericInputSize;
|
|
18
18
|
placeholderStatus: boolean;
|
|
19
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
20
|
export default _default;
|
|
@@ -43,8 +43,8 @@ declare const __VLS_component: import("vue").DefineComponent<Popconfirm2Props, {
|
|
|
43
43
|
onVisibleChange?: (...args: any[]) => any;
|
|
44
44
|
onConfirm?: (...args: any[]) => any;
|
|
45
45
|
}>, {
|
|
46
|
-
variant: Popconfirm2Variant;
|
|
47
46
|
title: string;
|
|
47
|
+
variant: Popconfirm2Variant;
|
|
48
48
|
showIcon: boolean;
|
|
49
49
|
description: string;
|
|
50
50
|
visible: boolean;
|
|
@@ -3,12 +3,12 @@ import MaResult from '@/components/result/index.vue';
|
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
4
4
|
MaButton: {
|
|
5
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("../../..").MaButtonProps> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
6
|
-
variant: import("../../..").ButtonVariant;
|
|
7
6
|
size: import("../../..").ButtonSize;
|
|
8
|
-
|
|
7
|
+
variant: import("../../..").ButtonVariant;
|
|
9
8
|
disabled: boolean;
|
|
10
9
|
loading: boolean;
|
|
11
10
|
color: import("../../..").ButtonColor;
|
|
11
|
+
shape: import("../../..").ButtonShape;
|
|
12
12
|
htmlType: import("../../..").ButtonHtmlType;
|
|
13
13
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
14
14
|
P: {};
|
|
@@ -18,24 +18,24 @@ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18
18
|
M: {};
|
|
19
19
|
Defaults: {};
|
|
20
20
|
}, Readonly<import("../../..").MaButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
21
|
-
variant: import("../../..").ButtonVariant;
|
|
22
21
|
size: import("../../..").ButtonSize;
|
|
23
|
-
|
|
22
|
+
variant: import("../../..").ButtonVariant;
|
|
24
23
|
disabled: boolean;
|
|
25
24
|
loading: boolean;
|
|
26
25
|
color: import("../../..").ButtonColor;
|
|
26
|
+
shape: import("../../..").ButtonShape;
|
|
27
27
|
htmlType: import("../../..").ButtonHtmlType;
|
|
28
28
|
}>;
|
|
29
29
|
__isFragment?: never;
|
|
30
30
|
__isTeleport?: never;
|
|
31
31
|
__isSuspense?: never;
|
|
32
32
|
} & import("vue").ComponentOptionsBase<Readonly<import("../../..").MaButtonProps> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
33
|
-
variant: import("../../..").ButtonVariant;
|
|
34
33
|
size: import("../../..").ButtonSize;
|
|
35
|
-
|
|
34
|
+
variant: import("../../..").ButtonVariant;
|
|
36
35
|
disabled: boolean;
|
|
37
36
|
loading: boolean;
|
|
38
37
|
color: import("../../..").ButtonColor;
|
|
38
|
+
shape: import("../../..").ButtonShape;
|
|
39
39
|
htmlType: import("../../..").ButtonHtmlType;
|
|
40
40
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
41
41
|
$slots: {
|
|
@@ -68,8 +68,8 @@ declare const __VLS_component: import("vue").DefineComponent<MaSelectProps, {},
|
|
|
68
68
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
69
69
|
onDropdownVisibleChange?: (...args: any[]) => any;
|
|
70
70
|
}>, {
|
|
71
|
-
size: SelectSize;
|
|
72
71
|
value: string | number | string[] | number[];
|
|
72
|
+
size: SelectSize;
|
|
73
73
|
showArrow: boolean;
|
|
74
74
|
open: boolean;
|
|
75
75
|
listHeight: number;
|
|
@@ -50,8 +50,8 @@ declare const __VLS_component: import("vue").DefineComponent<MaSelectProps, {
|
|
|
50
50
|
onSearchValueChange?: (...args: any[]) => any;
|
|
51
51
|
onCleared?: (...args: any[]) => any;
|
|
52
52
|
}>, {
|
|
53
|
-
size: import("./types").MaSelectSize;
|
|
54
53
|
value: MaSelectValue;
|
|
54
|
+
size: import("./types").MaSelectSize;
|
|
55
55
|
disabled: boolean;
|
|
56
56
|
loading: boolean;
|
|
57
57
|
multiple: boolean;
|
|
@@ -67,8 +67,8 @@ declare const __VLS_component: import("vue").DefineComponent<MaTreeProps, {
|
|
|
67
67
|
onExpand?: (...args: any[]) => any;
|
|
68
68
|
"onUpdate:selectedValues"?: (...args: any[]) => any;
|
|
69
69
|
}>, {
|
|
70
|
-
size: MaEmptySize;
|
|
71
70
|
search: MaSearchType;
|
|
71
|
+
size: MaEmptySize;
|
|
72
72
|
mode: TreeMode;
|
|
73
73
|
emptySize: MaEmptySize;
|
|
74
74
|
emptyTitle: string;
|
|
@@ -42,8 +42,8 @@ declare const __VLS_component: import("vue").DefineComponent<MaUploadProps, {},
|
|
|
42
42
|
onRemove?: (...args: any[]) => any;
|
|
43
43
|
"onUpdate:fileList"?: (...args: any[]) => any;
|
|
44
44
|
}>, {
|
|
45
|
-
size: MaUploadSize;
|
|
46
45
|
name: string;
|
|
46
|
+
size: MaUploadSize;
|
|
47
47
|
type: MaUploadType;
|
|
48
48
|
disabled: boolean;
|
|
49
49
|
multiple: boolean;
|