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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
| import { isString } from '@vue/shared';
| import '../../../utils/index.mjs';
| import '../../../constants/index.mjs';
| import '../../../hooks/index.mjs';
| import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
| import { useSizeProp } from '../../../hooks/use-size/index.mjs';
| import { iconPropType } from '../../../utils/vue/icon.mjs';
| import { mutable } from '../../../utils/typescript.mjs';
| import { UPDATE_MODEL_EVENT } from '../../../constants/event.mjs';
|
| const inputProps = buildProps({
| id: {
| type: String,
| default: void 0
| },
| size: useSizeProp,
| disabled: Boolean,
| modelValue: {
| type: definePropType([
| String,
| Number,
| Object
| ]),
| default: ""
| },
| type: {
| type: String,
| default: "text"
| },
| resize: {
| type: String,
| values: ["none", "both", "horizontal", "vertical"]
| },
| autosize: {
| type: definePropType([Boolean, Object]),
| default: false
| },
| autocomplete: {
| type: String,
| default: "off"
| },
| formatter: {
| type: Function
| },
| parser: {
| type: Function
| },
| placeholder: {
| type: String
| },
| form: {
| type: String
| },
| readonly: {
| type: Boolean,
| default: false
| },
| clearable: {
| type: Boolean,
| default: false
| },
| showPassword: {
| type: Boolean,
| default: false
| },
| showWordLimit: {
| type: Boolean,
| default: false
| },
| suffixIcon: {
| type: iconPropType
| },
| prefixIcon: {
| type: iconPropType
| },
| containerRole: {
| type: String,
| default: void 0
| },
| label: {
| type: String,
| default: void 0
| },
| tabindex: {
| type: [String, Number],
| default: 0
| },
| validateEvent: {
| type: Boolean,
| default: true
| },
| inputStyle: {
| type: definePropType([Object, Array, String]),
| default: () => mutable({})
| }
| });
| const inputEmits = {
| [UPDATE_MODEL_EVENT]: (value) => isString(value),
| input: (value) => isString(value),
| change: (value) => isString(value),
| focus: (evt) => evt instanceof FocusEvent,
| blur: (evt) => evt instanceof FocusEvent,
| clear: () => true,
| mouseleave: (evt) => evt instanceof MouseEvent,
| mouseenter: (evt) => evt instanceof MouseEvent,
| keydown: (evt) => evt instanceof Event,
| compositionstart: (evt) => evt instanceof CompositionEvent,
| compositionupdate: (evt) => evt instanceof CompositionEvent,
| compositionend: (evt) => evt instanceof CompositionEvent
| };
|
| export { inputEmits, inputProps };
| //# sourceMappingURL=input.mjs.map
|
|