@aquera/nile-elements 0.0.54 → 0.0.55
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/index.iife.js +1 -1
- package/dist/nile-input/nile-input.cjs.js +1 -1
- package/dist/nile-input/nile-input.cjs.js.map +1 -1
- package/dist/nile-input/nile-input.esm.js +1 -1
- package/dist/src/nile-input/nile-input.js +3 -0
- package/dist/src/nile-input/nile-input.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-input/nile-input.ts +5 -0
package/package.json
CHANGED
@@ -307,6 +307,11 @@ export class NileInput extends NileElement implements NileFormControl {
|
|
307
307
|
private handleFocus() {
|
308
308
|
this.hasFocus = true;
|
309
309
|
this.emit('nile-focus', { value: this.value });
|
310
|
+
|
311
|
+
if(this.checkNonPrintableChar){
|
312
|
+
this.markNonPrintableCharacters();
|
313
|
+
}
|
314
|
+
|
310
315
|
}
|
311
316
|
|
312
317
|
private handleInput() {
|