@aquera/nile-elements 0.0.54 → 0.0.56
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 +4 -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 +6 -0
package/package.json
CHANGED
@@ -281,6 +281,7 @@ export class NileInput extends NileElement implements NileFormControl {
|
|
281
281
|
}
|
282
282
|
|
283
283
|
firstUpdated() {
|
284
|
+
this.emit('nile-after-init');
|
284
285
|
this.formControlController.updateValidity();
|
285
286
|
}
|
286
287
|
|
@@ -307,6 +308,11 @@ export class NileInput extends NileElement implements NileFormControl {
|
|
307
308
|
private handleFocus() {
|
308
309
|
this.hasFocus = true;
|
309
310
|
this.emit('nile-focus', { value: this.value });
|
311
|
+
|
312
|
+
if(this.checkNonPrintableChar){
|
313
|
+
this.markNonPrintableCharacters();
|
314
|
+
}
|
315
|
+
|
310
316
|
}
|
311
317
|
|
312
318
|
private handleInput() {
|