taxtank-core 2.0.120 → 2.0.121

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.
@@ -21186,9 +21186,9 @@ class JsPdf extends jsPDF {
21186
21186
  const FILE_SETTINGS$1 = {
21187
21187
  margin: 10,
21188
21188
  filename: 'export.pdf',
21189
- image: { type: 'jpeg', quality: 0.8 },
21189
+ image: { type: 'jpeg', quality: 1 },
21190
21190
  html2canvas: {
21191
- scale: 2,
21191
+ scale: Math.max(3, window.devicePixelRatio),
21192
21192
  windowWidth: 1000,
21193
21193
  windowHeight: 800,
21194
21194
  foreignObjectRendering: false,
@@ -24976,7 +24976,7 @@ class BankAccountAllocationForm extends AbstractForm {
24976
24976
  * Form is using for single manual bank account creation (not Basiq)
24977
24977
  */
24978
24978
  class BankAccountForm extends BankAccountAllocationForm {
24979
- static { this.accountNumberPattern = '^[0-9]{6}[ ]{1}[0-9]{1,}$'; }
24979
+ static { this.accountNumberPattern = '^[0-9]{6} ?[0-9]{1,}$'; }
24980
24980
  constructor(bankAccount) {
24981
24981
  super(bankAccount, {
24982
24982
  type: new FormControl(bankAccount.type, Validators.required),