@mobileaction/action-kit 0.0.2 → 0.0.3
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/chevron-down-a5f20f24.mjs +23 -0
- package/dist/chevron-down-a5f20f24.mjs.map +1 -0
- package/dist/chevron-down-e1811368.js +2 -0
- package/dist/chevron-down-e1811368.js.map +1 -0
- package/dist/index.cjs.js +37 -18
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +13500 -4678
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/avatar/index.vue.d.ts +2 -0
- package/dist/src/components/input/constants.d.ts +2 -0
- package/dist/src/components/input/types.d.ts +4 -0
- package/dist/src/components/select/index.vue.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
- package/dist/src/components/button/index.vue.d.ts +0 -63
- package/dist/src/components/button/types.d.ts +0 -3
- package/dist/src/components/icon/index.vue.d.ts +0 -17
- package/dist/src/components/icon/types.d.ts +0 -1
- package/dist/src/components/input/index.vue.d.ts +0 -97
- package/dist/src/index.d.ts +0 -3
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
|
-
import type { ButtonType, ButtonSize, ButtonVariant } from './types';
|
|
3
|
-
export interface MaButtonProps {
|
|
4
|
-
type?: ButtonType;
|
|
5
|
-
variant?: ButtonVariant;
|
|
6
|
-
size?: ButtonSize;
|
|
7
|
-
rounded?: boolean;
|
|
8
|
-
href?: string;
|
|
9
|
-
}
|
|
10
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
11
|
-
type: {
|
|
12
|
-
type: __PropType<ButtonType>;
|
|
13
|
-
required: false;
|
|
14
|
-
default: string;
|
|
15
|
-
};
|
|
16
|
-
variant: {
|
|
17
|
-
type: __PropType<ButtonVariant>;
|
|
18
|
-
required: false;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
|
-
size: {
|
|
22
|
-
type: __PropType<ButtonSize>;
|
|
23
|
-
required: false;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
rounded: {
|
|
27
|
-
type: __PropType<boolean>;
|
|
28
|
-
required: false;
|
|
29
|
-
};
|
|
30
|
-
href: {
|
|
31
|
-
type: __PropType<string>;
|
|
32
|
-
required: false;
|
|
33
|
-
};
|
|
34
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
type: {
|
|
36
|
-
type: __PropType<ButtonType>;
|
|
37
|
-
required: false;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
variant: {
|
|
41
|
-
type: __PropType<ButtonVariant>;
|
|
42
|
-
required: false;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
size: {
|
|
46
|
-
type: __PropType<ButtonSize>;
|
|
47
|
-
required: false;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
rounded: {
|
|
51
|
-
type: __PropType<boolean>;
|
|
52
|
-
required: false;
|
|
53
|
-
};
|
|
54
|
-
href: {
|
|
55
|
-
type: __PropType<string>;
|
|
56
|
-
required: false;
|
|
57
|
-
};
|
|
58
|
-
}>>, {
|
|
59
|
-
type: ButtonType;
|
|
60
|
-
variant: ButtonVariant;
|
|
61
|
-
size: ButtonSize;
|
|
62
|
-
}>;
|
|
63
|
-
export default _sfc_main;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
|
-
import type { IconName } from './types';
|
|
3
|
-
export interface IconProps {
|
|
4
|
-
name: IconName;
|
|
5
|
-
}
|
|
6
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
7
|
-
name: {
|
|
8
|
-
type: __PropType<IconName>;
|
|
9
|
-
required: true;
|
|
10
|
-
};
|
|
11
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
-
name: {
|
|
13
|
-
type: __PropType<IconName>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
}>>, {}>;
|
|
17
|
-
export default _sfc_main;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type IconName = 'plus' | 'message-text' | 'master-card';
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
|
-
export interface MaInputProps {
|
|
3
|
-
type?: 'text' | 'password' | 'textarea' | 'number' | 'email' | 'url' | 'tel' | 'amount' | 'creditCard' | 'userInfo';
|
|
4
|
-
size?: 'small' | 'medium' | 'large';
|
|
5
|
-
title?: string;
|
|
6
|
-
hintText?: string;
|
|
7
|
-
hasError?: boolean;
|
|
8
|
-
placeholder?: string;
|
|
9
|
-
disabled?: boolean;
|
|
10
|
-
addonBefore?: string;
|
|
11
|
-
addonAfter?: string;
|
|
12
|
-
}
|
|
13
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
14
|
-
type: {
|
|
15
|
-
type: __PropType<"number" | "text" | "password" | "textarea" | "email" | "url" | "tel" | "amount" | "creditCard" | "userInfo">;
|
|
16
|
-
required: false;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
size: {
|
|
20
|
-
type: __PropType<"small" | "medium" | "large">;
|
|
21
|
-
required: false;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
title: {
|
|
25
|
-
type: __PropType<string>;
|
|
26
|
-
required: false;
|
|
27
|
-
};
|
|
28
|
-
hintText: {
|
|
29
|
-
type: __PropType<string>;
|
|
30
|
-
required: false;
|
|
31
|
-
};
|
|
32
|
-
hasError: {
|
|
33
|
-
type: __PropType<boolean>;
|
|
34
|
-
required: false;
|
|
35
|
-
};
|
|
36
|
-
placeholder: {
|
|
37
|
-
type: __PropType<string>;
|
|
38
|
-
required: false;
|
|
39
|
-
};
|
|
40
|
-
disabled: {
|
|
41
|
-
type: __PropType<boolean>;
|
|
42
|
-
required: false;
|
|
43
|
-
};
|
|
44
|
-
addonBefore: {
|
|
45
|
-
type: __PropType<string>;
|
|
46
|
-
required: false;
|
|
47
|
-
};
|
|
48
|
-
addonAfter: {
|
|
49
|
-
type: __PropType<string>;
|
|
50
|
-
required: false;
|
|
51
|
-
};
|
|
52
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
-
type: {
|
|
54
|
-
type: __PropType<"number" | "text" | "password" | "textarea" | "email" | "url" | "tel" | "amount" | "creditCard" | "userInfo">;
|
|
55
|
-
required: false;
|
|
56
|
-
default: string;
|
|
57
|
-
};
|
|
58
|
-
size: {
|
|
59
|
-
type: __PropType<"small" | "medium" | "large">;
|
|
60
|
-
required: false;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
title: {
|
|
64
|
-
type: __PropType<string>;
|
|
65
|
-
required: false;
|
|
66
|
-
};
|
|
67
|
-
hintText: {
|
|
68
|
-
type: __PropType<string>;
|
|
69
|
-
required: false;
|
|
70
|
-
};
|
|
71
|
-
hasError: {
|
|
72
|
-
type: __PropType<boolean>;
|
|
73
|
-
required: false;
|
|
74
|
-
};
|
|
75
|
-
placeholder: {
|
|
76
|
-
type: __PropType<string>;
|
|
77
|
-
required: false;
|
|
78
|
-
};
|
|
79
|
-
disabled: {
|
|
80
|
-
type: __PropType<boolean>;
|
|
81
|
-
required: false;
|
|
82
|
-
};
|
|
83
|
-
addonBefore: {
|
|
84
|
-
type: __PropType<string>;
|
|
85
|
-
required: false;
|
|
86
|
-
};
|
|
87
|
-
addonAfter: {
|
|
88
|
-
type: __PropType<string>;
|
|
89
|
-
required: false;
|
|
90
|
-
};
|
|
91
|
-
}>> & {
|
|
92
|
-
onChange?: (...args: any[]) => any;
|
|
93
|
-
}, {
|
|
94
|
-
type: "number" | "text" | "password" | "textarea" | "email" | "url" | "tel" | "amount" | "creditCard" | "userInfo";
|
|
95
|
-
size: "small" | "medium" | "large";
|
|
96
|
-
}>;
|
|
97
|
-
export default _sfc_main;
|
package/dist/src/index.d.ts
DELETED