@tagplus/components 2.0.15 → 2.0.16

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/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "email": "bruno@tagplus.com.br"
9
9
  }
10
10
  ],
11
- "version": "2.0.15",
11
+ "version": "2.0.16",
12
12
  "main": "./dist/tp.common.js",
13
13
  "directories": {
14
14
  "lib": "src/lib"
@@ -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 {