@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.
Files changed (27) hide show
  1. package/3rdpartylicenses.txt +1405 -0
  2. package/bundles/colijnit-sharedcomponents.umd.js +31 -7
  3. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  4. package/colijnit-sharedcomponents.metadata.json +1 -1
  5. package/esm2015/lib/components/activity-list/activity-list.component.js +11 -3
  6. package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +9 -3
  7. package/esm2015/lib/components/files-upload/components/base-file-upload.component.js +2 -2
  8. package/esm2015/lib/components/files-upload/files-upload.component.js +1 -1
  9. package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +9 -2
  10. package/esm2015/lib/components/tab-bar/tab-bar.component.js +3 -1
  11. package/esm2015/lib/components/task-creator/task-creator.component.js +69 -62
  12. package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
  13. package/favicon.ico +0 -0
  14. package/fesm2015/colijnit-sharedcomponents.js +90 -62
  15. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  16. package/index.html +12 -0
  17. package/lib/components/activity-list/activity-list.component.d.ts +10 -1
  18. package/lib/components/open-activity-list/component-activity-list.component.d.ts +10 -1
  19. package/lib/components/open-activity-list/style/_layout.scss +3 -1
  20. package/lib/components/task-creator/style/_layout.scss +3 -1
  21. package/lib/components/task-creator/task-creator.component.d.ts +10 -2
  22. package/lib/style/sharedcomponents-globals.scss +4 -0
  23. package/main.744dc3d73d03c6e7b1d4.js +1 -0
  24. package/package.json +1 -1
  25. package/polyfills.907fe9d1887c5de17993.js +1 -0
  26. package/runtime.8aac21847ed3d3829cca.js +1 -0
  27. 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
- export declare class ActivityListComponent implements OnInit {
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
- export declare class ComponentActivityListComponent extends BaseActivityListComponent implements OnDestroy {
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;
@@ -1,6 +1,8 @@
1
1
  @include export-module('co-component-activity-list-layout') {
2
2
  .co-component-activity-list {
3
- display: flex;
3
+ &:not(.co-shared-hidden) {
4
+ display: flex;
5
+ }
4
6
  flex-direction: column;
5
7
  height: 100%;
6
8
  padding: 30px 0;
@@ -2,7 +2,9 @@
2
2
  .co-task-creator{
3
3
  width: 100%;
4
4
  position: relative;
5
- display: block;
5
+ &:not(.co-shared-hidden) {
6
+ display: block;
7
+ }
6
8
  .task-creator-wrapper {
7
9
  margin-left: 40px;
8
10
  box-shadow: 0px 2px 4px 0px #0000001A;
@@ -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[];
@@ -7,4 +7,8 @@
7
7
 
8
8
  }
9
9
 
10
+ .co-shared-hidden {
11
+ display: none;
12
+ }
13
+
10
14
  @import "./variables";