You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
Please, tell us how to recreate the issue in as much detail as possible.
when i enter into a "notificar pago component", i need to render a input-mask. this run perfect in android, but in ios this don't works.
Is there any code involved?
The code:
<InputMask *ngIf="submitted"
mask="[099999999]{,}[00]"
(extractedValueChange)="onExtractedValueChange($event)"
(completedChange)="onCompletedChange($event)"
(loaded)="onLoaded($event)"
[hint]="importe"
keyboardType="phone">
the error is:
CONSOLE WARN file:///app/tns_modules/nativescript-input-mask/input-mask.js:31:49: Class "InputMaskDelegateImpl" already implements the "UITextFieldDelegate" protocol.
Make sure to check the demo app(s) for sample usage
Make sure to check the existing issues in this repository
If the demo apps cannot help and there is no issue for your problem, tell us about it
Please, ensure your title is less than 63 characters long and starts with a capital
letter.
Which platform(s) does your issue occur on?
Please, provide the following version numbers that your issue occurs with:
node_modules/tns-core-modules/package.jsonfile in your project)"tns-android": 5.2.1and"tns-ios":5.3.1"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/http": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@nstudio/nativescript-floatingactionbutton": "^1.0.0",
"lodash": "^4.17.11",
"nativescript-angular": "~7.2.0",
"nativescript-camera": "^4.1.1",
"nativescript-cardview": "^3.1.1",
"nativescript-https": "^1.1.0",
"nativescript-imagepicker": "^6.1.0",
"nativescript-input-mask": "^1.0.5",
"nativescript-masked-text-field": "^4.0.2",
"nativescript-maskedinput": "0.0.3",
"nativescript-numeric-keyboard": "^4.3.0",
"nativescript-pdf-view": "^2.0.1",
"nativescript-sqlite": "^2.2.3",
"nativescript-theme-core": "~1.0.4",
"nativescript-ui-listview": "^3.8.0",
"nativescript-ui-sidedrawer": "~5.0.0",
"nativescript-ui-dataform": "3.8.0",
"reflect-metadata": "~0.1.12",
"rxjs": "~6.3.0",
"tns-core-modules": "~5.3.0",
"tns-platform-declarations": "^6.0.3",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular/compiler-cli": "~7.2.0",
"@nativescript/schematics": "~0.5.0",
"@ngtools/webpack": "~7.2.0",
"nativescript-dev-typescript": "~0.9.0",
"nativescript-dev-webpack": "~0.21.0",
"tns-platform-declarations": "^6.0.3"
},
Please, tell us how to recreate the issue in as much detail as possible.
when i enter into a "notificar pago component", i need to render a input-mask. this run perfect in android, but in ios this don't works.
Is there any code involved?
The code:
<InputMask *ngIf="submitted"
mask="[099999999]{,}[00]"
(extractedValueChange)="onExtractedValueChange($event)"
(completedChange)="onCompletedChange($event)"
(loaded)="onLoaded($event)"
[hint]="importe"
keyboardType="phone">
the error is:
CONSOLE WARN file:///app/tns_modules/nativescript-input-mask/input-mask.js:31:49: Class "InputMaskDelegateImpl" already implements the "UITextFieldDelegate" protocol.
Thanks!