@colijnit/sharedcomponents 262.1.6 → 262.1.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/fesm2022/colijnit-sharedcomponents.mjs +3749 -490
- package/fesm2022/colijnit-sharedcomponents.mjs.map +1 -1
- package/index.d.ts +615 -14
- package/lib/components/activity-timeline/style/_layout.scss +60 -0
- package/lib/components/activity-timeline/style/_material-definition.scss +9 -0
- package/lib/components/activity-timeline/style/_theme.scss +4 -0
- package/lib/components/activity-timeline/style/material.scss +4 -0
- package/lib/components/avatar/style/_layout.scss +4 -0
- package/lib/components/avatar/style/_material-definition.scss +0 -0
- package/lib/components/avatar/style/_theme.scss +4 -0
- package/lib/components/avatar/style/material.scss +4 -0
- package/lib/components/input-calculation-key/style/_layout.scss +4 -0
- package/lib/components/input-calculation-key/style/_material-definition.scss +0 -0
- package/lib/components/input-calculation-key/style/_theme.scss +4 -0
- package/lib/components/input-calculation-key/style/material.scss +4 -0
- package/lib/components/input-duration/style/_layout.scss +5 -0
- package/lib/components/input-duration/style/_material-definition.scss +0 -0
- package/lib/components/input-duration/style/_theme.scss +4 -0
- package/lib/components/input-duration/style/material.scss +4 -0
- package/lib/components/input-search-employee/style/_layout.scss +4 -0
- package/lib/components/input-search-employee/style/_material-definition.scss +0 -0
- package/lib/components/input-search-employee/style/_theme.scss +4 -0
- package/lib/components/input-search-employee/style/material.scss +4 -0
- package/lib/components/task-modifyer/style/_layout.scss +22 -2
- package/lib/components/timeline/style/_layout.scss +71 -0
- package/lib/components/timeline/style/_material-definition.scss +22 -0
- package/lib/components/timeline/style/_theme.scss +4 -0
- package/lib/components/timeline/style/material.scss +4 -0
- package/package.json +1 -1
- package/lib/components/search-presets/js-preset files/search-preset-overview.component.scss +0 -11
- package/lib/components/search-presets/js-preset files/search-preset-save-dialog.component.scss +0 -23
- package/lib/components/search-presets/js-preset files/search-presets-pinned.component.scss +0 -57
package/index.d.ts
CHANGED
|
@@ -21,7 +21,6 @@ import { BehaviorSubject, Subject } from 'rxjs';
|
|
|
21
21
|
import { LanguageCode as LanguageCode$1 } from '@colijnit/ioneconnector/build/enum/language-code.enum';
|
|
22
22
|
import { MainApi } from '@colijnit/mainapi';
|
|
23
23
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
24
|
-
import { DataServiceResponseData } from '@colijnit/ioneconnector/build/model/data-service-response-data';
|
|
25
24
|
import { SendMethod as SendMethod$1 } from '@colijnit/mainapi/build/model/send-method.bo';
|
|
26
25
|
import { StockForecast } from '@colijnit/articleapi/build/model/stock-forecast.bo';
|
|
27
26
|
import { TagCategory as TagCategory$1 } from '@colijnit/mainapi/build/enum/tab-category.enum';
|
|
@@ -54,9 +53,10 @@ import { ActivityWorkflow } from '@colijnit/mainapi/build/model/activity-workflo
|
|
|
54
53
|
import { EmailActivityRequest } from '@colijnit/mainapi/build/model/email-activity-request';
|
|
55
54
|
import { Form } from '@colijnit/mainapi/build/model/form.bo';
|
|
56
55
|
import { FormResponse } from '@colijnit/mainapi/build/model/form-response.bo';
|
|
56
|
+
import { SequenceName } from '@colijnit/mainapi/build/enum/sequence-name.enum';
|
|
57
57
|
import { SafeHtml, DomSanitizer } from '@angular/platform-browser';
|
|
58
58
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
59
|
-
import { BaseModuleScreenConfigService, SimpleGridColumnTemplateType, 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, ColorSequenceName, InputTextComponent } 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';
|
|
@@ -99,6 +99,10 @@ import { FormQuestionType } from '@colijnit/mainapi/build/enum/form-question.typ
|
|
|
99
99
|
import { FormQuestion } from '@colijnit/mainapi/build/model/form-question.bo';
|
|
100
100
|
import { FormQuestionAnswer } from '@colijnit/mainapi/build/model/form-question-answer.bo';
|
|
101
101
|
import { FormQuestionResponse } from '@colijnit/mainapi/build/model/form-question-response.bo';
|
|
102
|
+
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
103
|
+
import { RelationKind as RelationKind$1 } from '@colijnit/mainapi/build/enum/relation-kind';
|
|
104
|
+
import { ObjectConfigurationDefaultValueType } from '@colijnit/ioneconnector/build/type/object-configuration-default-value-type';
|
|
105
|
+
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
102
106
|
import { Options } from '@colijnit/ioneconnector/build/model/options';
|
|
103
107
|
|
|
104
108
|
interface TextDimension {
|
|
@@ -283,6 +287,7 @@ declare class SharedConnectorService {
|
|
|
283
287
|
constructor(_optionsService: OptionsService);
|
|
284
288
|
connect(): Promise<void>;
|
|
285
289
|
getConfiguration(module: string, params: string[]): Promise<ObjectConfiguration[]>;
|
|
290
|
+
getSequenceValue(seq: SequenceName): Promise<number>;
|
|
286
291
|
getAllPrinters(): Promise<Printer[]>;
|
|
287
292
|
getDefaultPrinter(reportId: number, layoutCode: string): Promise<string>;
|
|
288
293
|
getSendMethods(): Promise<SendMethod$1[]>;
|
|
@@ -337,7 +342,7 @@ declare class SharedConnectorService {
|
|
|
337
342
|
updateFormResponse(formResponse: FormResponse): Promise<FormResponse>;
|
|
338
343
|
lockFormResponse(formResponseId: number): Promise<boolean>;
|
|
339
344
|
unlockFormResponse(formResponseId: number): Promise<boolean>;
|
|
340
|
-
commit(): Promise<
|
|
345
|
+
commit(): Promise<boolean>;
|
|
341
346
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedConnectorService, never>;
|
|
342
347
|
static ɵprov: i0.ɵɵInjectableDeclaration<SharedConnectorService>;
|
|
343
348
|
}
|
|
@@ -372,7 +377,7 @@ declare class StockService {
|
|
|
372
377
|
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransaction$1[]>;
|
|
373
378
|
stockPrognose(goodId: number, warehouseNumber: number): Promise<StockForecast[]>;
|
|
374
379
|
lockArticleDetails(data: ArticleStockManagement): Promise<boolean>;
|
|
375
|
-
commit(): Promise<
|
|
380
|
+
commit(): Promise<boolean>;
|
|
376
381
|
getArticleFlat(sku: string): Promise<ArticleFlat>;
|
|
377
382
|
searchArticles(request: ArticleExtendedRequest): Promise<ArticleExtended[]>;
|
|
378
383
|
static ɵfac: i0.ɵɵFactoryDeclaration<StockService, never>;
|
|
@@ -403,6 +408,8 @@ declare enum Icon {
|
|
|
403
408
|
CheckRound = "check_round",
|
|
404
409
|
CheckSolid = "check_solid",
|
|
405
410
|
ChevronRightRegular = "chevron_right_regular",
|
|
411
|
+
CircleCheckRegular = "circle_check_regular",
|
|
412
|
+
ClockArrow = "clock_arrow",
|
|
406
413
|
ClockRegular = "clock_regular",
|
|
407
414
|
CommentRegular = "comment_regular",
|
|
408
415
|
CrossSkinny = "cross_skinny",
|
|
@@ -444,6 +451,7 @@ declare enum Icon {
|
|
|
444
451
|
PrintRegular = "print_regular",
|
|
445
452
|
PrintSolid = "print_solid",
|
|
446
453
|
RegularFileSignatureCirclePlus = "regular_file_signature_circle_plus",
|
|
454
|
+
RemarkRoundOpen = "remark_round_open",
|
|
447
455
|
ShareSolid = "share_solid",
|
|
448
456
|
SignatureField = "signature_field",
|
|
449
457
|
SolidBarcodeReadTag = "solid_barcode_read_tag",
|
|
@@ -452,6 +460,8 @@ declare enum Icon {
|
|
|
452
460
|
Task = "task",
|
|
453
461
|
Trashbin = "trashbin",
|
|
454
462
|
TrashCanRegular = "trash_can_regular",
|
|
463
|
+
WorkInProgress = "work_in_progress",
|
|
464
|
+
WorkInProgressRoundOpen = "work_in_progress_round_open",
|
|
455
465
|
Xml = "xml",
|
|
456
466
|
XSolid = "x_solid"
|
|
457
467
|
}
|
|
@@ -980,7 +990,7 @@ declare class StockLocationPopupComponent {
|
|
|
980
990
|
stockBelow: boolean;
|
|
981
991
|
validationMessage: string;
|
|
982
992
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|
|
983
|
-
statusForId(id: number):
|
|
993
|
+
statusForId(id: number): 0 | StockStatus;
|
|
984
994
|
handleStockStatusChange(status: StockStatus): void;
|
|
985
995
|
handleStockStatusRemarkChange(remark: string): void;
|
|
986
996
|
amountInStockChanged(data: any): void;
|
|
@@ -988,7 +998,7 @@ declare class StockLocationPopupComponent {
|
|
|
988
998
|
handleOkClick(): void;
|
|
989
999
|
togglePopup(): void;
|
|
990
1000
|
getStockLocations(): void;
|
|
991
|
-
locationForNumber(number: string):
|
|
1001
|
+
locationForNumber(number: string): "" | StockLocation;
|
|
992
1002
|
locationChanged(event: StockLocation): void;
|
|
993
1003
|
handleStockChange(): void;
|
|
994
1004
|
newDate(): Date;
|
|
@@ -1112,6 +1122,7 @@ declare class SharedService {
|
|
|
1112
1122
|
constructor(locale: LanguageCode, options: OptionsService, connector: SharedConnectorService, dictionary: SharedComponentsDictionaryService);
|
|
1113
1123
|
init(options: any): Promise<void>;
|
|
1114
1124
|
connect(): Promise<void>;
|
|
1125
|
+
getSequenceValue(seq: SequenceName): Promise<number>;
|
|
1115
1126
|
getAllPrinters(): Promise<Printer[]>;
|
|
1116
1127
|
getDefaultPrinter(reportId: number, layoutCode: string): Promise<string>;
|
|
1117
1128
|
getSendMethods(): Promise<SendMethod$1[]>;
|
|
@@ -1130,6 +1141,7 @@ declare class SharedService {
|
|
|
1130
1141
|
updateActivity(activity: Activity): Promise<boolean>;
|
|
1131
1142
|
deleteActivity(activity: Activity): Promise<boolean>;
|
|
1132
1143
|
lockTask(id: number): Promise<boolean>;
|
|
1144
|
+
commit(): Promise<boolean>;
|
|
1133
1145
|
canFireTrigger(activity: Activity, task: Task): boolean;
|
|
1134
1146
|
fireTrigger(workFlowProcessId: number, sequence: number, triggerId: number): Promise<ValidationResult>;
|
|
1135
1147
|
fireGenericTrigger(workFlowProcessId: number, genericTransitionId: number, relationId: number): Promise<ValidationResult>;
|
|
@@ -1806,14 +1818,20 @@ declare class DatePlanningComponent {
|
|
|
1806
1818
|
readonly eventChecked: EventEmitter<any>;
|
|
1807
1819
|
readonly selectedDateChange: EventEmitter<Date>;
|
|
1808
1820
|
readonly rangeChange: EventEmitter<Date>;
|
|
1809
|
-
readonly viewChange: EventEmitter<
|
|
1821
|
+
readonly viewChange: EventEmitter<{
|
|
1822
|
+
view: CalendarView;
|
|
1823
|
+
date: Date;
|
|
1824
|
+
}>;
|
|
1810
1825
|
readonly buttonClick: EventEmitter<MouseEvent>;
|
|
1811
1826
|
showClass: boolean;
|
|
1812
1827
|
days: Date[];
|
|
1813
1828
|
private _selectedDate;
|
|
1814
1829
|
constructor(_changeDetector: ChangeDetectorRef, renderer: Renderer2);
|
|
1815
1830
|
doChangeSelectedDate(date: Date, rangeChanged?: boolean): void;
|
|
1816
|
-
doChangeView(
|
|
1831
|
+
doChangeView(eventObject: {
|
|
1832
|
+
view: CalendarView;
|
|
1833
|
+
date: Date;
|
|
1834
|
+
}): void;
|
|
1817
1835
|
scrollToDayStart(): void;
|
|
1818
1836
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePlanningComponent, never>;
|
|
1819
1837
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatePlanningComponent, "co-date-planning", never, { "calendarNavigation": { "alias": "calendarNavigation"; "required": false; }; "customEventObject": { "alias": "customEventObject"; "required": false; }; "showButton": { "alias": "showButton"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "firstAvailableDate": { "alias": "firstAvailableDate"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "eventsPerDay": { "alias": "eventsPerDay"; "required": false; }; "view": { "alias": "view"; "required": false; }; "viewSelection": { "alias": "viewSelection"; "required": false; }; }, { "eventChecked": "eventChecked"; "selectedDateChange": "selectedDateChange"; "rangeChange": "rangeChange"; "viewChange": "viewChange"; "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
@@ -1947,7 +1965,10 @@ declare class AgendaHeaderComponent implements OnInit, OnDestroy, AfterContentCh
|
|
|
1947
1965
|
get firstAvailableDate(): Date;
|
|
1948
1966
|
set eventsPerDay(value: AgendaEventPerDay[]);
|
|
1949
1967
|
viewSelection: boolean;
|
|
1950
|
-
viewChange: EventEmitter<
|
|
1968
|
+
viewChange: EventEmitter<{
|
|
1969
|
+
view: CalendarView;
|
|
1970
|
+
date: Date;
|
|
1971
|
+
}>;
|
|
1951
1972
|
selectedDateChange: EventEmitter<Date>;
|
|
1952
1973
|
rangeChange: EventEmitter<Date>;
|
|
1953
1974
|
weekDays: Weekday[];
|
|
@@ -2958,6 +2979,7 @@ declare class ActivityListComponent implements OnInit, ScreenConfigAdapterCompon
|
|
|
2958
2979
|
getRelationKind(author: RelationSmallObject): RelationKind;
|
|
2959
2980
|
getDateString(date: Date): string;
|
|
2960
2981
|
getActivityIcon(activity: Activity): Icon;
|
|
2982
|
+
getActivityClass(activity: Activity): string;
|
|
2961
2983
|
showTriggers(activity: Activity): boolean;
|
|
2962
2984
|
showAttachments(activity: Activity): boolean;
|
|
2963
2985
|
showEmailHistory(activity: Activity): boolean;
|
|
@@ -3238,6 +3260,7 @@ declare class TaskModifierComponent implements OnDestroy {
|
|
|
3238
3260
|
modifyTaskForm: ModifyTaskFormComponent;
|
|
3239
3261
|
notificationBlock: NotificationSummaryBlockComponent;
|
|
3240
3262
|
get readonly(): boolean;
|
|
3263
|
+
taskCfgNames: ActivitiesTaskConfigNames;
|
|
3241
3264
|
workflowCategory: WorkflowCategoryType;
|
|
3242
3265
|
reference: string;
|
|
3243
3266
|
referenceId: string;
|
|
@@ -3287,7 +3310,7 @@ declare class TaskModifierComponent implements OnDestroy {
|
|
|
3287
3310
|
handleTriggerFired(): void;
|
|
3288
3311
|
enableEmailOnNextSave(): void;
|
|
3289
3312
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaskModifierComponent, never>;
|
|
3290
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TaskModifierComponent, "co-task-modifier", never, { "workflowCategory": { "alias": "workflowCategory"; "required": false; }; "reference": { "alias": "reference"; "required": false; }; "referenceId": { "alias": "referenceId"; "required": false; }; "userGroupId": { "alias": "userGroupId"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "branchNo": { "alias": "branchNo"; "required": false; }; "createTaskOperation": { "alias": "createTaskOperation"; "required": false; }; "forceReadonly": { "alias": "forceReadonly"; "required": false; }; }, { "editingComplete": "editingComplete"; "activitySaved": "activitySaved"; "activityDeleted": "activityDeleted"; "closedWithoutComplete": "closedWithoutComplete"; "showWorkLog": "showWorkLog"; "taskCreated": "taskCreated"; "taskModified": "taskModified"; "triggerFired": "triggerFired"; }, never, never, false, never>;
|
|
3313
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TaskModifierComponent, "co-task-modifier", never, { "taskCfgNames": { "alias": "taskCfgNames"; "required": false; }; "workflowCategory": { "alias": "workflowCategory"; "required": false; }; "reference": { "alias": "reference"; "required": false; }; "referenceId": { "alias": "referenceId"; "required": false; }; "userGroupId": { "alias": "userGroupId"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "branchNo": { "alias": "branchNo"; "required": false; }; "createTaskOperation": { "alias": "createTaskOperation"; "required": false; }; "forceReadonly": { "alias": "forceReadonly"; "required": false; }; }, { "editingComplete": "editingComplete"; "activitySaved": "activitySaved"; "activityDeleted": "activityDeleted"; "closedWithoutComplete": "closedWithoutComplete"; "showWorkLog": "showWorkLog"; "taskCreated": "taskCreated"; "taskModified": "taskModified"; "triggerFired": "triggerFired"; }, never, never, false, never>;
|
|
3291
3314
|
}
|
|
3292
3315
|
|
|
3293
3316
|
declare abstract class BaseActivityOverviewComponent {
|
|
@@ -3372,11 +3395,14 @@ declare class ComponentActivityOverviewComponent extends BaseActivityOverviewCom
|
|
|
3372
3395
|
taskIcon: Icon;
|
|
3373
3396
|
branchNo: string;
|
|
3374
3397
|
showClass(): boolean;
|
|
3398
|
+
handleDocumentClick(): void;
|
|
3399
|
+
taskBoxActive: boolean;
|
|
3375
3400
|
private activityColorMap;
|
|
3376
3401
|
constructor(iconCacheService: IconCacheService, dialogService: CoreDialogService, dictionaryService: SharedComponentsDictionaryService, sharedService: SharedService);
|
|
3377
3402
|
getActivityIcon(activity: Activity): Icon;
|
|
3378
3403
|
getRandomColor(): string;
|
|
3379
3404
|
getColorForActivity(activity: Activity): string;
|
|
3405
|
+
handleOpenTasks(event: MouseEvent): void;
|
|
3380
3406
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentActivityOverviewComponent, never>;
|
|
3381
3407
|
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>;
|
|
3382
3408
|
}
|
|
@@ -3432,14 +3458,15 @@ declare class ComponentActivityListComponent extends BaseActivityListComponent i
|
|
|
3432
3458
|
constructor(sharedService: SharedService);
|
|
3433
3459
|
ngOnInit(): Promise<void>;
|
|
3434
3460
|
ngOnDestroy(): void;
|
|
3461
|
+
refreshActivities(): Promise<void>;
|
|
3435
3462
|
getActivities(): Promise<void>;
|
|
3436
3463
|
set activitiesList(allActivities: Activity[]);
|
|
3437
3464
|
get activitiesList(): Activity[];
|
|
3438
3465
|
getDelegatedActivities(): Promise<void>;
|
|
3439
3466
|
showUsergroupActivitiesChange(): void;
|
|
3440
|
-
handleTriggerFired(activity: Activity): void
|
|
3441
|
-
handleGenericTriggerFired(activity: Activity): void
|
|
3442
|
-
handleFormTriggerFired(): void
|
|
3467
|
+
handleTriggerFired(activity: Activity): Promise<void>;
|
|
3468
|
+
handleGenericTriggerFired(activity: Activity): Promise<void>;
|
|
3469
|
+
handleFormTriggerFired(): Promise<void>;
|
|
3443
3470
|
handleFormCreation(): void;
|
|
3444
3471
|
handleChangedActivity(idx: number, activity: Activity): void;
|
|
3445
3472
|
deleteActivity(activity: Activity): void;
|
|
@@ -4101,6 +4128,580 @@ declare class FormBuilderUserFormModule {
|
|
|
4101
4128
|
static ɵinj: i0.ɵɵInjectorDeclaration<FormBuilderUserFormModule>;
|
|
4102
4129
|
}
|
|
4103
4130
|
|
|
4131
|
+
declare class CategoryViewObject {
|
|
4132
|
+
readonly identifier: any;
|
|
4133
|
+
readonly label: string;
|
|
4134
|
+
readonly items: any[];
|
|
4135
|
+
active: boolean;
|
|
4136
|
+
colorCss?: string;
|
|
4137
|
+
icon?: Icon;
|
|
4138
|
+
letter: string;
|
|
4139
|
+
itemCount: number;
|
|
4140
|
+
constructor(identifier: any, label: string, items: any[], active?: boolean, colorCss?: string, icon?: Icon);
|
|
4141
|
+
containsItem(item: any): boolean;
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
declare class CategoryViewObjectsWrappedObject<T> extends BusinessObject {
|
|
4145
|
+
dataObject: T;
|
|
4146
|
+
categoryViewObjects: CategoryViewObject[];
|
|
4147
|
+
get categoryLetters(): string;
|
|
4148
|
+
constructor(dataObject: T);
|
|
4149
|
+
firstCategoryColorCss(): string;
|
|
4150
|
+
firstCategoryLetter(): string;
|
|
4151
|
+
firstCategoryIcon(): Icon;
|
|
4152
|
+
getId(): BusinessObjectIDType;
|
|
4153
|
+
private _getFirstCatViewObj;
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4156
|
+
declare class TimelineComponent implements OnDestroy, DoCheck {
|
|
4157
|
+
private _changeRef;
|
|
4158
|
+
iconCacheService: IconCacheService;
|
|
4159
|
+
timelineDateItem: TemplateRef<any>;
|
|
4160
|
+
timelineBulletItem: TemplateRef<any>;
|
|
4161
|
+
timelineItem: TemplateRef<any>;
|
|
4162
|
+
timelineNewItem: TemplateRef<any>;
|
|
4163
|
+
set collection(collection: CategoryViewObjectsWrappedObject<any>[]);
|
|
4164
|
+
get collection(): CategoryViewObjectsWrappedObject<any>[];
|
|
4165
|
+
set inverted(value: boolean);
|
|
4166
|
+
get inverted(): boolean;
|
|
4167
|
+
showAddButton: boolean;
|
|
4168
|
+
addButtonDisabled: boolean;
|
|
4169
|
+
showAddButtonBottom: boolean;
|
|
4170
|
+
noAlternating: boolean;
|
|
4171
|
+
showTimestamp: boolean;
|
|
4172
|
+
showYear: boolean;
|
|
4173
|
+
readonly: boolean;
|
|
4174
|
+
bulletField: string;
|
|
4175
|
+
dateField: string;
|
|
4176
|
+
addLabel: string;
|
|
4177
|
+
remarkIcon: Icon;
|
|
4178
|
+
workIcon: Icon;
|
|
4179
|
+
statusIcon: Icon;
|
|
4180
|
+
taskIcon: Icon;
|
|
4181
|
+
hideInitialWorkflowTasks: boolean;
|
|
4182
|
+
addClick: EventEmitter<MouseEvent>;
|
|
4183
|
+
showClass: boolean;
|
|
4184
|
+
readonly Icon: typeof Icon;
|
|
4185
|
+
collectionCount: number;
|
|
4186
|
+
parsedCollection: {
|
|
4187
|
+
year: number;
|
|
4188
|
+
items: CategoryViewObjectsWrappedObject<any>[];
|
|
4189
|
+
}[];
|
|
4190
|
+
selectedItem: CategoryViewObjectsWrappedObject<any>;
|
|
4191
|
+
private _collectionCountLocal;
|
|
4192
|
+
private _collection;
|
|
4193
|
+
private _inverted;
|
|
4194
|
+
protected readonly ActivityType: typeof ActivityType;
|
|
4195
|
+
protected readonly icons: typeof Icon;
|
|
4196
|
+
constructor(_changeRef: ChangeDetectorRef, iconCacheService: IconCacheService);
|
|
4197
|
+
ngOnDestroy(): void;
|
|
4198
|
+
ngDoCheck(): void;
|
|
4199
|
+
trackById(index: number, wrapper: {
|
|
4200
|
+
year: number;
|
|
4201
|
+
items: CategoryViewObjectsWrappedObject<any>[];
|
|
4202
|
+
}): BusinessObjectIDType;
|
|
4203
|
+
update(): void;
|
|
4204
|
+
onTimeLineItemClick(item: CategoryViewObjectsWrappedObject<any>): void;
|
|
4205
|
+
handleAddButtonClick(event: MouseEvent): void;
|
|
4206
|
+
addYearWhenCollectionEmpty(): void;
|
|
4207
|
+
getTimelineTrackId(item: any, index: number): string;
|
|
4208
|
+
getActivityClass(activity: Activity): string;
|
|
4209
|
+
getActivityIcon(activity: Activity): Icon;
|
|
4210
|
+
private _shouldHideActivity;
|
|
4211
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimelineComponent, never>;
|
|
4212
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimelineComponent, "co-timeline", never, { "collection": { "alias": "collection"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "addButtonDisabled": { "alias": "addButtonDisabled"; "required": false; }; "showAddButtonBottom": { "alias": "showAddButtonBottom"; "required": false; }; "noAlternating": { "alias": "noAlternating"; "required": false; }; "showTimestamp": { "alias": "showTimestamp"; "required": false; }; "showYear": { "alias": "showYear"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "bulletField": { "alias": "bulletField"; "required": false; }; "dateField": { "alias": "dateField"; "required": false; }; "addLabel": { "alias": "addLabel"; "required": false; }; "remarkIcon": { "alias": "remarkIcon"; "required": false; }; "workIcon": { "alias": "workIcon"; "required": false; }; "statusIcon": { "alias": "statusIcon"; "required": false; }; "taskIcon": { "alias": "taskIcon"; "required": false; }; "hideInitialWorkflowTasks": { "alias": "hideInitialWorkflowTasks"; "required": false; }; }, { "addClick": "addClick"; }, ["timelineDateItem", "timelineBulletItem", "timelineItem", "timelineNewItem"], never, true, never>;
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
interface ActivitiesTimeLineAddButtonsConfigNames {
|
|
4216
|
+
addActivityTaskButton?: string;
|
|
4217
|
+
addActivityRemarkButton?: string;
|
|
4218
|
+
addActivityWorkButton?: string;
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
interface ActivitiesWorkConfigNames {
|
|
4222
|
+
workHeader?: string;
|
|
4223
|
+
workExecutive?: string;
|
|
4224
|
+
workCalculationKey?: string;
|
|
4225
|
+
workDescription?: string;
|
|
4226
|
+
workFile?: string;
|
|
4227
|
+
workedTime?: string;
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
interface ActivitiesTimeLineConfigNames {
|
|
4231
|
+
header?: string;
|
|
4232
|
+
buttons?: ActivitiesTimeLineAddButtonsConfigNames;
|
|
4233
|
+
task?: ActivitiesTaskConfigNames;
|
|
4234
|
+
work?: ActivitiesWorkConfigNames;
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
declare class MakeCategoryViewObjectsResult<T> {
|
|
4238
|
+
private _categories;
|
|
4239
|
+
private _wrappedCollectionItems;
|
|
4240
|
+
get categories(): CategoryViewObject[];
|
|
4241
|
+
get wrappedCollectionItems(): CategoryViewObjectsWrappedObject<T>[];
|
|
4242
|
+
constructor(_categories: CategoryViewObject[], _wrappedCollectionItems: CategoryViewObjectsWrappedObject<T>[]);
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
declare class ActivityTimelineService {
|
|
4246
|
+
private _sharedService;
|
|
4247
|
+
private _colorService;
|
|
4248
|
+
user: RelationSmallObject;
|
|
4249
|
+
private _activityTypeIconMap;
|
|
4250
|
+
constructor(_sharedService: SharedService, _colorService: ColorSequenceService);
|
|
4251
|
+
getActivities(table: TableName$1, key: string): Promise<Activity[]>;
|
|
4252
|
+
makeCategoryViewObjects<T>(collection: T[], groupByProp: string, domainName?: DomainName, masterDataClass?: typeof BusinessObject, enumClass?: any, colorSequence?: ColorSequenceName, customMasterDataClassDescriptionField?: string): Promise<MakeCategoryViewObjectsResult<T>>;
|
|
4253
|
+
getIconFromActivityType(activityType: ActivityType): Icon;
|
|
4254
|
+
createNewRemark(table: TableName$1, key: string): Promise<Activity>;
|
|
4255
|
+
createNewWork(table: TableName$1, key: string): Promise<Activity>;
|
|
4256
|
+
upsertActivity(activity: Activity): Promise<boolean>;
|
|
4257
|
+
private _getNextRemarkSequenceNumber;
|
|
4258
|
+
private _getNextWorkSequenceNumber;
|
|
4259
|
+
private _performGroupBy;
|
|
4260
|
+
private _generateWrappedCollectionItems;
|
|
4261
|
+
private _createColorSequenceMap;
|
|
4262
|
+
private _addColorsAndIconsToCategories;
|
|
4263
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityTimelineService, never>;
|
|
4264
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ActivityTimelineService>;
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
declare class ActivityTimelineComponent implements OnInit {
|
|
4268
|
+
private _activityTimelineService;
|
|
4269
|
+
timeline: TimelineComponent;
|
|
4270
|
+
taskModifier: TaskModifierComponent;
|
|
4271
|
+
formBuilderForm: FormBuilderUserFormComponent;
|
|
4272
|
+
workLeaf: ElementRef;
|
|
4273
|
+
cfgNames: ActivitiesTimeLineConfigNames;
|
|
4274
|
+
collection: CategoryViewObjectsWrappedObject<Activity>[];
|
|
4275
|
+
readonly: boolean;
|
|
4276
|
+
key: string;
|
|
4277
|
+
table: TableName$1;
|
|
4278
|
+
workflowCategory: WorkflowCategoryType;
|
|
4279
|
+
reference: string;
|
|
4280
|
+
hideNew: boolean;
|
|
4281
|
+
showPlusButton: boolean;
|
|
4282
|
+
showOnTop: boolean;
|
|
4283
|
+
canEditTask: boolean;
|
|
4284
|
+
canDeleteTask: boolean;
|
|
4285
|
+
allowNewTask: boolean;
|
|
4286
|
+
autoSave: boolean;
|
|
4287
|
+
loggedInUser: RelationSmallObject;
|
|
4288
|
+
inverted: boolean;
|
|
4289
|
+
editActivities: boolean;
|
|
4290
|
+
showYear: boolean;
|
|
4291
|
+
hideInitialWorkflowTasks: boolean;
|
|
4292
|
+
saveActivity: EventEmitter<Activity>;
|
|
4293
|
+
onDeleteActivity: EventEmitter<Activity>;
|
|
4294
|
+
statusChange: EventEmitter<boolean>;
|
|
4295
|
+
activitiesLoaded: EventEmitter<void>;
|
|
4296
|
+
showClass(): boolean;
|
|
4297
|
+
set activity(value: Activity);
|
|
4298
|
+
get activity(): Activity;
|
|
4299
|
+
activitySelectionShown: boolean;
|
|
4300
|
+
plusButtonElementClicked: any;
|
|
4301
|
+
showNewActivityLeaf: boolean;
|
|
4302
|
+
selectedActivity: Activity;
|
|
4303
|
+
addingOrEditingActivity: boolean;
|
|
4304
|
+
showFormBuilder: boolean;
|
|
4305
|
+
private _boFactory;
|
|
4306
|
+
private _activity;
|
|
4307
|
+
constructor(_activityTimelineService: ActivityTimelineService);
|
|
4308
|
+
ngOnInit(): void;
|
|
4309
|
+
createActivity(type: ActivityType): void;
|
|
4310
|
+
addNewActivity(event: MouseEvent): void;
|
|
4311
|
+
viewOrEditClick(event: MouseEvent, item: any): void;
|
|
4312
|
+
deleteActivity(event: MouseEvent, item: Activity): any;
|
|
4313
|
+
onDeleteTask(item: Activity): void;
|
|
4314
|
+
cancelEdit(): void;
|
|
4315
|
+
handleSaveActivity(activity: Activity): Promise<void>;
|
|
4316
|
+
reloadActivities(): Promise<void>;
|
|
4317
|
+
handleClosedWithoutSave(bool: boolean): void;
|
|
4318
|
+
doSaveForm(form: FormResponse): Promise<void>;
|
|
4319
|
+
getRelationKind(author: RelationSmallObject): RelationKind$1;
|
|
4320
|
+
doCancelForm(): void;
|
|
4321
|
+
private _prepareCollection;
|
|
4322
|
+
private _prepareNewActivity;
|
|
4323
|
+
private _showNewActivityLeaf;
|
|
4324
|
+
private _hideNewActivityLeaf;
|
|
4325
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityTimelineComponent, never>;
|
|
4326
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityTimelineComponent, "co-activity-timeline", never, { "cfgNames": { "alias": "cfgNames"; "required": false; }; "collection": { "alias": "collection"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "key": { "alias": "key"; "required": false; }; "table": { "alias": "table"; "required": false; }; "workflowCategory": { "alias": "workflowCategory"; "required": false; }; "reference": { "alias": "reference"; "required": false; }; "hideNew": { "alias": "hideNew"; "required": false; }; "showPlusButton": { "alias": "showPlusButton"; "required": false; }; "showOnTop": { "alias": "showOnTop"; "required": false; }; "canEditTask": { "alias": "canEditTask"; "required": false; }; "canDeleteTask": { "alias": "canDeleteTask"; "required": false; }; "allowNewTask": { "alias": "allowNewTask"; "required": false; }; "autoSave": { "alias": "autoSave"; "required": false; }; "loggedInUser": { "alias": "loggedInUser"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "editActivities": { "alias": "editActivities"; "required": false; }; "showYear": { "alias": "showYear"; "required": false; }; "hideInitialWorkflowTasks": { "alias": "hideInitialWorkflowTasks"; "required": false; }; }, { "saveActivity": "saveActivity"; "onDeleteActivity": "onDeleteActivity"; "statusChange": "statusChange"; "activitiesLoaded": "activitiesLoaded"; }, never, never, false, never>;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
declare class ActivityLeafComponent {
|
|
4330
|
+
iconCacheService: IconCacheService;
|
|
4331
|
+
readonly icons: typeof Icon;
|
|
4332
|
+
readonly ActivityType: typeof ActivityType;
|
|
4333
|
+
form: FormComponent;
|
|
4334
|
+
set model(value: Activity);
|
|
4335
|
+
get model(): Activity;
|
|
4336
|
+
myCfgNames: ActivitiesTimeLineConfigNames;
|
|
4337
|
+
key: string;
|
|
4338
|
+
readonly: boolean;
|
|
4339
|
+
noEdit: boolean;
|
|
4340
|
+
noDelete: boolean;
|
|
4341
|
+
canEditTask: boolean;
|
|
4342
|
+
editActivities: boolean;
|
|
4343
|
+
okClick: EventEmitter<Activity>;
|
|
4344
|
+
cancelClick: EventEmitter<Activity>;
|
|
4345
|
+
viewOrEditClick: EventEmitter<MouseEvent>;
|
|
4346
|
+
deleteClick: EventEmitter<MouseEvent>;
|
|
4347
|
+
triggerFired: EventEmitter<void>;
|
|
4348
|
+
showClass: boolean;
|
|
4349
|
+
readonly trackByIndex: Function;
|
|
4350
|
+
clone: Activity;
|
|
4351
|
+
private _model;
|
|
4352
|
+
private _boFactory;
|
|
4353
|
+
constructor(iconCacheService: IconCacheService);
|
|
4354
|
+
handleOkClick(event: MouseEvent): void;
|
|
4355
|
+
handleValidSubmit(): void;
|
|
4356
|
+
handleCancelClick(event: MouseEvent): void;
|
|
4357
|
+
handleViewOrEditClick(event: MouseEvent): void;
|
|
4358
|
+
changeActivityDescription(text: string): void;
|
|
4359
|
+
private _getActivityFromModel;
|
|
4360
|
+
private _cloneModelToUse;
|
|
4361
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityLeafComponent, never>;
|
|
4362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityLeafComponent, "co-activity-leaf", never, { "model": { "alias": "model"; "required": false; }; "myCfgNames": { "alias": "myCfgNames"; "required": false; }; "key": { "alias": "key"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "noEdit": { "alias": "noEdit"; "required": false; }; "noDelete": { "alias": "noDelete"; "required": false; }; "canEditTask": { "alias": "canEditTask"; "required": false; }; "editActivities": { "alias": "editActivities"; "required": false; }; }, { "okClick": "okClick"; "cancelClick": "cancelClick"; "viewOrEditClick": "viewOrEditClick"; "deleteClick": "deleteClick"; "triggerFired": "triggerFired"; }, never, never, false, never>;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
declare class NewActivityLeafComponent {
|
|
4366
|
+
iconCacheService: IconCacheService;
|
|
4367
|
+
private _elementRef;
|
|
4368
|
+
private _activityService;
|
|
4369
|
+
set activity(value: Activity);
|
|
4370
|
+
get activity(): Activity;
|
|
4371
|
+
myCfgNames: ActivitiesTimeLineConfigNames;
|
|
4372
|
+
okClick: EventEmitter<Activity>;
|
|
4373
|
+
cancelClick: EventEmitter<void>;
|
|
4374
|
+
showClass: boolean;
|
|
4375
|
+
key: string;
|
|
4376
|
+
icon: Icon;
|
|
4377
|
+
private _activity;
|
|
4378
|
+
constructor(iconCacheService: IconCacheService, _elementRef: ElementRef, _activityService: ActivityTimelineService);
|
|
4379
|
+
scrollLeafIntoView(event: any): void;
|
|
4380
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NewActivityLeafComponent, never>;
|
|
4381
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewActivityLeafComponent, "co-new-activity-leaf", never, { "activity": { "alias": "activity"; "required": false; }; "myCfgNames": { "alias": "myCfgNames"; "required": false; }; }, { "okClick": "okClick"; "cancelClick": "cancelClick"; }, never, never, false, never>;
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
declare class BaseActivityLeafComponent implements ScreenConfigAdapterComponent {
|
|
4385
|
+
private _fileTypeImgPipe;
|
|
4386
|
+
decimals: number;
|
|
4387
|
+
forceReadonly: boolean;
|
|
4388
|
+
maxLength: number;
|
|
4389
|
+
objectConfigName: string;
|
|
4390
|
+
redErrorBackground: boolean;
|
|
4391
|
+
required: boolean;
|
|
4392
|
+
readonly fileTypeImage: FileTypeInternal;
|
|
4393
|
+
readonly blackListValidatorsArray: AsyncValidatorFn[];
|
|
4394
|
+
readonly trackByIndex: Function;
|
|
4395
|
+
activity: Activity;
|
|
4396
|
+
key: string;
|
|
4397
|
+
readonly: boolean;
|
|
4398
|
+
noEdit: boolean;
|
|
4399
|
+
noDelete: boolean;
|
|
4400
|
+
canEditTask: boolean;
|
|
4401
|
+
activityChange: EventEmitter<Activity>;
|
|
4402
|
+
hidden: boolean;
|
|
4403
|
+
constructor(_fileTypeImgPipe: FileTypeImagePipe);
|
|
4404
|
+
imageDataUri(document: CoDocument): string;
|
|
4405
|
+
onDocClick(document: CoDocument): void;
|
|
4406
|
+
changeActivityDescription(text: string): void;
|
|
4407
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseActivityLeafComponent, never>;
|
|
4408
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseActivityLeafComponent, never, never, { "activity": { "alias": "activity"; "required": false; }; "key": { "alias": "key"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "noEdit": { "alias": "noEdit"; "required": false; }; "noDelete": { "alias": "noDelete"; "required": false; }; "canEditTask": { "alias": "canEditTask"; "required": false; }; }, { "activityChange": "activityChange"; }, never, never, true, never>;
|
|
4409
|
+
}
|
|
4410
|
+
|
|
4411
|
+
declare class FormActivityLeafComponent extends BaseActivityLeafComponent {
|
|
4412
|
+
showClass: boolean;
|
|
4413
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormActivityLeafComponent, never>;
|
|
4414
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormActivityLeafComponent, "co-form-activity-leaf", never, {}, {}, never, never, false, never>;
|
|
4415
|
+
}
|
|
4416
|
+
|
|
4417
|
+
declare class RemarkActivityLeafComponent extends BaseActivityLeafComponent implements OnInit {
|
|
4418
|
+
private _sharedService;
|
|
4419
|
+
private _cfgService;
|
|
4420
|
+
myCfgNames: ActivitiesWorkConfigNames;
|
|
4421
|
+
showClass: boolean;
|
|
4422
|
+
constructor(fileTypeImgPipe: FileTypeImagePipe, _sharedService: SharedService, _cfgService: BaseModuleScreenConfigService);
|
|
4423
|
+
ngOnInit(): Promise<void>;
|
|
4424
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RemarkActivityLeafComponent, never>;
|
|
4425
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RemarkActivityLeafComponent, "co-remark-activity-leaf", never, { "myCfgNames": { "alias": "myCfgNames"; "required": false; }; }, {}, never, never, false, never>;
|
|
4426
|
+
}
|
|
4427
|
+
|
|
4428
|
+
declare class TaskActivityLeafComponent extends BaseActivityLeafComponent implements OnInit {
|
|
4429
|
+
iconCacheService: IconCacheService;
|
|
4430
|
+
protected dictionaryService: SharedComponentsDictionaryService;
|
|
4431
|
+
protected dialogService: CoreDialogService;
|
|
4432
|
+
private _sharedService;
|
|
4433
|
+
showClass: boolean;
|
|
4434
|
+
myCfgNames: ActivitiesWorkConfigNames;
|
|
4435
|
+
readonly triggerFired: EventEmitter<ActivityWorkflow>;
|
|
4436
|
+
viewOrEditClick: EventEmitter<MouseEvent>;
|
|
4437
|
+
protected readonly icons: typeof Icon;
|
|
4438
|
+
private _workFlow;
|
|
4439
|
+
constructor(fileTypeImgPipe: FileTypeImagePipe, iconCacheService: IconCacheService, dictionaryService: SharedComponentsDictionaryService, dialogService: CoreDialogService, _sharedService: SharedService);
|
|
4440
|
+
ngOnInit(): Promise<void>;
|
|
4441
|
+
handleManualTriggerClick(trigger: WorkflowTrigger): Promise<void>;
|
|
4442
|
+
handleViewOrEditClick(event: MouseEvent): void;
|
|
4443
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskActivityLeafComponent, never>;
|
|
4444
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TaskActivityLeafComponent, "co-task-activity-leaf", never, { "myCfgNames": { "alias": "myCfgNames"; "required": false; }; }, { "triggerFired": "triggerFired"; "viewOrEditClick": "viewOrEditClick"; }, never, never, false, never>;
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
declare class WorkActivityLeafComponent extends BaseActivityLeafComponent implements OnInit {
|
|
4448
|
+
private _sharedService;
|
|
4449
|
+
private _cfgService;
|
|
4450
|
+
myCfgNames: ActivitiesWorkConfigNames;
|
|
4451
|
+
showClass: boolean;
|
|
4452
|
+
calculationDescription: string;
|
|
4453
|
+
calculationKeys: CoDomainValue[];
|
|
4454
|
+
showCalculationKey: boolean;
|
|
4455
|
+
showDocuments: boolean;
|
|
4456
|
+
showDescription: boolean;
|
|
4457
|
+
showWorkedTime: boolean;
|
|
4458
|
+
constructor(fileTypeImgPipe: FileTypeImagePipe, _sharedService: SharedService, _cfgService: BaseModuleScreenConfigService);
|
|
4459
|
+
ngOnInit(): Promise<void>;
|
|
4460
|
+
getCalculationDescription(): string;
|
|
4461
|
+
handleCalculationKeyChange(code: string): void;
|
|
4462
|
+
handleExecutiveChange(id: number): Promise<void>;
|
|
4463
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkActivityLeafComponent, never>;
|
|
4464
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkActivityLeafComponent, "co-work-activity-leaf", never, { "myCfgNames": { "alias": "myCfgNames"; "required": false; }; }, {}, never, never, false, never>;
|
|
4465
|
+
}
|
|
4466
|
+
|
|
4467
|
+
declare class ActivityLinkComponent implements ScreenConfigAdapterComponent {
|
|
4468
|
+
iconCacheService: IconCacheService;
|
|
4469
|
+
readonly icons: typeof Icon;
|
|
4470
|
+
objectConfigName: string;
|
|
4471
|
+
required: boolean;
|
|
4472
|
+
forceReadonly: boolean;
|
|
4473
|
+
readonly: boolean;
|
|
4474
|
+
maxLength: number;
|
|
4475
|
+
decimals: number;
|
|
4476
|
+
redErrorBackground: boolean;
|
|
4477
|
+
hidden: boolean;
|
|
4478
|
+
icon: Icon;
|
|
4479
|
+
linkTxt: string;
|
|
4480
|
+
showClass: boolean;
|
|
4481
|
+
constructor(iconCacheService: IconCacheService);
|
|
4482
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityLinkComponent, never>;
|
|
4483
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityLinkComponent, "co-activity-link", never, { "icon": { "alias": "icon"; "required": false; }; "linkTxt": { "alias": "linkTxt"; "required": false; }; }, {}, never, never, false, never>;
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4486
|
+
declare class ActivityTypeSelectComponent {
|
|
4487
|
+
readonly icon: typeof Icon;
|
|
4488
|
+
readonly activityType: typeof ActivityType;
|
|
4489
|
+
cfgNames: ActivitiesTimeLineAddButtonsConfigNames;
|
|
4490
|
+
allowNewTask: boolean;
|
|
4491
|
+
activitySelect: EventEmitter<ActivityType>;
|
|
4492
|
+
showClass: boolean;
|
|
4493
|
+
handleActivitySelect(type: ActivityType): void;
|
|
4494
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityTypeSelectComponent, never>;
|
|
4495
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityTypeSelectComponent, "co-activity-type-select", never, { "cfgNames": { "alias": "cfgNames"; "required": false; }; "allowNewTask": { "alias": "allowNewTask"; "required": false; }; }, { "activitySelect": "activitySelect"; }, never, never, false, never>;
|
|
4496
|
+
}
|
|
4497
|
+
|
|
4498
|
+
declare class InputDurationComponent implements ScreenConfigAdapterComponent {
|
|
4499
|
+
iconCacheService: IconCacheService;
|
|
4500
|
+
readonly icon: typeof Icon;
|
|
4501
|
+
readonly regex: string;
|
|
4502
|
+
inputTextComp: InputTextComponent;
|
|
4503
|
+
inputTextRef: ElementRef;
|
|
4504
|
+
placeholder: string;
|
|
4505
|
+
disabled: boolean;
|
|
4506
|
+
customWidth: boolean;
|
|
4507
|
+
set model(model: number);
|
|
4508
|
+
get model(): number;
|
|
4509
|
+
required: boolean;
|
|
4510
|
+
forceReadonly: boolean;
|
|
4511
|
+
readonly: boolean;
|
|
4512
|
+
maxLength: number;
|
|
4513
|
+
hoursPerDay: number;
|
|
4514
|
+
labelSuffix: string;
|
|
4515
|
+
readonly modelChange: EventEmitter<number>;
|
|
4516
|
+
readonly blur: EventEmitter<string>;
|
|
4517
|
+
showClass(): boolean;
|
|
4518
|
+
objectConfigName: string;
|
|
4519
|
+
hidden: boolean;
|
|
4520
|
+
defaultValue?: ObjectConfigurationDefaultValueType;
|
|
4521
|
+
decimals: number;
|
|
4522
|
+
redErrorBackground: boolean;
|
|
4523
|
+
configObject?: ObjectConfiguration;
|
|
4524
|
+
private _modelFromSetter;
|
|
4525
|
+
private _minutes;
|
|
4526
|
+
constructor(iconCacheService: IconCacheService);
|
|
4527
|
+
ngOnDestroy(): void;
|
|
4528
|
+
ngOnInit(): void;
|
|
4529
|
+
setModel(model: number): void;
|
|
4530
|
+
private _emitModelChange;
|
|
4531
|
+
private _setInputTextText;
|
|
4532
|
+
private _convertToMinutes;
|
|
4533
|
+
private _convertToDuration;
|
|
4534
|
+
requestFocus(): void;
|
|
4535
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDurationComponent, never>;
|
|
4536
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputDurationComponent, "co-input-duration", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customWidth": { "alias": "customWidth"; "required": false; }; "model": { "alias": "model"; "required": false; }; "required": { "alias": "required"; "required": false; }; "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "hoursPerDay": { "alias": "hoursPerDay"; "required": false; }; "labelSuffix": { "alias": "labelSuffix"; "required": false; }; }, { "modelChange": "modelChange"; "blur": "blur"; }, never, never, false, never>;
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
declare class InputDurationModule {
|
|
4540
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDurationModule, never>;
|
|
4541
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputDurationModule, [typeof InputDurationComponent], [typeof i2.CommonModule, typeof i3.InputTextModule], [typeof InputDurationComponent]>;
|
|
4542
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputDurationModule>;
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
declare class InputSearchEmployeeComponent implements ScreenConfigAdapterComponent, OnInit {
|
|
4546
|
+
private _sharedService;
|
|
4547
|
+
model: number;
|
|
4548
|
+
placeholder: string;
|
|
4549
|
+
disabled: boolean;
|
|
4550
|
+
customWidth: boolean;
|
|
4551
|
+
required: boolean;
|
|
4552
|
+
forceReadonly: boolean;
|
|
4553
|
+
readonly: boolean;
|
|
4554
|
+
maxLength: number;
|
|
4555
|
+
modelChange: EventEmitter<number>;
|
|
4556
|
+
showClass(): boolean;
|
|
4557
|
+
objectConfigName: string;
|
|
4558
|
+
hidden: boolean;
|
|
4559
|
+
defaultValue?: ObjectConfigurationDefaultValueType;
|
|
4560
|
+
decimals: number;
|
|
4561
|
+
redErrorBackground: boolean;
|
|
4562
|
+
configObject?: ObjectConfiguration;
|
|
4563
|
+
modelForLov: RelationListObject;
|
|
4564
|
+
constructor(_sharedService: SharedService);
|
|
4565
|
+
ngOnInit(): Promise<void>;
|
|
4566
|
+
getCollection: (search: string) => Promise<RelationListObject[]>;
|
|
4567
|
+
handleModelChange(model: RelationListObject): void;
|
|
4568
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSearchEmployeeComponent, never>;
|
|
4569
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSearchEmployeeComponent, "co-input-search-employee", never, { "model": { "alias": "model"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customWidth": { "alias": "customWidth"; "required": false; }; "required": { "alias": "required"; "required": false; }; "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
declare class InputSearchEmployeeModule {
|
|
4573
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSearchEmployeeModule, never>;
|
|
4574
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputSearchEmployeeModule, [typeof InputSearchEmployeeComponent], [typeof i2.CommonModule, typeof i3.ListOfValuesModule, typeof SharedComponentsTranslationModule], [typeof InputSearchEmployeeComponent]>;
|
|
4575
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputSearchEmployeeModule>;
|
|
4576
|
+
}
|
|
4577
|
+
|
|
4578
|
+
declare class InputCalculationKeyComponent implements ScreenConfigAdapterComponent {
|
|
4579
|
+
private _sharedService;
|
|
4580
|
+
model: string;
|
|
4581
|
+
placeholder: string;
|
|
4582
|
+
disabled: boolean;
|
|
4583
|
+
customWidth: boolean;
|
|
4584
|
+
required: boolean;
|
|
4585
|
+
forceReadonly: boolean;
|
|
4586
|
+
readonly: boolean;
|
|
4587
|
+
maxLength: number;
|
|
4588
|
+
modelChange: EventEmitter<string>;
|
|
4589
|
+
showClass: boolean;
|
|
4590
|
+
objectConfigName: string;
|
|
4591
|
+
hidden: boolean;
|
|
4592
|
+
defaultValue?: ObjectConfigurationDefaultValueType;
|
|
4593
|
+
decimals: number;
|
|
4594
|
+
redErrorBackground: boolean;
|
|
4595
|
+
configObject?: ObjectConfiguration;
|
|
4596
|
+
modelForLov: CoDomainValue;
|
|
4597
|
+
collection: CoDomainValue[];
|
|
4598
|
+
constructor(_sharedService: SharedService);
|
|
4599
|
+
ngOnInit(): Promise<void>;
|
|
4600
|
+
handleModelChange(model: CoDomainValue): void;
|
|
4601
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputCalculationKeyComponent, never>;
|
|
4602
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputCalculationKeyComponent, "co-input-calculation-key", never, { "model": { "alias": "model"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customWidth": { "alias": "customWidth"; "required": false; }; "required": { "alias": "required"; "required": false; }; "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
|
|
4603
|
+
}
|
|
4604
|
+
|
|
4605
|
+
declare class InputCalculationKeyModule {
|
|
4606
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputCalculationKeyModule, never>;
|
|
4607
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputCalculationKeyModule, [typeof InputCalculationKeyComponent], [typeof i2.CommonModule, typeof i3.ListOfValuesModule, typeof SharedComponentsTranslationModule], [typeof InputCalculationKeyComponent]>;
|
|
4608
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputCalculationKeyModule>;
|
|
4609
|
+
}
|
|
4610
|
+
|
|
4611
|
+
declare class AvatarService {
|
|
4612
|
+
private readonly _sharedService;
|
|
4613
|
+
private readonly _colorSequenceService;
|
|
4614
|
+
readonly relationDataUpdated: EventEmitter<number>;
|
|
4615
|
+
private _relationColorMap;
|
|
4616
|
+
private _relationAvatarsMap;
|
|
4617
|
+
private _relationRelationMap;
|
|
4618
|
+
constructor(_sharedService: SharedService, _colorSequenceService: ColorSequenceService);
|
|
4619
|
+
getRelationColor(relation: Relation | RelationSmallObject, sequenceName?: ColorSequenceName): string;
|
|
4620
|
+
getRelationColorById(relationId: number, sequenceName?: ColorSequenceName): string;
|
|
4621
|
+
getRelationAvatar(relation: Relation | RelationSmallObject): Promise<string>;
|
|
4622
|
+
setAvatarForRelationId(relationId: number, thumbnail: string): void;
|
|
4623
|
+
updateRelationData(relation: Relation | RelationSmallObject): void;
|
|
4624
|
+
private updateRelationAvatar;
|
|
4625
|
+
getRelation(relationId: number, relation: Relation | RelationSmallObject): Relation | RelationSmallObject;
|
|
4626
|
+
setRelation(relationId: number, relation: Relation): void;
|
|
4627
|
+
updateRelation(relationId: number, relation: Relation): void;
|
|
4628
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarService, never>;
|
|
4629
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AvatarService>;
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4632
|
+
declare class AvatarComponent {
|
|
4633
|
+
iconCacheService: IconCacheService;
|
|
4634
|
+
private _promptService;
|
|
4635
|
+
private _avatarService;
|
|
4636
|
+
private _colorSequenceService;
|
|
4637
|
+
private _sharedService;
|
|
4638
|
+
private _changeDetector;
|
|
4639
|
+
readonly icons: typeof Icon;
|
|
4640
|
+
input: ElementRef;
|
|
4641
|
+
canChangeAvatar: boolean;
|
|
4642
|
+
checkOwnership: boolean;
|
|
4643
|
+
colorSequence: ColorSequenceName;
|
|
4644
|
+
sequence: number;
|
|
4645
|
+
tooltipText: string;
|
|
4646
|
+
set icon(value: Icon);
|
|
4647
|
+
set staticImageUri(imageData: string);
|
|
4648
|
+
set staticInitials(initials: string);
|
|
4649
|
+
set relation(relation: Relation);
|
|
4650
|
+
set relationId(relationId: number);
|
|
4651
|
+
loggedInRelation: {
|
|
4652
|
+
relationId: number;
|
|
4653
|
+
userName: string;
|
|
4654
|
+
};
|
|
4655
|
+
avatarDocChange: EventEmitter<CoDocument>;
|
|
4656
|
+
showClass: boolean;
|
|
4657
|
+
backgroundColor: string;
|
|
4658
|
+
displayName: string;
|
|
4659
|
+
handleMouseEnter(): void;
|
|
4660
|
+
handleMouseLeave(): void;
|
|
4661
|
+
onClick(): void;
|
|
4662
|
+
ownAvatar: boolean;
|
|
4663
|
+
imageData: string;
|
|
4664
|
+
staticIcon: Icon;
|
|
4665
|
+
initials: string;
|
|
4666
|
+
hoverTimer: any;
|
|
4667
|
+
private _hoverTimeout;
|
|
4668
|
+
private _relation;
|
|
4669
|
+
private _relationId;
|
|
4670
|
+
private _staticImageData;
|
|
4671
|
+
private _staticInitials;
|
|
4672
|
+
private _destroyed;
|
|
4673
|
+
private _subs;
|
|
4674
|
+
private _maxAvatarSize;
|
|
4675
|
+
constructor(iconCacheService: IconCacheService, _promptService: PromptService, _avatarService: AvatarService, _colorSequenceService: ColorSequenceService, _sharedService: SharedService, _changeDetector: ChangeDetectorRef);
|
|
4676
|
+
ngOnInit(): void;
|
|
4677
|
+
ngOnDestroy(): void;
|
|
4678
|
+
onFileChangeEvent(event: any, input?: HTMLInputElement): void;
|
|
4679
|
+
updateAvatar(): Promise<void>;
|
|
4680
|
+
uploadTheAvatar(): void;
|
|
4681
|
+
private _staticSet;
|
|
4682
|
+
private _setAvatarDataByRelation;
|
|
4683
|
+
private _setInitials;
|
|
4684
|
+
private _isOwnAvatar;
|
|
4685
|
+
private _changeDisplayName;
|
|
4686
|
+
private _setFileAsAvatarToCurrentRelation;
|
|
4687
|
+
private setDocProperties;
|
|
4688
|
+
private _detectChanges;
|
|
4689
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
4690
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "canChangeAvatar": { "alias": "canChangeAvatar"; "required": false; }; "checkOwnership": { "alias": "checkOwnership"; "required": false; }; "colorSequence": { "alias": "colorSequence"; "required": false; }; "sequence": { "alias": "sequence"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "staticImageUri": { "alias": "staticImageUri"; "required": false; }; "staticInitials": { "alias": "staticInitials"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "loggedInRelation": { "alias": "loggedInRelation"; "required": false; }; }, { "avatarDocChange": "avatarDocChange"; }, never, never, false, never>;
|
|
4691
|
+
}
|
|
4692
|
+
|
|
4693
|
+
declare class AvatarModule {
|
|
4694
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarModule, never>;
|
|
4695
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof AvatarComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof ImageDisplayModule], [typeof AvatarComponent]>;
|
|
4696
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AvatarModule>;
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
declare class ActivityTimelineModule {
|
|
4700
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityTimelineModule, never>;
|
|
4701
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ActivityTimelineModule, [typeof ActivityTimelineComponent, typeof ActivityLeafComponent, typeof NewActivityLeafComponent, typeof FormActivityLeafComponent, typeof RemarkActivityLeafComponent, typeof TaskActivityLeafComponent, typeof WorkActivityLeafComponent, typeof ActivityLinkComponent, typeof ActivityTypeSelectComponent], [typeof i2.CommonModule, typeof TimelineComponent, typeof i3.IconModule, typeof TaskModifyerModule, typeof FormBuilderUserFormModule, typeof i3.FormModule, typeof SharedComponentsTranslationModule, typeof i3.ButtonModule, typeof i3.ScreenConfigurationModule, typeof i3.AlignWithModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof InputDurationModule, typeof InputSearchEmployeeModule, typeof i3.InputTextareaModule, typeof FilesUploadModule, typeof ImageDisplayModule, typeof i3.ImageModule, typeof InputCalculationKeyModule, typeof AvatarModule], [typeof ActivityTimelineComponent]>;
|
|
4702
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ActivityTimelineModule>;
|
|
4703
|
+
}
|
|
4704
|
+
|
|
4104
4705
|
interface FingerPrintResult {
|
|
4105
4706
|
fingerPrint?: string;
|
|
4106
4707
|
deviceLabel?: string;
|
|
@@ -4387,5 +4988,5 @@ interface TreeViewNodeItemOptions {
|
|
|
4387
4988
|
leafConditionField: string;
|
|
4388
4989
|
}
|
|
4389
4990
|
|
|
4390
|
-
export { ActivityListComponent, ActivityListModule, AgendaEvent, AgendaEventPerDay, CalendarView, CoLinearGaugeComponent, CoLinearGaugeModule, ComponentActivityListComponent, ComponentActivityListModule, DatePlanningComponent, DatePlanningModule, DateRange, Day, DocsignComponent, DocsignModule, FilesUploadComponent, FilesUploadModule, FingerPrintService, FormBuilderUserFormComponent, FormBuilderUserFormModule, GaugeColor$1 as GaugeColor, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, Month, NULL_AGENDA_EVENT, NULL_AGENDA_EVENT_PER_DAY, NULL_DAY, NULL_MONTH, NULL_WEEK, PreferredPlanningComponent, PreferredPlanningModule, RoleEmailSelectorComponent, RoleEmailSelectorModule, SendMethod, SendMethodDialogComponent, SendMethodDialogModule, SharedComponentsDictionaryService, SharedComponentsTranslationModule, SharedEventService, SharedLocalizePipe, SharedService, SharedSettings, SimpleTagsComponent, SimpleTagsFormComponent, SimpleTagsFormModule, SimpleTagsModule, StatusbarComponent, StatusbarModule, StatusbarPopupComponent, StockComponent, StockModule, TagTreeItem, TaskCreatorComponent, TaskCreatorModule, TimeWindow, TreeObject, TreeView, TreeViewNode, UserFormMode, Week, Weekday, WorkflowInfoTilesComponent, WorkflowInfoTilesModule, sendMethodsWithIcon };
|
|
4991
|
+
export { ActivityListComponent, ActivityListModule, ActivityTimelineComponent, ActivityTimelineModule, AgendaEvent, AgendaEventPerDay, CalendarView, CoLinearGaugeComponent, CoLinearGaugeModule, ComponentActivityListComponent, ComponentActivityListModule, DatePlanningComponent, DatePlanningModule, DateRange, Day, DocsignComponent, DocsignModule, FilesUploadComponent, FilesUploadModule, FingerPrintService, FormBuilderUserFormComponent, FormBuilderUserFormModule, GaugeColor$1 as GaugeColor, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, Month, NULL_AGENDA_EVENT, NULL_AGENDA_EVENT_PER_DAY, NULL_DAY, NULL_MONTH, NULL_WEEK, PreferredPlanningComponent, PreferredPlanningModule, RoleEmailSelectorComponent, RoleEmailSelectorModule, SendMethod, SendMethodDialogComponent, SendMethodDialogModule, SharedComponentsDictionaryService, SharedComponentsTranslationModule, SharedEventService, SharedLocalizePipe, SharedService, SharedSettings, SimpleTagsComponent, SimpleTagsFormComponent, SimpleTagsFormModule, SimpleTagsModule, StatusbarComponent, StatusbarModule, StatusbarPopupComponent, StockComponent, StockModule, TagTreeItem, TaskCreatorComponent, TaskCreatorModule, TimeWindow, TreeObject, TreeView, TreeViewNode, UserFormMode, Week, Weekday, WorkflowInfoTilesComponent, WorkflowInfoTilesModule, sendMethodsWithIcon };
|
|
4391
4992
|
export type { StatusbarData, TextDimension, TreeViewModel, TreeViewNodeItemOptions, TreeViewNodeModel };
|