easybill-ui 1.1.5 → 1.1.6

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.
@@ -30,7 +30,7 @@ const directives = {
30
30
  // 回车后过滤空格
31
31
  const keydown = function (event: KeyboardEvent) {
32
32
  if (event.key === "Enter") {
33
- const target = <HTMLInputElement>event.target
33
+ const target = event.target as HTMLInputElement
34
34
  const newVal = target.value.trim()
35
35
  if (target.value !== newVal) {
36
36
  target.value = newVal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easybill-ui",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "A component library for easybill",
5
5
  "author": "tuchongyang <779311998@qq.com>",
6
6
  "private": false,
@@ -14,5 +14,5 @@
14
14
  "publishConfig": {
15
15
  "access": "public"
16
16
  },
17
- "gitHead": "d73c13ef2247842e750f7517d91f8f0c2b4ee8c4"
17
+ "gitHead": "b1f7fbc78b05fa6437a53b8b798e9a94bfff89ae"
18
18
  }