@colijnit/sharedcomponents 255.1.22 → 255.1.23
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 +1405 -0
- package/bundles/colijnit-sharedcomponents.umd.js +31 -7
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/activity-list/activity-list.component.js +11 -3
- package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +9 -3
- package/esm2015/lib/components/files-upload/components/base-file-upload.component.js +2 -2
- package/esm2015/lib/components/files-upload/files-upload.component.js +1 -1
- package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +9 -2
- package/esm2015/lib/components/tab-bar/tab-bar.component.js +3 -1
- package/esm2015/lib/components/task-creator/task-creator.component.js +69 -62
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/favicon.ico +0 -0
- package/fesm2015/colijnit-sharedcomponents.js +90 -62
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +12 -0
- package/lib/components/activity-list/activity-list.component.d.ts +10 -1
- package/lib/components/open-activity-list/component-activity-list.component.d.ts +10 -1
- package/lib/components/open-activity-list/style/_layout.scss +3 -1
- package/lib/components/task-creator/style/_layout.scss +3 -1
- package/lib/components/task-creator/task-creator.component.d.ts +10 -2
- package/lib/style/sharedcomponents-globals.scss +4 -0
- package/main.744dc3d73d03c6e7b1d4.js +1 -0
- package/package.json +1 -1
- package/polyfills.907fe9d1887c5de17993.js +1 -0
- package/runtime.8aac21847ed3d3829cca.js +1 -0
- package/styles.486be41aa0593b705e42.css +1 -0
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<title>Sharedcomponents</title>
|
|
4
|
+
<base href="/">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
7
|
+
<style>@charset "UTF-8";@import url(https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);body,html{margin:0;overflow:hidden}body,html{width:100%;height:100%}*{box-sizing:border-box;padding:0;margin:0}</style><link rel="stylesheet" href="styles.486be41aa0593b705e42.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.486be41aa0593b705e42.css"></noscript></head>
|
|
8
|
+
<body>
|
|
9
|
+
<app-root></app-root>
|
|
10
|
+
<script src="runtime.8aac21847ed3d3829cca.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.744dc3d73d03c6e7b1d4.js" defer></script>
|
|
11
|
+
|
|
12
|
+
</body></html>
|
|
@@ -8,7 +8,8 @@ import { TimeUtils } from "@colijnit/mainapi/build/utils/time-utils";
|
|
|
8
8
|
import { RelationSmallObject } from "@colijnit/mainapi/build/model/relation-small-object.bo";
|
|
9
9
|
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
10
10
|
import { SharedComponentsDictionaryService } from '../../translation/shared-components-dictionary.service';
|
|
11
|
-
|
|
11
|
+
import { ScreenConfigAdapterComponent } from "@colijnit/corecomponents_v12";
|
|
12
|
+
export declare class ActivityListComponent implements OnInit, ScreenConfigAdapterComponent {
|
|
12
13
|
iconCacheService: IconCacheService;
|
|
13
14
|
private _dictionaryService;
|
|
14
15
|
readonly Icon: typeof Icon;
|
|
@@ -22,6 +23,14 @@ export declare class ActivityListComponent implements OnInit {
|
|
|
22
23
|
workIcon: Icon;
|
|
23
24
|
statusIcon: Icon;
|
|
24
25
|
taskIcon: Icon;
|
|
26
|
+
objectConfigName: string;
|
|
27
|
+
hidden: boolean;
|
|
28
|
+
required: boolean;
|
|
29
|
+
forceReadonly: boolean;
|
|
30
|
+
readonly: boolean;
|
|
31
|
+
maxLength: number;
|
|
32
|
+
decimals: number;
|
|
33
|
+
redErrorBackground: boolean;
|
|
25
34
|
showActivityPopup: Boolean;
|
|
26
35
|
currentActivityDocuments: CoDocument[];
|
|
27
36
|
private _activities;
|
|
@@ -10,7 +10,8 @@ import { PersonalActivityOverviewComponent } from "./components/personal-activit
|
|
|
10
10
|
import { OperationCallbackFunctionWithValidation } from "../../interface/operation-callback-function-with-validation";
|
|
11
11
|
import { SharedService } from "../../service/shared.service";
|
|
12
12
|
import { TableName } from "@colijnit/mainapi/build/enum/table-name.enum";
|
|
13
|
-
|
|
13
|
+
import { ScreenConfigAdapterComponent } from "@colijnit/corecomponents_v12";
|
|
14
|
+
export declare class ComponentActivityListComponent extends BaseActivityListComponent implements OnDestroy, ScreenConfigAdapterComponent {
|
|
14
15
|
protected sharedService: SharedService;
|
|
15
16
|
readonly tabs: typeof PersonalActivityTabEnum;
|
|
16
17
|
readonly icons: typeof Icon;
|
|
@@ -42,6 +43,14 @@ export declare class ComponentActivityListComponent extends BaseActivityListComp
|
|
|
42
43
|
activeTab: PersonalActivityTabEnum;
|
|
43
44
|
activityList: ActivityViewModel[];
|
|
44
45
|
trackByFn(index: number, vm: ActivityViewModel): any;
|
|
46
|
+
objectConfigName: string;
|
|
47
|
+
hidden: boolean;
|
|
48
|
+
required: boolean;
|
|
49
|
+
forceReadonly: boolean;
|
|
50
|
+
readonly: boolean;
|
|
51
|
+
maxLength: number;
|
|
52
|
+
decimals: number;
|
|
53
|
+
redErrorBackground: boolean;
|
|
45
54
|
private _table;
|
|
46
55
|
private _key;
|
|
47
56
|
private _subs;
|
|
@@ -10,10 +10,10 @@ import { WorkflowCategoryType } from '@colijnit/mainapi/build/enum/workflow-cate
|
|
|
10
10
|
import { CoDocument } from '@colijnit/mainapi/build/model/co-document';
|
|
11
11
|
import { activityEmailRequestData } from '@colijnit/mainapi/build/model/activity-email-request-data';
|
|
12
12
|
import { SharedService } from '../../service/shared.service';
|
|
13
|
-
import { CoreDialogService, FormComponent, FormMasterService } from '@colijnit/corecomponents_v12';
|
|
13
|
+
import { CoreDialogService, FormComponent, FormMasterService, ScreenConfigAdapterComponent } from '@colijnit/corecomponents_v12';
|
|
14
14
|
import { IconListItem } from '@colijnit/corecomponents_v12/lib/model/icon-list-item';
|
|
15
15
|
import { SharedComponentsDictionaryService } from '../../translation/shared-components-dictionary.service';
|
|
16
|
-
export declare class TaskCreatorComponent implements OnInit {
|
|
16
|
+
export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapterComponent {
|
|
17
17
|
iconService: IconCacheService;
|
|
18
18
|
dictionaryService: SharedComponentsDictionaryService;
|
|
19
19
|
sharedService: SharedService;
|
|
@@ -29,6 +29,14 @@ export declare class TaskCreatorComponent implements OnInit {
|
|
|
29
29
|
workflowCategoryType: WorkflowCategoryType;
|
|
30
30
|
activityCreated: EventEmitter<void>;
|
|
31
31
|
showClass(): boolean;
|
|
32
|
+
objectConfigName: string;
|
|
33
|
+
hidden: boolean;
|
|
34
|
+
required: boolean;
|
|
35
|
+
forceReadonly: boolean;
|
|
36
|
+
readonly: boolean;
|
|
37
|
+
maxLength: number;
|
|
38
|
+
decimals: number;
|
|
39
|
+
redErrorBackground: boolean;
|
|
32
40
|
optionCollection: IconListItem[];
|
|
33
41
|
showFilesDialog: boolean;
|
|
34
42
|
documents: CoDocument[];
|