@cbm-common/cbm-types 0.0.193 → 0.0.194
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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { DestroyRef, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl, ValidatorFn } from '@angular/forms';
|
|
3
|
-
import { TLabels } from
|
|
4
|
-
import { CbmModalConfirmComponent } from
|
|
5
|
-
import { CbmRecordDetailMetadataModel } from
|
|
6
|
-
import { CbmDocumentReferenceModel } from
|
|
7
|
-
import { CbmDocumentReferenceDomainRepository } from
|
|
8
|
-
import { CbmNotificationService } from
|
|
3
|
+
import { TLabels } from '../../types';
|
|
4
|
+
import { CbmModalConfirmComponent } from '../../../modal-confirm/modal-confirm';
|
|
5
|
+
import { CbmRecordDetailMetadataModel } from '../../../record-detail-metadata/types';
|
|
6
|
+
import { CbmDocumentReferenceModel } from '../../../../domain/models/document-reference.domain.model';
|
|
7
|
+
import { CbmDocumentReferenceDomainRepository } from '../../../../domain/repositories/document-reference.domain.repository';
|
|
8
|
+
import { CbmNotificationService } from '../../../../domain/services/notification/notification.service';
|
|
9
9
|
export declare class DeleteComponent implements OnInit {
|
|
10
10
|
private notificationService;
|
|
11
11
|
private documentReferenceRepository;
|
|
@@ -2,8 +2,8 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import { TCbmTextInputTransform } from './types';
|
|
3
3
|
export declare class CbmTextInputDirective {
|
|
4
4
|
private elementRef;
|
|
5
|
-
maxTextLength: import("@angular/core").InputSignal<number
|
|
6
|
-
maxWordLength: import("@angular/core").InputSignal<number
|
|
5
|
+
maxTextLength: import("@angular/core").InputSignal<number>;
|
|
6
|
+
maxWordLength: import("@angular/core").InputSignal<number>;
|
|
7
7
|
transform: import("@angular/core").InputSignal<TCbmTextInputTransform | undefined>;
|
|
8
8
|
pattern: import("@angular/core").InputSignal<string | RegExp | undefined>;
|
|
9
9
|
selfReference: boolean;
|
|
@@ -11,4 +11,5 @@ export declare class CbmTextInputDirective {
|
|
|
11
11
|
onKeyDown(event: KeyboardEvent): void;
|
|
12
12
|
onPaste(event: ClipboardEvent): void;
|
|
13
13
|
onInput(): void;
|
|
14
|
+
onBlur(): void;
|
|
14
15
|
}
|
|
@@ -119,6 +119,13 @@ export declare namespace CbmProviderModel {
|
|
|
119
119
|
updated_at?: number;
|
|
120
120
|
updated_user?: string;
|
|
121
121
|
document_name_pay?: string;
|
|
122
|
+
foreign_tax_regime_type?: string;
|
|
123
|
+
payment_country_code?: string;
|
|
124
|
+
payment_country_name?: string;
|
|
125
|
+
payment_destination_country_code?: string;
|
|
126
|
+
payment_destination_country_name?: string;
|
|
127
|
+
double_taxation_treaty_applies?: boolean;
|
|
128
|
+
legal_withholding_applies?: string;
|
|
122
129
|
provider_contact?: Data.ProviderContact[];
|
|
123
130
|
provider_category?: Data.ProviderCategory;
|
|
124
131
|
}
|
|
@@ -225,6 +232,13 @@ export declare namespace CbmProviderModel {
|
|
|
225
232
|
bank_account_number?: string;
|
|
226
233
|
document_type_pay_code?: string;
|
|
227
234
|
document_type_pay_name?: string;
|
|
235
|
+
foreign_tax_regime_type?: string;
|
|
236
|
+
payment_country_code?: string;
|
|
237
|
+
payment_country_name?: string;
|
|
238
|
+
payment_destination_country_code?: string;
|
|
239
|
+
payment_destination_country_name?: string;
|
|
240
|
+
double_taxation_treaty_applies?: boolean;
|
|
241
|
+
legal_withholding_applies?: string;
|
|
228
242
|
contacts?: UpdateManagementBody.Contact[];
|
|
229
243
|
delete_contacts?: string;
|
|
230
244
|
}
|