@greghowe79/the-lib 0.8.3 → 0.8.4

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.
@@ -107,7 +107,8 @@ const Input = qwik.component$(({ id, type, placeholder, value, error, onValidate
107
107
  placeholder,
108
108
  "bind:value": value,
109
109
  onInput$: inputHandler,
110
- onBlur$: inputHandler
110
+ onBlur$: inputHandler,
111
+ maxLength: 14
111
112
  })
112
113
  ]
113
114
  })
@@ -105,7 +105,8 @@ const Input = component$(({ id, type, placeholder, value, error, onValidate$, on
105
105
  placeholder,
106
106
  "bind:value": value,
107
107
  onInput$: inputHandler,
108
- onBlur$: inputHandler
108
+ onBlur$: inputHandler,
109
+ maxLength: 14
109
110
  })
110
111
  ]
111
112
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",