@cbm-common/cbm-types 0.0.61 → 0.0.62
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/lib/components/add-client/add-client.d.ts +25 -25
- package/lib/components/additional-data-modal/additional-data/additional-data.d.ts +11 -0
- package/lib/components/additional-data-modal/additional-data-modal.d.ts +33 -0
- package/lib/components/additional-data-modal/animations.d.ts +2 -0
- package/lib/components/additional-data-modal/general-data/general-data.d.ts +4 -0
- package/lib/components/additional-data-modal/types.d.ts +7 -0
- package/lib/components/branch-card/branch-card.d.ts +15 -0
- package/lib/components/committed-quantity-converter/committed-quantity-converter.d.ts +22 -0
- package/lib/components/committed-quantity-converter/types.d.ts +11 -0
- package/lib/components/taxes-modal/taxes-modal.d.ts +17 -0
- package/lib/components/taxes-modal/taxes-modal.model.d.ts +36 -0
- package/lib/components/tip-modal/animations.d.ts +1 -0
- package/lib/components/tip-modal/tip-modal.d.ts +25 -0
- package/lib/components/xml-modal/animations.d.ts +2 -0
- package/lib/components/xml-modal/xml-modal.d.ts +22 -0
- package/lib/directives/number-input/number-input.directive.d.ts +23 -0
- package/lib/directives/number-input.directive.d.ts +23 -23
- package/lib/remotes/components.remote.d.ts +6 -0
- package/lib/remotes/repositories/declaration-code-configuration.repository.d.ts +3 -0
- package/lib/remotes/repositories.remote.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +22 -0
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { Subject } from
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { CbmDocumentTypeModel } from
|
|
8
|
-
import { CbmPriceListModel } from
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import { CbmCountryCodeDomainRepository } from
|
|
17
|
-
import {
|
|
18
|
-
import { CbmPriceListDomainRepository } from
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
1
|
+
import { OnInit, AfterViewInit, ElementRef, DestroyRef } from "@angular/core";
|
|
2
|
+
import { FormGroup, FormControl, ValidatorFn, AsyncValidatorFn } from "@angular/forms";
|
|
3
|
+
import { Subject } from "rxjs";
|
|
4
|
+
import { CbmClientGroupModel } from "../../domain/models/client-group.domain.model";
|
|
5
|
+
import { CbmClientModel } from "../../domain/models/client.domain.model";
|
|
6
|
+
import { CbmCountryCodeModel } from "../../domain/models/country-code.domain.model";
|
|
7
|
+
import { CbmDocumentTypeModel } from "../../domain/models/document-type.model";
|
|
8
|
+
import { CbmPriceListModel } from "../../domain/models/price-list.domain.model";
|
|
9
|
+
import { CbmRateModel } from "../../domain/models/rate.domain.model";
|
|
10
|
+
import { CbmSellerModel } from "../../domain/models/seller.domain.model";
|
|
11
|
+
import { CbmSettingsProfessionsModel } from "../../domain/models/settings-professions.domain.model";
|
|
12
|
+
import { CbmBillingDomainRepository } from "../../domain/repositories/billing.domain.repository";
|
|
13
|
+
import { CbmClientCategoryDomainRepository } from "../../domain/repositories/client-category.domain.repository";
|
|
14
|
+
import { CbmClientGroupRepository } from "../../domain/repositories/client-group.domain.repository";
|
|
15
|
+
import { CbmClientDomainRepository } from "../../domain/repositories/client.domain.repository";
|
|
16
|
+
import { CbmCountryCodeDomainRepository } from "../../domain/repositories/country-code.domain.repository";
|
|
17
|
+
import { CbmDocumentTypeDomainRepository } from "../../domain/repositories/document-type.domain.repository";
|
|
18
|
+
import { CbmPriceListDomainRepository } from "../../domain/repositories/price-list.domain.repository";
|
|
19
|
+
import { CbmRateDomainRepository } from "../../domain/repositories/rate.domain.repository";
|
|
20
|
+
import { CbmSellerDomainRepository } from "../../domain/repositories/seller.domain.repository";
|
|
21
|
+
import { CbmSettingsProfessionsDomainRepository } from "../../domain/repositories/settings-professions.domain.repository";
|
|
22
|
+
import { CbmModalConfirmComponent } from "../modal-confirm/modal-confirm";
|
|
23
|
+
import { CbmTreeSelect } from "../tree-select/types";
|
|
24
|
+
import { IPagination, TStatus } from "./types";
|
|
25
|
+
import { CbmNotificationService } from "../../domain/services/notification/notification.service";
|
|
26
26
|
export type TSaveOptions = 'new' | 'view' | 'close';
|
|
27
27
|
export declare class CbmAddClientComponent implements OnInit, AfterViewInit {
|
|
28
28
|
private destroyRef;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
export declare class AdditionalDataComponent {
|
|
3
|
+
replaceItemNameControl: import("@angular/core").InputSignal<FormControl<string | null>>;
|
|
4
|
+
commentaryItemControl: import("@angular/core").InputSignal<FormControl<string | null>>;
|
|
5
|
+
unitDiscountControl: import("@angular/core").InputSignal<FormControl<string | null> | undefined>;
|
|
6
|
+
priceWithIva: import("@angular/core").InputSignal<FormControl<string | null> | undefined>;
|
|
7
|
+
unitPriceWithIvaControl: import("@angular/core").InputSignal<FormControl<string | null> | undefined>;
|
|
8
|
+
onBlurUnitDiscount: import("@angular/core").OutputEmitterRef<void>;
|
|
9
|
+
onBlurPriceWithIva: import("@angular/core").OutputEmitterRef<void>;
|
|
10
|
+
onBlurUnitPriceWithIva: import("@angular/core").OutputEmitterRef<void>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { IItemInformation } from './types';
|
|
4
|
+
export declare class CbmAdditionalDataModalComponent implements OnInit {
|
|
5
|
+
private elementRef;
|
|
6
|
+
private renderer2;
|
|
7
|
+
modalId: import("@angular/core").InputSignal<string>;
|
|
8
|
+
isOpen: import("@angular/core").InputSignal<boolean | undefined>;
|
|
9
|
+
replaceItemNameControl: import("@angular/core").InputSignal<FormControl<string | null>>;
|
|
10
|
+
commentaryItemControl: import("@angular/core").InputSignal<FormControl<string | null>>;
|
|
11
|
+
unitDiscountControl: import("@angular/core").InputSignal<FormControl<string | null> | undefined>;
|
|
12
|
+
priceWithIvaControl: import("@angular/core").InputSignal<FormControl<string | null> | undefined>;
|
|
13
|
+
unitPriceWithIvaControl: import("@angular/core").InputSignal<FormControl<string | null> | undefined>;
|
|
14
|
+
ivaValue: import("@angular/core").InputSignal<number | undefined>;
|
|
15
|
+
iceValue: import("@angular/core").InputSignal<number | undefined>;
|
|
16
|
+
item: import("@angular/core").InputSignal<IItemInformation | null>;
|
|
17
|
+
open: import("@angular/core").OutputEmitterRef<void>;
|
|
18
|
+
close: import("@angular/core").OutputEmitterRef<void>;
|
|
19
|
+
onBlurUnitDiscount: import("@angular/core").OutputEmitterRef<void>;
|
|
20
|
+
onBlurPriceWithIva: import("@angular/core").OutputEmitterRef<void>;
|
|
21
|
+
onBlurUnitPriceWithIva: import("@angular/core").OutputEmitterRef<void>;
|
|
22
|
+
modalRef: import("@angular/core").Signal<ElementRef<HTMLDialogElement> | undefined>;
|
|
23
|
+
tab_name: import("@angular/core").WritableSignal<"additional-data" | "general-data">;
|
|
24
|
+
isVisible: import("@angular/core").WritableSignal<boolean>;
|
|
25
|
+
loadCss: import("@angular/core").WritableSignal<boolean>;
|
|
26
|
+
constructor(elementRef: ElementRef, renderer2: Renderer2);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
openModal(): void;
|
|
29
|
+
closeModal(): void;
|
|
30
|
+
private extractRelevantStyles;
|
|
31
|
+
private injectStylesIntoDocument;
|
|
32
|
+
onKeydownHandler(): void;
|
|
33
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
2
|
+
import { CbmAuthService } from '../../domain/services/auth/auth.service';
|
|
3
|
+
export declare class CbmBranchCardComponent {
|
|
4
|
+
private readonly authService;
|
|
5
|
+
private readonly router;
|
|
6
|
+
private readonly route;
|
|
7
|
+
constructor(authService: CbmAuthService, router: Router, route: ActivatedRoute);
|
|
8
|
+
'route-change': import("@angular/core").InputSignal<string | string[]>;
|
|
9
|
+
'change-branch': import("@angular/core").InputSignal<boolean>;
|
|
10
|
+
routeChange: import("@angular/core").Signal<string | string[]>;
|
|
11
|
+
changeBranch: import("@angular/core").Signal<boolean>;
|
|
12
|
+
expaded: import("@angular/core").WritableSignal<boolean>;
|
|
13
|
+
companyBranch: import("../../domain/services/auth/auth.model").CbmAuthData.CompanyBranchData;
|
|
14
|
+
changeRedirect(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { DestroyRef, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { ICommittedQuantity, IGroupData, TState } from './types';
|
|
3
|
+
import { CbmItemDomainRepository } from '../../domain/repositories/item.domain.repository';
|
|
4
|
+
import { CbmNotificationService } from '../../domain/services/notification/notification.service';
|
|
5
|
+
export declare class CbmCommittedQuantityConverterComponent {
|
|
6
|
+
private render2;
|
|
7
|
+
private destroyRef;
|
|
8
|
+
private itemRepository;
|
|
9
|
+
private notificationService;
|
|
10
|
+
statusOfGetData: import("@angular/core").WritableSignal<TState>;
|
|
11
|
+
modalId: import("@angular/core").InputSignal<string>;
|
|
12
|
+
itemId: import("@angular/core").WritableSignal<string>;
|
|
13
|
+
amount: import("@angular/core").WritableSignal<number>;
|
|
14
|
+
committedQuantity: import("@angular/core").WritableSignal<ICommittedQuantity[]>;
|
|
15
|
+
data: import("@angular/core").WritableSignal<IGroupData | null>;
|
|
16
|
+
modalRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
17
|
+
constructor(render2: Renderer2, destroyRef: DestroyRef, itemRepository: CbmItemDomainRepository, notificationService: CbmNotificationService);
|
|
18
|
+
openModal(itemId: string, amount: number): void;
|
|
19
|
+
closeModal(): void;
|
|
20
|
+
getData(): void;
|
|
21
|
+
animationModal(open: boolean): void;
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type TState = 'init' | 'loading' | 'success' | 'failed';
|
|
2
|
+
export interface ICommittedQuantity {
|
|
3
|
+
unitMeasureName: string;
|
|
4
|
+
type: string;
|
|
5
|
+
value: number;
|
|
6
|
+
amount: number;
|
|
7
|
+
}
|
|
8
|
+
export interface IGroupData {
|
|
9
|
+
unitMeasureGroupName?: string;
|
|
10
|
+
unitMesureBase?: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { CbmTaxesModal } from './taxes-modal.model';
|
|
3
|
+
export declare class CbmTaxesModalComponent implements OnChanges {
|
|
4
|
+
isOpen: import("@angular/core").InputSignal<boolean | undefined>;
|
|
5
|
+
taxes: import("@angular/core").InputSignal<CbmTaxesModal.Data>;
|
|
6
|
+
open: import("@angular/core").OutputEmitterRef<void>;
|
|
7
|
+
close: import("@angular/core").OutputEmitterRef<void>;
|
|
8
|
+
modalRef: import("@angular/core").Signal<ElementRef<HTMLDialogElement> | undefined>;
|
|
9
|
+
totalTaxBase: import("@angular/core").WritableSignal<number>;
|
|
10
|
+
totalTaxValue: import("@angular/core").WritableSignal<number>;
|
|
11
|
+
constructor();
|
|
12
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
13
|
+
openModal(): void;
|
|
14
|
+
closeModal(): void;
|
|
15
|
+
onDialogClick(event: Event, dialog: HTMLDialogElement): void;
|
|
16
|
+
handleCloseDialog(dialog: HTMLDialogElement): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export declare namespace CbmTaxesModal {
|
|
2
|
+
interface Data {
|
|
3
|
+
iva?: {
|
|
4
|
+
items: Data.Item[];
|
|
5
|
+
totals: {
|
|
6
|
+
tax_iva: number;
|
|
7
|
+
tax_value: number;
|
|
8
|
+
tax_base: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
ice?: {
|
|
12
|
+
items: Data.Item[];
|
|
13
|
+
totals: {
|
|
14
|
+
tax_base: number;
|
|
15
|
+
tax_value: number;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
irbpnr?: {
|
|
19
|
+
items: Data.Item[];
|
|
20
|
+
totals: {
|
|
21
|
+
tax_base: number;
|
|
22
|
+
tax_value: number;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
namespace Data {
|
|
27
|
+
interface Item {
|
|
28
|
+
type: string;
|
|
29
|
+
tax_code: string;
|
|
30
|
+
tax_description?: string;
|
|
31
|
+
tax_rate: number;
|
|
32
|
+
tax_base: number;
|
|
33
|
+
tax_value: number;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const fadeInOutAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup, ValidatorFn } from '@angular/forms';
|
|
3
|
+
export declare class CbmTipModalComponent implements OnInit {
|
|
4
|
+
isOpen: import("@angular/core").InputSignal<boolean | undefined>;
|
|
5
|
+
tip: import("@angular/core").InputSignal<string | null>;
|
|
6
|
+
tipControl: import("@angular/core").InputSignal<FormControl<string | null>>;
|
|
7
|
+
subtotal: import("@angular/core").InputSignal<number>;
|
|
8
|
+
open: import("@angular/core").OutputEmitterRef<void>;
|
|
9
|
+
close: import("@angular/core").OutputEmitterRef<void>;
|
|
10
|
+
modalRef: import("@angular/core").Signal<ElementRef<HTMLDialogElement> | undefined>;
|
|
11
|
+
tipForm: FormGroup<{
|
|
12
|
+
percentage: FormControl<string | null>;
|
|
13
|
+
value: FormControl<string | null>;
|
|
14
|
+
}>;
|
|
15
|
+
constructor();
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
get valueControl(): FormControl<string | null>;
|
|
18
|
+
get percentageControl(): FormControl<string | null>;
|
|
19
|
+
valueValidator(): ValidatorFn;
|
|
20
|
+
openModal(): void;
|
|
21
|
+
closeModal(): void;
|
|
22
|
+
onDialogClick(event: Event, dialog: HTMLDialogElement): void;
|
|
23
|
+
handleCloseDialog(dialog: HTMLDialogElement): void;
|
|
24
|
+
saveChanges(): void;
|
|
25
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CbmNotificationService } from '../../domain/services/notification/notification.service';
|
|
2
|
+
import 'highlight.js/styles/github-dark.css';
|
|
3
|
+
export declare class XmlModal {
|
|
4
|
+
private notificationService;
|
|
5
|
+
isOpen: import("@angular/core").InputSignal<boolean | undefined>;
|
|
6
|
+
xml: import("@angular/core").InputSignal<string>;
|
|
7
|
+
titleText: import("@angular/core").InputSignal<string>;
|
|
8
|
+
fileName: import("@angular/core").InputSignal<string>;
|
|
9
|
+
theme: import("@angular/core").InputSignal<"light" | "dark">;
|
|
10
|
+
open: import("@angular/core").OutputEmitterRef<void>;
|
|
11
|
+
close: import("@angular/core").OutputEmitterRef<void>;
|
|
12
|
+
copy: import("@angular/core").OutputEmitterRef<string>;
|
|
13
|
+
download: import("@angular/core").OutputEmitterRef<Blob>;
|
|
14
|
+
isVisible: import("@angular/core").WritableSignal<boolean>;
|
|
15
|
+
xmlCode: import("@angular/core").Signal<string>;
|
|
16
|
+
themeClasses: import("@angular/core").Signal<"hljs-dark-theme" | "hljs-light-theme">;
|
|
17
|
+
constructor(notificationService: CbmNotificationService);
|
|
18
|
+
openModal(): void;
|
|
19
|
+
closeModal(): void;
|
|
20
|
+
copyXml(): void;
|
|
21
|
+
downloadXml(): void;
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
export declare class CbmNumberInputDirective implements OnInit {
|
|
4
|
+
private elementRef;
|
|
5
|
+
private ngControl;
|
|
6
|
+
maxDecimalPlaces?: number;
|
|
7
|
+
negative: boolean;
|
|
8
|
+
max?: number;
|
|
9
|
+
zeroOnBlur?: boolean;
|
|
10
|
+
numberOnBlur?: number;
|
|
11
|
+
allowPasteArray?: boolean;
|
|
12
|
+
onPasteArray: import("@angular/core").OutputEmitterRef<string[]>;
|
|
13
|
+
private regex;
|
|
14
|
+
constructor(elementRef: ElementRef, ngControl: NgControl);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
17
|
+
onPaste(event: ClipboardEvent): void;
|
|
18
|
+
aClipboardItem(pastedInput: string, event: ClipboardEvent): void;
|
|
19
|
+
multipleClipboardItems(pastedInput: string[], event: ClipboardEvent): void;
|
|
20
|
+
onDrop(event: DragEvent): void;
|
|
21
|
+
onBlur(): void;
|
|
22
|
+
format(value: string): void;
|
|
23
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { NgControl } from '@angular/forms';
|
|
3
|
-
export declare class CbmNumberInputDirective implements OnInit {
|
|
4
|
-
private elementRef;
|
|
5
|
-
private ngControl;
|
|
6
|
-
maxDecimalPlaces?: number;
|
|
7
|
-
negative: boolean;
|
|
8
|
-
max?: number;
|
|
9
|
-
zeroOnBlur?: boolean;
|
|
10
|
-
numberOnBlur?: number;
|
|
11
|
-
allowPasteArray?: boolean;
|
|
12
|
-
onPasteArray: import("@angular/core").OutputEmitterRef<string[]>;
|
|
13
|
-
private regex;
|
|
14
|
-
constructor(elementRef: ElementRef, ngControl: NgControl);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
onKeyDown(event: KeyboardEvent): void;
|
|
17
|
-
onPaste(event: ClipboardEvent): void;
|
|
18
|
-
aClipboardItem(pastedInput: string, event: ClipboardEvent): void;
|
|
19
|
-
multipleClipboardItems(pastedInput: string[], event: ClipboardEvent): void;
|
|
20
|
-
onDrop(event: DragEvent): void;
|
|
21
|
-
onBlur(): void;
|
|
22
|
-
format(value: string): void;
|
|
23
|
-
}
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
export declare class CbmNumberInputDirective implements OnInit {
|
|
4
|
+
private elementRef;
|
|
5
|
+
private ngControl;
|
|
6
|
+
maxDecimalPlaces?: number;
|
|
7
|
+
negative: boolean;
|
|
8
|
+
max?: number;
|
|
9
|
+
zeroOnBlur?: boolean;
|
|
10
|
+
numberOnBlur?: number;
|
|
11
|
+
allowPasteArray?: boolean;
|
|
12
|
+
onPasteArray: import("@angular/core").OutputEmitterRef<string[]>;
|
|
13
|
+
private regex;
|
|
14
|
+
constructor(elementRef: ElementRef, ngControl: NgControl);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
17
|
+
onPaste(event: ClipboardEvent): void;
|
|
18
|
+
aClipboardItem(pastedInput: string, event: ClipboardEvent): void;
|
|
19
|
+
multipleClipboardItems(pastedInput: string[], event: ClipboardEvent): void;
|
|
20
|
+
onDrop(event: DragEvent): void;
|
|
21
|
+
onBlur(): void;
|
|
22
|
+
format(value: string): void;
|
|
23
|
+
}
|
|
@@ -19,3 +19,9 @@ export { CbmRelationshipMapComponent } from '../components/relationship-map/rela
|
|
|
19
19
|
export { CbmAddProviderComponent } from '../components/add-provider/add-provider';
|
|
20
20
|
export { CbmTimelineComponent } from '../components/timeline/timeline';
|
|
21
21
|
export { CbmRelationshipMovementsComponent } from '../components/relationship-movements/relationship-movements';
|
|
22
|
+
export { CbmAdditionalDataModalComponent } from '../components/additional-data-modal/additional-data-modal';
|
|
23
|
+
export { CbmBranchCardComponent } from '../components/branch-card/branch-card';
|
|
24
|
+
export { CbmCommittedQuantityConverterComponent } from '../components/committed-quantity-converter/committed-quantity-converter';
|
|
25
|
+
export { CbmTaxesModalComponent } from '../components/taxes-modal/taxes-modal';
|
|
26
|
+
export { CbmTipModalComponent } from '../components/tip-modal/tip-modal';
|
|
27
|
+
export { XmlModal } from '../components/xml-modal/xml-modal';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { CbmDeclarationCodeConfigurationDomainRepository } from '../../domain/repositories/declaration-code-configuration.domain.repository';
|
|
3
|
+
export declare function declarationCodeConfigurationFactory(http: HttpClient): CbmDeclarationCodeConfigurationDomainRepository;
|
|
@@ -21,6 +21,7 @@ export * from './repositories/country-code.repository';
|
|
|
21
21
|
export * from './repositories/credit-management.repository';
|
|
22
22
|
export * from './repositories/credit-request.repository';
|
|
23
23
|
export * from './repositories/deadline.repository';
|
|
24
|
+
export * from './repositories/declaration-code-configuration.repository';
|
|
24
25
|
export * from './repositories/document-reference.repository';
|
|
25
26
|
export * from './repositories/document-type.repository';
|
|
26
27
|
export * from './repositories/driver.repository';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -90,6 +90,10 @@ export * from './lib/domain/models/cost-center.domain.model';
|
|
|
90
90
|
export * from './lib/domain/repositories/deadline.domain.repository';
|
|
91
91
|
export * from './lib/domain/models/deadline.domian.model';
|
|
92
92
|
|
|
93
|
+
//#region declaration code configuration repository
|
|
94
|
+
export * from './lib/domain/repositories/declaration-code-configuration.domain.repository';
|
|
95
|
+
export * from './lib/domain/models/declaration-code-configuration.domain.model';
|
|
96
|
+
|
|
93
97
|
//#region document reference repository
|
|
94
98
|
export * from './lib/domain/repositories/document-reference.domain.repository';
|
|
95
99
|
export * from './lib/domain/models/document-reference.domain.model';
|
|
@@ -249,6 +253,24 @@ export * from './lib/components/add-client/add-client';
|
|
|
249
253
|
// #region add provider component
|
|
250
254
|
export * from './lib/components/add-provider/add-provider';
|
|
251
255
|
|
|
256
|
+
// #region additional data modal component
|
|
257
|
+
export * from './lib/components/additional-data-modal/additional-data-modal';
|
|
258
|
+
|
|
259
|
+
// #region branch card component
|
|
260
|
+
export * from './lib/components/branch-card/branch-card';
|
|
261
|
+
|
|
262
|
+
// #region committed quantity converter component
|
|
263
|
+
export * from './lib/components/committed-quantity-converter/committed-quantity-converter';
|
|
264
|
+
|
|
265
|
+
// #region taxes modal component
|
|
266
|
+
export * from './lib/components/taxes-modal/taxes-modal';
|
|
267
|
+
|
|
268
|
+
// #region tip modal component
|
|
269
|
+
export * from './lib/components/tip-modal/tip-modal';
|
|
270
|
+
|
|
271
|
+
// #region xml modal component
|
|
272
|
+
export * from './lib/components/xml-modal/xml-modal';
|
|
273
|
+
|
|
252
274
|
// #region sale price repository
|
|
253
275
|
export * from './lib/domain/repositories/sale-price.domain.repository';
|
|
254
276
|
export * from './lib/domain/models/sale-price.domain.model';
|