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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
| 'use strict';
|
| Object.defineProperty(exports, '__esModule', { value: true });
|
| var core = require('@popperjs/core');
| require('../../../utils/index.js');
| require('../../tooltip/index.js');
| var iconsVue = require('@element-plus/icons-vue');
| var content = require('../../tooltip/src/content.js');
| var validator = require('../../../utils/vue/validator.js');
| var runtime = require('../../../utils/vue/props/runtime.js');
|
| const SelectProps = {
| allowCreate: Boolean,
| autocomplete: {
| type: String,
| default: "none"
| },
| automaticDropdown: Boolean,
| clearable: Boolean,
| clearIcon: {
| type: [String, Object],
| default: iconsVue.CircleClose
| },
| effect: {
| type: String,
| default: "light"
| },
| collapseTags: Boolean,
| collapseTagsTooltip: {
| type: Boolean,
| default: false
| },
| maxCollapseTags: {
| type: Number,
| default: 1
| },
| defaultFirstOption: Boolean,
| disabled: Boolean,
| estimatedOptionHeight: {
| type: Number,
| default: void 0
| },
| filterable: Boolean,
| filterMethod: Function,
| height: {
| type: Number,
| default: 170
| },
| itemHeight: {
| type: Number,
| default: 34
| },
| id: String,
| loading: Boolean,
| loadingText: String,
| label: String,
| modelValue: [Array, String, Number, Boolean, Object],
| multiple: Boolean,
| multipleLimit: {
| type: Number,
| default: 0
| },
| name: String,
| noDataText: String,
| noMatchText: String,
| remoteMethod: Function,
| reserveKeyword: {
| type: Boolean,
| default: true
| },
| options: {
| type: Array,
| required: true
| },
| placeholder: {
| type: String
| },
| teleported: content.useTooltipContentProps.teleported,
| persistent: {
| type: Boolean,
| default: true
| },
| popperClass: {
| type: String,
| default: ""
| },
| popperOptions: {
| type: Object,
| default: () => ({})
| },
| remote: Boolean,
| size: {
| type: String,
| validator: validator.isValidComponentSize
| },
| valueKey: {
| type: String,
| default: "value"
| },
| scrollbarAlwaysOn: {
| type: Boolean,
| default: false
| },
| validateEvent: {
| type: Boolean,
| default: true
| },
| placement: {
| type: runtime.definePropType(String),
| values: core.placements,
| default: "bottom-start"
| }
| };
| const OptionProps = {
| data: Array,
| disabled: Boolean,
| hovering: Boolean,
| item: Object,
| index: Number,
| style: Object,
| selected: Boolean,
| created: Boolean
| };
|
| exports.OptionProps = OptionProps;
| exports.SelectProps = SelectProps;
| //# sourceMappingURL=defaults.js.map
|
|