techlify-inventory-common 18.0.1
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/README.md +24 -0
- package/esm2022/lib/inventory-common/category/category-form/category-form.component.mjs +77 -0
- package/esm2022/lib/inventory-common/category/category-form-button/category-form-button.component.mjs +32 -0
- package/esm2022/lib/inventory-common/category/category-list-page/category-list-page.component.mjs +68 -0
- package/esm2022/lib/inventory-common/category/category-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/category/category.module.mjs +63 -0
- package/esm2022/lib/inventory-common/category/category.service.mjs +18 -0
- package/esm2022/lib/inventory-common/inventory-common-routing.module.mjs +53 -0
- package/esm2022/lib/inventory-common/inventory-common.module.mjs +39 -0
- package/esm2022/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.mjs +42 -0
- package/esm2022/lib/inventory-common/material.module.mjs +172 -0
- package/esm2022/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.mjs +44 -0
- package/esm2022/lib/inventory-common/measure/measure-delete/measure-delete.module.mjs +19 -0
- package/esm2022/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.mjs +80 -0
- package/esm2022/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.mjs +30 -0
- package/esm2022/lib/inventory-common/measure/measure-form/measure-form.module.mjs +21 -0
- package/esm2022/lib/inventory-common/measure/measure-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/measure/measure.module.mjs +47 -0
- package/esm2022/lib/inventory-common/measure/measure.service.mjs +18 -0
- package/esm2022/lib/inventory-common/measure/measures-list/measures-list.component.mjs +71 -0
- package/esm2022/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.mjs +45 -0
- package/esm2022/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.module.mjs +36 -0
- package/esm2022/lib/inventory-common/product/product-basic-info/product-basic-info.component.mjs +54 -0
- package/esm2022/lib/inventory-common/product/product-delete-button/product-delete-button.component.mjs +54 -0
- package/esm2022/lib/inventory-common/product/product-form/product-form.component.mjs +180 -0
- package/esm2022/lib/inventory-common/product/product-form-button/product-form-button.component.mjs +40 -0
- package/esm2022/lib/inventory-common/product/product-form.service.mjs +17 -0
- package/esm2022/lib/inventory-common/product/product-import-page/product-import-page.component.mjs +66 -0
- package/esm2022/lib/inventory-common/product/product-list/product-list.component.mjs +189 -0
- package/esm2022/lib/inventory-common/product/product-measure-form/product-measure-form.component.mjs +101 -0
- package/esm2022/lib/inventory-common/product/product-measures-list/product-measures-list.component.mjs +151 -0
- package/esm2022/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.mjs +12 -0
- package/esm2022/lib/inventory-common/product/product-routing.module.mjs +57 -0
- package/esm2022/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.mjs +63 -0
- package/esm2022/lib/inventory-common/product/product-summary-chart/product-summary-chart.module.mjs +29 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.mjs +54 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.mjs +77 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.mjs +35 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax.module.mjs +39 -0
- package/esm2022/lib/inventory-common/product/product-tax/product-tax.service.mjs +18 -0
- package/esm2022/lib/inventory-common/product/product-view-page/product-view-page.component.mjs +68 -0
- package/esm2022/lib/inventory-common/product/product.module.mjs +111 -0
- package/esm2022/lib/inventory-common/product/product.service.mjs +49 -0
- package/esm2022/lib/inventory-common/services/techlify-form-service.mjs +11 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.mjs +47 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.module.mjs +19 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuance.service.mjs +18 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.mjs +126 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.module.mjs +48 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issuances.module.mjs +67 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.mjs +120 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.mjs +44 -0
- package/esm2022/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form.module.mjs +53 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.mjs +47 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.mjs +125 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.mjs +38 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form.module.mjs +53 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipt.service.mjs +18 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.mjs +119 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipts-routing.module.mjs +24 -0
- package/esm2022/lib/inventory-common/stock-receipts/stock-receipts.module.mjs +75 -0
- package/esm2022/lib/inventory-common/stock-summary.service.mjs +26 -0
- package/esm2022/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.mjs +59 -0
- package/esm2022/lib/inventory-common/supplier/payee-selector/payee-selector.module.mjs +35 -0
- package/esm2022/lib/inventory-common/supplier/supplier-form/supplier-form.component.mjs +118 -0
- package/esm2022/lib/inventory-common/supplier/supplier-form/supplier-form.service.mjs +17 -0
- package/esm2022/lib/inventory-common/supplier/supplier-information/supplier-information.component.mjs +72 -0
- package/esm2022/lib/inventory-common/supplier/supplier-routing.module.mjs +40 -0
- package/esm2022/lib/inventory-common/supplier/supplier-type.service.mjs +25 -0
- package/esm2022/lib/inventory-common/supplier/supplier-view/supplier-view.component.mjs +66 -0
- package/esm2022/lib/inventory-common/supplier/supplier.component.mjs +20 -0
- package/esm2022/lib/inventory-common/supplier/supplier.module.mjs +63 -0
- package/esm2022/lib/inventory-common/supplier/supplier.service.mjs +61 -0
- package/esm2022/lib/inventory-common/supplier/suppliers-list/suppliers-list.component.mjs +241 -0
- package/esm2022/lib/inventory-common/techlify-filter/techlify-filter.component.mjs +118 -0
- package/esm2022/lib/inventory-common/techlify-filter/techlify-filter.module.mjs +38 -0
- package/esm2022/public-api.mjs +9 -0
- package/esm2022/techlify-inventory-common.mjs +5 -0
- package/fesm2022/techlify-inventory-common-category.module-Stn6e73V.mjs +257 -0
- package/fesm2022/techlify-inventory-common-category.module-Stn6e73V.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-measure.module-CirswKXn.mjs +313 -0
- package/fesm2022/techlify-inventory-common-measure.module-CirswKXn.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-product.module-qdeafFV5.mjs +1172 -0
- package/fesm2022/techlify-inventory-common-product.module-qdeafFV5.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-issuances-list.module-CyFDxARk.mjs +436 -0
- package/fesm2022/techlify-inventory-common-stock-issuances-list.module-CyFDxARk.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-issuances.module-Dm9i2kcf.mjs +89 -0
- package/fesm2022/techlify-inventory-common-stock-issuances.module-Dm9i2kcf.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-receipt-form.module-BZDrN7la.mjs +302 -0
- package/fesm2022/techlify-inventory-common-stock-receipt-form.module-BZDrN7la.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-stock-receipts.module-CUPdWteR.mjs +253 -0
- package/fesm2022/techlify-inventory-common-stock-receipts.module-CUPdWteR.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-supplier-form.component-CHmMG7O8.mjs +178 -0
- package/fesm2022/techlify-inventory-common-supplier-form.component-CHmMG7O8.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-supplier.module-gzHesNtQ.mjs +665 -0
- package/fesm2022/techlify-inventory-common-supplier.module-gzHesNtQ.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-techlify-form-service-CiVfwYTS.mjs +14 -0
- package/fesm2022/techlify-inventory-common-techlify-form-service-CiVfwYTS.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common-techlify-inventory-common-Czyc0jLI.mjs +495 -0
- package/fesm2022/techlify-inventory-common-techlify-inventory-common-Czyc0jLI.mjs.map +1 -0
- package/fesm2022/techlify-inventory-common.mjs +2 -0
- package/fesm2022/techlify-inventory-common.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/inventory-common/category/category-form/category-form.component.d.ts +19 -0
- package/lib/inventory-common/category/category-form-button/category-form-button.component.d.ts +13 -0
- package/lib/inventory-common/category/category-list-page/category-list-page.component.d.ts +20 -0
- package/lib/inventory-common/category/category-routing.module.d.ts +7 -0
- package/lib/inventory-common/category/category.module.d.ts +19 -0
- package/lib/inventory-common/category/category.service.d.ts +7 -0
- package/lib/inventory-common/inventory-common-routing.module.d.ts +7 -0
- package/lib/inventory-common/inventory-common.module.d.ts +13 -0
- package/lib/inventory-common/inventory-dashboard-page/inventory-dashboard-page.component.d.ts +14 -0
- package/lib/inventory-common/material.module.d.ts +40 -0
- package/lib/inventory-common/measure/measure-delete/measure-delete-button/measure-delete-button.component.d.ts +19 -0
- package/lib/inventory-common/measure/measure-delete/measure-delete.module.d.ts +9 -0
- package/lib/inventory-common/measure/measure-form/measure-form/measure-form.component.d.ts +19 -0
- package/lib/inventory-common/measure/measure-form/measure-form-button/measure-form-button.component.d.ts +13 -0
- package/lib/inventory-common/measure/measure-form/measure-form.module.d.ts +11 -0
- package/lib/inventory-common/measure/measure-routing.module.d.ts +7 -0
- package/lib/inventory-common/measure/measure.module.d.ts +15 -0
- package/lib/inventory-common/measure/measure.service.d.ts +7 -0
- package/lib/inventory-common/measure/measures-list/measures-list.component.d.ts +17 -0
- package/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.component.d.ts +13 -0
- package/lib/inventory-common/product/low-stock-products-widget/low-stock-products-widget.module.d.ts +12 -0
- package/lib/inventory-common/product/product-basic-info/product-basic-info.component.d.ts +19 -0
- package/lib/inventory-common/product/product-delete-button/product-delete-button.component.d.ts +26 -0
- package/lib/inventory-common/product/product-form/product-form.component.d.ts +44 -0
- package/lib/inventory-common/product/product-form-button/product-form-button.component.d.ts +20 -0
- package/lib/inventory-common/product/product-form.service.d.ts +7 -0
- package/lib/inventory-common/product/product-import-page/product-import-page.component.d.ts +10 -0
- package/lib/inventory-common/product/product-list/product-list.component.d.ts +44 -0
- package/lib/inventory-common/product/product-measure-form/product-measure-form.component.d.ts +33 -0
- package/lib/inventory-common/product/product-measures-list/product-measures-list.component.d.ts +43 -0
- package/lib/inventory-common/product/product-nav-bar/product-nav-bar.component.d.ts +5 -0
- package/lib/inventory-common/product/product-routing.module.d.ts +7 -0
- package/lib/inventory-common/product/product-summary-chart/product-summary-chart.component.d.ts +15 -0
- package/lib/inventory-common/product/product-summary-chart/product-summary-chart.module.d.ts +10 -0
- package/lib/inventory-common/product/product-tax/product-tax-delete-button/product-tax-delete-button.component.d.ts +26 -0
- package/lib/inventory-common/product/product-tax/product-tax-form-button/product-tax-form-button.component.d.ts +21 -0
- package/lib/inventory-common/product/product-tax/product-tax-list/product-tax-list.component.d.ts +13 -0
- package/lib/inventory-common/product/product-tax/product-tax.module.d.ts +12 -0
- package/lib/inventory-common/product/product-tax/product-tax.service.d.ts +7 -0
- package/lib/inventory-common/product/product-view-page/product-view-page.component.d.ts +33 -0
- package/lib/inventory-common/product/product.module.d.ts +28 -0
- package/lib/inventory-common/product/product.service.d.ts +19 -0
- package/lib/inventory-common/services/techlify-form-service.d.ts +5 -0
- package/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.component.d.ts +18 -0
- package/lib/inventory-common/stock-issuances/stock-issuance-delete-button/stock-issuance-delete-button.module.d.ts +9 -0
- package/lib/inventory-common/stock-issuances/stock-issuance.service.d.ts +7 -0
- package/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.component.d.ts +24 -0
- package/lib/inventory-common/stock-issuances/stock-issuances-list/stock-issuances-list.module.d.ts +15 -0
- package/lib/inventory-common/stock-issuances/stock-issuances-routing.module.d.ts +7 -0
- package/lib/inventory-common/stock-issuances/stock-issuances.module.d.ts +19 -0
- package/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form/stock-issue-form.component.d.ts +24 -0
- package/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form-button/stock-issue-form-button.component.d.ts +18 -0
- package/lib/inventory-common/stock-issuances/stock-issue-form/stock-issue-form.module.d.ts +17 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-delete-button/stock-receipt-delete-button.component.d.ts +18 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form/stock-receipt-form.component.d.ts +22 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form-button/stock-receipt-form-button.component.d.ts +16 -0
- package/lib/inventory-common/stock-receipts/stock-receipt-form/stock-receipt-form.module.d.ts +17 -0
- package/lib/inventory-common/stock-receipts/stock-receipt.service.d.ts +7 -0
- package/lib/inventory-common/stock-receipts/stock-receipts-list-page/stock-receipts-list-page.component.d.ts +21 -0
- package/lib/inventory-common/stock-receipts/stock-receipts-routing.module.d.ts +7 -0
- package/lib/inventory-common/stock-receipts/stock-receipts.module.d.ts +20 -0
- package/lib/inventory-common/stock-summary.service.d.ts +14 -0
- package/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.d.ts +20 -0
- package/lib/inventory-common/supplier/payee-selector/payee-selector.module.d.ts +11 -0
- package/lib/inventory-common/supplier/supplier-form/supplier-form.component.d.ts +29 -0
- package/lib/inventory-common/supplier/supplier-form/supplier-form.service.d.ts +7 -0
- package/lib/inventory-common/supplier/supplier-information/supplier-information.component.d.ts +18 -0
- package/lib/inventory-common/supplier/supplier-routing.module.d.ts +7 -0
- package/lib/inventory-common/supplier/supplier-type.service.d.ts +13 -0
- package/lib/inventory-common/supplier/supplier-view/supplier-view.component.d.ts +20 -0
- package/lib/inventory-common/supplier/supplier.component.d.ts +10 -0
- package/lib/inventory-common/supplier/supplier.module.d.ts +18 -0
- package/lib/inventory-common/supplier/supplier.service.d.ts +39 -0
- package/lib/inventory-common/supplier/suppliers-list/suppliers-list.component.d.ts +51 -0
- package/lib/inventory-common/techlify-filter/techlify-filter.component.d.ts +31 -0
- package/lib/inventory-common/techlify-filter/techlify-filter.module.d.ts +11 -0
- package/package.json +25 -0
- package/public-api.d.ts +5 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stock-receipt-form/stock-receipt-form.component";
|
|
3
|
+
import * as i2 from "./stock-receipt-form-button/stock-receipt-form-button.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/tooltip";
|
|
6
|
+
import * as i5 from "@angular/material/dialog";
|
|
7
|
+
import * as i6 from "../../supplier/payee-selector/payee-selector.module";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/material/form-field";
|
|
10
|
+
import * as i9 from "@angular/material/input";
|
|
11
|
+
import * as i10 from "@angular/material/datepicker";
|
|
12
|
+
import * as i11 from "@angular/material/button";
|
|
13
|
+
export declare class StockReceiptFormModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StockReceiptFormModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StockReceiptFormModule, [typeof i1.StockReceiptFormComponent, typeof i2.StockReceiptFormButtonComponent], [typeof i3.CommonModule, typeof i4.MatTooltipModule, typeof i5.MatDialogModule, typeof i6.PayeeSelectorModule, typeof i7.ReactiveFormsModule, typeof i8.MatFormFieldModule, typeof i9.MatInputModule, typeof i10.MatDatepickerModule, typeof i11.MatButtonModule], [typeof i2.StockReceiptFormButtonComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StockReceiptFormModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { HttpService, TechlifyServiceBaseClass } from "ngx-techlify-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class StockReceiptService extends TechlifyServiceBaseClass {
|
|
4
|
+
constructor(httpService: HttpService);
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StockReceiptService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StockReceiptService>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { RequestHelperService, TechlifyListingControllerInterface } from "ngx-techlify-core";
|
|
3
|
+
import { StockReceiptService } from "../stock-receipt.service";
|
|
4
|
+
import { FormBuilder } from "@angular/forms";
|
|
5
|
+
import { Sort } from "@angular/material/sort";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class StockReceiptsListPageComponent extends TechlifyListingControllerInterface implements OnInit {
|
|
8
|
+
private stockReceiptService;
|
|
9
|
+
private formBuilder;
|
|
10
|
+
private requestHelperService;
|
|
11
|
+
product: any;
|
|
12
|
+
listUpdated: EventEmitter<any>;
|
|
13
|
+
displayedColumns: string[];
|
|
14
|
+
filterConfig: any;
|
|
15
|
+
constructor(stockReceiptService: StockReceiptService, formBuilder: FormBuilder, requestHelperService: RequestHelperService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
loadData(): void;
|
|
18
|
+
onSortChange(sort: Sort): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StockReceiptsListPageComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StockReceiptsListPageComponent, "app-stock-receipts-list-page", never, { "product": { "alias": "product"; "required": false; }; }, { "listUpdated": "listUpdated"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class StockReceiptsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StockReceiptsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StockReceiptsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StockReceiptsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stock-receipts-list-page/stock-receipts-list-page.component";
|
|
3
|
+
import * as i2 from "./stock-receipt-delete-button/stock-receipt-delete-button.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "./stock-receipts-routing.module";
|
|
6
|
+
import * as i5 from "@angular/material/card";
|
|
7
|
+
import * as i6 from "../techlify-filter/techlify-filter.module";
|
|
8
|
+
import * as i7 from "@angular/material/table";
|
|
9
|
+
import * as i8 from "@angular/material/form-field";
|
|
10
|
+
import * as i9 from "ngx-techlify-core";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "../supplier/payee-selector/payee-selector.module";
|
|
13
|
+
import * as i12 from "@angular/material/progress-bar";
|
|
14
|
+
import * as i13 from "ngx-infinite-scroll";
|
|
15
|
+
import * as i14 from "./stock-receipt-form/stock-receipt-form.module";
|
|
16
|
+
export declare class StockReceiptsModule {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StockReceiptsModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StockReceiptsModule, [typeof i1.StockReceiptsListPageComponent, typeof i2.StockReceiptDeleteButtonComponent], [typeof i3.CommonModule, typeof i4.StockReceiptsRoutingModule, typeof i5.MatCardModule, typeof i6.TechlifyFilterModule, typeof i7.MatTableModule, typeof i8.MatFormFieldModule, typeof i9.SearchableSelectorModule, typeof i9.TimelineFilterModule, typeof i10.ReactiveFormsModule, typeof i11.PayeeSelectorModule, typeof i12.MatProgressBarModule, typeof i13.InfiniteScrollModule, typeof i9.MaterialModule, typeof i14.StockReceiptFormModule], [typeof i2.StockReceiptDeleteButtonComponent, typeof i1.StockReceiptsListPageComponent]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StockReceiptsModule>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpService } from "ngx-techlify-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class StockSummaryService {
|
|
4
|
+
private httpService;
|
|
5
|
+
constructor(httpService: HttpService);
|
|
6
|
+
/**
|
|
7
|
+
* Get the stocks summary.
|
|
8
|
+
*
|
|
9
|
+
* @param params
|
|
10
|
+
*/
|
|
11
|
+
summary(params?: any): import("rxjs").Observable<Object>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StockSummaryService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StockSummaryService>;
|
|
14
|
+
}
|
package/lib/inventory-common/supplier/payee-selector/payee-selector/payee-selector.component.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
+
import { SupplierFormComponent } from "../../supplier-form/supplier-form.component";
|
|
3
|
+
import { MatFormFieldAppearance } from "@angular/material/form-field";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PayeeSelectorComponent implements ControlValueAccessor {
|
|
6
|
+
label: string;
|
|
7
|
+
appearance: MatFormFieldAppearance;
|
|
8
|
+
required: boolean;
|
|
9
|
+
showAddButton: boolean;
|
|
10
|
+
multiple: boolean;
|
|
11
|
+
value: any;
|
|
12
|
+
onChange: any;
|
|
13
|
+
onTouch: any;
|
|
14
|
+
writeValue(value: any): void;
|
|
15
|
+
registerOnChange(fn: any): void;
|
|
16
|
+
registerOnTouched(fn: any): void;
|
|
17
|
+
protected readonly SupplierFormComponent: typeof SupplierFormComponent;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PayeeSelectorComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PayeeSelectorComponent, "app-payee-selector", never, { "label": { "alias": "label"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./payee-selector/payee-selector.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/form-field";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "ngx-techlify-core";
|
|
7
|
+
export declare class PayeeSelectorModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PayeeSelectorModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PayeeSelectorModule, [typeof i1.PayeeSelectorComponent], [typeof i2.CommonModule, typeof i3.MatFormFieldModule, typeof i4.ReactiveFormsModule, typeof i5.SearchableSelectorModule, typeof i4.FormsModule], [typeof i1.PayeeSelectorComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PayeeSelectorModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SupplierService } from "./../supplier.service";
|
|
2
|
+
import { OnInit } from "@angular/core";
|
|
3
|
+
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
4
|
+
import { MatDialogRef } from "@angular/material/dialog";
|
|
5
|
+
import { NgxSpinnerService } from "ngx-spinner";
|
|
6
|
+
import { AlertService, ErrorHandlerService, FormValidatorService, TechlifyFormComponentInterface } from "ngx-techlify-core";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SupplierFormComponent extends TechlifyFormComponentInterface implements OnInit {
|
|
9
|
+
private fb;
|
|
10
|
+
private alertService;
|
|
11
|
+
private spinnerService;
|
|
12
|
+
dialogRef: MatDialogRef<SupplierFormComponent>;
|
|
13
|
+
private errorService;
|
|
14
|
+
data: any;
|
|
15
|
+
private supplierService;
|
|
16
|
+
errorMessages: any;
|
|
17
|
+
isWorking: boolean;
|
|
18
|
+
isUpdateMode: boolean;
|
|
19
|
+
supplierForm: FormGroup;
|
|
20
|
+
constructor(fb: FormBuilder, formValidatorService: FormValidatorService, alertService: AlertService, spinnerService: NgxSpinnerService, dialogRef: MatDialogRef<SupplierFormComponent>, errorService: ErrorHandlerService, data: any, supplierService: SupplierService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
submit(): Promise<void>;
|
|
23
|
+
/**Method to evaluate form fields*/
|
|
24
|
+
isFieldValid(field: string): any;
|
|
25
|
+
/**Method to find error in form fields*/
|
|
26
|
+
getErrorMessage(field: string): any;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierFormComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupplierFormComponent, "app-supplier-form", never, {}, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import TechlifyFormService from '../../services/techlify-form-service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SupplierFormService extends TechlifyFormService {
|
|
4
|
+
constructor();
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierFormService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SupplierFormService>;
|
|
7
|
+
}
|
package/lib/inventory-common/supplier/supplier-information/supplier-information.component.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AlertService, ErrorHandlerService } from "ngx-techlify-core";
|
|
2
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
3
|
+
import { SupplierService } from "../supplier.service";
|
|
4
|
+
import { Router } from "@angular/router";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SupplierInformationComponent {
|
|
7
|
+
private dialog;
|
|
8
|
+
private supplierService;
|
|
9
|
+
private alertService;
|
|
10
|
+
private router;
|
|
11
|
+
private errorService;
|
|
12
|
+
supplier: any;
|
|
13
|
+
constructor(dialog: MatDialog, supplierService: SupplierService, alertService: AlertService, router: Router, errorService: ErrorHandlerService);
|
|
14
|
+
modifySupplier(model?: any): void;
|
|
15
|
+
deleteSupplier(id: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierInformationComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupplierInformationComponent, "app-supplier-information", never, { "supplier": { "alias": "supplier"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class SupplierRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SupplierRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SupplierRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpService } from "ngx-techlify-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SupplierTypeService {
|
|
4
|
+
private httpService;
|
|
5
|
+
constructor(httpService: HttpService);
|
|
6
|
+
/**
|
|
7
|
+
* get all suppliers from API
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
index(): import("rxjs").Observable<Object>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierTypeService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SupplierTypeService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { ActivatedRoute, Router } from "@angular/router";
|
|
3
|
+
import { SupplierService } from "../supplier.service";
|
|
4
|
+
import { MatTabChangeEvent } from "@angular/material/tabs";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SupplierViewComponent implements OnInit {
|
|
7
|
+
private supplierService;
|
|
8
|
+
private route;
|
|
9
|
+
private router;
|
|
10
|
+
supplier: any;
|
|
11
|
+
supplierId: number;
|
|
12
|
+
selectedTabIndex: number;
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
constructor(supplierService: SupplierService, route: ActivatedRoute, router: Router);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
onTabChange(event: MatTabChangeEvent): void;
|
|
17
|
+
getSupplier(id: number): Promise<void>;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierViewComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupplierViewComponent, "app-supplier-view", never, {}, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
2
|
+
import { SupplierFormService } from "./supplier-form/supplier-form.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SupplierComponent {
|
|
5
|
+
dialog: MatDialog;
|
|
6
|
+
private supplierFormService;
|
|
7
|
+
constructor(dialog: MatDialog, supplierFormService: SupplierFormService);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupplierComponent, "app-supplier", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./supplier.component";
|
|
3
|
+
import * as i2 from "./supplier-view/supplier-view.component";
|
|
4
|
+
import * as i3 from "./suppliers-list/suppliers-list.component";
|
|
5
|
+
import * as i4 from "./supplier-form/supplier-form.component";
|
|
6
|
+
import * as i5 from "./supplier-information/supplier-information.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "./supplier-routing.module";
|
|
9
|
+
import * as i8 from "../material.module";
|
|
10
|
+
import * as i9 from "ngx-techlify-core";
|
|
11
|
+
import * as i10 from "@angular/flex-layout";
|
|
12
|
+
import * as i11 from "@angular/forms";
|
|
13
|
+
import * as i12 from "ngx-infinite-scroll";
|
|
14
|
+
export declare class SupplierModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SupplierModule, [typeof i1.SupplierComponent, typeof i2.SupplierViewComponent, typeof i3.SuppliersListComponent, typeof i4.SupplierFormComponent, typeof i5.SupplierInformationComponent], [typeof i6.CommonModule, typeof i7.SupplierRoutingModule, typeof i8.MaterialModule, typeof i9.SearchableSelectorModule, typeof i9.AuditLogForModelModule, typeof i9.NoteModule, typeof i10.FlexModule, typeof i11.ReactiveFormsModule, typeof i12.InfiniteScrollModule], never>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SupplierModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { HttpService } from "ngx-techlify-core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SupplierService {
|
|
4
|
+
private httpService;
|
|
5
|
+
constructor(httpService: HttpService);
|
|
6
|
+
/**
|
|
7
|
+
* get all suppliers from API
|
|
8
|
+
*
|
|
9
|
+
* @param filters Any attributes to filter suppliers by
|
|
10
|
+
*/
|
|
11
|
+
index(filters?: any): import("rxjs").Observable<Object>;
|
|
12
|
+
/**
|
|
13
|
+
* get individual supplier from API (for view page)
|
|
14
|
+
*
|
|
15
|
+
* @param id ID of the supplier being requested
|
|
16
|
+
*/
|
|
17
|
+
show(id: any): import("rxjs").Observable<Object>;
|
|
18
|
+
/**
|
|
19
|
+
* store a new supplier in the DB
|
|
20
|
+
*
|
|
21
|
+
* @param model data from the supplier form that will be stored in the DB
|
|
22
|
+
*/
|
|
23
|
+
store(model: any): import("rxjs").Observable<Object>;
|
|
24
|
+
/**
|
|
25
|
+
* update a supplier in the DB
|
|
26
|
+
*
|
|
27
|
+
* @param model.id ID of the supplier being updated
|
|
28
|
+
* @param model data from the supplier form that will be updated in the DB
|
|
29
|
+
*/
|
|
30
|
+
update(model: any): import("rxjs").Observable<Object>;
|
|
31
|
+
/**
|
|
32
|
+
* delete a supplier from the DB
|
|
33
|
+
*
|
|
34
|
+
* @param id ID of the supplier being deleted
|
|
35
|
+
*/
|
|
36
|
+
destroy(id: number): import("rxjs").Observable<Object>;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupplierService, never>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SupplierService>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { FormGroup, FormBuilder } from "@angular/forms";
|
|
3
|
+
import { MatDialog } from "@angular/material/dialog";
|
|
4
|
+
import { MatTableDataSource } from "@angular/material/table";
|
|
5
|
+
import { ActivatedRoute } from "@angular/router";
|
|
6
|
+
import { NgxSpinnerService } from "ngx-spinner";
|
|
7
|
+
import { AlertService, ErrorHandlerService, FilterService, TechlifyListingControllerInterface } from "ngx-techlify-core";
|
|
8
|
+
import { SupplierTypeService } from "../supplier-type.service";
|
|
9
|
+
import { SupplierService } from "../supplier.service";
|
|
10
|
+
import { SupplierFormService } from "../supplier-form/supplier-form.service";
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class SuppliersListComponent extends TechlifyListingControllerInterface implements OnInit {
|
|
13
|
+
private spinner;
|
|
14
|
+
private fb;
|
|
15
|
+
private supplierService;
|
|
16
|
+
private supplierTypeService;
|
|
17
|
+
private errorHandler;
|
|
18
|
+
private filterService;
|
|
19
|
+
private activatedRoute;
|
|
20
|
+
private alertService;
|
|
21
|
+
private dialog;
|
|
22
|
+
private supplierFormService;
|
|
23
|
+
displayedColumns: string[];
|
|
24
|
+
filterFormGroup: FormGroup;
|
|
25
|
+
dataSource: MatTableDataSource<unknown, import("@angular/material/paginator").MatPaginator>;
|
|
26
|
+
totalItems: number;
|
|
27
|
+
currentPage: number;
|
|
28
|
+
routeFilters: any;
|
|
29
|
+
supplierTypes: any;
|
|
30
|
+
isLoading: boolean;
|
|
31
|
+
constructor(spinner: NgxSpinnerService, fb: FormBuilder, supplierService: SupplierService, supplierTypeService: SupplierTypeService, errorHandler: ErrorHandlerService, filterService: FilterService, activatedRoute: ActivatedRoute, alertService: AlertService, dialog: MatDialog, supplierFormService: SupplierFormService);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
listenForChanges(): void;
|
|
34
|
+
patchFiltersFromRoute(): void;
|
|
35
|
+
sortColumn(event: any): void;
|
|
36
|
+
assignFilter(column: any, direction: any): void | undefined;
|
|
37
|
+
getSupplierTypes(): Promise<void>;
|
|
38
|
+
loadData(): Promise<void>;
|
|
39
|
+
reload(): void;
|
|
40
|
+
onScroll(): void;
|
|
41
|
+
editForm(model?: any): void;
|
|
42
|
+
deleteForm(supplier: any): void;
|
|
43
|
+
/**
|
|
44
|
+
* Show the supplier create form.
|
|
45
|
+
*
|
|
46
|
+
* @param model
|
|
47
|
+
*/
|
|
48
|
+
showAddSupplierDialog(model?: any): void;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuppliersListComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuppliersListComponent, "app-suppliers-list", never, {}, {}, never, never, false, never>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { FormGroup } from "@angular/forms";
|
|
3
|
+
import { RequestHelperService, TimelineValue } from "ngx-techlify-core";
|
|
4
|
+
import { ActivatedRoute } from "@angular/router";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TechlifyFilterComponent implements OnInit {
|
|
7
|
+
private requestHelperService;
|
|
8
|
+
private activatedRoute;
|
|
9
|
+
filterForm: FormGroup;
|
|
10
|
+
filterConfig: any;
|
|
11
|
+
filterUpdated: EventEmitter<any>;
|
|
12
|
+
constructor(requestHelperService: RequestHelperService, activatedRoute: ActivatedRoute);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
resetField(field: string): void;
|
|
15
|
+
onDurationChange(timelineValue: TimelineValue): void;
|
|
16
|
+
/**
|
|
17
|
+
* Update expiry date from and date to on value change.
|
|
18
|
+
*
|
|
19
|
+
* @param timelineValue
|
|
20
|
+
*/
|
|
21
|
+
onExpiryDurationChange(timelineValue: TimelineValue): void;
|
|
22
|
+
/**
|
|
23
|
+
* Get the attribute value for the field.
|
|
24
|
+
*
|
|
25
|
+
* @param attribute
|
|
26
|
+
* @param field
|
|
27
|
+
*/
|
|
28
|
+
getFilterConfig(attribute: string, field: string): any;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TechlifyFilterComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TechlifyFilterComponent, "app-techlify-filter", never, { "filterForm": { "alias": "filterForm"; "required": false; }; "filterConfig": { "alias": "filterConfig"; "required": false; }; }, { "filterUpdated": "filterUpdated"; }, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./techlify-filter.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/flex-layout";
|
|
6
|
+
import * as i5 from "ngx-techlify-core";
|
|
7
|
+
export declare class TechlifyFilterModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TechlifyFilterModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TechlifyFilterModule, [typeof i1.TechlifyFilterComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.FlexLayoutModule, typeof i5.SearchableSelectorModule, typeof i5.TimelineFilterModule, typeof i5.MaterialModule], [typeof i1.TechlifyFilterComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TechlifyFilterModule>;
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "techlify-inventory-common",
|
|
3
|
+
"version": "18.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^18.2.0",
|
|
6
|
+
"@angular/core": "^18.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"module": "fesm2022/techlify-inventory-common.mjs",
|
|
13
|
+
"typings": "index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
"./package.json": {
|
|
16
|
+
"default": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./index.d.ts",
|
|
20
|
+
"esm2022": "./esm2022/techlify-inventory-common.mjs",
|
|
21
|
+
"esm": "./esm2022/techlify-inventory-common.mjs",
|
|
22
|
+
"default": "./fesm2022/techlify-inventory-common.mjs"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './lib/inventory-common/inventory-common-routing.module';
|
|
2
|
+
export * from './lib/inventory-common/inventory-common.module';
|
|
3
|
+
export * from './lib/inventory-common/stock-summary.service';
|
|
4
|
+
export * from './lib/inventory-common/techlify-filter/techlify-filter.module';
|
|
5
|
+
export * from './lib/inventory-common/techlify-filter/techlify-filter.component';
|