1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| import '../../../hooks/index.mjs';
| import '../../../utils/index.mjs';
| import { Loading } from '@element-plus/icons-vue';
| import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
| import { useSizeProp } from '../../../hooks/use-size/index.mjs';
| import { iconPropType } from '../../../utils/vue/icon.mjs';
|
| const buttonTypes = [
| "default",
| "primary",
| "success",
| "warning",
| "info",
| "danger",
| "text",
| ""
| ];
| const buttonNativeTypes = ["button", "submit", "reset"];
| const buttonProps = buildProps({
| size: useSizeProp,
| disabled: Boolean,
| type: {
| type: String,
| values: buttonTypes,
| default: ""
| },
| icon: {
| type: iconPropType
| },
| nativeType: {
| type: String,
| values: buttonNativeTypes,
| default: "button"
| },
| loading: Boolean,
| loadingIcon: {
| type: iconPropType,
| default: () => Loading
| },
| plain: Boolean,
| text: Boolean,
| link: Boolean,
| bg: Boolean,
| autofocus: Boolean,
| round: Boolean,
| circle: Boolean,
| color: String,
| dark: Boolean,
| autoInsertSpace: {
| type: Boolean,
| default: void 0
| },
| tag: {
| type: definePropType([String, Object]),
| default: "button"
| }
| });
| const buttonEmits = {
| click: (evt) => evt instanceof MouseEvent
| };
|
| export { buttonEmits, buttonNativeTypes, buttonProps, buttonTypes };
| //# sourceMappingURL=button.mjs.map
|
|