@mixd-id/web-scaffold 0.1.230406029 → 0.1.230406030

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406029",
4
+ "version": "0.1.230406030",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div :class="computedClass">
3
3
  <slot name="start"></slot>
4
- <input :type="computedType" :disabled="isDisabled" @focus="isActive = true"
4
+ <input :type="computedType" :disabled="isDisabled" @focus="isActive = true" @input="onInput" @blur="onBlur"
5
5
  :placeholder="placeholder" :maxlength="maxlength" ref="input" autocomplete="new-password"
6
6
  :value="displayedValue" :readonly="Boolean(readonly)"
7
7
  @keydown="onKeyDown"/>
@@ -139,11 +139,7 @@ export default{
139
139
  }
140
140
  }
141
141
 
142
- },
143
-
144
- mounted(){
145
- console.log('Textbox mounted', this.$el)
146
- }
142
+ }
147
143
 
148
144
  }
149
145