@tagplus/components 2.0.15 → 2.0.17
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/tp.common.js +1 -1
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.css +1 -1
- package/dist/tp.umd.js +1 -1
- package/dist/tp.umd.js.map +1 -1
- package/dist/tp.umd.min.js +1 -1
- package/dist/tp.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Inline/Inline.vue +9 -0
package/package.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
:value="value"
|
|
28
28
|
data-tid="inline-input"
|
|
29
29
|
@input="input"
|
|
30
|
+
@blur="blur"
|
|
30
31
|
@keypress.enter.native="toggleInput"
|
|
31
32
|
>
|
|
32
33
|
<el-button
|
|
@@ -105,9 +106,15 @@ export default {
|
|
|
105
106
|
}
|
|
106
107
|
}
|
|
107
108
|
},
|
|
109
|
+
|
|
108
110
|
input (event) {
|
|
109
111
|
this.$emit('input', event)
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
blur (event) {
|
|
115
|
+
this.$emit('blur', event)
|
|
110
116
|
}
|
|
117
|
+
|
|
111
118
|
}
|
|
112
119
|
}
|
|
113
120
|
</script>
|
|
@@ -119,6 +126,8 @@ export default {
|
|
|
119
126
|
background-color: $--color-primary;
|
|
120
127
|
border-color: $--color-primary;
|
|
121
128
|
color: $--color-white;
|
|
129
|
+
height: 100%;
|
|
130
|
+
border-radius: 0px
|
|
122
131
|
}
|
|
123
132
|
|
|
124
133
|
> span {
|