@colijnit/sharedcomponents 261.20.11 → 261.20.12
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 +3272 -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-6I3OLYQ4.js +289 -0
- package/browser/polyfills-5FDKUQTZ.js +2 -0
- package/browser/styles-2FET3LTB.css +1 -0
- package/fesm2022/colijnit-sharedcomponents.mjs +353 -154
- package/fesm2022/colijnit-sharedcomponents.mjs.map +1 -1
- package/index.d.ts +42 -3
- package/lib/components/activity-timeline/style/_layout.scss +19 -0
- package/lib/components/files-upload/style/_layout.scss +17 -0
- package/package.json +1 -1
- package/prerendered-routes.json +3 -0
package/index.d.ts
CHANGED
|
@@ -413,6 +413,7 @@ declare enum Icon {
|
|
|
413
413
|
CircleCheckRegular = "circle_check_regular",
|
|
414
414
|
ClockArrow = "clock_arrow",
|
|
415
415
|
ClockRegular = "clock_regular",
|
|
416
|
+
CloudArrowUpRegular = "cloud_arrow_up_regular",
|
|
416
417
|
CommentRegular = "comment_regular",
|
|
417
418
|
CrossSkinny = "cross_skinny",
|
|
418
419
|
Cubes = "cubes",
|
|
@@ -2599,6 +2600,7 @@ declare class FilesUploadComponent extends BaseFileUploadComponent implements On
|
|
|
2599
2600
|
isEditable: boolean;
|
|
2600
2601
|
hideAvatars: boolean;
|
|
2601
2602
|
fileSavesOnPopupOkClick: boolean;
|
|
2603
|
+
extendedDropzone: boolean;
|
|
2602
2604
|
selected: string;
|
|
2603
2605
|
readonly editSlideoutSubmit: EventEmitter<void>;
|
|
2604
2606
|
tagsChangeEvent: EventEmitter<TagTreeItem$1[]>;
|
|
@@ -2614,7 +2616,7 @@ declare class FilesUploadComponent extends BaseFileUploadComponent implements On
|
|
|
2614
2616
|
openFileBrowser(): Promise<void>;
|
|
2615
2617
|
handleAddClick(): void;
|
|
2616
2618
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilesUploadComponent, never>;
|
|
2617
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilesUploadComponent, "co-files-upload", never, { "dropzone": { "alias": "dropzone"; "required": false; }; "label": { "alias": "label"; "required": false; }; "cfgNames": { "alias": "cfgNames"; "required": false; }; "customImageClick": { "alias": "customImageClick"; "required": false; }; "isEditable": { "alias": "isEditable"; "required": false; }; "hideAvatars": { "alias": "hideAvatars"; "required": false; }; "fileSavesOnPopupOkClick": { "alias": "fileSavesOnPopupOkClick"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "editSlideoutSubmit": "editSlideoutSubmit"; "tagsChangeEvent": "tagsChangeEvent"; "imageClick": "imageClick"; }, ["slideoutTemplate"], never, false, never>;
|
|
2619
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilesUploadComponent, "co-files-upload", never, { "dropzone": { "alias": "dropzone"; "required": false; }; "label": { "alias": "label"; "required": false; }; "cfgNames": { "alias": "cfgNames"; "required": false; }; "customImageClick": { "alias": "customImageClick"; "required": false; }; "isEditable": { "alias": "isEditable"; "required": false; }; "hideAvatars": { "alias": "hideAvatars"; "required": false; }; "fileSavesOnPopupOkClick": { "alias": "fileSavesOnPopupOkClick"; "required": false; }; "extendedDropzone": { "alias": "extendedDropzone"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "editSlideoutSubmit": "editSlideoutSubmit"; "tagsChangeEvent": "tagsChangeEvent"; "imageClick": "imageClick"; }, ["slideoutTemplate"], never, false, never>;
|
|
2618
2620
|
}
|
|
2619
2621
|
|
|
2620
2622
|
declare class ImageDisplayComponent implements ScreenConfigAdapterComponent {
|
|
@@ -2652,6 +2654,7 @@ declare class FileUploadComponent implements OnDestroy {
|
|
|
2652
2654
|
link: boolean;
|
|
2653
2655
|
dropzone: boolean;
|
|
2654
2656
|
readonly: boolean;
|
|
2657
|
+
extendedDropzone: boolean;
|
|
2655
2658
|
isAddingTile: boolean;
|
|
2656
2659
|
fileSavesOnPopupOkClick: boolean;
|
|
2657
2660
|
isEditable: boolean;
|
|
@@ -2681,7 +2684,7 @@ declare class FileUploadComponent implements OnDestroy {
|
|
|
2681
2684
|
private _listenForDocumentBodyChanges;
|
|
2682
2685
|
private _updatePreviewImage;
|
|
2683
2686
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
2684
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "co-file-upload", never, { "file": { "alias": "file"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "link": { "alias": "link"; "required": false; }; "dropzone": { "alias": "dropzone"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "isAddingTile": { "alias": "isAddingTile"; "required": false; }; "fileSavesOnPopupOkClick": { "alias": "fileSavesOnPopupOkClick"; "required": false; }; "isEditable": { "alias": "isEditable"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showTrashCan": { "alias": "showTrashCan"; "required": false; }; "showImage": { "alias": "showImage"; "required": false; }; "customImageClick": { "alias": "customImageClick"; "required": false; }; "creationDate": { "alias": "creationDate"; "required": false; }; "creationUser": { "alias": "creationUser"; "required": false; }; "modifiedDate": { "alias": "modifiedDate"; "required": false; }; "modifiedUser": { "alias": "modifiedUser"; "required": false; }; }, { "deleteClick": "deleteClick"; "editClick": "editClick"; "imageClick": "imageClick"; }, never, never, false, never>;
|
|
2687
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "co-file-upload", never, { "file": { "alias": "file"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "link": { "alias": "link"; "required": false; }; "dropzone": { "alias": "dropzone"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "extendedDropzone": { "alias": "extendedDropzone"; "required": false; }; "isAddingTile": { "alias": "isAddingTile"; "required": false; }; "fileSavesOnPopupOkClick": { "alias": "fileSavesOnPopupOkClick"; "required": false; }; "isEditable": { "alias": "isEditable"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showTrashCan": { "alias": "showTrashCan"; "required": false; }; "showImage": { "alias": "showImage"; "required": false; }; "customImageClick": { "alias": "customImageClick"; "required": false; }; "creationDate": { "alias": "creationDate"; "required": false; }; "creationUser": { "alias": "creationUser"; "required": false; }; "modifiedDate": { "alias": "modifiedDate"; "required": false; }; "modifiedUser": { "alias": "modifiedUser"; "required": false; }; }, { "deleteClick": "deleteClick"; "editClick": "editClick"; "imageClick": "imageClick"; }, never, never, false, never>;
|
|
2685
2688
|
}
|
|
2686
2689
|
|
|
2687
2690
|
declare enum TileSizeType {
|
|
@@ -3673,9 +3676,44 @@ declare class NotificationSummaryBlockModule {
|
|
|
3673
3676
|
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationSummaryBlockModule>;
|
|
3674
3677
|
}
|
|
3675
3678
|
|
|
3679
|
+
declare class ActivityAttachmentsComponent implements OnInit, ScreenConfigAdapterComponent {
|
|
3680
|
+
iconCacheService: IconCacheService;
|
|
3681
|
+
private _dictionaryService;
|
|
3682
|
+
readonly Icon: typeof Icon;
|
|
3683
|
+
readonly ActivityType: typeof ActivityType;
|
|
3684
|
+
showClass(): boolean;
|
|
3685
|
+
set activity(value: Activity);
|
|
3686
|
+
key: string;
|
|
3687
|
+
readonly activityChange: EventEmitter<Activity>;
|
|
3688
|
+
documents: CoDocument[];
|
|
3689
|
+
private _activity;
|
|
3690
|
+
objectConfigName: string;
|
|
3691
|
+
hidden: boolean;
|
|
3692
|
+
required: boolean;
|
|
3693
|
+
forceReadonly: boolean;
|
|
3694
|
+
readonly: boolean;
|
|
3695
|
+
maxLength: number;
|
|
3696
|
+
decimals: number;
|
|
3697
|
+
redErrorBackground: boolean;
|
|
3698
|
+
constructor(iconCacheService: IconCacheService, _dictionaryService: SharedComponentsDictionaryService);
|
|
3699
|
+
ngOnInit(): Promise<void>;
|
|
3700
|
+
showAttachments(activity: Activity): boolean;
|
|
3701
|
+
handleDocumentDeleted(doc: CoDocument): void;
|
|
3702
|
+
handleDocumentAdded(doc: CoDocument): void;
|
|
3703
|
+
handleDocumentsAdded(docs: CoDocument[]): void;
|
|
3704
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityAttachmentsComponent, never>;
|
|
3705
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityAttachmentsComponent, "co-activity-attachments", never, { "activity": { "alias": "activity"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, { "activityChange": "activityChange"; }, never, never, false, never>;
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
declare class ActivityAttachmentsModule {
|
|
3709
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityAttachmentsModule, never>;
|
|
3710
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ActivityAttachmentsModule, [typeof ActivityAttachmentsComponent], [typeof i3.IconModule, typeof i2.CommonModule, typeof i3.CoDialogModule, typeof FilesUploadModule], [typeof ActivityAttachmentsComponent]>;
|
|
3711
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ActivityAttachmentsModule>;
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3676
3714
|
declare class ModifyTaskFormModule {
|
|
3677
3715
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModifyTaskFormModule, never>;
|
|
3678
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ModifyTaskFormModule, [typeof ModifyTaskFormComponent], [typeof SharedComponentsTranslationModule, typeof TaskDetailsModule, typeof i3.InputCheckboxModule, typeof ExecutiveSummaryBlockModule, typeof StatusSummaryBlockModule, typeof CreationSummaryBlockModule, typeof NotificationSummaryBlockModule, typeof ActivityListModule, typeof SimpleTagsModule, typeof i3.ButtonModule, typeof i2.CommonModule, typeof SimpleTagsFormModule], [typeof ModifyTaskFormComponent]>;
|
|
3716
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModifyTaskFormModule, [typeof ModifyTaskFormComponent], [typeof SharedComponentsTranslationModule, typeof TaskDetailsModule, typeof i3.InputCheckboxModule, typeof ExecutiveSummaryBlockModule, typeof StatusSummaryBlockModule, typeof CreationSummaryBlockModule, typeof NotificationSummaryBlockModule, typeof ActivityListModule, typeof SimpleTagsModule, typeof i3.ButtonModule, typeof i2.CommonModule, typeof SimpleTagsFormModule, typeof FilesUploadModule, typeof ActivityAttachmentsModule], [typeof ModifyTaskFormComponent]>;
|
|
3679
3717
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModifyTaskFormModule>;
|
|
3680
3718
|
}
|
|
3681
3719
|
|
|
@@ -4426,6 +4464,7 @@ declare class TaskActivityLeafComponent extends BaseActivityLeafComponent implem
|
|
|
4426
4464
|
ngOnInit(): Promise<void>;
|
|
4427
4465
|
handleManualTriggerClick(trigger: WorkflowTrigger): Promise<void>;
|
|
4428
4466
|
handleViewOrEditClick(event: MouseEvent): void;
|
|
4467
|
+
get hasDocuments(): boolean;
|
|
4429
4468
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaskActivityLeafComponent, never>;
|
|
4430
4469
|
static ɵcmp: i0.ɵɵComponentDeclaration<TaskActivityLeafComponent, "co-task-activity-leaf", never, { "myCfgNames": { "alias": "myCfgNames"; "required": false; }; }, { "triggerFired": "triggerFired"; "viewOrEditClick": "viewOrEditClick"; }, never, never, false, never>;
|
|
4431
4470
|
}
|
|
@@ -10,6 +10,25 @@
|
|
|
10
10
|
right: 0;
|
|
11
11
|
bottom: 0;
|
|
12
12
|
cursor: pointer;
|
|
13
|
+
display: flex;
|
|
14
|
+
gap: 10px;
|
|
15
|
+
.has-documents-leaf {
|
|
16
|
+
position: relative;
|
|
17
|
+
.amount-documents {
|
|
18
|
+
position: absolute;
|
|
19
|
+
right: -5px;
|
|
20
|
+
top: -5px;
|
|
21
|
+
width: 10px;
|
|
22
|
+
height: 10px;
|
|
23
|
+
font-size: 8px;
|
|
24
|
+
background: #5fdcb3;
|
|
25
|
+
color: #FFFFFF;
|
|
26
|
+
border-radius: 100%;
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
13
32
|
}
|
|
14
33
|
.co-activity-leaf {
|
|
15
34
|
.leaf-header {
|
|
@@ -56,6 +56,23 @@
|
|
|
56
56
|
display: flex;
|
|
57
57
|
align-items: center;
|
|
58
58
|
justify-content: center;
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
&.extended {
|
|
61
|
+
.co-tile-render {
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 150px;
|
|
64
|
+
.add-button {
|
|
65
|
+
svg {
|
|
66
|
+
fill: #000;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
.top-dropzone-text {
|
|
71
|
+
font-weight: 600;
|
|
72
|
+
font-size: 16px;
|
|
73
|
+
padding: 7px 0 3px 0;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
59
76
|
.co-tile-render {
|
|
60
77
|
display: flex;
|
|
61
78
|
flex-direction: column;
|
package/package.json
CHANGED