@seniorsistemas/yms-integration 1.5.11 → 1.5.12

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.
@@ -1025,7 +1025,7 @@
1025
1025
  };
1026
1026
  ConfirmacaoComponent = __decorate([
1027
1027
  core.Component({
1028
- template: "\n <p>N\u00E3o foi encontrada uma leitura de placa. Deseja informar a placa para realizar a entrada?</p>\n <div class=\"separator\"></div>\n <input pInputText type=\"text\" placeholder=\"Digite a placa\" [(ngModel)]=\"placa\">\n\n <div style=\"position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: flex-end; height: 40px; align-items: center;\">\n <s-button priority=\"primary\" label=\"Continuar\" [disabled]=\"!placa\" (onClick)=\"continue()\"></s-button>\n </div>\n "
1028
+ template: "\n <p>N\u00E3o foi encontrada uma leitura de placa. Deseja informar a placa para realizar a entrada?</p>\n <div class=\"separator\"></div>\n <input pInputText type=\"text\" pattern=\"[A-Z0-9]{6,10}\" maxlength=\"10\" placeholder=\"Digite a placa\" [(ngModel)]=\"placa\" #placaInput>\n \n <div style=\"position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: flex-end; height: 40px; align-items: center;\">\n <s-button priority=\"primary\" label=\"Continuar\" [disabled]=\"!placa || !placaInput.validity.valid\" (onClick)=\"continue()\"></s-button>\n </div>\n "
1029
1029
  }),
1030
1030
  __metadata("design:paramtypes", [api.DynamicDialogRef])
1031
1031
  ], ConfirmacaoComponent);