@colijnit/sharedcomponents 261.20.7 → 261.20.8
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/3rdpartylicenses.txt +3300 -0
- package/browser/chunk-5PPHQWL6.js +5 -0
- package/browser/chunk-FK6H3RFT.js +1 -0
- package/browser/chunk-H5HZ6YB3.js +1 -0
- package/browser/chunk-IZEX6TRK.js +2 -0
- package/browser/chunk-JXHTPMR7.js +5 -0
- package/browser/favicon.ico +0 -0
- package/browser/index.html +13 -0
- package/browser/main-4VLOKMCM.js +287 -0
- package/browser/polyfills-5FDKUQTZ.js +2 -0
- package/browser/styles-Z5R2AUYU.css +1 -0
- package/fesm2022/colijnit-sharedcomponents.mjs +280 -251
- package/fesm2022/colijnit-sharedcomponents.mjs.map +1 -1
- package/index.d.ts +10 -5
- package/package.json +1 -1
- package/prerendered-routes.json +3 -0
package/index.d.ts
CHANGED
|
@@ -970,7 +970,7 @@ declare class StockLocationPopupComponent {
|
|
|
970
970
|
stockBelow: boolean;
|
|
971
971
|
validationMessage: string;
|
|
972
972
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|
|
973
|
-
statusForId(id: number):
|
|
973
|
+
statusForId(id: number): StockStatus | 0;
|
|
974
974
|
handleStockStatusChange(status: StockStatus): void;
|
|
975
975
|
handleStockStatusRemarkChange(remark: string): void;
|
|
976
976
|
amountInStockChanged(data: any): void;
|
|
@@ -978,7 +978,7 @@ declare class StockLocationPopupComponent {
|
|
|
978
978
|
handleOkClick(): void;
|
|
979
979
|
togglePopup(): void;
|
|
980
980
|
getStockLocations(): void;
|
|
981
|
-
locationForNumber(number: string):
|
|
981
|
+
locationForNumber(number: string): StockLocation | "";
|
|
982
982
|
locationChanged(event: StockLocation): void;
|
|
983
983
|
handleStockChange(): void;
|
|
984
984
|
newDate(): Date;
|
|
@@ -2948,6 +2948,7 @@ declare class ActivityListComponent implements OnInit, ScreenConfigAdapterCompon
|
|
|
2948
2948
|
getRelationKind(author: RelationSmallObject): RelationKind;
|
|
2949
2949
|
getDateString(date: Date): string;
|
|
2950
2950
|
getActivityIcon(activity: Activity): Icon;
|
|
2951
|
+
getActivityClass(activity: Activity): string;
|
|
2951
2952
|
showTriggers(activity: Activity): boolean;
|
|
2952
2953
|
showAttachments(activity: Activity): boolean;
|
|
2953
2954
|
showEmailHistory(activity: Activity): boolean;
|
|
@@ -3362,11 +3363,14 @@ declare class ComponentActivityOverviewComponent extends BaseActivityOverviewCom
|
|
|
3362
3363
|
taskIcon: Icon;
|
|
3363
3364
|
branchNo: string;
|
|
3364
3365
|
showClass(): boolean;
|
|
3366
|
+
handleDocumentClick(): void;
|
|
3367
|
+
taskBoxActive: boolean;
|
|
3365
3368
|
private activityColorMap;
|
|
3366
3369
|
constructor(iconCacheService: IconCacheService, dialogService: CoreDialogService, dictionaryService: SharedComponentsDictionaryService, sharedService: SharedService);
|
|
3367
3370
|
getActivityIcon(activity: Activity): Icon;
|
|
3368
3371
|
getRandomColor(): string;
|
|
3369
3372
|
getColorForActivity(activity: Activity): string;
|
|
3373
|
+
handleOpenTasks(event: MouseEvent): void;
|
|
3370
3374
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentActivityOverviewComponent, never>;
|
|
3371
3375
|
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentActivityOverviewComponent, "co-component-activity-overview", never, { "remarkIcon": { "alias": "remarkIcon"; "required": false; }; "workIcon": { "alias": "workIcon"; "required": false; }; "statusIcon": { "alias": "statusIcon"; "required": false; }; "taskIcon": { "alias": "taskIcon"; "required": false; }; "branchNo": { "alias": "branchNo"; "required": false; }; }, {}, never, never, false, never>;
|
|
3372
3376
|
}
|
|
@@ -3419,14 +3423,15 @@ declare class ComponentActivityListComponent extends BaseActivityListComponent i
|
|
|
3419
3423
|
constructor(sharedService: SharedService);
|
|
3420
3424
|
ngOnInit(): Promise<void>;
|
|
3421
3425
|
ngOnDestroy(): void;
|
|
3426
|
+
refreshActivities(): Promise<void>;
|
|
3422
3427
|
getActivities(): Promise<void>;
|
|
3423
3428
|
set activitiesList(allActivities: Activity[]);
|
|
3424
3429
|
get activitiesList(): Activity[];
|
|
3425
3430
|
getDelegatedActivities(): Promise<void>;
|
|
3426
3431
|
showUsergroupActivitiesChange(): void;
|
|
3427
|
-
handleTriggerFired(activity: Activity): void
|
|
3428
|
-
handleGenericTriggerFired(activity: Activity): void
|
|
3429
|
-
handleFormTriggerFired(): void
|
|
3432
|
+
handleTriggerFired(activity: Activity): Promise<void>;
|
|
3433
|
+
handleGenericTriggerFired(activity: Activity): Promise<void>;
|
|
3434
|
+
handleFormTriggerFired(): Promise<void>;
|
|
3430
3435
|
handleFormCreation(): void;
|
|
3431
3436
|
handleChangedActivity(idx: number, activity: Activity): void;
|
|
3432
3437
|
deleteActivity(activity: Activity): void;
|
package/package.json
CHANGED