@v-c/select 1.0.7 → 1.0.8
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.
|
@@ -100,6 +100,8 @@ var SelectInput = /* @__PURE__ */ (0, vue.defineComponent)((props, { attrs, expo
|
|
|
100
100
|
...attrs,
|
|
101
101
|
onFocus: props.onFocus,
|
|
102
102
|
onBlur: props.onBlur,
|
|
103
|
+
onFocusin: props.onFocus,
|
|
104
|
+
onFocusout: props.onBlur,
|
|
103
105
|
onKeydown: props.onKeyDown,
|
|
104
106
|
onKeyup: props.onKeyUp,
|
|
105
107
|
onMousedown: props.onMouseDown
|
|
@@ -118,8 +120,8 @@ var SelectInput = /* @__PURE__ */ (0, vue.defineComponent)((props, { attrs, expo
|
|
|
118
120
|
"onMousedown": onInternalMouseDown,
|
|
119
121
|
"onKeydown": props.onKeyDown,
|
|
120
122
|
"onKeyup": props.onKeyUp,
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
+
"onFocusin": props.onFocus,
|
|
124
|
+
"onFocusout": onInternalBlur
|
|
123
125
|
}), [
|
|
124
126
|
(0, vue.createVNode)(require_Affix.default, {
|
|
125
127
|
"class": (0, _v_c_util.clsx)(`${prefixCls.value}-prefix`, classNamesConfig.value?.prefix),
|
|
@@ -93,6 +93,8 @@ var SelectInput_default = /* @__PURE__ */ defineComponent((props, { attrs, expos
|
|
|
93
93
|
...attrs,
|
|
94
94
|
onFocus: props.onFocus,
|
|
95
95
|
onBlur: props.onBlur,
|
|
96
|
+
onFocusin: props.onFocus,
|
|
97
|
+
onFocusout: props.onBlur,
|
|
96
98
|
onKeydown: props.onKeyDown,
|
|
97
99
|
onKeyup: props.onKeyUp,
|
|
98
100
|
onMousedown: props.onMouseDown
|
|
@@ -111,8 +113,8 @@ var SelectInput_default = /* @__PURE__ */ defineComponent((props, { attrs, expos
|
|
|
111
113
|
"onMousedown": onInternalMouseDown,
|
|
112
114
|
"onKeydown": props.onKeyDown,
|
|
113
115
|
"onKeyup": props.onKeyUp,
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
+
"onFocusin": props.onFocus,
|
|
117
|
+
"onFocusout": onInternalBlur
|
|
116
118
|
}), [
|
|
117
119
|
createVNode(Affix_default, {
|
|
118
120
|
"class": clsx(`${prefixCls.value}-prefix`, classNamesConfig.value?.prefix),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v-c/select",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.8",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@v-c/overflow": "^1.0.1",
|
|
33
33
|
"@v-c/trigger": "^1.0.5",
|
|
34
|
-
"@v-c/
|
|
35
|
-
"@v-c/
|
|
34
|
+
"@v-c/util": "^1.0.8",
|
|
35
|
+
"@v-c/virtual-list": "^1.0.4"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "vite build",
|