@colijnit/sharedcomponents 261.20.1 → 261.20.2
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/fesm2022/colijnit-sharedcomponents.mjs +536 -497
- package/fesm2022/colijnit-sharedcomponents.mjs.map +1 -1
- package/index.d.ts +10 -1
- package/package.json +1 -1
- package/3rdpartylicenses.txt +0 -3327
- package/browser/chunk-H5HZ6YB3.js +0 -1
- package/browser/chunk-JXHTPMR7.js +0 -5
- package/browser/chunk-KTNFH73E.js +0 -5
- package/browser/chunk-ZGRJSZN6.js +0 -2
- package/browser/favicon.ico +0 -0
- package/browser/index.html +0 -13
- package/browser/main-AKBSJVK6.js +0 -287
- package/browser/polyfills-5FDKUQTZ.js +0 -2
- package/browser/styles-S3SWDQ4V.css +0 -1
- package/prerendered-routes.json +0 -3
package/index.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ import { Form } from '@colijnit/mainapi/build/model/form.bo';
|
|
|
56
56
|
import { FormResponse } from '@colijnit/mainapi/build/model/form-response.bo';
|
|
57
57
|
import { SafeHtml, DomSanitizer } from '@angular/platform-browser';
|
|
58
58
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
59
|
-
import { BaseModuleScreenConfigService, CoreDialogService, OverlayService, ScreenConfigAdapterComponent, FormComponent, PromptService, FormMasterService, IconCacheService as IconCacheService$1, ColorSequenceService, IconListItem } from '@colijnit/corecomponents_v12';
|
|
59
|
+
import { BaseModuleScreenConfigService, SimpleGridColumnTemplateType, CoreDialogService, OverlayService, ScreenConfigAdapterComponent, FormComponent, PromptService, FormMasterService, IconCacheService as IconCacheService$1, ColorSequenceService, IconListItem } from '@colijnit/corecomponents_v12';
|
|
60
60
|
import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.enum';
|
|
61
61
|
import { PrintStockStickers as PrintStockStickers$1 } from '@colijnit/articleapi/build/model/print-stock-stickers';
|
|
62
62
|
import { PrintPriceStickers } from '@colijnit/sharedapi/build/model/print-price-stickers.bo';
|
|
@@ -699,6 +699,7 @@ declare enum SharedCfgName {
|
|
|
699
699
|
|
|
700
700
|
declare class StockTabComponent {
|
|
701
701
|
readonly sharedCfgName: typeof SharedCfgName;
|
|
702
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
702
703
|
articleStockInformation: ArticleStock$1[];
|
|
703
704
|
locationClicked: EventEmitter<string>;
|
|
704
705
|
onLocationClick(data: ArticleStock$1): void;
|
|
@@ -806,6 +807,7 @@ declare class StockLocationComponent extends BaseStockComponent implements OnIni
|
|
|
806
807
|
private _stockService;
|
|
807
808
|
private _changeDetector;
|
|
808
809
|
readonly icons: typeof Icon;
|
|
810
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
809
811
|
set warehouseNo(value: number);
|
|
810
812
|
get warehouseNo(): number;
|
|
811
813
|
articleStockInformation: ArticleStock$1[];
|
|
@@ -867,6 +869,7 @@ declare class StockHistoryComponent extends BaseStockComponent {
|
|
|
867
869
|
iconCacheService: IconCacheService;
|
|
868
870
|
private _stockService;
|
|
869
871
|
readonly icons: typeof Icon;
|
|
872
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
870
873
|
stockHistoryInformation: StockHistoryBo[];
|
|
871
874
|
articleGoodId: string;
|
|
872
875
|
data: StockHistoryBo[];
|
|
@@ -879,6 +882,7 @@ declare class StockHistoryComponent extends BaseStockComponent {
|
|
|
879
882
|
declare class OrderSupplyStockHistoryComponent extends BaseStockComponent {
|
|
880
883
|
private _stockService;
|
|
881
884
|
readonly icons: typeof Icon;
|
|
885
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
882
886
|
data: StockHistoryBo[];
|
|
883
887
|
constructor(_stockService: StockService);
|
|
884
888
|
protected getData(): Promise<void>;
|
|
@@ -889,6 +893,7 @@ declare class OrderSupplyStockHistoryComponent extends BaseStockComponent {
|
|
|
889
893
|
declare class OrderCommissionStockHistoryComponent extends BaseStockComponent {
|
|
890
894
|
private _stockService;
|
|
891
895
|
readonly icons: typeof Icon;
|
|
896
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
892
897
|
data: StockHistoryBo[];
|
|
893
898
|
constructor(_stockService: StockService);
|
|
894
899
|
protected getData(): Promise<void>;
|
|
@@ -899,6 +904,7 @@ declare class OrderCommissionStockHistoryComponent extends BaseStockComponent {
|
|
|
899
904
|
declare class OrderStockHistoryComponent extends BaseStockComponent {
|
|
900
905
|
private _stockService;
|
|
901
906
|
readonly icons: typeof Icon;
|
|
907
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
902
908
|
data: StockHistoryBo[];
|
|
903
909
|
constructor(_stockService: StockService);
|
|
904
910
|
protected getData(): Promise<void>;
|
|
@@ -916,6 +922,7 @@ declare class AllocationStockHistoryComponent extends BaseStockComponent {
|
|
|
916
922
|
private _stockService;
|
|
917
923
|
sharedEventService: SharedEventService;
|
|
918
924
|
readonly icons: typeof Icon;
|
|
925
|
+
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
919
926
|
data: StockHistoryBo[];
|
|
920
927
|
constructor(_stockService: StockService, sharedEventService: SharedEventService);
|
|
921
928
|
protected getData(): Promise<void>;
|
|
@@ -961,6 +968,7 @@ declare class StockLocationPopupComponent {
|
|
|
961
968
|
stockLocations: StockLocation[];
|
|
962
969
|
stockStatus: StockStatus[];
|
|
963
970
|
stockBelow: boolean;
|
|
971
|
+
validationMessage: string;
|
|
964
972
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|
|
965
973
|
statusForId(id: number): 0 | StockStatus;
|
|
966
974
|
handleStockStatusChange(status: StockStatus): void;
|
|
@@ -974,6 +982,7 @@ declare class StockLocationPopupComponent {
|
|
|
974
982
|
locationChanged(event: StockLocation): void;
|
|
975
983
|
handleStockChange(): void;
|
|
976
984
|
newDate(): Date;
|
|
985
|
+
private validateForm;
|
|
977
986
|
static ɵfac: i0.ɵɵFactoryDeclaration<StockLocationPopupComponent, never>;
|
|
978
987
|
static ɵcmp: i0.ɵɵComponentDeclaration<StockLocationPopupComponent, "co-stock-location-popup", never, { "editingRow": { "alias": "editingRow"; "required": false; }; "showConfirmationDialog": { "alias": "showConfirmationDialog"; "required": false; }; "newStockLine": { "alias": "newStockLine"; "required": false; }; "deleteStockLine": { "alias": "deleteStockLine"; "required": false; }; "selectedArticleDetailsData": { "alias": "selectedArticleDetailsData"; "required": false; }; "articleFlat": { "alias": "articleFlat"; "required": false; }; "articleDetailsInformation": { "alias": "articleDetailsInformation"; "required": false; }; "selectedWarehouse": { "alias": "selectedWarehouse"; "required": false; }; "selectedLocationNo": { "alias": "selectedLocationNo"; "required": false; }; "articleStockInfo": { "alias": "articleStockInfo"; "required": false; }; "stockLocations": { "alias": "stockLocations"; "required": false; }; "stockStatus": { "alias": "stockStatus"; "required": false; }; }, { "togglePopupEvent": "togglePopupEvent"; "saveEvent": "saveEvent"; "updateGridData": "updateGridData"; }, never, never, false, never>;
|
|
979
988
|
}
|